@charset "UTF-8";

:root {
    --bg: #f6f1e8;
    --bg2: #fffaf1;
    --ink: #1f1b16;
    --sub: #6d6257;
    --gold: #b89554;
    --gold2: #d7bf83;
    --green: #17382c;
    --line: rgba(31, 27, 22, .14);
    --shadow: 0 24px 70px rgba(0, 0, 0, .16);
    --radius: 26px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.9;
    letter-spacing: .05em;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    width: 100%;
    object-fit: cover
}

ul {
    list-style: none
}

button {
    font: inherit
}

.loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--green);
    transition: opacity .8s, visibility .8s
}

.loading.hide {
    opacity: 0;
    visibility: hidden
}

.loading__logo {
    width: 420px;
    max-width: 80%;
    height: auto
}

.loading__line {
    display: block;
    width: 180px;
    height: 1px;
    margin: 28px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold2), transparent);
    animation: loadLine 1.5s infinite
}

@keyframes loadLine {

    0%,
    100% {
        transform: scaleX(.1);
        opacity: .3
    }

    50% {
        transform: scaleX(1);
        opacity: 1
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: #fff;
    transition: .4s
}

.site-header.scrolled {
    background: rgba(23, 56, 44, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .18)
}

.header-inner {
    height: 88px;
    max-width: 1320px;
    margin: auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 28px
}

.logo {
    margin-right: auto
}

.logo img {
    width: 250px;
    height: auto
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px
}

.global-nav a {
    position: relative
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold2);
    transition: .3s
}

.global-nav a:hover::after,
.global-nav a.current::after {
    width: 100%
}

.header-reserve {
    padding: 11px 20px;
    border: 1px solid var(--gold2);
    background: rgba(184, 149, 84, .9);
    border-radius: 999px;
    font-size: 13px
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    background: none;
    border: 0
}

.menu-button span {
    display: block;
    height: 1px;
    background: #fff;
    margin: 8px 0
}

.room-hero {
    min-height: 740px;
    height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff
}

.room-hero__slider,
.room-hero__slide,
.room-hero__overlay {
    position: absolute;
    inset: 0
}

.room-hero__slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 2s ease, transform 10s ease
}

.room-hero__slide.active {
    opacity: 1;
    transform: scale(1)
}

.room-hero__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18), rgba(0, 0, 0, .48))
}

.room-hero__copy {
    position: relative;
    z-index: 2;
    width: min(900px, 90vw);
    text-align: center;
    padding: 60px 30px
}

.room-hero__copy p {
    color: var(--gold2);
    font-size: 13px;
    letter-spacing: .28em;
    text-transform: uppercase
}

.room-hero__copy h1 {
    margin: 16px 0 22px;
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 400;
    line-height: 1.35;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .5)
}

.room-hero__copy span {
    font-size: clamp(15px, 1.8vw, 20px);
    text-shadow: 0 4px 18px rgba(0, 0, 0, .65)
}

.page-nav {
    position: sticky;
    top: 88px;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 36px;
    padding: 18px 24px;
    background: rgba(255, 250, 241, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line)
}

.page-nav a {
    font-size: 14px;
    color: var(--sub)
}

.page-nav a:hover {
    color: var(--gold)
}

.section {
    padding: 110px 7vw
}

.section-kicker {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .24em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 58px;
    text-align: center
}

.section-heading h2,
.premium-room__body h2,
.wide-room__body h2,
.notice-box h2,
.reserve-box h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.4
}

.section-heading p:last-child {
    margin-top: 16px;
    color: var(--sub)
}

.premium-room {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: stretch;
    gap: 0
}

.premium-room__slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 34px 0 0 34px;
    background: #000
}

.premium-room__slider img,
.wide-room__slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 2.4s ease, transform 12s ease
}

.premium-room__slider img.active,
.wide-room__slider img.active {
    opacity: 1;
    transform: scale(1)
}

.premium-room__body {
    min-height: 620px;
    padding: 68px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: 0 34px 34px 0
}

.premium-room__body>p:not(.section-kicker) {
    margin: 24px 0;
    color: rgba(255, 255, 255, .82)
}

.room-specs {
    margin: 10px 0 28px
}

.room-specs dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16)
}

.room-specs dt {
    color: var(--gold2)
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    font-size: 32px;
    cursor: pointer
}

.slider-arrow.prev {
    left: 20px
}

.slider-arrow.next {
    right: 20px
}

.slider-count {
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 4;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .35);
    font-size: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    transition: .3s
}

.btn--gold {
    background: var(--gold);
    color: #fff
}

.btn--gold:hover {
    background: #9e7d42;
    transform: translateY(-2px)
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, .55);
    color: #fff
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, .12)
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.feature-strip__item {
    padding: 56px 7vw;
    background: var(--bg2)
}

.feature-strip__item span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .2em
}

.feature-strip__item h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 10px 0
}

.feature-strip__item p {
    color: var(--sub)
}

.wide-room__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--green);
    color: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.wide-room__slider {
    position: relative;
    min-height: 520px;
    background: #000
}

.wide-room__body {
    min-height: 520px;
    padding: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.wide-room__body>p:not(.section-kicker) {
    margin: 22px 0;
    color: rgba(255, 255, 255, .84)
}

.wide-room__body li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.wide-room__body .btn {
    margin-top: 28px
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.standard-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg2);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .08)
}

.standard-card img {
    height: 320px;
    transition: transform .7s
}

.standard-card:hover img {
    transform: scale(1.05)
}

.standard-card div {
    padding: 30px
}

.room-type {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase
}

.standard-card h3 {
    font-size: 27px;
    font-weight: 400;
    margin: 6px 0 12px
}

.standard-card div>p:last-child {
    color: var(--sub)
}

.amenities {
    background: var(--green);
    color: #fff
}

.amenities .section-heading p:last-child {
    color: rgba(255, 255, 255, .75)
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.amenity-card {
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    background: rgba(255, 255, 255, .04)
}

.amenity-card span {
    color: var(--gold2);
    font-size: 12px
}

.amenity-card h3 {
    font-size: 23px;
    font-weight: 400;
    margin: 10px 0
}

.amenity-card p {
    color: rgba(255, 255, 255, .75)
}

.notice-box {
    max-width: 1000px;
    margin: auto;
    padding: 54px;
    border: 1px solid rgba(184, 149, 84, .3);
    border-radius: 30px;
    background: var(--bg2);
    text-align: center
}

.notice-box p {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--sub)
}

.reserve-box {
    padding: 74px 30px;
    border-radius: 34px;
    background: var(--green);
    color: #fff;
    text-align: center
}

.reserve-box>p:not(.section-kicker) {
    max-width: 700px;
    margin: 16px auto 30px;
    color: rgba(255, 255, 255, .8)
}

.reserve-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}
/* フッター */
.site-footer{
  background:#f3e9b0;
  color:rgba(235, 82, 11, 0.699);
  padding:48px 7vw;
  display:flex;
  justify-content:space-between;
  gap:30px;
}
.footer-info{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-logo{
    width:260px;
    height:auto;
    margin-bottom:20px;
}

.footer-info p{
    color:rgba(24, 18, 1, 0.9);
    line-height:1.9;
    margin:4px 0;
}

.footer-links {
    display: flex;
    gap: 24px
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .9s ease, transform .9s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:980px) {
    .global-nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 20px 30px;
        background: rgba(23, 56, 44, .97);
        transform: translateY(-140%);
        transition: .35s
    }

    .global-nav.open {
        transform: translateY(0)
    }

    .global-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    .header-reserve {
        display: none
    }

    .menu-button {
        display: block
    }

    .page-nav {
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap
    }

    .premium-room,
    .wide-room__inner {
        grid-template-columns: 1fr
    }

    .premium-room__slider,
    .premium-room__body,
    .wide-room__slider,
    .wide-room__body {
        min-height: 440px
    }

    .premium-room__slider {
        border-radius: 34px 34px 0 0
    }

    .premium-room__body {
        border-radius: 0 0 34px 34px
    }

    .feature-strip {
        grid-template-columns: 1fr
    }

    .standard-grid {
        grid-template-columns: 1fr
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .header-inner {
        height: 74px;
        padding: 0 18px
    }

    .logo img {
        width: 190px
    }

    .global-nav {
        top: 74px
    }

    .room-hero {
        min-height: 620px
    }

    .room-hero__copy h1 {
        font-size: 34px
    }

    .section {
        padding: 78px 22px
    }

    .premium-room__slider,
    .wide-room__slider {
        min-height: 300px
    }

    .premium-room__body,
    .wide-room__body {
        min-height: auto;
        padding: 34px 26px
    }

    .premium-room__body h2,
    .wide-room__body h2 {
        font-size: 30px
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 26px
    }

    .slider-arrow.prev {
        left: 12px
    }

    .slider-arrow.next {
        right: 12px
    }

    .standard-card img {
        height: 260px
    }

    .amenities-grid {
        grid-template-columns: 1fr
    }

    .notice-box {
        padding: 38px 24px
    }

    .site-footer {
        display: grid;
        padding-bottom: 90px
    }

    .footer-links {
        flex-direction: column;
        gap: 8px
    }
}
/* ==========================
   特別室限定アメニティ
========================== */

.premium-amenities{
  background:#efe7d8;
  color:var(--ink);
}

.premium-amenities .section-heading p:last-child{
  color:var(--sub);
}

.premium-amenities .amenities-grid{
  grid-template-columns:repeat(3,1fr);
}

.premium-amenities .amenity-card{
  background:rgba(255,250,241,.9);
  border:1px solid rgba(184,149,84,.28);
  box-shadow:0 12px 36px rgba(0,0,0,.06);
}

.premium-amenities .amenity-card span{
  color:var(--gold);
}

.premium-amenities .amenity-card h3{
  color:var(--ink);
}

.premium-amenities .amenity-card p{
  color:var(--sub);
}

@media(max-width:980px){
  .premium-amenities .amenities-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .premium-amenities .amenities-grid{
    grid-template-columns:1fr;
  }
}
.room-layout{

    margin-top:40px;

    text-align:center;

}

.room-layout h3{

    font-size:26px;

    font-weight:400;

    margin-bottom:20px;

}

.room-layout img{

    max-width:700px;

    width:100%;

    margin:auto;

    border-radius:18px;

    box-shadow:0 15px 45px rgba(0,0,0,.15);

}

.room-layout p{

    margin-top:18px;

    color:rgba(255,255,255,.85);

}
/*=========================
  Room Layout
=========================*/

.room-layout{

    margin-top:50px;

    text-align:center;

}

.room-layout h3{

    font-size:28px;

    font-weight:400;

    margin-bottom:30px;

}

.layout-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-bottom:25px;

}

.layout-grid figure{

    margin:0;

}

.layout-grid img{

    width:100%;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.layout-grid figcaption{

    margin-top:12px;

    font-size:15px;

    color:rgba(255,255,255,.85);

}

.room-layout p{

    max-width:900px;

    margin:auto;

    color:rgba(255,255,255,.82);

}

@media(max-width:768px){

    .layout-grid{

        grid-template-columns:1fr;

    }

}
/*=========================
  Room Layout
=========================*/

.room-layout{

    margin-top:50px;

    text-align:center;

}

.room-layout h3{

    font-size:28px;

    font-weight:400;

    margin-bottom:30px;

}

.layout-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-bottom:25px;

}

.layout-grid figure{

    margin:0;

}

.layout-grid img{

    width:100%;
     max-width:420px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.layout-grid figcaption{

    margin-top:12px;

    font-size:15px;

    color:rgba(255,255,255,.85);

}

.room-layout p{

    max-width:900px;

    margin:auto;

    color:rgba(255,255,255,.82);

}

@media(max-width:768px){

    .layout-grid{

        grid-template-columns:1fr;

    }

}
/* =================================
   トップページと共通のヘッダー
================================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  color:#fff;
  transition:.4s;
}

.site-header.scrolled{
  background:rgba(23,56,44,.9);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 35px rgba(0,0,0,.18);
}

.header-inner{
  height:86px;
  max-width:1280px;
  margin:0 auto;
  padding:0 36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  margin-right:0;
}

.logo img{
  width:260px;
  height:auto;
  display:block;
}

.global-nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
}

.global-nav a{
  position:relative;
}

.global-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:1px;
  background:var(--gold2);
  transition:.3s;
}

.global-nav a:hover::after,
.global-nav a.current::after{
  width:100%;
}

.menu-button{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:none;
}

.menu-button span{
  display:block;
  height:1px;
  margin:8px 0;
  background:#fff;
}

.fixed-reserve{
  position:fixed;
  right:24px;
  top:50%;
  z-index:900;
  display:grid;
  gap:10px;
  transform:translateY(-50%);
}

.fixed-reserve a{
  writing-mode:vertical-rl;
  padding:18px 12px;
  border-radius:999px;
  background:rgba(184,149,84,.92);
  color:#fff;
  font-size:14px;
  box-shadow:0 12px 35px rgba(0,0,0,.2);
}