/* =====================================================================
   まるっと人事株式会社 コーポレートサイト
   デザインシステム
   - 採用Blue × 定着Green の2色基調
   - 曲線・円環モチーフ（角のない柔らかなシェイプ）
   - 柔らかいゴシック体（見出し: Zen Maru Gothic / 本文: Noto Sans JP）
   ===================================================================== */

/* ---- Design Tokens -------------------------------------------------- */
:root {
  /* キーカラー（仕様: Blue C100 M45 Y0 K0 / Green C90 M20 Y35 K0）*/
  --blue: #0a6fd4;          /* 採用：安定感・信頼感 */
  --blue-bright: #008cff;   /* CMYK由来の明るいブルー（アクセント）*/
  --blue-dark: #084e96;
  --green: #15b596;         /* 定着：希望・成長 */
  --green-bright: #1acca6;  /* CMYK由来 */
  --green-dark: #0e8a68;

  --ink: #21323d;
  --muted: #5b6b78;
  --line: #e4ecf3;
  --bg: #ffffff;
  --bg-soft: #f3f8fd;
  --bg-soft2: #eef7f3;

  --grad-bg: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  --grad-bg-soft: linear-gradient(135deg, #eaf3fc 0%, #e9f7f1 100%);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow: 0 14px 40px rgba(16, 60, 110, .10);
  --shadow-sm: 0 6px 20px rgba(16, 60, 110, .08);

  --maxw: 1120px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --ff-head: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN",
             "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --ff-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
             "Meiryo", sans-serif;
}

/* ---- Reset / Base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-dark); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.4; margin: 0; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.bg-soft { background: var(--bg-soft); }
.bg-soft2 { background: var(--bg-soft2); }
.text-center { text-align: center; }

/* ---- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .9em 2em; border-radius: var(--radius-pill);
  font-family: var(--ff-head); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--grad-bg); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { color: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn--white { background: #fff; color: var(--blue-dark); }
.btn--white:hover { color: var(--blue-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* =====================================================================
   Header / Navigation
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(16, 60, 110, .08); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: .6em; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { font-family: var(--ff-head); font-weight: 700; font-size: 1.18rem; letter-spacing: .04em; }
.brand-text small { display: block; font-size: .58rem; color: var(--muted); letter-spacing: .14em; font-family: var(--ff-body); }

.site-nav ul { display: flex; align-items: center; gap: 1.6em; }
.site-nav a { color: var(--ink); font-weight: 500; font-size: .95rem; position: relative; padding: .3em 0; }
.site-nav > ul > li > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--grad-bg); border-radius: 2px; transition: width .3s var(--ease);
}
.site-nav > ul > li > a:not(.nav-cta):hover::after,
.site-nav > ul > li.current > a::after { width: 100%; }
.site-nav li.current > a { color: var(--blue); }
.nav-cta { background: var(--grad-bg); color: #fff !important; padding: .6em 1.4em !important; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.nav-cta:hover { transform: translateY(-2px); }

/* dropdown */
.has-sub { position: relative; }
.has-sub > a::before { content: ""; }
.subnav {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: .6em;
  display: flex; flex-direction: column; gap: .1em;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.subnav::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.subnav a { display: block; padding: .7em 1em; border-radius: 12px; font-size: .9rem; }
.subnav a:hover { background: var(--bg-soft); color: var(--blue); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer;
  position: relative; z-index: 110;
}
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; padding: 180px 0 150px; background: var(--grad-bg-soft); overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 0;
}
.hero::before { width: 420px; height: 420px; background: radial-gradient(circle, rgba(10,111,212,.18), transparent 70%); top: -120px; right: -80px; }
.hero::after  { width: 380px; height: 380px; background: radial-gradient(circle, rgba(21,181,150,.18), transparent 70%); bottom: -140px; left: -90px; }
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5em; padding: .4em 1.1em; border-radius: var(--radius-pill);
  background: #fff; color: var(--blue); font-weight: 700; font-size: .82rem; box-shadow: var(--shadow-sm); margin-bottom: 1.4em;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-bg); }
.hero h1 { font-size: clamp(2.3rem, 5.8vw, 4.1rem); letter-spacing: .01em; }
.hero h1 .accent { background: var(--grad-bg); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 680px; margin: 1.6em 0 0; color: var(--muted); font-size: 1.02rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1em; margin-top: 3.2em; }

/* circle motif graphic（修正依頼: もう少し左に・左右の空白幅を同等に） */
.hero-rings { position: absolute; right: 11%; top: 50%; transform: translateY(-50%); width: 360px; height: 360px; z-index: 0; opacity: .9; }

/* hero eyebrow badge image（採用⇔定着伴走サポート！） */
.hero-badge { height: 44px; width: auto; margin-bottom: 1.6em; display: block; }

/* curve divider */
.curve-divider { display: block; width: 100%; height: auto; margin-top: -1px; }
.curve-divider.flip { transform: rotate(180deg); }

/* =====================================================================
   Sections
   ▼ 修正依頼1.1: corner-inc.co.jp を参考に「余白」を大きく取る
   ===================================================================== */
.section { padding: 140px 0; position: relative; }
.section--tight { padding: 88px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.section-head .label { display: inline-block; font-family: var(--ff-head); font-weight: 700; color: var(--green-dark); letter-spacing: .18em; font-size: .82rem; text-transform: uppercase; }
.section-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin: .35em 0 .4em; }
.section-head p { color: var(--muted); margin: 0; }
.section-head .label::before { content: "◜ "; color: var(--blue); }
.section-head .label::after { content: " ◞"; color: var(--green); }

/* page hero (下層ページ共通) */
.page-hero { position: relative; padding: 140px 0 70px; background: var(--grad-bg-soft); overflow: hidden; text-align: center; }
.page-hero::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(21,181,150,.16), transparent 70%); top: -120px; left: -80px; }
.page-hero::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(10,111,212,.16), transparent 70%); bottom: -120px; right: -60px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4.4vw, 2.8rem); }
.page-hero .en { display: block; font-family: var(--ff-head); color: var(--green-dark); letter-spacing: .2em; font-size: .8rem; margin-bottom: .8em; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 1.1em auto 0; }

/* breadcrumb */
.breadcrumb { padding: 16px 0; font-size: .82rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .6em; list-style: none; margin: 0; padding: 0; }
.breadcrumb li::after { content: "›"; margin-left: .6em; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }

/* =====================================================================
   Components
   ===================================================================== */
/* grid */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* card */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .icon-circle { margin-bottom: 18px; }
.card h3 { font-size: 1.18rem; margin-bottom: .5em; }
.card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* icon circle (円環モチーフ) */
.icon-circle { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-bg-soft); color: var(--blue); font-family: var(--ff-head); font-weight: 700; font-size: 1.4rem; position: relative; }
.icon-circle::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px dashed rgba(10,111,212,.25); }
.icon-circle.green { color: var(--green-dark); }
.icon-circle.green::after { border-color: rgba(21,181,150,.3); }

/* number badge */
.num-badge { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-bg); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; flex: none; }

/* service cards (top) */
.svc-card { display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.svc-card .tag { align-self: flex-start; font-size: .72rem; font-weight: 700; padding: .3em 1em; border-radius: var(--radius-pill); font-family: var(--ff-head); }
.svc-card .tag.main { background: var(--blue); color: #fff; }
.svc-card .tag.second { background: var(--bg-soft2); color: var(--green-dark); }
.svc-card .more { margin-top: auto; font-weight: 700; font-family: var(--ff-head); color: var(--blue); display: inline-flex; align-items: center; gap: .4em; }

/* checklist (お悩み) */
.checklist { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); }
.checklist .chk { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-bg-soft); color: var(--blue); flex: none; display: grid; place-items: center; font-weight: 700; }

/* feature row */
.feature { display: flex; gap: 22px; align-items: flex-start; }
.feature .num-badge { background: var(--grad-bg); }

/* step flow */
.steps { display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); position: relative; }
.step .step-no { width: 70px; height: 70px; border-radius: 50%; background: var(--grad-bg-soft); color: var(--blue); display: grid; place-items: center; text-align: center; font-family: var(--ff-head); font-weight: 700; line-height: 1.1; flex: none; }
.step .step-no small { display: block; font-size: .6rem; letter-spacing: .1em; color: var(--muted); }
.step .step-no .n { font-size: 1.5rem; }
.step h4 { font-size: 1.1rem; margin-bottom: .3em; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }
.steps.green-accent .step .step-no { background: var(--bg-soft2); color: var(--green-dark); }

/* side tool box */
.tool-box { display: flex; gap: 18px; align-items: flex-start; background: var(--bg-soft); border: 1px dashed var(--blue); border-radius: var(--radius-lg); padding: 26px 28px; }
.tool-box.green { background: var(--bg-soft2); border-color: var(--green); }
.tool-box .icon-circle { flex: none; }
.tool-box h4 { font-size: 1.08rem; margin-bottom: .3em; }
.tool-box p { margin: 0 0 .4em; color: var(--muted); font-size: .92rem; }

/* case study */
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0; box-shadow: var(--shadow-sm); overflow: hidden; }
.case-head { padding: 28px 32px; background: var(--grad-bg-soft); }
.case-head .meta { display: flex; flex-wrap: wrap; gap: .6em; margin-bottom: .8em; }
.case-head .meta span { font-size: .76rem; font-weight: 700; font-family: var(--ff-head); padding: .25em .9em; border-radius: var(--radius-pill); background: #fff; color: var(--blue-dark); }
.case-head h3 { font-size: 1.22rem; line-height: 1.6; }
.case-body { padding: 28px 32px; display: grid; gap: 20px; }
.case-block h4 { font-size: 1rem; color: var(--blue-dark); margin-bottom: .4em; display: flex; align-items: center; gap: .5em; }
.case-block h4::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--grad-bg); flex: none; }
.case-block p { margin: 0; color: var(--muted); font-size: .94rem; }
.case-block.result { background: var(--bg-soft2); border-radius: var(--radius); padding: 20px 24px; }
.case-block.result h4 { color: var(--green-dark); }

/* price table */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-sm); position: relative; }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.price-card .ribbon { position: absolute; top: 20px; right: -2px; background: var(--grad-bg); color: #fff; font-size: .72rem; font-weight: 700; font-family: var(--ff-head); padding: .35em 1.1em; border-radius: var(--radius-pill) 0 0 var(--radius-pill); }
.price-card h3 { font-size: 1.4rem; }
.price-card .cond { color: var(--muted); font-size: .86rem; margin: .3em 0 1em; }
.price-card .price { font-family: var(--ff-head); font-weight: 700; color: var(--blue-dark); margin-bottom: 1em; }
.price-card .price .num { font-size: 2.2rem; }
.price-card .price .unit { font-size: .9rem; color: var(--muted); }
.price-card ul.feat { display: grid; gap: 10px; }
.price-card ul.feat li { display: flex; gap: 10px; font-size: .92rem; }
.price-card ul.feat li::before { content: "✓"; color: var(--green); font-weight: 700; }
.price-note { color: var(--muted); font-size: .84rem; margin-top: 18px; text-align: center; }

/* flow (導入の流れ) */
.flow { display: grid; gap: 0; counter-reset: flow; max-width: 760px; margin: 0 auto; list-style: none; padding: 0; }
.flow li { position: relative; padding: 0 0 36px 64px; }
.flow li::before { counter-increment: flow; content: counter(flow); position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--grad-bg); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; }
.flow li::after { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--line); }
.flow li:last-child { padding-bottom: 0; }
.flow li:last-child::after { display: none; }
.flow li h4 { font-size: 1.08rem; margin-bottom: .2em; }
.flow li p { margin: 0; color: var(--muted); font-size: .92rem; }

/* roadmap timeline (DX) */
.roadmap { display: grid; gap: 18px; }
.roadmap .phase { display: grid; grid-template-columns: 160px 1fr; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.roadmap .phase .when { font-family: var(--ff-head); font-weight: 700; color: var(--blue); }
.roadmap .phase .when small { display: block; color: var(--muted); font-family: var(--ff-body); font-weight: 400; font-size: .8rem; }
.roadmap .phase p { margin: 0; color: var(--muted); font-size: .94rem; }

/* profile */
.profile-card { display: grid; grid-template-columns: 220px 1fr; gap: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); align-items: start; }
.profile-photo { aspect-ratio: 2 / 3; border-radius: var(--radius-lg); background: var(--grad-bg-soft); display: grid; place-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.profile-photo:not(:has(img))::after { content: ""; position: absolute; inset: 8px; border-radius: calc(var(--radius-lg) - 8px); border: 2px dashed rgba(10,111,212,.25); }
.profile-photo .initial { font-family: var(--ff-head); font-weight: 700; font-size: 3rem; color: var(--blue); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile-meta .role { color: var(--green-dark); font-family: var(--ff-head); font-weight: 700; font-size: .9rem; }
.profile-meta h3 { font-size: 1.7rem; margin: .1em 0 .6em; }
.profile-meta h3 .en { font-size: .9rem; color: var(--muted); font-family: var(--ff-body); margin-left: .6em; }
.profile-block { margin-top: 18px; }
.profile-block h4 { font-size: .95rem; color: var(--blue-dark); margin-bottom: .3em; }
.profile-block p, .profile-block li { color: var(--muted); font-size: .94rem; margin: 0; }
.profile-block ul { display: grid; gap: 6px; }
.profile-block ul li { padding-left: 1.2em; position: relative; }
.profile-block ul li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-bg); }

/* company table */
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.info-table th, .info-table td { text-align: left; padding: 20px 26px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th { width: 200px; background: var(--bg-soft); font-family: var(--ff-head); font-weight: 700; color: var(--ink); }
.info-table td { color: var(--muted); }

/* map placeholder */
.map-embed { width: 100%; aspect-ratio: 16/7; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* effect cards (DX 期待効果) */
.effect { display: flex; gap: 20px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.effect .badge { flex: none; text-align: center; }
.effect .badge small { display: block; font-size: .68rem; color: var(--green-dark); font-weight: 700; font-family: var(--ff-head); }
.effect .badge .n { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-bg); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; font-size: 1.6rem; margin-top: 4px; }
.effect h4 { font-size: 1.1rem; margin-bottom: .3em; }
.effect p { margin: 0; color: var(--muted); font-size: .94rem; }

/* partner / support service list */
.support-list { display: grid; gap: 18px; }
.support-item { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.support-item .icon-circle { flex: none; font-size: 1.1rem; }
.support-item h4 { font-size: 1.05rem; margin-bottom: .25em; }
.support-item p { margin: 0 0 .4em; color: var(--muted); font-size: .92rem; }
.support-item a { font-size: .86rem; font-weight: 700; }

/* CTA band */
.cta-band { position: relative; background: var(--grad-bg); color: #fff; text-align: center; padding: 80px 0; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.18); }
.cta-band::before { width: 280px; height: 280px; top: -120px; left: -60px; }
.cta-band::after { width: 220px; height: 220px; bottom: -110px; right: -40px; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
.cta-band p { color: rgba(255,255,255,.92); margin: 1em auto 2em; max-width: 560px; }

/* about lead block */
.lead-block { max-width: 820px; margin: 0 auto; }
.lead-block p { margin: 0 0 1.4em; }
.lead-block .pull { font-family: var(--ff-head); font-weight: 700; font-size: 1.3rem; line-height: 1.8; color: var(--blue-dark); text-align: center; padding: 28px; margin: 2em 0; background: var(--grad-bg-soft); border-radius: var(--radius-lg); }
.lead-block .pull .accent { background: var(--grad-bg); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* form */
.form-wrap { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 24px; }
.form-row label { display: block; font-family: var(--ff-head); font-weight: 700; font-size: .92rem; margin-bottom: .5em; }
.form-row label .req { color: #e0556b; font-size: .78rem; margin-left: .5em; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-row textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-submit { text-align: center; margin-top: 12px; }
.form-msg { display: none; padding: 16px 20px; border-radius: 12px; background: var(--bg-soft2); color: var(--green-dark); font-weight: 700; text-align: center; margin-bottom: 20px; }
.form-msg.show { display: block; }

/* contact methods */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.contact-method { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; box-shadow: var(--shadow-sm); }
.contact-method .icon-circle { margin: 0 auto 14px; }
.contact-method h4 { font-size: 1rem; margin-bottom: .3em; }
.contact-method p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Googleフォーム */
.google-form-wrap { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.google-form { display: block; width: 100%; max-width: 640px; height: 2070px; margin: 0; border: 0; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: #122c40; color: rgba(255,255,255,.78); position: relative; }
.footer-top { padding: 70px 0 50px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text small { color: rgba(255,255,255,.6); }
.footer-brand p { font-size: .88rem; margin: 1.2em 0 0; color: rgba(255,255,255,.62); }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1.1em; }
.footer-col ul { display: grid; gap: .7em; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-brand .brand-mark { width: 36px; height: 36px; }

/* =====================================================================
   Animations
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* spin ring animation for hero */
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-rings .ring-rotate { transform-origin: 180px 180px; animation: spin-slow 40s linear infinite; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-rings { display: none; }
  .profile-card { grid-template-columns: 1fr; text-align: center; }
  .profile-photo { width: 200px; margin: 0 auto; }
  .profile-block ul li { text-align: left; }
}
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .google-form-wrap { border-radius: 16px; }
  .roadmap .phase { grid-template-columns: 1fr; gap: 8px; }
  .info-table th { width: 140px; }

  .nav-toggle { display: block; }
  /* 追加修正依頼④: backdrop-filter付きヘッダー内のfixedパネルは
     iOS Safariでヘッダーに閉じ込められて崩れるため、
     ヘッダー直下に開くドロップダウン式に変更 */
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; width: auto;
    background: #fff; border-top: 1px solid var(--line);
    padding: 8px 24px 28px; box-shadow: 0 24px 40px rgba(16,60,110,.14);
    max-height: calc(100vh - 72px); max-height: calc(100dvh - 72px); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .2em; }
  .site-nav > ul > li > a { padding: .9em .2em; border-bottom: 1px solid var(--line); display: block; }
  .site-nav > ul > li > a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 1em; }
  .subnav { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: .2em 0 .6em 1em; min-width: 0; background: transparent; }
  .subnav a { padding: .6em .4em; font-size: .86rem; color: var(--muted); }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(18,44,64,.4); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 99; }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 64px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .form-wrap { padding: 28px 22px; }
  .case-head, .case-body { padding: 22px; }
  .profile-card { padding: 28px 22px; }
  .step { grid-template-columns: 1fr; }
  .step .step-no { margin-bottom: 8px; }
  .hero { padding: 130px 0 90px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

/* =====================================================================
   修正依頼1.1 追加コンポーネント
   テーマ: テキスト主体からの脱却 ×「余白」をつくる
   ===================================================================== */

/* ---- ブランドロゴ画像 ---- */
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand .brand-text { font-size: 1.05rem; }

/* ---- メッセージブロック（センタリング・行間広め・余白大） ---- */
.message-section { padding: 150px 0; }
.message-block2 { text-align: center; font-family: var(--ff-head); font-weight: 700; color: var(--ink); }
.message-block2 p { font-size: clamp(1.05rem, 2.2vw, 1.4rem); line-height: 2.3; margin: 0 0 3.2em; letter-spacing: .06em; }
.message-block2 p:last-child { margin-bottom: 0; }
.message-block2 .soft { color: var(--muted); font-weight: 500; font-family: var(--ff-body); }

/* ---- セクション頭のイラスト ---- */
.sec-illust { display: block; margin: 0 auto 28px; height: 110px; width: auto; }
.sec-illust--overlap { margin-bottom: -20px; position: relative; z-index: 2; }
.head-with-illust { display: flex; align-items: center; justify-content: center; gap: 18px; }
.head-with-illust img { height: 96px; width: auto; flex: none; }

/* ---- イラスト付きチェックリスト ---- */
.checklist .chk-illust { width: 44px; height: 44px; flex: none; object-fit: contain; }
.checklist li { align-items: center; }

/* ---- クルマの両輪／グッドサイクル図 ---- */
.fig-center { display: block; margin: 0 auto; max-width: 720px; width: 100%; height: auto; }
.fig-caption { text-align: center; font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.25rem, 2.6vw, 1.7rem); margin: 0 0 48px; }

.cycle-wrap { display: grid; gap: 56px; max-width: 860px; margin: 0 auto; }
.cycle-box { border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; position: relative; }
.cycle-box.bad { background: #f6f7f9; }
.cycle-box.good { background: var(--bg-soft2); }
.cycle-box h4 { font-size: 1.25rem; margin-bottom: 1.6em; }
.cycle-box.bad h4 { color: #5b6b78; }
.cycle-box.good h4 { color: var(--green-dark); }
.cycle-face { width: 92px; height: 92px; margin: 0 auto 8px; }
.cycle-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.cycle-items .ci { background: #fff; border-radius: var(--radius); padding: 18px 12px; font-size: .88rem; font-weight: 700; font-family: var(--ff-head); display: grid; place-items: center; line-height: 1.6; box-shadow: var(--shadow-sm); position: relative; }
.cycle-box.bad .ci { color: #5b6b78; }
.cycle-box.good .ci { color: var(--green-dark); }
.cycle-items .ci::after { content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: #b9c6d2; font-weight: 700; z-index: 1; }
.cycle-items .ci:last-child::after { content: "↺"; right: auto; left: 50%; top: auto; bottom: -30px; transform: translateX(-50%); }
.cycle-down { text-align: center; margin: -20px 0; }
.cycle-down .arr { display: inline-block; width: 0; height: 0; border-left: 34px solid transparent; border-right: 34px solid transparent; border-top: 30px solid var(--blue); }

/* ---- カードのアイコン/イラスト ---- */
.card .card-icon { height: 96px; width: auto; margin: 18px auto; display: block; object-fit: contain; }
.card .card-illust { height: 130px; width: auto; margin: 18px auto; display: block; object-fit: contain; }

/* ---- サービスカードのイラスト（吹き出し合成） ---- */
.svc-visual { position: relative; height: 130px; display: flex; align-items: center; justify-content: center; gap: 10px; margin: 6px 0; }
.svc-visual img.person { height: 120px; width: auto; }
/* 修正依頼P10: 緑の楕円吹き出し（イラスト準拠） */
.svc-visual .vbubble { font-family: var(--ff-head); font-weight: 700; width: 88px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: #d9ecc8; color: #3e6b1f; font-size: 1.02rem; }
.svc-visual .vbubble.blue { background: #d9ecc8; color: #3e6b1f; }
.svc-visual .dx-star { position: relative; width: 96px; height: 96px; display: grid; place-items: center; }
.svc-visual .dx-star img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.svc-visual .dx-star span { position: relative; font-family: var(--ff-head); font-weight: 700; color: var(--green-dark); font-size: 1.2rem; }

/* ---- 大きめ画像バンド（チーム画像など） ---- */
.visual-band { padding: 40px 0 0; }
.visual-band img { display: block; margin: 0 auto; width: min(100%, 760px); border-radius: var(--radius-lg); }

/* ---- Aboutリード：イラスト（中央）＋文章の縦積み（修正依頼: 文章の間に挿入） ---- */
.lead-rows { display: grid; gap: 96px; max-width: 800px; margin: 0 auto; }
.lead-row { display: grid; grid-template-columns: 1fr; gap: 28px; justify-items: center; }
.lead-illust { text-align: center; }
.lead-illust img { width: 100%; max-width: 250px; height: auto; margin: 0 auto 10px; }
.lead-illust .lbl { font-family: var(--ff-head); font-weight: 700; color: var(--blue-dark); font-size: 1.02rem; line-height: 1.6; }
.lead-row p { margin: 0; color: var(--ink); line-height: 2.2; }

/* ---- 衝突（正しさ⚡正しさ）図 ---- */
.clash-fig { text-align: center; max-width: 460px; margin: 0 auto; }
.clash-top { display: flex; align-items: center; justify-content: center; gap: 14px; font-family: var(--ff-head); font-weight: 700; font-size: 1.3rem; }
.clash-top img { height: 110px; width: auto; }
.clash-fig > img { width: 100%; max-width: 340px; margin: 8px auto 0; }

/* ---- Belief 段落（余白広め） ---- */
.belief-flow { max-width: 800px; margin: 0 auto; }
.belief-flow .b-illust { display: block; margin: 56px auto; height: 150px; width: auto; }
.belief-flow p { line-height: 2.3; margin: 0 0 2.2em; }
.belief-flow .b-strong { text-align: center; font-family: var(--ff-head); font-weight: 700; color: var(--blue-dark); font-size: 1.15rem; line-height: 2.2; }

/* ---- 吹き出し図（採用−定着伴走サポート） ---- */
.promise-fig { max-width: 860px; margin: 0 auto; }
.promise-fig img { width: 100%; height: auto; display: block; }

/* ---- 図版ブロック（余白付き） ---- */
.fig-block { margin: 56px auto; text-align: center; }
.fig-block img { max-width: 100%; height: auto; display: inline-block; }
.fig-block.boxed { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 32px; box-shadow: var(--shadow-sm); }
.fig-block .fig-title { font-family: var(--ff-head); font-weight: 700; font-size: 1.3rem; margin: 0 0 24px; }
.fig-block .fig-note { color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ---- SUPPORT TOOL セクション ---- */
.support-tool { text-align: center; max-width: 860px; margin: 96px auto 0; padding: 72px 40px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.support-tool .st-label { font-family: var(--ff-head); font-weight: 700; letter-spacing: .22em; color: #e8712d; font-size: .82rem; }
.support-tool .st-label small { display: block; color: var(--ink); letter-spacing: .1em; font-size: .95rem; margin-top: .3em; }
.support-tool h4 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 1.6em 0 1.2em; }
.support-tool .st-desc { color: var(--muted); line-height: 2.2; max-width: 620px; margin: 0 auto 40px; }
.support-tool .st-media { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; }
.support-tool .st-media img { max-width: min(100%, 380px); height: auto; border-radius: 8px; }
.support-tool .st-link { display: inline-block; margin-top: 28px; font-weight: 700; }

/* ---- 実践事例（リッチ版） ---- */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto 88px; }
.photo-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.case2 { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; max-width: 900px; margin: 0 auto 88px; }
.case2:last-child { margin-bottom: 0; }
.case2 .case2-head { padding: 56px 56px 0; text-align: center; }
.case2 .case2-head .meta { display: flex; justify-content: center; flex-wrap: wrap; gap: .6em; margin-bottom: 1.6em; }
.case2 .case2-head .meta span { font-size: .76rem; font-weight: 700; font-family: var(--ff-head); padding: .3em 1em; border-radius: var(--radius-pill); background: var(--grad-bg-soft); color: var(--blue-dark); }
.case2 .case2-head h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); line-height: 2; }
.case2 .case2-photo { display: block; width: min(100% - 64px, 640px); margin: 40px auto; border-radius: var(--radius); }
.case2 .case2-body { padding: 0 56px 64px; }
.case2 .case2-sec { margin-top: 56px; }
.case2 .case2-sec:first-child { margin-top: 0; }
.case2 .sec-icon { height: 110px; width: auto; max-width: 100%; object-fit: contain; display: block; margin-bottom: 28px; }
@media (max-width: 560px) { .case2 .sec-icon { height: 84px; } }
.case2 .case2-sec p { color: var(--muted); line-height: 2.3; margin: 0 0 2em; }
.case2 .case2-sec p:last-child { margin-bottom: 0; }
.case2 .case2-sec p strong { color: var(--ink); }
.case2 .case2-sec.result { background: var(--bg-soft2); border-radius: var(--radius); padding: 40px 44px; }

/* ---- DX：本プロジェクトの目的 box ---- */
.purpose-box { position: relative; max-width: 780px; margin: 64px auto 0; text-align: center; }
.purpose-box .pb-label { display: inline-block; font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 20px; position: relative; padding: 0 2.2em; }
.purpose-box .pb-label::before, .purpose-box .pb-label::after { content: ""; position: absolute; top: 50%; width: 1.6em; height: 2px; background: var(--ink); }
.purpose-box .pb-label::before { left: 0; transform: rotate(60deg); }
.purpose-box .pb-label::after { right: 0; transform: rotate(-60deg); }
.purpose-box .pb-body { background: var(--blue); color: #fff; border-radius: var(--radius); padding: 32px 40px; font-family: var(--ff-head); font-weight: 700; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 2.1; box-shadow: var(--shadow); }
.purpose-box .pb-mascot { position: absolute; right: -12px; bottom: -34px; height: 76px; width: auto; }

/* ---- DX：メッセージ見出し ---- */
.dx-msg-title { text-align: center; font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 1.6rem); margin: 0 0 40px; }

/* ---- プラン別料金（DX） ---- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 28px; text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.plan-card h4 { font-size: 1.3rem; padding-bottom: .7em; border-bottom: 2px solid var(--grad-bg-soft); margin-bottom: 1.2em; }
.plan-card .plan-desc { color: var(--muted); font-size: .92rem; line-height: 2; min-height: 6em; }
.plan-card .plan-price { font-family: var(--ff-head); font-weight: 700; color: var(--blue-dark); margin: 1em 0 .4em; }
.plan-card .plan-price .num { font-size: 1.9rem; }
.plan-card .plan-price small { display: block; color: var(--muted); font-weight: 400; font-family: var(--ff-body); font-size: .82rem; margin-top: .3em; }
.plan-card .plan-note { color: var(--muted); font-size: .85rem; margin-top: auto; padding-top: 1em; }
.plan-notes { max-width: 860px; margin: 40px auto 0; color: var(--muted); font-size: .86rem; line-height: 2.1; }
.plan-notes li { padding-left: 1.4em; position: relative; }
.plan-notes li::before { content: "◎"; position: absolute; left: 0; }

/* ---- 研修：体感→解説→実践→振り返り 円形フロー ---- */
.flow-circles { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 0 auto 72px; }
.flow-circles .fc { width: 128px; height: 128px; border-radius: 50%; background: var(--grad-bg); color: #fff; display: grid; place-items: center; text-align: center; font-family: var(--ff-head); font-weight: 700; font-size: 1.02rem; line-height: 1.5; box-shadow: var(--shadow-sm); padding: 10px; }
.flow-circles .fa { color: var(--blue); font-size: 1.7rem; font-weight: 700; }

/* ---- 図＋キャプション（カスタムメイド等） ---- */
.sketch-fig { max-width: 720px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 48px 40px; box-shadow: var(--shadow-sm); }
.sketch-fig h4 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin-bottom: 28px; }
.sketch-fig img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--line); }
.sketch-fig .cap { color: var(--muted); font-size: .86rem; margin-top: 12px; }

/* ---- 汎用：中央寄せ強調行 ---- */
.center-strong { text-align: center; font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: var(--blue-dark); line-height: 2.1; margin: 64px 0 0; }

/* ---- レスポンシブ（追加分） ---- */
@media (max-width: 860px) {
  .section { padding: 96px 0; }
  .message-section { padding: 100px 0; }
  .lead-row { grid-template-columns: 1fr; gap: 20px; }
  .belief-row { grid-template-columns: 1fr !important; gap: 24px; }
  .cycle-circle { grid-template-columns: 1fr; }
  .cycle-circle .cc-left, .cycle-circle .cc-right, .cycle-circle .cc-top, .cycle-circle .cc-bottom, .cycle-circle .cc-center { grid-column: 1 !important; grid-row: auto !important; }
  .cycle-arrows { display: none; }
  .plan-table { font-size: .82rem; }
  .plan-table th, .plan-table td { padding: 12px 8px; }
  .cycle-items { grid-template-columns: repeat(2, 1fr); }
  .cycle-items .ci::after { display: none; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .case2 .case2-head { padding: 40px 26px 0; }
  .case2 .case2-body { padding: 0 26px 44px; }
  .case2 .case2-sec.result { padding: 28px 24px; }
  .purpose-box .pb-mascot { display: none; }
  .hero-badge { height: 34px; }
  .support-tool { padding: 48px 24px; }
}
@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .flow-circles .fc { width: 104px; height: 104px; font-size: .9rem; }
  .head-with-illust { flex-direction: column; gap: 8px; }
  .cycle-box { padding: 36px 20px; }
}

/* 1行見出し（デスクトップのみ改行禁止） */
.oneline { white-space: nowrap; }
@media (max-width: 720px) { .oneline { white-space: normal; } }

/* =====================================================================
   修正依頼1.1 追加修正（忠実再現）
   ===================================================================== */

/* ---- P6: サイクル円形図（中央に顔・周囲4項目・回転矢印） ---- */
.cycle-circle { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: auto auto auto; gap: 18px 22px; align-items: center; justify-items: center; max-width: 720px; margin: 0 auto; }
.cycle-circle .cc { background: #fff; border-radius: var(--radius); padding: 16px 20px; font-size: .92rem; font-weight: 700; font-family: var(--ff-head); line-height: 1.7; text-align: center; box-shadow: var(--shadow-sm); max-width: 240px; }
.cycle-circle .cc-top { grid-column: 2; grid-row: 1; }
.cycle-circle .cc-right { grid-column: 3; grid-row: 2; }
.cycle-circle .cc-bottom { grid-column: 2; grid-row: 3; }
.cycle-circle .cc-left { grid-column: 1; grid-row: 2; }
.cycle-circle .cc-center { grid-column: 2; grid-row: 2; text-align: center; padding: 0 24px; }
.cycle-circle .cc-center img { width: 96px; height: 96px; margin: 0 auto 6px; }
.cycle-circle .cc-center .cname { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; }
.cycle-circle.bad .cc { color: #5b6b78; }
.cycle-circle.bad .cc-center .cname { color: #5b6b78; }
.cycle-circle.good .cc { color: var(--green-dark); }
.cycle-circle.good .cc-center .cname { color: #e8712d; }
/* 回転矢印（時計回り） */
.cycle-arrows span { position: absolute; font-size: 2rem; font-weight: 700; line-height: 1; user-select: none; }
.cycle-circle.bad .cycle-arrows span { color: #a9b6c0; }
.cycle-circle.good .cycle-arrows span { color: #f0955a; }
.cycle-arrows .a1 { top: 16%; right: 24%; transform: rotate(45deg); }
.cycle-arrows .a2 { bottom: 16%; right: 24%; transform: rotate(135deg); }
.cycle-arrows .a3 { bottom: 16%; left: 24%; transform: rotate(225deg); }
.cycle-arrows .a4 { top: 16%; left: 24%; transform: rotate(315deg); }
/* サイクル間のつなぎ */
.cycle-bridge { text-align: center; margin: 40px 0; }
.cycle-bridge .arr { display: inline-block; width: 0; height: 0; border-left: 36px solid transparent; border-right: 36px solid transparent; border-top: 32px solid var(--blue); }

/* ---- P15: Belief イラスト×テキスト横並び ---- */
.belief-row { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; margin: 72px 0; }
.belief-row .b-side img { width: 100%; max-width: 280px; height: auto; margin: 0 auto; }
.belief-row p { margin: 0; }

/* ---- P31: プラン別料金テーブル（修正依頼準拠） ---- */
.plan-table-wrap { max-width: 960px; margin: 0 auto; overflow-x: auto; }
.plan-table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden; }
.plan-table th, .plan-table td { border: 1px solid #cfdce8; padding: 20px 16px; text-align: center; vertical-align: middle; font-size: .95rem; line-height: 1.9; }
.plan-table thead th { background: var(--blue); color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 1.08rem; }
.plan-table thead th.corner { background: #f9e7da; color: var(--ink); }
.plan-table tbody th { background: #f9e7da; color: var(--ink); font-family: var(--ff-head); font-weight: 700; width: 160px; }
.plan-table .price-cell { font-family: var(--ff-head); font-weight: 700; color: var(--ink); }
.plan-table .price-cell .num { font-size: 1.25rem; }
.plan-tax-note { text-align: right; max-width: 960px; margin: 0 auto 10px; color: var(--muted); font-size: .85rem; }

/* 追加修正依頼②: 特徴カードのアイコンを左右と同じ高さに揃える（見出し部の高さ統一） */
.icon-align .card h3 { min-height: 2.9em; }
@media (max-width: 560px) { .icon-align .card h3 { min-height: 0; } }
