/* タブレット以上 */
@media (min-width:768px){
}
/* 小型PC以上 */
@media (min-width:1024px){
}
/* 大型PC */
@media (min-width:1280px){
}
/*--共通--*/
html{
    scroll-behavior:smooth;
}
.content-wrapper{}
body{
    font-family: "Noto Serif JP", sans-serif;
    background: #161310;
    color: #fff;
    line-height: 1.2;
}
.button-item{
    background: #c99a2e;
    border-radius: 6px;
    padding: 0 1em;
}
.h2_title{
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: .75em;
}
.h2_title::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 2.5em;
    height: 1px;
    background: #fff;
    display: block;
    margin: auto;
}
/*--header--*/
.header{
    height: 80px;
    padding: 0 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.header .header_title{}
.header .header_title img{
    width: auto;
    height: 50px;
}
@media (min-width:1024px){
.header{
    align-items: inherit;
}
}
/*--ハンバーガーメニュー--*/
.menu{
    position:fixed;
    top: 2%;
    right: 2%;
    background: #161310;
    z-index:1001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_btn{
    width:30px;
    height:24px;
    z-index:1001;
    border:none;
    background:none;
    cursor:pointer;
    position: relative;
}
.menu_btn span,
.menu_btn::before,
.menu_btn::after{
    content:"";
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background:#fff;
    transition:0.3s;
}
.menu_btn span{
    top:50%;
    transform:translateY(-50%);
}
.menu_btn::before{
    top:0;
}
.menu_btn::after{
    bottom:0;
}
.menu_btn.active span{
    opacity:0;
}
.menu_btn.active::before{
    top:50%;
    transform:translateY(-50%) rotate(45deg);
    background:#fff;
}
.menu_btn.active::after{
    bottom:auto;
    top:50%;
    transform:translateY(-50%) rotate(-45deg);
    background:#fff;
}
.menu_nav{
    position:fixed;
    top:0;
    right:0;
    width:100%;
    height:100vh;
    background:rgb(0 0 0 / .8);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:20px;
    transform:translateX(100%);
    transition:0.4s;
    z-index:1000;
}
.menu_nav.active{
    transform:translateX(0);
}
.menu_nav a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
}
@media (min-width:1024px){
.menu_nav{
    width:400px;
    height:100vh;
}
}
/*--fv--*/
.fade{
	position:relative;
    width:100%;
	height:100%;
    aspect-ratio: 1108/1477;
}
.fade img{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	opacity:0;
	animation:fade 15s infinite;
    filter:blur(0.0001px);
}
.fade img:nth-child(1){
	animation-delay:0s;
}
.fade img:nth-child(2){
	animation-delay:5s;
}
.fade img:nth-child(3){
	animation-delay:10s;
}
@keyframes fade{
	0%{opacity:0;}
	10%{opacity:1;}
	30%{opacity:1;}
	40%{opacity:0;}
	100%{opacity:0;}
}
.fv{
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width:100%;
	height:100%;
    aspect-ratio: 1108/1477;
}
.fv_text{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5em;
    margin-left: 3%;
}
.fv_text_item{
    font-size: 24px;
    background: rgb(0 0 0 / .8);
    color: #fff;
    padding: .125em .25em;
	clip-path:inset(0 100% 0 0);
	animation:reveal 0.6s ease forwards;
    animation-delay:1s;
}
.fv_text_item:nth-child(1){
	animation-delay:.8s;
}
.fv_text_item:nth-child(2){
	animation-delay:1.2s;
}
.fv_text_item:nth-child(3){
	animation-delay:1.6s;
}
@keyframes reveal{
	to{
		clip-path:inset(0 0 0 0);
	}
}
.fv_tel{
    position: absolute;
    bottom: 5%;
    width: fit-content;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 20px;
    color: #fff;
    padding: .5em 1em .5em .75em;
}
.fv_tel img{
    width: 20px;
    filter: brightness(0) invert(1);
}
@media (min-width:1024px){
.fv{
    aspect-ratio: 16/9;
    height: inherit;
}
.fv video{
    width: 100%;
    height: auto;
}
}
@media (min-width:768px){
.fv_text_item{
    font-size: 32px;
}
.fv_tel{
    font-size: 24px;
}
.fv_tel img{
    width: 28px;
}
}
.point{
    padding: 2em 3%;
}
.point_list{
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 1.5em;
}
.point_list_item{}
.point_list_item_title{
    font-size: 24px;
    display: flex;
    align-items: flex-end;
    gap: .25em;
}
.point_list_item_title_number{
	position:relative;
	display:inline-block;
	width:40px;
	height:40px;
    line-height: 40px;
	text-align:center;
	color:#fff;
	font-size:20px;
	font-weight:bold;
	background:#e8b46a;
	border-radius:50%;
	box-sizing:border-box;
}
.point_list_item_title_number::before{
	content: "";
    position: absolute;
    right: -9px;
    bottom: 2px;
    border: 7px solid transparent;
    border-left: 8px solid #e8b46a;
    transform: rotate(30deg);
}
.point_list_item_text{
    margin-top: 1em;
}
.price-movie,
.price-text-wrap{
    margin-top: 2em;
}
.price-movie iframe{
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: .75em;
}
.price-movie-title,
.price-text-title{
    font-size: 18px;
}
.price-text-item{
    margin-top: .75em;
}
.price-text-item a{
    border-bottom: solid 1px #e8b46a;
    color: #e8b46a;
}
.price{
    padding: 0 3%;
}
.price_title{
}
.price-table{
    width:100%;
    max-width:720px;
    margin:1.5em auto 0;
    background:#fff;
    color: #161310;
}
.price-table_row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    font-size:14px;
}
.price-table_row:nth-child(even){
    background:#EDEDED;
}
@media (max-width:600px){
.row{
    padding:12px 14px;
    font-size:13px;
}
}
.comparison{
    padding: 2em 3%;
}
.comparison_title{

}
.compare{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    width:100%;
    max-width:720px;
    margin:1.5em auto 0;
}
.compare-item{
    padding:18px 14px;
    background:#fff;
    border-radius:6px;
    text-align:center;
    color: #000;
}
.compare-title{
    font-size:12px;
    margin-bottom:8px;
}
.compare-value{
    font-size:22px;
    font-weight:700;
    letter-spacing:0.5px;
}
.compare-value span{
    font-size:12px;
    margin-left:2px;
}
.compare-main{
    background:#e8b46a;
    color:#161310;
}
.compare-main .compare-title{
}
.compare-main .compare-value{
    font-size:24px;
}
.comparison-text{
    max-width: 1024px;
    margin: 2em auto;
}
.comparison-text-item + .comparison-text-item{
    margin-top: 1em;
}
@media (max-width:600px){
.compare{
    grid-template-columns:1fr;
}
.item{
    padding:16px 12px;
}
.value{
    font-size:20px;
}
.main .value{
    font-size:22px;
}
}
.room-introduction{
        padding: 0 3%;
}
.room-introduction_title{

}
.room-introduction_text{
    margin-top: 1em;
}
.room-introduction_content_text{
    margin-top: .5em;
}
.room-introduction_content{
    margin-top: 1.5em;
}
.room-introduction_content + .room-introduction_content{
    margin-top: 1.5em;
}
.room-introduction_content_title{
    font-size: 28px;
}
.room-introduction_content_title_supplement{
    border: solid 1px #e8b46a;
    color: #e8b46a;
    font-size: 16px;
    padding: 0 4px 2px;
    border-radius: 4px;
    margin-left: .75em;
}
.room-introduction_content_gallery{
    margin-top: .5em;
}
.room-introduction-gallery{
    width:100%;
    max-width:1024px;
    margin:0 auto;
}
.room-introduction-splide-main{
    aspect-ratio:16/9;
    margin-bottom:6px;
}
.room-introduction-splide-main img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.room-introduction-splide-thumbs .splide__track{
    padding:0 !important;
}
.room-introduction-splide-thumbs .splide__list{
    display:flex;
    gap:8px;
}
.room-introduction-splide-thumbs .splide__slide{
    flex:1;
    margin:0 !important;
    opacity:0.4;
    cursor:pointer;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.room-introduction-splide-thumbs .splide__slide.is-active{
    opacity:1;
}
.room-introduction-splide-thumbs img{
    width:100%;
    display:block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.splide__slide{
    border:none !important;
}
@media (max-width:600px){
.room-introduction-splide-thumbs .splide__list{
    gap:6px;
}
}
.equipment{
    padding: 2em 3%;
}
.equipment-title{

}
.equipment-content{
    max-width:1024px;
    margin: 2em auto 0;
}
.equipment-content_list{

}
.equipment-content_list_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 0 1em;
}
.equipment-content_list_item + .equipment-content_list_item{
    margin-top: 2em;
    border-top: solid 1px #eee;
}
.equipment-content_list_item img{
    height: 80px;
    width: auto;
    flex-shrink: 0;
    margin-bottom: 2em;
    filter: brightness(0) invert(1);
}
.equipment-content_list_item_title{
    font-size: 20px;
    font-weight: bold;
}
.equipment-content_list_item_text{
    margin-top: .75em;
}
@media (min-width:768px){
.equipment-content_list{
    display: flex;
    flex-wrap: wrap;
}
.equipment-content_list_item{
    width: 48%;
    margin-bottom: 4%;
}
.equipment-content_list_item + .equipment-content_list_item{
    margin-top: 0;
    border: none;
}
.equipment-content_list_item:nth-of-type(even){
    margin-left: 4%;
}
}
.access{
    padding: 0 3%;
}
.access .access-map{
    margin-top: 1em;
    width: 100%;
    aspect-ratio: 16/9;
}
.access .iframe-movie-box{
    margin-top: 1.5em;    
}
.iframe-movie-box_title{
    font-size: 18px;
}
.access .iframe-movie-box iframe{
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: .5em;
}
.access_wrap{
    margin-top: 1.5em;
}
.access_list{}
.access_list_item + .access_list_item{
    margin-top: 1em;
}
.access_iframe{
    width: 100%;
    aspect-ratio: 3/2;
}
.access-dl-wrap{
    margin-top: 1em;
}
.access-dl{
	display:grid;
	grid-template-columns:max-content minmax(0,1fr);
	column-gap:1em;
	row-gap:.5em;
	width:fit-content;
	max-width:100%;
	margin:0 auto;
	padding:0;
}
.access-dl-item{
	display:contents;
}
.access-dt{
	grid-column:1;
	text-align:right;
	white-space:nowrap;
}
.access-dd{
	grid-column:2;
	text-align:left;
	min-width:0;
}
@media (max-width:480px){
.access-dl{
    width:100%;
}
.access-dd{
    word-break:break-word;
}
}
.question{
    margin-top: 2em;
    padding: 0 3%;
}
.question-qa{
    margin-top: 1.5em;
}
.question-qa .question-qa-item{
    border-bottom: solid 2px #000;
    color: #000;
}
.question-qa .question-qa-item a{
    color: #ff2020;
}
.question-qa .question-qa-item dt{
	padding:12px;
	cursor:pointer;
	background:#f5d6b4;
	display:flex;
	gap:8px;
}
.question-qa .question-qa-item dd{
	display:none;
	margin:0;
	padding:12px;
    padding: 1.5em;
    background: #fff;
}
.question-qa .question-qa-item dt,
.question-qa .question-qa-item dd{
    position: relative;
    padding-left: 2em;
}
.question-qa-item-q,.question-qa-item-a{
    position: absolute;
    left: .75em;
}
.review{
    margin-top: 2em;
    padding: 3%;
}
.review-slider{
    margin-top: 1.5em;
}
.review-slider .splide__slide{
	width:85%;
    max-width: 400px;
}
.review-wrap{
	background:#fff;
    color: #000;
	border-radius:12px;
	padding:16px;
    height: 100%;
}
.review-wrap-header{
	display:flex;
	align-items:center;
	margin-bottom:8px;
}
.review-wrap-name{
	font-weight:bold;
	font-size:16px;
}
.review-wrap-stars{
	color:#fbbc04;
	font-size:14px;
	margin-bottom:8px;
}
.review-wrap-title{
    font-size:16px;
    font-weight: bold;
}
.review-wrap-text{
	font-size:14px;
    margin-top: 6px;
    line-height: 1.4;
}
.sns{
    padding: 0 3%;
}
.sns-list-wrap{
    margin-top: 2em;
}
.sns-list{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4%;
}
.sns-list-item{
    flex-shrink: 0;
    width: 48%;
    max-width: 200px;
}
.sns-list-item a{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .25em;
    border: solid 1px #fff;
    aspect-ratio: 1/1;
    border-radius: 8px;
    padding: .5em;
}
.sns-list-item img{
    width: auto;
    height: 80px;
    filter: brightness(0) invert(1);
}
.sns-list-item-text{
    text-align: center;
}
.lgbt{
    margin-top: 2em;
    padding: 2em 3% 0;
}
.lgbt-text-box{
    margin-top: 1.5em;
    color: #fff;
}
.lgbt-text-box-item + .lgbt-text-box-item{
    margin-top: 1em;
}
.recruit{
    margin-top: 3em;
    padding: 0 3%;
}
.recruit-title{
}
.recruit-section{
    margin-top: 2em;
}
.recruit-section-title{
    font-size: 20px;
    border-left: solid 4px #e8b46a;
    line-height: 1;
    padding: .25em 0 .25em .4em;
}
.recruit-section-list{
    margin-top: .75em;
}
.recruit-section-item + .recruit-section-item{
    margin-top: .5em;
}
.recruit-section-item a{
    border-bottom: solid 1px #e8b46a;
    color: #e8b46a;
}
footer{
    padding: 2em 0 4em;
    text-align: center;
}
.bottom-menu{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    display:flex;
    justify-content:space-around;
    padding:12px 0;
    background: rgb(0 0 0 / .8);
    background: rgb(232 180 106 / .8);
    color: #161310;
    transform:translateY(100%);
    opacity:0;
    transition:0.2s;
    z-index:2;
}
.bottom-menu.show{
    transform:translateY(0);
    opacity:1;
}
.bottom-menu a{
    text-decoration:none;
    font-size:12px;
}
.bottom-menu_tel{

}
.bottom-menu_tel a{
    font-size: 18px;
}