@charset "UTF-8";
/* ==========================================================================
   車山ギャラクシー トップページ専用スタイル【test 20260604】
   home.css のクローン + カンプ（galaxy-camp）寄せの追加スタイル
   （共通スタイル・ヘッダー・フッターは style.css 側 / フッターはテスト用に
    .home-footer をこのファイルで独自定義）
   ========================================================================== */

.page-home {
  /* with Dogs: 肉球装飾画像のサイズ（任意調整可） */
  --with-dogs-paw-width: 180px;
  /* 中央見出しの左右オーナメント（任意調整可） */
  --heading-ornament-width: 120px;
  /* アクセス: マップピンアイコン画像のサイズ（任意調整可） */
  --access-pin-size: 18px;
  --access-map-pin-size: 16px;
  /* access__box 見出しピン: 高さのみ指定（幅は比率維持で自動） */
  --access-box-lead-pin-height: 24px;
  --footer-pin-size: 16px;
  /* トップページ: ブランドカラー統一（ボタン・日付・電話番号等） */
  --color-brand: #776553;
  /* section__inner 左右パディング（画像ブリード計算にも使用） */
  --section-inner-padding-x: 5%;
}

/* ==========================================================================
   共通: 見出し
   ========================================================================== */
.heading {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.3;
}
.heading--center { align-items: center; text-align: center; }
.heading-wrap--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  margin-bottom: 32px;
}
.heading-wrap--center .heading { margin-bottom: 0; }
.heading-wrap__ornament {
  display: block;
  width: var(--heading-ornament-width);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.page-home .u-br-sp { display: none; }
.heading__en {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  color: var(--color-accent);
  letter-spacing: 0.03em;
}
.heading__en--xl { font-size: 56px; }
.heading__jp {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
}
.heading__jp--xl { font-size: 36px; }
.heading--jp-large {
  font-family: var(--font-jp-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
}

/* ==========================================================================
   ヒーロー
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
}
.hero__image { position: absolute; inset: 0; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
/* ヒーロースライダー（5枚クロスフェード自動切替） */
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__copy {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero__lead {
  font-family: var(--font-jp-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 24px;
  word-break: keep-all;
  line-break: strict;
}
.hero__lead-keep {
  display: inline-block;
  white-space: nowrap;
}
.hero__brand {
  position: absolute;
  left: clamp(12px, 3vw, 10px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  line-height: 0;
}
.hero__brand-img {
  display: block;
  width: auto;
  height: clamp(260px, 52vh, 440px);
  max-height: calc(100% - 48px);
  object-fit: contain;
}

/* ==========================================================================
   予約検索バー
   ========================================================================== */
.reserve-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 4px 24px rgba(58, 45, 31, 0.06);
  padding: 28px 32px 32px;
}
.reserve-bar__head { text-align: center; margin: 0 0 18px; }
.reserve-bar__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.reserve-bar__note {
  font-family: var(--font-jp-sans);
  font-size: 14px;
  color: var(--color-text-sub);
  margin: 0;
}
.reserve-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 18px 22px;
}
.reserve-bar__field { display: flex; flex-direction: column; gap: 6px; }
.reserve-bar__field > label {
  font-family: var(--font-jp-sans);
  font-size: 16px;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
}
.reserve-bar__field select,
.reserve-bar__field input[type="date"] {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  padding: 9px 10px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: #fff;
  color: var(--color-text);
}
.reserve-bar__date { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.reserve-bar__date select { min-width: 62px; }
.reserve-bar__undecided {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-jp-sans);
  font-size: 16px;
  color: var(--color-text-sub);
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}
.reserve-bar__undecided input { width: auto; margin: 0; }
.reserve-bar__inline { display: inline-flex; align-items: center; gap: 8px; }
.reserve-bar__inline span { font-family: var(--font-jp-sans); font-size: 16px; color: var(--color-text-sub); }
.reserve-bar__submit { padding: 11px 30px; align-self: flex-end; }

/* ==========================================================================
   共通セクション
   ========================================================================== */
.section { padding: 120px 0; }

/* セクション別 padding-bottom（トップページ） */
.page-home #recommended { padding-bottom: 70px; }
.page-home #news { padding-bottom: 30px; }
.page-home .section--event { padding-bottom: 30px; }
.page-home .section--access { padding-bottom: 40px; }

.section--alt { background: var(--color-bg-alt); }
.section__inner {
  container-type: inline-size;
  margin: 0 auto;
  padding: 0 var(--section-inner-padding-x);
}
.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 80px;
  align-items: center;
}
.section__inner--split.section__inner--reverse {
  grid-template-columns: 1.18fr 1fr;
}
.section__inner--reverse > .section__image { order: -1; }
.section__inner--reverse > .section__text { order: 1; }
.section__text > p { margin: 0 0 20px; }
.section__text .lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--color-accent-dk);
}
.section__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.section__image > img:not(.with-dogs__paw-deco):not(.brick-deco) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.section__image--right { padding-left: 40px; }
.section__more {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   STORY セクション
   ========================================================================== */
.section--story { background: var(--color-bg-alt); }
.story__main { position: relative; }
.story__main > img { width: 100%; border-radius: 4px; }
.story__thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.story__thumbs img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }

/* ==========================================================================
   ワイドバナー
   ========================================================================== */
.wide-banner { width: 100%; overflow: hidden; }
.wide-banner img { width: 100%; height: auto; display: block; }

/* ==========================================================================
   プラン
   ========================================================================== */
.section--plans, .section--plan-list { background: var(--color-bg); }
.plan-grid {
  display: grid;
  gap: 48px;
  margin-top: 56px;
}
.plan-grid--2 { grid-template-columns: 1fr 1fr; }
.plan-grid__slide-note {
  display: none;
}
.plan-grid-slider .story-gallery__nav.plan-slider__nav {
  display: none;
}
.event-grid-wrap .story-gallery__nav.plan-slider__nav {
  display: none;
}
.event-slider .story-gallery__nav.plan-slider__nav {
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.flower-slider .story-gallery__nav.plan-slider__nav {
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
a.plan-card,
a.plan-card:hover {
  text-decoration: none;
  color: inherit;
}
a.plan-card:hover,
a.plan-card.plan-card--detail:hover {
  opacity: 0.7;
  transform: translateY(-4px);
}
a.plan-card .btn { pointer-events: none; }
.plan-card__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.plan-card__title {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 8px 0 4px;
  line-height: 1.5;
}
.plan-card__meta {
  font-family: var(--font-jp-serif);
  font-size: 14px;
  color: var(--color-text-sub);
  margin: 0;
}
.plan-card__text {
  font-size: 16px;
  margin: 0;
  line-height: 1.9;
}
.plan-card .btn { align-self: flex-start; margin-top: 12px; }
/* おすすめプラン: タイトルを画像左上にオーバーレイ（カンプ準拠） */
.plan-card__img { position: relative; overflow: hidden; }
.plan-card__title--overlay {
  position: absolute;
  top: 22px;
  max-width: calc(100% - 44px);
  z-index: 2;
  margin: 0;
  padding: 10px;
  background: rgb(255 255 255 / 84%);
  color: #3a3a3a;
}

/* プラン PLAN: 横スライド（中央1枚＋左右チラ見せ・画像左50%＋白テキスト右50%） */
.plan-slider {
  position: relative;
  margin-top: 56px;
  --plan-gap: 24px;
  --plan-card-width: min(720px, 72%);
}
.plan-slider__viewport {
  display: flex;
  gap: var(--plan-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100% - var(--plan-card-width)) / 2);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.plan-slider__viewport::-webkit-scrollbar { display: none; }
.section--plan-list .plan-card--detail {
  flex: 0 0 var(--plan-card-width);
  box-sizing: border-box;
  scroll-snap-align: center;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
/* 画像は正方形50%。カード高さの基準 */
.section--plan-list .plan-card--detail .plan-card__img {
  flex: 0 0 50%;
  align-self: flex-start;
  aspect-ratio: 1 / 1;
}
.section--plan-list .plan-card--detail .plan-card__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}
/* 右半分は白背景テキストエリア */
.section--plan-list .plan-card--detail .plan-card__body {
  position: relative;
  flex: 0 0 50%;
  min-width: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.section--plan-list .plan-card--detail .plan-card__body-inner {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 32px;
}
.section--plan-list .plan-card--detail .plan-card__text {
  color: var(--color-text-sub);
  font-size: 16px;
}
/* タイトルは全文表示（縮めない・省略しない） */
.section--plan-list .plan-card--detail .plan-card__title {
  margin: 0;
  flex: 0 0 auto;
  color: var(--color-accent-dk);
  font-size: 20px;
  line-height: 1.65;
}
/* 他テキストもあふれたら「…」 */
.section--plan-list .plan-card--detail .plan-card__meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-text-sub);
}
.section--plan-list .plan-card--detail .plan-card__text {
  flex: 1 1 auto;
  min-height: 0;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.plan-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  background: #fff;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .2s;
  transform: translate(-50%, -50%);
}
.plan-slider__arrow--next {
  right: auto;
}
.plan-slider__nav {
  margin-top: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.plan-slider__arrow:hover { background: var(--color-bg-alt); }
.plan-slider__arrow::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 9px;
  border-top: 2px solid var(--color-accent-dk);
  border-right: 2px solid var(--color-accent-dk);
}
.plan-slider__arrow--prev::before { transform: translate(-30%,-50%) rotate(-135deg); }
.plan-slider__arrow--next::before { transform: translate(-70%,-50%) rotate(45deg); }

/* ==========================================================================
   Cuisine
   ========================================================================== */
.section--cuisine { background: var(--color-bg); }
.cuisine__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.cuisine__images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.cuisine__text {
  max-width: 900px;
  margin: 56px auto 0;
  text-align: center;
}
.cuisine__text p { margin: 0 0 20px; }

/* ==========================================================================
   Bath / Room
   ========================================================================== */
.section--bath {
  background: var(--color-bg);
  --fc-deco-panel: #e3dcd3;
}
.section--room {
  background: var(--color-bg);
  --fc-deco-panel: #e3dcd3;
}

/* Bath / Room 装飾パネル（添付モック準拠） */
@media (min-width: 901px) {
  .section--bath .section__inner--split,
  .section--room .section__inner--split {
    gap: 0;
    align-items: center;
  }
  .section--bath .section__text,
  .section--room .section__text {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 4vw, 56px) clamp(32px, 3vw, 48px);
  }
  .section--bath .section__text::before,
  .section--room .section__text::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 80%;
    transform: translateY(-50%);
    width: calc(100% + clamp(64px, 7vw, 120px));
    height: 70%;
    background: var(--fc-deco-panel);
  }
  .section--bath .section__text::before {
    right: 0;
  }
  .section--room .section__text::before {
    left: 0;
    border-radius: 0 clamp(48px, 5.5vw, 96px) 0 0;
  }
  .section--bath .section__image {
    position: relative;
    z-index: 2;
    margin-right: calc(-1 * clamp(64px, 7vw, 120px));
  }
  .section--room .section__image {
    position: relative;
    z-index: 2;
    margin-left: calc(-1 * clamp(64px, 7vw, 120px));
  }
}
@media (max-width: 900px) {
  .section--bath .section__text::before,
  .section--room .section__text::before {
    content: none;
  }
}

/* ==========================================================================
   周辺観光
   ========================================================================== */
.section--sightseeing { background: #fff; overflow: hidden; }
.sightseeing__lead {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}
.sightseeing__lead p { margin: 0 0 16px; }
.sightseeing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.tour-card__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.sightseeing__sub {
  text-align: center;
  font-family: var(--font-jp-serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 32px;
  color: var(--color-text);
}
.sightseeing__news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-thumb-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(58,45,31,0.06);
}
.news-thumb-card__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.news-thumb-card__body { padding: 20px 22px 24px; }
.news-thumb-card__title {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 500;
}
.news-thumb-card__text {
  font-size: 16px;
  color: var(--color-text-sub);
  margin: 0 0 10px;
}
.news-thumb-card__date {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--color-accent);
  margin: 0;
}

/* ==========================================================================
   お知らせ
   ========================================================================== */
.section--news { background: var(--color-bg); }
.news-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.news-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  row-gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}
.news-list__title {
  flex: 0 0 100%;
  font-size: 16px;
  color: var(--color-text);
  margin: 0;
}
.news-list__date {
  font-family: var(--font-en-serif);
  font-style: italic;
  color: var(--color-accent-dk);
  font-size: 20px;
  flex: 0 0 auto;
}
.news-list__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-jp-sans);
  font-size: 14px;
  border-radius: 999px;
  width: max-content;
  flex: 0 0 auto;
}

/* ==========================================================================
   イベント情報
   ========================================================================== */
.section--event { background: var(--color-bg); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.event-grid-wrap {
  position: relative;
}
.event-grid-wrap > .plan-slider__arrow {
  display: none;
}
.slider-card--clone {
  pointer-events: none;
}
.event-slider {
  position: relative;
  display: block;
  margin-top: 56px;
}
.event-slider__stage {
  position: relative;
}
.event-slider__viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}
.event-slider__viewport::-webkit-scrollbar { display: none; }
.event-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  padding: 8px 8px 16px;
}
.event-slider__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #fff;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 10px rgba(58,45,31,0.08);
  transition: background .2s;
}
.event-slider__arrow--prev { left: 6px; }
.event-slider__arrow--next { right: 6px; }
.event-slider__arrow:hover { background: var(--color-bg-alt); }
.event-slider__arrow::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-top: 2px solid var(--color-accent-dk);
  border-right: 2px solid var(--color-accent-dk);
  margin-top: -5px;
}
.event-slider__arrow--prev::before { transform: translate(-30%,0) rotate(-135deg); }
.event-slider__arrow--next::before { transform: translate(-70%,0) rotate(45deg); }
.event-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}
.event-card:hover { opacity: 0.7; }
.event-card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.event-card__date {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--color-brand, #776553);
  margin: 4px 0 0;
  text-align: right;
}
.event-card__text {
  font-size: 16px;
  color: var(--color-text-sub);
  margin: 0;
}

/* ==========================================================================
   アクセス
   ========================================================================== */
.section--access { background: var(--color-bg); }
.access__lead {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-accent-dk);
  margin: 0 0 20px;
}

/* お問合せ（.section--contact / .contact__tel-num）は style.css に集約（全ページ共通） */

/* ==========================================================================
   レスポンシブ（ベース）
   ========================================================================== */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .page-home #recommended { padding-bottom: 70px; }
  .page-home #news { padding-bottom: 30px; }
  .page-home .section--event { padding-bottom: 30px; }
  .page-home .section--access { padding-bottom: 40px; }
  .section__inner { padding: 0 var(--section-inner-padding-x); }
  .section__inner--split { grid-template-columns: 1fr; gap: 40px; }
  .section__inner--split.section__inner--reverse { grid-template-columns: 1fr; }
  .section__image--right { padding-left: 0; }
  .section__inner--reverse > .section__image { order: 0; }
  .section__inner--reverse > .section__text { order: 0; }

  .reserve-bar { padding: 24px 20px 26px; }
  .reserve-bar__inner { gap: 14px 18px; }

  .heading__en { font-size: 32px; }
  .heading__en--xl { font-size: 44px; }
  .heading__jp { font-size: 18px; }
  .heading__jp--xl { font-size: 28px; }
  .heading--jp-large { font-size: 24px; }

  .plan-grid--2, .cuisine__images, .sightseeing__cards, .sightseeing__news {
    grid-template-columns: 1fr;
  }
  .plan-slider {
    --plan-card-width: 82%;
  }
  .plan-slider__viewport {
    scroll-padding-inline: calc((100% - var(--plan-card-width)) / 2);
    padding-inline: calc((100% - var(--plan-card-width)) / 2);
  }
  .section--plan-list .plan-card--detail {
    flex: 0 0 var(--plan-card-width);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }
  .section--plan-list .plan-card--detail .plan-card__img { flex: none; align-self: stretch; width: 100%; aspect-ratio: 16/10; }
  .section--plan-list .plan-card--detail .plan-card__img img { aspect-ratio: 16/10; height: auto; width: 100%; }
  .section--plan-list .plan-card--detail .plan-card__body { flex: none; width: 100%; }
  .section--plan-list .plan-card--detail .plan-card__body-inner { padding: 20px; gap: 12px; }
  .section--plan-list .plan-card--detail .plan-card__meta,
  .section--plan-list .plan-card--detail .plan-card__text { display: block; -webkit-line-clamp: none; overflow: visible; }
  .plan-slider__arrow--prev {
    left: 6px;
    transform: translateY(-50%);
  }
  .plan-slider__arrow--next {
    left: auto;
    right: 6px;
    transform: translateY(-50%);
  }
  .event-grid { grid-template-columns: 1fr 1fr; }

  .section--cuisine .section__more {
    justify-content: center;
    margin-top: 32px;
  }

  /* スマホ幅ではビューポート高さ基準だと縦長コンテナになり、object-fit:cover で
     写真の左右が大きく（最大約半分）見切れるため、ヒーロー写真の実寸比率(3:2)に
     近い aspect-ratio で高さを決める（見切れを desktop 相当の1割程度に抑える） */
  .hero { height: auto; aspect-ratio: 4 / 3; min-height: 240px; max-height: 70vh; }
}

@media (max-width: 600px) {
  .reserve-bar__inner { flex-direction: column; align-items: stretch; }
  .reserve-bar__field { width: 100%; }
  .reserve-bar__submit { width: 100%; }
  .event-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ▼▼▼ ここから test 追加分（カンプ寄せ）▼▼▼
   ========================================================================== */

/* --- 1) Cuisine: 料理5枚ギャラリー帯（常時ゆっくり連続スライド） --- */
.cuisine__gallery {
  margin-top: 64px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* .section__inner の max-width / padding を突き破ってブラウザ左右端まで */
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.cuisine__gallery::-webkit-scrollbar { display: none; }
.cuisine__gallery-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: cuisine-gallery-marquee 80s linear infinite;
  will-change: transform;
}
.cuisine__gallery-track img {
  display: block;
  flex: 0 0 20vw;
  width: 20vw;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}
@keyframes cuisine-gallery-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cuisine__gallery-track { animation: none; }
}

/* --- 2) 周辺観光: 大判風景写真2枚 --- */
.sightseeing__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sightseeing__photos img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* --- 3) 車山高原のお花: スライダー --- */
.section--flower { background: #fff; padding-top: 0; }
.flower__title {
  text-align: center;
  font-family: var(--font-jp-serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 36px;
  padding-top: 8px;
  color: var(--color-text);
  border-top: 1px solid var(--color-line);
}
.flower-slider {
  position: relative;
  display: block;
}
.flower-slider__stage {
  position: relative;
}
.flower-slider__viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding: 12px 15px;
  margin: -12px 0 -20px;
  box-sizing: content-box;
}
.flower-slider__viewport.home-carousel__viewport,
.event-slider__viewport.home-carousel__viewport {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.flower-slider__viewport.home-carousel__viewport .flower-card,
.flower-slider__viewport.home-carousel__viewport a.flower-card,
.event-slider__viewport.home-carousel__viewport .event-card {
  scroll-snap-align: none;
}
.flower-slider__viewport::-webkit-scrollbar { display: none; }
.flower-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 25px;
}
.flower-card,
a.flower-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 0;
  padding: 10px;
  box-shadow: 3px 3px 10px rgba(58, 45, 31, 0.14);
}
a.flower-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.flower-card:hover { opacity: 0.7; }
.flower-card__img {
  border: 1px solid #e5ddd3;
  line-height: 0;
  background: #fff;
}
.flower-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.flower-card__body {
  padding: 14px 4px 0;
}
.flower-card__t {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 12px;
  padding-bottom: 10px;
  color: var(--color-text);
  text-align: left;
  border-bottom: 1px solid var(--color-line);
}
.flower-card__d {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--color-text);
  text-align: right;
  line-height: 1.7;
}
.flower-card__date {
  text-align: right;
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--color-brand, #776553);
  margin: 0;
}
.flower-slider__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #fff;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 10px rgba(58,45,31,0.08);
  transition: background .2s;
}
.flower-slider__arrow--prev { left: -13px; }
.flower-slider__arrow--next { right: 6px; }
.flower-slider__arrow:hover { background: var(--color-bg-alt); }
.flower-slider__arrow::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-top: 2px solid var(--color-accent-dk);
  border-right: 2px solid var(--color-accent-dk);
  margin-top: -5px;
}
.flower-slider__arrow--prev::before { transform: translate(-30%,0) rotate(-135deg); }
.flower-slider__arrow--next::before { transform: translate(-70%,0) rotate(45deg); }
.section--flower .section__more {
  justify-content: flex-end;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* --- 4) お知らせ: 左見出し+ボタン / 右一覧 の2カラム --- */
.news-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
#news .news-block {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.news-block__head .heading {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 28px;
}
/* 「お知らせ」と「Topics」の間にライン */
.news-block__head .heading__jp {
  align-self: stretch;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}
.news-block .news-list { margin: 0; max-width: none; }
.news-block .news-list__item:first-child { padding-top: 0; }

/* --- 5) イベント: 2行テキスト（順序は本文側で text→date） --- */
.event-card__text { line-height: 1.7; }

/* --- 6) アクセス: 淡色ボックス内 文左/地図右 + 濃色GoogleMap --- */
.access__box {
  margin-top: 56px;
  background: #b5a89845;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.access__pin {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  line-height: 0;
  flex-shrink: 0;
}
.access__pin img {
  display: block;
  width: var(--access-pin-size, 18px);
  height: var(--access-pin-size, 18px);
  object-fit: contain;
}
.access__box .access__lead .access__pin img {
  width: auto;
  height: var(--access-box-lead-pin-height, 24px);
  object-fit: contain;
}
.access__map-link .access__pin img {
  width: var(--access-map-pin-size, 16px);
  height: var(--access-map-pin-size, 16px);
  filter: brightness(0) invert(1);
}
.access__box .access__lead { display: flex; align-items: center; }
.access__box .access__text {
  display: flex;
  flex-direction: column;
}
.access__box .access__text .btn--ghost {
  align-self: flex-end;
  margin-top: 32px;
}
.access__map { position: relative; }
.access__map-img-link {
  display: block;
  line-height: 0;
}
.access__map-img-link img {
  width: 100%;
  display: block;
  transition: opacity .25s;
}
.access__map-img-link:hover img {
  opacity: 0.8;
}
.access__map img {
  width: 100%;
}
.access__map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: #1d1d1f;
  color: #fff;
  font-family: var(--font-en-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* お問合せ詳細（.contact__*）・共通フッター（.home-footer*）は style.css に集約（全ページ共通） */

/* ==========================================================================
   ▼ test 追加分のレスポンシブ
   ========================================================================== */
@media (max-width: 900px) {
  .cuisine__gallery-track img {
    flex: 0 0 calc(100vw / 3);
    width: calc(100vw / 3);
  }
  .sightseeing__photos { grid-template-columns: 1fr; }
  .sightseeing__photos img { height: 240px; }
  .flower-slider__track,
  .event-slider__track { grid-auto-columns: calc((100% - 24px) / 2); }
  .news-block { grid-template-columns: 1fr; gap: 28px; }
  .news-block__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .news-block__head .heading { margin-bottom: 0; }
  .access__box { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}

@media (max-width: 600px) {
  .cuisine__gallery-track img {
    flex: 0 0 50vw;
    width: 50vw;
  }
  .flower-slider__track,
  .event-slider__track { grid-auto-columns: 78%; }
}

/* ==========================================================================
   ▼▼▼ モック反映 追加分（v2 / 上半分の差分）▼▼▼
   ========================================================================== */

/* with Dogs: 愛犬写真への肉球装飾オーバーレイ */
.section--with-dogs { position: relative; overflow: hidden; background: #fff; }
.section__image--with-dogs {
  position: relative;
}
.with-dogs__paw-deco {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: var(--with-dogs-paw-width);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
/* 分割セクション共通の角丸を肉球装飾だけ打ち消す */
.section--with-dogs .section__image--with-dogs .with-dogs__paw-deco {
  border-radius: 0;
  max-width: none;
}
/* with Dogs: メイン写真（バンダナをつけた愛犬）のみ左下を角丸 */
.section--with-dogs .section__image--with-dogs > img:not(.with-dogs__paw-deco) {
  border-radius: 0 0 0 clamp(40px, 6vw, 90px);
}

/* 愛犬と囲む食卓: 見出し下線なし（heading--jp-large 専用） */
.section--dinner .section__text .heading::after {
  content: none;
  display: none;
}

/* 愛犬と囲む食卓: レンガ装飾（外観写真の左下に少しかぶせる） */
.section--dinner .section__image {
  position: relative;
}
.section--dinner .section__image .brick-deco {
  position: absolute;
  left: -70%;
  bottom: -25%;
  z-index: 2;
  display: block;
  height: 37%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  transform: none;
  border-radius: 0;
  box-shadow: none;
}
/* 愛犬と囲む食卓: 外観写真は左上のみ角丸 */
.section--dinner .section__inner--split .section__image > img:not(.with-dogs__paw-deco):not(.brick-deco) {
  border-radius: clamp(40px, 6vw, 90px) 0 0 0;
  box-shadow: none;
}

/* dinner と STORY の間: 縦線アニメーション装飾 */
.section-divider--beam {
  position: relative;
  height: 72px;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.section-divider--beam::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(160, 114, 70, 0.2);
  transform: translateX(-50%);
}
.section-divider__pulse {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--color-accent-dk) 35%, var(--color-accent-dk) 65%, transparent);
  transform: translateX(-50%);
  animation: section-divider-beam 2.4s ease-in-out infinite;
}
@keyframes section-divider-beam {
  0% { top: -36px; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { top: calc(100% + 36px); opacity: 0; }
}

/* STORY: 見出しは全幅・左寄せ・1行 / 本文とギャラリーは中央寄せ */
.section--story .story-block { display: block; }
.story-block__heading { align-items: flex-start; text-align: left; flex-wrap: nowrap; margin-bottom: 28px; }
.story-block__body { text-align: center; max-width: 760px; margin: 0 auto; }
.story-block__body p { margin: 0 0 20px; }
.story-block__body .lead { color: var(--color-accent-dk); font-weight: 500; font-size: 18px; }
.story-gallery { margin: 40px auto 0; max-width: 760px; }
@media (max-width: 600px) {
  .story-block__heading { flex-wrap: wrap; }   /* スマホは折り返し許可 */
}
.story-gallery__main {
  position: relative;
  overflow: hidden;
}
.story-gallery__main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: opacity 0.65s ease;
}
.story-gallery__main img.is-fading {
  opacity: 0;
}
.story-gallery__thumbs {
  margin-top: 14px;
  overflow: hidden;                 /* 3枚だけ見せるビューポート */
}
.story-gallery__thumbs-track {
  display: flex;
  gap: 12px;
  transition: transform .55s ease;
  will-change: transform;
}
.story-gallery__thumb {
  flex: 0 0 calc((100% - 24px) / 3); /* 常に3枚（gap 12px×2を差し引く） */
  padding: 0; border: 2px solid transparent; background: none; cursor: pointer;
  overflow: hidden; line-height: 0;
  transition: opacity .25s;
}
.story-gallery__thumb--clone { cursor: pointer; }
.story-gallery__thumb:not(.is-active) { opacity: 0.6; }
.story-gallery__thumb.is-active { border-color: transparent; }
.story-gallery__thumb img { width: 100%; height: 150px; object-fit: cover; }
.story-gallery__nav {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.story-gallery__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  grid-column: 3;
  justify-self: end;
}
.story-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  grid-column: 2;
  justify-self: center;
}
.story-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9bfb2;
  cursor: pointer;
  transition: background .25s, width .25s, height .25s;
  flex-shrink: 0;
}
.story-gallery__dot.is-active {
  width: 12px;
  height: 12px;
  background: var(--color-brand, #776553);
}
.story-gallery__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: opacity .2s;
}
.story-gallery__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-brand, #776553);
  border-right: 2px solid var(--color-brand, #776553);
}
.story-gallery__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.story-gallery__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
.story-gallery__arrow:hover {
  opacity: .6;
}
.story-gallery__counter {
  min-width: 3.2em;
  text-align: center;
  line-height: 1;
}

/* Cuisine: PC時はテキストと「お料理へ」ボタンを横並び（画像と同幅1200px内） */
@media (min-width: 901px) {
  .section--cuisine > .section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1200px);
    justify-content: center;
  }
  .section--cuisine .heading,
  .section--cuisine .cuisine__images,
  .section--cuisine .cuisine__text,
  .section--cuisine .section__more {
    grid-column: 1;
    width: 100%;
  }
  .section--cuisine .cuisine__gallery {
    grid-column: 1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .section--cuisine .cuisine__text {
    grid-row: 3;
    margin-top: 56px;
    margin-bottom: 0;
    align-self: end;
  }
  .section--cuisine .section__more {
    grid-row: 3;
    margin-top: 56px;
    justify-content: flex-end;
    align-self: end;
  }
}

/* イベント情報: もっと見るボタンを右寄せ */
.section--event .section__more { justify-content: flex-end; }

@media (max-width: 900px) {
  .story-gallery__main img { height: 280px; }
}
@media (max-width: 600px) {
  .page-home .u-br-sp { display: block; }
  .section--cuisine .section__more { justify-content: center; margin-top: 32px; }
  .section--cuisine .cuisine__text { margin-top: 40px; }
}

/* 見出し: EN — JP を1行に並べるインライン型（モック準拠・下線付き） */
.heading--inline {
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 18px;
}
.heading--inline:has(.heading__en--xl) {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.heading--inline:has(.heading__en--xl) .heading__jp::before {
  content: none;
  margin: 0;
}
.heading--inline.heading--center { justify-content: center; }
.heading--inline .heading__jp::before {
  content: "—";
  margin: 0 14px;
  color: var(--color-accent-dk);
  font-weight: 400;
}
@media (max-width: 600px) {
  .heading--inline .heading__jp::before { margin: 0 8px; }
}

/* Cuisine: 見出しは中央、下線はページ左端から中央手前まで（添付画像どおり） */
.section--cuisine .cuisine__text {
  max-width: none;
  margin: 48px 0 0;
  text-align: left;
}
@media (min-width: 901px) {
  .section--cuisine .cuisine__text {
    margin-top: 56px;
    margin-bottom: 0;
  }
}
/* Cuisine・with Dogs・STORY・Flower は「画面端からの罫線」を適用（Bath/Room は装飾パネル内の見出し下線） */
.section--cuisine .heading,
.section--with-dogs .heading,
.section--story .heading,
.section--flower .heading,
.section--event .heading {
  border-bottom: none;   /* インライン共通の下線を無効化 */
  padding-bottom: 0;
  position: relative;
}
/* Bath / Room: 見出し下線はテキスト列内（モック準拠） */
.section--bath .heading--inline,
.section--room .heading--inline {
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 18px;
  margin-bottom: 28px;
}
.section--bath .heading::after,
.section--room .heading::after {
  content: none;
  display: none;
}
/* 見出しが左側のセクション → ページ左端からの罫線 */
.section--cuisine .heading::after,
.section--with-dogs .heading::after,
.section--story .heading::after,
.section--flower .heading::after,
.section--event .heading::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -50vw;    /* ページ左端まで伸ばす（セクションの overflow:hidden で左端clip） */
  width: 48vw;           /* 左端 → 中央手前 */
  height: 1px;
  background: var(--color-line);
}

/* ==========================================================================
   分割セクション（section__inner--split）の画像:
   PC画面の端までブリード + 左上だけ角丸 + テキスト列より横広め
   ========================================================================== */
.section__inner--split .section__image > img:not(.with-dogs__paw-deco):not(.brick-deco) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(40px, 6vw, 90px) 0 0 0;
}
/* Bath: 画像のみ右下を角丸 */
.section--bath .section__inner--split .section__image > img:not(.with-dogs__paw-deco):not(.brick-deco) {
  border-radius: 0 0 clamp(40px, 6vw, 90px) 0;
}
/* Room: 画像のみ左下を角丸（Bath の左右ミラー） */
.section--room .section__inner--split .section__image > img:not(.with-dogs__paw-deco):not(.brick-deco) {
  border-radius: 0 0 0 clamp(40px, 6vw, 90px);
}
@media (min-width: 901px) {
  .section--with-dogs,
  .section--plan-list { overflow: hidden; }
  .section--room,
  .section--bath { overflow: visible; }
  .section--dinner { overflow: visible; }

  /* プラン PLAN: 3枚チラ見せ（左右は画面端で見切れ） */
  .plan-slider {
    --plan-card-width: min(720px, calc(78vw - var(--plan-gap)));
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .plan-slider__viewport {
    scroll-padding-inline: calc((100vw - var(--plan-card-width)) / 2);
    padding-inline: calc((100vw - var(--plan-card-width)) / 2);
  }

  /* 矢印位置は JS でカード間ギャップ中央に配置（plan-slider 内 updateArrowPositions） */

  /* with Dogs: 肉球装飾を元サイズ感に（他画像へは影響させない） */
  .section--with-dogs .section__image--with-dogs {
    overflow: visible;
  }
  .section--with-dogs .section__image--with-dogs .with-dogs__paw-deco {
    width: min(900px, 100%);
    max-width: none;
    height: auto;
  }

  /* dinner: 外観写真をより横長に + レンガ装飾の見切れ防止 + テキスト下辺に画像下辺を揃える */
  .section--dinner .section__inner--split {
    align-items: end;
  }
  .section--dinner .section__image {
    aspect-ratio: 21 / 9;
    overflow: visible;
  }

  /* おすすめプラン・お花スライダー: 最大900pxで中央（Cuisineは inner グリッドで統一幅） */
  .section--plans .plan-grid--2,
  .section--flower .flower-slider {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  /* お知らせ: news-block は #news 側で max-width 指定 */
  /* イベント情報: 最大1300pxで中央 */
  .section--event .section__inner {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
  .section--news .news-list {
    max-width: none;
  }

  /* アクセスボックス */
  .access__box {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 右側画像 → 画面右端まで（inner の右パディング 5% を打ち消す） */
  .section--with-dogs .section__image,
  .section--dinner .section__image,
  .section--room .section__image {
    margin-right: -5cqw;
    width: calc(100% + 5cqw);
    box-sizing: border-box;
  }
  /* 左側画像（Bath） → 画面左端まで */
  .section--bath .section__image {
    margin-left: -5cqw;
    width: calc(100% + 5cqw);
    box-sizing: border-box;
  }
  .section--with-dogs .section__image { padding-left: 56px; }
  .section--dinner .section__image,
  .section--room .section__image { padding-left: 56px; }
  .section--bath .section__image { padding-right: 56px; }
}

/* ワイドバナー（wide-banner.jpg）を非表示 */
.wide-banner { display: none; }

/* ==========================================================================
   JP主体の中央見出し（おすすめプラン等）:
   日本語＝大 → 飾り罫 → 英語＝小（添付画像レイアウト）
   ========================================================================== */
.heading--center .heading__jp--xl {
  font-size: 38px;        /* 日本語を大きく */
  font-weight: 500;
}
.heading--center .heading__en {
  font-size: 15px;        /* 英語を小さく */
  font-style: italic;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
/* 日本語と英語の間に一本線 */
.heading--center .heading__en::before {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: var(--color-line);
}
@media (max-width: 600px) {
  .heading--center .heading__en::before { width: 160px; }
}

