/* ============================================
   CSS カスタムプロパティ
============================================ */
:root {
  --color-bg: #faf5ee;
  --color-bg-section: #f5f0e8;
  --color-bg-white: #ffffff;
  --color-text: #3e2c1a;
  --color-text-light: #7a6555;
  --color-brown: #6b4226;
  --color-brown-dark: #4a2e16;
  --color-blue: #6ab4d2;
  --color-pink: #f08080;
  --color-green: #8cc48c;
  --color-green-btn: #5a9a6a;
  --color-yellow: #e8b84b;
  --color-orange: #d97b3e;
  --color-orange-dark: #c06830;
  --color-sidebar-bg: #ffffff;
  --sidebar-width: 160px;
  --sp-header-height: 60px;
  --font-serif: 'Shippori Mincho', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-en: 'Cormorant Garamond', Georgia, serif;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(62, 44, 26, 0.10);
  --transition: 0.3s ease;
}

/* ============================================
   リセット・ベース
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }
ul { list-style: none; }

/* ============================================
   PC 左サイドバー
============================================ */
.pc-sidebar {
  display: none;
}

@media (min-width: 768px) {
  .pc-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--color-sidebar-bg);
    border-right: 1px solid rgba(107, 66, 38, 0.10);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px 0 40px;
  }
}

.sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 12px 20px;
  border-bottom: 1px solid rgba(107, 66, 38, 0.10);
  margin-bottom: 8px;
  text-decoration: none;
}

.sidebar-logo-img {
  width: 110px;
  height: auto;
  display: block;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.sidebar-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  text-decoration: none;
  transition: background var(--transition);
  border-radius: 8px;
  margin: 2px 8px;
}

.sidebar-nav-item:hover {
  background: var(--color-bg);
  opacity: 1;
}

.sidebar-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: #fff;
}

.sidebar-nav-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-brown-dark);
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.3;
}

/* ============================================
   SP ヘッダー
============================================ */
.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--sp-header-height);
  background: #fff;
  border-bottom: 1px solid rgba(107, 66, 38, 0.10);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .sp-header { display: none; }
}

.sp-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.sp-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ハンバーガーボタン */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   SP メニュー
============================================ */
.sp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1100;
}

.sp-menu-overlay.active { display: block; }

.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100%;
  background: var(--color-bg);
  z-index: 1200;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0 40px;
}

.sp-menu.open { transform: translateX(0); }

.sp-menu-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 20px 20px 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--color-brown);
  cursor: pointer;
}

.sp-menu-list { padding: 0 16px; }

.sp-menu-item {
  border-bottom: 1px solid rgba(107, 66, 38, 0.12);
}

.sp-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 8px;
  cursor: pointer;
}

.sp-menu-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sp-menu-label {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-brown-dark);
}

.sp-menu-arrow, .sp-accordion-toggle {
  font-size: 20px;
  color: var(--color-text-light);
  margin-left: auto;
}

/* アコーディオン */
.sp-accordion-content {
  display: none;
  overflow: hidden;
}

.sp-accordion-content.open { display: block; }

.sp-accordion-inner {
  background: rgba(247, 242, 232, 0.7);
  border-radius: 8px;
  padding: 14px;
  margin: 0 0 8px;
}

.sp-submenu-heading {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

.sp-submenu-heading strong {
  font-size: 14px;
  color: var(--color-brown-dark);
  display: block;
  margin-top: 4px;
}

.sp-submenu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--color-text);
}

.sp-submenu-sublink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brown-dark);
  border-top: 1px solid rgba(107, 66, 38, 0.1);
}

.sp-submenu-icon {
  color: var(--color-orange);
  font-size: 16px;
  font-weight: bold;
}

/* ============================================
   メインコンテンツ（PCではサイドバー分右に）
============================================ */
.main-content {
  min-height: 100vh;
}

@media (max-width: 767px) {
  .main-content {
    margin-top: var(--sp-header-height);
  }
}

@media (min-width: 768px) {
  .main-content {
    margin-left: var(--sidebar-width);
  }
}

/* ============================================
   共通レイアウト
============================================ */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

@media (max-width: 767px) {
  .section { padding: 56px 0; }
}

/* セクションタイトル */
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #fff;
}

.section-ja {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 600;
  color: var(--color-brown);
  letter-spacing: 0.05em;
}

/* ボタン共通 */
.btn-more {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid var(--color-brown);
  color: var(--color-brown);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-more:hover {
  background: var(--color-brown);
  color: #fff;
  opacity: 1;
}

.section-btn-wrap {
  text-align: center;
  margin-top: 36px;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* SP専用改行 */
@media (min-width: 768px) {
  .sp-only { display: none; }
}

/* ============================================
   HERO
============================================ */
.hero-section {
  background: var(--color-bg);
  padding: 48px 0 40px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 32px 0 40px;
  }
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 767px) {
  .hero-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.hero-left {
  flex: 1;
  position: relative;
  padding-bottom: 20px;
}

.hero-right {
  flex: 0 0 44%;
  max-width: 480px;
}

@media (max-width: 767px) {
  .hero-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

/* キッカーテキスト「あう　つながる　ひろがる」 */
.hero-kicker {
  font-family: var(--font-sans);
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.kicker-green  { color: #5a9a6a; }
.kicker-orange { color: var(--color-orange); }
.kicker-blue   { color: var(--color-blue); }

/* メインタイトル */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--color-brown-dark);
  line-height: 1.55;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* カラフル装飾バブル */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.b-pink   { width: 80px;  height: 80px;  background: var(--color-pink);   top: 0;   right: 20%; }
.b-green  { width: 56px;  height: 56px;  background: var(--color-green);  top: 30%; right: 5%;  }
.b-yellow { width: 44px;  height: 44px;  background: var(--color-yellow); bottom: 10%; right: 30%; }
.b-blue   { width: 36px;  height: 36px;  background: var(--color-blue);   bottom: 0;   right: 10%; }
.b-orange { width: 64px;  height: 64px;  background: var(--color-orange); top: 50%; right: -10px; }

/* 写真 */
.hero-photo-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(62, 44, 26, 0.15);
  aspect-ratio: 4/3;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   EVENT セクション
============================================ */
.event-section {
  background: var(--color-bg-white);
}

.event-desc {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 32px;
}

/* カレンダーコントロール */
.cal-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.cal-month-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cal-nav-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(107, 66, 38, 0.25);
  background: #fff;
  border-radius: 50%;
  font-size: 20px;
  color: var(--color-brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.cal-nav-btn:hover {
  background: var(--color-brown);
  color: #fff;
}

.cal-current-month {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
  min-width: 120px;
  text-align: center;
}

/* トグルボタン */
.cal-view-toggle {
  display: flex;
  gap: 0;
  border: 1px solid rgba(107, 66, 38, 0.25);
  border-radius: 50px;
  overflow: hidden;
}

.toggle-btn {
  padding: 7px 20px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.toggle-btn.active {
  background: var(--color-brown);
  color: #fff;
}

/* カラーレジェンド */
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--color-text-light);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* カレンダーグリッドビュー */
.cal-grid-view {
  background: #fff;
  border: 1px solid rgba(107, 66, 38, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.cal-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--color-bg-section);
}

.cal-cell-h {
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-light);
}

.cal-cell-h.sun { color: var(--color-pink); }
.cal-cell-h.sat { color: var(--color-blue); }

/* JS で生成される .calendar-days */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 88px;
}

.cal-day {
  height: 100%;
  overflow: hidden;
  padding: 6px 4px 4px;
  border-right: 1px solid rgba(107, 66, 38, 0.06);
  border-bottom: 1px solid rgba(107, 66, 38, 0.06);
  font-size: 12px;
  position: relative;
}

.cal-day:nth-child(7n) { border-right: none; }
.cal-day.empty { background: rgba(245, 240, 232, 0.5); }

.cal-day.today .cal-num {
  background: var(--color-orange);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-day.sun .cal-num { color: var(--color-pink); }
.cal-day.sat .cal-num { color: var(--color-blue); }

.cal-num {
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 2px;
}

.cal-event {
  display: block;
  font-size: 9px;
  padding: 1px 3px;
  border-radius: 2px;
  color: #fff;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* イベントリスト（グリッド下部） */
.event-list {
  padding: 10px 16px;
  border-top: 1px solid rgba(107, 66, 38, 0.08);
}

.event-list-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(107, 66, 38, 0.1);
  font-size: 13px;
}

.event-list-item:last-child { border-bottom: none; }

.event-list-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.event-list-date { color: var(--color-text-light); min-width: 90px; }

/* カレンダー デフォルト表示（JS が切り替える前の初期状態）
   SP: リスト表示 / PC: グリッド表示 */
.cal-grid-view { display: none; }
.cal-list-view  { display: block; }

@media (min-width: 768px) {
  .cal-grid-view { display: block; }
  .cal-list-view  { display: none; }
}

/* リストビュー */
.cal-list-view {
  background: #fff;
  border: 1px solid rgba(107, 66, 38, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.cal-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(107, 66, 38, 0.07);
  font-size: 14px;
}

.cal-list-item:last-child { border-bottom: none; }

.cal-list-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal-list-date {
  font-weight: 500;
  color: var(--color-text-light);
  min-width: 100px;
  font-size: 13px;
}

.cal-list-title { color: var(--color-text); }

/* ============================================
   ABOUT セクション
============================================ */
.about-section {
  background: var(--color-bg-section);
}

.about-illust-block {
  margin-bottom: 24px;
}

.about-illust {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  display: block;
}

.about-photo-block {
  margin-bottom: 32px;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius);
  max-height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-text-block {
  max-width: 800px;
  margin: 0 auto;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-body {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.95;
  margin-bottom: 14px;
}

/* ============================================
   ACTIVITY BASE セクション
============================================ */
.activity-section {
  background: var(--color-bg-white);
}

.activity-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
}

.activity-main-photo {
  margin-bottom: 32px;
}

.activity-hero-img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.activity-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .activity-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .activity-text { flex: 1; }
  .activity-photos { flex: 0 0 44%; }
}

.activity-heading {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 20px;
  line-height: 1.6;
}

.activity-text p {
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 12px;
  color: var(--color-text);
}

.activity-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.activity-photo-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.activity-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.activity-photo-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   SERVICE セクション
============================================ */
.service-section {
  background: var(--color-bg-section);
}

.service-section .section-inner {
  padding-bottom: 0;
}

/* サービスアイテム（フルワイド） */
.service-item {
  border-top: 1px solid rgba(107, 66, 38, 0.08);
}

.service-item:last-of-type {
  border-bottom: 1px solid rgba(107, 66, 38, 0.08);
  margin-bottom: 40px;
}

.service-item-inner {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .service-item-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 48px 24px;
  }

  .service-item-alt .service-item-inner {
    flex-direction: row-reverse;
  }
}

@media (max-width: 767px) {
  .service-item-inner {
    padding: 32px 20px;
    gap: 20px;
  }
}

.service-photo-col {
  flex: 0 0 48%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.service-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-photo-col img {
  transform: scale(1.03);
}

.service-text-col {
  flex: 1;
}

.service-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.service-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-title-sub {
  font-size: 0.65em;
  font-weight: 400;
  color: var(--color-text-light);
}

.service-catchcopy {
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 24px;
}

.btn-action {
  display: inline-block;
  padding: 10px 28px;
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.btn-action:hover {
  background: var(--color-orange-dark);
  opacity: 1;
  transform: translateY(-2px);
}

/* ============================================
   NEWS セクション
============================================ */
.news-section {
  background: var(--color-bg-white);
}

.news-subheading {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 12px;
  margin-top: -24px;
}

.news-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.9;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

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

@media (min-width: 640px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.news-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(62, 44, 26, 0.15);
  opacity: 1;
}

.news-thumb {
  aspect-ratio: 1;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-item:hover .news-thumb img {
  transform: scale(1.05);
}

/* ============================================
   ACCESS セクション
============================================ */
.access-section {
  background: var(--color-bg-section);
}

.access-map-wrap {
  margin-bottom: 32px;
}

.access-map-iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.access-info {
  max-width: 700px;
  margin: 0 auto;
}

.access-org {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 20px;
  line-height: 1.5;
}

.access-org-old {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--color-text-light);
}

.access-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(107, 66, 38, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.access-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(107, 66, 38, 0.08);
}

.access-row:last-child { border-bottom: none; }

.access-label {
  width: 90px;
  padding: 12px 16px;
  background: var(--color-bg-section);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-brown);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.access-val {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text);
}

.btn-map {
  display: inline-block;
  padding: 11px 32px;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-map:hover {
  background: var(--color-orange);
  color: #fff;
  opacity: 1;
}

/* ============================================
   CONTACT セクション
============================================ */
.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.contact-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 22, 8, 0.72);
}

.contact-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 24px;
  text-align: center;
}

.contact-en { color: rgba(255, 255, 255, 0.7) !important; }
.contact-ja { color: #fff !important; }

.contact-body {
  max-width: 600px;
  margin: 0 auto;
}

.contact-message {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 32px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--color-green-btn);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 36px;
}

.btn-contact:hover {
  background: #4a8459;
  opacity: 1;
  transform: translateY(-2px);
}

.contact-tel-wrap { text-align: center; }

.contact-tel-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-tel-num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}

.contact-tel-num:hover { opacity: 0.85; }

.contact-tel-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--color-brown-dark);
  padding: 40px 0 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-logo-icon { font-size: 28px; }

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-org {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ============================================
   スクロールトップボタン
============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--color-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: none;
}
