/* ===========================================
   116（ヒイロ） LP メインスタイル
   =========================================== */

:root {
  /* --- ブランドカラー --- */
  --color-yellow: #fff001;
  --color-black: #000000;
  --color-navy: #1d2087;
  --color-bg: #f1f1f1;
  --color-white: #ffffff;
  --color-gray-bg: #f6f6f6;
  --color-gray-text: #878787;
  --color-text: #000000;

  /* --- タイポグラフィ --- */
  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Inter", sans-serif;
  --font-display: "Noto Sans JP", sans-serif; /* 見出し用（black） */

  /* --- レイアウト --- */
  --container-width: 1224px;
  --container-padding: 24px;
  --radius-card: 10px;
  --radius-pill: 999px;

  /* --- スキュー見出し（Figmaデザインの特徴：斜体っぽい見出し） --- */
  --skew-angle: -19.7deg;
  --skew-scale-y: 0.94;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-black);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

/* PC設計幅(1440px)に対して中央1224pxを基本コンテナとする */

/* ===========================================
   共通：スキュー見出し（WHY 116? / Services / About us 等の大見出し）
   =========================================== */
.skew-heading {
  display: inline-flex;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
  transform-origin: left center;
}
.skew-heading__inner {
  display: inline-block;
  transform: skewX(var(--skew-angle)) scaleY(var(--skew-scale-y));
}

/* セクション共通の見出しエリア */
.section-eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  background: var(--color-black);
  color: var(--color-yellow);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  /* タイトルの下に来るため、上マージンで間隔調整 */
  margin-top: 10px;
  margin-bottom: 0;
}

.section-title {
  font-size: clamp(32px, 5vw, 60px);
  margin: 0;
}

/* タグ（10年以上の業界経験／完全自社施工 など） */
.tag-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-yellow);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  white-space: nowrap;
}

/* ボタン共通 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.28s ease;
}
/* ペンキ塗り：左から右へ広がる */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn--primary {
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
}
.btn--primary:hover {
  color: var(--color-yellow);
}
.btn--small {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
}

/* セクション間の余白 */
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

/* スクリーンリーダー用 */
.screen-reader-text {
  position: absolute;
  left: -9999px;
}

/* フォーカス可視化（アクセシビリティ） */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-navy);
  outline-offset: 2px;
}

/* モーションはブランド演出の核のためOSの低減設定より優先する */

/* ===========================================
   ヘッダー
   =========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  padding: 20px 0;
}

.site-header__inner {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__logo img {
  width: 151px;
  height: auto;
}

/* ナビを右側に寄せる */
.site-header__nav {
  margin-left: auto;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.site-header__nav-list a {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  height: 1.3em;
  overflow: hidden;
}
/* フリップアニメーション */
.nav-flip__front,
.nav-flip__back {
  display: block;
  line-height: 1.3;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-flip__back {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--color-black);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.site-header__nav-list a:hover .nav-flip__front {
  transform: translateY(-100%);
}
.site-header__nav-list a:hover .nav-flip__back {
  transform: translateY(-100%);
}

/* 電話番号＋CTAをまとめたコンタクトブロック */
.site-header__contact {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--color-black);
  border-radius: 100px;
  padding: 8px 8px 8px 20px;
}

.site-header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 16px;
  line-height: 1.25;
  text-decoration: none;
  color: inherit;
}

/* tel:リンクの見た目をリセット */
.tel-link,
.site-footer__phone {
  text-decoration: none;
  color: inherit;
}
.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-yellow);
  margin: 0 0 4px;
}
.site-header__phone-icon {
  color: var(--color-yellow);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transform-origin: bottom center;
  animation: icon-nudge 8s ease-in-out 3s infinite;
}
.site-header__phone-text {
  display: flex;
  flex-direction: column;
}
.site-header__phone-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--color-yellow);
}
.site-header__phone-hours {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  color: #fff;
}

.site-header__cta {
  white-space: nowrap;
  border-radius: 100px;
  background: var(--color-yellow);
  color: var(--color-black);
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  gap: 6px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.28s ease,
    border-color 0.28s ease;
}
.site-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.site-header__cta:hover::before {
  transform: scaleX(1);
}
.site-header__cta:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ハンバーガーボタン（PC非表示） */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: auto;
  height: auto;
  padding: 10px 13px;
  margin-left: auto;
  cursor: pointer;
  background: var(--color-black);
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
}
.site-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  transform-origin: center;
}
/* 開いたときの✕形状（gap:5px height:2.5px → center距離7.5px） */
.site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- オーバーレイ ---- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- スライドインナビ（右から） ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100dvh;
  background: var(--color-white);
  z-index: 200;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
}
.mobile-nav.is-open {
  transform: translateX(0);
  opacity: 1;
}

/* 閉じるボタン */
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-nav__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
}
.mobile-nav__close span:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-nav__close span:nth-child(2) {
  transform: rotate(-45deg);
}

/* ロゴエリア */
.mobile-nav__logo {
  padding: 28px 24px 20px;
  border-bottom: 1px solid #eee;
}
.mobile-nav__logo img {
  width: 90px;
  height: auto;
}

/* ナビリスト */
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  margin: 0;
  list-style: none;
}
.mobile-nav__list li {
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-black);
  text-decoration: none;
}
.mobile-nav__list a::after {
  content: "→";
  font-size: 12px;
  opacity: 0.4;
}

/* CTAエリア */
.mobile-nav__cta-wrap {
  padding: 20px 24px;
  margin-top: auto;
  border-top: 1px solid #eee;
}
.mobile-nav__cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-nav__cta-main:hover {
  background: #ffe800;
}
.mobile-nav__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav__cta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #06c755;
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-nav__cta-line:hover {
  background: #05b34c;
}
.mobile-nav__cta-line img {
  width: 22px;
  height: 22px;
}

/* フッター（電話） */
.mobile-nav__footer {
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--color-black);
  text-decoration: none;
}
.mobile-nav__hours {
  font-size: 11px;
  color: #888;
  padding-left: 0;
}

@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }
  .site-header__phone {
    display: none;
  }
  .site-header__contact {
    padding: 0;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .site-header__contact {
    display: none;
  }
  .site-header__menu-toggle {
    display: flex;
  }
  .site-header__logo img {
    width: 100px;
  }
}

/* ===========================================
   ヒーローセクション
   =========================================== */
.hero {
  padding: 80px 0 60px;
  overflow: visible;
}

/* コンテナを使わず64px paddingで1312pxカードを実現 */
.hero__outer {
  padding: 0 64px;
}

/* 黄色の枠付きカード（Figma: w=1312, h=599） */
.hero__card {
  position: relative;
  max-width: 1312px;
  margin: 0 auto;
  background: var(--color-yellow);
  border: 5px solid var(--color-navy);
  border-radius: 20px;
  height: 599px;
  overflow: visible;
}

/* ============================================
   カード内要素（全て card-relative 座標）
   Figma card: x=64, y=163 → 下記は全て相対値
   ============================================ */

/* HIIRO116背景テキスト：カード幅いっぱい・中央揃え・下線付き */
.hero__bgtext {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 240px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-black);
  z-index: 1;
  user-select: none;
  pointer-events: none;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* テキスト文字自体にskewを適用（flexコンテナではなく文字に直接） */
.hero__bgtext-inner {
  display: inline-block;
  transform: skewX(var(--skew-angle)) scaleY(var(--skew-scale-y));
  transform-origin: center center;
}
.hero__bgtext::after {
  content: "";
  display: block;
  width: 92%;
  height: 5px;
  background: var(--color-black);
  margin-top: 10px;
}

/* キャラクター：カードから飛び出し＋headerより前面 */
.hero__character {
  position: absolute;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  width: 300px;
  height: auto;
  z-index: 101; /* header(100)より上 */
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

/* キャッチ内ルビ（あなた16の「いろ」） */
.hero__catch ruby {
  ruby-align: center;
}
.hero__catch rt {
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: -0.15em;
}

/* キャッチコピー：キャラクターの左右に分割配置（HIIRO116の上） */
.hero__catch {
  position: absolute;
  top: 36px;
  font-weight: 900;
  font-size: 50px;
  line-height: 1.1;
  margin: 0;
  z-index: 2;
  white-space: nowrap;
}
.hero__catch--left,
.hero__catch--right {
  /* ルビ（ふりがな）の有無に関わらずベーステキストの下端を揃える */
  display: flex;
  align-items: flex-end;
  height: 1.1em;
}
.hero__catch--left {
  right: calc(50% + 168px);
  justify-content: flex-end;
}
.hero__catch--right {
  left: calc(50% + 168px);
  justify-content: flex-start;
}
/* モバイル専用要素はPCで非表示 */
.hero__catch--mobile {
  display: none;
}

/* CTAセット：HIIRO116下線〜カード下辺の上下中央あたり */
.hero__cta-wrap {
  position: absolute;
  left: 40px;
  top: 410px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

/* 相談CTA：黒ベースのピル */
.hero__cta-consult {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 999px;
  padding: 20px 36px 20px 32px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 320px;
  border: 2px solid var(--color-black);
  transition: color 0.28s ease;
}
.hero__cta-consult::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.hero__cta-consult:hover::before {
  transform: scaleX(1);
}
.hero__cta-consult:hover {
  color: var(--color-black);
}
.hero__cta-consult:hover .hero__cta-dot {
  background: var(--color-black);
}
.hero__cta-consult:hover .hero__cta-label {
  color: var(--color-black);
}
.hero__cta-consult:hover .hero__cta-sub {
  color: var(--color-black);
  opacity: 0.7;
}
.hero__cta-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.65;
  line-height: 1;
}
.hero__cta-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--color-yellow);
  line-height: 1.2;
}
.hero__cta-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-white);
  flex-shrink: 0;
}
.hero__cta-texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* LINE CTA：緑ベース→hover時に白反転 */
.hero__cta-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #06c755;
  border: 3px solid #06c755;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.hero__cta-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.hero__cta-line:hover {
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.45);
  border-color: #06c755;
}
.hero__cta-line:hover::before {
  transform: scale(1);
}
.hero__cta-line:hover .hero__cta-line-icon {
  filter: invert(48%) sepia(98%) saturate(500%) hue-rotate(100deg)
    brightness(95%);
}
.hero__cta-line-icon {
  display: block;
  width: 30px;
  height: auto;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}
.hero__cta-line-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.hero__cta-line:hover .hero__cta-line-text {
  color: #06c755;
}

/* ヘッドライン：キャラクターから離して右寄せ */
.hero__headline {
  position: absolute;
  left: 890px;
  top: 390px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 2px;
  line-height: 1.2;
  margin: 0;
  z-index: 2;
}
.hero__headline-top {
  display: block;
  font-size: 30px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
}
/* 「高品質・低価格」部分を強調 */
.hero__headline-strong {
  display: block;
  font-size: 46px;
  color: var(--color-navy);
  letter-spacing: 2px;
  line-height: 1.1;
}

/* サブヘッド：ヘッドラインに近づける */
.hero__subhead {
  position: absolute;
  left: 890px;
  top: 506px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin: 0;
  z-index: 2;
  padding: 5px 14px;
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
}
.hero__subhead::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   レスポンシブ（960px以下）
   ============================================ */
@media (max-width: 960px) {
  .hero__outer {
    padding: 0 24px;
  }
  .hero__card {
    height: auto;
    min-height: 480px;
    padding: 60px 32px 200px;
  }
  .hero__bgtext {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    font-size: clamp(40px, 12vw, 120px);
    text-align: center;
    margin: 0 0 -80px;
  }
  .hero__character {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: block;
    margin: 0 auto;
    width: 180px;
  }
  .hero__catch,
  .hero__catch--left,
  .hero__catch--right {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    font-size: clamp(20px, 5.5vw, 36px);
    text-align: center;
    display: block;
    margin: 8px 0;
    white-space: normal;
  }
  .hero__cta-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 24px 0 0;
  }
  .hero__cta-consult {
    min-width: unset;
    border-radius: 16px;
  }
  .hero__cta-line {
    width: 80px;
    height: 80px;
    align-self: center;
  }
  .hero__headline {
    position: relative;
    left: auto;
    top: auto;
    font-size: clamp(16px, 4vw, 28px);
    text-align: center;
    margin: 16px 0 8px;
  }
  .hero__subhead {
    position: relative;
    left: auto;
    top: auto;
    font-size: clamp(14px, 3.5vw, 22px);
    text-align: center;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .line-float {
    right: 16px;
    bottom: 16px;
  }
}

/* ===========================================
   WHY 116? セクション
   =========================================== */

/* 2カラムレイアウト：左sticky ＋ 右スクロール */
.why-section__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}

.why-section__left {
  position: sticky;
  top: 164px; /* header: logo117px + padding40px = 157px + 7px余白 */
}

.why-section__lead {
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 24px 0 16px;
  line-height: 1.4;
}
.why-section__lead-line {
  display: inline-flex;
  position: relative;
  z-index: 0;
}
.why-section__lead-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.22em;
  background: var(--color-yellow);
  transform: skewX(var(--skew-angle));
  z-index: -1;
}
.why-section__desc {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #d0d0d0;
}
.why-list__item:first-child {
  border-top: none;
}
.why-list__photo {
  padding: 12px 16px 12px 0;
  overflow: hidden;
}
.why-list__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.why-list__body {
  padding: 28px 20px 28px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.why-list__title {
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 4px;
  line-height: 1.3;
}
.why-list__sub {
  display: flex;
  align-items: flex-end;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--color-black);
}
.why-list__sub-badge {
  position: relative;
  z-index: 0;
  padding: 1px 20px 1px 10px;
  white-space: nowrap;
}
.why-list__sub-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-yellow);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
  z-index: -1;
}
.why-list__sub-line {
  flex: 1;
  height: 2px;
  background: var(--color-yellow);
  margin-left: -2px;
}
.why-list__text {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 960px) {
  .why-section__inner {
    grid-template-columns: 1fr;
  }
  .why-section__left {
    position: static;
  }
  .why-list__item {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   Services セクション
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-left: 1px solid var(--color-black);
  border-top: 1px solid var(--color-black);
}

.service-card {
  position: relative;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* 左ブロック：番号 + SERVICE ラベルを縦積み・中央揃え
   （左右均等paddingではなく親のgapで間隔を取り、番号自体を
   ボックス内で正しく中央揃えする） */
.service-card__left {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

/* 右ブロック：タイトル + テキストを縦積み・中央揃え */
.service-card__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

/* 数字・ラベルともflexで中央寄せ。text-alignと違い、
   中身が列幅からはみ出しても左右均等に広がるため必ず中央に揃う */
.service-card__no-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.service-card__no {
  font-family: "Special Gothic Expanded One", var(--font-en);
  font-weight: 700;
  font-size: 80px;
  line-height: 0.85;
}

.service-card__label-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 6px;
}
.service-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  border-radius: var(--radius-pill);
  color: var(--color-black);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}

.service-card__title {
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 8px;
}

.service-card__text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #555;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .service-card {
    padding: 20px 16px;
  }
  .service-card__left {
    width: 72px;
  }
  .service-card__no {
    font-size: 48px;
  }
}

/* ===========================================
   About us セクション
   =========================================== */
.about-section__header {
  margin-bottom: 32px;
}

.about-section__tags {
  display: flex;
  gap: 10px;
  margin: 20px 0 0;
  flex-wrap: wrap;
}

.about-section__heading {
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0;
}
.about-section__heading-line {
  display: inline-flex;
  position: relative;
  z-index: 0;
}
.about-section__heading-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.28em;
  background: var(--color-yellow);
  transform: skewX(var(--skew-angle));
  z-index: -1;
}

/* PC：テキストカードとキャラクターを2枚並びで上端を揃える */
.about-section__row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.about-section__photo {
  order: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-section__card {
  order: 1;
  background: var(--color-white);
  border-radius: 10px;
  padding: 32px;
}
.about-section__char {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
.about-section__name {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 4px;
}
.about-section__role {
  font-size: 14px;
  margin: 0 0 16px;
}
.about-section__bio {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}
.about-section__bio + .about-section__bio {
  margin-top: 14px;
}

/* モバイル：2枚のカードを継ぎ目なくつなげ、1枚の白枠に見せる
   （キャラクターが上・本文が下）*/
@media (max-width: 900px) {
  .about-section__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-section__photo {
    order: 1;
    background: var(--color-white);
    border-radius: 10px 10px 0 0;
    padding: 28px 24px 0;
  }
  .about-section__char {
    width: 190px;
    margin: 0 auto;
  }
  .about-section__card {
    order: 2;
    border-radius: 0 0 10px 10px;
    padding-top: 20px;
  }
}

/* ===========================================
   Instagram セクション
   =========================================== */
.instagram-card {
  background: var(--color-white);
  border-radius: 20px;
  margin-top: 40px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.instagram-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}

.instagram-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-card__meta {
  flex: 1;
  min-width: 160px;
}
.instagram-card__name {
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 2px;
}
.instagram-card__sub {
  font-size: 13px;
  color: var(--color-gray-text);
  margin: 0;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  padding: 10px 24px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.instagram-follow-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.instagram-grid__item {
  overflow: hidden;
  border-radius: var(--radius-card);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}
.instagram-grid__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

@media (max-width: 600px) {
  .instagram-card {
    padding: 28px 20px;
  }
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   FAQ セクション
   =========================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
}

/* 質問行：閉じている状態 */
.faq-item__question {
  background: var(--color-white);
  color: var(--color-text);
}
/* 質問行：開いている状態 → 黒背景・白文字 */
.faq-item.is-open .faq-item__question {
  background: var(--color-black);
  color: var(--color-white);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
}

.faq-item__q-mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
}
.faq-item.is-open .faq-item__q-mark {
  background: var(--color-yellow);
  color: var(--color-black);
}

.faq-item__q-text {
  flex: 1;
  font-weight: 500;
  font-size: 16px;
}

.faq-item__toggle {
  flex-shrink: 0;
  width: 21.5px;
  height: 21.5px;
  position: relative;
  color: var(--color-black);
}
.faq-item.is-open .faq-item__toggle {
  color: var(--color-white);
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-item__toggle::before {
  width: 100%;
  height: 2px;
}
.faq-item__toggle::after {
  width: 2px;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

/* FAQ アコーディオン：grid 0fr→1fr で実コンテンツ高さちょうどまで滑らかに開閉 */
.faq-item__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-item__answer-wrap {
  grid-template-rows: 1fr;
}
.faq-item__answer {
  overflow: hidden;
  min-height: 0;
}
.faq-item__answer > p {
  padding: 20px 24px 28px 86px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  background: var(--color-white);
  color: var(--color-black);
}

/* ===========================================
   Profile セクション
   =========================================== */
.profile-section__inner {
  display: grid;
  grid-template-columns: 585px 1fr;
  gap: 60px;
  align-items: stretch;
}

.profile-section__map img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 585 / 390;
  object-fit: cover;
}
.profile-section__map-frame {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.profile-section__map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.profile-table {
  margin: 32px 0 0;
}
.profile-table__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}
.profile-table__row dt {
  font-weight: 900;
  font-size: 14px;
}
.profile-table__row dd {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 900px) {
  .profile-section__inner {
    grid-template-columns: 1fr;
  }
  /* モバイルはテーブル→マップの順に */
  .profile-section__data {
    order: 1;
  }
  .profile-section__map {
    order: 2;
  }
  .profile-section__map-frame {
    height: auto;
    aspect-ratio: 585 / 390;
  }
  .profile-table__row {
    grid-template-columns: 100px 1fr;
  }
}

/* ===========================================
   Contact セクション
   =========================================== */
.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  margin-top: 40px;
  padding: 60px 80px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

/* ステップインジケーター */
.contact-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 360px;
  margin: 0 auto 32px;
}
.contact-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  height: 1px;
  background: #ccc;
  z-index: 0;
}
.contact-steps__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-steps__circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Special Gothic Expanded One", var(--font-en);
  font-weight: 700;
  font-size: 17px;
  color: #ccc;
  transition: all 0.2s ease;
}
.contact-steps__item.is-active .contact-steps__circle {
  background: var(--color-yellow);
  border-color: var(--color-black);
  color: var(--color-black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.contact-steps__item.is-done .contact-steps__circle {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}
.contact-steps__label {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #999;
  font-weight: 500;
}
.contact-steps__item.is-active .contact-steps__label {
  color: var(--color-black);
  font-weight: 700;
}

.contact-card__lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 40px;
}

/* フォーム行 */
.form-row {
  margin-bottom: 28px;
}
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #333;
}
.form-row__required {
  display: inline-block;
  color: #e04040;
  font-size: 10px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0;
  text-transform: none;
  padding: 2px 6px;
  border: 1px solid currentColor;
  border-radius: 3px;
  line-height: 1.4;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select {
  width: 100%;
  height: 52px;
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 0 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
  outline: none;
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row input[type="tel"]:focus,
.form-row select:focus {
  border-bottom-color: var(--color-black);
  background: #fff;
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-color: #fafafa;
  cursor: pointer;
}

.form-row--checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
  margin-top: 32px;
}
.form-row--checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  accent-color: var(--color-black);
  cursor: pointer;
}
.form-row--checkbox label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #333;
}

/* 任意項目エリア：区切り・説明・トグル */
.form-optional-divider {
  border: none;
  border-top: 1px dashed #ccc;
  margin: 32px 0 20px;
}
.form-optional-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  margin: 0 0 16px;
  text-align: center;
}
.form-optional-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  background: none;
  border: 1.5px solid var(--color-black);
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.28s ease,
    border-color 0.28s ease;
}
.form-optional-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.form-optional-toggle:hover::after {
  transform: scaleX(1);
}
.form-optional-toggle:hover {
  color: var(--color-white);
}
.form-optional-area {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.form-optional-area.is-open {
  max-height: 2000px;
}
.form-optional-area .form-row:first-child {
  margin-top: 28px;
}
/* textareaのスタイル（form-row input流用） */
.form-row textarea {
  width: 100%;
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 4px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
  outline: none;
}
.form-row textarea:focus {
  border-bottom-color: var(--color-black);
  background: #fff;
}

/* プライバシーポリシー注記 */
.form-privacy-note {
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin: 16px 0 0;
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 6px;
}
.form-privacy-note__link {
  color: var(--color-navy);
  text-decoration: underline;
}
.form-privacy-note__link:hover {
  opacity: 0.75;
}

.contact-form__next,
.contact-form__submit {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 40px auto 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 18px 32px;
}
.contact-form__actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-top: 32px;
}
.contact-form__actions .btn {
  white-space: nowrap;
}
.contact-form__back {
  border: 1px solid var(--color-black);
  border-radius: 999px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
/* スマホ：縦積みでフル幅（送信するを上に） */
@media (max-width: 600px) {
  .contact-form__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .contact-form__actions form {
    width: 100%;
  }
  .contact-form__actions .contact-form__submit,
  .contact-form__back {
    width: 100%;
    justify-content: center;
  }
}

/* 確認画面 */
.contact-confirm {
  margin: 0 0 16px;
}
.contact-confirm__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.contact-confirm__row dt {
  font-weight: 700;
  font-size: 14px;
}
.contact-confirm__row dd {
  font-size: 14px;
  margin: 0;
}

.contact-complete {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 32px 24px;
  }
  .contact-steps {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================================
   プライバシーポリシーページ
   =========================================== */
.privacy-page__card {
  background: var(--color-white);
  border-radius: 20px;
  margin-top: 40px;
  padding: 60px 80px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}
.privacy-page__intro {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 32px;
}
.privacy-page__card h2 {
  font-size: 17px;
  font-weight: 900;
  margin: 36px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--color-yellow);
  line-height: 1.4;
}
.privacy-page__card p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 12px;
}
.privacy-page__card ul {
  margin: 0 0 12px;
  padding-left: 4px;
}
.privacy-page__card ul li {
  font-size: 14px;
  line-height: 1.9;
  padding-left: 16px;
  position: relative;
}
.privacy-page__card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-black);
}
.privacy-page__card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-page__card a:hover {
  opacity: 0.7;
}
.privacy-page__date {
  margin-top: 40px !important;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #666;
  text-align: right;
}

@media (max-width: 768px) {
  .privacy-page__card {
    padding: 32px 24px;
    border-radius: 14px;
  }
}

/* ===========================================
   フッター
   =========================================== */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 100px 100px 0 0;
  padding: 120px 0 48px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__character {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
}
.site-footer__character img {
  display: block;
  width: 100%;
  height: auto;
}

/* ロゴ */
.site-footer__logo {
  margin-bottom: 12px;
}
.site-footer__logo img {
  width: 64px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* キャッチコピー */
.site-footer__tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--color-yellow);
  margin: 0 0 28px;
}

/* CTAエリア */
.site-footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.28s ease;
}
.site-footer__cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.site-footer__cta-btn:hover::before {
  transform: scaleX(1);
}
.site-footer__cta-btn:hover {
  color: var(--color-black);
}

.site-footer__cta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06c755;
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  border: 2px solid #06c755;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.28s ease,
    border-color 0.28s ease;
}
.site-footer__cta-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.site-footer__cta-line:hover::before {
  transform: scaleX(1);
}
.site-footer__cta-line:hover {
  color: #06c755;
}

/* ナビ */
.site-footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0 auto 32px;
  padding: 0;
  list-style: none;
}
.site-footer__nav-list a {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-white);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-footer__nav-list a:hover {
  color: var(--color-yellow);
  opacity: 1;
}

.site-footer__cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.28s ease;
}
.site-footer__cta-instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.site-footer__cta-instagram:hover::before {
  transform: scaleX(1);
}
.site-footer__cta-instagram:hover {
  color: #c1358d;
}

/* 区切り線 */
.site-footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 28px 0;
}

/* 電話・住所 */
.site-footer__contact-info {
  margin-bottom: 24px;
}
.site-footer__hours {
  font-family: var(--font-en);
  font-size: 13px;
  opacity: 0.6;
  margin: 0 0 8px;
}
.site-footer__address {
  font-size: 13px;
  opacity: 0.5;
  margin: 0;
  letter-spacing: 0.04em;
}
.site-footer__copyright {
  font-family: var(--font-en);
  font-size: 11px;
  margin: 0;
  opacity: 0.4;
  letter-spacing: 0.06em;
}

/* LINE固定フローティングボタン */
.line-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #06c755;
  border: 3px solid #06c755;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  /* 表示/非表示 transition */
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  /* hover用白ワイプのベース */
  position: fixed;
  overflow: hidden;
  isolation: isolate;
}
.line-float::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.line-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  /* 周期アニメーション：表示後に開始 */
  animation: float-nudge 9s ease-in-out 5s infinite;
}
.line-float:hover {
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.5);
  border-color: #06c755;
  animation: none; /* hover中は周期アニメ停止 */
}
.line-float:hover::before {
  transform: scale(1);
}
.line-float__inner {
  display: flex;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}
.line-float:hover .line-float__inner {
  filter: invert(48%) sepia(98%) saturate(500%) hue-rotate(100deg)
    brightness(95%);
}
.line-float__label {
  color: var(--color-white);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.line-float:hover .line-float__label {
  color: #06c755;
}

@media (max-width: 600px) {
  .line-float {
    width: 78px;
    height: 78px;
    right: 16px;
    bottom: 16px;
    gap: 4px;
  }
  .line-float__inner svg {
    width: 30px;
    height: 28px;
  }
  .line-float__label {
    font-size: 10px;
  }
}

/* ===========================================
   サンクスページ / 確認ページ
   =========================================== */
.thanks-section .contact-card {
  max-width: 720px;
  margin: 40px auto 0;
}
.thanks-body {
  text-align: center;
  padding: 16px 0 8px;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: var(--color-navy);
}
.thanks-icon svg {
  width: 100%;
  height: 100%;
}
.thanks-eyebrow {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--color-navy);
  margin: 0 0 8px;
}
.thanks-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 20px;
}
.thanks-message {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 40px;
}
.thanks-flow {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 40px;
}
.thanks-flow__title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}
.thanks-flow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.thanks-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.thanks-flow__no {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-yellow);
  border: 2px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}
.thanks-flow__body strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.thanks-flow__body p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.thanks-btn {
  display: inline-flex;
  padding: 16px 48px;
}
/* 確認ページ：送信ボタンの幅自動調整 */
.contact-form__actions .contact-form__submit {
  width: auto;
  margin: 0;
}
@media (max-width: 600px) {
  .contact-form__actions .contact-form__submit {
    width: 100%;
  }
}

/* ===========================================
   アニメーション共通
   =========================================== */

/* --- ビリビリ振動（telアイコン / LINEフロート 共用） ---
   8秒ごとに1回、ごくわずかに回転するだけ。気づくか気づかないかの閾値に設定。 */
@-webkit-keyframes hero-ticker {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes hero-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* モバイル専用Ticker：PCでは非表示 */
.hero__ticker {
  display: none;
}

@keyframes icon-nudge {
  0%,
  88%,
  100% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-12deg);
  }
  93% {
    transform: rotate(10deg);
  }
  96% {
    transform: rotate(-7deg);
  }
  99% {
    transform: rotate(4deg);
  }
}

/* LINEフロートの周期アニメーション（scale版） */
@keyframes float-nudge {
  0%,
  88%,
  100% {
    transform: translateY(0) scale(1);
  }
  90% {
    transform: translateY(-3px) scale(1.04);
  }
  94% {
    transform: translateY(1px) scale(0.98);
  }
  97% {
    transform: translateY(-2px) scale(1.02);
  }
}

/* FAQ 質問行の背景色遷移をスムーズに */
.faq-item__question {
  transition:
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item__q-mark {
  transition:
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------
   ヒーローセクション入場アニメーション
   .hero--ready クラス付与で発火
------------------------------------------ */
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* キャラクターはX方向の中央寄せ(translateX(-50%))を保持したままYのみアニメーション */
@keyframes hero-enter-char {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* 初期状態は非表示（.hero--ready が付く前） */
.hero__bgtext,
.hero__character,
.hero__catch,
.hero__headline,
.hero__subhead,
.hero__balloon-wrap {
  opacity: 0;
}

/* .hero--ready 付与後に順番にフェードイン */
.hero--ready .hero__bgtext {
  animation: hero-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
.hero--ready .hero__character {
  animation: hero-enter-char 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.hero--ready .hero__catch {
  animation: hero-enter 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}
.hero--ready .hero__headline {
  animation: hero-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}
.hero--ready .hero__subhead {
  animation: hero-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}
.hero--ready .hero__balloon-wrap {
  animation: hero-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* ------------------------------------------
   スクロール出現アニメーション
   JS が .anim-target を付与し、
   Intersection Observer が .is-visible を付与
------------------------------------------ */
.anim-target {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay, 0s),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay, 0s);
}
.anim-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* prefers-reduced-motion対応は撤去済み（モーションがブランド演出の核のため） */

/* ============================================================
   RESPONSIVE — tablet (≤ 1024px) + mobile (≤ 768px / ≤ 480px)
   ============================================================ */

/* ---- Hero: タブレット〜 (≤ 1100px) flex列レイアウト統一 ---- */
@media (max-width: 1100px) {
  .hero__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: unset;
    overflow: hidden;
    padding: 32px 40px 48px;
  }
  .hero__catch {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    order: 1;
    font-size: clamp(22px, 3.6vw, 36px);
    align-self: center;
    white-space: nowrap;
    margin: 0;
  }
  .hero__catch--left {
    right: auto;
    text-align: center;
  }
  .hero__catch--right {
    left: auto;
    text-align: center;
  }
  .hero__bgtext {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    order: 2;
    font-size: clamp(52px, 11vw, 100px);
    width: 100%;
    margin-top: 8px;
    margin-bottom: -14px;
    text-align: center;
  }
  .hero__character {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 3;
    width: clamp(180px, 24vw, 280px);
    height: auto;
    z-index: 2;
    margin: 0 auto;
  }
  .hero--ready .hero__character {
    animation: hero-enter 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  }
  .hero__headline {
    position: relative;
    top: auto;
    left: auto;
    order: 4;
    font-size: clamp(13px, 1.8vw, 20px);
    text-align: center;
    margin: 16px 0 6px;
  }
  .hero__headline-top {
    font-size: clamp(12px, 1.7vw, 18px);
  }
  .hero__headline-strong {
    font-size: clamp(26px, 4.5vw, 42px);
    letter-spacing: 0;
  }
  .hero__subhead {
    position: relative;
    top: auto;
    left: auto;
    order: 4;
    font-size: 14px;
    align-self: center;
  }
  .hero__cta-wrap {
    position: relative;
    top: auto;
    left: auto;
    order: 5;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 16px;
    margin-top: 24px;
    z-index: 4;
  }
  .hero__cta-consult {
    flex: 1;
    max-width: 340px;
    border-radius: 14px;
  }
  /* モバイルhero内のLINE CTAは非表示（スマホはお問い合わせボタンのみ） */
  .hero__cta-line {
    display: none;
  }
}

/* ---- Mobile base (≤ 768px) ---- */
@media (max-width: 768px) {
  /* --- Container --- */
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 56px 0;
  }

  /* --- Section typography --- */
  .section-eyebrow {
    font-size: 11px;
  }
  .section-title {
    font-size: clamp(36px, 12vw, 56px);
  }

  /* ================================================
     HERO — 参照サイト準拠（角丸カード内レイアウト）
     カードが画面幅いっぱいでなく角丸で浮いて見える
     CTAはカード下辺に被さる形で配置
     ================================================ */
  .hero {
    padding: 20px 0 72px; /* CTAが下辺に被さる分の余白 */
  }
  .hero__outer {
    padding: 0 20px; /* カード左右余白（画面端から浮いて見える） */
  }
  .hero__card {
    display: block;
    position: relative;
    height: min(calc(100svh - 140px), 560px);
    min-height: 460px;
    /* overflow: visible でCTAがカード下辺に被される。
       backgroundはborder-radiusで自動クリップされる。 */
    overflow: visible;
    padding: 0;
    border: none;
    border-radius: 20px;
    border: 5px solid var(--color-navy);
    background: var(--color-yellow);
  }

  /* PC用2行キャッチは非表示 */
  .hero__catch--left,
  .hero__catch--right {
    display: none;
  }

  /* モバイル専用1行キャッチ：中央揃え */
  .hero__catch--mobile {
    display: block;
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    margin: 0;
    font-size: clamp(20px, 5.8vw, 28px);
    font-weight: 900;
    color: var(--color-black);
    text-align: center;
    white-space: nowrap;
    z-index: 4;
    line-height: 1.2;
  }

  /* 静的bgtext は非表示 */
  .hero__bgtext {
    display: none;
  }

  /* Ticker：カード上部1/3に配置（キャラ上半身の後ろを流れる） */
  .hero__ticker {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 28%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 20%,
      #000 80%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 20%,
      #000 80%,
      transparent 100%
    );
  }
  .hero__ticker-track {
    display: flex;
    width: max-content;
    -webkit-animation: hero-ticker 22s linear infinite;
    animation: hero-ticker 22s linear infinite;
  }
  .hero__ticker-track span {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(90px, 52vw, 380px);
    line-height: 1;
    color: rgba(29, 32, 135, 0.22);
    white-space: nowrap;
    display: inline-block;
    letter-spacing: 0;
  }

  /* キャラクター：中央・ボトム揃え。上半身〜太もも表示でカード底辺と揃える */
  .hero__character {
    position: absolute;
    left: 47%;
    top: auto;
    bottom: 0; /* カード下辺に揃える */
    transform: translateX(-50%);
    width: clamp(230px, 76vw, 310px);
    height: 87%; /* カード高さの約82%→上半身〜太もも表示 */
    object-fit: cover;
    object-position: top center; /* 上（頭）から表示し、下（足先）をクロップ */
    z-index: 3;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
    margin: 0;
    order: unset;
  }
  .hero--ready .hero__character {
    animation: hero-enter-char 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  }

  /* ヘッドライン：右側縦書き、カード下部（CTAボタン上ギリギリ） */
  .hero__headline {
    position: absolute;
    right: 12px;
    top: auto;
    bottom: 64px; /* CTAが-26pxで被さるので、34px上が実質ボタン直上 */
    left: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 13px;
    font-weight: 900;
    color: var(--color-navy);
    text-align: left;
    margin: 0;
    z-index: 4;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero__headline-top {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.75;
  }
  .hero__headline-strong {
    font-size: clamp(14px, 3.8vw, 18px);
    letter-spacing: 0.02em;
    color: var(--color-navy);
  }

  /* サブヘッド：非表示 */
  .hero__subhead {
    display: none;
  }

  /* CTA：カード下辺に被さる（参考サイトの車イラスト的な配置） */
  .hero__cta-wrap {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    width: calc(100% - 40px);
    max-width: 320px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 10;
    margin: 0;
  }
  .hero__cta-consult {
    flex: none;
    width: 100%;
    min-width: unset;
    border-radius: 100px;
    padding: 14px 24px;
    gap: 12px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  }
  .hero__cta-texts {
    align-items: flex-start;
  }
  .hero__cta-sub {
    font-size: 16px;
    text-align: left;
  }
  .hero__cta-label {
    font-size: 16px;
    text-align: left;
  }
  .hero__cta-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
  }

  /* ================================================
     WHY
     ================================================ */
  .why-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-section__left {
    position: static;
  }
  .why-section__lead {
    font-size: clamp(18px, 5vw, 24px);
    margin: 16px 0 12px;
  }

  .why-list__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-list__body {
    padding: 20px 0 0;
    order: 1;
  }
  .why-list__photo {
    padding: 12px 0 20px;
    order: 2;
  }
  .why-list__title {
    font-size: 18px;
  }
  .why-list__sub {
    margin-left: 0;
  }

  /* ================================================
     SERVICES
     ================================================ */
  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .service-card {
    padding: 20px 20px;
    grid-template-columns: 80px 1fr;
    column-gap: 16px;
  }
  .service-card__no {
    font-size: 60px;
  }
  .service-card__label-wrap {
    margin-top: 2px;
  }
  .service-card__label {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 3px 10px;
  }
  .service-card__title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .service-card__text {
    font-size: 13px;
  }

  /* ================================================
     ABOUT
     ================================================ */
  .about-section__header {
    margin-bottom: 20px;
  }
  .about-section__heading {
    font-size: clamp(16px, 5vw, 22px);
  }
  .about-section__card {
    padding: 24px 20px;
  }

  /* ================================================
     FAQ
     ================================================ */
  .faq-list {
    gap: 12px;
    margin-top: 28px;
  }
  .faq-item__question {
    padding: 16px 20px;
    gap: 14px;
  }
  .faq-item__q-mark {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
  .faq-item__q-text {
    font-size: 14px;
  }
  .faq-item__answer > p {
    padding: 16px 20px 20px 70px;
    font-size: 14px;
  }

  /* ================================================
     PROFILE
     ================================================ */
  .profile-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .profile-section__map-frame {
    aspect-ratio: 4 / 3;
  }
  .profile-table {
    margin-top: 20px;
  }
  .profile-table__row {
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  /* ================================================
     CONTACT フォーム
     ================================================ */
  .contact-section {
    padding: 48px 0;
  }
  .contact-card {
    padding: 28px 20px 36px;
    border-radius: 16px;
    margin-top: 28px;
  }
  .contact-steps {
    gap: 24px;
    margin-bottom: 24px;
  }
  .contact-steps__circle {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .contact-card__lead {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .form-row {
    margin-bottom: 20px;
  }
  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="tel"],
  .form-row select {
    height: 48px;
    font-size: 16px;
  }
  .form-row label {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .form-optional-desc {
    font-size: 12px;
  }
  .form-optional-toggle {
    font-size: 13px;
    padding: 10px 20px;
  }
  .contact-form__next {
    max-width: 100%;
    font-size: 15px;
    padding: 16px 24px;
    margin-top: 28px;
  }

  /* ================================================
     FOOTER
     ================================================ */
  .site-footer {
    border-radius: 40px 40px 0 0;
    padding: 80px 0 36px;
    margin-top: 48px;
  }
  .site-footer__character {
    width: 140px;
  }
  .site-footer__logo img {
    width: 52px;
  }
  .site-footer__tagline {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .site-footer__cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 24px;
    margin-bottom: 28px;
  }
  .site-footer__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }
  .site-footer__cta-line {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }
  .site-footer__cta-instagram {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .site-footer__nav-list {
    gap: 16px;
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
  }
  .site-footer__nav-list a {
    font-size: 10px;
  }
  .site-footer__divider {
    margin-bottom: 20px;
  }
  .site-footer__phone {
    font-size: clamp(22px, 7vw, 32px);
  }
  .site-footer__contact-info {
    margin-bottom: 16px;
  }
  .site-footer__address {
    font-size: 12px;
  }
  .site-footer__copyright {
    font-size: 10px;
  }

  /* ================================================
     LINE フロート — モバイルは少しコンパクトに
     ================================================ */
  .line-float {
    width: 78px;
    height: 78px;
    right: 14px;
    bottom: 14px;
    gap: 4px;
  }
  .line-float__inner svg {
    width: 28px;
    height: 28px;
  }
  .line-float__label {
    font-size: 9px;
  }
}

/* ---- Very small (≤ 480px) ---- */
@media (max-width: 480px) {
  /* Hero */
  .hero__card {
    padding: 20px 16px 28px;
  }
  .hero__catch {
    font-size: clamp(20px, 8vw, 30px);
  }
  .hero__bgtext {
    font-size: clamp(38px, 12vw, 55px);
    letter-spacing: -0.01em;
  }
  .hero__character {
    width: clamp(160px, 60vw, 220px);
  }
  .hero__headline-strong {
    font-size: clamp(22px, 7.5vw, 34px);
  }
  .hero__cta-consult {
    padding: 14px 12px;
    gap: 8px;
  }
  .hero__cta-label {
    font-size: 20px;
  }
  .hero__cta-line {
    width: 64px;
    height: 64px;
  }

  /* WHY */
  .why-list__title {
    font-size: 16px;
  }

  /* Services */
  .service-card {
    grid-template-columns: 68px 1fr;
    column-gap: 12px;
    padding: 16px;
  }
  .service-card__no {
    font-size: 50px;
  }
  .service-card__title {
    font-size: 16px;
  }

  /* FAQ */
  .faq-item__answer > p {
    padding: 14px 16px 18px 56px;
  }

  /* Profile table */
  .profile-table__row {
    grid-template-columns: 80px 1fr;
    gap: 8px;
  }

  /* Contact */
  .contact-card {
    padding: 24px 16px 28px;
  }
  .contact-steps {
    gap: 16px;
  }
  .contact-steps::before {
    left: 40px;
    right: 40px;
  }

  /* Footer */
  .site-footer {
    border-radius: 28px 28px 0 0;
  }
  .site-footer__phone {
    font-size: clamp(20px, 7.5vw, 28px);
  }
}
