/* =========================================================
   株式会社ひなた工務店 - style.css
   Pure CSS / no framework。配色・フォント・余白は :root のトークンで一元管理する。
   新色を直値で書かず、必要ならトークンを :root に足して命名を揃えること。
   プリセット: P2（ネイビー×ビビッド）を深いグリーン + 木目ゴールドに寄せた独自調整版
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: hidden; }
body, h1, h2, h3, h4, p, ul, ol, figure, dl, dd, table, th, td { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Design Tokens ---------- */
:root {
  /* 配色（深いグリーン + 木目ゴールドのひなた工務店カラー） */
  --c-primary:      #2D6A4F;    /* 深いグリーン（主役・アクセント・ボタン） */
  --c-primary-deep: #1B4635;    /* さらに深いグリーン（hover・見出し強調） */
  --c-primary-soft: #EBF5EE;    /* 淡いグリーン背景 */
  --c-accent:       #8B6014;    /* 木目ゴールド（装飾・補色） */
  --c-accent-soft:  #F7EFDC;    /* 淡いゴールド背景 */
  --c-line:         #06C755;    /* LINE ブランド色（固定） */

  --c-bg:           #FFFFFF;    /* ページ背景 */
  --c-bg-cream:     #F7F4EF;    /* セクション差し色・木目感のある白 */
  --c-text:         #1A2820;    /* 基本テキスト（緑みのダーク） */
  --c-text-muted:   #5E7266;    /* 補助テキスト（白地で約6:1確保） */
  --c-border:       #DDE6E0;    /* 罫線 */
  --c-danger:       #c0392b;

  /* グラデーション */
  --grad-accent: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-deep) 100%);
  --g-hero:      linear-gradient(122deg, var(--c-primary-deep) 0%, var(--c-primary) 60%, #4A9E77 100%);

  /* フォント */
  --f-base: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', system-ui, sans-serif;
  --f-disp: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  /* レイアウト */
  --container:   1120px;
  --gutter:      24px;
  --header-h:    92px;
  --radius:      6px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-card: 0 24px 60px rgba(0,0,0,0.08);
}

/* ---------- Base ---------- */
html, body {
  font-family: var(--f-base);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
}

h1, h2, h3 { line-height: 1.4; font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 88px 0; }
.section--cream { background: var(--c-bg-cream); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section__label {
  display: block; font-family: var(--f-disp); font-size: 12px; letter-spacing: 0.32em;
  color: var(--c-primary); text-transform: uppercase; margin-bottom: 10px;
}
.section__title { font-size: clamp(22px, 4vw, 30px); font-weight: 600; letter-spacing: 0.06em; }
.section__lead { margin-top: 16px; color: var(--c-text-muted); font-size: 15px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  background: var(--c-primary); color: #fff; font-weight: 600;
  letter-spacing: 0.06em; transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--c-primary-deep); transform: translateY(-1px); }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--white { background: #fff; color: var(--c-text); }
.btn--white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.85); }
.btn--white-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.7); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn--line { background: var(--c-line); color: #fff; }
.btn--line:hover { background: #05a648; transform: translateY(-1px); }
.btn--block { display: flex; justify-content: center; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--c-border);
}
.hdr::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
}
.hdr__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.hdr__logo-img { width: auto; max-height: 48px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav > a { font-size: 13.5px; letter-spacing: 0.04em; transition: color 0.2s; }
.nav > a:hover { color: var(--c-primary); }
.nav__sns { display: none; }
.hdr__actions { display: flex; align-items: center; gap: 14px; }
.hdr__sns { display: inline-flex; }
.sns-icon { width: 22px; height: 22px; }
.sns-symbols { position: absolute; width: 0; height: 0; overflow: hidden; }
.hdr__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--c-primary); color: #fff; font-size: 14px; font-weight: 600;
  transition: background 0.2s;
}
.hdr__cta:hover { background: var(--c-primary-deep); }

/* Burger */
.hdr__burger { display: none; width: 40px; height: 40px; position: relative; z-index: 96; }
.hdr__burger span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: var(--c-text);
  transition: transform 0.3s, opacity 0.2s;
}
.hdr__burger span:nth-child(1) { top: 13px; }
.hdr__burger span:nth-child(2) { top: 19px; }
.hdr__burger span:nth-child(3) { top: 25px; }
.hdr__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; z-index: 90;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Page hero（サブページ共通） ---------- */
.page-hero { background: var(--c-primary-soft); padding: 64px 0; text-align: center; }
.page-hero__label { display: block; font-family: var(--f-disp); letter-spacing: 0.3em; color: var(--c-primary); font-size: 12px; text-transform: uppercase; margin-bottom: 10px; }
.page-hero__title { font-size: clamp(24px, 5vw, 34px); letter-spacing: 0.08em; }
.page-hero__lead { margin-top: 14px; color: var(--c-text-muted); font-size: 15px; }

/* ---------- HERO-03 フルスクリーンスライダー ---------- */
.slider {
  position: relative; height: 100svh; min-height: 600px;
  overflow: hidden; background: var(--c-primary-deep);
}
.slider__track { position: absolute; inset: 0; }
.slider__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
  background-color: #1a2e24; /* フォールバック色 */
}
.slider__slide.is-active { opacity: 1; }
.slider__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; text-align: center; z-index: 2; padding: 0 24px;
}
/* テキスト可読性のための中央光暈 */
.slider__overlay::before {
  content: '';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(340px, 90%, 960px); height: clamp(300px, 54%, 500px);
  background: radial-gradient(ellipse at center,
    rgba(20,30,24,0.82) 0%,
    rgba(20,30,24,0.72) 32%,
    rgba(20,30,24,0.46) 55%,
    rgba(20,30,24,0.14) 74%,
    rgba(20,30,24,0) 88%);
  pointer-events: none; z-index: -1;
}
.slider__label {
  font-family: var(--f-disp); font-size: 12px; letter-spacing: 0.36em;
  color: rgba(255,255,255,0.75); text-transform: uppercase; margin-bottom: 20px;
}
.slider__title {
  font-size: clamp(30px, 6vw, 60px); font-weight: 700; line-height: 1.4;
  letter-spacing: 0.06em; margin-bottom: 22px; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.slider__sub {
  font-size: clamp(14px, 1.8vw, 17px); letter-spacing: 0.06em; max-width: 640px;
  line-height: 2; color: rgba(255,255,255,0.9); margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.slider__actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.slider__dots {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 3;
}
.slider__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.6);
  transition: background 0.3s, transform 0.3s; padding: 0;
}
.slider__dot.is-active { background: var(--c-primary); transform: scale(1.2); }
@media (max-width: 768px) {
  .slider { height: 86svh; min-height: 540px; }
  .slider__title { font-size: clamp(28px, 8vw, 38px); letter-spacing: 0.04em; line-height: 1.45; }
  .slider__label { font-size: 11px; letter-spacing: 0.26em; }
  .slider__sub { font-size: 13px; letter-spacing: 0.04em; line-height: 1.9; }
  .slider__dots { bottom: 20px; }
  .slider__actions { flex-direction: column; align-items: center; width: 100%; max-width: 320px; gap: 10px; }
  .slider__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- 見学会バナー ---------- */
.event-banner {
  background: var(--c-primary);
  padding: 28px 0;
}
.event-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.event-banner__text { flex: 1 1 300px; color: #fff; }
.event-banner__badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  background: #fff; color: var(--c-primary); border-radius: var(--radius-pill);
  padding: 3px 12px; margin-bottom: 8px;
}
.event-banner__heading {
  font-size: clamp(16px, 2.4vw, 20px); font-weight: 700; line-height: 1.5;
}
.event-banner__desc {
  margin-top: 6px; font-size: 13.5px; opacity: 0.9; line-height: 1.8;
}
.event-banner__action {
  flex-shrink: 0; text-align: center;
}
.event-banner__action .btn {
  background: #fff; color: var(--c-primary); font-weight: 700;
  white-space: nowrap;
}
.event-banner__action .btn:hover { background: rgba(255,255,255,0.9); }
.event-banner__note {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.85);
}
@media (max-width: 768px) {
  .event-banner { padding: 22px 0; }
  .event-banner__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .event-banner__action { width: 100%; }
  .event-banner__action .btn { width: 100%; justify-content: center; }
}

/* ---------- FEAT-04 強み・選ばれる理由カード ---------- */
.reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.reason-card {
  position: relative; background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 34px 24px 28px;
  box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; overflow: hidden;
}
.reason-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px;
  background: var(--grad-accent);
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.reason-card__no {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad-accent);
  color: #fff; font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); margin-bottom: 16px;
}
.reason-card__title { font-size: 18px; font-weight: 700; letter-spacing: 0.02em; line-height: 1.5; }
.reason-card__title em { font-style: normal; color: var(--c-primary); }
.reason-card__desc { margin-top: 11px; font-size: 14px; color: var(--c-text-muted); line-height: 1.95; }
@media (max-width: 1080px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .reasons { grid-template-columns: 1fr; } }

/* ---------- 施工事例グリッド ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.works-card {
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}
.works-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.works-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-cream); }
.works-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.works-card:hover .works-card__img img { transform: scale(1.04); }
.works-card__body { padding: 18px 20px 22px; }
.works-card__tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--c-primary); background: var(--c-primary-soft);
  border-radius: var(--radius-pill); padding: 3px 12px; margin-bottom: 8px;
}
.works-card__title { font-size: 15px; font-weight: 600; line-height: 1.55; color: var(--c-text); }
.works-card__spec { margin-top: 6px; font-size: 12.5px; color: var(--c-text-muted); }
.works-more { text-align: center; margin-top: 40px; }
@media (max-width: 1080px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .works-grid { grid-template-columns: 1fr; } }

/* ---------- FLOW-03 家づくりの流れ ---------- */
.flow-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.flow-cards__step {
  position: relative; padding: 30px 22px 28px;
  border-radius: var(--radius); background: var(--c-bg-cream);
  border: 1px solid var(--c-border);
}
.flow-cards__step::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--grad-accent); border-radius: var(--radius) var(--radius) 0 0;
}
.flow-cards__no {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-accent); color: #fff;
  font-family: var(--f-disp); font-weight: 700; font-size: 18px;
  margin-bottom: 14px;
}
.flow-cards__title { font-size: 16px; font-weight: 700; line-height: 1.5; }
.flow-cards__desc { margin-top: 10px; font-size: 13.5px; color: var(--c-text-muted); line-height: 1.85; }
@media (max-width: 1080px) { .flow-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .flow-cards { grid-template-columns: 1fr; } }

/* ---------- 採用バナー ---------- */
.recruit-band {
  position: relative; overflow: hidden;
  background-color: var(--c-primary-deep);
  background-size: cover; background-position: center;
  color: #fff; text-align: center; padding: 96px 0;
}
.recruit-band::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(15,30,22,0.68);
}
.recruit-band .container { position: relative; z-index: 1; }
.recruit-band__label {
  display: block; font-family: var(--f-disp); font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; margin-bottom: 18px; opacity: 0.85;
}
.recruit-band__title {
  font-size: clamp(24px, 4.4vw, 38px); font-weight: 700; line-height: 1.55;
  letter-spacing: 0.04em; margin-bottom: 18px;
}
.recruit-band__lead {
  font-size: 15px; opacity: 0.9; line-height: 2; margin-bottom: 34px; max-width: 600px; margin-inline: auto;
}
@media (max-width: 768px) {
  .recruit-band { padding: 72px 0; }
}

/* ---------- CTA-02 最終CTA帯 ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(135deg, var(--c-primary-deep), var(--c-primary));
  padding: 72px 0;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0) 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band__label {
  font-family: var(--f-disp); letter-spacing: 0.3em; font-size: 12px;
  text-transform: uppercase; opacity: 0.85; margin-bottom: 10px;
}
.cta-band__title {
  font-size: clamp(20px, 4.4vw, 30px); font-weight: 700; margin-top: 0; letter-spacing: 0.04em;
}
.cta-band__lead { margin-top: 14px; font-size: 14.5px; opacity: 0.92; line-height: 2; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
@media (max-width: 768px) {
  .cta-band { padding: 56px 0; }
  .cta-band__btns { flex-direction: column; align-items: stretch; max-width: 300px; margin-inline: auto; }
  .cta-band__btns .btn { justify-content: center; }
}

/* ---------- News ---------- */
.news__list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--c-border); }
.news__item { border-bottom: 1px solid var(--c-border); }
.news__head {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 22px 8px; text-align: left;
}
.news__date { font-family: var(--f-disp); color: var(--c-primary); font-size: 14px; letter-spacing: 0.06em; flex-shrink: 0; }
.news__cat {
  font-size: 11px; letter-spacing: 0.08em; color: var(--c-text-muted);
  border: 1px solid var(--c-border); border-radius: var(--radius-pill); padding: 3px 12px; flex-shrink: 0;
}
.news__title { flex: 1; font-size: 15px; font-weight: 500; }
.news__toggle { width: 12px; height: 12px; position: relative; flex-shrink: 0; }
.news__toggle::before, .news__toggle::after { content: ""; position: absolute; background: var(--c-text-muted); transition: transform 0.3s; }
.news__toggle::before { top: 5px; left: 0; right: 0; height: 2px; }
.news__toggle::after { left: 5px; top: 0; bottom: 0; width: 2px; }
.news__item.is-open .news__toggle::after { transform: scaleY(0); }
.news__body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.news__item.is-open .news__body { max-height: 600px; }
.news__body-inner { padding: 0 8px 24px; color: var(--c-text-muted); font-size: 14px; }
.news__link { display: inline-flex; gap: 6px; margin-top: 12px; color: var(--c-primary); font-weight: 600; }
.news__empty { text-align: center; color: var(--c-text-muted); padding: 40px 0; }

/* ---------- Float CTA（PC右下） ---------- */
.float-cta {
  position: fixed; right: 22px; bottom: 28px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 22px;
  border-radius: var(--radius-pill); background: var(--c-accent); color: #fff;
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 30px 70px rgba(0,0,0,0.14); }
.float-cta__pulse { position: relative; display: inline-grid; place-items: center; width: 9px; height: 9px; }
.float-cta__pulse::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #fff; }
.float-cta__pulse::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7); animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
@media (max-width: 768px) { .float-cta { display: none; } }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(255,255,255,0.96); border-top: 1px solid var(--c-border); backdrop-filter: blur(8px); }
.mobile-cta__inner { display: flex; }
.mobile-cta__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 10px 4px; font-size: 10px; color: var(--c-text); letter-spacing: 0.04em;
}
.mobile-cta__btn--line { background: var(--c-line); color: #fff; }
.mobile-cta__btn--primary { background: var(--c-primary); color: #fff; }
.mobile-cta__btn-icon svg { width: 22px; height: 22px; }

/* ---------- Cards / CTA（共通） ---------- */
.cta-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 880px; margin: 0 auto; }
.cta-card { display: block; padding: 32px 28px; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; text-align: center; }
.cta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.cta-card__label { font-family: var(--f-disp); letter-spacing: 0.2em; color: var(--c-primary); font-size: 12px; text-transform: uppercase; }
.cta-card__title { margin: 8px 0 10px; font-size: 19px; }
.cta-card__desc { color: var(--c-text-muted); font-size: 14px; }
.cta-card__btn { display: inline-block; margin-top: 16px; color: var(--c-primary); font-weight: 600; }

/* ---------- Form ---------- */
.form { max-width: 720px; margin: 0 auto; }
.form__intro { font-size: 13px; color: var(--c-text-muted); margin-bottom: 24px; }
.form__intro strong { color: var(--c-danger); }
.form__field { margin-bottom: 22px; }
.form__label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form__required { font-size: 11px; color: #fff; background: var(--c-danger); border-radius: 3px; padding: 2px 7px; margin-left: 6px; }
.form__optional { font-size: 11px; color: var(--c-text-muted); border: 1px solid var(--c-border); border-radius: 3px; padding: 2px 7px; margin-left: 6px; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--c-border); border-radius: var(--radius);
  background: #fff; font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px var(--c-primary-soft); }
.form__textarea { min-height: 160px; resize: vertical; }
.form__hint { display: block; margin-top: 6px; font-size: 12px; color: var(--c-text-muted); }
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; cursor: pointer; }
.form__check input { margin-top: 5px; }
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; border-radius: var(--radius-pill); background: var(--c-primary); color: #fff; font-weight: 600; letter-spacing: 0.1em; transition: background 0.2s; }
.form__submit:hover { background: var(--c-primary-deep); }
.form__submit:disabled { opacity: 0.6; cursor: default; }
.form__success { max-width: 720px; margin: 0 auto 24px; padding: 28px; border: 1px solid var(--c-primary); border-radius: var(--radius); background: var(--c-primary-soft); text-align: center; }
.form__error { padding: 14px; border: 1px solid var(--c-danger); border-radius: var(--radius); background: #fdecea; color: var(--c-danger); font-size: 14px; margin-bottom: 20px; }
.form__radio { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--c-border); border-radius: var(--radius-pill); cursor: pointer; margin: 0 8px 8px 0; }
.form__radio.is-checked { border-color: var(--c-primary); background: var(--c-primary-soft); }

/* ---------- FAQ ---------- */
.faq__item { border-bottom: 1px solid var(--c-border); }
.faq__q { width: 100%; text-align: left; padding: 20px 8px; font-weight: 600; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--c-text-muted); font-size: 14px; }
.faq__item.is-open .faq__a { max-height: 500px; padding: 0 8px 20px; }

/* ---------- Footer ---------- */
.ftr { background: #0f1c14; color: #ddd; padding: 64px 0 32px; }
.ftr__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.ftr__about { font-size: 13px; color: #aaa; margin-top: 14px; line-height: 1.9; }
.ftr__address, .ftr__hours { font-size: 13px; color: #aaa; margin-top: 8px; line-height: 1.9; font-style: normal; }
.ftr__tel a { font-family: var(--f-disp); font-size: 18px; letter-spacing: 0.06em; margin-top: 10px; display: inline-block; }
.ftr__sns { display: flex; gap: 14px; margin-top: 16px; }
.ftr__sns .sns-icon { width: 26px; height: 26px; }
.ftr__heading { font-family: var(--f-disp); letter-spacing: 0.2em; font-size: 12px; color: #fff; margin-bottom: 16px; text-transform: uppercase; }
.ftr__links { display: flex; flex-direction: column; gap: 10px; }
.ftr__links a { font-size: 14px; color: #aaa; transition: color 0.2s; }
.ftr__links a:hover { color: #fff; }
.ftr__logo img { width: auto; max-height: 36px; margin-bottom: 4px; }
.ftr__bottom { border-top: 1px solid #222; margin-top: 48px; padding-top: 24px; text-align: center; }
.ftr__copy { font-size: 12px; color: #666; letter-spacing: 0.06em; }

/* ---------- Utilities ---------- */
.pc-only { display: inline; }
@media (max-width: 768px) { .pc-only { display: none; } }
.ico { display: inline-block; vertical-align: middle; }

/* ---------- Fade-in ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hdr__burger { display: block; }
  .hdr__cta { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; padding: calc(var(--header-h) + 16px) 28px 28px;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 95;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15); overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--c-border); font-size: 15px; }
  .nav__sns { display: flex; gap: 16px; margin-top: 20px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .ftr__inner { grid-template-columns: 1fr; gap: 32px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 60px; }
  .news__head { flex-wrap: wrap; gap: 8px 12px; }
  .news__title { flex-basis: 100%; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
}
