/* ==========================================================================
   style.css — 一般社団法人りぶらふ 公開サイト共通スタイル
   - モバイルファースト（768px / 1024px）
   - 色は CSS 変数（:root = ライト / html[data-theme="dark"] = ダーク）
   - 文字サイズは rem（html[data-fontsize] で 92% / 100% / 118%）
   - font-weight は 400 / 500 / 600 のみ
   ========================================================================== */

/* ---------- 1. 変数 ---------- */
:root {
  --bg: #FAF7F2;
  --bg-alt: #EFF5F4;
  --card-bg: #FFFFFF;
  --text: #1F3A3D;
  --text-muted: #5B7477;
  --border: #E4DFD5;
  --teal: #1F8F94;
  --teal-tint: #DCEFEF;
  --pink-text: #C2668E;
  --pink-tint: #FBEAF1;
  --pink: #8A4A63;
  --lime-tint: #F1F5DC;
  --lime: #5E6B22;
  --footer-bg: #F1ECE3;
  --header-bg: #FFFFFF;
  --required: #B4577D;
  --on-teal: #FFFFFF;          /* ティール塗りの上の文字 */
  --switch-off: #D9D2C4;       /* トグルスイッチ（オフ） */
  --map-filter: none;
  --illust-paper: transparent;   /* 挿絵の台紙（ライトは不要） */
  --focus: #1F8F94;

  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
  --font-serif: 'Zen Old Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  /* 文字サイズ（スマホ） */
  --fs-hero: 1.5rem;       /* 24 */
  --fs-h1: 1.75rem;        /* 28 */
  --fs-h2: 1.5rem;         /* 24 */
  --fs-h3: 1.125rem;       /* 18 */
  --fs-body: 0.96875rem;   /* 15.5 */
  --fs-small: 0.8125rem;   /* 13 */
  --fs-xs: 0.75rem;        /* 12 */

  /* 余白 */
  --pad-x: 16px;
  --sec-pad-y: 56px;
  --max: 1280px;
  --max-narrow: 1000px;
  --header-h: 63px;
  --radius-card: 20px;
}

@media (min-width: 768px) {
  :root {
    --fs-hero: 2rem;         /* 32 */
    --fs-h1: 2.125rem;       /* 34 */
    --fs-h2: 1.75rem;        /* 28 */
    --fs-h3: 1.1875rem;      /* 19 */
    --fs-body: 1rem;         /* 16 */
    --pad-x: 24px;
  }
}
@media (min-width: 1024px) {
  :root {
    --fs-hero: 2.5rem;       /* 40 */
    --fs-h1: 2.5rem;         /* 40 */
    --fs-h2: 2rem;           /* 32 */
    --fs-h3: 1.25rem;        /* 20 */
    --pad-x: 32px;
    --sec-pad-y: 88px;
    --header-h: 74px;
  }
}

html[data-theme="dark"] {
  --bg: #132325;
  --bg-alt: #182F2E;
  --card-bg: #1C3234;
  --text: #EDF3F2;
  --text-muted: #9FB5B6;
  --border: #2C4649;
  --teal: #5FC7CC;
  --teal-tint: #213C3E;
  --pink-text: #F2B7D2;
  --pink-tint: #3A2A33;
  --pink: #F2B7D2;
  --lime-tint: #2E3320;
  --lime: #D7E36B;
  --footer-bg: #0F1E20;
  --header-bg: #122224;
  --required: #F2B7D2;
  --on-teal: #10221F;
  --switch-off: #3A5558;
  --map-filter: invert(0.9) hue-rotate(180deg) saturate(0.6);
  --illust-paper: #F3EDE3;       /* 線画が沈まないよう紙色を敷く */
  --focus: #5FC7CC;
  color-scheme: dark;
}

/* 文字サイズ切替 */
html { font-size: 100%; }
html[data-fontsize="sm"] { font-size: 92%; }
html[data-fontsize="md"] { font-size: 100%; }
html[data-fontsize="lg"] { font-size: 118%; }

/* ---------- 2. リセット・基本 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.9;
  text-wrap: wrap;   /* 本文に pretty を使うと Safari で段落の途中の行まで早く折り返される。pretty は見出しだけ */
  overflow-wrap: anywhere;
}
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; line-height: 1.5; text-wrap: pretty; }
p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { opacity: 0.75; }
button { font: inherit; color: inherit; }
iframe { border: 0; }
strong, b { font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero :focus-visible, .banner :focus-visible { outline-color: #FFFFFF; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -100px; z-index: 100;
  background: var(--teal); color: var(--on-teal);
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 8px; }

.container {
  width: 100%;
  max-width: calc(var(--max) + var(--pad-x) * 2);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: calc(var(--max-narrow) + var(--pad-x) * 2); }

.section { padding-block: var(--sec-pad-y); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: 36px var(--sec-pad-y); }
@media (min-width: 1024px) { .section--tight { padding-block: 56px var(--sec-pad-y); } }

[id] { scroll-margin-top: calc(var(--header-h) + 64px); }

/* セクション見出し */
.eyebrow {
  color: var(--teal);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
  margin: 0 0 6px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0 0 28px;
}
.lead { color: var(--text-muted); line-height: 2.1; }
.muted { color: var(--text-muted); }
.note { color: var(--text-muted); font-size: var(--fs-small); }

/* ---------- 3. ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--text);
}
.btn:hover { opacity: 0.8; }
.btn--primary { background: var(--teal); color: var(--on-teal); padding: 12px 26px; }
.btn--outline { border-color: var(--text); color: var(--text); }
.btn--outline .btn__arrow { color: var(--teal); }
.btn--block { display: flex; width: 100%; padding: 14px; }
.btn--sm { min-height: 40px; padding: 6px 16px; font-size: var(--fs-small); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }

/* ---------- 4. タグ ---------- */
.tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.6;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--pink-tint);
  color: var(--pink);
}
.tag--pink { background: var(--pink-tint); color: var(--pink); }
.tag--lime { background: var(--lime-tint); color: var(--lime); }
.tag--teal { background: var(--teal-tint); color: var(--teal); }

/* ---------- 5. ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 12px;
  padding: 12px var(--pad-x);
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 50px; width: auto; }
.site-header__tools { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.gnav { order: 3; flex-basis: 100%; }
.gnav__list { display: flex; flex-direction: column; }
.gnav__link {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.gnav__link[aria-current="page"] { color: var(--teal); font-weight: 600; }
.gnav__ext { font-size: 0.8em; margin-left: 2px; }
.gnav__cta {
  display: block;
  background: var(--teal);
  color: var(--on-teal);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  margin-top: 14px;
  white-space: nowrap;
}
.gnav__cta[aria-current="page"] { box-shadow: 0 0 0 2px var(--header-bg), 0 0 0 4px var(--teal); }
/* JS が動くときは開閉式（1024px 未満） */
.js .gnav { display: none; }
.js .site-header.is-open .gnav {
  display: block;
  flex-basis: calc(100% + var(--pad-x) * 2);
  margin-inline: calc(var(--pad-x) * -1);
  padding: 8px var(--pad-x) 20px;
  margin-top: 12px;
  margin-bottom: -12px;
  border-top: 1px solid var(--border);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.no-js .gnav { padding-top: 8px; }

/* 表示の設定（文字サイズ・ダークモード）
   モバイル（1024px 未満）: メニューの中だけに出す / PC: ヘッダーだけに出す
   JS が動かないとボタンが効かないので、そのときは出さない */
.prefs { display: flex; align-items: center; gap: 10px; }
.prefs--menu { display: none; }
.no-js .prefs { display: none; }
.js .prefs--header { display: none; }
.js .site-header.is-open .prefs--menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.prefs__title { color: var(--text-muted); font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.08em; margin: 0 0 4px; }
.prefs__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 48px; }
.prefs__label { color: var(--text); font-size: 1rem; font-weight: 500; }
.prefs--menu .theme-toggle__label--light { display: inline; }
html[data-theme="dark"] .prefs--menu .theme-toggle__label--light { display: none; }
html[data-theme="dark"] .prefs--menu .theme-toggle__label--dark { display: inline; }

/* 文字サイズ（小中大） */
.fontsize {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.fontsize__btn {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1;
}
.fontsize__btn::after {  /* タップ領域 44×44 */
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%; top: 50%;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
}
.fontsize__btn[data-fontsize-set="sm"] { font-size: 11px; }
.fontsize__btn[data-fontsize-set="md"] { font-size: 13px; }
.fontsize__btn[data-fontsize-set="lg"] { font-size: 15px; }
.fontsize__btn[aria-pressed="true"] { background: var(--teal); color: var(--on-teal); }

/* ライト/ダーク切替 */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.theme-toggle__label { display: none; font-size: 12px; font-weight: 600; color: var(--text); }
@media (min-width: 480px) { .theme-toggle__label--light { display: inline; } }
@media (min-width: 480px) {
  html[data-theme="dark"] .theme-toggle__label--light { display: none; }
  html[data-theme="dark"] .theme-toggle__label--dark { display: inline; }
}
.theme-toggle__track {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: var(--switch-off);
  transition: background 0.2s;
  flex-shrink: 0;
}
.theme-toggle__knob {
  position: absolute;
  top: 2px; left: 0;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: translateX(2px);
  transition: transform 0.2s;
}
html[data-theme="dark"] .theme-toggle__track { background: var(--teal); }
html[data-theme="dark"] .theme-toggle__knob { transform: translateX(20px); }

/* ハンバーガー */
.menu-btn {
  position: relative;
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.js .menu-btn { display: flex; }
.menu-btn::after { content: ""; position: absolute; inset: -3px; }
.menu-btn__bar { display: block; width: 18px; height: 2px; background: var(--text); transition: transform 0.2s, opacity 0.2s; }
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 1024px) {
  .site-header__inner { flex-wrap: nowrap; gap: 16px; }
  .site-header__logo img { height: 58px; }
  .site-header__tools { gap: 14px; }
  .gnav, .js .gnav { order: 0; flex-basis: auto; display: flex; align-items: center; gap: 28px; }
  .js .site-header.is-open .gnav { margin: 0; padding: 0; border: 0; max-height: none; overflow: visible; }
  .gnav__list { flex-direction: row; align-items: center; gap: 28px; flex-wrap: wrap; }
  .gnav__link { font-size: 0.9375rem; padding: 10px 0; border: 0; }
  .gnav__cta { font-size: 0.9375rem; padding: 9px 20px; border-radius: 999px; margin: 0; }
  .js .menu-btn, .menu-btn { display: none; }
  .js .prefs--header { display: flex; }
  .js .prefs--menu, .js .site-header.is-open .prefs--menu { display: none; }
  .site-header__tools .prefs { gap: 14px; }
  .no-js .gnav { padding-top: 0; }
}
/* 狭めのPC（1024〜1279px）: 1行に収まるよう間を詰める */
@media (min-width: 1024px) and (max-width: 1279px) {
  .site-header__inner, .site-header__tools, .site-header__tools .prefs { gap: 10px; }
  .gnav, .js .gnav, .gnav__list { gap: 16px; }
  .gnav__list { flex-wrap: nowrap; }
  .gnav__cta { padding: 9px 14px; }
  html .site-header__tools .theme-toggle__label { display: none; }
}

/* ---------- 6. パンくず ---------- */
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; }
.breadcrumb li { font-size: var(--fs-small); font-weight: 500; line-height: 1.6; }
.breadcrumb li + li::before { content: "/"; margin: 0 8px; opacity: 0.7; }
.breadcrumb a { color: inherit; }
.breadcrumb--top { background: var(--bg); padding-block: 10px; color: var(--text-muted); }
.breadcrumb--top li { font-size: var(--fs-xs); }

/* ---------- 7. 下層ページのバナー ---------- */
.banner {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
  color: #FFFFFF;
  background: #1F3A3D;
}
.banner__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 40, 42, 0.75) 0%, rgba(20, 40, 42, 0.45) 60%, rgba(20, 40, 42, 0.2) 100%);
}
.banner__inner { position: relative; z-index: 1; }
.banner .breadcrumb { color: #FFFFFF; opacity: 0.9; margin: 0 0 12px; }
.banner__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) { .banner { padding: 80px 0 48px; } }
@media (min-width: 1024px) { .banner { padding: 100px 0 60px; } }

/* セクション内ナビ（sticky） */
.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.subnav__list { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: thin; }
.subnav__link {
  display: block;
  color: var(--text-muted);
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 12px 0;
  min-height: 44px;
  white-space: nowrap;
}
.subnav__link:hover, .subnav__link.is-active { color: var(--teal); }

/* ---------- 8. トップ：ヒーロー ---------- */
.hero {
  position: relative;
  height: 70vh;
  min-height: 360px;
  overflow: hidden;
  background: #1F3A3D;
}
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 42, 0.05) 0%, rgba(20, 40, 42, 0.15) 50%, rgba(20, 40, 42, 0.55) 100%);
  pointer-events: none;
}
.hero__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding-bottom: 36px;
}
.hero__copy {
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  max-width: 22em;
  min-height: 2.9em;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.6s ease;
}
.hero__copy.is-fading { opacity: 0; }
.hero__controls { display: flex; align-items: center; gap: 8px; margin-top: 22px; }
.hero__dot {
  position: relative;
  width: 10px; height: 6px;
  border-radius: 999px;
  border: 0; padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.4s;
}
.hero__dot::after { content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 44px; transform: translate(-50%, -50%); }
.hero__dot[aria-current="true"] { width: 32px; background: #FFFFFF; }
.hero__dot[aria-current="true"]::after { width: 36px; }
.hero__pause {
  display: none;
  margin-left: 10px;
  min-width: 44px; min-height: 44px;
  border: 0; background: transparent; cursor: pointer;
  color: #FFFFFF; font-size: var(--fs-xs); font-weight: 600;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0.9;
}
.js .hero__pause { display: inline-flex; }
.hero__pause-icon { display: inline-block; width: 10px; height: 10px; border-left: 3px solid #FFFFFF; border-right: 3px solid #FFFFFF; }
.hero__pause[aria-pressed="true"] .hero__pause-icon {
  border-right: 0; border-left: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 9px solid #FFFFFF;
  width: 0; height: 0;
}
.hero__controls--single { display: none; }
@media (min-width: 768px) { .hero { height: 60vh; } }
@media (min-width: 1024px) { .hero { height: 78vh; } .hero__body { padding-bottom: 64px; } }

/* ---------- 9. トップ：NEWS ---------- */
.top-news { display: grid; grid-template-columns: 1fr; gap: 24px; }
.top-news__head .section-title { margin-bottom: 18px; }
@media (min-width: 768px) { .top-news { grid-template-columns: 280px 1fr; gap: 56px; } }

.news-rows { border-top: 1px solid var(--border); }
.news-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.news-row__date { color: var(--text-muted); font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; }
.news-row__title { flex: 1 1 240px; line-height: 1.7; color: var(--text); }
a.news-row:hover .news-row__title { color: var(--teal); }
.empty { color: var(--text-muted); padding: 24px 4px; }

/* ---------- 10. トップ：ABOUT ---------- */
.top-about { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.top-about__visual { position: relative; }
.top-about__photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.top-about__symbol {
  position: absolute; right: -8px; bottom: -16px;
  width: 80px; height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}
.top-about .section-title { margin-bottom: 24px; }
.top-about__desc { color: var(--text-muted); line-height: 2.1; margin: 0 0 12px; }
.top-about__mission { font-weight: 600; line-height: 2; margin: 0 0 28px; }
@media (min-width: 768px) {
  .top-about { grid-template-columns: 1fr 1.1fr; gap: 64px; }
  .top-about__symbol { width: 120px; }
}

/* りぶ／らふ カード */
.origin-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 20px; }
.origin-chip {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  line-height: 1.6;
}
.origin-chip__word { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 500; color: var(--teal); }
.origin-chip__word--pink { color: var(--pink-text); }
.origin-chip__meaning { color: var(--text-muted); font-size: var(--fs-small); margin-left: 8px; }

/* ---------- 11. トップ：MENU カード ---------- */
.menu-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .menu-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-cards { grid-template-columns: repeat(4, 1fr); } }
.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--text);
}
.menu-card__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.menu-card__body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 20px 22px 22px; }
.menu-card__en { color: var(--teal); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em; line-height: 1.6; }
.menu-card__title { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 500; letter-spacing: 0.04em; }
.menu-card__desc { color: var(--text-muted); font-size: var(--fs-small); line-height: 1.8; flex: 1; width: 100%; }
.menu-card__more { color: var(--teal); font-size: var(--fs-small); font-weight: 600; margin-top: 6px; }

/* ---------- 12. トップ：RECRUIT / CONTACT バナー ---------- */
.cta-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .cta-cards { grid-template-columns: 1fr 1fr; } }
.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  border-radius: 24px;
  overflow: hidden;
  padding: 28px;
  color: #FFFFFF;
  background: var(--teal);
}
@media (min-width: 768px) { .cta-card { min-height: 260px; } }
.cta-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-card--photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 42, 0.05), rgba(20, 40, 42, 0.72));
}
.cta-card--teal { background: #1F8F94; }
.cta-card__symbol { position: absolute; right: 20px; top: -10px; width: 140px; height: auto; opacity: 0.18; }
.cta-card__body { position: relative; z-index: 1; }
.cta-card__en { font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.14em; opacity: 0.9; margin-bottom: 6px; }
.cta-card__title { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 500; margin-bottom: 6px; }
.cta-card__desc { font-size: var(--fs-small); opacity: 0.9; }

/* ---------- 13. アクセス ---------- */
.access { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 768px) { .access { grid-template-columns: 1fr 1.2fr; gap: 64px; } }
.access .section-title { margin-bottom: 24px; }
.access__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.access__row { display: flex; gap: 16px; align-items: baseline; }
.access__row dt { color: var(--text-muted); font-size: var(--fs-small); font-weight: 600; min-width: 4.5em; flex-shrink: 0; }
.access__row dd { line-height: 1.8; }
.access__tel { color: var(--text); font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 500; display: inline-block; min-height: 44px; }
.access__hours { display: block; color: var(--text-muted); font-size: var(--fs-small); }
.map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) { .map { aspect-ratio: 16 / 10; } }
.map--wide { aspect-ratio: 4 / 3; }
@media (min-width: 768px) { .map--wide { aspect-ratio: 16 / 8; } }
.map iframe { display: block; width: 100%; height: 100%; border: 0; filter: var(--map-filter); }

/* ---------- 14. フッター ---------- */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  color: var(--text);
}
.site-footer .container { padding-inline: 20px; }
@media (min-width: 1024px) { .site-footer .container { padding-inline: 32px; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; } }
.site-footer__logo { height: 34px; width: auto; margin-bottom: 16px; }
.site-footer__name { font-size: 0.875rem; font-weight: 600; margin: 0 0 6px; }
.site-footer__addr { color: var(--text-muted); font-size: var(--fs-small); line-height: 1.9; }
.site-footer__addr a { color: inherit; }
.site-footer__col { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__heading {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}
.site-footer__links li a {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 6px 0;
}
.site-footer__bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: var(--fs-xs);
}
.site-footer__bottom a { color: inherit; }

/* ---------- 15. NEWS 一覧 ---------- */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 32px; }
.cat-tabs__link {
  display: inline-flex; align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card-bg);
  color: var(--text);
  font-size: var(--fs-small);
  font-weight: 500;
}
.cat-tabs__link[aria-current="page"] { background: var(--teal); border-color: var(--teal); color: var(--on-teal); font-weight: 600; }

.news-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .news-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .news-cards { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--text);
}
.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.news-card__img { width: 100%; height: 100%; object-fit: cover; }
.news-card__placeholder { width: 32%; max-width: 120px; opacity: 0.35; }
/* 画像のない記事: スマホでは枠を低くする */
.news-card__media--empty { aspect-ratio: 16 / 5; }
.news-card__media--empty .news-card__placeholder { width: auto; height: 60%; }
@media (min-width: 768px) {
  .news-card__media--empty { aspect-ratio: 16 / 10; }
  .news-card__media--empty .news-card__placeholder { width: 32%; height: auto; }
}
.news-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px 22px; flex: 1; }
.news-card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px; }
.news-card__date { color: var(--text-muted); font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; }
.news-card__title { font-size: var(--fs-body); font-weight: 500; line-height: 1.7; }
.news-card__excerpt { color: var(--text-muted); font-size: var(--fs-small); line-height: 1.8; }
a.news-card:hover .news-card__title { color: var(--teal); }

/* ページ送り */
.pagination { margin-top: 48px; }
.pagination__list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; }
.pagination__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text);
  font-size: var(--fs-small);
  font-weight: 600;
}
.pagination__link[aria-current="page"] { background: var(--teal); border-color: var(--teal); color: var(--on-teal); }
.pagination__gap { color: var(--text-muted); padding: 0 4px; }

/* ---------- 16. 記事詳細 ---------- */
.article { max-width: 800px; margin-inline: auto; }
.article__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 14px; }
.article__date { color: var(--text-muted); font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; }
.article__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.article__body { line-height: 2; }
.article__body p + p { margin-top: 1.2em; }
.article__body a { text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 36px; }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
.gallery--single { grid-template-columns: 1fr; }
@media (min-width: 768px) { .gallery--single { grid-template-columns: 1fr; } }
.gallery__link { display: block; border-radius: 14px; overflow: hidden; background: var(--bg-alt); }
.gallery__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.3s; }
.gallery--single .gallery__img { aspect-ratio: auto; max-height: 640px; object-fit: contain; margin-inline: auto; }
.gallery__link:hover { opacity: 1; }
.gallery__link:hover .gallery__img { transform: scale(1.03); }
.files { margin-top: 36px; border-top: 1px solid var(--border); }
.files__heading { font-size: var(--fs-small); font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; padding-top: 18px; margin-bottom: 8px; }
.file-link {
  display: flex; align-items: center; gap: 12px;
  min-height: 44px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.file-link__badge {
  flex-shrink: 0;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--pink); background: var(--pink-tint);
  border-radius: 6px; padding: 2px 8px; line-height: 1.6;
}
.file-link__name { flex: 1; line-height: 1.6; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border); }
.file-link__size { color: var(--text-muted); font-size: var(--fs-xs); white-space: nowrap; }

.post-nav { max-width: 800px; margin: 56px auto 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .post-nav { grid-template-columns: 1fr 1fr; } }
.post-nav__link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card-bg);
  color: var(--text);
  min-height: 44px;
}
.post-nav__link--next { text-align: right; }
@media (min-width: 768px) { .post-nav__link--next { grid-column: 2; } }
.post-nav__label { color: var(--teal); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; }
.post-nav__title { font-size: var(--fs-small); line-height: 1.7; }
.post-back { text-align: center; margin-top: 40px; }

/* ライトボックス */
.lightbox {
  width: 100vw; height: 100vh;
  max-width: 100vw; max-height: 100vh;
  margin: 0; padding: 0;
  border: 0;
  background: rgba(10, 20, 22, 0.92);
  color: #FFFFFF;
}
.lightbox::backdrop { background: rgba(10, 20, 22, 0.6); }
.lightbox__figure { position: absolute; inset: 56px 16px 64px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; }
.lightbox__caption { font-size: var(--fs-small); text-align: center; min-height: 1.6em; }
.lightbox__btn {
  position: absolute;
  min-width: 44px; min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__btn:focus-visible { outline-color: #FFFFFF; }
.lightbox__close { top: 8px; right: 8px; }
.lightbox__prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 8px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; left: 0; right: 0; bottom: 20px; text-align: center; font-size: var(--fs-xs); opacity: 0.85; }

/* ---------- 17. 公開情報 ---------- */
.disclosure-list { border-top: 1px solid var(--border); }
.disclosure-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 24px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .disclosure-item { grid-template-columns: 120px 1fr; } }
.disclosure-item__date { color: var(--text-muted); font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; line-height: 1.9; }
.disclosure-item__title { font-size: var(--fs-body); font-weight: 500; line-height: 1.7; }
.disclosure-item__title a { color: var(--text); }
.disclosure-item__title a:hover { color: var(--teal); }
.disclosure-item__files { margin-top: 6px; }
.disclosure-item__files .file-link { border-bottom: 0; padding: 6px 0; }

/* ---------- 18. 法人について ---------- */
.about-stack { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 1024px) { .about-stack { gap: 72px; } }
.about-philosophy__text { font-family: var(--font-serif); font-size: var(--fs-h3); line-height: 2; font-weight: 500; }
.slogan-box {
  background: var(--teal-tint);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
}
@media (min-width: 768px) { .slogan-box { padding: 40px; } }
.slogan-box .eyebrow { margin-bottom: 14px; }
.slogan-box__text { font-family: var(--font-serif); font-size: var(--fs-h2); font-weight: 500; letter-spacing: 0.06em; line-height: 1.6; margin-bottom: 14px; }
.slogan-box__desc { color: var(--text-muted); line-height: 1.9; }
.about-origin { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 768px) { .about-origin { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.about-origin .section-title { margin-bottom: 20px; }
.about-origin__symbol { display: flex; justify-content: center; }
.about-origin__symbol img { width: 140px; height: auto; }
@media (min-width: 768px) { .about-origin__symbol img { width: 220px; } }

.timeline { margin-bottom: 40px; border-bottom: 1px solid var(--border); }
.timeline__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
@media (min-width: 768px) { .timeline__row { grid-template-columns: 220px 1fr; } }
.timeline__date { font-family: var(--font-serif); color: var(--teal); font-size: var(--fs-h3); letter-spacing: 0.04em; font-weight: 500; }
.timeline__event { line-height: 1.8; }

.card-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px;
}
@media (min-width: 768px) { .card-box { padding: 40px; } }
.card-box__title { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 18px; }
.card-box p + p { margin-top: 16px; }
.card-box .lead { line-height: 2.1; }

/* 「設立までの歩み」の挿絵（透過PNG）。段落の間で物語の“転”を見せる */
.story-illust { margin: 28px auto 32px; max-width: 420px; }
.story-illust__img { display: block; width: 100%; height: auto; }
@media (min-width: 768px) { .story-illust { margin: 36px auto 40px; max-width: 460px; } }
/* 線画が暗いので、ダーク時だけ紙色の台紙を敷く（--illust-paper） */
html[data-theme="dark"] .story-illust { background: var(--illust-paper); border-radius: var(--radius-card); padding: 16px 20px 8px; }

.officers { display: flex; flex-direction: column; gap: 56px; }
@media (min-width: 1024px) { .officers { gap: 72px; } }
.officer { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 768px) { .officer { grid-template-columns: 260px 1fr; gap: 56px; } }
.officer__photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px; }
@media (max-width: 767px) { .officer__photo { max-width: 320px; } }
.officer__role { color: var(--teal); font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 6px; }
.officer__name { font-family: var(--font-serif); font-size: var(--fs-h2); font-weight: 500; letter-spacing: 0.06em; line-height: 1.5; margin-bottom: 2px; }
.officer__en { color: var(--text-muted); font-size: var(--fs-small); letter-spacing: 0.08em; margin-bottom: 20px; }
.career { border-bottom: 1px solid var(--border); }
.career__row { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding: 9px 0; border-top: 1px solid var(--border); font-size: var(--fs-small); }
@media (min-width: 768px) { .career__row { grid-template-columns: 110px 1fr; } }
.career__year { color: var(--text-muted); font-weight: 500; }
.career__text { line-height: 1.7; }

.overview-table {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
.overview-table__row { display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid var(--border); }
.overview-table__row:last-child { border-bottom: 0; }
@media (min-width: 768px) { .overview-table__row { grid-template-columns: 220px 1fr; } }
.overview-table__row dt { padding: 18px 14px; background: var(--bg-alt); font-weight: 600; }
.overview-table__row dd { padding: 18px 14px; color: var(--text-muted); line-height: 1.9; }
@media (min-width: 768px) { .overview-table__row dt, .overview-table__row dd { padding: 18px 24px; } }

/* ---------- 19. 汎用の本文ページ（プライバシーなど） ---------- */
.prose { line-height: 2; }
.prose h2 { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 500; letter-spacing: 0.04em; margin: 2.2em 0 0.8em; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.prose h3 { font-size: var(--fs-body); font-weight: 600; margin: 1.6em 0 0.6em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol, .prose dl, .prose table { margin: 0 0 1em; }
.prose ul { list-style: disc; padding-left: 1.5em; }
.prose ol { list-style: decimal; padding-left: 1.5em; }
.prose li + li { margin-top: 0.3em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-alt); font-weight: 600; }

.coming-soon {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
}

/* 404 */
.notfound { text-align: center; }
.notfound__code { font-family: var(--font-serif); font-size: 4rem; color: var(--teal); line-height: 1.2; font-weight: 500; }
.notfound__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

/* ---------- 20. フォーム（お問い合わせなどで共通利用） ---------- */
.form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: flex; flex-direction: column; gap: 8px; border: 0; margin: 0; padding: 0; min-width: 0; }
.form-label, .form-row > legend { color: var(--text); font-size: var(--fs-body); font-weight: 600; line-height: 1.6; padding: 0; }
.form-row > legend { margin-bottom: 10px; }
.form-help { color: var(--text-muted); font-size: var(--fs-small); line-height: 1.7; }
.required, .optional {
  display: inline-block;
  margin-left: 6px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--required);
  vertical-align: 0.05em;
}
.optional { color: var(--text-muted); font-weight: 500; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form input[type="url"],
.form input[type="number"], .form input[type="password"], .form input[type="search"], .form input[type="date"],
.form select, .form textarea,
.input, .select, .textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: max(16px, var(--fs-body));
  line-height: 1.6;
  color: var(--text);
  min-height: 48px;
}
.form textarea, .textarea { resize: vertical; min-height: 10em; }
.form select, .select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.form ::placeholder { color: var(--text-muted); opacity: 0.7; }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible { outline-offset: 1px; border-color: var(--teal); }
.form [aria-invalid="true"] { border-color: var(--required); border-width: 2px; }
.choices { display: flex; flex-wrap: wrap; gap: 12px; }
.choice {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  line-height: 1.5;
}
.choice input { accent-color: var(--teal); width: 16px; height: 16px; margin: 0; }
.choice:has(input:checked) { border-color: var(--teal); }
.choice:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.error { color: var(--required); font-size: var(--fs-small); font-weight: 600; line-height: 1.6; }
.error::before { content: "※ "; }
.form-errors {
  border: 2px solid var(--required);
  border-radius: 14px;
  background: var(--card-bg);
  padding: 16px 20px;
  color: var(--text);
}
.form-errors__title { color: var(--required); font-weight: 600; margin-bottom: 6px; }
.form-errors ul { list-style: disc; padding-left: 1.4em; font-size: var(--fs-small); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.form-actions .btn { flex: 1 1 200px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.confirm-table { border-top: 1px solid var(--border); }
.confirm-table__row { display: grid; grid-template-columns: 1fr; gap: 4px 20px; padding: 16px 4px; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .confirm-table__row { grid-template-columns: 200px 1fr; } }
.confirm-table__row dt { color: var(--text-muted); font-size: var(--fs-small); font-weight: 600; }
.confirm-table__row dd { white-space: pre-wrap; line-height: 1.8; }
.alert { border-radius: 14px; padding: 16px 20px; background: var(--teal-tint); color: var(--text); }
.alert--error { background: var(--pink-tint); }

/* ---------- 採用情報（recruit.php） ---------- */
.recruit-main { margin: 32px 0 8px; }
.recruit-main__btn { min-height: 52px; }
.recruit-jobs__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 48px 0 16px;
}
.recruit-jobs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.recruit-job {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}
.recruit-job__name { flex: 1 1 auto; font-size: var(--fs-body); font-weight: 500; }
.recruit-job__arrow { color: var(--teal); }