@charset "UTF-8";

.p-tab__button:hover {
	-webkit-transition: .6s;
	transition: .6s;
	opacity: .6;
}

.p-tab,
.p-tab__button,
.p-facility__nav,
.p-room__header,
.p-room__gallery,
.p-room__figure,
.p-room__figure.figure-nallow,
.p-room__foot,
.p-room__table-dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.p-tab__button.is-active:after,
.p-room__reserve:after {
	position: absolute;
	display: block;
	content: '';
}

/* tab
---------------------------------------- */

.p-tab {
	margin: 40px auto 0 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-tab__button {
	font-size: 1rem;
	position: relative;
	width: 230px;
	height: 60px;
	text-align: center;
	border-radius: 16px;
	background: #cedbe3;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-tab__button:nth-child(2) {
	margin: 0 14px;
}

.p-tab__button.is-active {
	color: #fff;
	background: #00aed0;
}

.p-tab__button.is-active:after {
	top: 100%;
	left: 50%;
	width: 16px;
	height: 8px;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	border-top: #00aed0 8px solid;
	border-right: transparent 8px solid;
	border-left: transparent 8px solid;
}

.p-tab__button.is-active:hover {
	cursor: auto;
	opacity: 1;
}

.p-tab__button.button-bottom.is-active:after {
	top: 0;
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	border-top: none;
	border-bottom: #00aed0 8px solid;
}

/* facility
---------------------------------------- */

.p-facility {
	margin: 40px auto 0 auto;
	padding: 80px 0;
	background: #e8f8ff;
}

.p-facility__nav {
	width: min(83.333333%, 1000px);
	margin: 40px auto 0 auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-facility__nav.nav-bottom {
	margin-top: 80px;
}

.p-facility__tab {
	font-size: 1rem;
	display: block;
	width: 32%;
	margin: .25em;
	padding: .5em 0;
	-webkit-transition: .6s;
	transition: .6s;
	border-radius: .5em;
	background: #cedbe3;
}

.p-facility__tab:hover {
	color: #fff;
	background: rgba(0, 174, 208, .5);
}

.p-facility__tab.is-active {
	cursor: auto;
	color: #fff;
	background: #00aed0;
}

.p-facility__tab.tab-wide {
	width: 33%;
}

/* room
---------------------------------------- */

.p-room {
	width: min(83.333333%, 1000px);
	margin: 80px auto 0 auto;
}

.p-room__header {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.p-room__title {
	font-size: 1.25rem;
}

.p-room__title.title-center {
	display: block;
	width: 100%;
	text-align: center;
}

.p-room__title-small {
	font-size: 1rem;
	display: inline-block;
	margin-left: 1em;
}

.p-room__title-small.small-center {
	display: block;
	text-align: center;
}

.p-room__reserve {
	font-size: 1rem;
	position: relative;
	display: block;
	padding: .5em 3em;
	text-align: center;
	color: #fff;
	border-radius: .5em;
	background: #00aed0;
}

.p-room__reserve:after {
	top: 50%;
	right: 0;
	width: .875em;
	height: .625em;
	-webkit-transition: .6s;
	transition: .6s;
	-webkit-transform: translate(-10px, -50%);
	-ms-transform: translate(-10px, -50%);
	transform: translate(-10px, -50%);
	background: url('../images/cmn/icn_arw_white.svg') center center/contain no-repeat;
}

.p-room__reserve:hover:after {
	-webkit-transform: translate(-7px, -50%);
	-ms-transform: translate(-7px, -50%);
	transform: translate(-7px, -50%);
}

.p-room__picture {
	display: block;
	width: 100%;
	margin-top: 40px;
	border-radius: 24px;
	aspect-ratio: 1.618/1;
}

.p-room__summary {
	margin-top: 1.5em;
}

.p-room__summary.summary-center {
	text-align: center;
}

.p-room__gallery {
	margin-top: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.p-room__gallery-picture.picture-half {
	width: 49%;
	border-radius: 12px;
	aspect-ratio: 133/100;
}

.p-room__figure {
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.p-room__figure.figure-wide {
	width: 66.5%;
}

.p-room__figure.figure-nallow {
	width: 33%;
	-ms-flex-line-pack: justify;
	align-content: space-between;
}

.p-room__figure-caption {
	display: block;
	width: 100%;
	padding-bottom: .75em;
}

.p-room__figure-picture {
	border-radius: 12px;
	aspect-ratio: 133/100;
}

.p-room__figure-picture.picture-wide {
	width: 64.5%;
	aspect-ratio: 490/370;
}

.p-room__figure-picture.picture-nallow {
	width: 34%;
	aspect-ratio: 260/370;
}

.p-room__button {
	width: 360px;
	margin: 40px auto 0 auto;
}

.p-room__foot {
	margin: 40px auto 0 auto;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.p-room__table {
	width: 50%;
}

.p-room__table-dl {
	margin-top: 4px;
	padding-top: 4px;
	border-top: #cedbe3 1px solid;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.p-room__table-dl:first-child {
	border: none;
}

.p-room__table-dt {
	width: 30%;
	padding: .15em 0;
	text-align: center;
	background: #cedbe3;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.p-room__table-dd {
	width: 65%;
}

.p-room__amenity-item {
	display: inline-block;
}

.p-room__amenity-item:after {
	content: ' / ';
}

.p-room__amenity-item:last-child:after {
	content: none;
}

.p-room__floor {
	display: block;
	width: 245px;
	height: 245px;
}

.p-room__floor.floor-wide {
	width: 44%;
	height: 100%;
}

.p-room__floor-picture {
	border-radius: 12px;
	aspect-ratio: 480/360;
}

.p-room__floor-img {
	font-family: 'object-fit: contain; object-position: center;';
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

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

.p-tab {
	margin-top: 5.3333333333vw;
}

.p-tab__button {
	font-size: 3.2vw;
	width: 32%;
	height: 16vw;
	padding: 0 .5em;
	border-radius: 3.2vw;
}

.p-tab__button:nth-child(2) {
	margin: 0 2%;
}

.p-tab__button.is-active:after {
	width: 4.2666666667vw;
	height: 2.1333333333vw;
	border-width: 2.1333333333vw;
}

.p-tab__button.button-bottom.is-active:after {
	border-width: 2.1333333333vw;
}

.p-facility {
	margin-top: 5.3333333333vw;
	padding: 10.6666666667vw 0;
}

.p-facility__nav {
	width: 100%;
	margin-top: 5.3333333333vw;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.p-facility__nav.nav-bottom {
	margin-top: 10.6666666667vw;
}

.p-facility__tab {
	font-size: 3.2vw;
	width: 49%;
	margin-left: 0;
}

.p-facility__tab.tab-wide {
	width: 49%;
}

.p-room {
	width: 100%;
	margin-top: 10.6666666667vw;
}

.p-room__title {
	font-size: 4vw;
}

.p-room__title-small {
	font-size: 3.2vw;
}

.p-room__reserve {
	width: 100%;
	margin-top: 2.6666666667vw;
	padding: 1em;
}

.p-room__reserve:after {
	-webkit-transform: translate(-2.6666666667vw, -50%);
	-ms-transform: translate(-2.6666666667vw, -50%);
	transform: translate(-2.6666666667vw, -50%);
}

.p-room__reserve:hover:after {
	-webkit-transform: translate(-2.6666666667vw, -50%);
	-ms-transform: translate(-2.6666666667vw, -50%);
	transform: translate(-2.6666666667vw, -50%);
}

.p-room__picture {
	margin-top: 5.3333333333vw;
	border-radius: 3.2vw;
}

.p-room__summary.summary-center {
	text-align: left;
}

.p-room__gallery {
	margin-top: 5.3333333333vw;
}

.p-room__gallery-picture.picture-half {
	width: 100%;
	margin-top: 1.3333333333vw;
	border-radius: 3.2vw;
}

.p-room__figure.figure-wide {
	width: 100%;
}

.p-room__figure.figure-nallow {
	width: 100%;
	margin-top: 2.6666666667vw;
}

.p-room__figure.figure-nallow > .p-room__figure-picture {
	width: 49%;
}

.p-room__figure-picture {
	border-radius: 3.2vw;
}

.p-room__button {
	width: 100%;
	margin-top: 5.3333333333vw;
}

.p-room__foot {
	margin-top: 5.3333333333vw;
}

.p-room__table {
	width: 100%;
}

.p-room__floor {
	width: 100%;
	margin-top: 5.3333333333vw;
}

.p-room__floor.floor-wide {
	width: 100%;
}

.p-room__floor-picture {
	border-radius: 3.2vw;
}

}

/*# sourceMappingURL=facilities.css.map */
