@charset "utf-8";

/* =========================================================
   株式会社CALM コーポレートサイト 共通スタイル
   旧サイト（WordPress calm_wp2023）の世界観を継承しつつ、
   モバイルファースト・アクセシビリティ・表示速度を刷新
   ========================================================= */

:root {
  --green-deep: #154749;
  --green-mid: #1f5f61;
  --teal: #53a6a9;
  --teal-pale: #e8f3f2;
  --gold: #cd922e;              /* 罫線・面の装飾用 */
  --gold-text: #a47424;         /* 文字に使う金（コントラスト確保） */
  --teal-text: #356b6d;         /* 文字に使うティール（同上） */
  --gold-deep: #74651c;
  --gold-pale: #fdf0c9;
  --cream: #fffae9;
  --cream-2: #fdf8ee;
  --ink: #2c2c2c;
  --ink-soft: #545454;
  --line: #e2ded4;
  --white: #fff;

  --serif: 'Noto Serif JP', 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', serif;
  --sans: 'Noto Sans JP', 'Yu Gothic Medium', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  --script: 'Dancing Script', cursive;

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 4px;
  --shadow: 0 4px 24px rgba(21, 71, 73, .08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.5; margin: 0; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 2px; }

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--green-deep); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius); transition: top .2s;
}
.skip-link:focus { top: 8px; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.center { text-align: center; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 16px;
  width: min(100% - 24px, 1360px); margin-inline: auto;
  min-height: 68px;
}
.header__brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; margin-right: auto; }
.header__tagline { font-family: var(--serif); font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; }
.header__logo { width: clamp(150px, 20vw, 210px); }

.nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__link {
  font-family: var(--serif); font-size: 15px; text-decoration: none;
  color: var(--ink); padding: 6px 0; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform .25s; transform-origin: right;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header__tel { text-align: right; line-height: 1.35; }
.header__tel-number {
  font-family: var(--serif); font-style: italic; font-size: 21px;
  color: var(--green-deep); text-decoration: none; letter-spacing: .01em;
}
.header__tel-time { font-size: 11px; color: var(--ink-soft); }
.header__cta {
  background: var(--gold-pale); color: var(--green-deep);
  font-size: 13px; text-decoration: none; align-self: stretch;
  display: flex; align-items: center; padding: 0 22px;
  transition: background .2s;
}
.header__cta:hover { background: var(--gold-deep); color: var(--white); }

/* ナビ内の電話番号はモバイルメニュー専用 */
.nav__tel { display: none; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; background: none;
  cursor: pointer; padding: 0; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-deep); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .header__tel, .header__cta { display: none; }
  .nav {
    position: fixed; inset: 68px 0 auto; background: var(--white);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height .3s ease, visibility .3s;
    /* 閉じている間は中のリンクをキーボード操作の対象から外す */
    visibility: hidden;
  }
  .nav[data-open="true"] { max-height: 80vh; overflow-y: auto; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
  .nav__link { padding: 15px var(--gutter); border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__link::after { display: none; }
  .nav__tel { display: block; padding: 20px var(--gutter); text-align: center; }
}

/* ---------- ヒーロー ---------- */
.hero { position: relative; background: var(--green-deep); }
.hero__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
@media (max-width: 700px) { .hero__media { aspect-ratio: 4 / 5; } }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero__slide[data-active="true"] { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__copy {
  position: absolute; right: 0; bottom: clamp(24px, 6vw, 64px);
  background: rgba(255, 255, 255, .93);
  padding: clamp(20px, 3vw, 34px) clamp(24px, 4vw, 54px);
  max-width: min(94%, 700px);
}
.hero__title {
  font-size: clamp(20px, 3.1vw, 32px); letter-spacing: .02em;
  color: var(--green-deep); margin-bottom: 12px; text-wrap: balance;
}
.hero__lead { font-size: clamp(12px, 1.2vw, 14px); line-height: 1.9; color: var(--ink-soft); }

/* ---------- お知らせバー ---------- */
.newsbar { background: var(--teal-pale); }
.newsbar__inner { display: flex; align-items: stretch; width: min(100% - 24px, 1360px); margin-inline: auto; }
.newsbar__label {
  background: var(--green-deep); color: var(--white); font-family: var(--serif);
  padding: 14px 32px; font-size: 15px; letter-spacing: .1em; white-space: nowrap;
}
.newsbar__item {
  display: flex; align-items: center; gap: 20px; padding: 14px 28px;
  text-decoration: none; flex: 1; min-width: 0;
}
.newsbar__date { font-size: 13px; color: var(--ink-soft); white-space: nowrap; }
.newsbar__text { font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.newsbar__item:hover .newsbar__text { color: var(--gold-deep); }
@media (max-width: 700px) {
  .newsbar__inner { flex-direction: column; }
  .newsbar__label { text-align: center; padding: 8px; font-size: 13px; }
  .newsbar__item { padding: 12px 16px; gap: 12px; }
}

/* ---------- セクション共通 ---------- */
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--cream { background: var(--cream); }
.section--pale { background: linear-gradient(180deg, var(--teal-pale), #f4faf9); }
.section--tint { background: var(--cream-2); }

.section__lead {
  font-family: var(--serif); font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.9; letter-spacing: .04em; color: var(--green-deep);
  text-align: center; margin-bottom: clamp(36px, 6vw, 70px);
  text-wrap: balance;
}
@media (max-width: 640px) { .section__lead br { display: none; } }
.section__title {
  font-size: clamp(21px, 2.8vw, 30px); letter-spacing: .08em;
  color: var(--green-deep); text-align: center;
}
.section__title--bar { display: flex; align-items: center; gap: 14px; text-align: left; }
.section__title--bar::before { content: ''; width: 5px; height: 26px; background: var(--gold); flex: none; }
.section__desc { text-align: center; margin-top: 16px; color: var(--ink-soft); font-size: 15px; }
.section__head { margin-bottom: clamp(28px, 4vw, 48px); }

.script {
  font-family: var(--script); font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1; color: var(--gold-text); font-weight: 700;
}
.script--teal { color: var(--teal-text); }

/* ---------- 交互カード（事業・こだわり） ---------- */
.feature { display: grid; gap: clamp(28px, 4vw, 40px); }
.feature__row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
.feature__row--reverse .feature__body { order: 2; }
.feature__row--reverse .feature__media { order: 1; }
.feature__body {
  background: var(--gold-pale); padding: clamp(28px, 4vw, 52px);
  position: relative; z-index: 2;
}
.feature__row--teal .feature__body { background: #cfe8e6; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.feature__script { margin-bottom: 10px; }
.feature__title { font-size: clamp(19px, 2.2vw, 25px); color: var(--green-deep); margin-bottom: 14px; }
.feature__text { font-size: 14.5px; color: var(--ink); margin-bottom: 22px; }
@media (max-width: 820px) {
  .feature__row, .feature__row--reverse { grid-template-columns: 1fr; }
  .feature__row .feature__media, .feature__row--reverse .feature__media { order: 1; }
  .feature__row .feature__body, .feature__row--reverse .feature__body { order: 2; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 14px 28px; text-decoration: none;
  font-family: var(--serif); font-size: 15px; letter-spacing: .04em;
  line-height: 1.5; text-align: center;
  transition: background .2s, color .2s, border-color .2s;
}
.btn--fill { background: var(--green-deep); color: var(--white); }
.btn--fill:hover { background: var(--gold-deep); }
.btn--gold { background: var(--gold-deep); color: var(--white); }
.btn--gold:hover { background: var(--green-deep); }
.btn--line { border: 1px solid var(--green-deep); color: var(--green-deep); background: var(--white); }
.btn--line:hover { background: var(--green-deep); color: var(--white); }
.btn--wide { min-width: min(100%, 300px); }
.btn::after { content: '→'; font-size: 14px; flex: none; }

/* ---------- ギャラリー ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.gallery img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }

/* ---------- メッセージ ---------- */
.message { display: grid; gap: 28px; max-width: 780px; margin-inline: auto; text-align: center; }
.message__text { font-size: 15.5px; text-align: left; }
.message__sign { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.message__role { font-size: 13px; color: var(--ink-soft); }
.message__name {
  font-family: var(--serif); font-size: 24px; letter-spacing: .18em;
  color: var(--green-deep);
}
.message__sign img { width: 150px; }

/* ---------- 表（会社概要・沿革） ---------- */
.deftable { background: var(--white); border: 1px solid var(--line); }
.deftable__row { display: grid; grid-template-columns: 230px 1fr; border-bottom: 1px solid var(--line); }
.deftable__row:last-child { border-bottom: 0; }
.deftable dt {
  font-family: var(--serif); background: var(--cream-2);
  padding: 18px 24px; font-size: 15px; color: var(--green-deep);
  border-right: 1px solid var(--line);
}
.deftable dd { padding: 18px 24px; font-size: 15px; }
.deftable dd ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 4px 24px; }
.deftable dd li { position: relative; padding-left: 16px; font-size: 14.5px; }
.deftable dd li::before { content: '・'; position: absolute; left: 0; color: var(--gold-text); }
@media (max-width: 720px) {
  .deftable__row { grid-template-columns: 1fr; }
  .deftable dt { border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 18px; }
  .deftable dd { padding: 16px 18px; }
}

/* ---------- 沿革 ---------- */
.history { border-top: 1px solid var(--line); }
.history__item {
  display: grid; grid-template-columns: 190px 1fr 200px; gap: 24px;
  align-items: start; padding: 22px 0; border-bottom: 1px dashed var(--line);
}
.history__year { font-family: var(--serif); color: var(--green-deep); font-size: 16px; }
.history__text { font-size: 15px; }
.history__item img { width: 100%; }
@media (max-width: 720px) {
  .history__item { grid-template-columns: 1fr; gap: 10px; }
  .history__item img { max-width: 240px; }
}

/* ---------- 下層ページのキービジュアル ---------- */
.pagehead { background: var(--green-deep); color: var(--white); text-align: center; padding: clamp(48px, 8vw, 86px) 0; position: relative; overflow: hidden; }
.pagehead__en { font-family: var(--script); font-size: clamp(24px, 3.4vw, 34px); color: rgba(255,255,255,.75); line-height: 1; }
.pagehead__title { font-size: clamp(24px, 3.6vw, 38px); letter-spacing: .12em; margin-top: 8px; }

.breadcrumb { font-size: 12.5px; color: var(--ink-soft); padding: 14px 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li::after { content: '／'; margin-left: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- カード（カタログ・事業所） ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); }
/* カードが1枚だけのときに画像が間延びしないよう幅を抑える */
.cards:has(> :only-child) { max-width: 520px; margin-inline: auto; }
.card {
  background: var(--white); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit; transition: box-shadow .25s, transform .25s;
}
a.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
a.card:hover .btn--line { background: var(--green-deep); color: var(--white); }
.card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card__body { padding: clamp(20px, 3vw, 30px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card__title { font-size: 19px; color: var(--green-deep); display: flex; align-items: center; gap: 12px; }
.card__title::before { content: ''; width: 4px; height: 20px; background: var(--gold); flex: none; }
.card__text { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.card__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.card__actions .btn { min-height: 44px; padding: 0 20px; font-size: 14px; }

/* ---------- お知らせ一覧 ---------- */
.newslist { display: grid; gap: 0; }
.newslist__item {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: baseline;
  padding: 20px 4px; border-bottom: 1px solid var(--line); text-decoration: none;
}
.newslist__item:hover { background: var(--cream-2); }
.newslist__date { font-size: 13.5px; color: var(--ink-soft); }
.newslist__title { font-size: 15.5px; font-family: var(--serif); }
@media (max-width: 620px) {
  .newslist__item { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- 問い合わせ ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 30px); }
.contact-card {
  background: var(--white); border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 40px); text-align: center;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.contact-card__label { font-family: var(--serif); font-size: 17px; color: var(--green-deep); }
.contact-card__value { font-family: var(--serif); font-size: clamp(24px, 3vw, 30px); color: var(--green-deep); text-decoration: none; font-style: italic; }
.contact-card__note { font-size: 13px; color: var(--ink-soft); }

/* ---------- オンラインショップ ---------- */
.shop { background: var(--gold-pale); padding: clamp(44px, 6vw, 70px) 0; text-align: center; }
.shop__title { max-width: 420px; margin: 0 auto 18px; }
.shop__label {
  font-family: var(--serif); font-size: 17px; letter-spacing: .22em;
  color: var(--green-deep); margin-bottom: 26px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.shop__label::before, .shop__label::after { content: ''; width: 40px; height: 1px; background: var(--green-deep); }
.shop__label small { display: block; font-size: 11px; letter-spacing: .1em; color: var(--ink-soft); }
.shop__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.shop__buttons a { background: var(--white); border: 1px solid var(--line); padding: 14px 26px; display: flex; align-items: center; }
.shop__buttons img { width: 150px; }

/* ---------- フッター ---------- */
.footer { background: var(--cream-2); padding-top: clamp(36px, 5vw, 56px); }
.footer__top { display: grid; grid-template-columns: 1.2fr 1.4fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; padding-bottom: clamp(32px, 4vw, 48px); }
.footer__tagline { font-family: var(--serif); font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.footer__logo { width: 200px; margin-bottom: 12px; }
.footer__hours { font-size: 13px; color: var(--ink-soft); }
.footer__address { font-size: 14px; line-height: 2; }
.footer__tel { font-family: var(--serif); font-size: 19px; color: var(--green-deep); text-decoration: none; }
.footer__actions { display: grid; gap: 12px; }
.footer__bottom { background: var(--green-deep); color: var(--white); padding: 22px 0; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-bottom: 14px; }
.footer__nav a { font-size: 13.5px; text-decoration: none; }
.footer__nav a:hover { text-decoration: underline; }
.footer__copy { text-align: center; font-size: 12px; color: rgba(255, 255, 255, .75); }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- 2カラム（本文＋画像） ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.split__text { font-size: 15.5px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ---------- 本文段落 ---------- */
.prose { font-size: 15.5px; line-height: 2.05; margin-top: clamp(20px, 3vw, 30px); }
.prose + .prose { margin-top: 18px; }

/* ---------- ページ内リンク ---------- */
.pagenav {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.pagenav a {
  border: 1px solid var(--line); background: var(--white);
  padding: 11px 22px; font-size: 14px; text-decoration: none;
  font-family: var(--serif); color: var(--green-deep); transition: background .2s, color .2s;
}
.pagenav a:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }

/* ---------- 商品カテゴリー ---------- */
.product { padding: clamp(32px, 5vw, 56px) 0; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.product:first-of-type { border-top: 0; padding-top: 0; }
.product__body { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: start; margin-top: 22px; }
.product__body .card__actions { margin-top: 22px; }
@media (max-width: 820px) { .product__body { grid-template-columns: 1fr; } }

/* ---------- インタビュー ---------- */
.interview { max-width: 860px; margin-inline: auto; }
.interview__lead {
  font-family: var(--serif); font-size: clamp(19px, 2.5vw, 27px);
  line-height: 1.8; color: var(--green-deep); margin-bottom: 18px;
}
.interview__person { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; margin-bottom: clamp(28px, 4vw, 44px); }
.interview__role { font-size: 13.5px; color: var(--ink-soft); }
.interview__name { font-family: var(--serif); font-size: 19px; color: var(--green-deep); }
.interview__year { font-size: 13px; color: var(--ink-soft); }
.qa { padding: 24px 0; border-top: 1px dashed var(--line); }
.qa__q {
  font-size: 17px; color: var(--green-deep); margin-bottom: 12px;
  display: flex; gap: 12px; align-items: baseline;
}
.qa__q::before { content: 'Q'; font-family: var(--script); font-size: 26px; color: var(--gold-text); line-height: 1; flex: none; }
.qa__a { font-size: 15px; line-height: 2.05; }

/* ---------- お問い合わせフォーム ---------- */
.cform { max-width: 860px; margin-inline: auto; background: var(--white); border: 1px solid var(--line); padding: clamp(22px, 4vw, 44px); }
.cform__row { display: grid; grid-template-columns: 230px 1fr; gap: 16px 24px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start; }
.cform__label { font-family: var(--serif); font-size: 15.5px; color: var(--green-deep); padding-top: 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cform__req { background: var(--gold-deep); color: var(--white); font-family: var(--sans); font-size: 11px; padding: 2px 8px; letter-spacing: .04em; }
.cform__field { display: grid; gap: 10px; }
.cform input[type="text"], .cform input[type="email"], .cform input[type="tel"], .cform select, .cform textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius);
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--green-deep); outline: 2px solid var(--gold-deep); outline-offset: 1px; }
.cform textarea { line-height: 1.8; resize: vertical; }
.cform__zip { display: flex; align-items: center; gap: 8px; }
.cform__zip input { max-width: 200px; }
.cform__radio, .cform__check { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 15px; }
.cform__radio { margin-right: 24px; }
.cform__radio input, .cform__check input { width: 18px; height: 18px; accent-color: var(--green-deep); }
.cform__policy { padding: 22px 0; font-size: 14.5px; }
.cform__policy p { margin-bottom: 14px; color: var(--ink-soft); }
.cform__submit { text-align: center; margin-top: 12px; }
.cform__status { text-align: center; margin-top: 16px; font-size: 15px; min-height: 1.6em; }
.cform__status[data-state="ok"] { color: var(--green-deep); font-weight: 500; }
.cform__status[data-state="ng"] { color: #c0392b; }
.cform__status[data-state="sending"] { color: var(--ink-soft); }
@media (max-width: 720px) {
  .cform__row { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .cform__label { padding-top: 0; }
}

/* ---------- お知らせ記事 ---------- */
.article { max-width: 780px; margin-inline: auto; }
.article__date { font-size: 13.5px; color: var(--ink-soft); letter-spacing: .04em; }
.article__title {
  font-size: clamp(21px, 2.8vw, 29px); color: var(--green-deep);
  line-height: 1.6; margin: 10px 0 clamp(24px, 4vw, 38px);
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.article .prose:first-of-type { margin-top: 0; }
.article__nav {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 780px; margin: clamp(36px, 5vw, 56px) auto 0;
  padding-top: clamp(24px, 4vw, 36px); border-top: 1px solid var(--line);
}
.article__nav .btn { min-height: 46px; padding: 12px 22px; font-size: 14px; }

/* ---------- 地図 ---------- */
.mapbox { position: relative; aspect-ratio: 16 / 9; background: var(--line); }
.mapbox iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .mapbox { aspect-ratio: 4 / 3; } }
.mapbox__note { margin-top: 14px; font-size: 14px; color: var(--ink-soft); }

/* ---------- プライバシーポリシー ---------- */
.policy { max-width: 860px; }
.policy__title {
  font-size: 18px; color: var(--green-deep); margin: 34px 0 6px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.policy__sub { font-size: 16px; color: var(--green-mid); margin: 22px 0 4px; }
.policy__list { margin-top: 10px; }
.policy__list li { font-size: 15px; padding-left: 4px; }
.policy__contact {
  background: var(--cream-2); border: 1px solid var(--line);
  padding: 20px 24px; margin-top: 16px; font-size: 15px; line-height: 2;
}

/* ---------- 補助 ---------- */
.notice {
  background: var(--teal-pale); border-left: 4px solid var(--teal);
  padding: 18px 22px; font-size: 14.5px; margin-top: 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
