@charset "UTF-8";

/* ============================================================
   AI利用ガイドライン策定支援 LP  style.css
   フルワイド / インナー 1180px
   ============================================================ */

/* ---------- 変数 ---------- */
:root {
  --blue: #03409b;          /* メインブルー */
  --navy: #16335c;          /* 見出し */
  --navy-deep: #051a47;
  --blue-mid: #2f6fb0;
  --blue-light: #9ec6f5;
  --blue-pale: #bcdcfd;
  --label: #6f86a8;         /* セクションラベル */
  --text: #45556b;
  --text-2: #56657a;
  --text-3: #545c69;
  --text-strong: #2b3a4f;
  --muted: #8a98ac;
  --bg-light: #f4f7fb;
  --bg-lighter: #f7fafd;
  --border: #e6ecf3;
  --border-2: #e3e9f1;
  --border-3: #eef2f7;
  --orange-1: #fb9f02;
  --orange-2: #fb7d02;
  --inner: 1180px;
}

/* ---------- リセット ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- 共通レイアウト ---------- */
.inner {
  width: 100%;
  max-width: var(--inner);
  margin-inline: auto;
  padding-inline: 20px;
}

/* セクション背景色 */
.strength, .point, .price, .consult{ background: var(--bg-light); }
.merit-risk, .issues, .problem, .flow, .update, .contact, .faq { background: #fff; }
.sample { background: #eaf2fa; }

/* セクションの余白（上部はsection-headのpadding-topで確保） */
.strength, .problem, .issues, .sample, .point, .flow, .price, .update, .faq, .consult, .contact {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 96px;
}

/* セクション見出し */
.section-head {
  position: relative; z-index: 1; text-align: center;
  padding-top: 120px;
  margin-bottom: 52px;
}
.section-label {
  font-weight: 700; font-size: 24px; letter-spacing: 5px;
  color: var(--label); line-height: 1.2;
}
.section-title {
  font-weight: 900; font-size: 40px; color: var(--navy);
  line-height: 1.5; margin-top: 10px;
}
.section-sub { font-size: 18px; color: var(--text); margin-top: 14px; }

/* セクション見出し上の吹き出し（STRENGTH） */
.section-balloon {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 3px solid #2b5d9e;
  border-radius: 999px;
  padding: 14px 36px;
  box-shadow: 0 4px 14px rgba(22, 56, 110, 0.10);
  top: 55px;
}
/* 下向きシャープ三角（::before=枠色 / ::after=白で重ねて輪郭2px相当） */
.section-balloon::before,
.section-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}
/* bottom は「パディングボックス下端（＝枠線の内側）」基準。
   底辺がそこに一致するよう bottom = 高さ と同値にして、枠内へのはみ出しを防ぐ */
.section-balloon::before {
  bottom: -14px;
  border-width: 14px 10px 0;
  border-top-color: #2b5d9e;
}
/* 白三角は青三角と同じ底辺位置・相似形で、輪郭が均一に2px残るサイズ */
.section-balloon::after {
  bottom: -10px;
  border-width: 10px 7px 0;
  border-top-color: #fff;
}
.section-balloon-badge {
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  background: #d0342c;
  border-radius: 999px;
  padding: 3px 14px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.section-balloon-text {
  font-weight: 700;
  font-size: 16px;
  color: #16386e;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
/* 左寄せバリエーション（尻尾を見出しの「AI」の位置に合わせる） */
.section-balloon--left {
  --tail-x: 164px;
  margin-inline: 0 auto;
}
.section-balloon--left::before,
.section-balloon--left::after {
  left: var(--tail-x);
}
/* インナーが画面幅に追従する幅（1180px未満）では、下げ幅をリセットして
   見出し「STRENGTH」と重ならないようにし、尻尾は「AI」を追従させる */
@media screen and (max-width: 1179px) {
  .section-balloon { top: 0; }
  .section-balloon--left { --tail-x: calc(50vw - 426px); }
}
/* タブレット（1079px以下）からは中央寄せ＋尻尾も中央固定 */
@media screen and (max-width: 1079px) {
  .section-balloon--left { margin-inline: auto; --tail-x: 50%; }
}
/* UPDATE用バリエーション（バッジなし・STRENGTHの--leftとは独立に調整可能） */
.section-balloon--update {
  --tail-x: 278px;
  margin-inline: 0 auto;
  top: 64px; /* .update-head に padding-top があるため下げ幅は不要 */
  transform: rotate(-7deg);
}
.section-balloon--update::before,
.section-balloon--update::after {
  left: var(--tail-x);
}
/* 回転によるアンチエイリアスで、白三角の上辺と青枠の境目に青いラインが出るため、
   白三角を同じ傾きのまま上へ2px延長（幅も比例拡大）し、境目を白背景内に隠す */
.section-balloon--update::after {
  border-width: 12px 8.4px 0;
}
@media screen and (max-width: 1179px) {
  .section-balloon--update { --tail-x: calc(50vw - 426px); }
}
@media screen and (max-width: 1079px) {
  .section-balloon--update {margin-inline: auto;--tail-x: 50%;transform: rotate(0);top: 0;}
}

.skew { display: inline-block; transform: skewX(-10deg); }

/* ============================================================
   共通ボタン
   ============================================================ */
.btn-icon { display: inline-block; width: 15px; height: 15px; }

.btn-orange {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 100px;
  background: linear-gradient(to right, var(--orange-1), var(--orange-2));
  color: #fff; font-weight: 700; font-size: 16px; letter-spacing: 1px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(251, 125, 2, 0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 42px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--orange-1), var(--orange-2));
  border: 2px solid #fff;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  transition: background .2s;
}
.btn-outline:hover {
  opacity: 0.9;
}

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; background: #fff; color: var(--navy);
  font-weight: 700; font-size: 16px; letter-spacing: 1px;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25); }

/* ============================================================
   ヘッダー（AIMS LPを踏襲：構造・vwスケーリングは同一、配色のみ本LP用）
   ============================================================ */
/* PC/SP 出し分けユーティリティ */
.pc-only { display: none; }
.sp-only { display: block; }
@media (min-width: 768px) {
  .pc-only { display: block; }
  .sp-only { display: none !important; }
}

.adlp-header {
  width: 100%;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  height: calc(100 / 750 * 100vw);
}
.adlp-header__inner {
  width: min(calc(1380 / 1280 * 100vw), 1380px);
  height: 100%;
  margin: auto;
  position: relative;
  max-width: 100%;
}
.adlp-header .w100 { width: 100% !important; display: block; }

/* width/height属性による縦伸び防止（SP限定） */
@media screen and (max-width: 767px) {
  .adlp-header img { max-width: 100%; height: auto; }
}

/* --- SPヘッダー --- */
.adlp-header__logo {
  position: absolute;
  left: calc(25 / 750 * 100vw);
  width: calc(123 / 750 * 100vw);
  top: calc(28 / 750 * 100vw);
}
.adlp-header__logo2 {
  position: absolute;
  left: calc(161 / 750 * 100vw);
  width: calc(160 / 750 * 100vw);
  top: calc(28 / 750 * 100vw);
}
.adlp-header__btn {
  position: absolute;
  right: calc(25 / 750 * 100vw);
  width: calc(150 / 750 * 100vw);
  height: calc(80 / 750 * 100vw);
  top: 0;
}
.adlp-header__btn .adlp-btn { display: block; width: 100%; height: 100%; }
.adlp-header__btn .adlp-btn__bg {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: auto;
  height: calc(50 / 750 * 100vw);
  background: linear-gradient(to bottom, #fb9f02 4.225%, #fb7d02 82.306%);
  border-radius: 5px;
  box-shadow: 0 calc(4 / 750 * 100vw) calc(4 / 750 * 100vw) 0 #9d9d9d;
}
.adlp-header__btn .adlp-btn__label {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% + 0.5px);
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: calc(16 / 750 * 100vw);
  line-height: 1.1;
  color: #fff;
  text-align: center;
  font-feature-settings: "halt" 1;
  white-space: nowrap;
}

/* SP電話表示 */
.adlp-header-sp-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: #193f94;
  position: absolute;
  top: calc(13 / 750 * 100vw);
  right: min(calc(280 / 1080 * 100vw), 350px);
  width: min(calc(316 / 1080 * 100vw), 316px);
  height: min(calc(80 / 1080 * 100vw), 80px);
  font-weight: 700;
  line-height: 1.3;
}
.adlp-header-sp-tel-text { font-size: min(calc(12 / 750 * 100vw), 12px); color: #000; }
.adlp-header-sp-tel-text02 {
  font-size: min(calc(12 / 750 * 100vw), 12px);
  color: #000;
  position: absolute;
  right: calc(25 / 750 * 100vw);
  bottom: 3px;
  font-weight: 700;
}
.adlp-header-sp-tel-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  top: 3px;
}
.adlp-header-sp-tel-number {
  font-size: calc(30 / 750 * 100vw);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #193f94;
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
}

/* --- PCヘッダー --- */
@media screen and (min-width: 768px) {
  .adlp-header { height: min(calc(110 / 1080 * 100vw), 110px); }
  .adlp-header__inner--pc {
    position: static;
    max-width: 100%;
    height: 100%;
    padding: 0 min(calc(34 / 1080 * 100vw), 34px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: min(calc(20 / 1080 * 100vw), 20px);
  }
  .adlp-header__logos {
    display: flex;
    align-items: center;
    gap: min(calc(20 / 1080 * 100vw), 20px);
    flex: none;
  }
  .adlp-header__logo-main { height: min(calc(58 / 1080 * 100vw), 58px); width: auto; display: block; }
  .adlp-header__badge { height: min(calc(40 / 1080 * 100vw), 40px); width: auto; display: block; }
  .adlp-header__right {
    display: flex;
    align-items: center;
    gap: min(calc(24 / 1080 * 100vw), 24px);
    flex: none;
  }
  .adlp-header__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: min(calc(5 / 1080 * 100vw), 5px);
  }
  .adlp-header__tel-label { font-size: min(calc(12 / 1080 * 100vw), 12px); font-weight: 700; color: #000; line-height: 1; }
  .adlp-header__tel-number {
    display: flex;
    align-items: center;
    gap: min(calc(8 / 1080 * 100vw), 8px);
    color: #193f94;
  }
  .adlp-header__tel-number svg {
    display: block;
    flex-shrink: 0;
    width: min(calc(28 / 1080 * 100vw), 28px);
    height: min(calc(28 / 1080 * 100vw), 28px);
  }
  .adlp-header__tel-num {
    font-size: min(calc(36 / 1080 * 100vw), 36px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: .01em;
    color: #193f94;
  }
  .adlp-header__tel-divider { width: 100%; height: 1px; background: #e2e2e2; margin: 1px 0; }
  .adlp-header__tel-hours { font-size: min(calc(11 / 1080 * 100vw), 11px); color: #000; line-height: 1; }
  .adlp-header__cta {
    display: flex;
    align-items: center;
    gap: min(calc(14 / 1080 * 100vw), 14px);
    color: #fff;
    background: linear-gradient(180deg, #fb9f02, #fb7d02);
    border-radius: min(calc(6 / 1080 * 100vw), 6px);
    padding: min(calc(12 / 1080 * 100vw), 12px) min(calc(26 / 1080 * 100vw), 26px);
    box-shadow: 0 min(calc(4 / 1080 * 100vw), 4px) min(calc(10 / 1080 * 100vw), 10px) rgba(251, 125, 2, .3);
    transition: opacity 0.2s;
    text-decoration: none;
  }
  .adlp-header__cta:hover { opacity: 0.85; }
  .adlp-header__cta-text { display: flex; flex-direction: column; line-height: 1.25; }
  .adlp-header__cta-main { font-size: min(calc(18 / 1080 * 100vw), 18px); font-weight: 800; color: #fff; }
  .adlp-header__cta-sub { font-size: min(calc(11 / 1080 * 100vw), 11px); opacity: .95; color: #fff; }
  .adlp-header__cta-arrow { font-size: min(calc(20 / 1080 * 100vw), 20px); font-weight: 700; line-height: 1; color: #fff; }
}

/* ============================================================
   ヒーロー
   ============================================================ */
.hero { position: relative; background: url("../images/hero-bg-bridge.webp") center/cover no-repeat; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(3, 64, 155, 0.7); mix-blend-mode: multiply;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  min-height: 744px;
  padding-block: 70px;
  display: flex;
  align-items: center;
}
.hero-text { width: 620px; flex-shrink: 0; }
.hero-eyebrow {
  font-family: "Playfair Display", serif; font-weight: 600;
  font-size: 16px; letter-spacing: 5px; color: var(--blue-pale);
}
.hero-subtitle-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 24px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.hero-title { margin: 14px 0 0; }
.hero-title-line {
  position: relative;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-fail-badge {
  position: absolute;
  top: 6px;
  left: 450px;
  display: inline-block;
  transform: rotate(-5deg);
  background: #fff;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 3px;
  line-height: 1;
  padding: 12px 28px;
  box-shadow: 0 6px 14px rgba(5, 26, 71, 0.35);
}
.hero-fail-badge::after {
  position: absolute;
  left: 55%;
  bottom: -12px;
  border-style: solid;
  border-width: 13px 13px 0;
  border-color: var(--blue) transparent transparent;
}
.hero-lead-bar {
  display: inline-block;
  margin-top: 30px;
  padding: 2px 10px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  transform: skewX(-10deg);
}
.hero-desc { margin-top: 30px; font-size: 16px; color: #fff; line-height: 1.75; max-width: 560px; }
.hero .btn-orange { margin-top: 40px; }
.hero-logos { position: absolute; left: 590px; bottom: 115px; width: 288px; }
.hero-logos img { width: 100%; height: auto; }
.hero-model { position: absolute; right: 20px; bottom: 0; width: 323px; }
.hero-model img { width: 100%; height: auto; }

/* ヒーロー：1260px未満はモデル写真が消えるSP幅（767px）まで、
   タイトル・バッジ・ロゴ群・モデル写真を画面幅に比例させて等比縮小する。
   本文系のみ可読性のため下限を設ける */
@media screen and (min-width: 768px) and (max-width: 1259px) {
  .hero-inner {
    min-height: calc(744 / 1260 * 100vw);
    padding-block: calc(70 / 1260 * 100vw);
  }
  .hero-text { width: calc(620 / 1260 * 100vw); }
  .hero-title-line {
    font-size: calc(60 / 1260 * 100vw);
    letter-spacing: 0.033em;
  }
  .hero-fail-badge {
    top: calc(6 / 1260 * 100vw);
    left: calc(450 / 1260 * 100vw);
    font-size: calc(30 / 1260 * 100vw);
    letter-spacing: 0.1em;
    padding: calc(12 / 1260 * 100vw) calc(28 / 1260 * 100vw);
  }
  .hero-fail-badge::after {
    border-width: calc(13 / 1260 * 100vw) calc(13 / 1260 * 100vw) 0;
    bottom: calc(-12 / 1260 * 100vw);
  }
  .hero-eyebrow { font-size: max(13px, calc(16 / 1260 * 100vw)); }
  .hero-subtitle-pill { font-size: max(13px, calc(16 / 1260 * 100vw)); }
  .hero-lead-bar { font-size: max(14px, calc(18 / 1260 * 100vw)); }
  .hero-desc { font-size: max(14px, calc(16 / 1260 * 100vw)); max-width: 100%; }
  /* ロゴ群は絶対配置をやめ、縮小しながらCTAボタンの横へ逃がす */
  .hero-cta {
    display: flex;
    align-items: center;
    gap: calc(24 / 1260 * 100vw);
    width: max-content;
    margin-top: calc(40 / 1260 * 100vw);
  }
  .hero .btn-orange { margin-top: 0; flex-shrink: 0; }
  .hero-logos {
    position: static;
    width: calc(260 / 1260 * 100vw);
  }
  .hero-model {
    right: calc(20 / 1260 * 100vw);
    width: calc(323 / 1260 * 100vw);
  }
}

/* 1140px以上は本文がロゴ群に届かないため、ロゴ群は元の位置のまま等比縮小で維持。
   1139px以下になると本文と干渉するので、上のCTA横並びへ切り替わる */
@media screen and (min-width: 1140px) and (max-width: 1259px) {
  .hero-cta { display: block; width: auto; margin-top: 0; }
  .hero .btn-orange { margin-top: calc(40 / 1260 * 100vw); }
  .hero-desc { max-width: calc(560 / 1260 * 100vw); }
  .hero-logos {
    position: absolute;
    left: calc(590 / 1260 * 100vw);
    bottom: calc(115 / 1260 * 100vw);
    width: calc(288 / 1260 * 100vw);
  }
}

/* ============================================================
   STRENGTH
   ============================================================ */
.strength { padding-bottom: 0; }
.strength-cards {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: -96px;
}
.strength-card {
  position: relative; background: #fff; border: 1px solid var(--border);
  padding: 40px 31px 35px; text-align: center; overflow: hidden;
}
.strength-illust { display: flex; align-items: center; justify-content: center; }
.strength-illust img { width: 100%; max-width: 295px; height: auto; }
.strength-card-title {position: relative;font-weight: 900;font-size: 18px;color: var(--navy);margin-top: 14px;line-height: 1.3;}
.strength-card-text { position: relative; font-size: 16px; color: var(--text-2); line-height: 1.6; margin-top: 12px; }
.strength-card-note { position: relative; font-size: 12.5px; color: var(--muted); margin-top: 10px; }

/* 左側の指差しモデル（カードの背面に配置） */
.strength > .inner { position: relative; }
.strength-presenter {
  position: absolute;
  z-index: 0;
  right: calc(-1 * min(160px, (100vw - 1180px) / 2 + 40px));
  bottom: 97px;
  width: 300px;
  pointer-events: none;
}
.strength-presenter img { width: 100%; height: auto; }
/* 画面幅が狭くなり見出しに掛かってしまう幅（＝置き場所がなくなる幅）から非表示 */
@media screen and (max-width: 1379px) {
  .strength-presenter { display: none; }
}

.strength-band {
  background: linear-gradient(167deg, #4d88c9 6%, #21518f 94%);
  padding-top: 150px; padding-bottom: 60px;
}
.strength-band-inner { display: flex; justify-content: center; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 1; }
.problem-card {
  position: relative; background: var(--bg-lighter); border: 1px solid var(--border);
  padding: 37px 29px; min-height: 216px; overflow: hidden;
  display: flex; flex-direction: column;
}
.problem-bar { display: block; width: 32px; height: 2px; background: #d6e1f0; }
.problem-text { margin-top: 16px; font-weight: 500; font-size: 16px; color: var(--text-strong); line-height: 1.7; }
.problem-illust { position: relative; z-index: 1; margin-top: auto; padding-top: 22px; }
.problem-illust img { width: 116px; height: auto; }
.problem-num {
  position: absolute; right: 20px; bottom: 8px;
  font-family: "Playfair Display", serif; font-size: 120px; line-height: 1;
  color: rgba(63, 124, 192, 0.1); pointer-events: none;
}
.problem-flow {
  position: relative; z-index: 1; margin-top: 40px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px;
  background: var(--bg-light); border: 1px solid var(--border); padding: 28px 20px;
}
.problem-flow-lead { font-weight: 700; font-size: 16px; color: #8a98ac; }
.problem-flow-tag {
  font-weight: 700; font-size: 16px; color: var(--navy);
  background: #fff; border: 1px solid #e0e7f1; padding: 13px 23px;
}
.problem-flow-tag--strong { background: var(--blue); color: #fff; border-color: var(--blue); }
.problem-flow-arrow { width: 22px; height: 22px; }
/* 「不安・リスク増大」の先に続く想定リスク一覧 */
.problem-flow-risks {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff5f4; border: 1px solid #f0cdca;
  padding: 12px 20px;
}
.problem-flow-risks li {
  position: relative; padding-left: 15px;
  font-weight: 700; font-size: 15px; color: #c33a2e; line-height: 1.5;
}
.problem-flow-risks li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: #d0342c;
}

/* ============================================================
   COMMON ISSUES
   ============================================================ */
.issues-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #fff; border: 1px solid var(--border-2);
}
.issue-item {
  display: flex; gap: 20px; align-items: flex-start; padding: 32px 30px;
  border-bottom: 1px solid var(--border-2);
}
.issue-item:nth-child(odd) { border-right: 1px solid var(--border-2); }
.issue-item--badged { position: relative; }
/* section-balloon 準拠の注目バッジ（下向き三角の尻尾つき） */
.issue-badge {
  position: absolute;
  z-index: 2;
  top: -17px;
  left: 22px;
  background: #fff;
  border: 3px solid #d0342c;
  border-radius: 999px;
  padding: 4px 18px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #d0342c;
  box-shadow: 0 4px 14px rgba(208, 52, 44, 0.12);
}
.issue-badge::before,
.issue-badge::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-style: solid; border-color: transparent;
}
.issue-badge::before {bottom: -13px;border-width: 13px 9px 0;border-top-color: #d0342c;}
.issue-badge::after { bottom: -9px; border-width: 12px 7px 0; border-top-color: #fff; }
.issue-item:nth-child(3), .issue-item:nth-child(4) { border-bottom: none; }
.issue-icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 25px;
  background: #eef4fb; display: flex; align-items: center; justify-content: center;
}
.issue-icon img { width: 24px; height: 24px; }
.issue-title { font-weight: 900; font-size: 18px; color: var(--navy); }
.issue-text { font-size: 16px; color: var(--text-2); line-height: 1.5; margin-top: 6px; }
.issues-closing {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  line-height: 1.9;
}
.issues-closing strong { font-weight: 900; }
.issues-closing-marker {
  background: linear-gradient(transparent 55%, rgba(255, 225, 77, 0.65) 55%);
}

/* ============================================================
   MERIT & RISK
   ============================================================ */
.merit-risk { position: relative; z-index: 2; padding-top: 110px; }
.merit-head { text-align: center; }
.merit-label { font-weight: 700; font-size: 24px; letter-spacing: 2px; color: var(--blue); }
.merit-question {
  display: inline-block;
  margin-top: 22px;
  padding: 11px 32px;
  background: #eff4fa;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 700;
  font-size: 26px;
}
.merit-title { font-weight: 700; font-size: 36px; color: var(--text-strong); line-height: 1.65; margin-top: 24px; }
.merit-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  margin-top: 56px;
}
.merit-card {
  width: 430px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px -4px rgba(3, 64, 155, 0.16), 0 2px 6px rgba(3, 64, 155, 0.08);
}
.merit-card-head {
  padding: 19px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 26px;
}
.merit-card-head--merit { background: var(--orange-1); }
.merit-card-head--risk { background: var(--blue); }
.merit-card-list { padding: 30px 40px; display: flex; flex-direction: column; gap: 24px; }
.merit-card-list li { display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 20px; color: var(--text-strong); }
.merit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}
.merit-icon--merit { background: var(--orange-1); }
.merit-icon--risk { background: var(--blue); }
.merit-arrows { display: flex; flex-direction: column; justify-content: center; }
.merit-arrow { font-weight: 900; font-size: 64px; line-height: 1.1; }
.merit-arrow--right { color: var(--orange-1); }
.merit-arrow--left { color: var(--blue); margin-top: -18px; }
.merit-conclusion {
  max-width: 1138px;
  margin: 125px auto 0;
  padding: 24px 30px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 12px;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 26px;
}
/* 「なので対策が必要」橋渡し矢印（次セクションにまたがる） */
.merit-bridge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  margin-bottom: -52px;
  /* ピルと三角の両方に同じ影を落とす（Figma: グループへのドロップシャドウ） */
  filter: drop-shadow(0 6px 9px rgba(8, 26, 64, 0.25));
}
.merit-bridge-banner {
  position: relative;
  display: inline-block;
  padding: 20px 60px 24px;
  background: var(--blue);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1.2;
}
/* 三角はピルから6px離して配置 */
.merit-bridge-banner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 19px 24px 0;
  border-color: var(--blue) transparent transparent;
}

/* ============================================================
   SAMPLE
   ============================================================ */
.sample-head { position: relative; z-index: 1; text-align: center; padding-top: 110px; margin-bottom: 60px; }
.sample-label { font-weight: 700; font-size: 16px; letter-spacing: 4px; color: var(--blue); }
.sample-title { font-weight: 700; font-size: 38px; color: var(--text-strong); line-height: 1.45; margin-top: 18px; }
/* 「サンプル」前の改行（SPのみ有効） */
.sample-title-br { display: none; }
.sample-card {
  position: relative;
  z-index: 1;
  max-width: 1207px;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 32px -4px rgba(3, 64, 155, 0.16);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 70px;
}
.sample-doc { flex-shrink: 0; width: 380px; }
.sample-doc img { width: 100%; height: auto; }
.sample-detail { flex: 1; }
.sample-detail-title { font-weight: 700; font-size: 24px; color: var(--blue); }
.sample-detail-bar { display: block; width: 72px; height: 4px; border-radius: 2px; background: var(--orange-1); margin-top: 12px; }
.sample-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; list-style: none; }
.sample-list li { display: flex; align-items: baseline; gap: 14px; font-weight: 500; font-size: 17px; color: var(--text-strong); line-height: 1.4; }
.sample-list-num { font-weight: 700; font-size: 15px; color: var(--orange-1); }
.sample-note { font-size: 14px; color: #6b7585; margin-top: 12px; padding-left: 34px; }
.sample-note + .sample-note { margin-top: 6px; }

/* ============================================================
   UPDATE（アップデート支援）
   ============================================================ */
.update-head { position: relative; z-index: 1; text-align: center; padding-top: 110px; margin-bottom: 60px; }
.update-label { font-weight: 700; font-size: 16px; letter-spacing: 4px; color: var(--blue); }
.update-title { font-weight: 700; font-size: 38px; color: var(--text-strong); line-height: 1.45; margin-top: 18px; }
.update-sub { font-weight: 500; font-size: 20px; color: var(--text-strong); margin-top: 18px; }
.update-body {
  position: relative;
  z-index: 1;
  max-width: 1013px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.update-chart { position: relative; width: 430px; flex-shrink: 0; }
.update-chart-label { display: block; font-weight: 700; font-size: 15px; color: #8c949e; margin-bottom: 16px; }
.update-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 3px solid #ccd6e0;
  padding-inline: 12px;
}
.update-bar-item { position: relative; display: flex; }
.update-bar { display: block; width: 96px; background: linear-gradient(to bottom, var(--orange-1), var(--orange-2)); }
.update-bar-name {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
}
.update-chart { padding-bottom: 44px; }
.update-rows { flex: 1; display: flex; flex-direction: column; gap: 36px; padding-bottom: 12px; }
.update-row-label {
  display: inline-block;
  padding: 6px 18px;
  background: #eaf2fa;
  border-radius: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
}
.update-row-text { font-weight: 500; font-size: 18px; color: var(--text-strong); line-height: 1.8; margin-top: 10px; }
.update-row-text strong { color: var(--blue); font-weight: 700; }
.update-conclusion {
  position: relative;
  z-index: 1;
  max-width: 984px;
  margin: 60px auto 0;
  padding: 26px 30px;
  background: var(--blue);
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}

/* ============================================================
   POINT
   ============================================================ */
.point-rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 56px; }
.point-row { position: relative; min-height: 440px; max-width: 1020px; margin-inline: auto; width: 100%; }
.point-photo { position: absolute; top: 20px; width: 600px; height: 400px; }
.point-photo img { width: 100%; height: 100%; object-fit: cover; }
.point-card {
  position: absolute; top: 72px; width: 440px; background: #fff; padding: 40px;
  box-shadow: 0 0 30px rgba(26, 38, 64, 0.1);
}
.point-row--photo-right .point-photo { right: 0; }
.point-row--photo-right .point-card { left: 0; }
.point-row--photo-left .point-photo { left: 0; }
.point-row--photo-left .point-card { right: 0; }
.point-num { display: flex; align-items: baseline; gap: 12px; font-weight: 700; }
.point-num-label { font-size: 23px; color: #134c86; }
.point-num-value { font-size: 36px; color: var(--navy-deep); }
.point-card-title { font-weight: 700; font-size: 20px; color: var(--navy-deep); line-height: 1.5; margin-top: 14px; }
.point-card-text { font-size: 16px; color: var(--text-3); line-height: 1.75; margin-top: 14px; }
/* 768〜980px: Point.2 は iso-icon.webp（正方形）に切替（picture側）。
   白背景の枠はカード（右440px）の下に40px入り込ませ、img は右パディングで
   入り込み分を逃がして contain の全体表示を維持する */
@media screen and (min-width: 768px) and (max-width: 980px) {
  .point-iso-logo { background: #fff; width: calc(100% - 400px); }
  .point-iso-logo img { object-fit: contain; padding: 24px 64px 24px 24px; }
}

/* ============================================================
   FLOW
   ============================================================ */
.flow-list { position: relative; z-index: 1; max-width: 920px; margin-inline: auto; }
.flow-item { display: flex; align-items: center; gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--border-3); }
.flow-step { flex-shrink: 0; width: 120px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.flow-step-num { font-family: "Playfair Display", serif; font-style: italic; font-size: 16px; color: #9fb0c6; }
.flow-step-icon { height: 46px; width: auto; }
.flow-title { font-weight: 900; font-size: 18px; color: var(--navy); }
.flow-text { font-size: 16px; color: var(--text-2); line-height: 1.6; margin-top: 8px; }

/* ============================================================
   PRICE
   ============================================================ */
.price-lead { margin-top: 18px; }
.price-lead-num { font-family: "Playfair Display", serif; font-weight: 700; font-size: 46px; color: var(--blue); }
.price-lead-unit { font-weight: 700; font-size: 16px; color: var(--navy); }
.price-lead-note { font-size: 16px; color: var(--muted); }
.price-note { font-size: 16px; color: var(--muted); margin-top: 10px; }
.price-table-wrap { position: relative; z-index: 1; max-width: 940px; margin-inline: auto; overflow-x: auto; }
.price-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--border-2); min-width: 680px;
}
.price-table thead th {
  background: var(--navy); color: #fff; font-weight: 700; font-size: 16px;
  padding: 17px 24px; text-align: left; border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.price-table thead th.price-col-price{
  text-align: center;
}

.price-table thead th:first-child { border-left: none; }
.price-col-plan { width: 200px; }
.price-col-price { width: 170px; text-align: center; }
.price-table tbody th, .price-table tbody td {
  padding: 24px; font-size: 16px; color: var(--text-strong);
  border-top: 1px solid var(--border-3); border-left: 1px solid var(--border-3);
  vertical-align: middle; text-align: left; font-weight: 400;
}
.price-table tbody th:first-child, .price-table tbody td:first-child {border-left: none;color: #03409B;font-weight: 700;font-size: 1.2em;}
.price-plan-name { font-weight: 900; font-size: 16px; color: var(--blue); white-space: nowrap; }
.price-table tbody td.price-value { font-weight: 900; font-size: 17px; color: var(--blue); text-align: center; white-space: nowrap; }
.price-value--sub { color: var(--blue-mid); }
.price-list { margin-top: 10px; padding-left: 18px; }
.price-list li { position: relative; font-size: 16px; color: var(--text-2); line-height: 1.6; }
.price-list li::before { content: "・"; position: absolute; left: -14px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: url("../images/cta-bg.webp") center/cover no-repeat;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8, 24, 58, 0.82), rgba(12, 44, 100, 0.72));
}
.cta-band-inner {
  position: relative; z-index: 1; text-align: center;
  padding-block: 70px; display: flex; flex-direction: column; align-items: center;
}
.cta-band-eyebrow { font-family: "Playfair Display", serif; font-style: italic; font-size: 16px; color: #cdddf0; }
.cta-band-title { font-weight: 900; font-size: 27px; color: #fff; line-height: 1.65; margin-top: 14px; }
.cta-band-text { font-size: 16px; color: #dbe6f3; line-height: 1.75; margin-top: 18px; }
.cta-band .btn-white { margin-top: 28px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {position: relative;z-index: 1;max-width: 980px;margin-inline: auto;display: flex;flex-direction: column;gap: 12px;}
.faq-item { background: #fff; border: 1px solid var(--border-2); }
.faq-q {
  width: 100%; display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left;
}
.faq-mark { font-family: "Playfair Display", serif; font-size: 20px; color: var(--blue-mid); line-height: 1.2; flex-shrink: 0; }
.faq-q-text { flex: 1; font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.5; }
.faq-toggle { position: relative; flex-shrink: 0; width: 20px; height: 26px; }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--blue-mid);
  transition: transform .3s;
}
.faq-toggle::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 24px;
  transition: grid-template-rows .35s ease, padding-bottom .35s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; padding-bottom: 24px; }
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 22px; background: var(--bg-light);
  display: flex; gap: 14px; align-items: flex-start;
  transition: padding-top .35s ease, padding-bottom .35s ease;
}
.faq-item.is-open .faq-a-inner { padding-top: 18px; padding-bottom: 18px; }
.faq-mark--a { color: #9fb0c6; font-size: 17px; }
.faq-a-text { font-size: 16px; color: var(--text-strong); line-height: 1.6; }

/* ============================================================
   CONSULT FLOW（無料相談の流れ）
   ============================================================ */
.consult-steps {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.consult-step {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
}
.consult-step-num {
  flex-shrink: 0;
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consult-step-body { flex: 1; }
.consult-step-title { font-weight: 700; font-size: 18px; color: var(--navy); line-height: 1.5; }
.consult-step-text { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-top: 6px; }
.consult-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.consult-chips li {
  background: #fff;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 16px;
}
.consult-arrow {color: var(--navy);font-size: 18px;line-height: 1;}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-inner { position: relative; z-index: 1; }
.contact-sub {max-width: 980px;margin-inline: auto;}
.contact-calendar {
  max-width: 980px;
  margin: 50px auto 0;
  border-radius: 12px;
  background: var(--bg-light);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-calendar-placeholder { color: var(--muted); font-size: 16px; }

/* ============================================================
   フッター（AIMS LPを踏襲：構造は同一、配色のみ本LP用）
   ============================================================ */
#footer {
  background: #fff;
  border-top: 1px solid #e0e4ea;
  padding: 40px 0 0;
}
.footer-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  max-width: 100%;
}
.footer-left { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-badges { height: 42px; width: auto; }
.footer-logo { height: 50px; width: auto; }
.footer-service { font-size: 15px; font-weight: 500; color: var(--text); }
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  font-size: 14px;
  max-width: 400px;
}
.footer-links a { color: var(--text); text-decoration: none; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.6; }
.footer-copy {
  font-size: 13px;
  color: var(--text);
  text-align: center;
  border-top: 1px solid #e0e4ea;
  margin-top: 32px;
  padding: 20px 0;
}

/* ============================================================
   レスポンシブ（SP: 767px 以下）
   ============================================================ */
@media (max-width: 767px) {
  body { line-height: 1.7; }

  .strength, .problem, .issues, .sample, .point, .flow, .price, .update, .faq, .consult, .contact { padding-top: 0; padding-bottom: 56px; }
  .section-title { font-size: 26px; }
  .section-label { font-size: 18px; letter-spacing: 3px; }
  .section-sub { font-size: 15px; }
  .section-head { padding-top: 56px; margin-bottom: 32px; }

  /* ヒーロー */
  .hero-inner { flex-direction: column; align-items: stretch; min-height: 0; padding-block: 40px; }
  .hero-text { width: 100%; }
  /* バッジを上げた分、上のピルとの間隔を確保 */
  .hero-title { margin-top: 20px; }
  /* タイトルは各行1行に収める（2行目「AIガイドライン策定サービス」が基準）。
     字送りも em 指定にして、狭い端末でも比率が崩れないようにする */
  .hero-title-line {
    font-size: min(calc(23 / 375 * 100vw), 32px);
    letter-spacing: 0.04em;
    white-space: normal;
  }
  .hero-fail-badge {
    position: relative;
    top: -0.6em;
    left: 0;           /* PC用の left:450px を打ち消す */
    display: inline-block;
    margin-left: min(calc(10 / 375 * 100vw), 12px);
    font-size: min(calc(15 / 375 * 100vw), 18px);
    letter-spacing: 1px;
    padding: min(calc(7 / 375 * 100vw), 8px) min(calc(13 / 375 * 100vw), 16px);
    vertical-align: middle;
  }
  .hero-fail-badge::after { border-width: 8px 8px 0; bottom: -8px; }
  .hero-subtitle-pill { font-size: 13px; padding: 5px 16px; }
  .hero-lead-bar { font-size: 14px; }
  /* CTAボタンは画面幅の80%程度で中央寄せ */
  .hero .btn-orange {
    display: flex;
    justify-content: center;
    width: 80vw;
    margin-inline: auto;
    padding-inline: 16px;
  }
  .hero-logos { position: static; width: 240px; margin: 28px auto 0; }
  .hero-model { display: none; }

  /* MERIT & RISK */
  .merit-risk { padding-top: 56px; }
  .merit-label { font-size: 18px; }
  .merit-question { font-size: 15px; padding: 8px 18px; }
  .merit-title { font-size: 20px; margin-top: 18px; }
  .merit-cards { flex-direction: column; align-items: center; gap: 16px; margin-top: 32px; }
  .merit-card { width: 100%; }
  .merit-card-head { font-size: 20px; padding: 14px; }
  .merit-card-list { padding: 22px 26px; gap: 16px; }
  .merit-card-list li { font-size: 16px; }
  .merit-arrows { flex-direction: row; justify-content: center; }
  .merit-arrow { font-size: 40px; transform: rotate(90deg); }
  .merit-arrow--left { margin-top: 0; margin-left: -10px; }
  .merit-conclusion {margin-top: 50px;font-size: 17px;padding: 18px 20px;}
  .merit-bridge { margin-top: 32px; margin-bottom: -22px; }
  .merit-bridge-banner { font-size: 17px; padding: 11px 28px 13px; letter-spacing: 1px; }
  .merit-bridge-banner::after { border-width: 11px 13px 0; bottom: -14px; }

  /* POINT */
  .point-row { min-height: 0; display: flex; flex-direction: column; }
  .point-photo {position: static;width: 100%;height: 220px;background: #fff;}
  .point-iso-logo img{
    object-fit: contain;
  }
  .point-card { position: static; width: 100%; margin-top: 0; margin-inline: auto; z-index: 1; padding: 28px; }
  .point-row--photo-left { flex-direction: column; }

  /* FLOW */
  .flow-item { gap: 16px; }
  .flow-step { width: 80px; }

  /* PRICE */
  .price-lead-num { font-size: 36px; }

  /* CTA */
  .cta-band-title { font-size: 20px; }

  /* FAQ */
  .faq-q { padding: 18px; gap: 10px; }
  .faq-q-text { font-size: 15px; }

  /* STRENGTH */
  .strength-cards { grid-template-columns: 1fr; margin-bottom: -56px; gap: 40px; }
  .strength-band { padding-top: 100px; padding-bottom: 40px; }

  /* PROBLEM */
  .problem-cards { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; }
  .problem-illust { padding-top: 16px; }
  .problem-illust img { width: 92px; }
  .problem-flow { flex-direction: column; }
  .problem-flow-arrow { transform: rotate(90deg); }
  .problem-flow-risks { width: 100%; padding: 12px 16px; }
  .problem-flow-risks li { font-size: 14px; }

  /* ISSUES */
  .issues-grid { grid-template-columns: 1fr; }
  .issue-item { border-right: none !important; }
  .issue-item:nth-child(3) { border-bottom: 1px solid var(--border-2); }
  .issue-item--badged { margin-top: 14px; }
  .issue-badge { font-size: 13px; padding: 3px 14px; top: -15px; left: 16px; }
  .issues-closing { margin-top: 32px; font-size: 17px; line-height: 2; }

  /* STRENGTH 吹き出し */
  .section-balloon { margin-bottom: 24px; padding: 12px 20px; }
  .section-balloon-badge { font-size: 12px; }
  .section-balloon-text { font-size: 13px; }
  /* SPは中央寄せに戻す */
  .section-balloon--left { margin-inline: auto; --tail-x: 50%; }

  /* SAMPLE */
  .sample-head { padding-top: 56px; margin-bottom: 32px; }
  .sample-label { font-size: 14px; }
  .sample-title { font-size: 24px; }
  .sample-title-br { display: inline; }
  .sample-card { flex-direction: column; gap: 32px; padding: 28px 22px; }
  .sample-doc { width: 100%; max-width: 300px; margin-inline: auto; }
  .sample-detail-title { font-size: 19px; }
  .sample-list { margin-top: 22px; gap: 10px; }
  .sample-list li { font-size: 15px; }
  .sample-note { padding-left: 0; font-size: 13px; }

  /* UPDATE */
  .update-head { padding-top: 56px; margin-bottom: 32px; }
  .update-label { font-size: 14px; }
  .update-title { font-size: 24px; }
  .update-sub { font-size: 15px; }
  .update-body { flex-direction: column; align-items: center; gap: 40px; }
  .update-chart { width: 100%; max-width: 360px; }
  .update-bar { width: 64px; }
  .update-bar-name {font-size: 11px;}
  .update-rows { gap: 24px; }
  .update-row-text { font-size: 15px; }
  .update-conclusion { margin-top: 36px; font-size: 16px; padding: 18px 20px; }

  /* CONSULT FLOW */
  .consult-step { gap: 14px; padding: 20px; }
  .consult-step-num { width: 44px; height: 44px; font-size: 20px; }
  .consult-step-title { font-size: 16px; }
  .consult-step-text { font-size: 14px; }
  .consult-chips { gap: 8px; margin-top: 12px; }
  .consult-chips li { font-size: 12px; padding: 3px 12px; }

  /* CONTACT */
  .contact-calendar { min-height: 360px; }

  /* フッター（AIMS LP準拠） */
  #footer { padding: 36px 0 24px; }
  .footer-inner { flex-direction: column; align-items: center; padding: 0 20px; gap: 16px; }
  .footer-left, .footer-right { align-items: center; gap: 16px; }
  .footer-logo { height: 45px; }
  .footer-service { font-size: 12px; text-align: center; padding: 0 20px; }
  .footer-copy { font-size: 11px; text-align: center; border-top: none; margin-top: 0; padding: 0; }
  .footer-brand { justify-content: center; }
  .footer-badges { height: 35px; }
  .footer-links { justify-content: center; max-width: none; gap: 8px 18px; font-size: 11px; }
}
