@charset "utf-8";

/* -----------------------------------------
   riverresidence-sp.css
   Lastupdate: 2024/10/01
   Author: KAZUMI SONOBE
------------------------------------------*/

body {
	width: 100%;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	font-size: 14px;
}
body.active {
	position: fixed;
	height: 100%;
}
a {
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
	color: #000000;
}
a:hover {
	opacity: 0.5;
	-moz-opacity: 0.5;
	-webkit-opacity: 0.5;
}
a:visited {
	color: #000000;
}
.cont_inner {
	width: calc(100% - 40px);
	margin: 0 auto;
}
.pc_only {
	display: none;
}
.tab_only {
	display: none;
}


/* -----------------------------------------
   loader
------------------------------------------*/

.loader-bg {
	display: flex;	
	position: fixed;
	top: 0;
	left: 0;	
	width: 100vw;
	height: 100vh;
	background-color: #DDDDDD;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}
.loader {
	position: relative;
	width: 8em;
	height: 8em;
	margin: 50px auto;	
	background: #FFFFFF;
	background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	border-radius: 50%;	
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	font-size: 10px;
	text-indent: -99999;
}
.loader:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";	
	width: 50%;
	height: 50%;
	background: #FFFFFF;
	border-radius: 100% 0 0 0;
}

.loader:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;	
  content: "";	
  width: 75%;
  height: 75%;
  margin: auto;	
  background: #DDDDDD;
  border-radius: 50%;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* -----------------------------------------
   fadeIn (LowerPage ONLY)
------------------------------------------*/

.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* -----------------------------------------
   inview.js
------------------------------------------*/

.js-fadeUp {
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity .8s, transform .8s;
}
.js-fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .5s;
}


/* -----------------------------------------
   #global_header
------------------------------------------*/

#global_header .sp_only {
	position: fixed;
	width: 100%;
	height: 60px;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.95);
	box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
	z-index: 1000;
}
#global_header .site_logo {
	width: 240px;
	margin: 20px 0 0 0;
}
#global_header .site_logo img {
	width: 240px;
}
#global_header .nav_button {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	text-align: center;
	z-index: 3;
}
#global_header .nav_button span {
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 16px;
	background-color: #000000;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#global_header .nav_button span:nth-child(1) {
	top: 13px;
}
#global_header .nav_button span:nth-child(2) {
	top: 23px;
}
#global_header .nav_button span:nth-child(3) {
	top: 33px;
}
#global_header .nav_button.active span:nth-child(1) {
	top: 23px;
	left: 16px;
	background-color: #000000;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#global_header .nav_button.active span:nth-child(2),
#global_header .nav_button.active span:nth-child(3) {
	top: 23px;
	background-color: #000000;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
#global_header .nav_button:after {
	position: relative;
	top: 34px;
	left: 0;
	content: "MENU";
	color: #000000;
	background: none;
	font-size: 10px;
	letter-spacing: 1px;
}
#global_header .nav_button.active:after {
	content: "CLOSE";
}


/* -----------------------------------------
   #global_nav
------------------------------------------*/

#global_nav {
	display: none;
	left: 0;
	width: 100%;
	padding: 10px 0;
	background-color: #E2E2E3;
	box-sizing: border-box;
	text-align: center;
	opacity: 0;
	transition: opacity .3s linear;
	z-index: 100;
}
#global_nav.active {
	display: block;
	position: fixed;
	top: 60px !important;
	height: 100%;
	padding: 0 0 60px 0;
	pointer-events: auto;
	opacity: 100;
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#global_nav ul {
	width: 80%;
	margin: 20px auto 30px auto;
	padding: 0;
	border-top: 1px solid #333333;	
	font-size: 88%;
	font-weight: 600;
	letter-spacing: 3px;
}
#global_nav ul li {
	width: 100%;
	padding: 0;
	border-bottom: 1px solid #333333;
	list-style-type: none;	
	transition: .4s all;
}
#global_nav ul li:last-child {
	padding: 0;
}
#global_nav ul li a {
	display: block;
	position: relative;
	color: #333333;
	padding: 20px 0;
	text-decoration: none;
	cursor: pointer;
}
    #global_nav ul li a span {
        padding: 0 0 0 10px;
        font-size: 88%;
    }
#global_nav ul li span.open:after {
	position: absolute;
	content: "ー";
	top: 20px;
	right: 20px;
	color: #FFFFFF;
}


/* -----------------------------------------
   #top_mainVisual
------------------------------------------*/

#top_mainVisual {
    position: relative;
    top: 60px;
    width: 100%;
    height: 300px;
    z-index: 1;	
}
#top_mainVisual .cont_inner {
    position: relative;
    width: 100%;    
    height: 300px;
}
#top_mainVisual .cont_inner .catch_copy,
#top_mainVisual .cont_inner .illust,
#top_mainVisual #news {
    position: absolute;
}
#top_mainVisual .cont_inner .bg {
    z-index: 10;
}
#top_mainVisual .cont_inner .bg img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#top_mainVisual .cont_inner .catch_copy {
    max-width: 500px;
    width: 90%;
    top: 20px;
    left: 20px;
    z-index: 30;
}
#top_mainVisual .cont_inner .catch_copy img {
    width: 100%;
}
#top_mainVisual .cont_inner .illust {
    max-width: 340px;
    width: 75%;
    right: 20px;
    bottom: 20px;
    z-index: 20;
}
#top_mainVisual .cont_inner .illust img {
    width: 100%;
}
#top_mainVisual #news {
    width: 100%;
    height: 76px;
    padding: 20px;
    background-color: #FE9E53;
    color: #FFFFFF;
    font-size: 75%;
    line-height: 1.2;
    box-sizing: border-box;
    z-index: 40;
}
#top_mainVisual #news span {
    display: block;
    margin: 0 0 6px 
}
#top_mainVisual #news a {
    color: #FFFFFF;
}

/* -----------------------------------------
   #main_cont
------------------------------------------*/

#main_cont {
	position: absolute;
    top: 436px;
}
#main_cont .freerent {
    width: 100%;
    padding: 15px 20px;
    background-color: #e60012;
	text-align: center;
    box-sizing: border-box;
}
#main_cont .freerent img {
    width: 95%;
}
#main_cont article {
	position: relative;
}
.section_ttl {
    padding: 40px 0 30px 0;
}
.section_ttl h2 {
    display: inline-block;
    position: relative;
    top: 0;
    width: 280px;
    height: 40px;
    margin: 0 20px 0 0;
    padding: 10px 20px;
    font-family: "BIZ UDPGothic", sans-serif;
    font-size: 125%;
    font-weight: 700;
    letter-spacing: 6px;
    box-sizing: border-box;
}
.section_ttl h2:before,
.section_ttl h2:after {
    display: inline-block;
    position: absolute;
    width: 8px;
    height: 100%;
    top: 0;
    content: '';
}
.section_ttl h2:before {
    border-left: solid 1px #333333;
    border-top: solid 1px #333333;
    border-bottom: solid 1px #333333;
    left: 0;
}
.section_ttl h2:after {
    content: '';
    border-top: solid 1px #333333;
    border-right: solid 1px #333333;
    border-bottom: solid 1px #333333;
    right: 0;
}
.section_ttl span {
    padding: 0 0 0 10px;
	font-size: 50%;
	font-weight: normal;
	letter-spacing: 1px;
}
.headline {
    margin: 0 0 0 0;
    padding: 15px 0 0 0;
    font-size: 93%;
    letter-spacing: 2px;
}
.flexbox_wrap {
    display: flex;
}

/* -----------------------------------------
   #gallery
------------------------------------------*/

#gallery {
	padding: 0 0 40px 0;
    background-color: #EAEAEA;
}

#gallery ul.photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#gallery ul.photo li {
    width: 49%;
    margin: 0 0 10px 0;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}
#gallery ul.photo li img {
	width:100%;
    height: auto;
}
#gallery ul.photo li span {
    display: block;
    margin: 5px 0 5px 0;
	font-size:85%;
}

/* -----------------------------------------
   #roomplan
------------------------------------------*/

#roomplan {
    padding: 0 0 40px 0;
    background-color: #333333;
}
#roomplan .section_ttl {
    color: #FFFFFF;
}
#roomplan .section_ttl h2:before {
    border-left: solid 1px #FFFFFF;
    border-top: solid 1px #FFFFFF;
    border-bottom: solid 1px #FFFFFF;
    left: 0;
}
#roomplan .section_ttl h2:after {
    content: '';
    border-top: solid 1px #FFFFFF;
    border-right: solid 1px #FFFFFF;
    border-bottom: solid 1px #FFFFFF;
    right: 0;
}
#roomplan ul.madori {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#roomplan ul.madori li {
    width: 49%;
    margin: 0 0 10px 0;
    padding: 30px 15px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #D3D7DD;
    text-align: center;
    box-sizing: border-box;
}
#roomplan ul.madori li img {
    height: 400px;
}
#roomplan ul.madori li span {
    display: block;
    margin: 10px 0 0 0;
}
#roomplan ul.spec {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 10px 20px 0;
    padding: 5px 15px 15px 15px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #D3D7DD;   
    box-sizing: border-box;
}
#roomplan ul.spec li {
    display: flex;
    margin: 10px 0 0 0;
    box-sizing: border-box;
}
#roomplan ul.spec li p:first-child {
    width: 25px;
    margin: 0 5px 0 0;
}
#roomplan ul.spec li p:first-child img {
    width: 25px;
}
#roomplan ul.spec li p:last-child {
    width: 120px;
    padding: 7px 0 0 0;
    font-size: 75%;
}
#roomplan ul.spec li:nth-child(9) p:last-child {
    padding: 3px 0 0 0;
}
#roomplan ul.spec li p:last-child span {
    font-size: 75%;
}
#roomplan .flexbox_wrap {
    flex-direction: column-reverse;
}
#roomplan .madori_annotation {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #D3D7DD;   
    box-sizing: border-box;
    text-align: center;
}
#roomplan .madori_annotation p:first-child {
    padding: 10px 0;
}
#roomplan .madori_annotation img {
    max-width: 293px;
    width: 100%;
}
#roomplan ul.special_notes {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 0;
    justify-content: space-between;
}
#roomplan ul.special_notes li {
    width: 49%;
    margin: 0 0 10px 0;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-sizing: border-box;
    border: 2px solid #D3D7DD;
    line-height: 1.4;
    text-align: center;
}
#roomplan ul.special_notes li p:first-child {
    margin: 0 0 10px 0;
}
#roomplan ul.special_notes img {
    width: 100%;
}
#roomplan ul.special_notes li span {
    display: block;
    padding: 10px 0 0 0;
    font-size: 75%;    
}
#roomplan ul.precautions {
    margin: 10px 0 0 0;
    color: #FFFFFF;
    font-size: 88%;
    line-height: 1.4;
}
#roomplan .detail_linkBtn {
    width: 360px;
    margin: 40px auto 0 auto;
}
#roomplan .detail_linkBtn a {
    display: block;
    width: 360px;
    padding: 15px 0;
    background-color: #FE9E53;
    color: #FFFFFF;
    font-size: 100%;
    text-decoration: none;
    text-align: center;
    letter-spacing: 2px;
    box-sizing: border-box;
}


/* -----------------------------------------
   #location
------------------------------------------*/

#location {
    font-size: 100% !important;
}
#location .cont_inner {
	color: #333333;
}
#location .section_ttl h2 {
}
#location .areaguide {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px 0;
}
#location .areaguide dl {
    width: 100%;
    order: 2;
}
#location .areaguide dl dt {
    font-size: 138%;
}
#location .areaguide dl dd {
    margin: 20px 0 0 0;
    line-height: 1.8;
}
#location .areaguide dl dd p {
    margin: 0 0 15px 0;
    order: 1;
}
#location .areaguide .img {
    width: 100%;
    margin: 0 0 20px 0;
}
#location .areaguide .img img {
    width: 100%;
}
#location .location_list {
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #D3D7DD;   
    box-sizing: border-box;    
}
#location .location_list ul {
    display: block;
    flex-wrap: wrap;
}
#location .location_list ul li {
    width: 100%;
}
#location .location_list ul li dl {
    display: flex;
    font-size: 88%;
    box-sizing: border-box;
}
#location .location_list ul li dl dt {
    width: 80%;
    line-height: 1.9;
}
#location .location_list ul li dl dt span {
    display: inline-block;
    width: 24px;
    height: 20px;
    margin: 0 6px 0 0;
    padding: 7px 0 0 0;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 75%;
    text-align: center;
    line-height: 1.2;
}
#location .location_list ul li dl dd {
    width: 20%;
    padding: 4px 0 0 0;
    line-height: 1.6;
}
#location .location_list .location_list_img {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0 0;  
}
#location .location_list .location_list_img .img {
    width: 49%;    
}
#location .location_list .img img {
    width: 100%;
}


/* -----------------------------------------
   #access
------------------------------------------*/

#access {
    padding: 0 0 40px 0;
}
#access .rosenzu {
    width: 95%;
    max-width: 540px;
    margin: 0 auto;
}
#access .rosenzu img {
    width: 100%;
}
#access ul.access_station {
    margin: 10px 0 0 0;
    justify-content: space-between;
}
#access ul.access_station li {
    width: 49%;
    font-size: 88%;
    line-height: 1.4;
}
#access ul.access_station li img {
    width: 100%;
    margin: 0 0 5px 0;
}
#access ul.time_required {
    margin: 20px 0 0 0;
    flex-wrap: wrap;
    justify-content: center;
}
#access ul.time_required li {
    width: 100%;
    margin: 0 0 15px 0;
}
#access ul.time_required table {
    width: 100%;
    box-sizing: border-box;
}
#access ul.time_required th {
    padding: 8px 15px 10px 15px;
    color: #FFFFFF;
}
#access ul.time_required #access_keihin th {
    background-color: #1D98D3;
}
#access ul.time_required #access_saikyo th {
    background-color: #2EB49E;
}
#access ul.time_required #access_others th {
    background-color: #333333;
}
#access ul.time_required td {
    padding: 10px 25px;
}
#access ul.time_required td:nth-child(even) {
    text-align: right;
}
#access .detail_linkBtn {
    width: 360px;
    margin: 25px auto 0 auto;
}
#access .detail_linkBtn a {
    display: block;
    width: 360px;
    padding: 15px 0;
    background-color: #FE9E53;
    color: #FFFFFF;
    font-size: 100%;
    text-decoration: none;
    text-align: center;
    letter-spacing: 2px;
    box-sizing: border-box;
}


/* -----------------------------------------
   #gotoTop
------------------------------------------*/

#gotoTop {
    position: fixed;
	width: 60px;
	height: 60px;
	border-radius: 40px;
    bottom: 10px;
    right: 10px;
    line-height: 1;
    z-index: 9999;
}
#gotoTop a {
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 30px;	
    background-color: rgba(254,158,83,1.0);
}
#gotoTop img {
	width: 40px;
	margin: 10px;
	vertical-align:middle;
}


/* -----------------------------------------
   #global_footer
------------------------------------------*/

#global_footer {
    width: 100%;
	padding: 30px 0;
	background-color: #333333;
	color: #FFFFFF;
    font-size: 88%;
	line-height: 1.6;
}
#global_footer .copyright {
    text-align: center;
}
