/* =====================================================
   Yasuragi no Sato - Facility Page
   Pixel-Perfect Match to Figma Design
   ===================================================== */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
  /* Primary Colors from Figma */
  --color-primary: #4a9255;
  --color-primary-dark: #3d7a47;

  /* Background Colors */
  --color-bg-cream: #fffbf1;  /* Figma準拠に変更 */
  --color-btn-orange: #d67c3d;
  --color-btn-orange-hover: #c26a2d;
  --color-bg-light: #fffcf8;
  --color-bg-beige: #faf4ec;

  /* Feature Tag Colors (Orange/Brown from Figma) */
  --color-tag-bg: #e8c8a9;
  --color-tag-border: #d4b494;

  /* ===== 施設別カラーテーマ (Figma準拠) ===== */

  /* 本館 - Warm Beige/Orange */
  --honkan-bg: #F6EEE6;
  --honkan-tag-bg: #ECCBB4;
  --honkan-box-bg: #E4B99B;

  /* 養生館 - Warm Yellow/Cream */
  --yojyokan-bg: #FBF8F2;
  --yojyokan-tag-bg: #F3E4C0;
  --yojyokan-box-bg: #E8D7AF;

  /* 高原館 - Cool Green */
  --kogenkan-bg: #F3F4F2;
  --kogenkan-tag-bg: #CBE3D7;
  --kogenkan-box-bg: #B7D5C6;

  /* Text Colors */
  --color-text-dark: #352304;
  --color-text-body: #5a5a5a;
  --color-text-light: #666666;

  /* Border */
  --color-border: #d4c4b0;
  --color-border-light: #e0d5c8;

  /* Functional */
  --color-white: #ffffff;

  /* Typography */
  --font-mincho: 'Shippori Mincho B1', 'YuMincho', 'Yu Mincho', serif;
  --font-gothic: 'YuGothic', 'Yu Gothic', 'Hiragino Sans', sans-serif;
  --font-italiana: 'Italiana', serif;
  --font-abhaya: 'Abhaya Libre', serif;

  /* Layout */
  --container-max: 1000px;
  --container-wide: 1200px;
}

/* =====================================================
   Reset & Base
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-gothic);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* SP-only line break */
.sp-br { display: none; }
@media (max-width: 768px) {
  .sp-br { display: block; }
  .pc-br { display: none; }
}

/* =====================================================
   Container
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: var(--container-wide);
}

/* Figma: ロゴ 185x36px */

/* Figma準拠: HOVERの時 色が薄くなる */

/* Figma: カレンダーから予約 - オレンジ #D67C3D, 209x80px */

/* Figma: プランから予約 - グリーン #4A9255, 208x80px */

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 720px; /* Figma準拠 */
  margin-top: clamp(60px, 5.56vw, 80px); /* ヘッダー分 */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

/* Figma: 左からのグラデーションオーバーレイ 626x720px */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 626px;
  height: 100%;
  background: linear-gradient(263deg, rgba(255, 255, 255, 0.00) 11.54%, rgba(176, 167, 157, 0.40) 29.37%, rgba(100, 81, 63, 0.50) 69.65%);
  pointer-events: none;
}

/* Figma: タイトルエリア - オーバーレイ上に左配置 */
.hero__title-area--center {
  position: absolute;
  left: 157px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
}

/* Figma: Italiana Regular 18px, letter-spacing 0.9px, ドロップシャドウ */
.hero__subtitle {
  font-family: var(--font-italiana);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 8px;
}

/* Figma: Shippori Mincho B1 SemiBold 64px, font-weight 600, letter-spacing 6.4px, color #FFFBF1 */
.hero__title {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 600;
  color: #fffbf1;
  letter-spacing: 6.4px;
  line-height: 70px;
}

/* =====================================================
   Section Base
   ===================================================== */
.section {
  padding: 72px 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 0;
  letter-spacing: 0.08em;
}

.section__subtitle {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* =====================================================
   Intro Section - 各施設の紹介
   ===================================================== */
/* ３つの滞在スタイル (Figma: Frame 1000005223) */
.stay-styles {
  background: #fffbf1;
  padding: 0;
}

.stay-styles__inner {
  max-width: 1441px;
  margin: 0 auto;
  padding: 100px 130px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.stay-styles__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  letter-spacing: 0;
  color: #352304;
  margin: 0;
  text-align: center;
}

.stay-styles__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.stay-styles__text {
  font-family: 'Yu Gothic', 'YuGothic', var(--font-gothic), sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  margin: 0;
  text-align: center;
}

/* SP responsive for stay-styles is in the main media query below */

/* =====================================================
   Facilities Overview - やすらぎの里の３つの施設
   Figma完全準拠: セクション1440x1055px
   ===================================================== */
/* コンテンツ幅1180px を中央配置: (100vw - 1180px) / 2 = 50vw - 590px */
/* =====================================================
   どの施設を選べばいい？ Section
   Figma node 3829:10298
   ===================================================== */
/* Figma: padding 150px 130px, VERTICAL gap:80 */
.choose-facility {
  background: var(--color-bg-cream);
  padding: 150px 130px;
}

.choose-facility__inner {
  max-width: 1181px;
  margin: 0 auto;
}

/* Figma: VERTICAL gap:18, align:CENTER */
.choose-facility__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 80px;
}

/* Figma: FOT-TsukuAntiqueLMin Std 64px weight300 lineHeight94 */
.choose-facility__title {
  font-family: var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  letter-spacing: 0;
}

/* Figma: Yu Gothic 24px weight500 lineHeight44 letterSpacing-1.2 */
.choose-facility__subtitle {
  font-family: var(--font-gothic);
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
}

/* Figma: VERTICAL gap:200, padding 0 67px */
.choose-facility__list {
  display: flex;
  flex-direction: column;
  gap: 200px;
  padding: 0 67px;
}

/* Figma: HORIZONTAL, align:CENTER */
.choose-facility__item {
  display: flex;
  align-items: center;
}

/* 本館: gap 251px */
.choose-facility__item--wide-gap {
  gap: 251px;
}

/* 養生館・高原館: gap 105px */
.choose-facility__item--normal-gap {
  gap: 105px;
}

.choose-facility__item--reverse {
  flex-direction: row-reverse;
}

/* Figma: VERTICAL gap:30 */
.choose-facility__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Figma: name group - inline layout for name + duration */
.choose-facility__name-group {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

/* Figma: FOT-TsukuAntiqueLMin Std 64px weight300 lineHeight94 */
.choose-facility__name {
  font-family: var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-weight: 300;
  color: #352304;
  line-height: 94px;
  letter-spacing: 0;
}

/* Figma: Shippori Mincho B1 36px weight600 lineHeight52 */
.choose-facility__duration {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  color: #352304;
  line-height: 52px;
  letter-spacing: 0;
}

/* Figma: VERTICAL gap:19 for catch + tag */
.choose-facility__catch-wrap {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

/* Figma: Shippori Mincho B1 36px weight600 lineHeight52 */
.choose-facility__catch {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 52px;
  letter-spacing: 0;
  color: #352304;
  white-space: nowrap;
}

/* Figma: stroke #000 1px, radius 30, pad 5px 50px */
.choose-facility__tag {
  display: inline-block;
  padding: 5px 50px;
  border: 1px solid #000;
  border-radius: 30px;
  font-family: var(--font-gothic);
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: 700;
  color: #352304;
  line-height: 1.83;
  text-align: center;
}

/* Figma: 500x300 */
.choose-facility__image {
  width: 500px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
}

/* Figma: 430x430 (本館) */
.choose-facility__image--square {
  width: 430px;
  height: 430px;
}

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

/* =====================================================
   Facility Hero Banner - 施設ヒーローバナー
   Figma準拠: 1440x400px with HONKAN/YOJYOKAN/KOGENKAN label
   ===================================================== */
.facility-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.facility-hero__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.facility-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Figma: 英語ラベル Italiana 40px white, shadow - 中央配置 */
.facility-hero__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-italiana);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 4px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   Facility Detail Section - 本館/養生館/高原館
   Figma完全準拠 - 背景テクスチャ付き
   ===================================================== */
.facility-detail {
  padding: 80px 0 100px;
  position: relative;
  /* 背景色は施設別モディファイアで指定 */
}

/* ===== 施設別背景色レイヤー (::afterで前面に配置、半透明でテクスチャを透過) ===== */
.facility-detail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.facility-detail--honkan {
  background-color: #F9EBE1;
}

.facility-detail--honkan::after {
  background-image: url('../images/honkan-bg.webp');
  background-size: cover;
  background-position: center;
}

.facility-detail--yojyokan {
  background-color: #FFFBF1;
}

.facility-detail--yojyokan::after {
  background-image: url('../images/yojyokan-bg.webp');
  background-size: cover;
  background-position: center;
}

.facility-detail--kogenkan {
  background-color: #F0F4F2;
}

.facility-detail--kogenkan::after {
  background-image: url('../images/kogenkan-bg.webp');
  background-size: cover;
  background-position: center;
}

/* 背景テクスチャオーバーレイ (Figma準拠)
   z-index: -1 で背景色レイヤーの後ろに配置 */
.facility-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url('../images/common/bg-texture.webp');
  background-size: cover;
  background-position: center;
  filter: invert(1) brightness(1.05) sepia(0.15);
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.facility-detail__content {
  position: relative;
  z-index: 1;
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}

.facility-detail__header {
  text-align: center;
  margin-bottom: 64px;
  padding: 0;
}

/* Figma: タイトル 64px w300 lineHeight78px #352304 (PC Title) */
.facility-detail__title {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  line-height: 78px;
  color: #352304;
  letter-spacing: 0;
}

.facility-detail__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
  margin-bottom: 48px;
}

/* Figma: キャッチコピー Shippori Mincho B1 32px w600 lineHeight68px (H6) */
.facility-detail__catchphrase {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 600;
  line-height: 68px;
  color: #352304;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0;
}

/* Figma: 説明文 Shippori Mincho B1 28px w600 lineHeight54px, 幅868px */
.facility-detail__description {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
  max-width: 1060px;
  color: #352304;
}

/* Figma: 本館 1つ目 */
.facility-detail__description--narrow {
  max-width: 980px;
}

/* Figma: 養生館・高原館 1つ目 728px */
.facility-detail__description--narrow-sm {
  max-width: 728px;
}

/* Figma: 養生館・高原館 2つ目 868px */
.facility-detail__description--mid {
  max-width: 868px;
}

/* Legacy support */
.facility-detail__body {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   Facility Features - タグ (Figma準拠)
   Figma: Yu Gothic 20px w400 lineHeight36px, アイコン付き
   ===================================================== */
.facility-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
  max-width: 1112px;
  margin: 0 auto 100px;
  padding-top: 50px;
}

/* Figma準拠: タグ行 gap 8px 32px */
.facility-features__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

/* Figma準拠: タグスタイル */
.facility-feature {
  display: flex;
  height: 50px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  background: #ECCBB4;
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #352304;
  letter-spacing: 0;
}

.facility-feature__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== 施設別タグカラー ===== */
.facility-detail--honkan .facility-feature {
  background: #ECCBB4;
}

.facility-detail--yojyokan .facility-feature {
  background: #F3E4C0;
}

.facility-detail--kogenkan .facility-feature {
  background: #CBE3D7;
}

/* =====================================================
   Facility Gallery - 6枚グリッド (Figma準拠)
   Figma: 360x270px 3列2行 gap16px
   ===================================================== */
.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.facility-gallery__item {
  width: 360px;
  height: 270px;
  overflow: hidden;
  background: #f5f5f5;
}

.facility-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.facility-gallery__item:hover .facility-gallery__image {
  transform: scale(1.05);
}

/* ===== 施設別ギャラリー枠 (Figma準拠: 枠なし) ===== */
/* Figmaでは枠線なし、クリーンな表示 */

/* =====================================================
   Plans Section - 対応プラン (Figma準拠: ボックスグリッド形式)
   ===================================================== */
.plans {
  padding-top: 40px;
  text-align: center;
}

.plans__divider {
  width: clamp(80px, 9vw, 130px);
  height: 1px;
  background-color: #352304;
  margin: 0 auto 40px;
}

.plans__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-style: normal;
  font-weight: 300;
  line-height: 94px;
  color: #604D44;
  text-align: center;
  margin-bottom: 40px;
}

/* Figma: 2x2 grid, gap:36, pad:0 20px */
.plans__list {
  display: grid;
  grid-template-columns: repeat(2, 550px);
  gap: 36px;
  justify-content: center;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
}

/* Figma: 550x73, pad 18px 64px, Yu Gothic 24px w700 */
.plans__item {
  display: flex;
  width: 550px;
  height: 73px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-gothic);
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1.2px;
  color: #352304;
  text-align: center;
  white-space: nowrap;
}

/* ===== 施設別プランボックス色 ===== */
.plans__separator {
  margin: 0 0.6em;
}

.facility-detail--honkan .plans__item {
  background-color: var(--honkan-box-bg);  /* #E4B99B */
}

.facility-detail--yojyokan .plans__item {
  background-color: var(--yojyokan-box-bg);  /* #E8D7AF */
}

.facility-detail--kogenkan .plans__item {
  background-color: var(--kogenkan-box-bg);  /* #B7D5C6 */
}

/* Figma準拠: ダークブラウンボタン #352304 */
.plans__more-link {
  display: inline-flex;
  height: clamp(50px, 5vw, 73px);
  padding: 18px 140px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 100px;
  background: #352304;
  color: var(--color-white);
  font-family: var(--font-gothic);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.plans__more-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

/* Figma準拠: HOVERの時 #35230499 */
.plans__more-link:hover {
  background: #35230499;
}

/* =====================================================
   Access Section (Figma準拠 - フローチャート形式)
   ===================================================== */
.access {
  padding: 64px 0 0;
  background: var(--color-white);
}

.access__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: clamp(32px, 4.44vw, 64px);
  font-style: normal;
  font-weight: 300;
  line-height: 94px;
  color: #352304;
  text-align: center;
  margin-bottom: 40px;
}

/* Google Map Placeholder */
.access__map {
  display: flex;
  width: 1000px;
  max-width: 100%;
  height: clamp(250px, 34.7vw, 500px);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto 32px;
  background: none;
}

.access__map-placeholder {
  font-size: 14px;
  color: #999;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Address Cards (Figma: 3列) */
.access__addresses {
  display: grid;
  grid-template-columns: repeat(3, 310px);
  gap: 16px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.access__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.access__address-name {
  display: flex;
  width: 310px;
  height: 69px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  color: #352304;
  text-align: center;
  margin-bottom: 12px;
  white-space: nowrap;
}

.access__address-name--honkan {
  background: #E4B99B;
}

.access__address-name--yojyokan {
  background: #E8D7AF;
}

.access__address-name--kogenkan {
  background: #CBE3D7;
}

.access__address-detail {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  color: #352304;
  text-align: left;
  margin-top: 16px;
}

/* Transport Section Title (Figma準拠) */
.access__transport-section {
  max-width: 600px;
  margin: 120px auto 48px;
}

.access__transport-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Shippori Mincho B1", var(--font-mincho);
  font-size: clamp(28px, 2.9vw, 42px);
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
  color: #352304;
  text-align: center;
  margin-bottom: 24px;
}

.access__transport-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.access__transport-icon svg {
  width: 50px;
  height: 50px;
}

/* ===== Flowchart Styles (Figma準拠) ===== */
.access__flowchart {
  display: grid;
  grid-template-columns: repeat(2, 470px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 0;
}

.access__flow-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PC: accordion body always visible */
.access__flow-accordion .access__flow-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SP only: やすらぎの里 box inside accordion - PCでは非表示 */
.access__flow-destination-sp {
  display: none !important;
}

/* Flow Box - Filled (brown) */
.access__flow-box {
  display: flex;
  width: 470px;
  height: 69px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
}

.access__flow-box--filled {
  background: #352304;
  color: var(--color-white);
}

/* Flow Box - Outline */
.access__flow-box--outline {
  background: var(--color-white);
  border: 1px solid #CBBDB2;
  color: #352304;
  box-sizing: border-box;
}

/* Flow Box - Destination (やすらぎの里) */
.access__flow-box--destination {
  width: 964px;
  background: #CBBDB2;
  color: #352304;
  text-align: center;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1.2px;
  margin-bottom: 0;
}

/* Flow Line (vertical connector) */
.access__flow-line {
  width: 1px;
  height: 30px;
  background: #CBBDB2;
}

/* Flow Line - 長いライン（熱海の上下用） */
.access__flow-line--long {
  height: 80px;
}

/* Flow Text (between boxes) */
.access__flow-text {
  color: #352304;
  text-align: center;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
}

/* Merged flow (車ルート用) */
.access__flow-merged {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}

.access__flow-merged .access__flow-box--outline {
  width: 964px;
}

/* 2本のライン（伊豆高原とやすらぎの里の間） */
.access__flow-lines-double {
  display: grid;
  grid-template-columns: repeat(2, 470px);
  gap: 24px;
  justify-content: center;
  width: 964px;
}

.access__flow-lines-double .access__flow-line {
  justify-self: center;
}

/* 車ルート専用 */
.access__flowchart--car {
  margin-bottom: 0;
}

.access__flowchart--car .access__flow-column {
  align-items: center;
}

/* ===== Destination Box (やすらぎの里 詳細) ===== */
.access__destination-box {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 964px;
  border: 1px solid #352304;
  background: #FFF;
}

.access__destination-title {
  background: #CBBDB2;
  padding: 10px 16px;
  color: #352304;
  text-align: center;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1.2px;
}

.access__destination-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 40px;
}

.access__destination-title + .access__destination-row {
  margin-top: 40px;
}

.access__destination-row + .access__destination-row {
  margin-top: 32px;
}

.access__destination-row:last-child {
  margin-bottom: 40px;
}

.access__destination-tag {
  display: flex;
  width: 310px;
  height: 69px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #352304;
  text-align: center;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.access__destination-tag--honkan {
  background: #E4B99B;
}

.access__destination-tag--yojyokan {
  background: #E8D7AF;
}

.access__destination-tag--kogenkan {
  background: #CBE3D7;
}

.access__destination-text {
  width: 584px;
  height: 71px;
  color: #352304;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

/* ===== CTA Buttons (Figma準拠: アイコン付き) ===== */
.access__cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 964px;
  margin: 0 auto 32px;
}

.access__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 14px 24px;
  font-family: var(--font-gothic);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.3s;
}

.access__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.access__cta-btn--primary {
  display: flex;
  width: 470px;
  height: 80px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #D67C3D;
  color: #FFF;
  font-family: "Shippori Mincho B1", var(--font-mincho);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  white-space: nowrap;
}

/* Figma準拠: HOVERの時 色が薄くなる */
.access__cta-btn--primary:hover {
  opacity: 0.7;
}

/* Figma準拠: 電話で予約は緑 */
.access__cta-btn--secondary {
  display: flex;
  width: 470px;
  height: 80px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #4A9255;
  color: #FFF;
  font-family: "Shippori Mincho B1", var(--font-mincho);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  white-space: nowrap;
}

/* Figma準拠: HOVERの時 色が薄くなる */
.access__cta-btn--secondary:hover {
  opacity: 0.7;
}

/* ===== Download Section (Figma準拠) ===== */
.access__download-box {
  display: flex;
  flex-direction: column;
  height: 90px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 964px;
  margin: 0 auto 100px;
  background: #352304;
  text-decoration: none;
  transition: opacity 0.3s;
}

.access__download-box:hover {
  opacity: 0.8;
}

.access__download-text {
  color: #FFF;
  text-align: center;
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.access__download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-family: "Shippori Mincho B1", var(--font-mincho);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

/* =====================================================
   CTA New - 予約・資料ダウンロード
   ===================================================== */
.cta-new {
  background: #FFFFFF;
  padding: 80px 0 180px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.cta-new--inline {
  padding: 40px 0 0 0;
  background: transparent;
}

.cta-new__buttons {
  display: flex;
  gap: 60px;
  width: 964px;
}

.cta-new__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 452px;
  height: 120px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta-new__btn:hover {
  opacity: 0.9;
}

.cta-new__btn--web {
  background: #d67c3d;
}

.cta-new__btn--phone {
  background: #4a9255;
}

.cta-new__btn-icon {
  width: 26px;
  height: 26px;
}

.cta-new__btn-icon--phone {
  width: 34px;
  height: 26px;
}

.cta-new__download {
  width: 964px;
  background: #352304;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 64px;
  height: 148px;
}

.cta-new__download-label {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: white;
  text-align: center;
  margin-bottom: 0;
}

.cta-new__download-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta-new__download-link:hover {
  opacity: 0.8;
}

.cta-new__download-icon {
  width: 26px;
  height: 26px;
}

/* 左側エリア */

/* 電話番号 */

/* SNSアイコン */

/* X (黒) */

/* Facebook (青) */

/* Instagram (グラデーション画像) */

/* YouTube (赤) */

/* お問い合わせボタン */

/* 右側ナビゲーション */

/* コピーライト */

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1200px) {
  /* facilities-overview レスポンシブ */
  .facilities-overview .section__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .facilities-overview .section__subtitle {
    font-size: 20px;
    line-height: 1.6;
  }

  .choose-facility__item {
    gap: 40px;
  }

  .choose-facility__image {
    width: 350px;
  }

  .choose-facility__image--square {
    width: 300px;
  }

  .choose-facility__list {
    gap: 100px;
  }
}

@media (max-width: 1024px) {
  /* facility-detail タブレット */
  .facility-detail__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .facility-detail__catchphrase {
    font-size: 32px;
    line-height: 1.4;
  }

  .facility-detail__description {
    font-size: 22px;
    line-height: 1.8;
  }

  .facility-feature {
    font-size: 16px;
  }

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

  .facility-gallery__item {
    width: 100%;
    height: auto;
    aspect-ratio: 360/270;
  }

  .access__addresses {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  /* ===== Hero (Figma: 390x570) ===== */
  .hero {
    height: 570px;
    margin-top: 56px;
  }

  .hero__overlay {
    width: 256px;
  }

  .hero__title-area--center {
    left: 41px;
    bottom: 20px;
    top: auto;
    transform: none;
  }

  .hero__title {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 70px;
  }

  .hero__subtitle {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-top: 8px;
  }

  .section {
    padding: 0;
  }

  /* ===== 3つの滞在スタイル (Figma: 390x390, content 320px) ===== */
  .stay-styles__inner {
    padding: 80px 20px 50px;
    gap: 15px;
    align-items: flex-start;
  }

  .stay-styles__title {
    font-size: 36px;
    line-height: 55px;
    text-align: left;
    white-space: nowrap;
  }

  .stay-styles__body {
    gap: 15px;
  }

  .stay-styles__text {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0;
    text-align: left;
  }

  /* ===== どの施設を選べばいい？ (Figma: 400x1627, pad 50/40/50/40, gap 80) ===== */
  .choose-facility {
    padding: 50px 40px;
  }

  .choose-facility__header {
    margin-bottom: 80px;
    gap: 15px;
  }

  .choose-facility__title {
    font-size: 36px;
    line-height: 55px;
  }

  .choose-facility__subtitle {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0;
  }

  .choose-facility__list {
    gap: 80px;
    padding: 0;
  }

  .choose-facility__item,
  .choose-facility__item--reverse {
    flex-direction: column;
    gap: 10px;
  }

  .choose-facility__item .choose-facility__image,
  .choose-facility__item .choose-facility__image--square {
    order: -1;
  }

  .choose-facility__item--wide-gap,
  .choose-facility__item--normal-gap {
    gap: 10px;
  }

  .choose-facility__image,
  .choose-facility__image--square {
    width: 310px;
    height: auto;
  }

  .choose-facility__text {
    gap: 20px;
    align-items: flex-start;
  }

  .choose-facility__item {
    align-items: flex-start;
  }

  .choose-facility__name-group {
    align-items: baseline;
  }

  .choose-facility__name {
    font-size: 36px;
    line-height: 55px;
  }

  .choose-facility__duration {
    font-size: 24px;
    line-height: 40px;
  }

  .choose-facility__catch {
    font-size: 24px;
    line-height: 40px;
    white-space: normal;
  }

  .choose-facility__tag {
    padding: 5px 50px;
    font-size: 16px;
    line-height: 35px;
  }

  /* ===== Facility Hero Banner (Figma: 390x150) ===== */
  .facility-hero {
    height: 150px;
  }

  .facility-hero__label {
    font-size: 36px;
    letter-spacing: 1.8px;
  }

  /* ===== Facility Detail (Figma: 390xAuto, pad 80/40/80/40) ===== */
  .facility-detail {
    padding: 80px 40px;
  }

  .facility-detail__content {
    max-width: 310px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .facility-detail__header {
    margin-bottom: 0;
  }

  .facility-detail__title {
    font-size: 36px;
    line-height: 55px;
    text-align: center;
  }

  .facility-detail__intro {
    gap: 15px;
    margin-bottom: 0;
    text-align: left;
    align-items: flex-start;
  }

  .facility-detail__catchphrase {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 0;
  }

  .facility-detail__description,
  .facility-detail__description--narrow,
  .facility-detail__description--narrow-sm,
  .facility-detail__description--mid {
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    max-width: 100%;
    text-align: left;
  }

  /* ===== Facility Features Tags (Figma: flex-wrap, gap 20px, pill 30px radius) ===== */
  .facility-features {
    gap: 10px 20px;
    margin-bottom: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 360px;
    max-width: none;
    margin-left: -25px;
    margin-right: -25px;
  }

  .facility-features__row {
    display: contents;
  }

  .facility-feature {
    padding: 5px 25px;
    font-size: 16px;
    line-height: 36px;
    height: auto;
    letter-spacing: -0.48px;
  }

  .facility-feature__icon {
    width: 20px;
    height: 20px;
  }

  /* ===== Gallery Grid (Figma: 2列, ~151x113) ===== */
  .facility-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 310px;
    margin: 0;
    margin-top: 50px;
  }

  .facility-gallery__item {
    width: 100%;
    height: auto;
    aspect-ratio: 151.6 / 113.7;
  }

  /* ===== Plans (Figma: 1列, gap 15px) ===== */
  .plans {
    padding-top: 50px;
  }

  .plans__divider {
    width: 130px;
    margin-bottom: 50px;
  }

  .plans__title {
    font-size: 36px;
    line-height: 55px;
    margin-bottom: 15px;
  }

  .plans__list {
    grid-template-columns: 1fr;
    max-width: 310px;
    gap: 15px;
  }

  .plans__item {
    width: 100%;
    height: auto;
    min-height: 50px;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.9px;
    white-space: normal;
  }

  .plans__more-link {
    width: 310px;
    height: 73px;
    padding: 18px 64px;
    font-size: 18px;
    font-weight: 700;
    line-height: 44px;
    margin-top: 50px;
  }

  .plans__more-icon {
    width: 24px;
    height: 24px;
  }

  /* ===== Access Section (Figma: pad 50/39/50/39) ===== */
  .access {
    padding: 50px 39px;
  }

  .access__title {
    font-size: 36px;
    line-height: 55px;
    margin-bottom: 50px;
  }

  .access__map {
    width: 100%;
    height: 250px;
    margin-bottom: 50px;
  }

  .access__addresses {
    grid-template-columns: 1fr;
    max-width: 311px;
    gap: 50px;
    margin-bottom: 0;
  }

  .access__address-name {
    width: 100%;
    height: 69px;
    font-size: 20px;
  }

  .access__address-detail {
    font-size: 24px;
    line-height: 44px;
  }

  .access .container {
    padding: 0;
  }

  /* ===== Transport Sections (Figma: pad 50/20/50/20, gap 40) ===== */
  .access__transport-section {
    max-width: none;
    width: 100%;
    margin: 50px auto 0;
    padding: 0;
  }

  .access__transport-icon svg {
    width: 32px;
    height: 32px;
  }

  .access__transport-title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.72px;
    margin-bottom: 40px;
  }

  /* Flow boxes SP */
  .access__flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90vw !important;
    max-width: none !important;
  }

  .access__flow-box {
    width: 100%;
    height: 69px;
    font-size: 18px;
    line-height: 44px;
    padding: 18px 10px;
    box-sizing: border-box;
  }

  .access__flow-merged {
    display: none;
  }

  .access__flow-box--destination {
    width: 350px;
    max-width: 100%;
  }

  .access__flow-lines-double {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }

  /* Destination box SP */
  .access__destination-box {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90vw !important;
    max-width: none !important;
    padding: 15px 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .access__destination-title {
    display: none;
  }

  .access__destination-row {
    flex-direction: row;
    gap: 8px;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
  }

  .access__destination-tag {
    width: 90px;
    height: 90px;
    padding: 0;
    font-size: 18px;
    line-height: 90px;
    flex-shrink: 0;
  }

  .access__destination-text {
    width: auto;
    flex: 1;
    height: auto;
    font-size: 16px;
    line-height: 34px;
  }

  .access__destination-row + .access__destination-row {
    margin-top: 0;
  }

  .access__destination-row:last-child {
    margin-bottom: 0;
  }

  .access__destination-title + .access__destination-row {
    margin-top: 0;
  }

  .access__flow-destination-sp {
    display: flex !important;
    width: 100%;
    height: 80px;
    background: #CBBDB2;
    color: #352304;
    font-family: 'YuGothic', 'Yu Gothic', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 44px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  /* Accordion for flowchart on SP */
  .access__flow-accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .access__flow-toggle {
    cursor: pointer;
  }

  .access__flow-accordion .access__flow-body {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .access__flow-accordion.is-open .access__flow-body {
    display: flex;
  }

  /* CTA buttons inline SP */
  .access__cta {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
  }

  .access__cta-btn--primary,
  .access__cta-btn--secondary {
    width: 350px;
    max-width: 100%;
    height: 69px;
    font-size: 24px;
    line-height: 44px;
  }

  .access__download-box {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 18px 20px;
    margin: 0 auto 50px;
  }

  .access__download-text {
    font-size: 20px;
    line-height: 30px;
  }

  .access__download-link {
    font-size: 24px;
    line-height: 54px;
  }

  /* ===== CTA New (Figma: 390x508, pad 50/0/50/0, gap 10) ===== */
  .cta-new {
    padding: 50px 0;
    gap: 10px;
  }

  .cta-new__buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  .cta-new__btn {
    width: 390px;
    max-width: 100%;
    height: 120px;
    font-size: 24px;
    line-height: 54px;
  }

  .cta-new__download {
    width: 390px;
    max-width: 100%;
    height: auto;
    padding: 18px 20px;
  }

  .cta-new__download-label {
    font-size: 20px;
    line-height: 30px;
  }

  .cta-new__download-link {
    font-size: 24px;
    line-height: 54px;
  }

  /* ===== プランセクション モバイル ===== */
}
