@charset "utf-8";

/* ============================================================
 * mikata-lp-m06  Landing Page styles
 * デザイン基準幅:  PC = 1920px / SP = 400px
 * ブレークポイント: 770px
 * ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure, blockquote,
form, fieldset, legend, table, th, td { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, picture, source { max-width: 100%; height: auto; vertical-align: bottom; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
               "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #FCFCFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
}

/* Global safeguard: prevent horizontal overflow at any viewport width.
 * Note: use 100% not 100vw — on iOS Safari, 100vw includes scrollbar width
 * and causes apparent horizontal overflow on real devices. */
img, picture, video, svg { max-width: 100%; height: auto; }
section, main, header, footer { max-width: 100%; }

/* ---------- 共通：セクションラッパ ---------- */
.sec { width: 100%; }
.sec_inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.sec_inner picture { width: 100%; max-width: 1200px; }
.sec_inner picture img { margin: 0 auto; }

/* ---------- HEADER : 白ロゴバー ---------- */
#header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 4px solid #4EA8D6;
  position: relative;
  z-index: 100;
}
.header_inner {
  width: 100%;
  max-width: 1278px;
  margin: 0 auto;
  height: 120px;
  padding: 0 40px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.header_logo img {
  display: block;
  width: 240px;
  height: 80px;
}
.header_contact {
  display: flex;
  align-items: center;
  gap: 44px;
}
.header_biz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 383px;
  height: 64px;
  background: #E49216;
  border: 3px solid #CB7F0D;
  color: #FFFFFF;
  font-weight: 700;
  padding: 0 40px;
  border-radius: 40px;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: transform .12s, opacity .12s;
}
.header_biz:hover { transform: translateY(-1px); opacity: .92; }
.header_tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #6DBEE4;
  border: 3px solid #3FAAD9;
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: transform .12s, opacity .12s;
}
.header_tel:hover { transform: translateY(-1px); opacity: .92; }
.header_tel_icon { display: flex; align-items: center; justify-content: center; }
.header_tel_icon svg { width: 32px; height: 32px; fill: #FFFFFF; display: block; }
.header_tel_icon svg path { fill: #FFFFFF; }

/* ---------- HEADER responsive (tablet) ---------- */
@media screen and (max-width: 1440px) and (min-width: 770px) {
  .header_inner { max-width: 100%; box-sizing: border-box; padding: 0 32px; height: 80px; }
  .header_logo img { width: 180px; height: auto; }
  .header_contact { gap: 24px; }
  .header_biz {
    min-width: auto;
    height: 52px;
    font-size: 16px;
    padding: 0 28px;
    border-radius: 26px;
    border-width: 3px;
  }
  .header_tel { width: 52px; height: 52px; border-width: 3px; }
  .header_tel_icon svg { width: 26px; height: 26px; }
}

/* ============================================================
 * SEC01 ヒーロー — live HTML
 * ============================================================ */
.sec01 {
  background: #003D6B;
  position: relative;
  overflow: hidden;
}
.sec01_hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.sec01_hero_bg {
  display: block;
  width: 100%;
  height: auto;
}
.sec01_hero_sp { display: none; }

/* --- 前景コンテンツ（PC） --- */
.sec01_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 40px 20px;
}

/* --- 人物写真 (右) --- */
.sec01_person {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 420px;
}
.sec01_person img {
  display: block;
  width: 100%;
  height: auto;
}
.sec01_recommend {
  position: absolute;
  top: 10px;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #C8A84E;
  background: rgba(0, 30, 60, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sec01_recommend_name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}
.sec01_recommend_title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
}
.sec01_recommend_label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #C8A84E;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

/* --- テキストエリア (左) --- */
.sec01_text {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
  max-width: 700px;
}

/* --- トラブルタグ --- */
.sec01_tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sec01_tag {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  background: linear-gradient(180deg, #003D6B 0%, #005A9E 100%);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 6px 8px;
  color: #FFFFFF;
}
.sec01_tag em {
  font-style: normal;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.sec01_tag small {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
}
.sec01_tag_wide small {
  line-height: 1.3;
}

/* --- メイン見出し --- */
.sec01_heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sec01_heading_sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}
.sec01_heading_main {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

/* --- 加入者数 30,000人突破 --- */
.sec01_stats {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
}
.sec01_stats_pre,
.sec01_stats_suf {
  font-size: 16px;
  font-weight: 400;
  color: #FFC000;
}
.sec01_stats_label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.sec01_stats_num {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: #FFC000;
  letter-spacing: -0.02em;
}
.sec01_stats_unit {
  font-size: 20px;
  font-weight: 700;
}
.sec01_stats_text {
  font-size: 20px;
  font-weight: 700;
  color: #FFC000;
  letter-spacing: 0.02em;
}

/* --- 単独型 No.1 バッジ行 --- */
.sec01_no1_row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec01_no1_badge {
  height: 56px;
  width: auto;
}
.sec01_no1_type {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #FFC000;
  letter-spacing: 0.04em;
  border: 2px solid #FFC000;
  padding: 2px 12px;
  line-height: 1.3;
}
.sec01_no1_name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}
.sec01_no1_note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
}

/* --- 価格バー --- */
.sec01_price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #FFC000;
  border-radius: 6px;
  padding: 8px 20px;
  width: fit-content;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
}
.sec01_price_day {
  font-size: 24px;
  font-weight: 700;
}
.sec01_price_num {
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: #FFC000;
  letter-spacing: -0.02em;
  margin: 0 4px;
}
.sec01_price_yen {
  font-size: 24px;
  font-weight: 700;
  color: #FFC000;
  margin-right: 4px;
}
.sec01_price_text {
  font-size: 24px;
  font-weight: 700;
}
.sec01_price_note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
  margin-left: 4px;
}

/* --- 注釈 --- */
.sec01_notes {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sec01_notes p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
 * SEC01 CTA — ヒーロー直下の濃紺バー
 * Figma: 1920x323, padding 40px 80px, gap 54px
 * bg: linear-gradient(88.88deg, #010A42 0%, #0052A7 49.48%, #010E47 100%)
 * ============================================================ */
.sec01_cta {
  background: linear-gradient(88.88deg, #010A42 0%, #0052A7 49.48%, #010E47 100%);
  width: 100%;
  padding: 40px 80px;
}
.sec01_cta_inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 54px;
}

/* --- Left: badges + note --- */
.sec01_cta_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 640px;
  max-width: 100%;
  flex-shrink: 1;
}
.sec01_cta_badges {
  display: block;
  width: 640px;
  max-width: 100%;
  height: auto;
}
.sec01_cta_note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0;
}

/* --- Right: eyebrow + green button --- */
.sec01_cta_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 488px;
  max-width: 100%;
  flex-shrink: 1;
}
.sec01_cta_eyebrow {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
}

/* Green CTA button — Figma spec btn-dw-a (488x125, double layer) */
.sec01_cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 488px;
  max-width: 100%;
  height: 125px;
  /* Rectangle 47: linear-gradient(76.35deg) + matrix(-1,0,0,1,0,0) → 283.65deg */
  background: linear-gradient(283.65deg, #2C9A06 0%, #5CE12D 100%);
  border-radius: 10px;
  text-decoration: none;
  transition: transform .12s, opacity .12s;
  cursor: pointer;
}
.sec01_cta_btn::before {
  /* Rectangle 48: 464x99, offset 12/13 from outer */
  content: '';
  position: absolute;
  top: 13px;
  left: 12px;
  width: calc(100% - 24px);
  height: 99px;
  max-height: calc(100% - 26px);
  background: linear-gradient(57.69deg, #2C9A06 6.22%, #5CE12D 117.09%);
  border-radius: 6px;
  pointer-events: none;
}
.sec01_cta_btn:hover { transform: translateY(-2px); opacity: .92; }
.sec01_cta_btn_text {
  position: relative;
  z-index: 1;
  font-family: 'Yu Gothic Pr6N', 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  filter: drop-shadow(0px 0px 17px #1D7100);
}

.sec01_cta_btn_arrow {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

/* ============================================================
 * SEC01 実績バッジ
 * Figma: padding 80px 240px / gap 40px / 1920x934
 * ============================================================ */
.sec01_lead {
  background: #FFFFFF;
  width: 100%;
  min-height: 934px;
}
.sec01_lead_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* --- Badges block (1280x720 in Figma) --- */
.sec01_lead_badges {
  position: relative;
  width: 1280px;
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%;  /* 720/1280 */
}

/* --- Top row: 4 round badges (1280x320, top:0) --- */
.sec01_lead_row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  filter: drop-shadow(0px 30px 30px rgba(193, 181, 151, 0.3));
}
.sec01_lead_badge {
  width: 25%;
  height: auto;
  display: block;
}

/* --- No.1 badge (720x360, centered, top: 360/720 = 50%) --- */
.sec01_lead_no1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 56.25%;  /* 720/1280 */
  height: auto;
  display: block;
  filter: drop-shadow(0px 30px 30px rgba(193, 181, 151, 0.3));
}

/* --- Footnote --- */
.sec01_lead_note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 350;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #737373;
  width: 1280px;
  max-width: 100%;
  text-align: right;
  margin: 0;
}

/* ---------- SVG セクション ---------- */
.sec_deco {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.sec_deco_img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.sec_deco_narrow {
  max-width: 1150px;
  margin: 0 auto;
}
.sec_deco_960 {
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================================
 * フォームエリア（ページ末尾の専用セクション）
 * デザイン参照：sp / pc 共に
 *  - 上部訴求：累計件数バッジ＋見出し
 *  - 白カード（角丸）に2タブ＋フォーム
 *  - 既定タブは「郵送はこちら」（左）
 * ============================================================ */
.formArea_sec {
  background: #E6F2FB;
  padding: 80px 20px 100px;
}
.formArea_sec_inner {
  max-width: 760px;
  margin: 0 auto;
}
.formArea_sec_head {
  text-align: center;
  margin-bottom: 32px;
}
.formArea_sec_badge {
  display: inline-block;
  background: linear-gradient(180deg, #FFE000 0%, #FFC000 100%);
  color: #C53030;
  font-weight: 900;
  font-size: 18px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}
.formArea_sec_title {
  font-size: 32px;
  font-weight: 900;
  color: #007EBC;
  line-height: 1.4;
}
.formArea_sec_title strong {
  display: inline-block;
  font-size: 38px;
  color: #C53030;
}
.formArea_sec_num {
  font-size: 56px;
  font-weight: 900;
  color: #FFC000;
  -webkit-text-stroke: 2px #C53030;
  text-stroke: 2px #C53030;
  line-height: 1;
  vertical-align: -2px;
}

/* ----- フォームカード ----- */
.form_card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 64, 128, 0.16);
  overflow: hidden;
}

/* タブ */
.tab {
  display: flex;
  gap: 0;
  background: #BCDEF2;
}
.tab li {
  flex: 1 1 50%;
  padding: 22px 12px;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  background: #6FA8C8;
  border: 0;
  cursor: pointer;
  transition: background .2s, color .2s;
  border-bottom: 4px solid transparent;
  position: relative;
}
.tab li:hover { background: #5C97B8; }
.tab li.on {
  color: #007EBC;
  background: #FFFFFF;
  border-bottom-color: transparent;
}
.tab li.on::before {
  /* 上部に小さなインジケータ */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #FFC000;
}
.tab_text { display: inline-block; }

/* パネル */
.form_panel { display: none; padding: 36px 40px 40px; }
.form_panel.is_active { display: block; }

/* 入力行 */
.form_row {
  margin-bottom: 20px;
}
.form_label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.form_req {
  display: inline-block;
  background: #E60012;
  color: #FFFFFF;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.form_input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #D0D7E0;
  border-radius: 8px;
  background: #FFFFFF;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form_input::placeholder { color: #B0B8C0; }
.form_input:focus {
  outline: none;
  border-color: #007EBC;
  background-color: #F5FBFF;
  box-shadow: 0 0 0 3px rgba(0, 126, 188, 0.18);
}
.form_input_zip  { max-width: 240px; }
.form_input_pref { max-width: 100%; background-image: url("../images/icon_arr_down_blue.webp"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px 8px; padding-right: 40px; }

/* エラー表示 */
.form_row.is_error .form_label { color: #E60012; }
.form_row.is_error .form_input {
  border-color: #E60012;
  background-color: #FFF5F5;
}

.form_hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}

.form_privacy {
  margin: 24px 0 16px;
  text-align: center;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.form_privacy a { color: #007EBC; text-decoration: underline; }
.form_check input { margin-right: 6px; vertical-align: middle; }

.form_submit { text-align: center; margin-top: 16px; }
.form_btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #00C040 0%, #009A30 100%);
  color: #FFFFFF;
  border: 0;
  border-radius: 12px;
  padding: 18px 60px 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 0 #007020, 0 8px 16px rgba(0, 0, 0, 0.18);
  transition: transform .12s, box-shadow .12s;
  min-width: 360px;
}
.form_btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #007020, 0 6px 12px rgba(0, 0, 0, 0.18);
}
.form_btn_eyebrow {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.form_btn_text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* ============================================================
 * SEC01-2  Figma: padding 100px 78px / gap 88px / bg #E6F2FB
 * ============================================================ */
/* ============================================================
 * SEC01-2  弁護士保険ミカタとは？
 * Figma: padding 100px 78px / gap 88px / 1920x2168 / bg #E6F2FB
 * ============================================================ */
.sec01_2 {
  background: #E6F2FB;
  width: 100%;
}
.sec01_2_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 88px;
}

/* --- Top block (title + card, gap 64px) --- */
.sec01_2_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

/* --- タイトル (667x150 in Figma) --- */
.sec01_2_title {
  width: 667px;
  max-width: 100%;
}
.sec01_2_title img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* --- カード＋イラスト画像 (1440px in Figma) --- */
.sec01_2_card {
  width: 100%;
  max-width: 1440px;
}
.sec01_2_card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* --- テキスト (Frame 5841, gap 64px) --- */
.sec01_2_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  text-align: center;
  width: 733px;
  max-width: 100%;
}

/* Lead: "など、日常生活の中で..." with yellow highlight */
.sec01_2_lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 160%;
  text-align: center;
  color: #007CCF;
}
.sec01_2_lead_normal {
  font-size: 28px;
  font-weight: 500;
  color: #1D1D1D;
}
.sec01_2_lead mark {
  background: linear-gradient(transparent 65%, #F3FF63 65%, #F3FF63 92%, transparent 92%);
  color: inherit;
  padding: 0;
}

/* Bottom block (Frame 5840, no gap) */
.sec01_2_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sec01_2_body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 180%;
  text-align: center;
  color: #1D1D1D;
}
.sec01_2_highlight {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  color: #007CCF;
}
.sec01_2_body2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 180%;
  text-align: center;
  color: #1D1D1D;
}
.sec01_2_emphasis {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
  color: #1D1D1D;
}
.sec01_2_emphasis strong {
  font-weight: 900;
  font-size: 36px;
  color: #007CCF;
}

/* ============================================================
 * 共通CTAブロック（青グラデ背景／実績バッジ＋緑ボタン）
 * ============================================================ */
.cta {
  width: 100%;
  background: linear-gradient(270deg, #007EBC 0%, #00AAFF 52%, #007EBC 100%);
  padding: 40px 20px 60px;
}
.cta_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta_pattern {
  width: 100%;
  max-width: 720px;
}
.cta_pattern img { display: block; margin: 0 auto; }
.cta_btn {
  display: inline-block;
  transition: transform .15s, opacity .15s;
}
.cta_btn:hover { transform: translateY(-3px); opacity: .92; }
.cta_btn img { max-width: 100%; height: auto; }
.cta_btn_main img { max-width: 520px; width: 100%; }
.cta_btn_last img { max-width: 460px; width: 100%; }
/* 最後のCTAは少し落ち着いた背景 */
.cta_last { background: linear-gradient(180deg, #007EBC 0%, #0096D6 100%); }

/* ============================================================
 * CTA main (sec01-2直下)
 * Figma: padding 40px 80px 60px / gap 40px / 1920x548
 * Frame 150: row, space-between, 1280x270, gap 40px
 * ============================================================ */
.cta_main {
  padding: 40px 80px 60px;
}
.cta_main_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* --- パンフレット画像 (640x270) --- */
.cta_main_img {
  display: block;
  width: 640px;
  max-width: 100%;
  height: auto;
}

/* --- グリーンボタン (560x138) --- */
.cta_main_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 560px;
  height: 138px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 10px;
  text-decoration: none;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
  transition: transform .12s, opacity .12s;
  cursor: pointer;
}
.cta_main_btn::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  width: 544px;
  height: 125px;
  background: #76C922;
  border-radius: 6px;
  pointer-events: none;
}
.cta_main_btn:hover { transform: translateY(-2px); opacity: .92; }
.cta_main_btn_text {
  position: relative;
  z-index: 1;
  font-family: 'M PLUS 1', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.07em;
  color: #FFFFFF;
}
.cta_main_btn_text_hl {
  color: #F3FF63;
}
.cta_main_btn_text_sm {
  font-size: 0.78em;
}
.cta_main_btn_arrow {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

/* ============================================================
 * CTA full (sec13直下 — パンフ + バッジ + 2ボタン)
 * Figma: padding 40px 80px 60px / gap 40px / 1920x605
 * ============================================================ */
.cta_full {
  padding: 40px 80px 60px;
}
.cta_full_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* --- Top: Frame 150 (1280x270, row, space-between, gap 40) --- */
.cta_full_top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.cta_full_pamphlet {
  display: block;
  width: 640px;
  max-width: 100%;
  height: 270px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.cta_full_badges_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 640px;
  height: 248px;
  flex-shrink: 0;
}
.cta_full_web {
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}
.cta_full_badge_img {
  display: block;
  width: 496.44px;
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}
.cta_full_note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

/* --- Bottom: Frame 151 (1200x195, row, center, align-end, gap 80) --- */
.cta_full_buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 80px;
  width: 1200px;
  max-width: 100%;
}
.cta_full_btn_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 560px;
  flex-shrink: 0;
}
.cta_full_eyebrow {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 38.95px;
  line-height: 120%;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-align: center;
}

/* Shared button base */
.cta_full_green_btn,
.cta_full_orange_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 560px;
  height: 138px;
  background: #FFFFFF;
  border-radius: 10px;
  text-decoration: none;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
  transition: transform .12s, opacity .12s;
  cursor: pointer;
}
.cta_full_green_btn::before,
.cta_full_orange_btn::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  width: 544px;
  height: 125px;
  border-radius: 6px;
  pointer-events: none;
}
.cta_full_green_btn::before { background: #76C922; }
.cta_full_orange_btn::before { background: #E49216; }
.cta_full_green_btn:hover,
.cta_full_orange_btn:hover { transform: translateY(-2px); opacity: .92; }

.cta_full_btn_text {
  position: relative;
  z-index: 1;
  font-family: 'M PLUS 1', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.07em;
}
.cta_full_btn_text_green { color: #FFFFFF; }
.cta_full_btn_text_orange { color: #FFFFFF; letter-spacing: 0.02em; }
.cta_full_btn_text_hl { color: #F3FF63; }
.cta_full_btn_text_sm { font-size: 0.78em; }
.cta_full_btn_arrow {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

/* ============================================================
 * CTA badges (sec14直下 — バッジ + オレンジボタン)
 * ============================================================ */
.cta_badges {
  padding: 40px 80px 60px;
}
.cta_badges_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta_badges_img {
  display: block;
  width: 544px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.cta_badges_note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
.cta_badges_eyebrow {
  font-family: 'YuGothic', 'Yu Gothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

/* ============================================================
 * 各セクション ── Figma 高レベル layout 値 + 背景色を反映
 *   PC幅:1920px / SP幅:400px。中身はsliced画像 + 部分的にlive HTML。
 * ============================================================ */

/* sec02  背景: グラデーション(132,156,168 → 56,128,165 → 132,156,168), padding 80px 0
 * デザイン: "ご存知ですか？" → trouble_img → sec02-img → Frame.png → sec02-img02 */
.sec02 {
  background: linear-gradient(270deg, rgba(132,156,168,1) 0%, rgba(56,128,165,1) 50%, rgba(132,156,168,1) 100%);
}
.sec02 .sec_inner { padding: 80px 40px; max-width: 1920px; gap: 48px; }
.sec02 .sec_inner > picture { max-width: 1200px; }
.sec02 .sec02_list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
.sec02 .sec02_list picture { max-width: 500px; flex: 1 1 220px; }

/* sec03  "例えば…" + 事例 + "なんてことも" — デザインは白bg + 中央配置 */
.sec03 { background: #FFFFFF; }
.sec03 .sec_inner { padding: 80px 40px; max-width: 1920px; gap: 24px; }
.sec03 .sec_inner > picture { max-width: 1200px; }
.sec03_catch {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin: 32px 0 8px;
  letter-spacing: 0.06em;
}

/* sec04  GROUP 1920×511 (固定高さ) */
.sec04 { background: #FFFFFF; }
.sec04 .sec_inner { padding: 0; max-width: 1920px; }
.sec04 .sec_inner picture { max-width: 1920px; }

/* sec05  解決事例 */
.sec05 { background: #FFFFFF; }
.sec05 .sec_inner { padding: 80px 0; max-width: 1920px; gap: 40px; }
.sec05 .sec_inner picture { max-width: 1440px; padding: 0 40px; }
.sec05_note {
  font-size: 13px;
  color: #666;
  text-align: left;
  max-width: 1100px;
  padding: 0 40px;
  line-height: 1.6;
}

/* sec06  ミカタ保険内容 — 各画像パーツが縦に積み重なる。
 * 一部は重なり（デザインではgap:-142px）だが実際のスライス画像は
 * 個別にカットされているため重なりは不要（画像自体が完結）。
 * 重なりが必要なのは特定の装飾パーツだけ → 初期値0にしておく。 */
.sec06 { background: #FFFFFF; }
.sec06 .sec_inner { padding: 0; max-width: 1920px; gap: 0; }
.sec06 .sec_inner picture { max-width: 1440px; }

/* sec08  Figma: padding 80px 0 / gap 40px / bg #E6F2FB */
.sec08 { background: #E6F2FB; }
.sec08 .sec_inner { padding: 80px 0; max-width: 1920px; gap: 40px; }
.sec08 .sec_inner picture { max-width: 1440px; padding: 0 40px; }
.sec08_note {
  font-size: 13px;
  color: #444;
  text-align: left;
  max-width: 1100px;
  margin: 0 40px;
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 8px;
  line-height: 1.7;
}

/* sec09  Figma: padding 40px 0 0 / 画像タイル背景 + #BBE2FF */
.sec09 { background: #BBE2FF; }
.sec09 .sec_inner { padding: 40px 0 0; max-width: 1920px; gap: 0; }
.sec09 .sec_inner picture { max-width: 1440px; }

/* sec10  Figma: padding 96px 80px / gap 64px / 画像タイル背景 */
.sec10 { background: #FFFFFF; }
.sec10 .sec_inner { padding: 96px 80px; max-width: 1920px; gap: 64px; }

/* sec11  ケーススタディ漫画。スライス画像間のギャップなし。 */
.sec11 { background: #FFFFFF; }
.sec11 .sec_inner { padding: 0; max-width: 1920px; gap: 0; }
.sec11 .sec_inner picture { max-width: 1440px; }

/* sec12  Figma: padding 40px 0 80px / gap 80px */
.sec12 { background: #FFFFFF; }
.sec12 .sec_inner { padding: 40px 0 80px; max-width: 1920px; gap: 80px; }
.sec12 .sec_inner picture { max-width: 1440px; }

/* sec13  Figma: padding 96px 0 0 / gap 67px */
.sec13 { background: #FFFFFF; }
.sec13 .sec_inner { padding: 96px 0 0; max-width: 1920px; gap: 67px; }
.sec13_block {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
}

/* sec14  よくあるご質問（live HTML）
 * Figma: padding 80px 240px / gap 40px / bg #E6F2FB / width 1920px
 * Content width = 1920 - 240*2 = 1440 → inner list = 880px */
.sec14 {
  background: #E6F2FB;
  width: 100%;
}
.sec14_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* --- FAQ badge (white speech-bubble) --- */
.sec14_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sec14_faq_badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 38px;
  background: #FFFFFF;
  border-radius: 1.28px;
}
.sec14_faq_text {
  font-family: 'DIN 2014', 'DIN Alternate', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: 25.56px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #61A6DD;
}
.sec14_faq_arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6.39px solid transparent;
  border-right: 6.39px solid transparent;
  border-top: 6.39px solid #FFFFFF;
}

/* --- Title --- */
.sec14_title {
  font-family: 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #007CCF;
}

/* --- Q&A list --- */
.sec14_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 880px;
  max-width: 100%;
  gap: 40px;
}

/* --- Q&A item --- */
.sec14_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}

/* --- Q row (white bar) --- */
.sec14_q {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 20px;
  gap: 20px;
  width: 100%;
  background: #FFFFFF;
  box-sizing: border-box;
}
.sec14_q_letter {
  flex-shrink: 0;
  font-family: 'DIN 2014', 'DIN Alternate', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #004C80;
}
.sec14_q_text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
}
.sec14_plus {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Q row interaction --- */
.sec14_q { cursor: pointer; }
.sec14_plus svg { transition: transform .3s; }
.sec14_item.is_open .sec14_plus svg { transform: rotate(45deg); }

/* --- A row (hidden by default) --- */
.sec14_a {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  padding: 5px 20px;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
.sec14_item.is_open .sec14_a { display: flex; }
.sec14_a_letter {
  flex-shrink: 0;
  font-family: 'DIN 2014', 'DIN Alternate', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #23ACF0;
}
.sec14_a_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec14_a_body p {
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
  margin: 0;
}

/* --- Example block (Q2) --- */
.sec14_example {
  display: flex;
  flex-direction: column;
}
.sec14_example p {
  margin: 0;
}
.sec14_example_list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.sec14_example_list li {
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
}

/* --- Bullet list in answers --- */
.sec14_ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.sec14_ul li {
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
}

/* --- Keyword links with triangle arrows --- */
.sec14_keywords {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec14_keyword {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .12s;
}
.sec14_keyword:hover { opacity: .7; }
.sec14_keyword:hover span { text-decoration: underline; }
.sec14_keyword_arrow {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}
.sec14_keyword span {
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.02em;
  color: #007CCF;
}

/* --- Info box (dashed border) --- */
.sec14_infobox {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  border: 2px dashed #444444;
}
.sec14_infobox p {
  margin: 0;
  flex: 1;
}

/* --- Note / footnote text --- */
.sec14_note,
.sec14_a_body .sec14_note {
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
  margin: 0;
}

/* --- Table --- */
.sec14_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sec14_table {
  width: 740px;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.sec14_table col { width: 148px; }
.sec14_table th {
  background: #0F618F;
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  padding: 10px;
  border-right: 1px solid #FFFFFF;
  border-top: 2px solid #0F618F;
  border-bottom: 1px solid #0F618F;
  border-left: none;
}
.sec14_table th:first-child {
  font-size: 16px;
  line-height: 180%;
  border-left: 2px solid #0F618F;
}
.sec14_table th:last-child {
  border-right: 2px solid #0F618F;
}
.sec14_table td {
  background: #FFFFFF;
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #1D1D1D;
  padding: 10px;
  border: 1px solid #0F618F;
}
.sec14_td_label {
  background: #F2F5F9 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}
.sec14_table tbody tr:last-child td,
.sec14_table td.sec14_td_bottom {
  border-bottom: 2px solid #0F618F;
}
.sec14_table td.sec14_td_left {
  border-left: 2px solid #0F618F;
}
.sec14_table td.sec14_td_right {
  border-right: 2px solid #0F618F;
}

/* ============================================================
 * SEC15 新版 (弁護士推薦) — Figma exact
 * 960px wide, padding 80px 0 0, bg white
 * ============================================================ */
.sec15_new {
  background: #FFFFFF;
  width: 100%;
}
.sec15_new_inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- Header (Frame 154, gap 20px) --- */
.sec15_new_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-bottom: 0;
}

/* Recommended badge — Figma: Group 212 (200x44.73)
 * Rectangle: 200x38.34, bg #FFF1E2, border-radius 1.278
 * Text: 163x18 positioned left:18.53 from rect → ~18.53px horizontal padding */
.sec15_new_eyebrow {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  height: auto;
  padding: 10px 20px;
  background: #FFF1E2;
  border-radius: 1.27796px;
  font-family: 'DIN 2014', 'DIN Alternate', 'Arial Black', 'Helvetica', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ED7700;
  margin-bottom: 6.39px;
  white-space: nowrap;
}
.sec15_new_eyebrow::after {
  content: '';
  position: absolute;
  bottom: -6.39px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6.39px solid transparent;
  border-right: 6.39px solid transparent;
  border-top: 6.39px solid #FFF1E2;
}
.sec15_new_eyebrow::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6.39px solid transparent;
  border-right: 6.39px solid transparent;
  border-top: 6.39px solid #FFF1E2;
}

/* Title — Frame 153, 641x114, gap 20px */
.sec15_new_title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 105%;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin: 0;
  color: #1D1D1D;
}
.sec15_new_title_line1 {
  color: #1D1D1D;
}
.sec15_new_title_line2 {
  color: #1D1D1D;
}
.sec15_new_title em {
  font-style: normal;
  color: #ED7700;
}

/* --- Lawyer card (Frame 161, row, padding 40px 0, gap 40px) --- */
.sec15_new_card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
  gap: 40px;
  width: 100%;
}

/* Left column (Frame 160: 320px, gap 10px) */
.sec15_new_card_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 320px;
  flex-shrink: 0;
}
.sec15_new_photo {
  display: block;
  width: 320px;
  height: 240px;
  object-fit: cover;
}
.sec15_new_name {
  width: 320px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #1D1D1D;
  margin: 0;
  text-align: left;
}

/* Right column (Frame 159: 600px, gap 20px) */
.sec15_new_card_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  max-width: 600px;
}

/* Quote box — Frame 158 (600x146, padding 10px 20px, bg #FFF1E2, radius 2) */
.sec15_new_quote {
  display: block;
  width: 600px;
  max-width: 100%;
  min-height: 146px;
  padding: 10px 20px;
  background: #FFF1E2;
  border-radius: 2px;
  margin: 0;
  box-sizing: border-box;
  font-family: 'YuGothic', 'Yu Gothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #1D1D1D;
}
.sec15_new_quote_accent {
  color: #ED7700;
}
.sec15_new_quote_dark {
  color: #1D1D1D;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

/* Body + note (Frame 157: 600px, gap 20px) */
.sec15_new_body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 600px;
  max-width: 100%;
}
.sec15_new_body p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  color: #444444;
  margin: 0;
  letter-spacing: 0;
}
.sec15_new_body_accent {
  color: #ED7700;
  font-weight: 500;
}
/* Highlighted body line — bold orange text, no background */
.sec15_new_body_highlight {
  display: block;
  background: transparent;
  padding: 0;
  font-family: 'YuGothic', 'Yu Gothic', 'Noto Sans JP', sans-serif !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 180% !important;
  letter-spacing: 0.02em !important;
  color: #ED7700 !important;
  text-align: left !important;
  border-radius: 0;
}
.sec15_new_note {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  text-align: right;
  color: #444444;
  margin: 0;
}

/* --- Manga --- */
.sec15_new_manga {
  width: 100%;
  padding: 40px 0 80px;
}
.sec15_new_manga img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}

/* sec15 (kept for backward compat if needed) */
.sec15 { background: #FCFCFC; padding: 80px 20px; }
.sec15_title {
  font-size: 32px;
  font-weight: 700;
  color: #007EBC;
  text-align: center;
  margin-bottom: 32px;
}
.sec15 .faq {
  max-width: 900px;
  margin: 0 auto;
}
.faq_q {
  font-size: 18px;
  font-weight: 700;
  color: #007EBC;
  background: #E6F2FB;
  padding: 16px 20px;
  margin-top: 16px;
  border-radius: 8px;
}
.faq_a {
  font-size: 16px;
  padding: 16px 20px 8px;
  color: #333;
}

/* 20px breathing room when CTA buttons scroll to this section */
#contact { scroll-margin-top: 20px; }

/* sec16  Figma: padding 80px 0 / gap 40px / bg #CAE7F5 */
/* ============================================================
 * SEC16 — 資料請求フォームエリア
 * Figma: Group 226 (720x756) / bg #CAE7F5
 * ============================================================ */
.sec16 {
  background: #CAE7F5;
  width: 100%;
  padding: 80px 20px;
}
.sec16_inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Top banner (sec16-img01: 720x408) */
.sec16_banner {
  width: 720px;
  max-width: 100%;
  height: 408px;
  margin-bottom: 0;
}
.sec16_banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

/* Intro card (sec16-img02: 720x348 per Figma) */
.sec16_intro {
  width: 720px;
  max-width: 100%;
  margin-top: -20px;
  margin-bottom: 24px;
}
.sec16_intro img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ============================================================
 * SEC16 フォーム — Figma pixel perfect
 * Group 225: 720x1521
 * ============================================================ */
.sec16 .form_card {
  width: 720px;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

/* Tabs (Group 223 + 224) — each 334x82, placed side-by-side
 * Figma: 郵送 tab at left 600, ダウンロード tab at left 986
 * Gap between them: 986 - (600+334) = 52px … but in layout we keep them adjacent
 */
.sec16 .tab {
  display: flex;
  flex-direction: row;
  gap: 52px;
  background: transparent;
  width: 720px;
  max-width: 100%;
  padding: 0;
  align-items: flex-end;
  justify-content: flex-start;
}
.sec16 .tab li {
  flex: 0 0 334px;
  width: 334px;
  height: 82px;
  padding: 0;
  background: #086DB9;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px 10px 0 0;
  font-family: 'M PLUS 1', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}
.sec16 .tab li.on {
  background: #FFFFFF;
  color: #086DB9;
  border: 5px solid #7ABCDD;
  border-bottom: none;
  margin-bottom: -5px;
  position: relative;
  z-index: 1;
}
.sec16 .tab li.on::before {
  display: none;
}
.sec16 .tab_text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.sec16 .tab_text::before {
  content: attr(data-main);
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}
.sec16 .tab_text::after {
  content: attr(data-sub);
  font-size: 23px;
  line-height: 23px;
  font-weight: 700;
  margin-left: 4px;
}

/* Form card (Frame 175) */
.sec16 .form_panel {
  box-sizing: border-box;
  width: 720px;
  max-width: 100%;
  padding: 80px 40px;
  background: #FFFFFF;
  border: 5px solid #7ABCDD;
  display: none;
  flex-direction: column;
  gap: 30px;
}
.sec16 .form_panel.is_active {
  display: flex;
}

/* Form row */
.sec16 .form_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
  width: 640px;
  max-width: 100%;
}

/* Label row */
.sec16 .form_label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-bottom: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #444444;
}
.sec16 .form_req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 46px;
  height: 28px;
  background: #007CCF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: #FFFFFF;
  border-radius: 0;
  letter-spacing: 0;
}

/* Input (Frame 174: 640x64, padding 20px, border 3px #BCBCBC, radius 5px) */
.sec16 .form_input {
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  padding: 20px;
  background-color: #FFFFFF;
  border: 3px solid #BCBCBC;
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #444444;
}
.sec16 .form_input::placeholder {
  color: #918A8A;
}
.sec16 .form_input:focus {
  outline: none;
  border-color: #007CCF;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(0, 124, 207, 0.18);
}
.sec16 .form_input_zip { max-width: 100%; }
/* Custom select wrapper approach — hide native select's focus box */
.sec16 .form_row_select {
  position: relative;
}
.sec16 .form_input_pref,
.sec16 select.form_input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  background-color: #FFFFFF;
  background-image: url("../images/icon_arr_down_gray.webp");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px 15px;
  padding: 14px 40px 14px 16px;
  line-height: 1.5;
  text-indent: 0;
  text-overflow: ellipsis;
  cursor: pointer;
  box-shadow: none;
  color: #918A8A;
  box-sizing: border-box;
  vertical-align: middle;
}
.sec16 .form_input_pref::-ms-expand,
.sec16 select.form_input::-ms-expand {
  display: none !important;
}
.sec16 .form_input_pref:focus,
.sec16 select.form_input:focus {
  outline: none !important;
  outline-width: 0 !important;
  border-color: #007CCF;
  box-shadow: 0 0 0 2px rgba(0, 124, 207, 0.18);
}
.sec16 .form_input_pref:focus-visible,
.sec16 select.form_input:focus-visible {
  outline: none !important;
  outline-width: 0 !important;
}
.sec16 .form_input_pref:focus::-ms-value,
.sec16 select.form_input:focus::-ms-value {
  background: transparent;
  color: #444444;
}
.sec16 .form_input_pref::-moz-focus-inner,
.sec16 select.form_input::-moz-focus-inner {
  border: 0 !important;
  padding: 0;
  outline: none;
}
.sec16 .form_input_pref:-moz-focusring,
.sec16 select.form_input:-moz-focusring {
  color: #918A8A !important;
  text-shadow: none;
  outline: none !important;
  -moz-text-shadow: none !important;
}
/* Remove any default selection highlight */
.sec16 .form_input_pref::selection,
.sec16 select.form_input::selection {
  background: transparent;
}
.sec16 .form_input_pref option {
  color: #444444;
  background: #FFFFFF;
}
.sec16 .form_input_pref option:checked,
.sec16 .form_input_pref option:hover {
  background: #E6F2FB;
  color: #444444;
}

/* Hint text */
.sec16 .form_hint {
  display: block;
  margin-top: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #3C3C3C;
}

/* Privacy (terms) */
.sec16 .form_privacy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #444444;
}
.sec16 .form_privacy br { display: none; }
.sec16 .form_privacy strong {
  font-weight: 500;
}
.sec16 .form_privacy a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #444444;
  text-decoration: underline;
}

/* Checkbox hidden — agreement is implied by the button "規約に同意した上で入力内容を確認する" */
.sec16 .form_check { display: none; }

/* Submit button (560x138, outer bg #FFFFFF, inner #76C922) */
.sec16 .form_submit {
  display: flex;
  justify-content: center;
  margin-top: 0;
}
.sec16 .form_btn {
  position: relative;
  width: 560px;
  max-width: 100%;
  height: 138px;
  padding: 0;
  background: #FFFFFF;
  border: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
  cursor: pointer;
  box-shadow: none;
  min-width: 0;
}
.sec16 .form_btn_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.sec16 .form_btn_arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.sec16 .form_btn_arrow svg {
  width: 32px;
  height: 32px;
  transform: none;
}
.sec16 .form_btn::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  height: 125px;
  background: #76C922;
  border-radius: 6px;
  pointer-events: none;
}
.sec16 .form_btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
  filter: drop-shadow(4px 6px 6px rgba(0, 0, 0, 0.3));
}
.sec16 .form_btn_eyebrow {
  position: relative;
  z-index: 1;
  font-family: 'M PLUS 1', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.sec16 .form_btn_text {
  position: relative;
  z-index: 1;
  font-family: 'M PLUS 1', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

/* ============================================================
 * FOOTER
 * ============================================================ */
#footer,
#svgFooter {
  width: 100%;
  padding: 0;
  background: transparent;
}

/* Footer (Figma: 1920x219, padding 50px 0 0, gap 25px, bg #E2E2E2) */
#footer,
#svgFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 0;
  gap: 25px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #E2E2E2;
}

/* Top nav bar — List (1000px, 28px high) */
.footer_nav {
  width: 100%;
  background: transparent;
  padding: 0;
}
.footer_nav_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.footer_nav_inner a {
  font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #444444;
  text-decoration: none;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  height: 28px;
}
.footer_nav_inner a:hover {
  text-decoration: underline;
}
.footer_divider {
  color: #444444;
  font-size: 28px;
  line-height: 28px;
  font-weight: 300;
  user-select: none;
  width: 1px;
  height: 28px;
  background: #444444;
  overflow: hidden;
  text-indent: -9999px;
}

/* Bottom copyright bar — Figma: 1920x116, padding 24px 0 26px, gap 22px, bg #4A4A4A */
.footer_copy {
  width: 100%;
  background: #4A4A4A;
  padding: 24px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  box-sizing: border-box;
}
.footer_copy_text {
  font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0;
}
.footer_copy_code {
  font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0;
}

/* Legacy fallbacks */
.footer_inner { max-width: 1200px; margin: 0 auto; text-align: center; }
#f_navi { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-bottom: 24px; }
#f_navi a { font-size: 14px; color: #333; text-decoration: underline; }
#f_copy p { font-size: 12px; color: #666; margin: 0; }

/* ============================================================
 * 固定ボタン（画面下部 追従）
 * ============================================================ */
/* ============================================================
 * 固定ボタン (fixedBtn) — Figma: 1920x120, padding 20px 240px
 * bg: rgba(255,255,255,0.9)
 * ============================================================ */
.fixedBtn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  transition: opacity .3s, transform .3s;
}
main { padding-bottom: 120px; }
.fixedBtn.is_show { display: block; }

/* Frame 6086: 1920x120 Figma bar — inner matches header (max-width: 1278px, padding: 0 40px) */
.fixedBtn_inner {
  max-width: 1278px;
  width: 100%;
  height: 80px;
  margin: 20px auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fixedBtn_logo {
  display: block;
  width: 240px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Green button: 324.64x80, white outer + green inner */
.fixedBtn_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 324.64px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 5.7971px;
  text-decoration: none;
  filter: drop-shadow(2.32px 2.32px 2.32px rgba(0, 0, 0, 0.25));
  transition: transform .12s, opacity .12s;
  cursor: pointer;
  flex-shrink: 0;
}
.fixedBtn_link::before {
  content: '';
  position: absolute;
  top: 3.48px;
  left: 4.64px;
  width: 315.36px;
  height: 72.46px;
  background: #76C922;
  border-radius: 3.47826px;
  pointer-events: none;
}
.fixedBtn_link:hover { transform: translateY(-1px); opacity: .92; }
.fixedBtn_link_text {
  position: relative;
  z-index: 1;
  font-family: 'M PLUS 1', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 22.029px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  padding-right: 28px;
}
.fixedBtn_link_text_hl { color: #F3FF63; }
.fixedBtn_link_text_sm { font-size: 0.78em; }
.fixedBtn_link_line {
  display: inline;
}
.fixedBtn_link_arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  line-height: 0;
}
.fixedBtn_link_arrow svg {
  width: 18px;
  height: 18px;
}

/* AOS 既定オフセットのチューニング */
[data-aos] { will-change: transform, opacity; }

/* ============================================================
 * SP (smartphone)  ≦ 769px
 * ============================================================ */
@media screen and (max-width: 769px) {
  body { font-size: 15px; padding-bottom: 0; }
  main { padding-bottom: 80px; }

  /* 固定ボタン SP — match sec16 form width */
  .fixedBtn { height: 90px; }
  .fixedBtn_inner {
    width: 100%;
    max-width: 100%;
    height: 74px;
    padding: 0 16px;
    margin: 8px 0;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
  }
  .fixedBtn_logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    flex-shrink: 1;
  }
  .fixedBtn_link {
    flex: 0 0 auto;
    width: 180px;
    height: 74px;
    border-radius: 8px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  }
  .fixedBtn_link::before {
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 5px;
  }
  .fixedBtn_link_text {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    padding-right: 14px;
    white-space: normal;
    text-align: center;
    flex-direction: column;
    gap: 0;
  }
  .fixedBtn_link_line {
    display: block;
  }
  .fixedBtn_link_arrow { right: 8px; }
  .fixedBtn_link_arrow svg { width: 14px; height: 14px; }
  main { padding-bottom: 0; }

  .sec_inner {
    padding: 40px 16px;
    gap: 24px;
  }

  /* HEADER SP — match origin design: prominent logo + wide orange pill + big phone */
  #header { border-bottom-width: 3px; }
  .header_inner {
    height: auto;
    padding: 10px 12px;
    box-sizing: border-box;
    max-width: 100%;
    gap: 8px;
    display: flex;
    align-items: center;
  }
  .header_logo {
    flex-shrink: 0;
  }
  .header_logo img {
    width: 100px;
    height: auto;
  }
  .header_contact {
    gap: 8px;
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }
  .header_biz {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0 12px;
    min-width: 0;
    flex: 1 1 auto;
    height: 52px;
    border-radius: 30px;
    border-width: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    text-align: center;
  }
  .header_tel {
    width: 52px;
    height: 52px;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
  }
  .header_tel_icon svg { width: 26px; height: 26px; }

  /* SEC01 hero — SP: 1枚画像に切替 */
  .sec01 { padding: 0; }
  .sec01_hero { padding: 0; margin-bottom: 0; }
  .sec01_hero_bg   { display: none; }
  .sec01_content   { display: none; }
  .sec01_hero_sp   { display: block; width: 100%; height: auto; }

  /* SEC01 CTA bar SP */
  .sec01_cta { padding: 24px 16px 20px; }
  .sec01_cta_inner { flex-direction: column; gap: 20px; }
  .sec01_cta_left { width: 100%; }
  .sec01_cta_badges { width: 100%; max-width: 320px; height: auto; margin: 0 auto; }
  .sec01_cta_note { font-size: 10px; }
  .sec01_cta_right { width: 100%; }
  .sec01_cta_eyebrow { font-size: 18px; }
  .sec01_cta_btn { width: 100%; max-width: 360px; height: 80px; margin: 0 auto; }
  .sec01_cta_btn::before { inset: 9px 12px; width: auto; height: auto; max-height: none; transform: none; }
  .sec01_cta_btn_text { font-size: 22px; }
  .sec01_cta_btn_arrow svg { width: 22px; height: 22px; }

  /* SEC01 lead badges SP — 2x2 grid + No.1 below */
  .sec01_lead {
    min-height: 0;
  }
  .sec01_lead_inner {
    padding: 40px 16px 24px;
    gap: 16px;
  }
  .sec01_lead_badges {
    position: static;
    padding-bottom: 0;
    width: 100%;
    max-width: 360px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .sec01_lead_row {
    position: static;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 12px 8px;
    filter: none;
  }
  .sec01_lead_badge {
    width: calc(50% - 6px);
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0px 8px 8px rgba(193, 181, 151, 0.3));
  }
  .sec01_lead_no1 {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 80%;
    max-width: 280px;
    height: auto;
    margin: 4px auto 0;
  }
  .sec01_lead_note {
    font-size: 10px;
    text-align: right;
    width: 100%;
    max-width: 360px;
    margin-top: 4px;
  }

  /* フォームエリア */
  .formArea_sec { padding: 48px 12px 64px; }
  .formArea_sec_head { margin-bottom: 24px; }
  .formArea_sec_badge { font-size: 13px; padding: 8px 18px; }
  .formArea_sec_title { font-size: 20px; }
  .formArea_sec_title strong { font-size: 24px; }
  .formArea_sec_num { font-size: 36px; }

  .form_card { border-radius: 16px; }
  .tab li { padding: 16px 8px; font-size: 14px; }
  .form_panel { padding: 24px 16px 28px; }
  .form_label { font-size: 14px; }
  .form_input { padding: 12px 14px; font-size: 16px; /* iOS zoom-prevent */ }
  .form_input_zip { max-width: 100%; }
  .form_btn { min-width: 100%; padding: 14px 24px 18px; }
  .form_btn_text { font-size: 18px; }

  .sec01_2_inner { padding: 48px 16px; gap: 40px; }
  .sec01_2_top { gap: 32px; }
  .sec01_2_title { width: 100%; max-width: 300px; }
  .sec01_2_text { gap: 32px; width: 100%; }
  .sec01_2_lead { font-size: 20px; }
  .sec01_2_lead_normal { font-size: 16px; }
  .sec01_2_body { font-size: 14px; }
  .sec01_2_body2 { font-size: 13px; }
  .sec01_2_highlight { font-size: 26px; }
  .sec01_2_emphasis { font-size: 16px; }
  .sec01_2_emphasis strong { font-size: 20px; }
  .sec02 .sec_inner { padding: 48px 16px; gap: 24px; }
  .sec02 .sec02_list { padding: 0; gap: 12px; }
  .sec03 .sec_inner { padding: 48px 16px; gap: 16px; }
  .sec03_catch { font-size: 24px; margin: 20px 0 4px; }
  .sec_deco_352 { max-width: 352px; margin: 0 auto; }
  .sec05 .sec_inner { padding: 48px 0; gap: 24px; }
  .sec05 .sec_inner picture { padding: 0 16px; }
  .sec05_note { padding: 0 16px; font-size: 11px; }
  .sec06 .sec_inner picture + picture { margin-top: -40px; }
  .sec08 .sec_inner { padding: 48px 0; gap: 24px; }
  .sec08 .sec_inner picture { padding: 0 16px; }
  .sec08_note { margin: 0 16px; font-size: 12px; padding: 12px 14px; }
  .sec09 .sec_inner { padding: 24px 0 0; }
  .sec10 .sec_inner { padding: 56px 16px; gap: 32px; }
  .sec11 .sec_inner picture + picture { margin-top: -16px; }
  .sec12 .sec_inner { padding: 24px 0 48px; gap: 40px; }
  .sec13 .sec_inner { padding: 56px 0 0; gap: 40px; }
  .sec13_block { padding: 0 16px; gap: 20px; }
  .sec14_inner { padding: 48px 16px; gap: 24px; }
  .sec14_faq_badge { width: 140px; height: 28px; }
  .sec14_faq_text { font-size: 18px; }
  .sec14_faq_arrow { border-left-width: 5px; border-right-width: 5px; border-top-width: 5px; bottom: -5px; }
  .sec14_title { font-size: 28px; }
  .sec14_list { width: 100%; gap: 24px; }
  .sec14_q { padding: 5px 12px; gap: 10px; }
  .sec14_q_letter { font-size: 24px; }
  .sec14_q_text { font-size: 16px; }
  .sec14_plus { width: 30px; height: 30px; }
  .sec14_plus svg { width: 30px; height: 30px; }
  .sec14_a { padding: 5px 12px; gap: 20px; }
  .sec14_a_letter { font-size: 24px; }
  .sec14_a_body p { font-size: 15px; }
  .sec14_ul li { font-size: 15px; }
  .sec14_example { gap: 2px; padding-right: 24px; }
  .sec14_example_list { padding-left: 16px; }
  .sec14_example_list li { font-size: 15px; line-height: 150%; }
  .sec14_example_list li::marker { font-size: 8px; }
  .sec14_example p { font-size: 15px; line-height: 150%; }
  .sec14_a_body { gap: 14px; }
  .sec14_keyword span { font-size: 15px; }
  .sec14_keyword_arrow { width: 13px; height: 13px; }
  .sec14_infobox { padding: 12px 16px; }
  .sec14_infobox p { font-size: 15px; }
  .sec14_note, .sec14_a_body .sec14_note { font-size: 12px; }
  /* Table — fit within viewport, no horizontal scroll */
  .sec14_table_wrap { overflow-x: visible; }
  .sec14_table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }
  .sec14_table col { width: auto; }
  .sec14_table th,
  .sec14_table td {
    padding: 4px 2px;
    font-size: 10px;
    line-height: 1.3;
    word-break: break-all;
  }
  .sec14_table th {
    font-size: 10px;
  }
  .sec14_table th:first-child {
    font-size: 10px;
    line-height: 1.3;
  }
  .sec14_td_label {
    font-size: 10px !important;
    font-weight: 700 !important;
  }
  .sec14_note, .sec14_a_body .sec14_note { font-size: 11px; line-height: 1.5; }
  .sec15 { padding: 0; }
  .sec15_new_inner {
    padding: 40px 0;
    max-width: 100%;
    gap: 0;
  }

  /* Header (Frame 154) — padding 0, gap 20px */
  .sec15_new_head {
    width: 100%;
    gap: 20px;
  }
  .sec15_new_eyebrow {
    width: auto;
    min-width: 0;
    height: auto;
    padding: 3.83px 12px;
    font-size: 15.3355px;
    border-radius: 0.767px;
    line-height: 1;
  }
  .sec15_new_eyebrow::after {
    bottom: -3.83px;
    border-left-width: 3.83px;
    border-right-width: 3.83px;
    border-top-width: 3.83px;
  }
  .sec15_new_title {
    font-size: 24px;
    line-height: 105%;
    gap: 10px;
  }

  /* Cards (Frame 161/162/163) — padding 24px 0, gap 20px */
  .sec15_new_card {
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    width: 100%;
    margin: 0;
  }
  .sec15_new_card:first-of-type {
    margin: 0;
  }

  /* Frame 160: 320x268, gap 10px — photo + name */
  .sec15_new_card_head {
    width: 320px;
    max-width: calc(100% - 48px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
  }
  .sec15_new_photo {
    width: 100%;
    max-width: 320px;
    height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .sec15_new_name {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #1D1D1D;
    text-align: left;
  }

  /* Frame 159: padding 0 24px, gap 10px */
  .sec15_new_card_content {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    gap: 10px;
    box-sizing: border-box;
    align-items: stretch;
  }

  /* Quote (Frame 158): padding 10px 20px, 20px/500/130% */
  .sec15_new_quote {
    width: 100%;
    min-height: 98px;
    padding: 10px 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0.02em;
    border-radius: 2px;
  }
  .sec15_new_quote_accent {
    font-weight: 500;
  }

  /* Frame 157: body + note, gap 20px */
  .sec15_new_body {
    width: 100%;
    gap: 20px;
  }
  .sec15_new_body p {
    font-size: 16px;
    line-height: 180%;
    color: #444444;
  }
  .sec15_new_body_highlight {
    font-size: 16px !important;
    line-height: 180% !important;
  }
  .sec15_new_body_accent {
    font-size: 16px;
  }
  .sec15_new_note {
    font-size: 14px;
    line-height: 30px;
    text-align: right;
  }

  /* Hide manga on smartphone */
  .sec15_new_manga { display: none; }
  .sec15_title { font-size: 24px; margin-bottom: 20px; }
  .faq_q { font-size: 15px; padding: 12px 14px; }
  .faq_a { font-size: 14px; padding: 12px 14px 4px; }
  .sec16 .sec_inner { padding: 48px 0; gap: 24px; }
  .sec16 .sec_inner picture { padding: 0 16px; }
  /* SEC16 SP — tight spacing to match origin design */
  .sec16 { padding: 24px 0 40px; }
  .sec16_inner {
    /* gap: 16px; */
    padding: 0 24px;
    align-items: center;
    max-width: 100%;
  }
  .sec16_banner {
    width: 100%;
    max-width: 352px;
    height: auto;
    margin: 0;
  }
  .sec16_banner picture,
  .sec16_banner img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 352px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
  }
  .sec16_intro {
    width: 100%;
    max-width: 352px;
    margin: 0;
  }
  .sec16_intro img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* SEC16 form SP — pixel perfect */
  .sec16 .form_card { width: 100%; max-width: 352px; margin-top: 16px; }

  /* Tabs — 152x55 (郵送) / 192x53 (ダウンロード) */
  .sec16 .tab {
    width: 100%;
    padding: 0;
    gap: 8px;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .sec16 .tab li {
    flex: 0 1 auto;
    width: 152px;
    height: 55px;
    border-radius: 10px 10px 0 0;
    padding: 0 12px;
    min-width: 0;
  }
  .sec16 .tab li:last-child {
    width: 192px;
    height: 53px;
  }
  .sec16 .tab li.on {
    border-width: 5px 5px 0 5px;
  }
  .sec16 .tab_text {
    white-space: nowrap;
  }
  .sec16 .tab_text::before {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
  }
  .sec16 .tab_text::after {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    margin-left: 2px;
  }
/* "ダウンロードはこちら" — single-line bold white */
  .sec16 .tab li:last-child .tab_text {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
  }
  .sec16 .tab li:last-child.on .tab_text {
    color: #086DB9;
  }
  .sec16 .tab li:last-child .tab_text::before {
    content: attr(data-main);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
  }
  .sec16 .tab li:last-child .tab_text::after {
    content: attr(data-sub);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    margin-left: 1px;
  }

  /* Form panel (Frame 175): padding 40px 24px, gap 20px, border 5px #7ABCDD */
  .sec16 .form_panel {
    width: 100%;
    padding: 40px 24px;
    gap: 20px;
    border-width: 5px;
  }

  /* Rows: gap 10px */
  .sec16 .form_row {
    width: 100%;
    gap: 10px;
  }

  /* Label: gap 10px, 18px/500/30px */
  .sec16 .form_label {
    gap: 10px;
    font-size: 18px;
    line-height: 30px;
  }

  /* 必須 badge: 38x30, padding 5px, bg #007CCF, 14px white */
  .sec16 .form_req {
    width: 38px;
    height: 30px;
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
  }

  /* Input: padding 15px 10px, 48px height, border 3px #BCBCBC, radius 5px, 18px */
  .sec16 .form_input {
    height: auto;
    min-height: 48px;
    padding: 12px 10px;
    font-size: 16px;
    border-width: 3px;
    border-radius: 5px;
    line-height: 1.5;
  }
  .sec16 .form_input_pref {
    padding: 12px 40px 12px 10px;
    background-position: right 10px center;
    font-size: 16px;
  }

  /* Hint: 14px/400/18px #3C3C3C */
  .sec16 .form_hint {
    font-size: 14px;
    line-height: 18px;
    margin-top: 0;
  }

  /* Terms — stack vertically, link fits on one line */
  .sec16 .form_privacy {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .sec16 .form_privacy br { display: none; }
  .sec16 .form_privacy strong {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #444444;
    letter-spacing: 0.02em;
  }
  .sec16 .form_privacy a {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #444444;
    text-decoration: underline;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* Submit button: 300x69, outer white radius 5px, inner #76C922 radius 3px */
  .sec16 .form_submit {
    padding: 0;
    width: 100%;
  }
  .sec16 .form_btn {
    width: 300px;
    max-width: 100%;
    height: 69px;
    border-radius: 5px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.25));
  }
  .sec16 .form_btn::before {
    top: 3px;
    left: 4.28px;
    width: calc(100% - 8.57px);
    height: 62.5px;
    border-radius: 3px;
  }
  .sec16 .form_btn_eyebrow {
    font-size: 16px;
    font-weight: 600;
  }
  .sec16 .form_btn_text {
    font-size: 20px;
    font-weight: 700;
  }
  .sec16 .form_btn_arrow {
    right: 10px;
  }
  .sec16 .form_btn_arrow svg {
    width: 24px;
    height: 24px;
    transform: none;
  }

  /* CTA SP */
  .cta { padding: 32px 16px 48px; }
  .cta_inner { gap: 20px; }
  .cta_pattern { max-width: 100%; }
  .cta_btn_main img,
  .cta_btn_last img { max-width: 100%; }
  .cta_main { padding: 24px 16px 32px; }
  .cta_main_inner { gap: 20px; }
  .cta_main_img { width: 100%; max-width: 320px; }
  .cta_main_btn { width: 100%; max-width: 360px; height: 80px; }
  .cta_main_btn::before { inset: 4px 6px; width: auto; height: auto; }
  .cta_main_btn_text { font-size: 22px; }
  .cta_main_btn { width: 100%; max-width: 360px; height: 80px; }
  .cta_main_btn::before { inset: 4px 6px; width: auto; height: auto; }
  .cta_main_btn_text { font-size: 22px; }

  /* CTA badges SP — pamphletless badges + note + eyebrow + orange btn */
  .cta_badges { padding: 24px 16px 32px; }
  .cta_badges_inner { gap: 12px; width: 100%; align-items: center; }
  .cta_badges_img { width: 240px; height: auto; max-width: 100%; }
  .cta_badges_note { font-size: 10px; text-align: center; }
  .cta_badges_eyebrow {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-top: 4px;
  }
  .cta_badges .cta_full_orange_btn {
    width: 100%;
    max-width: 320px;
    height: 70px;
    border-radius: 8px;
  }
  .cta_badges .cta_full_orange_btn::before {
    top: 4px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 8px);
    border-radius: 5px;
  }
  .cta_badges .cta_full_btn_text { font-size: 20px; }

  /* CTA full SP — reorder: pamphlet → eyebrow+green btn → badges+note → orange btn */
  .cta_full { padding: 24px 16px 32px; }
  .cta_full_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .cta_full_top {
    display: contents;
  }
  .cta_full_buttons {
    display: contents;
  }
  .cta_full_pamphlet {
    order: 1;
    width: 240px;
    height: auto;
    flex-shrink: 0;
  }
  .cta_full_btn_col {
    order: 2;
    width: 100%;
    gap: 8px;
  }
  .cta_full_eyebrow { font-size: 16px; letter-spacing: 0.04em; }
  .cta_full_green_btn {
    order: 2;
    width: 100%;
    max-width: 320px;
    height: 70px;
    border-radius: 8px;
  }
  .cta_full_badges_area {
    order: 3;
    width: 100%;
    height: auto;
    gap: 6px;
  }
  .cta_full_web { display: none; }
  .cta_full_badge_img {
    width: 320px;
    height: auto;
    align-self: center;
  }
  .cta_full_note {
    font-size: 10px;
    text-align: center;
  }
  .cta_full_orange_btn {
    order: 4;
    width: 100%;
    max-width: 320px;
    height: 70px;
    border-radius: 8px;
  }
  .cta_full_green_btn::before,
  .cta_full_orange_btn::before {
    top: 4px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 8px);
    border-radius: 5px;
  }
  .cta_full_btn_text { font-size: 20px; }

  #f_navi { gap: 16px; }
  #f_navi a { font-size: 13px; }

  /* Footer SP — Figma exact: padding 20px 0 0, gap 10px */
  #footer, #svgFooter {
    padding: 20px 0 0;
    gap: 10px;
  }
  .footer_nav { padding: 0; }
  .footer_nav_inner {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
  }
  .footer_nav_inner a {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    height: 28px;
    padding: 0;
    color: #444444;
  }
  .footer_divider { display: none; }
  .footer_copy {
    padding: 24px;
    gap: 10px;
  }
  .footer_copy_text {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 22px;
  }
  .footer_copy_code {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 22px;
  }

}

@media screen and (min-width: 770px) {
  /* PC でも fixedBtn を出す */
  .fixedBtn { display: block; }
}

/* ============================================================
 * Tablet / medium — 770px to 1440px
 * Stack CTA elements vertically when they don't fit side-by-side
 * ============================================================ */
@media screen and (min-width: 770px) and (max-width: 1440px) {

  /* SEC01 CTA (Figma 640+560 = 1200+gap, too wide < 1400) → stack */
  .sec01_cta {
    padding: 32px 40px;
  }
  .sec01_cta_inner {
    flex-direction: column;
    gap: 24px;
  }
  .sec01_cta_left,
  .sec01_cta_right {
    width: 100%;
    max-width: 640px;
    flex-shrink: 1;
  }
  .sec01_cta_badges {
    width: 100%;
    max-width: 640px;
    height: auto;
  }
  .sec01_cta_btn {
    width: 488px;
    max-width: 100%;
  }

  /* SEC01 lead — reduce padding */
  .sec01_lead {
    min-height: 0;
  }
  .sec01_lead_inner {
    padding: 60px 40px;
  }

  /* SEC01-2 — reduce padding */
  .sec01_2_inner {
    padding: 60px 40px;
  }

  /* CTA main (Frame: 640 pamphlet + 560 button side by side) → stack */
  .cta_main {
    padding: 32px 40px 40px;
  }
  .cta_main_inner {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
  }
  .cta_main_top {
    flex-direction: row;
    width: auto;
    max-width: 100%;
  }
  .cta_main_pamphlet {
    max-width: 320px;
    width: 100%;
    height: auto;
  }
  .cta_main_btn {
    width: 488px;
    max-width: 100%;
  }

  /* CTA full — reorder to match origin design:
     pamphlet → eyebrow → green button → badges + note → orange button */
  .cta_full {
    padding: 32px 40px 40px;
  }
  .cta_full_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 100%;
  }
  .cta_full_top { display: contents; }
  .cta_full_buttons { display: contents; }

  .cta_full_pamphlet {
    order: 1;
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  .cta_full_btn_col {
    order: 2;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta_full_eyebrow {
    order: 2;
    font-size: 24px;
    letter-spacing: 0.06em;
  }
  .cta_full_green_btn {
    order: 2;
    width: 100%;
    max-width: 600px;
  }
  .cta_full_badges_area {
    order: 3;
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  .cta_full_web { display: none; }
  .cta_full_badge_img {
    width: 100%;
    max-width: 420px;
    height: auto;
    align-self: center;
  }
  .cta_full_note {
    text-align: center;
  }
  .cta_full_orange_btn {
    order: 4;
    width: 100%;
    max-width: 600px;
  }
  /* Fix inner ::before to scale with parent */
  .cta_full_green_btn::before,
  .cta_full_orange_btn::before {
    width: calc(100% - 16px);
    height: calc(100% - 13px);
    top: 6px;
    left: 8px;
  }
  .cta_main_btn::before {
    inset: 6px 8px 7px 8px;
    width: auto;
    height: auto;
  }
  .sec01_cta_btn::before {
    inset: 13px 12px;
    width: auto;
    height: auto;
    max-height: none;
    transform: none;
  }

  /* CTA badges */
  .cta_badges {
    padding: 32px 40px 40px;
  }

  /* SEC14 FAQ */
  .sec14_inner {
    padding: 60px 40px;
  }

  /* SEC15 — stack card vertically, tighten widths */
  .sec15_new_inner {
    padding: 60px 40px 40px;
    max-width: 100%;
  }
  .sec15_new_card {
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    gap: 24px;
    width: 100%;
  }
  .sec15_new_card_head {
    width: 100%;
    max-width: 600px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sec15_new_photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .sec15_new_name {
    width: 100%;
    font-size: 22px;
  }
  .sec15_new_card_content {
    width: 100%;
    max-width: 600px;
    gap: 16px;
    align-items: stretch;
  }
  .sec15_new_quote {
    width: 100%;
    font-size: 26px;
    min-height: auto;
    padding: 16px 20px;
  }
  .sec15_new_body {
    width: 100%;
    gap: 16px;
  }
  .sec15_new_body p {
    font-size: 18px;
    line-height: 180%;
  }
  .sec15_new_body_highlight {
    font-size: 18px !important;
    line-height: 180% !important;
  }
  .sec15_new_note {
    font-size: 13px;
  }
  .sec15_new_title {
    font-size: 36px;
  }
  .sec15_new_manga {
    padding: 32px 0 60px;
  }

  /* SEC16 form */
  .sec16_inner {
    max-width: 720px;
  }

  /* Fixed button — fit within viewport */
  .fixedBtn_inner {
    padding: 0 24px;
  }
  .fixedBtn_logo {
    width: 200px;
    flex-shrink: 1;
    min-width: 0;
  }
  .fixedBtn_link {
    flex-shrink: 0;
    width: 324.64px;
  }
}

/* ============================================================
   VER3 specific additions — image-tag replacements for inline SVG
============================================================ */

/* FAQ plus icon (replaces inline <svg> in ver2) */
.sec14_plus_img {
  width: 40px;
  height: 40px;
  transition: transform .3s;
  display: block;
}
.sec14_item.is_open .sec14_plus_img { transform: rotate(45deg); }

/* Form error message */
.err_msg {
  display: block;
  color: #E60012;
  font-size: 14px;
  margin-top: 4px;
}

/* Form submit button arrow icon */
.sec16 .form_btn_arr {
  width: 32px;
  height: 32px;
}

/* Fixed bottom button arrow icon */
.fixedBtn_link_arr {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 769px) {
  .sec14_plus_img { width: 30px; height: 30px; }
  .sec16 .form_btn_arr { width: 24px; height: 24px; }
  .fixedBtn_link_arr { width: 14px; height: 14px; }
}

/* Google reCAPTCHA */
.grecaptcha-badge {
	visibility: hidden;
}
.grecaptcha-announcement a {
	color: #ffffff;
	text-decoration: underline;
}
.grecaptcha-announcement a:active {
	color: #cccccc;
}