@charset "UTF-8";

/* ============================================================
   グリーンBIZ交流会  green-biz.com
   共通スタイルシート
   ------------------------------------------------------------
   色や文字サイズを変えたいときは、下の :root の値を書き換えると
   サイト全体にまとめて反映されます。
   ============================================================ */

:root {
  /* --- 色 --- */
  --paper:        #f4f5e8;  /* 背景のクリーム色（ロゴの背景と同じ） */
  --paper-deep:   #eaecd9;  /* 一段濃いクリーム */
  --card:         #fcfdf6;  /* カードの白 */
  --ink:          #1b2417;  /* 本文の文字色 */
  --ink-soft:     #55604e;  /* 補足文の文字色 */
  --forest:       #1e4a22;  /* ロゴの深緑（メインカラー） */
  --moss:         #3f7539;  /* 中間の緑 */
  --sage:         #a8bfa0;  /* 淡い緑 */
  --ochre:        #c08430;  /* アクセントの黄土色 */
  --ochre-soft:   #e8c98a;
  --line:         rgba(30, 74, 34, 0.16);

  /* --- 文字 --- */
  --font-display: "Shippori Mincho B1", "Yu Mincho", "游明朝", serif;
  --font-body:    "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  /* --- レイアウト --- */
  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 4px;
}

/* ============================================================
   ベース
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ページ内リンク（#付きのリンク）で飛んだとき、
   画面上部に固定されているヘッダーの下に見出しが隠れないようにする */
[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

/* 紙の質感（ごく薄いノイズ）を全体に重ねる */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0;
}

p { margin: 0 0 1.4em; }

::selection { background: var(--forest); color: var(--paper); }

/* ============================================================
   共通パーツ
   ============================================================ */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

.wrap--narrow { max-width: 780px; }

.section { padding-block: clamp(64px, 11vw, 132px); position: relative; }
.section--tint { background: var(--paper-deep); }
.section--forest { background: var(--forest); color: var(--paper); }
.section--forest h2, .section--forest h3 { color: var(--paper); }

/* セクション見出しの上に入る「01 — 理念」のようなラベル */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--moss);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 90px;
}
.section--forest .eyebrow { color: var(--ochre-soft); }
.section--forest .eyebrow::after { background: rgba(244, 245, 232, 0.28); }

.section-title {
  font-size: clamp(26px, 4.2vw, 42px);
  margin-bottom: 28px;
}

/* 見出しや短い文章で、最後の1〜2文字だけが次の行に落ちるのを防ぐ。
   （ブラウザが各行の長さをそろえて折り返してくれる指定） */
.section-title,
.page-head__title,
.cta__title,
.cta .lead {
  text-wrap: balance;
}

.lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--forest .lead { color: rgba(244, 245, 232, 0.82); }

/* 見出しは中央そろえ、本文は左そろえのまま中央に配置する箱
   （長い文章は左そろえのほうが読みやすいため）

   注意：箱全体を text-align:center にすると、下に置いたカードの中の
   文章まで中央そろえになってしまう。そのため中央にするのは
   ラベルと見出しだけに限定している。 */
.center-block .eyebrow { justify-content: center; }
.center-block .eyebrow::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 64px;
}
.center-block .eyebrow::after { max-width: 64px; }
.center-block .section-title { text-align: center; }

/* 緑背景のセクションでは、ラベルの横線を明るい色に */
.section--forest .center-block .eyebrow::before,
.section--forest .center-block .eyebrow::after { background: rgba(244, 245, 232, 0.28); }

/* 本文は左そろえ。幅を抑えて、左右に余白が残るようにする。
   rem で指定しているので、文字サイズが違う要素どうしでも幅がそろう。 */
.center-block > .lead,
.center-block > .problem-list,
.center-block > p:not(.eyebrow) {
  text-align: left;
  max-width: 34rem;
  margin-inline: auto;
}

/* 見出しの下に置くボタンは中央に。
   上の「本文を左そろえ」の指定に負けないよう、あとに書いて幅の制限も外す。 */
.center-block > .center-action,
.center-block > p.center-action {
  text-align: center;
  max-width: none;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border: 1px solid var(--forest);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), background-color .3s, color .3s, box-shadow .3s;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn--solid { background: var(--forest); color: var(--paper); }
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -12px rgba(30,74,34,.7); }
.btn--ghost { background: transparent; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--paper); transform: translateY(-3px); }
.btn--light { background: var(--paper); color: var(--forest); border-color: var(--paper); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -12px rgba(0,0,0,.5); }

/* カード */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 38px);
}

/* ============================================================
   ヘッダー
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 232, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 40px; height: 40px; }
.brand__name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--moss);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 13px;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
  border-radius: 100px;
  transition: color .25s, background-color .25s;
}
.nav a:hover { color: var(--forest); background: rgba(30,74,34,.07); }
/* 現在開いているページのリンクを強調する。
   ただし「入会のご案内」ボタン（濃い緑の塗り）には適用しない。
   適用してしまうと文字まで濃い緑になり、読めなくなるため。 */
.nav a[aria-current="page"]:not(.btn) { color: var(--forest); font-weight: 700; }
.nav .btn { padding: 11px 22px; margin-left: 10px; }
/* ↓ メニューの文字色（黒）に負けて読めなくなるのを防ぐ */
.nav .btn--solid,
.nav .btn--solid:hover { color: var(--paper); background: var(--forest); }
.nav .btn--solid:hover { box-shadow: 0 12px 26px -12px rgba(30,74,34,.7); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 30px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s, transform .28s, visibility .28s;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 15px; }
  .nav .btn { margin: 20px 0 0; justify-content: center; border-radius: 100px; border-bottom: 1px solid var(--forest); }
}

/* ============================================================
   ヒーロー（トップページ上部）
   全面写真の上に文章を重ねるタイプ。
   写真が明るいので、暗く覆って白文字にするのではなく、
   左からクリーム色のベールをかけて緑の文字を読ませている。
   ============================================================ */

.hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: min(calc(100svh - 72px), 820px);
  padding-block: clamp(56px, 8vw, 104px) clamp(74px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}

/* 背景いっぱいの写真 */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: heroZoom 14s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* 文字を読ませるためのクリーム色のベール */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(96deg,
      rgba(244,245,232,.97) 0%,
      rgba(244,245,232,.94) 26%,
      rgba(244,245,232,.72) 44%,
      rgba(244,245,232,.24) 62%,
      rgba(244,245,232,.02) 80%,
      rgba(244,245,232,0) 100%),
    linear-gradient(to bottom,
      rgba(244,245,232,.35) 0%,
      rgba(244,245,232,0) 22%,
      rgba(244,245,232,0) 72%,
      rgba(234,236,217,.4) 100%);
}

.hero__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--moss);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 30px;
  background: rgba(252, 253, 246, .8);
}

.hero__title {
  font-size: clamp(30px, 5.4vw, 66px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
/* 見出しの一部に引く下線。文字そのものに背景として敷いているので、
   万一折り返しても線が伸びすぎることがない。 */
.hero__title .mark {
  display: inline;
  color: var(--forest);
  background-image: linear-gradient(
    to bottom,
    transparent 0 66%,
    var(--ochre-soft) 66% 94%,
    transparent 94% 100%
  );
  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: underline 1s cubic-bezier(.2,.7,.3,1) .75s forwards;
}
@keyframes underline { to { background-size: 100% 100%; } }

.hero__sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--ink-soft);
  max-width: 30em;
  margin-bottom: 34px;
  text-shadow: 0 1px 12px rgba(244,245,232,.9);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* 下部のスクロール案内 */
.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: max(var(--gutter), calc((100% - var(--wrap)) / 2 + var(--gutter)));
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: .34em;
  color: var(--moss);
  text-decoration: none;
}
.hero__scroll::after {
  content: "";
  width: 58px;
  height: 1px;
  background: currentColor;
  animation: scrollline 2.4s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: scaleX(.15); transform-origin: left; }
  45%  { transform: scaleX(1);   transform-origin: left; }
  55%  { transform: scaleX(1);   transform-origin: right; }
  100% { transform: scaleX(.15); transform-origin: right; }
}

/* 読み込み時に順番に現れる */
.hero__tag, .hero__title, .hero__sub, .hero__actions {
  animation: heroIn .9s cubic-bezier(.2,.7,.3,1) both;
}
.hero__tag     { animation-delay: .10s; }
.hero__title   { animation-delay: .22s; }
.hero__sub     { animation-delay: .38s; }
.hero__actions { animation-delay: .50s; }
.hero__scroll  { animation: heroIn .9s cubic-bezier(.2,.7,.3,1) .8s both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* --- タブレット以下：ベールを縦方向にして文字を読みやすくする --- */
@media (max-width: 900px) {
  /* スマホでは画面いっぱいに横からベールをかけると写真が白っぽくなるので、
     上半分に写真を見せて、下半分に文字を置く形にする */
  .hero {
    align-content: end;
    min-height: min(calc(100svh - 72px), 720px);
    padding-block: clamp(150px, 44vw, 280px) clamp(40px, 8vw, 64px);
  }
  .hero__bg { object-position: 66% 40%; }
  .hero__veil {
    background:
      linear-gradient(to bottom,
        rgba(244,245,232,0)   0%,
        rgba(244,245,232,.12) 24%,
        rgba(244,245,232,.80) 44%,
        rgba(244,245,232,.96) 62%,
        rgba(244,245,232,1)   100%);
  }
  .hero__sub { text-shadow: none; }
  .hero__scroll { display: none; }
}

/* ============================================================
   写真まわり
   ============================================================ */

/* 写真＋キャプション */
.figure { margin: 0; }
.figure img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 22px 44px -28px rgba(27,36,23,.75);
}
.figure figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--ink-soft);
}
/* 見出しを中央そろえにしたセクションで、写真を横幅いっぱいにせず中央に置く */
.figure--narrow { max-width: 820px; margin-inline: auto; }

/* 沿革（文章と写真を左右交互に並べる） */
.history { display: grid; gap: clamp(40px, 6vw, 76px); margin-top: clamp(48px, 7vw, 88px); }
.history .figure img { aspect-ratio: 4 / 3; object-fit: cover; }
.history .doc h3 { margin-top: 0; }
.history .doc p:last-child { margin-bottom: 0; }
.section--forest .figure figcaption { color: rgba(244,245,232,.6); }

/* 文章と写真を左右に並べる。--rev で写真を左に */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.split--rev .split__text { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__text { order: 0; }
}

/* 3枚並びの写真帯 */
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-band figure { margin: 0; position: relative; overflow: hidden; border-radius: 2px; }
.photo-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.3,1);
}
.photo-band figure:hover img { transform: scale(1.06); }
.photo-band figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(to top, rgba(20,30,18,.78), transparent);
}
@media (max-width: 720px) {
  .photo-band { grid-template-columns: 1fr; }
  .photo-band img { aspect-ratio: 16 / 9; }
}

/* カード上部の写真 */
.meet__img {
  margin: calc(clamp(24px, 3.4vw, 38px) * -1) calc(clamp(24px, 3.4vw, 38px) * -1) clamp(22px, 3vw, 30px);
  overflow: hidden;
}
.meet__img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* 全幅の写真（帯） */
.photo-strip {
  position: relative;
  height: clamp(220px, 34vw, 400px);
  overflow: hidden;
}
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip__text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(20,30,18,.42), rgba(20,30,18,.62));
}
.photo-strip__text p {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(19px, 3.4vw, 34px);
  line-height: 1.8;
  letter-spacing: .06em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

/* ============================================================
   「よくある不満」→「グリーンBIZの答え」
   ============================================================ */

.problem-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.problem-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255,255,255,.5);
  border-left: 2px solid var(--sage);
  font-size: 14.5px;
  line-height: 1.8;
}
.problem-list li::before { content: "✕"; color: #b06a6a; font-size: 13px; line-height: 1.9; }

/* 5つの仕組み。横一列（5列）に並べる */
.answer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}
/* 画面が狭くなったら段階的に折り返す */
@media (max-width: 1060px) { .answer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .answer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px)  { .answer-grid { grid-template-columns: 1fr; } }

.answer {
  background: rgba(244,245,232,.07);
  border: 1px solid rgba(244,245,232,.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), background-color .35s;
}
.answer:hover { transform: translateY(-5px); background: rgba(244,245,232,.13); }
.answer__no {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: var(--ochre-soft);
  letter-spacing: .2em;
  display: block;
  margin-bottom: 10px;
}
.answer h3 { font-size: 15.5px; line-height: 1.6; margin-bottom: 10px; }
.answer p { font-size: 13px; line-height: 1.8; color: rgba(244,245,232,.76); margin: 0; }

/* ============================================================
   三大指針
   ============================================================ */

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 40px) clamp(22px, 3vw, 34px) clamp(30px, 3.6vw, 42px);
  overflow: hidden;
}
.principle::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--sage));
}
.principle__kanji {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 46px);
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 6px;
}
.principle__en {
  font-size: 10.5px;
  letter-spacing: .28em;
  color: var(--sage);
  display: block;
  margin-bottom: 20px;
}
.principle p { font-size: 14px; line-height: 1.95; color: var(--ink-soft); margin: 0 0 1em; }
.principle__quote {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--forest);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin: 0;
}
/* トップページ用の短い版。説明文がないぶん、
   引用の上の点線を消して余白を整える。くわしい説明は about.html にある */
.principles--brief .principle__en { margin-bottom: 14px; }
.principles--brief .principle__quote {
  border-top: none;
  padding-top: 0;
  line-height: 1.9;
}

@media (max-width: 800px) { .principles { grid-template-columns: 1fr; } }

/* ============================================================
   スケジュール
   ============================================================ */

.meet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.meet { overflow: hidden; }
@media (max-width: 800px) { .meet-grid { grid-template-columns: 1fr; } }

.meet__badge {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .2em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.meet--day .meet__badge { background: var(--ochre-soft); color: #6b4a12; }
.meet--night .meet__badge { background: var(--forest); color: var(--paper); }
.meet__title { font-size: clamp(20px, 2.6vw, 25px); margin-bottom: 6px; }
.meet__when { font-size: 13px; letter-spacing: .1em; color: var(--moss); margin-bottom: 20px; }

.flow { list-style: none; margin: 0; padding: 0; }
.flow li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.flow li:last-child { border-bottom: 0; }
.flow__time {
  flex: none;
  width: 62px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--forest);
  letter-spacing: .04em;
}

/* 年間日程テーブル */
.cal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cal li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cal__date { font-family: var(--font-display); font-size: 17px; color: var(--forest); }
.cal__type { font-size: 11px; letter-spacing: .14em; padding: 2px 9px; border-radius: 100px; }
.cal__type--day { background: var(--ochre-soft); color: #6b4a12; }
.cal__type--night { background: var(--forest); color: var(--paper); }
.cal__time { font-size: 12px; color: var(--ink-soft); margin-left: auto; }

/* ============================================================
   会員紹介
   ============================================================ */

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

.member {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px 26px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
}
.member:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -26px rgba(27,36,23,.6); }

.member__photo {
  width: 108px; height: 108px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
  background: var(--paper-deep);
  display: grid;
  place-items: center;
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__initial {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--sage);
}
.member__name { font-size: 19px; letter-spacing: .12em; margin-bottom: 4px; }
.member__org { font-size: 12.5px; color: var(--moss); letter-spacing: .04em; margin-bottom: 14px; min-height: 2.2em; line-height: 1.6; }
.member__cats { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.member__cats li {
  font-size: 11.5px;
  letter-spacing: .04em;
  background: var(--paper-deep);
  color: var(--ink-soft);
  border-radius: 100px;
  padding: 4px 11px;
  line-height: 1.6;
}

/* ============================================================
   寄付
   ============================================================ */

.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.donation {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--moss);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.donation__when { font-size: 12px; letter-spacing: .16em; color: var(--ochre); margin-bottom: 8px; }
.donation__to { font-size: 16.5px; font-family: var(--font-display); line-height: 1.6; }

/* 写真つきのカード。写真は上部いっぱいに置き、文字は下に。
   カードの高さがそろうよう、写真の比率を 16:9 に固定して切り抜いている。 */
.donation--photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.donation__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-deep);
}
.donation__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.donation--photo:hover .donation__img img { transform: scale(1.04); }
.donation__body { padding: 20px 24px 24px; }

@media (prefers-reduced-motion: reduce) {
  .donation__img img { transition: none; }
  .donation--photo:hover .donation__img img { transform: none; }
}

/* ============================================================
   FAQ（開閉する）
   ============================================================ */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-size: 15.5px;
  font-weight: 500;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--forest);
  border-bottom: 1.5px solid var(--forest);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__body { padding: 0 0 24px; font-size: 14.5px; color: var(--ink-soft); }
.faq__body p:last-child { margin-bottom: 0; }

/* ============================================================
   会則など、長い文章のページ
   ============================================================ */

.doc h3 {
  font-size: 19px;
  margin: 44px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--forest);
}
.doc h3:first-child { margin-top: 0; }
.doc ol, .doc ul { padding-left: 1.4em; margin: 0 0 1em; }
.doc li { margin-bottom: .5em; font-size: 15px; }

/* ============================================================
   CTA（入会のご案内）
   ============================================================ */

.cta { text-align: center; }
.cta__title { font-size: clamp(24px, 4vw, 40px); margin-bottom: 20px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ============================================================
   フッター
   ============================================================ */

.site-footer {
  background: var(--forest);
  color: rgba(244,245,232,.8);
  padding-block: clamp(48px, 7vw, 76px) 30px;
  font-size: 13.5px;
}
.site-footer a { color: rgba(244,245,232,.8); text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244,245,232,.2);
}
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h4 { font-size: 13px; letter-spacing: .18em; color: var(--ochre-soft); margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.site-footer__brand img { width: 46px; }
.site-footer__brand strong { font-family: var(--font-display); font-size: 17px; color: var(--paper); letter-spacing: .08em; }
.site-footer__copy { padding-top: 24px; font-size: 12px; letter-spacing: .06em; color: rgba(244,245,232,.55); }

/* ============================================================
   ページ上部の帯（下層ページ）
   ============================================================ */

.page-head {
  padding-block: clamp(48px, 7vw, 84px) clamp(40px, 6vw, 64px);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,191,160,.55), transparent 68%);
}
.page-head__title { font-size: clamp(28px, 5vw, 46px); margin-bottom: 12px; }
.page-head__en { font-size: 11.5px; letter-spacing: .3em; color: var(--moss); margin-bottom: 14px; }
.breadcrumb { font-size: 12px; color: var(--ink-soft); letter-spacing: .06em; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--forest); }

/* ============================================================
   スクロールに合わせてふわっと表示
   （動きを減らす設定の人には出さない）
   ============================================================ */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 印刷時 */
@media print {
  .site-header, .site-footer, .hero__visual { display: none; }
  body { background: #fff; }
  body::before { display: none; }
}

/* ============================================================
   お問い合わせフォーム（contact.php）
   ============================================================ */

.form { max-width: 34rem; margin-inline: auto; text-align: left; }
.form__row { margin-bottom: 22px; }

.form__label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
/* 「必須」のしるし */
.form__req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--card);
  background: var(--ochre);
  border-radius: 2px;
  vertical-align: 1px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.form__textarea { min-height: 190px; resize: vertical; line-height: 1.9; }
/* プルダウンだと分かるよう、右端に下向きの矢印を描く */
.form__select {
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%233f7539' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(63, 117, 57, .18);
}

.form__help { margin-top: 7px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.8; }
.form__actions { margin-top: 34px; text-align: center; }
.form__actions .btn { min-width: 220px; }

/* 迷惑メール対策のおとり入力欄。人には見えない位置に置く */
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 入力に不備があったときの案内 */
.form-alert {
  max-width: 34rem;
  margin: 0 auto 32px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ochre);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.form-alert__title { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.form-alert ul { margin: 0; padding-left: 1.2em; }
.form-alert li { font-size: 14px; line-height: 1.9; color: var(--ink-soft); }

/* 送信完了 */
.form-done { max-width: 34rem; margin-inline: auto; text-align: center; }
.form-done__mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 30px;
  line-height: 62px;
}
.form-done .lead { text-align: left; }
