/*container
-----------------------------------------------------------*/

html {
	width: 100%;
	overflow-x: hidden;
	overflow: hidden;
	height: 100%;
}

body {
	min-width: 1080px;
	height: 100%;
}

#container {
	overflow: hidden;
	width: 100%;
	min-width: 1080px;
	position: relative;
	z-index: 1;
}

#containerTop {
	height: 0;
	overflow: hidden;
	width: 100%;
	min-width: 1080px;
	position: relative;
	z-index: 1;
}


@media screen and (max-width: 999px) {
	
	html {
		overflow-x: scroll;
	}
	
}

@media screen and (max-width: 800px) {
	
	html {
		overflow-x: hidden;
	}
	body {
		min-width: inherit;
	}
	#container, #containerTop {
		min-width: inherit;
	}
	
}

/*loading 
-----------------------------------------------------------*/

#load {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	display: flex;
    flex-flow: wrap;
    justify-content: space-around;
	align-items: center;
	z-index: 20;
}

#load div {
	width: 100%;
	height: 1px;
	background-color: #333;
	transform: scaleX(0);
}


/*top header 
-----------------------------------------------------------*/

#topHeader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: #000;
	overflow: hidden;
	z-index: 0;
}

#topHeader .topImg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#topHeader .topImg02,
#topHeader .topImg03,
#topHeader .topImg04,
#topHeader .topImg05,
#topHeader .topImg06 {
	opacity: 0;
}

#topHeader h1 {
	font-size: max(5vw,50px);
	line-height: 122%;
	color: #2dab3f;
	font-weight: 500!important;
	position: absolute;
	left: 10vw;
	top: 30vh;
}

#topHeader h1 span {
	font-weight: 300!important;
}

#topHeader #gnav {
	position: absolute;
	top: 56px;
	left: 64px;
}

@media screen and (max-width: 800px) {
	
	#topHeader h1 {
        font-size: max(8vw,30px);
        line-height: 125%;
        left: 6vw;
        top: 27vh;
    }
	
}

/*inner header 
-----------------------------------------------------------*/

#innerHeader {
	width: 100%;
	height: 240px;
	position: relative;
	background-color: #fff;
}

#innerHeader h1 {
	font-size: 36px;
	line-height: 122%;
	position: absolute;
	left: 72px;
	top: 48px;
}

#innerHeader h1 a {
	display: block;
	color: #2dab3f;
	font-weight: 500!important;
}

#innerHeader h1 a span {
	font-weight: 300!important;
}

#innerHeader #gnav {
	position: absolute;
	top: 180px;
	left: 72px;
}

@media screen and (max-width: 800px) {
	
	#innerHeader {
        height: calc(32px + 12.5vw)
    }

    #innerHeader h1 {
        font-size: max(5vw,20px);
        line-height: 120%;
        left: 5vw;
        top: 16px;
    }
	
}

/*gloval nav
-----------------------------------------------------------*/

#gnav ul li {
	display: inline-block;
	margin-right: 20px;
}

#gnav ul li a {
	font-size: 14px;
	line-height: 150%;
	color: #333;
	padding-bottom: 9px;
	position: relative;
}

#gnav ul li a div {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
	content: '';
	transform: scaleX(0);
}

/*inner
-----------------------------------------------------------*/

#inner {
	background-color: #f4f4f1;
	width: 100%;
	padding: 64px 0 120px;
}

#inner #innerBox {
	margin: 0 auto;
	width: 77.8%;
	max-width: 1260px;
	min-width: 936px;
}

#inner #innerBox h2 {
	font-size: 60px;
	line-height: 120%;
	letter-spacing: 1px;
	font-weight: 500!important;
}

#inner #innerBox h2 span {
	font-weight: 300!important;
}

#inner #innerBox h3 {
	font-size: 14px;
	line-height: 150%;
	margin-top: 24px;
}

#inner #innerBox #innerFrame {
	margin-top: 32px;
	width: 100%;
	padding: 96px 0;
	background-color: #fff;
}

#inner #innerBox #innerFrame #innerCol {
	margin: 0 auto;
	width: 90%;
	max-width: 920px;
}

#inner .innerHeading {
	font-size: 20px;
	list-style: 160px;
	font-weight: 500!important;
}

@media screen and (max-width: 800px) {

	#inner {
        padding: 24px 0 48px;
    }

    #inner #innerBox {
        width: 90%;
        min-width: inherit;
    }

    #inner #innerBox h2 {
        font-size: 24px;
        line-height: 125%;
		text-align: center;
    }

    #inner #innerBox h3 {
        font-size: 12px;
        margin-top: 8px;
		text-align: center;
    }

    #inner #innerBox #innerFrame {
        margin-top: 16px;
        padding: 24px 0 32px;
    }

    #inner .innerHeading {
        font-size: 18px;
        list-style: 167px;
    }
	
}

/*menu btn
-----------------------------------------------------------*/

#menuBtn {
	width: 96px;
	height: 32px;
	position: fixed;
	top: 56px;
	right: 50px;
	cursor: pointer;
	overflow: hidden;
	z-index: 10;
}

#menuBtn div {
	position: absolute;
	font-size: 14px;
	line-height: 150%;
	font-weight: 500!important;
}

#menuBtn .bar {
	width: 32px;
	height: 2px;
	background-color: #333;
	left: 0;
}

#menuBtn .barTop {
	top: 11px;
}

#menuBtn .barBottom {
	top: 19px;
}

#menuBtn .menu {
	top: 5px;
	left: 40px;	
}

#menuBtn .close {
	top: 20px;
	left: 40px;
	opacity: 0;
}

@media screen and (max-width: 800px) {
	
	#menuBtn {
        top: 12px;
        right: 12px;
    }
	
}

/*modal
-----------------------------------------------------------*/

#modalBase {
	display: none;
	position: fixed;
	top: -25vh;
	right: 0;
	width: 760px;
	height: 150vh;
	background-color: #504946;
	z-index: 8;
}

#modalNav {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 680px;
	overflow: hidden scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 9;
}

#modalNav::-webkit-scrollbar{
    display: none;
}

#modalNav ul {
	padding: 60px 0;
	width: 480px;
	margin-left: 40px;
}

#modalNav ul li {
	margin-bottom: 24px;
}

#modalNav ul li a {
	display: inline-block;
	font-size: 36px;
	line-height: 100%;
	color: #fff;
	font-weight: 500!important;
}

#modalNav ul li a .ja {
	font-size: 12px;
	font-weight: 300!important;
	margin-left: 16px;
}

#modalNav ul li a .sl {
	font-weight: 300!important;
}

#modalNav ul li a br {
	display: none;
}

@media screen and (max-width: 800px) {
	
	#modalBase {
        width: 100%;
    }

    #modalNav {
        right: inherit;
		left: 0;
        width: 100%;
    }

    #modalNav ul {
        padding: 64px 5% 32px;
        width: 100%;
    }

    #modalNav ul li {
        margin-bottom: 12px;
    }

    #modalNav ul li a {
        font-size: 24px;
    }

    #modalNav ul li a .ja {
        font-size: 11px;
        margin-left: 0;
    }

    #modalNav ul li a br {
        display: block;
    }
	
}

/*footer
-----------------------------------------------------------*/

footer {
	background-color: #f4f4f1;
}

footer #gmap {
	width: 100%;
	height: 540px;
}

footer #footerBox {
	padding: 48px 20px 32px 72px;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-align-items: flex-end;
    align-items: flex-end;
}

footer #footerBox h1 {
	font-size: 36px;
	line-height: 122%;
	color: #2dab3f;
	font-weight: 500!important;
}

footer #footerBox h1 span {
	font-weight: 300!important;
}

footer #footerBox .adress {
	margin-top: 40px;
}

footer #footerBox .telephone {
	display: inline-block;
	margin-top: 4px;
	cursor: default;
	color: #333;
}

footer #footerBox ul {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 480px;
}

footer #footerBox ul li {
	width: 160px;
	margin-bottom: 4px;
}

footer #footerBox ul li a {
	display: inline-block;
	font-size: 14px;
	line-height: 200%;
	color: #333;
}

footer #footerBox .copyright {
	margin-top: 24px;
	font-size: 12px;
	line-height: 233%;
}

@media screen and (max-width: 800px) {
	
	footer #gmap {
        height: 80vw;
    }
	
    footer #footerBox {
        padding: 32px 5% 12px;
        display: block;
		text-align: center;
    }
	
	footer #footerBox div:first-of-type {
		display: inline-block;
		text-align: left;
	}
	
	footer #footerBox div:last-of-type {
		display: block;
		width: 100%;
		text-align: center;
	}

    footer #footerBox h1 {
        font-size: 24px;
        line-height: 125%;
	}

    footer #footerBox .adress {
        margin-top: 12px;
    }

    footer #footerBox ul {
		display: none;
    }

    footer #footerBox .copyright {
        margin-top: 32px;
        font-size: 10px;
        line-height: 160%;
    }
	
}

/*top page
-----------------------------------------------------------*/

#topPage {
	background-color: #fff;
	padding: 80px 0 120px;;
	position: relative;
	width: 100%;
}

#topPage h2 {
	font-size: 40px;
	line-height: 150%;
	font-weight: 700!important;
	text-align: center;
}

#topPage h3 {
	margin-top: 24px;
	font-size: 24px;
	line-height: 150%;
	font-weight: 500!important;
	text-align: center;
}

#topPage #measures {
	margin: 64px auto 0;
	width: 780px;
	background-color: #f4f4f1;
}

#topPage #measures .mheader {
	width: 100%;
	height: 48px;
	color: #fff;
	background-color: #a0a09d;
	text-align: center;
	position: relative;
	font-size: 18px;
	line-height: 150%;
	font-weight: 500!important;
	padding-top: 11px;
	cursor: pointer;
}

#topPage #measures .mheader div {
	position: absolute;
	top: 23px;
	right: 20px;
	width: 20px;
	height: 2px;
	background-color: #fff;
}

#topPage #measures .mheader div:first-of-type {
	transform: rotate(90deg);
}

#topPage #measures .mabout {
	display: none;
	padding: 20px 48px 28px;
}

#topPage #measures ul li {
	position: relative;
	padding-left: 1.5em;
	font-size: 14px;
	line-height: 186%;
}

#topPage #measures ul li::after {
	position: absolute;
	top: 0;
	left: 0;
}

#topPage #measures ul li:nth-of-type(1)::after{ content: '1'; }
#topPage #measures ul li:nth-of-type(2)::after{ content: '2'; }
#topPage #measures ul li:nth-of-type(3)::after{ content: '3'; }
#topPage #measures ul li:nth-of-type(4)::after{ content: '4'; }
#topPage #measures ul li:nth-of-type(5)::after{ content: '5'; }

@media screen and (max-width: 800px) {
	
	#topPage {
        padding-top: 8vw;
    }

    #topPage h2 {
        font-size: 6vw;
    }

    #topPage h3 {
        margin-top: 3vw;
        font-size: 4vw;
    }

    #topPage #measures {
        margin: 8vw auto 0;
        width: 90%;
    }

    #topPage #measures .mheader {
		height: 44px;
        font-size: 16px;
        padding-top: 10px;
    }

    #topPage #measures .mheader div {
        top: 21px;
        right: 16px;
    }

    #topPage #measures .mabout {
        padding: 16px 5% 22px;
    }

    #topPage #measures ul li {
        font-size: 12px;
        line-height: 183%;
    }
}

#topPage .aboutBox {
	width: 100%;
	padding: 64px 0 80px;
}

#topPage .aboutPrice {
	margin-top: 96px;
}

#topPage .aboutPrice,
#topPage .aboutAccess {
	background-color: #f4f4f1;
}

#topPage .aboutBox .aboutDetail {
	margin: 0 auto;
	width: 680px;
}

#topPage .aboutBox .aboutDetail h4 {
	font-size: 36px;
	line-height: 150%;
	letter-spacing: 1px;
	font-weight: 500!important;
}

#topPage .aboutBox .aboutDetail h4 span {
	font-weight: 300!important;
}

#topPage .aboutBox .aboutDetail .txtBox {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-top: 24px;
}

#topPage .aboutBox .aboutDetail .txtBox .txtItem {
	width: 250px;
	font-size: 14px;
	line-height: 186%;
	font-weight: 300!important;
	padding-top: 1px;
}

#topPage .aboutBox .aboutDetail .txtBox .txtDetail {
	flex: 1;
}

#topPage .aboutBox .aboutDetail .txtBox .txtPrice p {
	position: relative;
}

#topPage .aboutBox .aboutDetail .txtBox .txtPrice p span {
	position: absolute;
	top: 0;
	left: 120px;
	width: 210px;
	text-align: right;
}

#topPage .aboutBox .aboutDetail .txtBox .txtDetail .goods span {
	display: inline-block;
	margin-right: 1em;
}

#topPage .aboutBox .aboutDetail .txtBox .txtDetail .linlBox {
	margin-top: 32px;
	width: 100%;
}

#topPage .aboutBox .aboutDetail .txtBox .txtDetail .linlBox a {
	display: inline-block;
	font-size: 14px;
	line-height: 150%;
	padding-bottom: 8px;
	color: #333;
	position: relative;
}
#topPage .aboutBox .aboutDetail .txtBox .txtDetail .linlBox a div {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #333;
}

@media screen and (max-width: 800px) {
	
	#topPage .aboutBox {
        width: 100%;
        padding: 32px 0 40px;
    }

    #topPage .aboutPrice {
        margin-top: 48px;
    }

    #topPage .aboutBox .aboutDetail {
        width: 90%;
    }

    #topPage .aboutBox .aboutDetail h4 {
        font-size: 24px;
		text-align: center;
    }

    #topPage .aboutBox .aboutDetail .txtBox {
        display: block;
        margin-top: 8px;
    }

    #topPage .aboutBox .aboutDetail .txtBox .txtItem {
        width: 100%;
        font-size: 12px;
        line-height: 183%;
        padding-top: 0;
		text-align: center;
		margin-bottom: 24px;
    }

    #topPage .aboutBox .aboutDetail .txtBox .txtDetail {
        width: 100%;
    }

    #topPage .aboutBox .aboutDetail .txtBox .txtPrice p span {
        left: 96px;
        width: 192px;
    }
	
}

#topPage .telBox {
	margin-top: 80px;
	text-align: center;
}

#topPage .telBox .telephone {
	display: inline-block;
	cursor: default;
	color: #333;
}

#topPage .telBox .telephone .number {
	font-size: 32px;
	line-height: 150%;
	margin-top: 4px;
	font-weight: 500!important;
	letter-spacing: 1px;
}

@media screen and (max-width: 800px) {
	
	#topPage .telBox {
        margin-top: 40px;
    }

    #topPage .telBox .telephone .number {
        font-size: 28px;
        margin-top: 2px;
    }
	
}

#topPage .rooms {
	margin-top: 96px;
}

#topPage .roomSub {
	margin-top: -4vw;
	position: relative;
	z-index: 5;
}

#topPage .roomImgLeft {
	width: 100%;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#topPage .roomImgRight {
	width: 100%;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

#topPage .roomTop,
#topPage .roomTop img {
	width: 88.9vw;
}

#topPage .roomTop .imgBox {
	margin-top: -80px;
	position: relative;
	z-index: 2;
}

#topPage .roomMidium,
#topPage .roomMidium img {
	width: 55.56vw;
}

#topPage .roomSmall {
	width: 91.67vw;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#topPage .roomSmall .imgBoxOuter,
#topPage .roomSmall img {
	width: 44.44vw;
}

#topPage .imgBox {
	overflow: hidden;
	width: 0;
}

#topPage .roomTop h5 {
	font-size: 64px;
	line-height: 125%;
	letter-spacing: 1px;
	font-weight: 500;
	padding-left: 9.375%;
	position: relative;
	left: 40px;
	opacity: 0;
	z-index: 5;
}

#topPage .roomTop h6 {
	margin-top: 24px;
	padding-left: 9.375%;
	position: relative;
	left: 40px;
	opacity: 0;
	z-index: 5;
}

#topPage .bedNotes {
	text-align: right;
	margin-top: 6px;
	padding: 0 6px;
}

#topPage .bedNotes p {
	display: inline-block;
	text-align: left;
	line-height: 150%!important;
}

@media screen and (max-width: 800px) {
	
	#topPage .rooms {
        margin-top: 12vw;
    }

    #topPage .roomTop,
    #topPage .roomTop img {
        width: 90vw;
    }

    #topPage .roomTop .imgBox {
        margin-top: -8.75vw;
    }

    #topPage .roomMidium,
    #topPage .roomMidium img {
        width: 55vw;
    }

    #topPage .roomSmall {
        width: 93vw;
    }

    #topPage .roomSmall .imgBoxOuter,
    #topPage .roomSmall img {
        width: 45vw;
    }

    #topPage .roomTop h5 {
        font-size: 7vw;
		letter-spacing: 0;
        padding-left: 5vw;
    }

    #topPage .roomTop h6 {
        margin-top: 0.5vw;
		font-size: 3vw;
        padding-left: 5vw;
    }

    #topPage .bedNotes {
        margin-top: 4px;
        padding: 0 6px;
    }
	
}

#topPage .yt {
	position: relative;
	width: 80%;
	max-width: 960px;
	margin: 96px auto 0;
}

#topPage .yt::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

#topPage .yt iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	
	#topPage .yt {
        width: 90%;
        margin: 48px auto 0;
    }
}

/*how to use
-----------------------------------------------------------*/
.howtouse dd .cPrice {
	position: relative;
	margin: 12px 0 16px;
}

.howtouse dd .cPrice span {
	position: absolute;
	top: 0;
	left: 120px;
	width: 210px;
	text-align: right;
}

.howtouse dd .cPay {
	position: relative;
	margin: 0 0 16px;
	padding-left: 144px;
}

.howtouse dd .cPay span {
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 800px) {
	
	.howtouse dd .cPrice {
        margin: 8px 0 12px;
    }
	
	.howtouse dd .cPrice span {
        left: 96px;
        width: 192px;
    }

    .howtouse dd .cPay {
        margin: 12px 0;
        padding-left: 120px;
    }
	
}

/*About Facility
-----------------------------------------------------------*/

.aboutfacility .planImg {
	margin-top: 36px;
}

.aboutfacility .planImg img {
	border: solid 3px #807f74;
}

.aboutfacility .planLink {
	display: block;
	margin: 48px auto 0;
	width: 100%;
	max-width: 372px;
	height: 48px;
	font-size: 18px;
	font-weight: 500!important;
	line-height: 150%;
	color: #fff;
	background-color: #a0a09d;
	padding: 10px 8px 0;
	text-align: center;
}

@media screen and (max-width: 800px) {
	
	.aboutfacility .planImg {
        margin-top: 24px;
    }

  	.aboutfacility .planImg img {
      	border: solid 2px #807f74;
    }

    .aboutfacility .planLink {
        margin: 24px auto 0;
        height: 40px;
        font-size: 16px;
        padding: 7px 8px 0;
    }
	
}

/*Funiture
-----------------------------------------------------------*/

.funiture .ffHeading {
	text-align: center;
}

.funiture .ffHeading span {
	display: inline-block;
	text-align: left;
}

.funiture .ffGallery {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.funiture .ffGallery section {
	width: 30.5%;
	margin-bottom: 36px;
}

.funiture .ffGallery section:nth-last-of-type(-n+3) {
	margin-bottom: 0;
}

.funiture .ffGallery::after {
	display: block;
	content: '';
	width: 30.5%;
	height: 0;
}

.funiture .ffGallery section h4 {
	margin-top: 12px;
	line-height: 162.5%;
	font-weight: 500!important;
}

.funiture .ffGallery section p {
	margin-top: 4px;
	font-size: 12px;
	line-height: 150%;
}

.funiture .ffGallery section p span {
	display: inline-block;
}

@media screen and (max-width: 800px) {
	
	.funiture .ffHeading {
        text-align: left;
    }

    .funiture .ffHeading span {
        display: inline;
    }

    .funiture .ffGallery section {
        width: 47.6%;
        margin-bottom: 3.5vw;
    }
	
	.funiture .ffGallery section:nth-last-of-type(-n+3) {
        margin-bottom: 3.5vw;
    }
	
	.funiture .ffGallery section:nth-last-of-type(-n+2) {
        margin-bottom: 0;
    }

    .funiture .ffGallery::after {
        width: 47.6%;
    }

    .funiture .ffGallery section h4 {
        margin-top: 1.5vw;
        line-height: 164%;
    }

    .funiture .ffGallery section p {
        margin-top: 0.5vw;
        font-size: 10px;
    }
	
}


/*company
-----------------------------------------------------------*/

.company .attention {
	color: #e73562;
	font-weight: 500!important;
}

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

.access .parking {
	margin-top: 48px;
	width: 100%;
	height: 480px;
}

.access .parking iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	
	.access .parking {
		margin-top: 24px;
		height: 75vw;
    }
	
}

/*terms
-----------------------------------------------------------*/

.terms .termsHadding {
	font-weight: 500!important;
	font-size: 14px;
	line-height: 186%;
}

.terms ul li {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 186%;
	position: relative;
	padding-left: 14px;
}

.terms ul li::before {
	position: absolute;
	top: 10px;
	left: 0;
	width: 8px;
	height: 8px;
	border: solid 1px #999;
	content: '';
}

.terms ul li:last-of-type {
	margin-bottom: 0;
}

@media screen and (max-width: 800px) {
	
    .terms .termsHadding {
        font-size: 12px;
        line-height: 183%;
    }
	
	.terms ul li {
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 183%;
        padding-left: 13px;
    }

    .terms ul li::before {
        top: 8px;
        width: 8px;
        height: 8px;
    }
	
}

