
/* ========================================
   Design Tokens
======================================== */
:root{
  --color-main:#8b5e3c;
  --color-main-dark:#6f472b;
  --color-text:#222;
  --color-sub:#666;
  --color-border:#e9e4df;
  --color-bg:#fff;
  --color-bg-soft:#faf8f6;
  --shadow-soft:0 8px 24px rgba(0,0,0,0.08);
  --shadow-strong:0 16px 48px rgba(0,0,0,0.2);
}

/* ========================================
   Base
======================================== */
*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:72px;
}

body{
  margin:0;
  font-family:"Noto Sans JP", sans-serif;
  font-size:16px;
  line-height:1.7;
  color:var(--color-text);
  background:var(--color-bg);
}

body.is-nav-open,
body.is-lightbox-open{
  overflow:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

button{
  font:inherit;
}

section[id]{
  scroll-margin-top:72px;
}

/* ========================================
   Layout
======================================== */
.l-main,
.l-footer{
  padding:16px;
}

.l-main{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding-bottom:110px;
}

.l-footer{
  border-top:1px solid var(--color-border);
  text-align:center;
  color:var(--color-sub);
}

/* ========================================
   Common Sections / Text
======================================== */
.c-section{ margin-top:40px; }

.c-section__title{
  margin:0 0 12px;
  font-size:22px;
}

.c-text{
  margin:0;
  font-size:15px;
  color:var(--color-sub);
}

.c-text--compact{ margin-bottom:12px; }

.c-note{
  margin:10px 0 0;
  font-size:13px;
  color:var(--color-sub);
}

/* ========================================
   Hero
======================================== */
.c-hero{
  padding:36px 0 18px;
  text-align:center;
}

.c-hero__eyebrow,
.c-page-hero__eyebrow{
  margin:0 0 6px;
  font-size:13px;
  color:var(--color-sub);
}

.c-hero__eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  margin:-8px auto 14px;
  padding:4px 10px;
  border:1px solid var(--color-border);
  border-radius:999px;
  background:var(--color-bg-soft);
  color:var(--color-main);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
}

.c-hero__title,
.c-page-hero__title{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.2;
  color:var(--color-main);
}

.c-hero__title{
  position:relative;
  display:inline-block;
  margin-bottom:14px;
  font-size:40px;
  font-weight:800;
  letter-spacing:.04em;
}

.c-hero__title::after{
  content:"";
  display:block;
  width:64px;
  height:2px;
  margin:12px auto 0;
  background:var(--color-main);
}

.c-hero__sub,
.c-page-hero__text{
  margin:0 auto;
  max-width:40ch;
  font-size:14px;
  color:var(--color-sub);
}

.c-hero__sub{
  max-width:46ch;
  color:#4a4038;
  font-size:17px;
  font-weight:600;
  line-height:1.8;
}

.c-page-hero{
  padding:24px 0 0;
}

.hero-actions{
  display:grid;
  gap:10px;
  max-width:860px;
  margin:22px auto 0;
}

.hero-points{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  display:grid;
  gap:8px;
}

.hero-points__item{
  padding:10px 12px;
  border:1px solid var(--color-border);
  border-radius:12px;
  background:#fff;
  font-size:13px;
  color:var(--color-sub);
}

.hero-notice{
  display:grid;
  grid-template-columns:190px 1fr auto;
  align-items:center;
  gap:18px;
  margin:20px auto 0;
  padding:14px 18px 14px 14px;
  border:1px solid #c9d8bd;
  border-left:6px solid #5f7d51;
  border-radius:14px;
  background:#f5faef;
  text-align:left;
  box-shadow:var(--shadow-soft);
  max-width:860px;
  width:100%;
}

.hero-notice__media{
  align-self:stretch;
  overflow:hidden;
  min-height:132px;
  border-radius:10px;
  background:#e9efe1;
}

.hero-notice__media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.hero-notice__label{
  display:inline-block;
  margin:0 0 6px;
  padding:6px 14px;
  border-radius:999px;
  background:#5f7d51;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  white-space:nowrap;
}

.hero-notice__title{
  margin:0 0 3px;
  font-size:19px;
  font-weight:700;
  color:var(--color-text);
  line-height:1.4;
}

.hero-notice__text{
  margin:0;
  font-size:13px;
  color:var(--color-sub);
  line-height:1.6;
}

.hero-notice__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:9px 14px;
  border:1px solid #5f7d51;
  border-radius:12px;
  background:#fff;
  color:#4f7045;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.hero-notice__link:hover,
.hero-notice__link:focus{
  background:#5f7d51;
  color:#fff;
  transform:translateY(-1px);
}

.hero-points--banner{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  max-width:860px;
  margin:14px auto 0;
}

.hero-points--banner .hero-points__item{
  display:grid;
  gap:5px;
  padding:15px 16px;
  border:1px solid #d9c7ad;
  border-left:5px solid #8b5e3c;
  border-radius:14px;
  background:#fffdf9;
  color:var(--color-text);
  text-align:left;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.hero-points__label{
  display:inline-flex;
  width:fit-content;
  padding:3px 8px;
  border-radius:999px;
  background:#f4ece2;
  color:var(--color-main);
  font-size:11px;
  font-weight:700;
  letter-spacing:0.1em;
}

.hero-points__title{
  font-size:15px;
  font-weight:700;
  line-height:1.4;
}

.hero-points__text{
  color:var(--color-sub);
  font-size:13px;
  line-height:1.6;
}

/* ========================================
   Buttons
======================================== */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  min-height:48px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn:hover,
.btn:focus{
  transform:translateY(-1px);
}

.btn--primary{
  color:#fff;
  background:var(--color-main);
  box-shadow:var(--shadow-soft);
}

.btn--primary:hover,
.btn--primary:focus{
  background:var(--color-main-dark);
}

.btn--ghost{
  background:#fff;
  color:var(--color-main);
  border-color:var(--color-border);
}

.btn--ghost:hover,
.btn--ghost:focus{
  background:#fafafa;
}

.btn--dark{
  background:#333;
  color:#fff;
}

.btn--dark:hover,
.btn--dark:focus{
  background:#111;
}

.btn--large{ min-height:54px; }
.btn--inline{ width:auto; }
.booking-link-item{ width:100%; }

/* ========================================
   Slider
======================================== */
.slider{
  border:1px solid var(--color-border);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.slider__viewport{
  aspect-ratio:4/3;
  background:#f5f5f5;
  display:grid;
  place-items:center;
  -webkit-tap-highlight-color:transparent;
}

.slider__img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:#f5f5f5;
}

.slider__controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px;
}

.slider__btn{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid var(--color-border);
  background:#fff;
  cursor:pointer;
  font-size:18px;
}

.slider__dots{
  display:flex;
  gap:8px;
  flex:1;
  justify-content:center;
}

.slider__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:1px solid #bbb;
  background:#fff;
  cursor:pointer;
}

.slider__dot.is-active{
  background:var(--color-main);
  border-color:var(--color-main);
}

/* ========================================
   Reservation / Social Links
======================================== */
.reserve-buttons{
  display:grid;
  gap:10px;
}

.reserve-toggle{
  margin-top:12px;
}

.reserve-toggle__btn{
  min-height:44px;
}

.reserve-sub-actions{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--color-border);
  display:flex;
  justify-content:center;
}

.sns-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#333;
  background:#fff;
  border:1px solid var(--color-border);
}

.sns-btn img{
  width:18px;
  height:18px;
}

.sns-btn:hover,
.sns-btn:focus{
  background:#fafafa;
}

/* ========================================
   Restaurant / Guide Cards
======================================== */
.restaurant{
  display:grid;
  gap:12px;
}

.restaurant__img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  object-position:center;
  border-radius:12px;
  background:#f5f5f5;
  box-shadow:var(--shadow-soft);
}

.restaurant__title{
  margin:0 0 6px;
  font-size:17px;
}

.restaurant__text{
  margin:0 0 12px;
  font-size:15px;
  color:var(--color-sub);
}

.cards{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2, 1fr);
}

.card{
  display:block;
  padding:12px;
  border:1px solid var(--color-border);
  border-radius:14px;
  text-decoration:none;
  color:inherit;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.card__img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  object-position:center;
  border-radius:10px;
  margin-bottom:6px;
  background:#f5f5f5;
}

.card__title{
  margin:0;
  font-size:15px;
  line-height:1.3;
}

.card__text{
  margin:4px 0 0;
  font-size:13px;
  color:var(--color-sub);
  line-height:1.5;
}

/* ========================================
   Access / Contact
======================================== */
.map{
  margin-top:10px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--color-border);
  box-shadow:var(--shadow-soft);
}

.map-link{
  margin:10px 0 0;
  font-size:14px;
}

.map-link a{
  color:var(--color-main);
}

.contact{
  display:grid;
  gap:10px;
}

.sticky-reserve{
  position:fixed;
  left:16px;
  right:16px;
  bottom:calc(16px + env(safe-area-inset-bottom));
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:52px;
  padding:14px 16px;
  border-radius:16px;
  background:var(--color-main);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
  z-index:150;
  transition:opacity .2s ease, transform .2s ease;
}

body.is-nav-open .sticky-reserve,
body.is-reserve-visible .sticky-reserve,
body.is-contact-visible .sticky-reserve{
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
}

/* ========================================
   Stay Area
======================================== */
.stay-area-list{
  display:grid;
  gap:28px;
}

.stay-area{
  padding-top:18px;
  border-top:1px solid var(--color-border);
}

.stay-area__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.35;
}

.stay-area__lead{
  margin:0 0 8px;
  font-weight:700;
}

.stay-area__text{
  margin:0;
  font-size:15px;
  color:var(--color-sub);
}

.stay-area__gallery{
  margin:16px 0 18px;
}

.gallery-main{
  margin-bottom:10px;
}

.has-feature-gallery .gallery-main{
  display:none;
}

.gallery-main__button{
  display:block;
  width:100%;
  padding:0;
  border:none;
  background:none;
  cursor:zoom-in;
}

.stay-area__img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:14px;
  background:#f5f5f5;
  box-shadow:var(--shadow-soft);
}

.gallery-thumbs--extra{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:8px;
  margin-top:10px;
}

.gallery-feature{
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(0, 1.08fr);
  grid-template-rows:repeat(2, minmax(0, 1fr));
  gap:8px;
  height:clamp(380px, 48vw, 560px);
}

.gallery-feature__item{
  min-height:0;
}

.gallery-feature__item--portrait{
  grid-row:1 / 3;
}

.gallery-feature__item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.gallery-feature__item--portrait img{
  aspect-ratio:3 / 4;
}

.gallery-feature__item--landscape img{
  aspect-ratio:4 / 3;
}

.gallery-thumbs--extra[hidden]{
  display:none !important;
}

.gallery-thumb{
  padding:0;
  border:1px solid var(--color-border);
  border-radius:10px;
  background:#fff;
  overflow:hidden;
  cursor:pointer;
}

.gallery-thumb img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
}

.gallery-thumb--duplicate{
  display:none;
}

.gallery-thumb.is-active{
  border-color:var(--color-main);
  box-shadow:0 0 0 1px var(--color-main) inset;
}

.gallery-thumb:focus-visible,
.gallery-main__button:focus-visible,
.gallery-toggle__btn:focus-visible,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible{
  outline:2px solid var(--color-main);
  outline-offset:2px;
}

.gallery-toggle{
  margin-top:8px;
  text-align:center;
}

.gallery-toggle__btn{
  font-size:14px;
  color:var(--color-main);
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}

.gallery-toggle__btn:hover{
  text-decoration:underline;
}

.stay-area__table{
  width:100%;
  border-collapse:collapse;
  border-top:1px solid var(--color-border);
  border-bottom:1px solid var(--color-border);
  background:#fff;
}

.stay-area__table th,
.stay-area__table td{
  padding:10px 8px;
  border-top:1px solid var(--color-border);
  text-align:left;
  vertical-align:top;
  font-size:15px;
}

.stay-area__table th{
  width:120px;
  color:var(--color-sub);
  font-weight:700;
  background:var(--color-bg-soft);
}

.facility-grid{
  display:grid;
  gap:16px;
}

.facility-card{
  padding:16px;
  border:1px solid var(--color-border);
  border-radius:12px;
  background:#fff;
}

.facility-card__title{
  margin:0 0 8px;
  font-size:17px;
}

.facility-card__list,
.room-notes{
  margin:0;
  padding-left:18px;
  font-size:15px;
}

/* ========================================
   Lightbox
======================================== */
.lightbox{
  position:fixed;
  inset:0;
  z-index:500;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  background:rgba(0,0,0,0.86);
}

.lightbox[hidden]{
  display:none;
}

.lightbox__dialog{
  position:relative;
  width:min(100%, 960px);
}

.lightbox__image-wrap{
  border-radius:16px;
  overflow:hidden;
  background:#111;
}

.lightbox__image{
  width:100%;
  max-height:80vh;
  object-fit:contain;
  background:#111;
}

.lightbox__caption{
  margin:10px 48px 0;
  color:#fff;
  font-size:14px;
  text-align:center;
}

.lightbox__close{
  position:absolute;
  top:-12px;
  right:0;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:#fff;
  cursor:pointer;
  font-size:24px;
  line-height:1;
}

.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.95);
  cursor:pointer;
  font-size:22px;
}

.lightbox__nav--prev{ left:8px; }
.lightbox__nav--next{ right:8px; }

/* ========================================
   Responsive
======================================== */
@media (min-width:600px){
  .hero-actions{
    grid-template-columns:repeat(2, 1fr);
  }

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

  .restaurant{
    grid-template-columns:1.1fr 1fr;
    align-items:start;
  }

  .facility-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (min-width:900px){
  .l-main,
  .l-footer{
    padding-left:32px;
    padding-right:32px;
  }

  .cards{
    grid-template-columns:repeat(4, 1fr);
  }

  .sticky-reserve{
    left:auto;
    right:24px;
    bottom:24px;
    width:220px;
  }

  .stay-area__table th{
    width:140px;
  }
}

@media (max-width:600px){
  .c-hero{
    padding-top:28px;
  }

  .c-hero__title{
    font-size:30px;
  }

  .c-hero__sub{
    font-size:15px;
  }

  .hero-notice{
    grid-template-columns:1fr;
    gap:10px;
    padding:14px;
  }

  .hero-notice__label{
    justify-self:start;
  }

  .hero-notice__media{
    min-height:180px;
  }

  .hero-notice__link{
    width:100%;
  }

  .hero-points--banner{
    grid-template-columns:1fr;
  }

  .c-hero__eyebrow{
    display:none;
  }

  .gallery-thumbs--extra{
    grid-template-columns:repeat(2, 1fr);
  }

  .gallery-feature{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    grid-template-rows:auto auto;
    height:auto;
  }

  .gallery-feature__item--portrait{
    grid-column:1 / -1;
    grid-row:auto;
  }

  .gallery-feature__item img{
    height:auto;
  }

  .lightbox{
    padding:12px;
  }

  .lightbox__caption{
    margin:8px 24px 0;
  }
}
