@charset "UTF-8";
/* =================================================================
   サーラ住宅 トップページ
   - デザイントークン / 共通パーツ / 各セクション / レスポンシブ
   ================================================================= */

/* ---------- 1. デザイントークン（共通変数） ---------- */
:root {
  /* color */
  --green-dark: #3b5f4b;
  --green: #6b8e7a;
  --green-light: #deeee5;
  --bg: #f7f7f5;
  --black: #111111;
  --text: #151515;
  --white: #ffffff;
  --line: #e8ece9;
  --gray: #888888;

  /* font */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "Outfit", sans-serif;

  /* layout */
  --container: 1560px;  /* 幅広・ダイナミック */
  --gutter: 64px;       /* 左右マージン PC */
  --edge: 40px;         /* フルブリード要素のサイド余白（ヘッダーのロゴ頭と揃える） */
  --header-h: 80px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. リセット / ベース ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, p { margin: 0; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. 共通レイアウトパーツ ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 120px;
}

/* セクション見出し（和文＋英字） */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.sec-head.center { justify-content: center; }

.sec-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.sec-title .en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--green);
  text-transform: lowercase;
}

/* 英字のみの見出し（experience / service） */
.sec-title-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0.18em;
  color: var(--black);
  text-transform: lowercase;
  position: relative;
  padding-bottom: 18px;
}
.sec-title-en::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100px; height: 1px;
  background: var(--green);
}
.sec-head.center .sec-title-en::after { left: 50%; transform: translateX(-50%); }
.sec-title-en.small { font-size: 26px; }

/* more リンク（共通） */
.more-link {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 8px;
}
.more-link i {
  width: 8px; height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.more-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.more-link:hover i { transform: rotate(45deg) translate(2px, -2px); }
.more-link.light { color: var(--white); }

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding-inline: 22px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 4px;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-fill { background: var(--green-dark); color: var(--white); }
.btn-fill:hover { opacity: 0.85; }
.btn-outline { background: var(--white); color: var(--green-dark); border: 1px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--green-dark); }

/* ---------- 4. ヘッダー ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  z-index: 100;
  transition: height 0.3s var(--ease), box-shadow 0.3s;
}
.site-header.is-scrolled {
  height: 64px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.header-inner {
  height: 100%;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
/* ロゴ：ロゴ画像（ヘッダー高さに合わせて高さ基準で制御） */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo img {
  height: 30px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
/* スクロール縮小時はロゴも少し小さく */
.site-header.is-scrolled .logo img { height: 26px; }

.gnav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.gnav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}
.gnav-list a {
  font-size: 13px;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.3s;
}
.gnav-list a:hover { color: var(--green-dark); }
.gnav-cta { display: flex; gap: 10px; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 64px; height: 64px;
  background: var(--green-dark);
  position: fixed;
  top: 0; right: 0;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger em {
  font-family: var(--font-en);
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-top: 2px;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 5. FV（単写真フェードスライド＋白背景見出し） ---------- */
.fv {
  position: relative;
  padding-top: var(--header-h);
  padding-bottom: 80px;
  background: var(--white);
}
/* スライド：両サイドに少し余白を残した大判ビジュアル */
.fv-slider {
  position: relative;
  margin: 28px var(--edge) 0;
  height: clamp(480px, 82vh, 860px);
  overflow: hidden;
  border-radius: 4px;
}
.fv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
}
.fv-slide.is-active { opacity: 1; z-index: 1; }
.fv-slide img { width: 100%; height: 100%; object-fit: cover; }
.fv-slide.is-active img { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }

/* 白背景の見出し：右上だけ角丸、写真の左下に食い込ませる */
.fv-copy {
  position: absolute;
  left: var(--edge);
  bottom: 18px;
  z-index: 2;
  background: var(--white);
  padding: 32px 60px 30px 44px;
  border-radius: 0 16px 0 0;
}
.fv-lead {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.45;
  letter-spacing: 0.12em;
  color: var(--black);
}
.fv-sub {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.08em;
  color: #555;
  margin-top: 14px;
}
/* 時計モチーフ：見出しボックスの右上にさりげなく */
.fv-clock {
  position: absolute;
  top: -40px; right: 40px;
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--white);
}
.fv-clock video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 6. EVENT ---------- */
.event { background: var(--white); }
.event-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.tab {
  flex: 1;
  max-width: 280px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
}
.tab .en {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: lowercase;
}
.tab.is-active { color: var(--black); border-bottom-color: var(--green-dark); }

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card { display: flex; flex-direction: column; }
.card-img {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding-top: 20px; }
.card-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 14px;
}
.card-meta {
  font-size: 13px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 14px;
}

/* ---------- 7. EXPERIENCE / concept（ヒーロー直下・左テキスト＋右ビジュアル） ---------- */
.concept {
  background: var(--white);
  padding-block: 96px 120px;
  overflow: hidden;
}
/* ヒーローのスライド幅と左右端を揃える（--edge） */
.concept-inner {
  width: 100%;
  padding-inline: var(--edge);
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 72px;
  align-items: center;
}
.concept-text { max-width: 540px; }
.concept-text .sec-title-en {
  display: inline-block;
  font-size: 20px;
  padding-bottom: 14px;
  margin-bottom: 28px;
}

/* 右ビジュアル：大判＋左下に重なる小判（ヒーローの白box食い込みと呼応） */
.concept-visual { position: relative; }
.cv-main {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.cv-main img { width: 100%; height: 100%; object-fit: cover; }
.cv-sub {
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 44%;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.cv-sub img { width: 100%; height: 100%; object-fit: cover; }
.concept-big {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 28px;
}
.concept-body {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 36px;
}

/* 丸ピルボタン（リファレンス準拠） */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 52px;
  padding-inline: 32px;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--black);
  background: transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.btn-pill:hover { background: var(--black); color: var(--white); }

/* ---------- 8. SERVICE ---------- */
.service { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 629 / 439;
  color: var(--white);
}
.svc-img { position: absolute; inset: 0; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--green-dark);
  opacity: 0.55;
  z-index: 1;
  transition: opacity 0.4s;
}
.svc:hover .svc-img img { transform: scale(1.06); }
.svc:hover::before { opacity: 0.7; }

.svc-vtext {
  position: absolute;
  top: 44px; right: 40px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: var(--white);
}
.svc-cap {
  position: absolute;
  left: 44px; right: 44px; bottom: 44px;
  z-index: 2;
}
.svc-jp {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.svc-text {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  max-width: 540px;
}

/* ---------- 9. COMPANY ---------- */
.company { background: var(--bg); }
.company-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.company-text .sec-title { margin-bottom: 32px; }
.company-lead {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.company-body {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 36px;
}
.company-img { margin: 0; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; }
.company-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 10. NEWS ---------- */
.news { background: var(--white); }
.news-list { border-top: 1px solid var(--line); }
.news-item { border-bottom: 1px solid var(--line); }
.news-item a {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 8px;
  transition: background 0.3s;
}
.news-item a:hover { background: var(--bg); }
.news-date {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gray);
  flex-shrink: 0;
}
.news-cat {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  border: 1px solid var(--green);
  border-radius: 2px;
  padding: 3px 14px;
  flex-shrink: 0;
}
.news-ttl { font-size: 15px; letter-spacing: 0.04em; }

/* ---------- 11. CTA ---------- */
.cta { padding-block: 0 120px; background: var(--white); }
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 160px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
  transition: background 0.4s, color 0.4s;
}
.cta-box:hover { background: var(--green-light); color: var(--green-dark); }
.cta-jp { font-size: 20px; font-weight: 500; letter-spacing: 0.1em; }
.cta-en {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
}

/* ---------- 12. FOOTER ---------- */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding-block: 80px 32px;
}

/* サイトマップ */
.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.fcol-head {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 0.3s;
}
.fcol-head:hover { color: var(--green-light); }
.fcol-head--mt { margin-top: 28px; }
.fcol ul { display: flex; flex-direction: column; gap: 11px; }
.fcol ul a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s, padding-left 0.3s;
}
.fcol ul a:hover { color: var(--white); padding-left: 4px; }

/* 会社情報 */
.footer-company {
  padding-top: 48px;
}
.footer-logo { display: inline-block; line-height: 0; margin-bottom: 24px; }
.footer-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
}
.footer-license {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.footer-license li {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
}
.footer-sns { display: flex; gap: 16px; }
.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-sns a:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.footer-sns svg { width: 18px; height: 18px; }

.copy {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- 13. ドロワー（SPメニュー） ---------- */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: var(--green-dark);
  color: var(--white);
  z-index: 105;
  padding: 96px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  font-size: 16px;
  letter-spacing: 0.06em;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.drawer-cta .btn { height: 50px; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 104;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- 14. スクロールアニメーション ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: none; }

/* =================================================================
   レスポンシブ
   ================================================================= */

/* ---- タブレット（〜1024px） ---- */
@media (max-width: 1024px) {
  :root { --gutter: 40px; }
  .section { padding-block: 80px; }

  .gnav-list { gap: 16px; }
  .gnav-list a { font-size: 12px; }

  .fv-lead { font-size: 34px; }

  .event-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .company-inner { gap: 40px; }
  .company-lead { font-size: 20px; }

  /* フッターサイトマップ：3カラム */
  .footer-sitemap { grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
}

/* ---- ナビ折りたたみ（〜900px）：ハンバーガー表示 ---- */
@media (max-width: 900px) {
  .gnav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding-inline: 24px; padding-right: 80px; }
}

/* ---- スマートフォン（〜768px） ---- */
@media (max-width: 768px) {
  :root { --gutter: 24px; --header-h: 64px; }
  .section { padding-block: 64px; }

  .sec-head { margin-bottom: 36px; }
  .sec-title { font-size: 24px; gap: 12px; }
  .sec-title .en { font-size: 13px; }
  .sec-title-en { font-size: 26px; }
  .sec-title-en.small { font-size: 22px; }

  /* FV：スライドを縦長に、白見出しは下端で食い込み */
  .fv { padding-bottom: 48px; }
  .fv-slider { margin: 16px var(--edge) 0; height: 64vh; min-height: 380px; }
  .fv-copy { left: var(--edge); bottom: -8px; padding: 28px 36px 26px 28px; border-radius: 0 14px 0 0; }
  .fv-lead { letter-spacing: 0.08em; }
  .fv-sub { font-size: 13px; }
  .fv-sub br { display: none; }
  .fv-clock { width: 56px; height: 56px; top: -28px; right: 24px; }

  /* EVENT：横スクロール1.2枚見せ */
  .event-tabs { margin-bottom: 32px; }
  .tab { font-size: 14px; padding: 14px 6px; }
  .event-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
  }
  .event-grid::-webkit-scrollbar { display: none; }
  .card { scroll-snap-align: start; }

  /* EXPERIENCE：縦積み（テキスト→ビジュアル） */
  .concept { padding-block: 56px 64px; }
  .concept-inner { grid-template-columns: none; gap: 44px; }
  .concept-text { max-width: none; order: -1; }
  .concept-big { font-size: 28px; }
  .cv-sub { left: auto; right: -8px; bottom: -8px; width: 40%; border-width: 4px; }
  .btn-pill { width: 100%; }

  /* SERVICE：1カラム */
  .service-grid { grid-template-columns: none; gap: 16px; }
  .svc { aspect-ratio: 16 / 11; }
  .svc-cap { left: 28px; right: 28px; bottom: 28px; }
  .svc-jp { font-size: 19px; }
  .svc-vtext { top: 28px; right: 24px; }

  /* COMPANY：縦積み */
  .company-inner { grid-template-columns: none; gap: 28px; }
  .company-img { order: -1; }
  .company-lead { font-size: 18px; }

  /* NEWS */
  .news-item a { flex-wrap: wrap; gap: 8px 16px; padding: 18px 4px; }
  .news-ttl { flex-basis: 100%; font-size: 14px; }

  /* CTA：縦積み */
  .cta { padding-bottom: 64px; }
  .cta-grid { grid-template-columns: none; gap: 12px; }
  .cta-box { height: 96px; flex-direction: row; gap: 14px; }

  /* FOOTER */
  .footer-sitemap { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; padding-bottom: 40px; }
  .footer-company { padding-top: 36px; }
}

/* ---- 細い端末（〜400px） ---- */
@media (max-width: 400px) {
  .fv-lead { font-size: 24px; }
  .footer-sitemap { grid-template-columns: 1fr; }
}

/* ---- アニメーション抑制設定 ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
