/* ════════════════════════════════════════════
   医療文書DX / 電子同意書 LP
   メディカル革命 byGMO デザインシステム準拠
════════════════════════════════════════════ */

:root, .iryobunsho_lp {
  /* Brand — Flat Mint Green */
  --color_primary: #00b982;
  --color_primary_hover: #00cf91;
  --color_primary_dark: #00936a;
  --color_primary_soft: #e0f5ec;
  --color_primary_softer: #f1faf5;

  /* Text */
  --color_text_dark: #333333;
  --color_text_secondary: #333333;
  --color_text_muted: #555;

  /* Surfaces */
  --color_bg_white: #ffffff;
  --color_bg_canvas: #f5f6f8;
  --color_bg_paper: #faf8f4;   /* matte paper texture base */
  --color_bg_dark: #1c1e22;
  --color_bg_darker: #131418;

  /* Borders */
  --color_border_default: #e3e6ee;
  --color_border_subtle: #eef0f5;
  --color_border_strong: #cdd3e1;

  /* Accents */
  --color_amber: #f5a623;
  --color_red: #d64545;

  /* Layout */
  --content_max: 1250px;
  --content_max_narrow: 880px;

  /* Shadow — flat / matte (フラット表現のため最小限) */
  --shadow_sm: 0 0 0 1px rgba(15, 32, 48, .04);
  --shadow_md: 0 0 0 1px rgba(15, 32, 48, .06);
  --shadow_lg: 0 0 0 1px rgba(15, 32, 48, .08);
  --shadow_teal: 0 0 0 1px rgba(0, 185, 130, .35);

  /* Radius */
  --radius_sm: 4px;
  --radius_md: 8px;
  --radius_lg: 12px;
  --radius_pill: 999px;

  /* Matte paper noise (subtle) */
  --noise_url: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── reset ── */
html, body { margin: 0; }
.iryobunsho_lp, .iryobunsho_lp * { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
.iryobunsho_lp {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color_text_dark);
  background: var(--color_bg_white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.iryobunsho_lp img { max-width: 100%; display: block; }
.iryobunsho_lp a { color: inherit; text-decoration: none; }
.iryobunsho_lp ul,
.iryobunsho_lp ol { list-style: none; }
.iryobunsho_lp button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.iryobunsho_lp .material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.iryobunsho_lp /* ════════════════════════════════════════════
   タイポグラフィ（PC default）
   ※ デザインガイドの規定値（16/24/22/16）をベースに、
     LP訴求要素は1段大きく扱う（個別指定）
════════════════════════════════════════════ */
body,
.iryobunsho_lp p,
.iryobunsho_lp div,
.iryobunsho_lp span,
.iryobunsho_lp a,
.iryobunsho_lp li,
.iryobunsho_lp td,
.iryobunsho_lp th { font-size: 17px; line-height: 1.8; }
.iryobunsho_lp small,
.iryobunsho_lp .small { font-size: 12px; line-height: 1.6; }
.iryobunsho_lp h1 { font-size: 36px; font-weight: 700; line-height: 1.5; }
.iryobunsho_lp h2 { font-size: 30px; font-weight: 700; line-height: 1.5; letter-spacing: .01em; }
.iryobunsho_lp h3 { font-size: 24px; font-weight: 700; line-height: 1.5; }
.iryobunsho_lp h4,
.iryobunsho_lp h5,
.iryobunsho_lp h6 { font-size: 18px; font-weight: 700; line-height: 1.5; }

.iryobunsho_lp /* ════════════════════════════════════════════
   レイアウト共通
════════════════════════════════════════════ */
.iryobunsho_lp { width: 100%; overflow-x: clip; }

.iryobunsho_lp .section_inner {
  max-width: var(--content_max);
  margin: 0 auto;
  padding: 0 32px;
}
.iryobunsho_lp .section_inner_narrow { max-width: var(--content_max_narrow); }

.iryobunsho_lp section { padding: 96px 0; }

.iryobunsho_lp .section_head { text-align: center; margin-bottom: 56px; }
.iryobunsho_lp .section_eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--color_primary);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.iryobunsho_lp .section_eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 2px;
  background: var(--color_primary);
  transform: translateY(-50%);
}
.iryobunsho_lp .section_title {
  color: var(--color_text_dark);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
}
.iryobunsho_lp .section_title em { font-style: normal; color: var(--color_primary); position: relative; }
.iryobunsho_lp .section_lead {
  margin-top: 16px;
  color: var(--color_text_secondary);
  font-size: 17px;
  line-height: 1.9;
}

.iryobunsho_lp /* Matte paper texture utility */
.matte_paper {
  background-color: var(--color_bg_paper);
  background-image: var(--noise_url);
}

.iryobunsho_lp /* ════════════════════════════════════════════
   ボタン — Pill型 / Flat
════════════════════════════════════════════ */
.btn_primary,
.iryobunsho_lp .btn_outline,
.iryobunsho_lp .btn_outline_white {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700;
  border-radius: var(--radius_pill);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
  box-shadow: none;
}

.iryobunsho_lp .btn_primary {
  background: linear-gradient(90deg, #00546C 0%, #1C9F91 100%);;
  color: #fff;
}
.iryobunsho_lp .btn_primary:hover { background: var(--color_primary_hover); transform: translateY(-1px); }

.iryobunsho_lp .btn_outline {
  background: #fff;
  color: var(--color_primary_dark);
  border: 1.5px solid var(--color_primary);
}
.iryobunsho_lp .btn_outline:hover { background: #f3f4f8; color: var(--color_primary_dark); border-color: var(--color_primary_dark); }

.iryobunsho_lp .btn_outline_white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.iryobunsho_lp .btn_outline_white:hover { background: rgba(255,255,255,.08); border-color: #fff; }

.iryobunsho_lp .btn_sm { padding: 10px 18px; font-size: 14px; }
.iryobunsho_lp .btn_lg { padding: 20px 34px; font-size: 17px; min-width: 300px; }
.iryobunsho_lp .btn_sm .material-symbols-rounded { font-size: 18px; }
.iryobunsho_lp .btn_lg .material-symbols-rounded { font-size: 22px; }

.iryobunsho_lp /* ════════════════════════════════════════════
   ① グローバルナビ（既存ヘッダー差し替え予定 — スタイル定義は別途）
════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   ② ファーストビュー
════════════════════════════════════════════ */
.hero_section {
  position: relative;
  padding: 80px 0 100px !important;
  background: #ffffff;
  overflow: hidden;
}
.iryobunsho_lp .hero_section::before { content: none; }
.iryobunsho_lp .hero_inner {
  position: relative;
  max-width: var(--content_max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.iryobunsho_lp .hero_copy { z-index: 1; }
.iryobunsho_lp .hero_eyecatch {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color_primary_soft);
  border: 1px solid var(--color_primary);
  color: var(--color_primary_dark);
  font-size: 14px; font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius_pill);
  margin-bottom: 24px;
}
.iryobunsho_lp .hero_eyecatch .material-symbols-rounded { font-size: 18px; color: var(--color_primary); }
.iryobunsho_lp .hero_eyecatch strong { color: var(--color_primary_dark); }

.iryobunsho_lp .hero_sub {
  font-size: 20px; font-weight: 700; color: var(--color_text_secondary);
  margin-bottom: 10px;
}
.iryobunsho_lp .hero_title {
  font-size: 56px;
  line-height: 1.4;
  letter-spacing: .005em;
  color: var(--color_text_dark);
  margin-bottom: 24px;
}
.iryobunsho_lp .hero_title em {
  font-style: normal; color: var(--color_primary_dark);
  background: linear-gradient(to top, var(--color_primary_soft) 38%, transparent 38%);
  padding: 0 2px;
}
.iryobunsho_lp .hero_lead {
  font-size: 17px; line-height: 1.5; color: var(--color_text_secondary);
  margin-bottom: 24px;
}
.iryobunsho_lp .hero_check_list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }

.iryobunsho_lp .hero_lawyer_badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1.5px solid var(--color_primary);
  color: var(--color_primary_dark);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius_md);
  margin-bottom: 24px;
}
.iryobunsho_lp .hero_lawyer_badge .material-symbols-rounded {
  font-size: 22px;
  color: var(--color_primary);
}
.iryobunsho_lp .hero_check {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--color_border_default);
  color: var(--color_text_dark);
  font-size: 14px;
  padding: 9px 16px;
  border-radius: var(--radius_pill);
}
.iryobunsho_lp .hero_check .material-symbols-rounded { font-size: 18px; color: var(--color_primary); }
.iryobunsho_lp .hero_check b { color: var(--color_primary_dark); font-weight: 700; }

.iryobunsho_lp .hero_cta_group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.iryobunsho_lp .hero_note { font-size: 13px; color: var(--color_text_muted); margin-top: 14px; }

.iryobunsho_lp /* Hero visual */
.hero_visual { position: relative; z-index: 1; }
.iryobunsho_lp .hero_visual_card {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  margin-left: auto;
}
.iryobunsho_lp .hero_visual_placeholder {
  position: absolute;
  inset: 10% 0 0 0;
  /*background: #e3e6ee;color: #8a94ab;
  border: 2px dashed #b9bfcc;
  border-radius: var(--radius_lg);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  
}
.iryobunsho_lp .hero_visual_placeholder .material-symbols-rounded {
  font-size: 64px;
  color: #b9bfcc;
}
.iryobunsho_lp .hero_visual_placeholder_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #8a94ab;
}

.iryobunsho_lp /* Floating pills around tablet */
.hero_visual_pill {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--color_border_default);
  border-radius: var(--radius_pill);
  padding: 10px 16px 10px 10px;
  font-size: 12px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
.iryobunsho_lp .hero_visual_pill .material-symbols-rounded {
  font-size: 22px; color: #fff;
  background: var(--color_primary); padding: 6px; border-radius: 50%;
}
.iryobunsho_lp .hero_visual_pill b { display: block; font-size: 13px; color: var(--color_text_dark); font-weight: 700; }
.iryobunsho_lp .hero_visual_pill small { display: block; font-size: 10px; color: var(--color_text_muted); }
.iryobunsho_lp .hero_visual_pill_1 { top: 4%; right: -2%; animation-delay: 0s; }
.iryobunsho_lp .hero_visual_pill_2 { bottom: 14%; left: -6%; animation-delay: 1.4s; }
.iryobunsho_lp .hero_visual_pill_2 .material-symbols-rounded { color: #fff; background: #d98a00; }
.iryobunsho_lp .hero_visual_pill_3 { bottom: -2%; right: 6%; animation-delay: 2.8s; }
.iryobunsho_lp .hero_visual_pill_3 .material-symbols-rounded { color: #fff; background: #2f8ded; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.iryobunsho_lp /* ════════════════════════════════════════════
   ③ 信頼バー
════════════════════════════════════════════ */
.trust_bar {
  background: var(--color_bg_canvas);
  border-top: 1px solid var(--color_border_subtle);
  border-bottom: 1px solid var(--color_border_subtle);
  padding: 28px 0 !important;
}
.iryobunsho_lp .trust_bar_inner {
  max-width: var(--content_max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 40px;
}
.iryobunsho_lp .trust_bar_label { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.iryobunsho_lp .trust_bar_label_main { font-size: 15px; font-weight: 700; color: var(--color_text_dark); }
.iryobunsho_lp .trust_bar_label_sub { font-size: 11px; color: var(--color_text_muted); letter-spacing: .2em; }
.iryobunsho_lp .trust_logos {
  display: flex; gap: 12px;
  flex-wrap: wrap; flex: 1;
}
.iryobunsho_lp .trust_logo {
  background: #fff;
  border: 1px solid var(--color_border_default);
  border-radius: var(--radius_sm);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color_text_secondary);
  letter-spacing: .04em;
  min-width: 150px;
  text-align: center;
}

.iryobunsho_lp /* ════════════════════════════════════════════
   ④ 悩み
════════════════════════════════════════════ */
.problem_section { background: #f3f4f8; }
.iryobunsho_lp .problem_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.iryobunsho_lp .problem_card {
  background: #fff;
  border: 1px solid var(--color_border_subtle);
  border-radius: var(--radius_lg);
  padding: 28px 24px 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
}
.iryobunsho_lp .problem_card:hover { border-color: var(--color_primary); transform: translateY(-2px); }
.iryobunsho_lp .problem_icon {
  width: 330px;
  /*aspect-ratio: 16 / 10;
  background: #e3e6ee;
  border-radius: var(--radius_md);
  display: flex; align-items: center; justify-content: center;*/
  margin: 0 auto 24px;
  overflow: hidden;
}
.iryobunsho_lp .problem_icon .material-symbols-rounded {
  font-size: 40px;
  color: #b9bfcc;
}
.iryobunsho_lp .problem_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.iryobunsho_lp .problem_card_title {
  font-size: 20px;
  color: var(--color_text_dark);
  margin-bottom: 10px;
}
.iryobunsho_lp .problem_card_text {
  font-size: 15px;
  color: var(--color_text_secondary);
  line-height: 1.9;
  text-align: left;
}

.iryobunsho_lp .problem_callout {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color_primary_soft);
  /*border: 1.5px solid var(--color_primary);*/
  border-radius: var(--radius_pill);
  padding: 20px 36px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--color_text_dark);
  /*display: flex; align-items: center; justify-content: center; gap: 12px;*/
}
.iryobunsho_lp .problem_callout .material-symbols-rounded {
  font-size: 28px;
  color: var(--color_primary);
}
.iryobunsho_lp .problem_callout u {
  text-decoration: none;
  background: rgba(255,255,255,.7);
  color: var(--color_primary_dark);
  padding: 2px 8px;
  border-radius: var(--radius_sm);
}

.iryobunsho_lp /* ════════════════════════════════════════════
   ⑤ ブリッジ
════════════════════════════════════════════ */
.bridge_section {
  background: linear-gradient(135deg, #00546C 0%, #1C9F91 100%);
  color: #fff;
  padding: 72px 0 !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.iryobunsho_lp .bridge_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise_url);
  opacity: .6;
  mix-blend-mode: overlay;
}
.iryobunsho_lp .bridge_section::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  border-style: solid;
  border-width: 24px 24px 0 24px;
  border-color: #ffffff transparent transparent transparent;
}
.iryobunsho_lp .bridge_inner {
  position: relative;
  max-width: var(--content_max);
  margin: 0 auto;
  padding: 0 32px;
}
.iryobunsho_lp .bridge_eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.iryobunsho_lp .bridge_title { font-size: 36px; line-height: 1.55; margin-bottom: 18px; color: #fff; font-weight: 700; }
.iryobunsho_lp .bridge_title em {
  font-style: normal;
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  margin-top: 6px;
  position: relative;
}
.iryobunsho_lp .bridge_lead { color: rgba(255,255,255,.92); font-size: 17px; line-height: 2; }

.iryobunsho_lp /* ════════════════════════════════════════════
   ⑥ メリット訴求
════════════════════════════════════════════ */
.features_section { background: #ffffff; }
.iryobunsho_lp .features_list { display: flex; flex-direction: column; gap: 96px; }
.iryobunsho_lp .feature_item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.iryobunsho_lp .feature_item_rev .feature_visual { order: 2; }

.iryobunsho_lp .feature_visual {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 100%;
}

.iryobunsho_lp /* Feature visual common — 画像差込プレースホルダ */
.feature_mock {
  position: absolute;
  inset: 0;
  background: #e3e6ee;
  border-radius: var(--radius_lg);
  border: 2px dashed #b9bfcc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}
.iryobunsho_lp .feature_mock > .material-symbols-rounded {
  font-size: 64px;
  color: #b9bfcc;
}
.iryobunsho_lp .feature_mock_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #8a94ab;
}

.iryobunsho_lp /* Feature ① mock: file list */
.fm_panel_main {
  background: #fff;
  border-radius: var(--radius_md);
  border: 1px solid var(--color_border_default);
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
}
.iryobunsho_lp .fm_panel_head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: var(--color_bg_canvas);
  border-bottom: 1px solid var(--color_border_subtle);
  font-size: 14px;
  font-weight: 700;
  color: var(--color_text_dark);
}
.iryobunsho_lp .fm_panel_head .material-symbols-rounded { color: var(--color_primary); font-size: 20px; }
.iryobunsho_lp .fm_panel_badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  background: var(--color_primary_soft);
  color: var(--color_primary_dark);
  border-radius: var(--radius_pill);
}
.iryobunsho_lp .fm_list {
  padding: 8px 0;
}
.iryobunsho_lp .fm_list li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--color_text_dark);
  border-bottom: 1px solid var(--color_border_subtle);
}
.iryobunsho_lp .fm_list li:last-child { border-bottom: 0; }
.iryobunsho_lp .fm_list_dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color_primary); flex-shrink: 0;
}
.iryobunsho_lp .fm_list_dot_wait { background: var(--color_amber); }
.iryobunsho_lp .fm_list_status {
  margin-left: auto;
  font-size: 11px;
  padding: 2px 10px;
  background: var(--color_primary_soft);
  color: var(--color_primary_dark);
  border-radius: var(--radius_pill);
  font-weight: 700;
}
.iryobunsho_lp .fm_list_status_wait { background: #fef4de; color: #b87000; }
.iryobunsho_lp .fm_search {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid var(--color_border_subtle);
  background: var(--color_bg_canvas);
  font-size: 12px;
  color: var(--color_text_muted);
}
.iryobunsho_lp .fm_search .material-symbols-rounded { font-size: 16px; color: var(--color_text_muted); }

.iryobunsho_lp /* Feature ① pop */
.fm_pop {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--color_primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius_pill);
  display: flex; align-items: center; gap: 8px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}
.iryobunsho_lp .fm_pop .material-symbols-rounded { font-size: 22px; }

.iryobunsho_lp /* Feature ② mock: chart */
.fm_chart {
  background: #fff;
  border-radius: var(--radius_md);
  border: 1px solid var(--color_border_default);
  padding: 24px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
}
.iryobunsho_lp .fm_chart_head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.iryobunsho_lp .fm_chart_head > span:first-child { font-size: 14px; font-weight: 700; color: var(--color_text_dark); }
.iryobunsho_lp .fm_chart_badge {
  background: var(--color_red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius_pill);
}
.iryobunsho_lp .fm_chart_bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  padding: 0 16px;
  min-height: 160px;
}
.iryobunsho_lp .fm_bar_wrap {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex: 1; max-width: 100px;
}
.iryobunsho_lp .fm_bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.iryobunsho_lp .fm_bar_before {
  background: #cdd3e1;
  height: 100%;
}
.iryobunsho_lp .fm_bar_after {
  background: var(--color_primary);
  height: 32%;
}
.iryobunsho_lp .fm_bar_value { white-space: nowrap; }
.iryobunsho_lp .fm_bar_label { font-size: 12px; color: var(--color_text_secondary); font-weight: 700; }
.iryobunsho_lp .fm_chart_legend {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color_border_subtle);
}
.iryobunsho_lp .fm_chart_legend li {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--color_text_secondary);
}
.iryobunsho_lp .fm_chart_legend li span {
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--color_primary);
}
.iryobunsho_lp .fm_chart_legend li:nth-child(2) span { background: var(--color_primary_hover); }
.iryobunsho_lp .fm_chart_legend li:nth-child(3) span { background: #8a94ab; }
.iryobunsho_lp .fm_pop_alt { background: var(--color_amber); }

.iryobunsho_lp /* Feature ③ mock: legal */
.fm_legal_card {
  background: #fff;
  border-radius: var(--radius_md);
  border: 1px solid var(--color_border_default);
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.iryobunsho_lp /* グレー丸アイコン = 画像プレースホルダ */
.fm_legal_icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #e3e6ee;
  border: 2px dashed #b9bfcc;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.iryobunsho_lp .fm_legal_icon::before { content: none; }
.iryobunsho_lp .fm_legal_icon .material-symbols-rounded { font-size: 36px; color: #b9bfcc; }
.iryobunsho_lp .fm_legal_icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iryobunsho_lp .fm_legal_title { font-size: 20px; font-weight: 700; color: var(--color_text_dark); margin-bottom: 8px; }
.iryobunsho_lp .fm_legal_desc { font-size: 13px; color: var(--color_text_secondary); line-height: 1.8; margin-bottom: 18px; max-width: 340px; }
.iryobunsho_lp .fm_legal_list {
  display: grid; gap: 6px;
  background: #ffffff;
  border: 1px solid #00546C;
  border-radius: var(--radius_md);
  padding: 12px 16px;
}
.iryobunsho_lp .fm_legal_list li {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--color_text_dark);
  font-weight: 500;
}
.iryobunsho_lp .fm_legal_list .material-symbols-rounded { font-size: 16px; color: var(--color_primary); }
.iryobunsho_lp .fm_pop_legal { background: #fff; color: var(--color_primary_dark); border: 1.5px solid var(--color_primary); }
.iryobunsho_lp .fm_pop_legal .material-symbols-rounded { color: var(--color_primary); }

.iryobunsho_lp /* Feature body */
.feature_body { max-width: 540px; }
.iryobunsho_lp .feature_num {
  font-size: 64px;
  font-weight: 900;
  color: var(--color_primary_soft);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.iryobunsho_lp .feature_tag {
  display: inline-block;
  background: var(--color_primary_soft);
  color: var(--color_primary_dark);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius_pill);
  margin-bottom: 16px;
}
.iryobunsho_lp .feature_title {
  font-size: 36px;
  line-height: 1.55;
  color: var(--color_text_dark);
  margin-bottom: 16px;
}
.iryobunsho_lp .feature_title em {
  font-style: normal;
  color: var(--color_primary_dark);
  background: linear-gradient(to top, var(--color_primary_soft) 38%, transparent 38%);
  padding: 0 2px;
}
.iryobunsho_lp .feature_text { font-size: 17px; color: var(--color_text_secondary); line-height: 2; margin-bottom: 20px; }
.iryobunsho_lp .feature_points {
  display: grid; gap: 10px;
  background: #ffffff;
  border: 1px solid #00546C;
  border-radius: var(--radius_md);
  padding: 18px 22px;
}
.iryobunsho_lp .feature_points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 16px;
  color: var(--color_text_dark);
  line-height: 1.8;
}
.iryobunsho_lp .feature_points li::before {
  content: 'check_circle';
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 1;
  color: var(--color_primary);
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}
.iryobunsho_lp .feature_points b { color: var(--color_primary_dark); font-weight: 700; }

.iryobunsho_lp .lawyer_note {
  margin-top: 20px;
  background: #fff;
  border: 1.5px solid var(--color_primary);
  border-radius: var(--radius_md);
  padding: 18px 20px;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.iryobunsho_lp .lawyer_note_icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color_primary_soft);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.iryobunsho_lp .lawyer_note_icon .material-symbols-rounded { font-size: 24px; color: var(--color_primary_dark); }
.iryobunsho_lp .lawyer_note_title { font-size: 20px; font-weight: 700; color: var(--color_primary_dark); margin-bottom: 4px; }
.iryobunsho_lp .lawyer_note_text { font-size: 14px; color: var(--color_text_secondary); line-height: 1.8; }

.iryobunsho_lp /* ════════════════════════════════════════════
   ⑦ 利用フロー
════════════════════════════════════════════ */
.flow_section { background: #f3f4f8; }
.iryobunsho_lp .flow_steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.iryobunsho_lp .flow_steps::before {
  content: '';
  position: absolute;
  top: 56px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color_primary) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.iryobunsho_lp .flow_step {
  background: #fff;
  border: 1px solid var(--color_border_subtle);
  border-radius: var(--radius_lg);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
}
.iryobunsho_lp /* グレー丸 = 画像プレースホルダ */
.flow_step_icon {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px;
  /*border-radius: 50%;
  background: #e3e6ee;
  border: 2px dashed #b9bfcc;*/
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.iryobunsho_lp .flow_step_icon .material-symbols-rounded { font-size: 30px; color: #b9bfcc; }
.iryobunsho_lp .flow_step_icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iryobunsho_lp .flow_step_num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color_primary);
  letter-spacing: .2em;
  text-align: center;
  margin: 150px 0 12px;
}
.iryobunsho_lp .flow_step_title {
  font-size: 22px;
  color: var(--color_text_dark);
  text-align: center;
  margin-bottom: 12px;
}
.iryobunsho_lp .flow_step_text {
  font-size: 15px;
  color: var(--color_text_secondary);
  line-height: 1.9;
  text-align: left;
  margin-bottom: 16px;
}
.iryobunsho_lp .flow_step_points {
  margin-top: auto;
  background: #ffffff;
  border: 1px solid #00546C;
  border-radius: var(--radius_md);
  padding: 14px 16px;
  display: grid; gap: 6px;
}
.iryobunsho_lp .flow_step_points li {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 14px;
  color: var(--color_text_dark);
  line-height: 1.8;
}
.iryobunsho_lp .flow_step_points li::before {
  content: '✓';
  color: var(--color_primary);
  font-weight: 900;
  flex-shrink: 0;
}

.iryobunsho_lp /* ════════════════════════════════════════════
   ⑧ セキュリティ
════════════════════════════════════════════ */
.security_section { background: #ffffff; }
.iryobunsho_lp .security_inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.iryobunsho_lp .security_copy .section_eyebrow { text-align: left; }
.iryobunsho_lp .security_title { text-align: left; font-size: 36px; }
.iryobunsho_lp .security_text { font-size: 17px; color: var(--color_text_secondary); line-height: 2; margin-top: 16px; }
.iryobunsho_lp .security_badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.iryobunsho_lp .sec_badge {
  background: #fff;
  border: 1px solid var(--color_border_default);
  border-radius: var(--radius_md);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .15s ease, transform .15s ease;
}
.iryobunsho_lp .sec_badge:hover { border-color: var(--color_primary); }
.iryobunsho_lp /* グレー丸アイコン = 画像プレースホルダ */
.sec_badge .material-symbols-rounded {
  width: 44px; height: 44px;
  font-size: 22px;
  color: #b9bfcc;
  border: 1.5px dashed #b9bfcc;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.iryobunsho_lp .sec_badge b { display: block; font-size: 18px; color: var(--color_text_dark); font-weight: 700; }
.iryobunsho_lp .sec_badge small { display: block; font-size: 12px; color: var(--color_text_muted); margin-top: 2px; }

.iryobunsho_lp /* Security visual (shield) */
.security_visual { display: flex; justify-content: center; }
.iryobunsho_lp .security_shield {
  position: relative;
  width: 380px; height: 380px;
}
.iryobunsho_lp .security_shield_inner {
  position: absolute;
  inset: 60px;
  background: var(--color_primary);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
}
.iryobunsho_lp .security_shield_inner .material-symbols-rounded { font-size: 72px; }
.iryobunsho_lp .security_shield_text { font-size: 12px; letter-spacing: .3em; margin-top: 4px; font-weight: 700; }
.iryobunsho_lp .security_orbit {
  position: absolute; inset: 0;
}
.iryobunsho_lp .security_orbit li {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--color_primary);
  display: flex; align-items: center; justify-content: center;
}
.iryobunsho_lp .security_orbit li .material-symbols-rounded { font-size: 26px; color: var(--color_primary); }
.iryobunsho_lp .security_orbit li:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, 0); }
.iryobunsho_lp .security_orbit li:nth-child(2) { top: 50%; right: 0; transform: translate(0, -50%); }
.iryobunsho_lp .security_orbit li:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 0); }
.iryobunsho_lp .security_orbit li:nth-child(4) { top: 50%; left: 0; transform: translate(0, -50%); }

.iryobunsho_lp /* ════════════════════════════════════════════
   ⑨ FAQ
════════════════════════════════════════════ */
.faq_section { background: #f3f4f8; }
.iryobunsho_lp .faq_list { display: grid; gap: 12px; }
.iryobunsho_lp .faq_item {
  background: #fff;
  border: 1px solid var(--color_border_subtle);
  border-radius: var(--radius_md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.iryobunsho_lp .faq_item[open] { border-color: var(--color_primary); }
.iryobunsho_lp .faq_item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color_text_dark);
  display: flex; align-items: center; gap: 16px;
  position: relative;
  padding-right: 56px;
}
.iryobunsho_lp .faq_item summary::-webkit-details-marker { display: none; }
.iryobunsho_lp .faq_item summary::before {
  content: 'Q';
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color_primary);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.iryobunsho_lp .faq_item summary::after {
  content: 'expand_more';
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 0, 'wght' 600;
  position: absolute;
  right: 24px;
  color: var(--color_primary);
  font-size: 26px;
  transition: transform .25s ease;
}
.iryobunsho_lp .faq_item[open] summary::after { transform: rotate(180deg); }
.iryobunsho_lp .faq_item p {
  padding: 0 28px 24px 80px;
  font-size: 15px;
  color: var(--color_text_secondary);
  line-height: 1.9;
}

.iryobunsho_lp /* ════════════════════════════════════════════
   ⑩ 最終CTA
════════════════════════════════════════════ */
.cta_section {
  background: linear-gradient(135deg, #00546C 0%, #1C9F91 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.iryobunsho_lp .cta_bg {
  position: absolute; inset: 0;
  background-image: var(--noise_url);
  opacity: .6;
  mix-blend-mode: overlay;
}
.iryobunsho_lp .cta_inner { position: relative; text-align: center; }
.iryobunsho_lp .cta_eyebrow { color: rgba(255,255,255,.85); }
.iryobunsho_lp .cta_eyebrow::before { background: rgba(255,255,255,.85); }
.iryobunsho_lp .cta_title { font-size: 46px; line-height: 1.5; color: #fff; margin-bottom: 20px; }
.iryobunsho_lp .cta_title em {
  font-style: normal;
  color: var(--color_primary_dark);
  background: #fff;
  padding: 2px 14px;
  border-radius: var(--radius_sm);
  display: inline-block;
  margin: 4px 0;
}
.iryobunsho_lp .cta_lead { color: rgba(255,255,255,.88); font-size: 24px; line-height: 2; margin-bottom: 40px; }
.iryobunsho_lp .cta_btn_group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.iryobunsho_lp .cta_note { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 24px; }
.iryobunsho_lp .cta_section .btn_primary {
  background: #fff;
  color: var(--color_primary_dark);
}
.iryobunsho_lp .cta_section .btn_primary:hover { background: var(--color_primary_soft); }

.iryobunsho_lp /* ════════════════════════════════════════════
   フッター（既存フッター差し替え予定 — スタイル定義は別途）
════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   採用版（Option A / SmartHRテイスト）— 統合スタイル
   ベース定義の上に重ねる調整。単一アクセント / 余白拡大 /
   罫線統一 / 装飾の単純化 / タイポ階層 / 白フィル+緑2px。
   （旧 redesign/theme-base.css + theme-a.css を統合）
════════════════════════════════════════════════════════════ */

/* リズム / 余白（メリハリ） */
.iryobunsho_lp section { padding: 128px 0; }
.iryobunsho_lp .section_head { margin-bottom: 64px; }

/* タイポ階層 */
.iryobunsho_lp .section_title { font-size: 44px; line-height: 1.42; letter-spacing: .02em; color: var(--color_text_dark); }
.iryobunsho_lp .section_lead { font-size: 18px; margin-top: 20px; color: var(--color_text_secondary); }
.iryobunsho_lp .hero_title { font-size: 50px; line-height: 1.2; }
.iryobunsho_lp .hero_lead { font-size: 18px; }

/* カード罫線の統一（#00546C 系 → 中立グレー）+ 影排除 */
.iryobunsho_lp .feature_points,
.iryobunsho_lp .flow_step_points,
.iryobunsho_lp .fm_legal_list { border: 1px solid var(--color_border_default); }
.iryobunsho_lp .problem_card,
.iryobunsho_lp .flow_step,
.iryobunsho_lp .sec_badge,
.iryobunsho_lp .faq_item { border-color: var(--color_border_default); box-shadow: none; }

/* 装飾の単純化 */
.iryobunsho_lp .bridge_section::after { content: none; }
.iryobunsho_lp .flow_steps::before { background: var(--color_border_default); height: 2px; top: 58px; }
.iryobunsho_lp .security_orbit li { border-color: var(--color_border_default); }

/* ボタン余裕 */
.iryobunsho_lp .btn_lg { padding: 22px 40px; }

/* ゾーニング：白 ⇄ クール極薄グレー */
.iryobunsho_lp .hero_section,
.iryobunsho_lp .features_section,
.iryobunsho_lp .security_section { background: #ffffff; }
.iryobunsho_lp .problem_section,
.iryobunsho_lp .flow_section,
.iryobunsho_lp .faq_section { background: #f7f8fa; }

/* 番号は控えめグレー */
.iryobunsho_lp .feature_num { color: #eef0f5; }

/* コールアウト：白地 + 緑2px、内部ハイライトも白 */
.iryobunsho_lp .problem_callout { background: #ffffff; /*border: 2px solid var(--color_primary);*/ color: var(--color_text_dark); }
.iryobunsho_lp .problem_callout u { background: #ffffff; color: var(--color_primary_dark); }

/* 白フィル + 緑2px枠ルール */
.iryobunsho_lp .hero_eyecatch { background: #ffffff; border: 2px solid var(--color_primary); }
.iryobunsho_lp .feature_tag { background: #ffffff; border: 2px solid var(--color_primary); }
.iryobunsho_lp .lawyer_note_icon { background: #ffffff; border: 2px solid var(--color_primary); }
.iryobunsho_lp .lawyer_note { border-width: 2px; }

/* キーワード強調：薄緑アンダーライン → 白（ハイライトなし・文字は緑） */
.iryobunsho_lp .hero_title em,
.iryobunsho_lp .feature_title em { background: linear-gradient(to top, #ffffff 38%, transparent 38%); }

/* FV調整：浮遊3要素を「画像差込プレースホルダ（後差し替え用・グレー）」へ */
.iryobunsho_lp .hero_visual_pill {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  width: 138px; height: 84px;
  background: #e3e6ee;
  border: 2px dashed #b9bfcc;
  border-radius: var(--radius_md);
  padding: 0;
  color: #8a94ab;
}
.iryobunsho_lp .hero_visual_pill .material-symbols-rounded {
  font-size: 30px; color: #b9bfcc;
  background: none; padding: 0; border-radius: 0;
}
.iryobunsho_lp .hero_visual_pill_label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; color: #8a94ab;
}
/* 月桂樹（右上）と干渉しないよう pill_1 を左上へ移動 */
.iryobunsho_lp .hero_visual_pill_1 { top: 6%; left: -6%; right: auto; }

/* ════════════════════════════════════════════════════════════
   FV：ゴールド月桂樹エンブレム（弁護士監修）— 画像右上に重ねる
════════════════════════════════════════════════════════════ */
.iryobunsho_lp .hero_laurel {
  position: absolute; top: 56px; right: 280px;
  width: 240px; height: 150px; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.iryobunsho_lp .hero_laurel_wreath {
  position: absolute; inset: 0; width: 100%; height: 100%;
  filter: drop-shadow(0 2px 6px rgba(120, 90, 20, .18));
}
.iryobunsho_lp .hero_laurel_plate {
  position: relative; z-index: 1;
  /*width: 118px; height: 118px; border-radius: 50%;
  background: rgba(255,255,255,.92);*/
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 3px;
  inset: 7px 0 0 -4px;
}
.iryobunsho_lp .hero_laurel_plate strong {
  font-size: 24px; font-weight: 700; color: #8a6a14; letter-spacing: .02em; line-height: 1.25;
}
.iryobunsho_lp .hero_laurel_plate span {
  font-size: 14px; font-weight: 500; color: #6f5712; line-height: 1.2;
}
.iryobunsho_lp .hero_laurel_rule {
  width: 30px; height: 1.5px; background: #cBa23f; margin: 1px 0;
}

@media (max-width: 767px) {
  .iryobunsho_lp .hero_visual_pill { width: 104px; height: 64px; gap: 2px; }
  .iryobunsho_lp .hero_visual_pill .material-symbols-rounded { font-size: 24px; }
  .iryobunsho_lp .hero_visual_pill_label { font-size: 10px; }
  .iryobunsho_lp .hero_laurel { width: 132px; height: 120px; top: -10px; right: 160px; }
  .iryobunsho_lp .hero_laurel_plate { width: 90px; height: 90px;inset: 10px 0 0 0; }
  .iryobunsho_lp .hero_laurel_plate strong { font-size: 11px; }
  .iryobunsho_lp .hero_laurel_plate span { font-size: 9px; }
}


/* ════════════════════════════════════════════════════════════
   画像差込スロット：装飾オフ
   後から実画像を差し込む前提のため、プレースホルダ装飾
   （グレー塗り #e3e6ee ／ 破線ボーダー ／ アイコン ／ ラベル）を
   すべて除去し、素の空スロットにする。レイアウト寸法は維持。
   対象: FVメイン画像 / FV浮遊3枚 / メリット3枚
════════════════════════════════════════════════════════════ */
.iryobunsho_lp .hero_visual_placeholder,
.iryobunsho_lp .hero_visual_pill,
.iryobunsho_lp .feature_mock {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* 浮遊スロットは装飾を外したらアニメーションも止める（ちらつき防止） */
.iryobunsho_lp .hero_visual_pill { animation: none; }


/* ════════════════════════════════════════════════════════════
   レスポンシブ（ファイル末尾に集約 — 全デスクトップ基本ルールの後で
   確実に上書きするため。重複・順序事故を防ぐ）
════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════
   レスポンシブ — Tablet (768〜1023)
   ※ ベースが .iryobunsho_lp スコープ（特異度0,2,0）のため
      上書きには必ず .iryobunsho_lp を付ける。
════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .iryobunsho_lp section { padding: 80px 0; }
  .iryobunsho_lp .section_inner { padding: 0 24px; }
  .iryobunsho_lp .section_head { margin-bottom: 44px; }
  .iryobunsho_lp .section_title { font-size: 34px; }
  .iryobunsho_lp .section_lead { font-size: 16px; }

  .iryobunsho_lp .hero_inner { grid-template-columns: 1fr; gap: 40px; }
  .iryobunsho_lp .hero_title { font-size: 40px; }
  .iryobunsho_lp .hero_lead { font-size: 16px; }
  .iryobunsho_lp .hero_visual_card { max-width: 480px; margin: 0 auto; }

  .iryobunsho_lp .trust_bar_inner { padding: 0 24px; flex-direction: column; gap: 16px; align-items: flex-start; }

  .iryobunsho_lp .problem_grid { grid-template-columns: 1fr; gap: 16px; }

  .iryobunsho_lp .feature_item { grid-template-columns: 1fr; gap: 32px; }
  .iryobunsho_lp .feature_item_rev .feature_visual { order: 0; }
  .iryobunsho_lp .feature_visual { aspect-ratio: 16 / 10;max-width: 60%; }

  .iryobunsho_lp .flow_steps { grid-template-columns: 1fr; gap: 56px; }
  .iryobunsho_lp .flow_steps::before { display: none; }

  .iryobunsho_lp .security_inner { grid-template-columns: 1fr; gap: 40px; }
  .iryobunsho_lp .security_title { font-size: 28px; }
  .iryobunsho_lp .security_badges { grid-template-columns: 1fr; }
  .iryobunsho_lp .security_shield { width: 240px; height: 240px; }
  .iryobunsho_lp .security_shield_inner { inset: 44px; }
  .iryobunsho_lp .security_shield_inner .material-symbols-rounded { font-size: 56px; }
  .iryobunsho_lp .security_orbit li { width: 44px; height: 44px; }
  .iryobunsho_lp .security_orbit li .material-symbols-rounded { font-size: 22px; }

  .iryobunsho_lp .cta_title { font-size: 32px; }
}

/* ════════════════════════════════════════════
   レスポンシブ — SP (max 767)
   全要素を縦1カラムに。横並び（grid/flex）はすべて解除。
════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* 横スクロール防止（FVの装飾はみ出し対策） */
  .iryobunsho_lp { overflow-x: hidden; }

  .iryobunsho_lp { font-size: 15px; }
  .iryobunsho_lp small, .iryobunsho_lp .small { font-size: 11px; }

  .iryobunsho_lp section { padding: 56px 0; }
  .iryobunsho_lp .section_inner { padding: 0 20px; }
  .iryobunsho_lp .section_head { margin-bottom: 32px; }
  .iryobunsho_lp .section_eyebrow { font-size: 12px; }
  .iryobunsho_lp .section_title { font-size: 25px; line-height: 1.45; }
  .iryobunsho_lp .section_lead { font-size: 16px; line-height: 1.85; }

  /* ボタンは全幅・縦積み */
  .iryobunsho_lp .btn_lg { padding: 16px 20px; font-size: 15px; min-width: 0; width: 100%; }
  .iryobunsho_lp .btn_sm { padding: 9px 14px; font-size: 13px; }
  .iryobunsho_lp .btn_sm .material-symbols-rounded { font-size: 16px; }

  /* ── FV ── */
  .iryobunsho_lp .hero_section { padding: 40px 0 56px !important; }
  .iryobunsho_lp .hero_inner { gap: 32px; }
  .iryobunsho_lp .hero_title { font-size: 28px; line-height: 1.42; }
  .iryobunsho_lp .hero_sub { font-size: 15px; }
  .iryobunsho_lp .hero_eyecatch { font-size: 12px; padding: 7px 14px; }
  .iryobunsho_lp .hero_lead { font-size: 14px; line-height: 1.9; }
  .iryobunsho_lp .hero_check_list { gap: 8px; }
  .iryobunsho_lp .hero_check { font-size: 18px; padding: 7px 12px; }
  .iryobunsho_lp .hero_cta_group { flex-direction: column; align-items: stretch; }
  .iryobunsho_lp .hero_visual_card { max-width: 300px; }
  .iryobunsho_lp .hero_copy { margin-bottom: 20px; }


  /* ── 信頼バー：ロゴは縦積み気味に折り返し ── */
  .iryobunsho_lp .trust_logos { gap: 8px; }
  .iryobunsho_lp .trust_logo { font-size: 12px; padding: 8px 12px; min-width: 0; flex: 1 1 40%; justify-content: center; }
  

  /* ── 課題：1カラム ── */
  .iryobunsho_lp .problem_grid { grid-template-columns: 1fr; gap: 14px; }
  .iryobunsho_lp .problem_card { padding: 24px 20px; }
  .iryobunsho_lp .problem_callout { font-size: 21px; padding: 16px 18px 40px 0; flex-direction: column; gap: 0; text-align: center;line-height: 0.2; }
  .iryobunsho_lp .problem_icon { width: 100%; margin: 0 auto; overflow: hidden;}
  .iryobunsho_lp .problem_callout .material-symbols-rounded {font-size: 40px;}


  /* ── ブリッジ ── */
  .iryobunsho_lp .bridge_title { font-size: 23px; }
  .iryobunsho_lp .bridge_title em { font-size: 25px; }

  /* ── メリット：1カラム・画像→テキストの順 ── */
  .iryobunsho_lp .features_list { gap: 56px; }
  .iryobunsho_lp .feature_item { grid-template-columns: 1fr; gap: 0; }
  .iryobunsho_lp .feature_visual { order: -1; max-width: 100%;}
  .iryobunsho_lp .feature_title { font-size: 22px; }
  .iryobunsho_lp .feature_num { font-size: 48px; }
  .iryobunsho_lp .feature_text { font-size: 15px; }
  .iryobunsho_lp .feature_mock { padding: 18px; }
  .iryobunsho_lp .lawyer_note { padding: 14px 16px; gap: 10px; }
  .iryobunsho_lp .feature_points li { display: block; font-size: 16px; line-height: 1.8;}

  /* ── 利用フロー：1カラム縦積み ── */
  .iryobunsho_lp .flow_steps { grid-template-columns: 1fr; gap: 44px; }
  /*.iryobunsho_lp .flow_step_icon { width: 64px; height: 64px; top: -24px; }*/
  .iryobunsho_lp .flow_step_icon .material-symbols-rounded { font-size: 26px; }
  .iryobunsho_lp .flow_step_title { font-size: 19px; }

  /* ── セキュリティ：1カラム ── */
  .iryobunsho_lp .security_inner { grid-template-columns: 1fr; gap: 32px; }
  .iryobunsho_lp .security_title { font-size: 23px; }
  .iryobunsho_lp .security_badges { grid-template-columns: 1fr; }

  /* ── FAQ ── */
  .iryobunsho_lp .faq_item summary { padding: 18px 20px; font-size: 15px; padding-right: 48px; gap: 12px; }
  .iryobunsho_lp .faq_item summary::before { width: 28px; height: 28px; font-size: 13px; }
  .iryobunsho_lp .faq_item summary::after { right: 18px; font-size: 22px; }
  .iryobunsho_lp .faq_item p { padding: 0 20px 20px 60px; font-size: 14px; }

  /* ── 最終CTA：ボタン縦積み ── */
  .iryobunsho_lp .cta_title { font-size: 25px; line-height: 1.5; }
  .iryobunsho_lp .cta_lead { font-size: 18px; }
  .iryobunsho_lp .cta_btn_group { flex-direction: column; }
  .iryobunsho_lp .cta_btn_group .btn_lg { width: 100%; }
}
