/*
Theme Name: Hidamari Group
Theme URI: https://example.com/hidamari
Author: Hidamari Group
Description: 架空の社会福祉法人「ひだまりグループ」こども園・保育園のためのWordPressテーマ。温かなオートミール地に山吹色とたんぽぽの綿毛モチーフ。写真を主役にした、やわらかく親しみのあるデザイン。トップ／理念／ものがたり／食育の各ページを内蔵し、全テキスト・全写真をカスタマイザーで編集できます。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: hidamari
*/

/* ============================================================
   0. デザイントークン
   ============================================================ */
:root {
  /* 紙の地・面 */
  --paper:      #f4eede;   /* メイン背景：温かいオートミール */
  --paper-2:    #fbf6ea;   /* やや明るい面 */
  --cream:      #fffdf6;   /* カード・明るい面 */
  --white:      #ffffff;

  /* 文字 */
  --ink:        #463b2e;   /* 主文字：温かみのある焦げ茶 */
  --ink-soft:   #7c7062;   /* 副次文字 */
  --ink-faint:  #a99d8a;   /* 補足・キャプション */

  /* たんぽぽ（山吹）アクセント */
  --gold:       #f3b400;
  --gold-deep:  #d99e00;
  --gold-soft:  #fbe7a6;
  --gold-pale:  #fdf3d2;

  /* 葉・緑（バッジ・自然） */
  --leaf:       #708a3a;
  --leaf-deep:  #54692a;
  --leaf-soft:  #dfe6c4;

  /* 空・水（フッター風景） */
  --sky:        #a6d6e1;
  --sky-deep:   #74bdd1;
  --sky-pale:   #d9eef2;
  --field:      #f6d34c;

  --line:       rgba(70,59,46,.12);
  --line-soft:  rgba(70,59,46,.07);

  /* 書体：全体に Noto Sans JP */
  --jp-round: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --jp-body:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --en:       "Noto Sans JP", sans-serif;

  --maxw: 1120px;
  --maxw-narrow: 760px;
  --radius: 22px;
  --radius-lg: 34px;

  --shadow-soft: 0 18px 50px -28px rgba(70,59,46,.40);
  --shadow-card: 0 22px 60px -34px rgba(70,59,46,.55);
}

/* ============================================================
   1. リセット / ベース
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--jp-body);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.95;
  font-size: 15px;
  letter-spacing: .03em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.5; margin: 0; }
p { margin: 0 0 1.4em; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* ============================================================
   2. レイアウト
   ============================================================ */
.l-container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.l-container--narrow { max-width: var(--maxw-narrow); }
.l-section { padding-block: clamp(64px, 9vw, 128px); position: relative; }

.en-label {
  font-family: var(--en);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-size: 12px;
  display: inline-block;
}
.jp-head {
  font-family: var(--jp-round);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .06em;
  line-height: 1.62;
}

/* 綿毛モチーフ（装飾） */
.seed {
  position: absolute;
  pointer-events: none;
  opacity: .8;
  animation: floaty 9s ease-in-out infinite;
  z-index: 2;
}
.seed--2 { animation-duration: 12s; animation-delay: -3s; }
.seed--3 { animation-duration: 14s; animation-delay: -6s; }
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-16px) rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) {
  .seed { animation: none; }
  html { scroll-behavior: auto; }
}

/* スクロール出現 */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   3. ヘッダー / ナビ
   ============================================================ */
.site-header {
  position: absolute; top: 0; left: 0; width: 100%; z-index: 50;
  padding: 22px clamp(20px, 4vw, 44px);
  display: flex; align-items: flex-start; justify-content: space-between;
}
.site-header--solid {
  position: sticky;
  background: rgba(244,238,222,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; line-height: 1.2; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__name { font-family: var(--jp-round); font-weight: 700; font-size: 17px; letter-spacing: .08em; color: var(--ink); }
.brand__name small { display: block; font-family: var(--en); font-weight: 400; font-size: 9.5px; letter-spacing: .28em; color: var(--gold-deep); margin-top: 2px; }

.gnav { display: flex; align-items: center; gap: 6px; }
.gnav a {
  font-family: var(--jp-round);
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  padding: 9px 15px; border-radius: 999px; color: var(--ink);
  white-space: nowrap;
}
.gnav a:hover { background: var(--white); color: var(--gold-deep); }
.gnav__pill {
  background: var(--white); border-radius: 999px;
  padding: 6px; display: flex; gap: 2px; box-shadow: var(--shadow-soft);
}

.nav-toggle { display: none; }

/* モバイルナビ */
@media (max-width: 960px) {
  .gnav__pill { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; justify-content: center;
    width: 48px; height: 48px; border: none; border-radius: 50%;
    background: var(--white); box-shadow: var(--shadow-soft); padding: 0;
  }
  .nav-toggle span { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: .3s; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .gnav {
    position: fixed; top:0; right:0; bottom:0; left:0; z-index: 49;
    background: var(--paper-2);
    flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    opacity: 0; visibility: hidden; transition: .35s;
  }
  body.nav-open .gnav { opacity: 1; visibility: visible; }
  .gnav a { font-size: 19px; padding: 14px 28px; }
}

/* ============================================================
   4. ボタン
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--jp-round); font-weight: 500; font-size: 14px;
  padding: 14px 30px; border-radius: 999px; border: none;
  background: var(--gold); color: #fff; letter-spacing: .06em;
  box-shadow: 0 14px 30px -14px var(--gold-deep);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); background: var(--gold-deep); box-shadow: 0 18px 34px -14px var(--gold-deep); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--white); border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }

.txt-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--jp-round); font-size: 14px; font-weight: 500; color: var(--ink);
}
.txt-link .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; color: var(--gold-deep); transition: .25s; }
.txt-link:hover { color: var(--gold-deep); }
.txt-link:hover .dot { background: var(--gold); color: #fff; transform: translateX(3px); }

/* ============================================================
   5. ヒーロー（トップ）
   ============================================================ */
.hero {
  position: relative; min-height: 96vh; display: flex; align-items: flex-end;
  background: var(--paper);
  padding-bottom: 0;
}
.hero__media {
  position: absolute; top:0; right:0; bottom:0; left:0; overflow: hidden;
  border-bottom-left-radius: 0;
}
.hero__media img, .hero__media .ph { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; top:0; right:0; bottom:0; left:0;
  background: linear-gradient(180deg, rgba(244,238,222,.15) 0%, rgba(244,238,222,0) 30%, rgba(244,238,222,.0) 70%, rgba(244,238,222,.25) 100%);
}
.hero__copy {
  position: absolute; z-index: 5;
  left: clamp(18px, 5vw, 72px); bottom: clamp(36px, 8vh, 96px);
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--jp-round); font-weight: 900;
  font-size: clamp(26px, 4.2vw, 48px);
  line-height: 1.5; letter-spacing: .14em; color: #fff;
  background: rgba(54,43,30,.82);
  padding: clamp(20px,3vw,38px) clamp(12px,1.5vw,20px);
  border-radius: 16px; max-height: 78%;
}
.hero__copy em { font-style: normal; color: var(--gold); }

/* ============================================================
   6. イントロ（つながって、ひろがって）
   ============================================================ */
.intro { padding-block: clamp(72px, 10vw, 150px); position: relative; }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.intro__lead h2 { font-family: var(--jp-round); font-size: clamp(23px, 3.4vw, 34px); line-height: 1.6; margin-bottom: 1em; }
.intro__lead p { color: var(--ink-soft); }
.intro__links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; }

/* 子どもが遊ぶイラスト（黄色ブロブ） */
.blob-scene { position: relative; }
.blob-scene svg { width: 100%; height: auto; filter: drop-shadow(0 24px 44px rgba(70,59,46,.16)); }

/* ============================================================
   7. 写真コラージュ（散りばめ）
   ============================================================ */
.collage { position: relative; padding-block: clamp(20px, 4vw, 48px); }
.collage__head { max-width: 560px; margin-bottom: 50px; }
.collage__head h2 { font-family: var(--jp-round); font-size: clamp(22px, 3.2vw, 32px); line-height: 1.55; margin-bottom: .7em; }
.collage__head p { color: var(--ink-soft); }
.collage__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 26px);
}
.collage__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.collage__item .ph, .collage__item img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.collage__item.tall .ph, .collage__item.tall img { aspect-ratio: 3/4; }
.c-a { grid-column: 1 / 5; margin-top: 40px; }
.c-b { grid-column: 5 / 9; }
.c-c { grid-column: 9 / 13; margin-top: 70px; }
.c-d { grid-column: 2 / 7; }
.c-e { grid-column: 7 / 12; margin-top: -30px; }

/* ============================================================
   8. Our support カード
   ============================================================ */
.support { background: var(--paper-2); }
.section-head { text-align: left; margin-bottom: 50px; }
.section-head .en-label { margin-bottom: 8px; }
.section-head h2 { font-family: var(--jp-round); font-size: clamp(24px, 3.6vw, 38px); }
.section-head--center { text-align: center; }
.section-head--center .section-head__sub { margin-inline: auto; }
.section-head__sub { color: var(--ink-soft); max-width: 600px; margin-top: 14px; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.card__media .ph, .card__media img { aspect-ratio: 16/11; width: 100%; object-fit: cover; }
.card__body { padding: 22px 22px 26px; }
.card__tag { font-family: var(--en); font-size: 11px; letter-spacing: .18em; color: var(--gold-deep); }
.card__title { font-family: var(--jp-round); font-weight: 700; font-size: 18px; margin: 6px 0 8px; }
.card__count { font-size: 12px; color: var(--ink-faint); }
.card__count b { color: var(--leaf); font-size: 15px; font-family: var(--jp-round); }

/* ============================================================
   9. 事業所一覧テーブル
   ============================================================ */
.facilities { margin-top: 60px; background: var(--cream); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow-soft); }
.facilities__caption { font-family: var(--jp-round); font-size: 15px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.facilities__caption::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); }
.f-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.f-table th { text-align: left; font-family: var(--jp-round); color: var(--leaf-deep); font-weight: 700; padding: 12px 14px; border-bottom: 2px solid var(--leaf-soft); white-space: nowrap; }
.f-table td { padding: 16px 14px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.f-table tr:last-child td { border-bottom: none; }
.f-table .f-name { font-family: var(--jp-round); font-weight: 700; color: var(--ink); }
.f-table .f-name a { color: var(--ink); border-bottom: 1px solid var(--gold-soft); }
.f-table .f-name a:hover { color: var(--gold-deep); }
.f-table .f-meta { color: var(--ink-soft); font-size: 12.5px; }
.facilities__cta { text-align: center; margin-top: 26px; }

/* ============================================================
   10. Recruit
   ============================================================ */
.recruit__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.recruit__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.recruit__photos .ph, .recruit__photos img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-soft); }
.recruit__photos .ph:nth-child(2), .recruit__photos img:nth-child(2) { margin-top: 36px; }
.recruit__text h2 { font-family: var(--jp-round); font-size: clamp(24px, 3.4vw, 36px); margin: 6px 0 18px; }
.recruit__lead { font-family: var(--jp-round); font-size: 17px; color: var(--ink); line-height: 1.9; margin-bottom: 18px; }
.recruit__text p { color: var(--ink-soft); }
.recruit__links { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }

/* ============================================================
   11. News
   ============================================================ */
.news__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; }
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .3s; }
.news-card:hover { transform: translateY(-5px); }
.news-card__media .ph, .news-card__media img { aspect-ratio: 16/10; width: 100%; object-fit: cover; background: var(--gold-pale); }
.news-card__body { padding: 18px 20px 24px; }
.news-card__date { font-family: var(--en); font-size: 12px; color: var(--ink-faint); letter-spacing: .08em; }
.news-card__cat { display: inline-block; font-size: 11px; font-family: var(--jp-round); color: var(--leaf-deep); background: var(--leaf-soft); padding: 2px 10px; border-radius: 999px; margin-left: 8px; }
.news-card__title { font-family: var(--jp-round); font-weight: 700; font-size: 15.5px; line-height: 1.6; margin-top: 10px; color: var(--ink); }

/* ============================================================
   12. ページ共通：内部ページ・ヒーロー帯
   ============================================================ */
.page-hero { padding-top: 130px; padding-bottom: clamp(40px, 6vw, 80px); text-align: center; position: relative; }
.page-hero .en-label { font-size: 13px; }
.page-hero h1 { font-family: var(--jp-round); font-size: clamp(28px, 4.4vw, 46px); margin-top: 12px; letter-spacing: .08em; }
.page-hero .lead { color: var(--ink-soft); max-width: 640px; margin: 18px auto 0; }

/* オーガニック写真（ブロブ角丸） */
.organic { border-radius: 48% 52% 56% 44% / 52% 46% 54% 48%; overflow: hidden; box-shadow: var(--shadow-card); }
.organic .ph, .organic img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }

.bleed-photo { width: 100%; }
.bleed-photo .ph, .bleed-photo img { width: 100%; aspect-ratio: 21/8; object-fit: cover; }

/* 緑の三角バッジ */
.leaf-badge { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.leaf-badge__tri { width: 78px; height: 70px; }
.leaf-badge span { font-family: var(--en); font-size: 11px; letter-spacing: .14em; color: var(--leaf-deep); }
.leaf-badge small { font-family: var(--jp-round); font-size: 11px; color: var(--ink-soft); }

/* 理念：二観点 */
.viewpoints { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.viewpoint { background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.viewpoint .ph, .viewpoint img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.viewpoint__body { padding: 24px 26px 28px; }
.viewpoint__body h3 { font-family: var(--jp-round); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.viewpoint__body h3 b { color: var(--gold-deep); }
.viewpoint__body p { color: var(--ink-soft); font-size: 13.5px; margin: 0; }

/* 三原則 */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.principle { text-align: center; }
.principle h4 { font-family: var(--jp-round); font-weight: 700; font-size: 19px; color: var(--leaf-deep); margin-bottom: 10px; }
.principle p { color: var(--ink-soft); font-size: 13.5px; }
.principle__num { font-family: var(--en); font-size: 12px; letter-spacing: .2em; color: var(--gold-deep); }

/* 縦書き引用ブロック */
.v-quote { display: flex; justify-content: center; gap: 4px; writing-mode: vertical-rl; font-family: var(--jp-round); font-size: 16px; line-height: 2.1; letter-spacing: .14em; color: var(--ink); height: clamp(320px, 40vw, 460px); margin-inline: auto; }
.v-quote .accent { color: var(--gold-deep); }

/* ============================================================
   13. ものがたり（年表）
   ============================================================ */
.timeline { position: relative; max-width: 920px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: repeating-linear-gradient(var(--gold-soft) 0 8px, transparent 8px 16px); transform: translateX(-50%); }
.tl-item { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: clamp(50px, 7vw, 90px); position: relative; }
.tl-item:nth-child(even) .tl-item__media { order: 2; }
.tl-item__media .ph, .tl-item__media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }
.tl-item__year { font-family: var(--en); font-size: clamp(34px, 5vw, 56px); color: var(--gold); line-height: 1; }
.tl-item__title { font-family: var(--jp-round); font-weight: 700; font-size: clamp(19px, 2.6vw, 24px); margin: 10px 0 14px; }
.tl-item__title b { color: var(--gold-deep); }
.tl-item__text { color: var(--ink-soft); font-size: 14px; }
.tl-item__dot { position: absolute; left: 50%; top: 38px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); transform: translateX(-50%); box-shadow: 0 0 0 6px var(--paper); }

.info-box { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-soft); max-width: 760px; margin: 60px auto 0; }
.info-box h3 { font-family: var(--jp-round); font-weight: 700; text-align: center; font-size: 18px; margin-bottom: 18px; }
.info-box dl { margin: 0; display: grid; gap: 14px; }
.info-box dt { font-family: var(--jp-round); font-weight: 700; color: var(--leaf-deep); }
.info-box dd { margin: 4px 0 0; color: var(--ink-soft); font-size: 13.5px; }

/* 黄色の三本柱ボックス */
.pillars { background: var(--gold-pale); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 50px); }
.pillars__title { text-align: center; font-family: var(--jp-round); font-weight: 700; font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; }
.pillars__sub { text-align: center; color: var(--ink-soft); font-size: 14px; margin-bottom: 36px; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: var(--cream); border-radius: var(--radius); padding: 26px 24px; text-align: center; }
.pillar__label { font-family: var(--jp-round); font-size: 12px; color: var(--ink-soft); }
.pillar__name { font-family: var(--jp-round); font-weight: 700; font-size: 21px; color: var(--gold-deep); margin: 6px 0 12px; }
.pillar p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   14. 食育
   ============================================================ */
.food-step { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-bottom: clamp(54px, 7vw, 96px); }
.food-step:nth-child(even) .food-step__media { order: 2; }
.food-step__media .ph, .food-step__media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }
.food-step__num { font-family: var(--en); font-size: 13px; letter-spacing: .18em; color: var(--gold-deep); }
.food-step__title { font-family: var(--jp-round); font-weight: 700; font-size: clamp(20px, 2.8vw, 27px); margin: 8px 0 16px; }
.food-step__text { color: var(--ink-soft); font-size: 14px; }

.food-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 50px 0; }
.food-pillar { background: var(--cream); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-soft); }
.food-pillar .icon { width: 54px; height: 54px; margin: 0 auto 14px; }
.food-pillar h4 { font-family: var(--jp-round); font-weight: 700; font-size: 16px; }
.food-pillar p { font-size: 13px; color: var(--ink-soft); margin: 8px 0 0; }

/* ============================================================
   15. メッセージ / 引用帯
   ============================================================ */
.message-band { background: var(--paper-2); }
.message-band__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.message-band__photo .organic { width: 100%; }
.message-band__text h2 { font-family: var(--jp-round); font-weight: 700; font-size: clamp(22px, 3vw, 30px); line-height: 1.6; margin-bottom: 22px; }
.message-band__text p { color: var(--ink-soft); font-size: 14px; }

/* ============================================================
   16. 写真プレースホルダ
   ============================================================ */
.ph {
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(120% 120% at 30% 20%, var(--gold-pale) 0%, transparent 60%),
    linear-gradient(135deg, var(--leaf-soft) 0%, var(--sky-pale) 100%);
  color: var(--ink-soft);
}
.ph span { font-family: var(--jp-round); font-size: 11px; letter-spacing: .12em; padding: 6px 12px; background: rgba(255,255,255,.6); border-radius: 999px; }
.ph svg { width: 40px; height: 40px; opacity: .5; margin-bottom: 8px; }

/* ============================================================
   17. フッター（風景イラスト）
   ============================================================ */
.site-footer { position: relative; background: var(--paper); margin-top: clamp(60px, 9vw, 120px); }
.footer-inner { padding: clamp(40px, 6vw, 72px) 0 0; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; padding-bottom: 40px; }
.footer-brand { max-width: 360px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand address { font-style: normal; color: var(--ink-soft); font-size: 13px; line-height: 1.9; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-nav a { font-family: var(--jp-round); font-size: 13px; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.footer-nav a::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.footer-nav a:hover { color: var(--gold-deep); }

.landscape { width: 100%; display: block; margin-top: 10px; }
.footer-base { text-align: center; padding: 18px; font-family: var(--en); font-size: 11px; letter-spacing: .1em; color: var(--ink-faint); background: var(--sky); }

/* 戻るリンク */
.c-back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--jp-round); font-size: 13px; color: var(--ink-soft); }
.c-back-link:hover { color: var(--gold-deep); }

/* 投稿本文 */
.entry { max-width: var(--maxw-narrow); margin-inline: auto; padding-block: clamp(40px,6vw,80px); }
.entry h1 { font-family: var(--jp-round); font-size: clamp(24px,3.4vw,34px); margin-bottom: .6em; }
.entry .meta { color: var(--ink-faint); font-family: var(--en); font-size: 13px; margin-bottom: 30px; }
.entry-content { line-height: 2.1; }
.entry-content h2 { font-family: var(--jp-round); font-size: 22px; margin: 1.8em 0 .6em; padding-left: 14px; border-left: 5px solid var(--gold); }
.entry-content h3 { font-family: var(--jp-round); font-size: 18px; margin: 1.6em 0 .5em; }
.entry-content img { border-radius: var(--radius); margin: 1.4em 0; }
.entry-content a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-soft); }

/* ============================================================
   18. レスポンシブ
   ============================================================ */
@media (max-width: 920px) {
  .intro__grid, .recruit__grid, .message-band__grid, .food-step, .tl-item { grid-template-columns: 1fr; }
  .tl-item:nth-child(even) .tl-item__media,
  .food-step:nth-child(even) .food-step__media { order: 0; }
  .timeline::before { left: 18px; }
  .tl-item__dot { left: 18px; }
  .cards, .news__grid, .pillars__grid, .principles, .food-pillars { grid-template-columns: 1fr 1fr; }
  .blob-scene { max-width: 460px; margin-inline: auto; }
  .recruit__photos .ph:nth-child(2), .recruit__photos img:nth-child(2) { margin-top: 0; }
}
@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .l-container { padding-inline: 18px; }
  .cards, .news__grid, .viewpoints, .pillars__grid, .principles, .food-pillars, .recruit__photos { grid-template-columns: 1fr; }
  .collage__grid { display: flex; flex-direction: column; }
  .collage__item { margin: 0 !important; }
  .hero { min-height: 84vh; }
  .hero__copy { margin: 0 0 6vh 6vw; }
  .news__head { flex-direction: column; align-items: flex-start; }
  .f-table, .f-table tbody, .f-table tr, .f-table td, .f-table th { display: block; width: 100%; }
  .f-table thead { display: none; }
  .f-table tr { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .f-table td { padding: 3px 0; border: none; }
}
