/* =====================================================
高級ホテルUI
===================================================== */

.hotel-area-wrap{
max-width:1100px;
margin:60px auto;
padding:0 18px;
}



/* =====================================================
エリア
===================================================== */

.hotel-area-box{
margin-bottom:34px;
border-radius:30px;
overflow:hidden;
background:rgba(255,255,255,.78);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
box-shadow:
0 20px 50px rgba(0,0,0,.08),
0 2px 8px rgba(255,255,255,.4) inset;
border:1px solid rgba(255,255,255,.35);
}

.hotel-area-head{
padding:26px 30px;
display:flex;
justify-content:space-between;
align-items:center;
background:
linear-gradient(
135deg,
#0b8ca4,
#22c4d3
);
cursor:pointer;
position:relative;
}



/* ＋ − */

.hotel-area-head::after{
content:'+';
position:absolute;
right:28px;
top:50%;
transform:translateY(-50%);
font-size:28px;
font-weight:300;
color:#fff;
transition:.25s;
}

.hotel-area-box.active .hotel-area-head::after{
content:'−';
}



.hotel-area-name{
font-size:34px;
font-weight:700;
color:#fff;
letter-spacing:.04em;
}

.hotel-area-count{
width:58px;
height:58px;
border-radius:999px;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
font-weight:700;
color:#0b8ca4;
margin-right:42px;
}



/* =====================================================
カード
===================================================== */

.hotel-item{
border-top:1px solid rgba(0,0,0,.05);
transition:.3s;
}

.hotel-item:hover{
background:rgba(245,255,255,.7);
}

.hotel-toggle{
padding:24px 30px;
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
cursor:pointer;
}

.hotel-title{
font-size:24px;
font-weight:700;
line-height:1.5;
color:#222;
}

.hotel-title-link{
text-decoration:none;
display:block;
transition:.25s;
}

.hotel-title-link:hover{
opacity:.7;
}

.hotel-title{
position:relative;
display:inline-block;
}

.hotel-title::after{
content:'';
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:#1bc0cf;
transition:.25s;
}

.hotel-title-link:hover .hotel-title::after{
width:100%;
}

/* =====================================================
view
===================================================== */

.hotel-open-btn{
border:none;
padding:12px 24px;
border-radius:999px;
background:
linear-gradient(
135deg,
#27d9dd,
#14c0cb
);
color:#fff;
font-size:13px;
font-weight:700;
letter-spacing:.12em;
text-transform:uppercase;
cursor:pointer;
transition:.25s;
box-shadow:
0 8px 20px rgba(40,210,220,.25);
}

.hotel-open-btn:hover{
transform:translateY(-2px);
}

.hotel-item.active .hotel-open-btn{
background:#bdbdbd;
box-shadow:none;
}



/* =====================================================
詳細
===================================================== */

.hotel-detail{
display:none;
padding:0 30px 34px;
animation:fadeUp .35s ease;
}

.hotel-item.active .hotel-detail{
display:block;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(10px);
}

to{
opacity:1;
transform:none;
}

}



/* =====================================================
PC
===================================================== */

.hotel-grid{
display:grid;
grid-template-columns:
260px
220px
1fr;
gap:34px;
align-items:start;
}



/* =====================================================
画像
===================================================== */

.hotel-image{
width:100%;
aspect-ratio:16 / 10;
object-fit:cover;
border-radius:22px;
display:block;
box-shadow:
0 16px 30px rgba(0,0,0,.08);
}



/* =====================================================
状態
===================================================== */

.status-col{
display:flex;
flex-direction:column;
gap:16px;
}

.hotel-status{
border-radius:24px;
padding:26px 18px;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
min-height:190px;
}

.hotel-status-symbol{
font-size:74px;
line-height:1;
font-weight:700;
margin-bottom:12px;
}

.hotel-status-text{
font-size:20px;
font-weight:700;
}

.status-ok{
background:
linear-gradient(
135deg,
rgba(225,252,255,.95),
rgba(211,248,255,.92)
);
color:#11b8cf;
box-shadow:
0 0 30px rgba(60,210,230,.18);
}

.status-ng{
background:
linear-gradient(
135deg,
rgba(255,236,236,.96),
rgba(255,226,226,.94)
);
color:#ef8f97;
}

.status-consult{
background:
linear-gradient(
135deg,
rgba(242,242,242,.96),
rgba(232,232,232,.92)
);
color:#8b8b8b;
}



/* =====================================================
交通費
===================================================== */

.hotel-fee{
padding:18px;
border-radius:18px;
text-align:center;
font-size:16px;
font-weight:700;
border:2px solid;
}

.fee-free{
background:#ebfffb;
border-color:#63dcca;
color:#12aa96;
}

.fee-1000{
background:#eef7ff;
border-color:#8fc0f2;
color:#4788cb;
}

.fee-2000{
background:#fff5e7;
border-color:#e7be75;
color:#c28a24;
}

.fee-3000{
background:#eefae8;
border-color:#a8d38d;
color:#6d9b54;
}

.fee-4000{
background:#eaf8f8;
border-color:#87cbc6;
color:#469f98;
}

.fee-5000{
background:#fff1f6;
border-color:#eba9c0;
color:#cc6d92;
}

.fee-6000{
background:#f6f0ff;
border-color:#b89be6;
color:#8b69c6;
}

.fee-consult{
background:#f4f4f4;
border-color:#c9c9c9;
color:#8d8d8d;
}



/* =====================================================
情報
===================================================== */

.hotel-info{
font-size:15px;
line-height:2.2;
color:#555;
}

.hotel-info div{
margin-bottom:14px;
}

.hotel-info i{
width:24px;
margin-right:10px;
color:#16a9bd;
}

.hotel-info a{
color:#16a9bd;
text-decoration:none;
font-weight:700;
}



/* =====================================================
ボタン
===================================================== */

.hotel-buttons{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-top:22px;
}

.hotel-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;
padding:14px 20px;
border-radius:14px;
text-decoration:none;
font-size:13px;
font-weight:700;
color:#fff;
transition:.25s;
background:#8f8f8f;
}

.hotel-btn:hover{
transform:translateY(-2px);
opacity:.92;
}

.hotel-btn.dark{
background:#454545;
}



/* =====================================================
スマホ
===================================================== */

@media(max-width:768px){

.hotel-area-wrap{
padding:0 14px;
}

.hotel-area-head{
padding:20px;
}

.hotel-area-head::after{
right:20px;
font-size:22px;
}

.hotel-area-name{
font-size:24px;
}

.hotel-area-count{
width:42px;
height:42px;
font-size:15px;
margin-right:34px;
}

.hotel-toggle{
padding:18px;
gap:10px;
}

.hotel-title{
font-size:14px;
}

.hotel-open-btn{
padding:10px 16px;
font-size:11px;
}

.hotel-detail{
padding:0 18px 22px;
}



/* スマホ構成 */

.hotel-grid{
display:flex;
flex-direction:column;
gap:18px;
}



/* 画像 */

.image-col{
order:1;
}



/* 状態＋交通費 */

.status-col{
order:2;
display:grid;
grid-template-columns:
repeat(2,minmax(0,1fr));
gap:12px;
width:100%;
align-items:stretch;
}

.status-col > *{
width:100%;
min-width:0;
}

.hotel-status{
min-height:auto;
padding:16px;
}

.hotel-status-symbol{
font-size:42px;
}

.hotel-status-text{
font-size:15px;
}

.hotel-fee{
font-size:13px;
display:flex;
align-items:center;
justify-content:center;
}



/* 情報 */

.info-col{
order:3;
}

.hotel-info{
font-size:14px;
line-height:2;
}



/* ボタン */

.hotel-buttons{
display:grid;
grid-template-columns:
repeat(2,minmax(0,1fr));
gap:10px;
margin-top:18px;
width:100%;
}

.hotel-btn{
width:100%;
padding:12px;
font-size:12px;
min-width:0;
}

}


/* =====================================================
ホテル件数
===================================================== */

.hotel-count-box{
margin:34px auto 46px;
display:flex;
justify-content:center;
}

.hotel-count-inner{
display:flex;
align-items:center;
gap:18px;
padding:22px 34px;
background:
rgba(255,255,255,.78);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);
border-radius:999px;
box-shadow:
0 12px 30px rgba(0,0,0,.08),
0 2px 8px rgba(255,255,255,.45) inset;
border:1px solid rgba(255,255,255,.45);
}

.hotel-count-icon i{
font-size:48px !important;
color:#18b7c9;
line-height:1;
display:block;
filter:
drop-shadow(0 4px 10px rgba(24,183,201,.18));
}

.hotel-count-text{
font-size:32px;
font-weight:500;
color:#444;
letter-spacing:.04em;
}

.hotel-count-number{
font-size:56px;
font-weight:700;
color:#18b7c9;
margin:0 6px;
line-height:1;
}



/* =====================================================
スマホ
===================================================== */

@media(max-width:768px){

.hotel-count-box{
margin:24px auto 34px;
padding:0 16px;
}

.hotel-count-inner{
width:100%;
justify-content:center;
padding:18px 22px;
gap:12px;
}

.hotel-count-icon i{
font-size:35px !important;
color:#18b7c9;
line-height:1;
display:block;
filter:
drop-shadow(0 4px 10px rgba(24,183,201,.18));
}

.hotel-count-text{
font-size:18px;
text-align:center;
line-height:1.6;
}

.hotel-count-number{
font-size:34px;
}

}

/* =====================================================
single hotel
===================================================== */

.hotel-single{
padding-bottom:100px;
}



/* =====================================================
KV
===================================================== */

.hotel-single-kv{
position:relative;
height:560px;
overflow:hidden;
}

.hotel-single-image{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.hotel-single-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
to top,
rgba(0,0,0,.45),
rgba(0,0,0,.08)
);
}

.hotel-single-content{
position:absolute;
left:50%;
bottom:70px;
transform:translateX(-50%);
width:min(1100px,92%);
color:#fff;
z-index:2;
}

.hotel-single-area{
font-size:18px;
letter-spacing:.15em;
margin-bottom:16px;
opacity:.9;
}

.hotel-single-title{
font-size:52px;
font-weight:700;
line-height:1.3;
}



/* =====================================================
MAIN
===================================================== */

.hotel-single-inner{
width:min(1100px,92%);
margin:60px auto 0;
}

.hotel-single-grid{
display:grid;
grid-template-columns:
280px
1fr;
gap:34px;
align-items:start;
}



/* =====================================================
LEFT
===================================================== */

.hotel-single-left{
display:flex;
flex-direction:column;
gap:18px;
}

.hotel-single-status{
border-radius:28px;
padding:34px 20px;
text-align:center;
}

.hotel-single-symbol{
font-size:90px;
line-height:1;
font-weight:700;
margin-bottom:10px;
}

.hotel-single-status-text{
font-size:24px;
font-weight:700;
}

.hotel-single-fee{
padding:22px;
border-radius:20px;
text-align:center;
font-size:18px;
font-weight:700;
border:2px solid;
}



/* =====================================================
RIGHT
===================================================== */

.hotel-single-card{
background:
rgba(255,255,255,.78);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
border-radius:30px;
padding:40px;
box-shadow:
0 20px 50px rgba(0,0,0,.08);
}

.hotel-single-info{
display:flex;
flex-direction:column;
gap:28px;
font-size:18px;
line-height:2;
color:#444;
}

.hotel-single-info div{
display:flex;
align-items:flex-start;
gap:16px;
}

.hotel-single-info i{
width:24px;
color:#16b5c7;
font-size:20px;
margin-top:8px;
}

.hotel-single-info a{
color:#16b5c7;
font-weight:700;
text-decoration:none;
}



/* =====================================================
buttons
===================================================== */

.hotel-single-buttons{
display:flex;
gap:14px;
flex-wrap:wrap;
margin-top:40px;
}

.hotel-single-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:16px 28px;
border-radius:16px;
background:#8f8f8f;
color:#fff;
text-decoration:none;
font-weight:700;
transition:.25s;
}

.hotel-single-btn:hover{
transform:translateY(-2px);
}

.hotel-single-btn.dark{
background:#454545;
}

/* =====================================================
Google Map
===================================================== */

.hotel-map-wrap{
margin-top:70px;
}

.hotel-map-title{
font-size:34px;
font-weight:700;
text-align:center;
margin-bottom:30px;
letter-spacing:.08em;
}

.hotel-map{
border-radius:30px;
overflow:hidden;
box-shadow:
0 20px 40px rgba(0,0,0,.08);
}

.hotel-map iframe{
width:100%;
height:520px;
border:none;
display:block;
}



/* =====================================================
mobile
===================================================== */

@media(max-width:768px){

.hotel-map-wrap{
margin-top:50px;
}

.hotel-map-title{
font-size:18px;
margin-bottom:20px;
}

.hotel-map{
border-radius:20px;
}

.hotel-map iframe{
height:320px;
}

}

/* =====================================================
related
===================================================== */

.related-hotels{
margin-top:90px;
}

.related-hotels-title{
font-size:34px;
margin-bottom:34px;
text-align:center;
}

.related-hotels-grid{
display:grid;
grid-template-columns:
repeat(3,1fr);
gap:26px;
}

.related-hotel-card{
display:block;
text-decoration:none;
color:#222;
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:
0 14px 30px rgba(0,0,0,.08);
transition:.25s;
}

.related-hotel-card:hover{
transform:translateY(-4px);
}

.related-hotel-image{
width:100%;
aspect-ratio:16 / 10;
object-fit:cover;
display:block;
}

.related-hotel-name{
padding:20px;
font-size:18px;
font-weight:700;
line-height:1.6;
}



/* =====================================================
mobile
===================================================== */

@media(max-width:768px){

.hotel-single-kv{
height:360px;
}

.hotel-single-content{
bottom:34px;
}

.hotel-single-area{
font-size:13px;
margin-bottom:10px;
}

.hotel-single-title{
font-size:20px;
line-height:1.5;
}

.hotel-single-inner{
margin-top:30px;
}

.hotel-single-grid{
grid-template-columns:1fr;
gap:20px;
}

.hotel-single-card{
padding:24px;
border-radius:22px;
}

.hotel-single-info{
font-size:15px;
gap:20px;
}

.hotel-single-info i{
font-size:16px;
margin-top:6px;
}

.hotel-single-buttons{
display:grid;
grid-template-columns:
repeat(2,minmax(0,1fr));
gap:10px;
}

.hotel-single-btn{
width:100%;
padding:14px;
font-size:13px;
}

.related-hotels{
margin-top:60px;
}

.related-hotels-title{
font-size:24px;
margin-bottom:22px;
}

.related-hotels-grid{
grid-template-columns:1fr;
gap:18px;
}

.related-hotel-name{
font-size:16px;
padding:16px;
}

}