/* ========================================
   WASAMATA HUTTE — Renewal Styles
   カラー: ナチュラル温もり系
   ======================================== */

br.sp-only { display: none; }

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

:root {
  /* カラーパレット */
  --color-bg:         #f2ede6;   /* サンドストーン */
  --color-bg-alt:     #e8e0d4;   /* やや濃いパネル背景 */
  --color-text:       #2e2a26;   /* ウォームブラック */
  --color-text-light: #7a6f63;   /* ミディアムウォームグレー */
  --color-accent:     #7c5c3e;   /* セダーブラウン */
  --color-accent-d:   #5e4530;   /* ダークブラウン（ホバー） */
  --color-accent-l:   #f0e8df;   /* ライトブラウン（カード背景） */
  --color-sub:        #4a7c6f;   /* リバーティール */
  --color-border:     #d4c9bb;   /* ウォームライトグレー */
  --color-dark:       #1e1a16;   /* フッター・ヒーロー背景 */
  --color-white:      #ffffff;

  /* フォント */
  --font-sans:    'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-mincho:  'Zen Old Mincho', serif;

  /* フォントサイズ階層 */
  --font-xs:      0.65rem;  /* ラベル・キャプション */
  --font-sm:      0.75rem;  /* 説明文・補足 */
  --font-base:    0.95rem;  /* 本文テキスト */
  --font-md:      1rem;     /* リード文・サブテキスト */
  --font-lg:      1.2rem;   /* 中見出し */
  --font-xl:      1.6rem;   /* 大見出し */
  --font-2xl:     2rem;     /* ページタイトル */

  /* レイアウト */
  --container:       1100px;
  --section-padding: 100px 0;   /* セクション間余白 */
  --grid-gap:        32px;      /* セクション内要素間隔 */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

table, th, td {
  font-family: var(--font-mincho);
  font-size: 0.9375rem;
  font-weight: 300;
  vertical-align: middle;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   フェードアップアニメーション
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   セクション共通
   ======================================== */
.section-label {
  font-family: var(--font-display);
  font-size: var(--font-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  margin-left: -20px;
  padding-left: 20px;
  text-align: left !important;
}

@media (max-width: 599px) {
  .section-label {
    margin-bottom: 16px;
  }
}

@media (min-width: 600px) {
  .section-label {
    margin-left: -32px;
    padding-left: 32px;
  }
}

@media (min-width: 900px) {
  .section-label {
    margin-left: -48px;
    padding-left: 48px;
  }
}

.menu .section-label {
  margin-bottom: 20px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-family: var(--font-mincho);
  font-size: var(--font-xl);
  font-weight: 500;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 36px;
  letter-spacing: 0.06em;
  text-align: left !important;
}

.section-title.light {
  color: var(--color-white);
}

/* ========================================
   サイドバー
   ======================================== */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 56px;
  height: 100vh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ハンバーガー */
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1001;
  padding: 16px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.sidebar.dark .hamburger span {
  background: var(--color-text);
}

.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.hamburger span:nth-child(3) { bottom: 17px; }

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* サイドバー Instagram */
.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--color-white);
  transition: opacity 0.3s;
}

.sidebar.dark .sidebar-icon {
  color: var(--color-text);
}

body.in-bg-alt .hamburger span {
  background: #2e2a26;
}

body.in-bg-alt .sidebar-icon {
  color: #2e2a26;
}

.sidebar-icon:hover { opacity: 0.65; }

.sidebar-icon svg {
  width: 22px;
  height: 22px;
}

/* サイドバー 予約ボタン */
.sidebar-booking {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  padding: 20px 0;
  background: var(--color-accent);
  color: var(--color-white);
  writing-mode: vertical-rl;
  letter-spacing: 0.18em;
  font-size: var(--font-xs);
  transition: background 0.3s;
  gap: 10px;
}

.sidebar-booking:hover { background: var(--color-accent-d); }

.sidebar-booking-en {
  font-family: var(--font-display);
  font-size: var(--font-sm);
  letter-spacing: 0.2em;
  font-weight: 400;
}

.sidebar-booking-ja {
  font-size: var(--font-xs);
  opacity: 0.85;
}

/* ========================================
   ナビゲーション（オーバーレイ）
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-bg);
  z-index: 999;
  padding: 90px 44px 44px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
}

.nav.open { right: 0; }

.nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav li { border-bottom: 1px solid var(--color-border); }

.nav a {
  display: block;
  padding: 18px 0;
  font-size: var(--font-base);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text);
  transition: color 0.25s;
}

.nav a:hover { color: var(--color-accent); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 22, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========================================
   ヒーロー
   ======================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, 0.38);
}

.hero-content {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
}

.hero-title { margin-bottom: 0; line-height: 1; }
.hero-title a, .footer-logo a { display: block; line-height: 0; }

.hero-logo {
  width: 52vw;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--font-xs);
  letter-spacing: 0.18em;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5) translateY(0); }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(4px); }
}

/* ========================================
   ヒーロー お知らせバナー
   ======================================== */
.hero-notice {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 16, 12, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--color-white);
  z-index: 20;
  padding: 20px 0;
}

.hero-notice-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero-notice-text {
  flex: 1;
  min-width: 0;
}

.hero-notice-title {
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0c878;
  margin: 0 0 8px 0;
  letter-spacing: 0.04em;
}

.hero-notice-body {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 4px 0;
}

.hero-notice-label {
  font-weight: 600;
  margin-right: 4px;
}

.hero-notice-note {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin: 6px 0 0 0;
}

.hero-notice-close {
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.7);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 2px;
}

.hero-notice-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.hero-notice.is-hidden {
  display: none;
}

@media (max-width: 767px) {
  .hero-notice-inner {
    padding: 0 20px;
    gap: 12px;
  }
  .hero-notice-title {
    font-size: 0.88rem;
  }
  .hero-notice-body {
    font-size: 0.74rem;
  }
  .hero-notice-note {
    font-size: 0.68rem;
  }
}

/* ========================================
   ヒーロー NEWS カード
   ======================================== */
.hero-news-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1100px;
  background: rgba(242, 237, 230, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  padding: 4px 36px 2px;
  z-index: 20;
}

.hero-news-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0;
}

.hero-news-card .news-list {
  margin: 0;
  border-top: none;
}

.hero-news-card .news-list-item {
  border-bottom: none;
}

.hero-news-card-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}

.hero-news-more {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.hero-news-more:hover {
  text-decoration: underline;
}

/* カード内のリストアイテム色調整 */
.news-list-item--dark .news-list-date {
  color: #fff;
}

.news-list-item--dark .news-list-badge {
  border-color: #fff;
  color: #fff;
}

.news-list-item--dark .news-list-title {
  color: #fff;
}

.news-list-item--dark:hover .news-list-title {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 767px) {
  .hero-news-card {
    width: calc(100% - 32px);
    bottom: 16px;
    padding: 5px 16px 3px;
  }
  .hero-news-card-label {
    font-size: 0.82rem;
  }
}

/* ========================================
   NEWS セクション
   ======================================== */
.news-list {
  display: flex;
  flex-direction: column;
  margin: 40px 0 40px;
  border-top: 1px solid var(--color-border);
}

.news-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 7px 0 4px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s;
}

.news-list-item:hover {
  color: var(--color-accent);
}

.news-list-date {
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-accent-d);
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-width: 74px;
}

.news-list-badge {
  font-size: 0.68rem;
  font-family: var(--font-sans);
  font-weight: 600;
  border: 1.5px solid var(--color-accent-d);
  color: var(--color-accent-d);
  padding: 1px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

.news-list-title {
  font-size: 0.82rem;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
}

.news-more {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .news-list-item {
    flex-wrap: wrap;
    gap: 4px;
    padding: 5px 0 3px;
  }
  .news-list-title {
    width: 100%;
    font-size: 0.82rem;
  }
}

/* NEWS アコーディオン（news.html 用） */
.news-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-accordion-item {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.news-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px 24px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background-color 0.2s;
}

.news-accordion-header:hover {
  background-color: var(--color-bg);
}

.news-accordion-header[aria-expanded="true"] {
  background-color: var(--color-accent-l);
}

.news-accordion-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.news-accordion-date {
  font-size: 0.78rem;
  color: var(--color-text-light);
  font-family: var(--font-sans);
}

.news-accordion-title {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
}

.news-accordion-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  margin-top: 2px;
}

.news-accordion-header[aria-expanded="true"] .news-accordion-icon {
  transform: rotate(45deg);
}

.news-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.news-accordion-body[aria-hidden="false"] {
  max-height: 1200px;
}

.news-accordion-content {
  padding: 4px 24px 28px;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border);
}

.news-accordion-content p { margin: 0 0 10px; }
.news-accordion-content p:last-child { margin-bottom: 0; }

.news-accordion-content .news-label {
  font-weight: 600;
  color: var(--color-text);
}

.news-accordion-content .news-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 6px;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .news-accordion-header {
    padding: 16px 18px;
  }
  .news-accordion-content {
    padding: 4px 18px 22px;
  }
}

/* ========================================
   コンセプト
   ======================================== */

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(46, 42, 38, 0.05);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  margin: 0 auto;
}

.feature-h3-wrap {
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.feature-card h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-md);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.feature-card p {
  font-size: var(--font-base);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   About
   ======================================== */
.about {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.about.bg-alt {
  background: var(--color-bg-alt);
}

.facilities {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.about-intro {
  margin-bottom: 48px;
}

.about-intro p {
  margin-bottom: 1.4em;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 2;
}

.about-highlight {
  font-family: var(--font-mincho);
  font-size: var(--font-lg) !important;
  font-weight: 500 !important;
  color: var(--color-text) !important;
  letter-spacing: 0.1em;
  border-left: 3px solid var(--color-sub);
  padding-left: 16px;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}

.about-text p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 2;
  margin-bottom: 1.4em;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ========================================
   営業情報
   ======================================== */
.business-hours {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
}

.hours-card {
  padding: 24px 20px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(46, 42, 38, 0.05);
  text-align: center;
}

.hours-card h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-md);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.hours-card p {
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.hours-card small {
  display: block;
  font-size: var(--font-base);
  color: var(--color-text-light);
  line-height: 1.8;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
}

/* ========================================
   ギャラリー
   ======================================== */
.gallery {
  padding: var(--section-padding);
  background: var(--color-bg);
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ライトボックス */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--color-white);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: var(--font-xl);
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: var(--font-2xl);
  line-height: 1;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ========================================
   Cafe / Menu
   ======================================== */
.menu {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.menu-category {
  margin-bottom: 36px;
}

.menu-category-title {
  font-size: var(--font-base);
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.menu-category-en {
  font-family: var(--font-display);
  font-size: var(--font-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 400;
}

.menu-grid--cafe {
  display: flex;
  flex-direction: column;
  max-width: 560px;
}

.menu-item-simple {
  display: flex;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px dotted var(--color-border);
}

.menu-item-name {
  font-weight: 400;
  font-size: var(--font-base);
  color: var(--color-text-light);
}

.menu-note {
  margin-top: 32px;
  font-size: var(--font-base);
  color: var(--color-text-light);
  opacity: 0.8;
}

/* ========================================
   施設情報
   ======================================== */
.info {
  padding: var(--section-padding);
  background: var(--color-bg);
}

/* Googleマップ */
.info-map-wrap {
  margin-bottom: 36px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(46, 42, 38, 0.1);
}

.info-map-wrap iframe {
  display: block;
  height: 280px;
}

/* 写真 + テーブルの2カラム */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.info-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr { border-bottom: 1px solid var(--color-border); }

.info-table th,
.info-table td {
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
  font-size: var(--font-base);
  line-height: 1.9;
}

.info-table th {
  width: 100px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  font-family: var(--font-mincho);
}

.info-table td { color: var(--color-text-light); }

.info-table td a {
  color: var(--color-sub);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-table td strong {
  font-weight: 500;
  color: var(--color-text);
  font-size: var(--font-base);
}

.info-caution {
  font-size: 0.78rem;
  color: var(--color-text-light);
  opacity: 0.8;
}

/* ========================================
   キャンプ場
   ======================================== */
.campsite {
  padding: var(--section-padding);
  background: #f9f7f4;
}

/* ========================================
   予約（CTA）
   ======================================== */
.reserve {
  position: relative;
  padding: 88px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, 0.62);
}

.reserve-inner { position: relative; }

.reserve-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 2.1;
}

.reserve-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.3s;
  width: 100%;
  max-width: 240px;
  text-align: center;
  line-height: 1.2;
  min-height: 50px;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-secondary small {
  font-size: var(--font-xs);
  opacity: 0.8;
  font-weight: 300;
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-outline:hover {
  background: rgba(124, 92, 62, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.reserve-main {
  text-align: left;
}

.reserve-note {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  line-height: 2.1;
  padding-left: 1.2em;
  text-indent: -1.2em;
  text-align: left;
}

.note-asterisk {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.bullet-item {
  padding-left: 1em;
  text-indent: -1em;
}

/* ========================================
   フッター
   ======================================== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 52px 0 36px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: var(--font-md);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.footer-logo img {
  height: 72px;
  width: auto;
}

@media (min-width: 900px) {
  .footer-logo img {
    height: 100px;
  }
}

.footer-address {
  font-size: var(--font-sm);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.footer-nav a {
  font-size: var(--font-sm);
  transition: color 0.3s;
}

.footer-nav a:hover { color: rgba(255, 255, 255, 0.9); }

.footer-copy {
  font-size: var(--font-xs);
  opacity: 0.7;
}

/* ========================================
   ドミトリー詳細情報
   ======================================== */
.dorm-info-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.dorm-info-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-text-light);
  text-align: left;
}

.dorm-info-item h3 {
  font-size: var(--font-md);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}

.dorm-info-item p {
  font-size: var(--font-base);
  margin: 8px 0;
  line-height: 1.8;
}

.dorm-info-item ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}

.dorm-info-item li {
  font-size: var(--font-base);
  margin: 6px 0;
  line-height: 1.8;
}

.dorm-terms {
  font-size: var(--font-base);
  color: var(--color-accent);
}

.dorm-terms a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.3s;
}

.dorm-terms a:hover {
  color: var(--color-accent-d);
}

/* ========================================
   モバイル（600px未満）
   ======================================== */
@media (max-width: 599px) {
  body {
    overflow-x: hidden;
  }

  .reserve-note {
    line-height: 1.7;
    margin-bottom: 12px;
  }

  /* ギャラリー - モバイルは1列 */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* 詳細情報 - モバイルは1列 */
  .dorm-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reserve {
    text-align: left;
  }

  /* 予約ボタン - モバイルは幅を広げる */
  .reserve-buttons {
    padding: 0;
    gap: 12px;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* セクション - モバイルはパディング削減 */
  :root {
    --section-padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .page-about main.container {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }

  .section-title {
    font-size: var(--font-xl);
    margin-bottom: 24px;
  }

  /* ドミトリー・ロッジ詳細情報 - モバイルは1列 */
  .dorm-details > div {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .dorm-details > div > div {
    height: auto !important;
    padding: 12px 0 !important;
  }

  /* 料金表 - モバイル向け */
  div[style*="justify-content: space-between"] {
    align-items: center !important;
    gap: 16px !important;
  }

  div[style*="justify-content: space-between"] span:first-child {
    flex: 1;
    word-break: break-word;
  }

  div[style*="justify-content: space-between"] span:last-child {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Leave No Trace - モバイル向けレイアウト */
  .lnt-item {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    gap: 16px !important;
    padding: 12px !important;
    align-items: start !important;
  }

  .lnt-number {
    grid-row: 1;
    grid-column: 1;
    width: 36px;
    height: 36px;
    min-width: 36px;
    margin-right: 0;
    margin-bottom: 0;
    font-size: var(--font-base);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  br.sp-only { display: inline; }

  .lnt-item h3 {
    grid-row: 1;
    grid-column: 2;
    font-size: 0.9rem;
    margin-bottom: 0;
    align-self: center;
  }

  .lnt-item p {
    grid-row: 2;
    grid-column: 2;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* lnt-principles: 丸数字を天地センター（モバイル） */
  .lnt-principles .lnt-item {
    display: block !important;
    padding: 20px 16px 20px 68px !important;
    min-height: 60px;
  }
  .lnt-principles .lnt-number {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    grid-row: unset;
    grid-column: unset;
  }
  .lnt-principles .lnt-item h3 {
    grid-row: unset;
    grid-column: unset;
    margin-bottom: 8px;
    align-self: unset;
  }
  .lnt-principles .lnt-item p {
    grid-row: unset;
    grid-column: unset;
  }
}

/* ========================================
   タブレット以上（600px〜）
   ======================================== */
@media (min-width: 600px) {
  :root {
    --section-padding: 100px 0;
  }

  .container { padding: 0 32px; }

  .section-title { font-size: var(--font-xl); }

  .hero-logo {
    width: 30vw;
    max-width: 200px;
  }

  /* About */
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }

  .feature-icon { margin: 0 auto 16px; }

  /* 営業情報 */
  .hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* About */
  .about-image img { aspect-ratio: 4 / 3; }

  /* ギャラリー */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Info マップ */
  .info-map-wrap iframe { height: 360px; }
}

/* ========================================
   デスクトップ（900px〜）
   ======================================== */
@media (min-width: 900px) {
  :root {
    --section-padding: 100px 0;
  }

  .container { padding: 0 48px; }

  .section-title { font-size: var(--font-2xl); margin-bottom: 48px; }

  .hero-logo {
    width: 22vw;
    max-width: 300px;
  }

  /* About */
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
  }

  .about-text p { font-size: 0.9375rem; }

  .about-image img { aspect-ratio: 3 / 2; }

  /* 営業情報 */
  .hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* ギャラリー */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  /* ライトボックス矢印 */
  .lightbox-prev { left: 32px; }
  .lightbox-next { right: 32px; }

  /* Info */
  .info-map-wrap iframe { height: 420px; }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
  }

  /* 予約ボタン横並び */
  .reserve-main {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
  }

  .reserve-buttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 20px;
  }

  .btn {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 18px 48px;
    height: auto;
  }
}

/* ========================================
   ワイド（1200px〜）
   ======================================== */
@media (min-width: 1200px) {
  .container { padding: 0 60px; }
}

/* ========================================
   自然（Nature）
   ======================================== */
.nature {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.nature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.nature-item {
  padding: 28px;
  background: var(--color-white);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.04);
}

.nature-item h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.nature-item p {
  color: var(--color-text-light);
  font-size: var(--font-base);
  line-height: 1.9;
}

/* ========================================
   歴史（Heritage）
   ======================================== */
.heritage {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.heritage-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.heritage-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.heritage-item {
  padding: 24px 0 24px 32px;
  position: relative;
}

.heritage-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg-alt);
}

.heritage-item h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.heritage-item p {
  color: var(--color-text-light);
  font-size: var(--font-base);
  line-height: 1.9;
}

/* ========================================
   Leave No Trace
   ======================================== */
.leave-no-trace {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.lnt-intro {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 2;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lnt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.lnt-item {
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.04);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.lnt-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: block;
  font-family: var(--font-display);
  font-size: var(--font-xl);
  font-weight: 600;
}

.lnt-item h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-md);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.lnt-item p {
  color: var(--color-text-light);
  font-size: var(--font-base);
  line-height: 1.8;
  margin: 0;
}

.lnt-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.lnt-credit {
  color: var(--color-text-light);
  font-size: var(--font-base);
  margin-bottom: 20px;
}

.lnt-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.lnt-link:hover {
  transform: scale(1.05);
}

.lnt-logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lnt-tagline {
  color: var(--color-accent);
  font-family: var(--font-mincho);
  font-size: var(--font-md);
  font-weight: 500;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* レスポンシブ */
@media (min-width: 768px) {
  .nature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .heritage-timeline::before {
    left: 24px;
  }

  .heritage-item::before {
    left: 16px;
  }

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

  .lnt-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lnt-number {
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .nature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .lnt-item {
    flex-direction: column;
  }
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.faq-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: 6px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(46, 42, 38, 0.08);
}

.faq-item[open] {
  background: var(--color-accent-l);
}

.faq-question {
  display: block;
  padding: 20px 24px;
  font-family: var(--font-mincho);
  font-size: var(--font-md);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  user-select: none;
  text-align: left;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.faq-question::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 1px;
  margin-right: 12px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.faq-item[open] .faq-question::before {
  transform: rotate(45deg) translateY(-2px);
}

.faq-question:hover {
  background: var(--color-accent-l);
}

.faq-answer {
  padding: 0 24px 20px 44px;
  color: var(--color-text-light);
  font-size: var(--font-base);
  line-height: 1.9;
  animation: slideDown 0.3s ease;
}

.faq-answer p {
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .faq-items {
    max-width: 100%;
  }

  .faq-question {
    padding: 24px 28px;
    font-size: var(--font-lg);
  }

  .faq-answer {
    padding: 0 28px 24px 52px;
    font-size: 0.9375rem;
  }
}

/* ========================================
   詳細ページ共通スタイル
   ======================================== */

.page-header {
  padding: 60px 20px 40px;
  background: var(--color-bg-alt);
  text-align: center;
  margin-bottom: 80px;
}

.page-header h1 {
  font-family: var(--font-mincho);
  font-size: var(--font-2xl);
  margin-bottom: 16px;
  color: var(--color-text);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: var(--font-base);
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
  color: var(--color-text-light);
}

.breadcrumb a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.breadcrumb span.separator {
  margin: 0 4px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 80px;
  transition: gap 0.3s;
  font-size: var(--font-base);
}

.back-link:hover {
  gap: 12px;
  text-decoration: underline;
}

/* 詳細ページ固有スタイル */

.detail-section {
  margin-bottom: 60px;
}

.detail-section h2 {
  font-family: var(--font-mincho);
  font-size: var(--font-xl);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-accent);
}

.detail-grid {
  display: grid;
  gap: 32px;
}

.detail-item {
  padding: 24px;
  background: var(--color-bg);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(46, 42, 38, 0.05);
}

.detail-item h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-lg);
  margin-bottom: 16px;
  color: var(--color-accent);
}

.detail-item p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* About ページ用 */

.about-section {
  margin-bottom: 48px;
}

.about-section p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* Cafe メニューページ用 */

.menu-full {
  padding: var(--section-padding);
}

.menu-section {
  margin-bottom: 48px;
}

.menu-section h2 {
  font-family: var(--font-mincho);
  font-size: var(--font-xl);
  margin-bottom: 32px;
}

.menu-list {
  display: grid;
  gap: 16px;
}

.menu-item {
  padding: 16px;
  background: var(--color-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
}

.menu-item-label {
  font-family: var(--font-mincho);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-text);
}

.menu-item-price {
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--font-lg);
}

/* モバイル対応 */

@media (max-width: 600px) {
  .page-header {
    padding: 40px 20px 30px;
    margin-bottom: 30px;
  }

  .page-header h1 {
    font-size: var(--font-xl);
    margin-bottom: 12px;
  }

  .breadcrumb {
    font-size: var(--font-base);
  }

  .detail-section h2 {
    font-size: var(--font-xl);
    margin-bottom: 24px;
  }

  .detail-grid {
    gap: 20px;
  }

  .menu-item {
    padding: 12px;
  }
}

@media (min-width: 900px) {
  .page-header {
    padding: 80px 40px 50px;
  }

  .page-header h1 {
    font-size: 3rem;
  }

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

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

/* ========================================
   About ページ固有スタイル
   ======================================== */

.lnt-principles {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}

.lnt-principles .lnt-item {
  padding: 24px;
  background: var(--color-bg);
  border-left: 6px solid var(--color-accent);
  border-radius: 4px;
  position: relative;
}

.lnt-principles .lnt-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: var(--font-lg);
  font-weight: 600;
  line-height: 1;
  margin-right: 16px;
  margin-bottom: 12px;
}

.lnt-principles .lnt-item h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-lg);
  margin-bottom: 12px;
  color: var(--color-text);
}

.lnt-principles .lnt-item p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 900px) {
  .lnt-principles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 600px) {
  .lnt-principles .lnt-item {
    display: block;
    padding-left: 84px;
  }
  .lnt-principles .lnt-number {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
}

/* ========================================
   Hutte Details - セクション共通
   ======================================== */

.hero-subtitle {
  font-family: var(--font-display);
  font-size: var(--font-md);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

.section-content {
  padding: var(--section-padding);
  background: var(--color-bg);
}

#dormitory {
  padding-top: 40px;
}

.section-content.bg-alt {
  background: var(--color-bg-alt);
}

.section-content.bg-dark {
  background: var(--color-dark);
}

.section-intro {
  max-width: 720px;
  margin: 0 0 48px;
  text-align: left !important;
  line-height: 1.8;
  color: var(--color-text);
  font-size: var(--font-md);
}

/* ========================================
   施設詳細 Grid
   ======================================== */

.facilities-grid {
  display: grid;
  gap: 40px;
  margin: 48px 0;
  max-width: 720px;
}

.facility-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
}

.facility-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #f5f5f5;
}

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

.facility-info {
  padding: 32px 24px;
}

.facility-info h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-lg);
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-text);
}

.facility-spec {
  font-size: var(--font-base);
  color: var(--color-text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

.facility-spec strong {
  color: var(--color-text);
  font-weight: 500;
}

.facility-desc {
  font-size: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
  margin-top: 16px;
}

/* ========================================
   アメニティ Grid
   ======================================== */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 48px 0;
  align-items: stretch;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.04);
}

.amenity-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  color: var(--color-accent);
  border-radius: 4px;
  overflow: hidden;
}

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

.amenity-card h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-lg);
  font-weight: 500;
  margin: 0;
  color: var(--color-text);
}

.amenity-card p {
  font-size: var(--font-base);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ========================================
   予約セクション
   ======================================== */

.reserve-content {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: var(--font-md);
}

.reserve-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.reserve-method {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.reserve-method h3 {
  font-family: var(--font-mincho);
  font-size: var(--font-lg);
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-white);
}

.reserve-method p {
  font-size: var(--font-base);
  color: rgba(255, 255, 255, 0.75);
  margin: 8px 0;
  line-height: 1.6;
}

.reserve-method a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: opacity 0.3s;
}

.reserve-method a:hover {
  opacity: 0.7;
}

.reserve-method .time {
  font-size: var(--font-base);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ========================================
   レスポンシブ
   ======================================== */

@media (min-width: 900px) {
  .facility-card {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .section-content,
  .about,
  .reserve {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-content,
  .about {
    padding: 60px 20px;
  }

  .page-about main.container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .facility-info {
    padding: 24px 16px;
  }

  .amenity-card {
    padding: 24px 16px;
  }

  .reserve-method {
    padding: 20px 16px;
  }
}

/* ========== Accordion ========== */
.faq-accordion,
.access-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: var(--font-md);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 500;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.accordion-header:hover {
  background-color: var(--color-bg);
  color: var(--color-accent);
}

.accordion-header[aria-expanded="true"] {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: transform 0.2s ease;
  min-width: 24px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content[aria-hidden="false"] {
  max-height: 500px;
  overflow: visible;
}

.accordion-body {
  padding: 20px 24px 20px 24px;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ========== レスポンシブ インライングリッド補完 ========== */
.route-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 24px;
  row-gap: 0;
  margin-bottom: 48px;
}

@media (max-width: 599px) {
  .route-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid > div:nth-child(odd) {
    padding-bottom: 8px !important;
  }
}

/* ========== Facility Link ========== */
.facility-link {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  color: var(--color-accent);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 500;
  border: 1px solid var(--color-accent);
  border-radius: 3px;
  transition: all 0.2s ease;
}

.facility-link:hover {
  color: var(--color-white);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

