/* ===========================
   2ページ目（SERVICES）専用 PC用CSS
   ※ bodyに .services-page が付いているときだけ有効
   =========================== */

/* ===========================
   SERVICES ページ専用ヒーロー
   =========================== */

.services-page .hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
}

/* 背景写真 */
.services-page .hero .hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* うっすら暗くするオーバーレイ */
.services-page .hero .hero-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

/* テキストを中央に置くパネル（新クラス） */
.services-page .hero .hero-sv-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

/* テキストブロック */
.services-page .hero .hero-sv-text {
  text-align: center;
  color: #fff;
}

/* 見出し */
.services-page .hero .hero-sv-title {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* サブコピー */
.services-page .hero .hero-sv-sub {
  margin: 0;
  font-family: "Shippori Mincho", serif; 
  font-weight: 500;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 2;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}


/* ---------------------------
   セクション共通
   --------------------------- */

.services-page .section {
  padding: clamp(72px, 8vw, 120px) 0;
}

.services-page .section .container {
  width: min(1080px, 90%);
  margin: 0 auto;
}

/* セクション見出し（共通） */
.services-page .sec-heading {
  font-family: "Shippori Mincho", serif;
  color: #1f4d3a;
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 24px;
  text-align: left;        /* 基本は左揃え */
}

/* 見出しの下線（左寄せ） */
.services-page .sec-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-top: 12px;
  background: rgba(25, 91, 82, 0.4);
}

/* 見出しの中の日本語サブタイトルがある場合用 */
.services-page .sec-heading .jp {
  margin-left: 8px;
  font-size: 0.9em;
}

/* リード文（共通） */
.services-page .lead {
  margin: 0 0 70px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #444;
  max-width: 720px;
}

/* ---------------------------
   Store セクション
   --------------------------- */

/* 背景色 */
.services-page .section--store {
  background: #F1EFEC;
}

/* Storeセクション見出し用の小さなラベル */
.services-page .section--store .sec-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  margin-bottom: 8px;

  border-radius: 999px;
  border: 1px solid rgba(47, 79, 60, 0.25);

  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2F4F3C;
}

/* 商品カード全体 */
.services-page .store-products {
  margin-top: 40px;
  margin-bottom: 80px;

}

/* 3カラムグリッド（PC） */
.services-page .store-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: flex-start;
}

/* 1つ1つのカード */
.services-page .product-card {
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

/* 丸写真サムネイル */
.services-page .product-card__thumb {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.services-page .product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 商品名 */
.services-page .product-card__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #2a3f37;
}

/* 商品説明 */
.services-page .product-card__desc {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* 「もっと見る」の代わりのちいさな飾りライン */
.section--store .product-card__decor {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  margin: 18px auto 0;
  background: #b9a774; /* ブログボタンっぽいベージュ */
}

/* STORE：インジケータ（PCでは非表示） */
.section--store .store-indicator {
  display: none;
}


/* 「くわしく見る」リンク
.services-page .product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #8c6a3f;
  border-bottom: 1px solid rgba(140, 106, 63, 0.35);
  padding-bottom: 2px;
}

.services-page .product-card__link::after {
  content: "›";
  font-size: 12px;
} */

/* 花アイコンの大きさ＆下の余白 */
.services-page .store-cta .spark img {
  display: block;
  width: 90px;              /* アイコンの大きさ。大きい/小さいはここだけ触ればOK */
  height: auto;
  margin: 0 auto 15px;       /* 下方向の余白 */
}

/* Store CTAまわり */
.services-page .store-cta{
  margin-top: 56px;
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.services-page .store-cta .cta-copy{
  margin: 0 0 24px;
}

/* 「Storeの商品をもっと見る」ボタン */
.services-page .store-cta .btn-line{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 6px 35px;
  min-width: 260px;

  border-radius: 999px;
  border: none;
  background: #e0b98a;           /* やさしいベージュ */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .1em;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* 右側の「▶▶▶」をCSSで追加 */
.services-page .store-cta .btn-line::after{
  content: "▶▶▶";
  font-size: 0.9em;
}

/* hover時ちょっとだけ濃く */
.services-page .store-cta .btn-line:hover{
  background: #d3aa72;
}

/* ==============================
   カウンセリングセッション
   ============================== */

/* 背景色 */
.section--counseling {
  background: #e4f2f3; /* Figmaに近い淡いブルー */
}

/* 導入テキスト：細めの枠だけで囲む */

.services-page .counseling-intro {
  max-width: 760px;
  margin: 32px auto 64px;
  padding: 28px 40px;

  border-radius: 0px;
  border: 1px solid rgba(129, 165, 170, 0.7);  /* 細めの枠だけ */
  background: transparent;                     /* 白ベタはナシ */
  box-shadow: none;

  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.2;
  color: #333;
}

/* 一行目だけ少し強調＆中央寄せ */
.services-page .counseling-intro-lead {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

/* 「こんなときにおすすめ！」と最後の一文も中央寄せ */
.services-page .counseling-intro > p {
  margin: 0 0 16px;
  text-align: center;
}

/* 箇条書きは左揃えで、枠の内側に少し寄せる */
.services-page .counseling-intro-list {
  margin: 8px 0 24px 0;
  padding: 0;
  list-style: none;
}

.services-page .counseling-intro-list li {
  position: relative;
  padding-left: 1.4em;
  margin: 4px 0;
}

.services-page .counseling-intro-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8em;
  color: #2f5f4b;
}

/* メニュー一覧全体 */
.services-page .counseling-menu {
  max-width: 920px;
  margin: 0 auto 72px;
  display: grid;
  gap: 24px;
}

/* 各メニューカード */
.services-page .counseling-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(129, 165, 170, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* アコーディオンのヘッダー部分 */
/* アコーディオンのヘッダー部分：横並びで＋を右端に固定 */
.services-page .counseling-summary {
  width: 100%;
  padding: 18px 24px;

  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;

  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;

  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #23443b;
}

/* タイトルは左側を広くとる */
.services-page .counseling-title {
  flex: 1;
  font-weight: 700;
}

/* 時間・料金はその右に並べる */
.services-page .counseling-meta,
.services-page .counseling-price {
  font-size: 13px;
  white-space: nowrap;
}

/* ＋／−アイコンを一番右端に寄せる */
.services-page .counseling-summary::after {
  content: "＋";
  margin-left: auto;          /* これで右端に押し出す */
  font-size: 16px;
}

/* 開いているときはマイナス表示 */
.services-page .counseling-summary[aria-expanded="true"]::after {
  content: "－";
}

/* タイトル・メタ情報 */
.services-page .counseling-title {
  font-weight: 700;
}

.services-page .counseling-meta,
.services-page .counseling-price {
  font-size: 13px;
  white-space: nowrap;
}

/* プラス／マイナスのアイコン（右端） */
.services-page .counseling-summary::after {
  content: "＋";
  justify-self: end;
  font-size: 16px;
}

/* 開いているときはマイナス表示 */
.services-page .counseling-summary[aria-expanded="true"]::after {
  content: "－";
}

/* 詳細部分 */
.services-page .counseling-detail {
  padding: 0 24px 20px;
  border-top: 1px dashed rgba(129, 165, 170, 0.6);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.1;
  color: #333;
}

/* hidden 属性のときは非表示（ブラウザのデフォルトを明示） */
.services-page .counseling-detail[hidden] {
  display: none;
}

.services-page .counseling-detail p {
  margin: 16px 0;
}

.services-page .counseling-subheading {
  margin: 18px 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #23443b;
}

.services-page .counseling-points {
  margin: 0 0 10px 1.2em;
  padding: 0;
}

/* カウンセリング：箇条書き（●だけ見せたい） */
.services-page .counseling-points {
  list-style: none;     /* デフォルトの「・」を消す */
  padding-left: 0;      /* 左のインデントも整える（必要なら） */
}


/* セクションの締め（花アイコン＋メッセージ） */
.services-page .counseling-footer {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.1;
  color: #333;
}

.services-page .counseling-footer .spark {
  margin: 0 auto 20px;
}

.services-page .counseling-footer .spark img {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto;
}

.services-page .counseling-message {
  margin: 0;
}


/* ------------------------------
   写真帯（上・下共通）
   ------------------------------ */

.services-page .section--counseling .counseling-band {
  width: 100%;
  margin: 40px 0;
  overflow: hidden;            /* 中身ズーム・ブラーがはみ出さないように */
}

/* 中身の横幅：全体の 3/4 ＝ 片側 1/4 が余白になる */
.services-page .section--counseling .counseling-band__inner {
  width: 75%;
}

/* 上：左にくっついて、右側に 1/4 くらい余白 */
.services-page .section--counseling
  .counseling-band--top .counseling-band__inner {
  margin-left: 0;
  margin-right: auto;
}

/* 上の写真：少し上側を見せたい例（下方向にずらす） */
.section--counseling .counseling-band--top img {
  object-position: center 65%;
}

/* 下の写真：少し下側を見せたい例（上方向にずらす） */
.section--counseling .counseling-band--bottom img {
  object-position: center 60%;
}

/* 下：右にくっついて、左側に 1/4 くらい余白 */
.services-page .section--counseling
  .counseling-band--bottom .counseling-band__inner {
  margin-left: auto;
  margin-right: 0;
}

/* 実際の画像：高さ細め＋「ピントが合う」アニメーション */
.services-page .section--counseling .counseling-band img {
  display: block;
  width: 100%;
  height: clamp(180px, 22vw, 260px);   /* 画面に応じて細い帯っぽく */
  object-fit: cover;

}

/* ------------------------------
   レイアウト＆スライドイン
   ------------------------------ */

@media screen and (min-width: 769px) {

  /* 上：左からスライドイン（位置はすでに左寄せ） */
  .services-page .section--counseling
    .counseling-band--top .counseling-band__inner {
    animation: counselingSlideInLeft 0.9s ease-out both;
  }

  /* 下：右からスライドイン（位置はすでに右寄せ） */
  .services-page .section--counseling
    .counseling-band--bottom .counseling-band__inner {
    animation: counselingSlideInRight 0.9s ease-out both;
  }
}

/* SP：どちらも中央寄せ＆少し幅広く */
@media screen and (max-width: 768px) {
  .services-page .section--counseling .counseling-band {
    margin: 32px 0;
  }

  .services-page .section--counseling .counseling-band__inner {
    width: 90%;
    margin-inline: auto;
  }
}

/* 1) 内側ラッパーの初期状態（まだ見えてないとき） */
.section--counseling .counseling-band__inner {
  width: 75%;
  opacity: 0;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* 上の帯：左にオフセットしておく */
.section--counseling .counseling-band--top .counseling-band__inner {
  margin-left: 0;
  margin-right: auto;
  transform: translateX(-40px);
}

/* 下の帯：右にオフセットしておく */
.section--counseling .counseling-band--bottom .counseling-band__inner {
  margin-left: auto;
  margin-right: 0;
  transform: translateX(40px);
}

/* 2) 画像の初期状態（寄り気味＋ボケ） */
.section--counseling .counseling-band img {
  display: block;
  width: 100%;
  height: clamp(180px, 22vw, 260px);
  object-fit: cover;

  transform: scale(1.12);   /* 少し寄ってる */
  filter: blur(2px);        /* ボケてる */
  transition:
    transform 0.8s ease-out,
    filter 0.8s ease-out;
}

/* 3) .is-visible が付いたときに「スライドイン＆ピント」 */
.section--counseling .counseling-band.is-visible .counseling-band__inner {
  opacity: 1;
  transform: translateX(0);
}

.section--counseling .counseling-band.is-visible img {
  transform: scale(1.0);
  filter: blur(0);
}

/* ==============================
   健康笑御飯・健康笑市
   ============================== */

/* 背景は他と同じまま・少し余白広め */
.section--meal {
  padding: clamp(80px, 9vw, 120px) 0;
  background: #F1EFEC;   /* 好きな淡い色にしてOK */
}

/* 見出しまわり */
.section--meal .meal-header {
  margin-bottom: 48px;
}

.section--meal .meal-lead {
  margin: 16px 0 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #555;
}

/* カード全体 */
.section--meal .meal-cards {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.section--meal .meal-card {
  flex: 1;
  border: 1px solid rgba(149, 165, 148, 0.7); /* 緑がかった細い線 */
  background: transparent;                    /* 塗りなし */
  padding: 24px 28px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #333;
}
/* 見出し＋ラベルを横並びにする箱 */
.section--meal .meal-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section--meal .meal-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f7e4c8;   /* 目立つベージュ系の色 */
  color: #a2682a;
  border: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.section--meal .meal-card-title {
  margin: 0;   /* ここだけ変わってると思ってOK */
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: #1f4d3a;
}

/* テキスト */
.section--meal .meal-card-text {
  margin: 0 0 10px;
}

.section--meal .meal-note {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

/* ==============================
   健康笑御飯：写真ギャラリー（PC）
   ============================== */

.section--meal .meal-gallery {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
}

.section--meal .meal-gallery-track {
  display: flex;
  gap: 0;
  will-change: transform;  /* JSでtranslateXする前提 */
}

.section--meal .meal-gallery-item {
  flex: 0 0 calc(100% / 3); /* 画面に常に3枚見える */
  margin: 0;                 /* figure の余白を消す */
}

.section--meal .meal-gallery-item img {
  display: block;
  width: 100%;
  height: clamp(140px, 20vw, 260px); /* 今のままの高さ感 */
  object-fit: cover;
}
/* ==============================
   健康笑御飯：インジケーター（PC）
   ============================== */

.section--meal .meal-gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.section--meal .meal-gallery-indicators .indicator {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: #d6d3c8;  /* グレーの細いライン */
}

.section--meal .meal-gallery-indicators .indicator.is-active {
  background: #b9a774;  /* 少し濃いベージュ（お好みで変えてOK） */
}
/* PCではインジケータを非表示 */
.section--meal .meal-gallery-indicators {
  display: none;
}



/* ==============================
   アート型ワークショップ
   ============================== */

.services-page .section--art {
  background: #e4f2f3; /* カウンセリングと同じ淡いブルー */
}

/* タイトル下：左にカード、右に写真 */
.services-page .section--art .art-layout {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 56px;
}

/* 画面が狭くなったときだけ縦並び（PCメインだけど保険で） */
@media screen and (max-width: 1024px) {
  .services-page .section--art .art-layout {
    flex-direction: column;
    gap: 24px;
  }
}

/* 説明カード（細い枠だけ） */
.services-page .section--art .art-card {
  flex: 1.2;
  border: 1px solid rgba(129, 165, 170, 0.7);
  padding: 28px 32px;
  background: transparent;
  box-shadow: none;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.2;
  color: #333;
}

.services-page .section--art .art-card-lead {
  margin: 0 0 18px;
  text-align: center;
  font-weight: 700;
}

.services-page .section--art .art-card p {
  margin: 0 0 14px;
}

/* 右側の写真 */
.services-page .section--art .art-photo {
  flex: 1;
  max-width: 420px;
  display: flex; 
  position: relative;  /* ★紙を重ねるために必要（書いてなければ追加） */
}
/* アート写真：スクロールでふわっと出る（PC/SP共通） */
.section--art .art-photo {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
}

.section--art .art-photo.is-animated {
  animation: art-fade-in 0.9s ease-out forwards;
}

.services-page .section--art .art-photo::before,
.services-page .section--art .art-photo::after {
  content: "";
  position: absolute;
  inset: -10px -6px;                     /* コンテナいっぱいに紙を敷く */
  border-radius: 0px;
  background: #f5f2eb;          /* 淡いベージュ */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: -1;
}

.services-page .section--art .art-photo::before {
  transform: rotate(-2deg);
}

.services-page .section--art .art-photo::after {
  transform: rotate(2deg);
  background: #eef7f6;          /* ちょい色違い */
}

.services-page .section--art .art-photo img {
  display: block;
  width: 90%;
  height: auto;
  max-height: 360px;     /* ★追加：大きくなりすぎ防止 */
  object-fit: cover;  /* カードと高さを揃えやすく */
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@keyframes art-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* アコーディオン（パステルアート）のブロック */
.services-page .section--art .art-accordion {
  margin-top: 16px;
}

/* アート用アコーディオン内の各項目の間隔だけ少し確保 */
.services-page .section--art .art-accordion .counseling-item {
  margin-bottom: 16px;
}
/* ==============================
   アート型ワークショップ：最後のメッセージ
   ============================== */

.services-page .section--art .art-message {
  margin: 72px auto 40px;
  text-align: center;
  max-width: 720px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: #333;
}

.services-page .section--art .art-message__icon {
  margin-bottom: 16px;
}

.services-page .section--art .art-message__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.services-page .section--art .art-message__title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 16px;
}

.services-page .section--art .art-message__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

/* ===========================
   タウンスクーリング
   =========================== */

.services-page .section--town {
  background: #F1EFEC;
}

/* 見出しの下の文章 */
.services-page .section--town .town-lead {
  margin: 0 0 40px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.1;
  color: #333;
}

/* レイアウト */
.services-page .section--town .town-layout {
  width: 100%;
  margin: 0 auto 64px;
  display: flex;
  gap: 150px;
  align-items: center;
}

/* 左：たまご／葉っぱ型フレーム */
.services-page .section--town .town-leaf {
  flex: 1;
  max-width: 420px;
}

.services-page .section--town .town-leaf-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(129, 165, 170, 0.7);
  border-radius: 58% 42% 60% 40% / 78% 76% 42% 44%; /* ゆるい葉っぱ／たまご型 */
  overflow: hidden;
  background: #F7F2EA;
}

.services-page .section--town .town-leaf-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 全体入れたい写真は contain に変えてOK */
}

/* 右：テキストカード（高さ固定なし） */
.services-page .section--town .town-card {
  flex: 1.2;
  border: 1px solid rgba(129, 165, 170, 0.7);
  background: transparent;
  box-shadow: none;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.0;
  color: #333;
  padding: 20px 28px 14px;
  box-sizing: border-box;
  text-align: center;
}

.services-page .section--town .town-card-title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 16px;
}

.services-page .section--town .town-card p {
  margin: 0 0 6px;
}

.services-page .section--town .town-card-note {
  margin-top: 4px;
  font-size: 13px;
}

/* 下のメッセージ */
.services-page .section--town .town-message {
  margin: 72px auto 40px;
  text-align: center;
  max-width: 720px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: #333;
}

.services-page .section--town .town-message__icon {
  margin-bottom: 16px;
}

.services-page .section--town .town-message__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.services-page .section--town .town-message__text {
  margin: 0;
  font-size: 14px;
  line-height: 2.1;
}

/* ===========================
   食と暮らしのコミュニティ
   =========================== */

.services-page .section--food {
  background: #E4F2F3; /* アート型ワークショップと同じ淡いブルー */
}

/* 上の文章ブロック */
.services-page .section--food .food-intro {
  max-width: 760px;
  margin: 60px auto 70px;
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.1;
  color: #333;
}

.services-page .section--food .food-lead {
  margin-bottom: 24px;
  font-weight: 700;
}

/* フィールド写真 */
.services-page .section--food .food-photo {
  max-width: 960px;
  margin: 0 auto 56px;
}

.services-page .section--food .food-photo__figure {
  margin: 0;
}

/* 田んぼ写真コンテナ */
.services-page .section--food .food-photo {
  max-width: 960px;
  margin: 0 auto 56px;
}

/* figure 自体は普通のブロックのまま */
.services-page .section--food .food-photo__figure {
  margin: 0;
}

/* ★ 写真用ラッパーだけを“枠”にする */
.services-page .section--food .food-photo__image {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  aspect-ratio: 16 / 9;   /* 枠の縦横比を固定 */
}

/* 中の画像だけをズーム／ピント演出 */
.services-page .section--food .food-photo__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(2px);
  transition:
    transform 0.9s ease-out,
    filter 0.9s ease-out;
}

/* スクロールインで中だけ引いてピントが合う */
.services-page .section--food .food-photo.is-visible .food-photo__image img {
  transform: scale(1.0);
  filter: blur(0);
}


.services-page .section--food .food-photo__caption {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
  text-align: right;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

/* 下のプログラムカード2枚 */
.services-page .section--food .food-programs {
  max-width: 960px;
  margin: 0 auto 64px;
  display: flex;
  gap: 32px;
}

.services-page .section--food .food-card {
  flex: 1;
  background: none;
  border-radius: 0px;
  padding: 32px 32px 24px;
  border: 1px solid rgba(129, 165, 170, 0.6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.0;
  color: #333;
}

.services-page .section--food .food-card__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.services-page .section--food .food-card p {
  margin: 0 0 6px;
}

.services-page .section--food .food-card__body {
  margin-top: 18px;
}

/* 必要なら、最後の段落だけ余白ゼロにしたいとき */
.services-page .section--food .food-card p:last-child {
  margin-bottom: 0;
}

/* 食と暮らし：締めメッセージ */
.services-page .section--food .food-message {
  margin: 72px auto 56px;
  text-align: center;
  max-width: 720px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: #333;
}

.services-page .section--food .food-message__icon {
  margin-bottom: 16px;
}

.services-page .section--food .food-message__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.services-page .section--food .food-message__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
}

.services-page .section--food .food-message__text {
  margin: 0;
  font-size: 14px;
  line-height: 2.1;
}

/* ===========================
   レンタルスペース
   =========================== */

.services-page .section--rental {
  background: #F7F3EC; /* ほんのり生成り */
}

/* 上の文章ブロック */
.services-page .section--rental .rental-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.1;
  color: #333;
}

.services-page .section--rental .rental-lead {
  margin-bottom: 24px;
  font-weight: 700;
}

/* 共通レイアウト：写真＋テキスト横並び */
.services-page .section--rental .rental-block {
  max-width: 960px;
  margin: 0 auto 56px;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* 下の料金ブロックだけ左右を入れ替える（テキスト左／写真右） */
.services-page .section--rental .rental-block--price {
  flex-direction: row-reverse;
}

/* 写真側 */
.services-page .section--rental .rental-photo {
  flex: 1.3;
}

.services-page .section--rental .rental-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* テキスト側 */
.services-page .section--rental .rental-text {
  flex: 0.7;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #333;
  display: flex;                 /* ★ 追加 */
  flex-direction: column;        /* ★ 中の<p>を縦に並べる */
  justify-content: center;       /* ★ 縦方向まんなか寄せ */
}

/* 上：部屋名（深緑・明朝・大きめ） */
.services-page .section--rental .rental-text--rooms {
  text-align: center;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 22px;
  color: #245b4c;   /* 深緑 */
}

.services-page .section--rental .rental-text--rooms p {
  margin: 0 0 28px;
}

/* 下：料金テキスト */
.services-page .section--rental .rental-text--price p {
  margin: 0 0 10px;
}

.services-page .section--rental .rental-text--price .rental-note {
  margin-top: 16px;
  font-size: 12px;
}

/* こんな方におすすめ */
.services-page .section--rental .rental-message {
  margin: 72px auto 72px;
  text-align: center;
  max-width: 720px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: #333;
}

.services-page .section--rental .rental-message__icon {
  margin-bottom: 16px;
}

.services-page .section--rental .rental-message__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.services-page .section--rental .rental-message__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
}

.services-page .section--rental .rental-message__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 2.1;
}

.services-page .section--rental .rental-message__notice {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 2.0;
  font-weight: 700;
  color: #1d6a57;
}

/* 上のブロックは下マージンなし */
.services-page .section--rental .rental-block--rooms {
  margin-bottom: 0;
}

/* 下のブロックを少しだけ上に引き上げる */
.services-page .section--rental .rental-block--price {
  flex-direction: row-reverse;
  margin-top: 10px;  /* ★ 写真がくっつくように微調整。きつかったら -24 くらいでもOK */
}

/* 写真のアニメーション初期状態 */
.services-page .section--rental .rental-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;

  opacity: 0;
  transform: translateX(0) scale(1.05);
  transition:
    transform 0.9s ease-out,
    opacity 0.9s ease-out;
}

/* 左から入ってくる写真 */
.services-page .section--rental .rental-photo--left img {
  transform: translateX(-40px) scale(1.05);
}

/* 右から入ってくる写真 */
.services-page .section--rental .rental-photo--right img {
  transform: translateX(40px) scale(1.05);
}

/* 画面に入ったら、位置を元に戻して少しズームアウト＋フェードイン */
.services-page .section--rental .rental-photo.is-visible img {
  opacity: 1;
  transform: translateX(0) scale(1.0);
}

/* ===========================
   クロージングメッセージ
   =========================== */

.services-page .section--closing {
  padding: 0;
  background: #f5f1ec; /* ページと馴染む色 */
}

/* ★ ここが「写真の枠」：サイズを固定する */
.services-page .section--closing .closing-visual {
  /* max-width: 1200px;
  margin: 0 auto; */
  position: relative;
  aspect-ratio: 21 / 9;  /* 枠の縦横比。好みで 16 / 9 などにしてOK */
  overflow: hidden;      /* 枠からはみ出たぶんは隠す */
}

/* ★ 中の画像だけを動かす（枠は変わらない） */
.services-page .section--closing .closing-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 最初は少し寄り＋ほんのりボケ */
  transform: scale(1.04);
  filter: blur(1.5px);
  transition:
    transform 1.2s ease-out,
    filter 1.2s ease-out;
}

/* 画面に入ったら、ピントが合って少しだけ引く */
.services-page .section--closing .closing-visual.is-visible img {
  transform: scale(1.0);
  filter: blur(0);
}

/* メッセージ共通 */
.services-page .section--closing .closing-message {
  position: absolute;
  color: #fff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* 左上テキスト位置 */
.services-page .section--closing .closing-message--left {
  top: 26%;
  left: 10%;
}

/* 右下テキスト位置 */
.services-page .section--closing .closing-message--right {
  bottom: 12%;
  right: 8%;
  text-align: right;
}

/* ===================================
   カード内「最初の一文」共通スタイル
   =================================== */

/* カウンセリング導入の一文
   アートカードのリード
   食と暮らし（健康笑御飯／発酵ワーク）のタイトル
   タウンスクーリングのカードタイトル
   レンタルスペースの導入文  */
.services-page .counseling-intro-lead,
.services-page .section--art .art-card-lead,
.section--meal .meal-card-title,
.services-page .section--town .town-card-title,
.services-page .section--food .food-card__title,
.services-page .section--rental .rental-lead,
.services-page .section--food .food-lead {
  font-family: "Shippori Mincho", "Noto Serif JP", serif; /* しっぽり明朝系に統一 */
  font-weight: 600;            /* ガチ太ではなく、少し柔らかめ */
  font-size: 18px;             /* 周りの本文より一段大きく */
  line-height: 1.9;
  letter-spacing: 0.06em;      /* ほんの少し字間をあける */
  color: #1f4d3a;
}

/* タイトル：一文字ずつ上からふわっと */
.js-section-title span {
  display: inline-block;
  opacity: 0;
}

/* 画面に入ったとき付くクラス */
.js-section-title.is-visible span {
  animation: title-drop 0.55s ease-out forwards;
  animation-delay: calc(var(--char-index) * 0.06s); /* 間隔：0.06秒ごと */
}

@keyframes title-drop {
  from {
    opacity: 0;
    transform: translateY(-0.4em);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

