:root {
  --ink: #34263f;
  --ink-soft: #74647f;
  --rose: #795080;
  --rose-deep: #5d386a;
  --rose-light: #eadaf0;
  --blush: #f6effa;
  --blush-strong: #ead9f0;
  --gold: #c9a66a;
  --gold-light: #e7cf9c;
  --line: rgba(126, 98, 145, .28);
  --white: #fffaff;
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --script: "Segoe Script", "Brush Script MT", "Allura", cursive;
  --display: "Cormorant Garamond", "Noto Serif JP", serif;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --shadow: 0 16px 46px rgba(100, 65, 121, .11);
  --ease: cubic-bezier(.25, 1, .5, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 112px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--serif); line-height: 1.75; overflow-x: hidden; }
img { display: block; max-width: 100%; }
.mobile-only-break { display: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 28px; min-height: 84px; padding: 14px clamp(22px, 5vw, 80px); background: rgba(252, 248, 255, .92); border-bottom: 1px solid rgba(126,98,145,.16); backdrop-filter: blur(18px); }
.brand { display: inline-flex; flex-direction: column; align-items: center; width: max-content; color: var(--rose-deep); line-height: 1; }
.brand__logo { display: block; width: 188px; height: auto; }
.brand__script { font-family: var(--script); font-size: 40px; letter-spacing: .01em; white-space: nowrap; }
.brand__sub { display: flex; align-items: center; gap: 7px; margin-top: 6px; color: var(--gold); font-family: var(--display); font-size: 10px; letter-spacing: .24em; }
.brand__sub i { display: block; width: 26px; border-top: 1px solid currentColor; }
.brand__crest { position: relative; display: block; width: 82px; height: 20px; margin-bottom: -2px; }
.brand__crest::before, .brand__crest::after, .brand__crest i, .brand__crest b, .brand__crest em { position: absolute; display: block; content: ""; border: 1px solid var(--gold); }
.brand__crest::before { left: 8px; right: 8px; bottom: 1px; border-width: 0 0 1px; border-radius: 50%; }
.brand__crest::after { left: 33px; top: 0; width: 16px; height: 14px; border-radius: 50% 50% 44% 44%; transform: rotate(45deg); }
.brand__crest i { left: 17px; top: 7px; width: 11px; height: 7px; border-radius: 50%; transform: rotate(-22deg); }
.brand__crest b { right: 17px; top: 7px; width: 11px; height: 7px; border-radius: 50%; transform: rotate(22deg); }
.brand__crest em { left: 0; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; box-shadow: 77px 0 0 -1px var(--gold); }
.site-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px clamp(10px, 1.6vw, 24px); font-size: clamp(12px, .95vw, 14px); line-height: 1.4; color: #4d405b; }
.site-nav a { position: relative; transition: color 150ms var(--ease); }
.site-nav a { white-space: nowrap; }
.site-nav a::after { position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease); }
.site-nav a:hover { color: var(--rose); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav__contact { display: none; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: 170px; padding: 12px 20px; color: #fff; background: var(--rose); border-radius: 999px; font-size: 14px; box-shadow: 0 8px 20px rgba(93,56,106,.18); transition: transform 150ms var(--ease), background 150ms var(--ease); }
.header-cta:hover { background: var(--rose-deep); transform: translateY(-2px); }
.mail-mark { position: relative; display: inline-block; width: 20px; height: 14px; border: 1px solid currentColor; }
.mail-mark::after, .mail-mark::before { position: absolute; top: 2px; width: 12px; height: 1px; background: currentColor; content: ""; }
.mail-mark::before { left: 0; transform: rotate(31deg); transform-origin: left; }
.mail-mark::after { right: 0; transform: rotate(-31deg); transform-origin: right; }
.nav-toggle { display: none; border: 0; background: transparent; }

.section-shell { --section-pad: clamp(22px, 6vw, 96px); position: relative; padding: clamp(84px, 9vw, 132px) var(--section-pad); }
.section-shell--soft { background: #fffaff; }
.section-shell--rose { background: linear-gradient(145deg, #f9edff 0%, #e5b9ee 49%, #d9a4e7 100%); }
.hero { display: block; min-height: 0; padding-top: 0; padding-bottom: 34px; isolation: isolate; overflow: hidden; background: #fbf3ff; }
.hero__ornament { position: absolute; z-index: 1; left: 5%; top: 28%; width: 92px; height: 92px; border: 1px solid var(--gold-light); border-radius: 50%; pointer-events: none; }
.hero__ornament::before, .hero__ornament::after { position: absolute; content: ""; border: 1px solid var(--gold-light); border-radius: 50%; }
.hero__ornament::before { inset: 16px -22px -16px 16px; }
.hero__ornament::after { inset: -20px 16px 20px -18px; }
.hero::before, .hero::after { position: absolute; z-index: -1; content: ""; pointer-events: none; }
.hero::before { width: 58%; height: 360px; right: -6%; bottom: -145px; border: 1px solid var(--gold-light); border-left: 0; border-radius: 0 0 0 55%; transform: rotate(-8deg); }
.hero::after { right: -8%; bottom: -100px; width: 60%; height: 220px; background: rgba(220, 184, 235, .68); border-radius: 50% 0 0 50%; transform: rotate(-9deg); }
.hero__copy { display: none; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .2em; }
.eyebrow span { display: inline-block; width: 24px; margin: 0 8px 3px; border-top: 1px solid currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; color: var(--ink); font-size: clamp(38px, 3.8vw, 60px); font-weight: 500; line-height: 1.34; letter-spacing: .04em; }
h1 span, h2 span { color: var(--rose); }
.heading-rule { display: flex; align-items: center; justify-content: center; gap: 10px; width: 190px; margin: 22px auto 26px; color: var(--gold); }
.heading-rule i { flex: 1; border-top: 1px solid currentColor; }
.heading-rule b { position: relative; display: block; width: 10px; height: 10px; border: 1px solid currentColor; transform: rotate(45deg); font-weight: 400; }
.heading-rule b::after { position: absolute; left: 2px; top: 2px; width: 4px; height: 4px; border: 1px solid currentColor; content: ""; }
.hero__copy .heading-rule { margin-left: 0; margin-right: 0; }
.hero__lead { max-width: 620px; margin-bottom: 30px; color: var(--ink-soft); font-size: 20px; line-height: 1.9; }
.hero__actions { position: absolute; z-index: 4; top: calc((100vw - (2 * var(--section-pad))) * .499402 - 250px); right: calc(var(--section-pad) + clamp(24px, 3vw, 52px)); bottom: auto; left: auto; display: flex; flex-wrap: nowrap; gap: 18px; pointer-events: auto; }
.hero__actions .button { min-height: 82px; padding: 20px 52px; font-size: 21px; }
.hero__actions .button span:last-child { font-size: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 12px 28px; border: 1px solid transparent; border-radius: 999px; font-size: 15px; transition: transform 150ms var(--ease), box-shadow 150ms var(--ease), background 150ms var(--ease); }
.button span:last-child { margin-left: 16px; font-family: var(--sans); font-size: 24px; line-height: 1; }
.button--primary span:last-child { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; margin-left: 12px; font-size: 28px; line-height: 1; transform: translateY(-1px); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(117,59,85,.15); }
.button--primary { color: #fff; background: var(--rose); }
.button--primary:hover { background: var(--rose-deep); }
.button--outline { color: var(--rose-deep); border: 2px solid rgba(121,80,128,.42); background: linear-gradient(135deg, #fffaff 0%, #f1e5f6 100%); box-shadow: 0 6px 16px rgba(100,65,121,.09); }
.button--outline:hover { border-color: var(--rose); background: #f0e2f6; }
.hero__visual { position: relative; width: 100%; aspect-ratio: 1672 / 835; min-height: 0; margin: 0; overflow: hidden; border-radius: 0; background: url("assets/pc-hero2.webp") center / 100% 100% no-repeat; box-shadow: none; }
.hero__visual::after { position: absolute; inset: 0; border: 1px solid rgba(201,166,106,.35); border-radius: inherit; content: ""; pointer-events: none; }
.hero__visual-caption, .hero__visual-side-label { display: none; }
.hero__visual-caption { position: absolute; z-index: 2; left: 42%; bottom: 11%; width: 18%; flex-direction: column; align-items: center; gap: 3px; padding: 0; color: var(--gold-light); background: transparent; font-family: var(--display); font-size: clamp(9px, 1vw, 13px); letter-spacing: .22em; line-height: 1.35; text-align: center; }
.hero__visual-caption span { display: block; width: auto; margin: 0; }
.hero__visual-caption i { display: block; width: 18px; border-top: 1px solid var(--gold-light); }
.hero__visual-side-label { position: absolute; z-index: 2; top: 31%; right: 2.8%; color: var(--gold); font-family: var(--display); font-size: clamp(10px, 1vw, 13px); letter-spacing: .24em; writing-mode: vertical-rl; }
.wave-line { position: absolute; z-index: -1; height: 110px; border-top: 1px solid var(--gold-light); border-radius: 50%; pointer-events: none; }
.wave-line--hero { display: none; }
.service-glance { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; position: relative; z-index: 2; }
.service-glance { margin-top: 28px; }
.glance-card { display: flex; align-items: center; gap: 18px; min-height: 146px; padding: 20px 24px; background: rgba(255,255,255,.82); border: 1px solid rgba(201,166,106,.22); border-radius: var(--r-md); box-shadow: 0 10px 26px rgba(126,73,97,.05); transition: transform 220ms var(--ease), border-color 220ms var(--ease); }
.glance-card:hover { border-color: var(--gold-light); transform: translateY(-4px); }
.glance-card img { width: 76px; height: 76px; object-fit: cover; border-radius: 50%; }
.glance-card strong, .glance-card small { display: block; }
.glance-card strong { color: var(--rose); font-size: 18px; font-weight: 600; white-space: nowrap; }
.glance-card small { margin-top: 5px; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; }

.about__top { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(40px, 8vw, 120px); max-width: 1200px; margin: 0 auto 92px; }
.about__message { max-width: 1160px; margin: 0 auto 92px; }
.about__message-head { max-width: 850px; margin: 0 auto 34px; text-align: center; }
.about__message-head h2 { margin: 0; color: var(--ink); font-size: clamp(30px, 4vw, 48px); font-weight: 500; line-height: 1.45; letter-spacing: .06em; }
.about__message-head .heading-rule { margin: 22px auto 0; }
.about__message-frame { position: relative; max-width: 850px; margin: 0 auto; padding: clamp(16px, 3vw, 42px); overflow: hidden; border: 1px solid rgba(201,166,106,.55); border-radius: 30px 30px 30px 0; background: linear-gradient(135deg, #fbf4ff 0%, #f4e7fa 58%, #e9d3f0 100%); box-shadow: 0 22px 54px rgba(100,65,121,.1); }
.about__message-frame::before { position: absolute; top: -30%; right: -12%; width: 54%; height: 80%; border: 1px solid rgba(231,207,156,.22); border-radius: 50%; content: ""; transform: rotate(-14deg); }
.about__message-frame img { position: relative; z-index: 1; width: 100%; height: auto; margin: 0 auto; }
.career-guide { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 850px; margin: clamp(24px, 3vw, 36px) auto 0; padding: 18px 22px; border-top: 1px solid rgba(201,166,106,.34); border-bottom: 1px solid rgba(201,166,106,.34); }
.career-guide__copy { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; min-width: 0; }
.career-guide__copy .eyebrow { margin: 0; font-size: 10px; letter-spacing: .16em; }
.career-guide__copy p:last-child { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.career-guide__copy strong { color: var(--rose); font-weight: 500; }
.career-guide__trigger { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; padding: 8px 0 7px; color: var(--rose-deep); border: 0; border-bottom: 1px solid var(--gold); background: transparent; font: 500 14px var(--serif); cursor: pointer; transition: color 160ms var(--ease), border-color 160ms var(--ease); }
.career-guide__trigger span { color: var(--gold); font-family: var(--sans); font-size: 18px; line-height: 1; transition: transform 160ms var(--ease); }
.career-guide__trigger:hover, .career-guide__trigger:focus-visible { color: var(--rose); border-bottom-color: var(--rose); outline: none; }
.career-guide__trigger:hover span, .career-guide__trigger:focus-visible span { transform: translate(2px, -2px); }
.about__visual { min-height: 420px; overflow: hidden; border-radius: 0 42% 0 0; box-shadow: var(--shadow); }
.about__visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: right center; }
.about__copy h2, .section-heading h2 { margin-bottom: 0; color: var(--ink); font-size: clamp(30px, 4vw, 48px); font-weight: 500; line-height: 1.45; letter-spacing: .06em; }
.about__copy .heading-rule { margin-left: 0; }
.about__copy p:not(.eyebrow) { margin-bottom: 18px; color: var(--ink-soft); font-size: 16px; line-height: 2.08; }
.about__copy blockquote { margin: 22px 0 24px; padding: 18px 22px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.68); color: var(--rose); font-size: 16px; line-height: 2; }
.about__copy blockquote strong { font-weight: 600; }
.about__copy blockquote span { display: inline-block; margin-top: 8px; color: var(--ink-soft); font-size: 14px; }
.section-heading { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.section-heading--compact { margin-top: 92px; }
.section-heading .brand--center { margin: 0 auto 34px; }
.timing .section-heading h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.5; }
.section-lead { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 17px; line-height: 2; }
.about__concerns, .about__solution { position: relative; margin-inline: calc(-1 * var(--section-pad)); padding-inline: var(--section-pad); }
.about__concerns { overflow: hidden; padding-block: clamp(48px, 6vw, 78px); border-top: 1px solid rgba(201,166,106,.24); border-bottom: 1px solid rgba(201,166,106,.24); background: linear-gradient(145deg, #f9edff 0%, #e5b9ee 49%, #d9a4e7 100%); }
.about__solution { scroll-margin-top: 110px; margin-top: clamp(56px, 7vw, 94px); padding-block: clamp(56px, 7vw, 96px) 0; border-top: 1px solid rgba(121,80,128,.14); border-bottom: 1px solid rgba(201,166,106,.28); background: #fffaff; }
.solution-reasons { scroll-margin-top: 110px; margin: clamp(64px, 7vw, 102px) calc(-1 * var(--section-pad)) 0; padding: clamp(48px, 6vw, 76px) var(--section-pad); border-top: 1px solid rgba(201,166,106,.36); border-bottom: 1px solid rgba(201,166,106,.28); background: linear-gradient(145deg, #f9edff 0%, #e5b9ee 49%, #d9a4e7 100%); }
.solution-reasons__poster { max-width: 1400px; margin: 0 auto; overflow: hidden; border: 1px solid rgba(201,166,106,.42); background: #fffaf7; box-shadow: 0 18px 44px rgba(126,73,97,.1); }
.solution-reasons__poster picture { display: block; }
.solution-reasons__poster img { width: 100%; height: auto; }
.solution-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(34px, 5vw, 78px); align-items: stretch; max-width: 1220px; margin: 0 auto; }
.solution-feature__copy { min-width: 0; padding: 18px 0 14px; }
.solution-feature__heading h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 4.2vw, 54px); font-weight: 500; line-height: 1.4; letter-spacing: .05em; }
.solution-feature__heading .heading-rule { margin: 22px 0 24px; }
.solution-feature__heading .section-lead { margin: 0; text-align: left; }
.solution-intro { max-width: 720px; margin: 30px 0 30px; text-align: left; }
.solution-intro p { margin: 0; color: #493558; font-size: 17px; line-height: 2; }
.solution-axis-list { display: grid; gap: 22px; }
.solution-axis { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 22px; align-items: center; min-height: 124px; }
.solution-axis img { width: 104px; height: 104px; object-fit: cover; border-radius: 50%; }
.solution-axis__body { padding-left: 24px; border-left: 1px solid rgba(201,166,106,.68); }
.solution-axis strong { display: block; color: var(--rose); font-size: 22px; font-weight: 500; line-height: 1.5; }
.solution-axis p { margin: 10px 0 0; color: #493558; font-size: 15px; line-height: 1.9; }
.about__solution .section-lead { color: #493558; }
.solution-feature__visual { min-height: 760px; overflow: hidden; border-radius: 0 0 0 42%; box-shadow: var(--shadow); }
.solution-feature__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.section-subheading { max-width: 1220px; margin: 54px auto 26px; text-align: center; }
.section-subheading h3 { margin: 0; color: var(--rose); font-size: clamp(25px, 3vw, 34px); font-weight: 500; letter-spacing: .08em; }
.concern-grid { display: flex; width: max-content; gap: 0; max-width: none; margin: 0 calc(-1 * var(--section-pad)); padding: 4px 0 18px; overflow: visible; animation: concern-marquee 64s linear infinite; }
.concern-grid::-webkit-scrollbar { height: 8px; }
.concern-grid::-webkit-scrollbar-track { background: rgba(201,166,106,.12); border-radius: 999px; }
.concern-grid::-webkit-scrollbar-thumb { background: rgba(139,77,103,.4); border-radius: 999px; }
.concern-track { display: flex; flex: 0 0 auto; gap: 16px; padding-right: 16px; animation: none; }
.concern-grid:hover { animation-play-state: paused; }
.concern-card { display: flex; flex: 0 0 clamp(280px, 23vw, 330px); flex-direction: column; align-items: center; justify-content: flex-start; gap: 14px; min-height: 240px; padding: 22px 24px; background: rgba(255,255,255,.92); border: 1px solid rgba(201,166,106,.3); border-radius: var(--r-md); box-shadow: 0 10px 26px rgba(126,73,97,.035); }
.concern-card img { flex: 0 0 auto; width: 116px; height: 116px; object-fit: cover; border-radius: 50%; }
.concern-card span { display: flex; align-items: flex-start; justify-content: center; width: 100%; min-height: 3.1em; color: var(--rose); font-size: 18px; line-height: 1.55; text-align: center; text-wrap: balance; word-break: keep-all; }
.horizontal-scroll-hint { display: none; }
.mini-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1220px; margin: 0 auto; }
.mini-services > a { display: flex; flex-direction: column; align-items: stretch; gap: 0; overflow: hidden; border: 1px solid rgba(201,166,106,.34); border-radius: var(--r-md); background: transparent; transition: transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.mini-services > a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-services img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }
.mini-services strong, .mini-services small { display: block; }
.mini-services > a > span { min-height: 164px; padding: 20px 22px 24px; background: #fff; }
.mini-services strong { color: var(--rose); font-size: 20px; line-height: 1.5; }
.mini-services small { margin-top: 9px; color: var(--ink-soft); font-family: var(--sans); font-size: 15px; line-height: 1.85; }

.services { padding-top: clamp(52px, 5vw, 76px); background: #fffaff; }
.pricing { background: linear-gradient(145deg, #f9edff 0%, #e5b9ee 49%, #d9a4e7 100%); }
.service-detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; max-width: 1270px; margin: 0 auto; }
.service-detail { overflow: hidden; border: 1px solid rgba(201,166,106,.28); border-radius: var(--r-md); background: rgba(255,255,255,.83); box-shadow: 0 8px 28px rgba(126,73,97,.03); }
.service-detail__head { display: flex; align-items: center; gap: 16px; min-height: 112px; padding: 18px 20px 14px; }
.service-detail__head img { width: 76px; height: 76px; object-fit: cover; border-radius: 50%; }
.service-detail h3 { margin: 0; color: var(--rose); font-size: 18px; font-weight: 600; line-height: 1.5; letter-spacing: -.05em; }
.service-detail__photo { width: calc(100% - 22px); height: 170px; margin: 0 11px; object-fit: cover; border-radius: 10px; }
.service-detail > p { margin: 20px 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.95; }
.service-detail ul { margin: 0 18px 22px; padding: 14px 0 0; border-top: 1px dashed rgba(201,166,106,.55); list-style: none; }
.service-detail li { padding: 8px 0 8px 22px; border-bottom: 1px solid rgba(139,77,103,.13); color: var(--ink-soft); font-family: var(--sans); font-size: 15px; line-height: 1.45; }
.service-detail li::before { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; margin-left: -22px; margin-right: 7px; color: #fff; background: var(--rose); border-radius: 50%; content: "✓"; font-size: 10px; }
.service-detail__note { display: flex; align-items: center; gap: 12px; margin: 20px 18px; padding: 16px; background: var(--blush); border-radius: var(--r-md); }
.service-detail__note img { width: 82px; height: 82px; object-fit: cover; border-radius: 50%; }
.service-detail__note p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.8; }
.service-note { margin: 38px auto 0; color: var(--rose); text-align: center; font-size: 15px; }
.service-note__mark { display: inline-block; width: 8px; height: 8px; margin: 0 8px 2px; border: 1px solid var(--gold); transform: rotate(45deg); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1150px; margin: 0 auto; }
.price-card { min-height: 215px; padding: 24px; border: 1px solid rgba(201,166,106,.48); border-radius: var(--r-md); background: rgba(255,255,255,.82); text-align: center; }
.price-card > div:first-child { display: flex; min-height: 142px; flex-direction: column; align-items: center; justify-content: flex-start; gap: 10px; }
.price-card img { width: 76px; height: 76px; object-fit: cover; border-radius: 50%; }
.price-card h3 { min-height: 56px; margin: 0; color: var(--rose); font-size: 20px; font-weight: 500; line-height: 1.45; text-align: center; }
.price-card h3 small { font-size: 16px; }
.price-card__amount { margin-top: 20px; color: var(--rose); font-family: var(--display); font-size: clamp(32px, 4vw, 48px); line-height: 1; }
.price-card__amount small { margin: 0 5px; color: var(--ink); font-family: var(--serif); font-size: 14px; }
.price-card > p { margin: 9px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 16px; }
.price-card__estimate { display: flex; flex-direction: column; justify-content: center; min-height: 90px; margin-top: 16px; color: var(--ink-soft); font-size: 15px; line-height: 1.9; }
.price-card__estimate strong { color: var(--rose); font-family: var(--display); font-size: 17px; font-weight: 500; }
.price-card__estimate strong:first-of-type { font-size: 30px; }
.price-card--wide { grid-column: 1 / -1; text-align: left; }
.price-card--wide > div:first-child { min-height: 0; flex-direction: row; justify-content: flex-start; }
.price-card--wide h3 { min-height: 0; text-align: left; }
.price-card--wide .price-card__estimate { align-items: flex-start; }
.price-card--wide .price-note { max-width: none; margin: 18px 0 0; }
.price-card--recruiting { border-color: rgba(139,77,103,.28); }
.price-plan-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 18px 0 0; }
.price-plan-list > div { display: flex; flex-direction: column; gap: 5px; min-width: 0; padding: 14px 16px; border-left: 2px solid rgba(201,166,106,.6); background: rgba(255,255,255,.56); }
.price-plan-list span { color: var(--gold); font-family: var(--display); font-size: 22px; line-height: 1; }
.price-plan-list p { margin: 0; color: var(--ink); font-family: var(--sans); font-size: 14px; line-height: 1.7; }
.price-plan-list strong { color: var(--rose); font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 1.1; }
.price-card__caption { margin: 14px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 12px; line-height: 1.7; }
.price-note { display: flex; align-items: flex-start; gap: 20px; max-width: 1150px; margin: 14px auto 0; padding: 22px 28px 24px; border: 1px solid rgba(201,166,106,.46); border-radius: var(--r-md); background: rgba(255,255,255,.72); }
.price-note__mark { display: grid; flex: 0 0 46px; place-items: center; width: 46px; height: 46px; margin-top: 2px; color: #fff; background: #c994ad; border-radius: 50%; font-family: var(--display); font-size: 27px; }
.price-note__content { min-width: 0; flex: 1; }
.price-note__title { margin: 0 0 14px; color: var(--rose); font-size: 18px; font-weight: 600; letter-spacing: .06em; }
.price-note__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 16px; margin: 0; padding: 0; list-style: none; }
.price-note__list li { display: flex; flex-direction: column; gap: 5px; min-width: 0; padding: 12px 14px; border-left: 2px solid rgba(201,166,106,.6); background: rgba(255,255,255,.56); }
.price-note__list li span { color: var(--ink-soft); font-family: var(--sans); font-size: 15px; line-height: 1.5; }
.price-note__list li strong { color: var(--rose); font-family: var(--display); font-size: 22px; font-weight: 500; font-variant-numeric: lining-nums tabular-nums; line-height: 1.35; white-space: nowrap; }
.price-note__caption { margin: 14px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 13px; line-height: 1.6; }
.contact-phone { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin: 22px 0 0; }
.contact-phone span { color: var(--ink-soft); font-family: var(--sans); font-size: 13px; }
.contact-phone a { color: var(--rose-deep); font-family: var(--sans); font-size: clamp(23px, 2.8vw, 31px); font-weight: 700; letter-spacing: .02em; font-variant-numeric: lining-nums tabular-nums; }

.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1120px; margin: 0 auto; }
.flow { background: #fffaff; }
.flow-card { position: relative; min-height: 310px; padding: 18px 18px 26px; border: 1px solid rgba(201,166,106,.25); border-radius: var(--r-sm); background: rgba(255,255,255,.86); text-align: center; }
.flow-card:not(:last-child)::after { position: absolute; top: 148px; right: -18px; width: 26px; height: 26px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); content: ""; transform: rotate(45deg); }
.flow-card:nth-child(3)::after, .flow-card:nth-child(6)::after { display: none; }
.step-number { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 7px; color: var(--rose); background: var(--rose-light); border-radius: 50%; font-family: var(--display); font-size: 25px; }
.flow-card img { width: 132px; height: 132px; margin: 0 auto 7px; object-fit: cover; border-radius: 50%; }
.flow-card h3 { margin: 0; color: var(--rose); font-size: 20px; font-weight: 500; }
.flow-card p { margin: 10px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; line-height: 1.8; }

.timing-grid { display: flex; width: max-content; max-width: none; margin: 0 -6vw; overflow: visible; animation: timing-marquee 58s linear infinite; }
.timing-grid:hover { animation-play-state: paused; }
.timing-track { display: flex; gap: 22px; padding-right: 22px; }
.timing { overflow: hidden; }
.timing { background: linear-gradient(145deg, #f9edff 0%, #e5b9ee 49%, #d9a4e7 100%); }
.timing-card { display: flex; align-items: center; gap: 18px; flex: 0 0 min(360px, 29vw); min-height: 190px; padding: 22px; border: 1px solid rgba(201,166,106,.28); border-radius: var(--r-md); background: rgba(255,255,255,.86); }
.timing-card img { width: 92px; height: 92px; flex: 0 0 92px; object-fit: cover; border-radius: 50%; }
.timing-card strong, .timing-card small { display: block; }
.timing-card strong { color: var(--rose); font-size: 19px; line-height: 1.5; }
.timing-card small { margin-top: 7px; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; line-height: 1.75; }
.pill-heading { display: inline-block !important; padding: 10px 54px; color: #fff !important; background: var(--rose); border-radius: 999px; font-size: 24px !important; letter-spacing: .1em !important; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1180px; margin: 0 auto; padding: 26px 30px; border: 1px solid rgba(201,166,106,.44); border-radius: var(--r-md); background: rgba(255,255,255,.64); }
.reason-card { display: flex; align-items: center; gap: 18px; padding: 16px 24px; border-right: 1px dashed rgba(201,166,106,.6); }
.reason-card:last-child { border-right: 0; }
.reason-card img { width: 98px; height: 98px; flex: 0 0 98px; object-fit: cover; border-radius: 50%; }
.reason-card h3 { margin: 0 0 7px; color: var(--rose); font-size: 20px; font-weight: 500; line-height: 1.5; }
.reason-card p { margin: 0; color: var(--ink-soft); font-family: var(--sans); font-size: 16px; line-height: 1.8; }

@keyframes timing-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes concern-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .concern-grid, .timing-grid { animation-play-state: paused; }
}

.faq-contact { background: #fffaff; }
.faq { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.45fr); align-items: start; gap: clamp(40px, 7vw, 100px); max-width: 1200px; margin: 0 auto 88px; }
.faq__intro { padding: 42px 0 0; }
.faq__intro h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.45; }
.faq__intro p:not(.eyebrow) { color: var(--ink-soft); font-size: 14px; line-height: 2; }
.faq__intro .heading-rule { margin-left: 0; margin-right: 0; }
.faq__list { display: grid; gap: 8px; }
.faq details { border: 1px solid rgba(201,166,106,.38); border-radius: var(--r-md); background: #fffaff; }
.faq summary { display: flex; align-items: center; gap: 16px; padding: 14px 18px; cursor: pointer; list-style: none; font-size: 15px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--gold); font-family: var(--display); font-size: 25px; }
.faq summary b { display: grid; flex: 0 0 26px; place-items: center; width: 26px; height: 26px; margin-left: auto; padding: 0; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-family: var(--sans); font-size: 19px; font-weight: 400; line-height: 1; text-align: center; }
.faq details[open] summary b { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 54px 18px; color: var(--ink-soft); font-family: var(--sans); font-size: 13px; line-height: 1.8; }
.contact-panel { scroll-margin-top: 112px; display: grid; grid-template-columns: .87fr .72fr 1.25fr; gap: 18px; max-width: 1300px; margin: 0 auto; padding: clamp(28px, 4vw, 54px); border: 1px solid rgba(201,166,106,.42); border-radius: 54px 54px 0 0; background: linear-gradient(110deg, #e6c5ef 0%, #fbf1ff 46%, #e0b9ea 100%); }
.contact-panel__copy { padding: 16px 0 0; }
.contact-panel__copy h2 { margin: 0; font-size: 39px; font-weight: 500; }
.contact-panel__copy h3 { margin: 0 0 18px; color: var(--rose); font-size: 22px; font-weight: 500; }
.contact-panel__copy p:not(.eyebrow) { color: var(--ink-soft); font-size: 15px; line-height: 1.9; }
.contact-panel__copy .heading-rule { margin-left: 0; margin-right: 0; }
.contact-line { display: flex; align-items: center; gap: 13px; width: fit-content; min-width: 260px; margin-top: 12px; padding: 10px 16px; border: 1px solid rgba(201,166,106,.48); border-radius: 999px; background: rgba(255,255,255,.75); }
.contact-icon { display: grid; place-items: center; width: 34px; height: 34px; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-family: var(--sans); font-size: 19px; }
.contact-icon--phone { position: relative; }
.contact-icon--phone::before { width: 12px; height: 17px; border: 1px solid currentColor; border-radius: 7px 7px 8px 8px; content: ""; transform: rotate(-34deg); }
.contact-icon--phone::after { position: absolute; width: 3px; height: 3px; margin-top: 10px; border-radius: 50%; background: currentColor; content: ""; }
.contact-icon--mail { position: relative; }
.contact-icon--mail i { width: 15px; height: 11px; border: 1px solid currentColor; }
.contact-icon--mail i::after, .contact-icon--mail i::before { position: absolute; top: 12px; width: 9px; height: 1px; background: currentColor; content: ""; }
.contact-icon--mail i::before { left: 10px; transform: rotate(32deg); transform-origin: left; }
.contact-icon--mail i::after { right: 9px; transform: rotate(-32deg); transform-origin: right; }
.contact-line strong, .contact-line small { display: block; }
.contact-line strong { color: var(--ink); font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: .05em; }
.contact-line small { color: var(--ink-soft); font-family: var(--sans); font-size: 10px; }
.contact-panel__photo { min-height: 340px; overflow: hidden; border-radius: 44% 0 0 0; }
.contact-panel__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: center; padding: 8px; }
.contact-form label { color: var(--ink); font-size: 12px; }
.contact-form label em { margin-left: 7px; padding: 2px 5px; color: #fff; background: var(--rose); border-radius: 3px; font-family: var(--sans); font-size: 9px; font-style: normal; }
.contact-form input, .contact-form textarea { display: block; width: 100%; margin-top: 6px; padding: 12px 14px; color: var(--ink); border: 1px solid rgba(167,143,148,.34); border-radius: 7px; background: rgba(255,255,255,.85); outline: none; font-family: var(--sans); font-size: 12px; transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease); }
.contact-form textarea { resize: vertical; min-height: 92px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(139,77,103,.12); }
.contact-form__wide { grid-column: 1 / -1; }
.contact-form__submit { grid-column: 1 / -1; width: min(100%, 340px); justify-self: center; border: 0; }
.form-note, .form-status { grid-column: 1 / -1; margin: 0; color: var(--ink-soft); font-family: var(--sans); font-size: 10px; line-height: 1.6; text-align: center; }
.form-status { min-height: 18px; color: var(--rose); }

.site-footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 36px clamp(22px, 6vw, 96px) 28px; border-top: 1px solid rgba(201,166,106,.3); background: linear-gradient(120deg, #fbf4ff 0%, #ead5f2 100%); }
.brand--footer .brand__logo { width: 160px; }
.site-footer__meta { display: grid; justify-items: end; gap: 12px; }
.site-footer__operator { display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; color: var(--rose); border: 0; border-bottom: 1px solid rgba(139,77,103,.34); background: transparent; font-family: var(--sans); font-size: 14px; cursor: pointer; }
.site-footer__operator span { color: var(--gold); font-family: var(--display); font-size: 21px; line-height: 1; }
.site-footer__operator:hover, .site-footer__operator:focus-visible { color: var(--rose-deep); outline: none; }
.site-footer__meta > small { justify-self: end; color: var(--ink-soft); font-family: var(--sans); font-size: 10px; }
.modal-open { overflow: hidden; }
.career-modal[hidden] { display: none; }
.career-modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 24px; }
.career-modal__backdrop { position: absolute; inset: 0; background: rgba(54,34,43,.5); backdrop-filter: blur(8px); }
.career-modal__dialog { position: relative; z-index: 1; width: min(100%, 720px); max-height: min(760px, calc(100vh - 48px)); overflow: auto; padding: clamp(30px, 5vw, 54px); border: 1px solid rgba(201,166,106,.5); border-radius: 28px 28px 28px 0; background: linear-gradient(145deg, #fffaff 0%, #fff 52%, #f0e3f6 100%); box-shadow: 0 28px 80px rgba(74,48,88,.24); }
.career-modal__close { position: absolute; top: 16px; right: 18px; display: grid; place-items: center; width: 36px; height: 36px; color: var(--rose-deep); border: 1px solid rgba(139,77,103,.28); border-radius: 50%; background: rgba(255,255,255,.74); font-family: var(--sans); font-size: 24px; line-height: 1; cursor: pointer; transition: background 160ms var(--ease), transform 160ms var(--ease); }
.career-modal__close:hover, .career-modal__close:focus-visible { background: #f3e8f8; outline: none; transform: rotate(8deg); }
.career-modal__dialog h2 { margin: 0; color: var(--ink); font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.45; letter-spacing: .05em; white-space: nowrap; }
.career-modal__dialog .heading-rule { margin: 18px 0 24px; }
.career-modal__dialog > p { color: var(--ink-soft); font-size: 15px; line-height: 2; }
.career-modal__dialog > .career-modal__lead { color: var(--ink); font-size: 17px; line-height: 2; }
.career-modal__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.career-modal__points > div { padding: 18px 16px; border-top: 2px solid var(--gold-light); background: rgba(255,255,255,.64); }
.career-modal__points span { display: block; color: var(--gold); font-family: var(--display); font-size: 24px; line-height: 1; }
.career-modal__points strong { display: block; margin-top: 10px; color: var(--rose); font-size: 16px; font-weight: 500; line-height: 1.6; }
.career-modal__points p { margin: 8px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 12px; line-height: 1.75; }
.career-modal__note { padding: 16px 18px; border-left: 2px solid var(--gold-light); background: rgba(255,255,255,.55); }
.career-modal__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: 26px; }
.career-modal__actions .button { width: fit-content; }
.career-modal__source { color: var(--rose); border-bottom: 1px solid rgba(139,77,103,.38); font-family: var(--sans); font-size: 11px; line-height: 1.8; }
.company-modal[hidden] { display: none; }
.company-modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 24px; }
.company-modal__backdrop { position: absolute; inset: 0; background: rgba(54,34,43,.5); backdrop-filter: blur(8px); }
.company-modal__dialog { position: relative; z-index: 1; width: min(100%, 720px); max-height: min(760px, calc(100vh - 48px)); overflow: auto; padding: clamp(30px, 5vw, 54px); border: 1px solid rgba(201,166,106,.5); border-radius: 28px 28px 28px 0; background: linear-gradient(145deg, #fffaff 0%, #fff 52%, #f0e3f6 100%); box-shadow: 0 28px 80px rgba(74,48,88,.24); }
.company-modal__close { position: absolute; top: 16px; right: 18px; display: grid; place-items: center; width: 36px; height: 36px; color: var(--rose-deep); border: 1px solid rgba(139,77,103,.28); border-radius: 50%; background: rgba(255,255,255,.74); font-family: var(--sans); font-size: 24px; line-height: 1; cursor: pointer; transition: background 160ms var(--ease), transform 160ms var(--ease); }
.company-modal__close:hover, .company-modal__close:focus-visible { background: #f3e8f8; outline: none; transform: rotate(8deg); }
.company-modal__dialog h2 { margin: 0; color: var(--ink); font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.45; letter-spacing: .05em; }
.company-modal__dialog .heading-rule { margin: 18px 0 24px; }
.company-profile { display: grid; margin: 0; border-top: 1px solid rgba(201,166,106,.42); }
.company-profile > div { display: grid; grid-template-columns: 8em 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid rgba(201,166,106,.24); }
.company-profile dt { color: var(--rose); font-family: var(--sans); font-size: 14px; font-weight: 600; line-height: 1.8; }
.company-profile dd { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.8; }
.company-profile dd a { color: var(--rose); text-decoration: underline; text-decoration-color: rgba(139,77,103,.35); text-underline-offset: 4px; }
.company-profile__business dd ul { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.company-profile__business dd li { position: relative; padding-left: 18px; }
.company-profile__business dd li::before { position: absolute; top: .75em; left: 1px; width: 6px; height: 6px; border: 1px solid var(--gold); content: ""; transform: rotate(45deg); }
.reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
.reveal--delay { transition-delay: 0s; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 190px 1fr auto; gap: 18px; }
  .site-nav { gap: 22px; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-card:nth-child(3)::after, .flow-card:nth-child(6)::after { display: none; }
  .timing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { grid-template-columns: .9fr .7fr 1.25fr; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; flex-direction: column; align-items: center; gap: 20px; padding: 26px; background: rgba(252,248,255,.98); border-bottom: 1px solid rgba(126,98,145,.2); }
  .site-nav.is-open { display: flex; }
  .site-nav__contact { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: min(100%, 280px); min-height: 48px; margin-top: 4px; padding: 12px 20px; color: #fff; background: var(--rose); border-radius: 999px; font-size: 14px; box-shadow: 0 8px 20px rgba(93,56,106,.18); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 6px; align-items: center; justify-content: center; width: 42px; height: 42px; }
  .nav-toggle span { display: block; width: 24px; border-top: 1px solid var(--rose); transition: transform 150ms var(--ease); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero__ornament { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 0; }
  .hero__copy { padding: 30px 34px 20px; }
  .hero__actions { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: min(100%, 560px); margin: 22px auto 0; }
  .hero__visual { min-height: 0; align-self: center; margin-top: 0; border-radius: 0; }
  .service-glance { grid-template-columns: repeat(2, 1fr); }
  .solution-feature { grid-template-columns: 1fr; }
  .solution-feature__visual { min-height: 500px; max-height: 620px; border-radius: 0 0 0 28%; }
  .mini-services { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-card { border-right: 0; border-bottom: 1px dashed rgba(201,166,106,.6); }
  .reason-card:last-child { border-bottom: 0; }
  .faq { grid-template-columns: 1fr; }
  .faq__intro { padding-top: 0; text-align: center; }
  .faq__intro .heading-rule { margin-left: auto; margin-right: auto; }
  .contact-panel { grid-template-columns: 1fr 1fr; }
  .contact-panel__copy { grid-column: 1 / -1; }
  .contact-panel__photo { grid-column: 1; min-height: 430px; }
  .contact-form { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer__meta { justify-items: center; }
  .site-footer__meta > small { justify-self: center; }
}

@media (max-width: 620px) {
  section[id] { scroll-margin-top: 82px; }
  .mobile-only-break { display: block; }
  .site-header { min-height: 68px; padding: 10px 18px; }
  .brand__logo { width: 150px; }
  .site-header .brand { align-items: flex-start; }
  h1 { letter-spacing: .01em; }
  .section-shell { --section-pad: 18px; padding: 72px var(--section-pad); }
  .hero { padding-top: 0; padding-bottom: 34px; }
  h1 { font-size: clamp(32px, 8.5vw, 38px); line-height: 1.45; }
  .hero__lead { font-size: 16px; line-height: 1.9; }
  .hero__actions { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: min(100%, 420px); margin: 18px auto 0; flex-direction: column; align-items: stretch; gap: 10px; }
  .button { width: 100%; }
  .hero__actions .button { min-height: 60px; padding: 14px 24px; font-size: 16px; }
  .hero__visual { min-height: 0; aspect-ratio: 1024 / 1536; background-image: url("assets/sp-hero2.webp"); }
  .hero__visual-caption { left: 39%; bottom: 10%; width: 21%; gap: 2px; font-size: 8px; }
  .hero__visual-side-label { top: 51%; right: 3%; font-size: 8px; }
  .service-glance, .mini-services, .pricing-grid, .timing-grid { grid-template-columns: 1fr; }
  .glance-card { min-height: 122px; padding: 18px; }
  .glance-card img { width: 70px; height: 70px; }
  .glance-card strong { font-size: 17px; }
  .about { padding-bottom: 0; }
  .about__solution, .solution-reasons { scroll-margin-top: 82px; }
   .about__solution { padding-bottom: 0; }
  .services { padding-top: 46px; }
  .service-detail-grid, .flow-grid { display: flex; gap: 14px; max-width: none; margin-right: calc(-1 * var(--section-pad)); margin-left: calc(-1 * var(--section-pad)); padding: 4px var(--section-pad) 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: rgba(139,77,103,.4) rgba(201,166,106,.12); }
  .service-detail-grid::-webkit-scrollbar, .flow-grid::-webkit-scrollbar { height: 7px; }
  .service-detail-grid::-webkit-scrollbar-track, .flow-grid::-webkit-scrollbar-track { background: rgba(201,166,106,.12); border-radius: 999px; }
  .service-detail-grid::-webkit-scrollbar-thumb, .flow-grid::-webkit-scrollbar-thumb { background: rgba(139,77,103,.4); border-radius: 999px; }
  .service-detail { flex: 0 0 calc(100vw - 54px); scroll-snap-align: start; }
  .flow-card { flex: 0 0 calc(100vw - 54px); scroll-snap-align: start; }
  .horizontal-scroll-hint { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 0 12px; color: var(--rose); font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .04em; }
  .horizontal-scroll-hint span { color: var(--gold); font-size: 22px; line-height: 1; }
  .about__top { grid-template-columns: 1fr; margin-bottom: 65px; }
  .about__visual, .about__visual img { min-height: 300px; }
  .about__copy h2, .section-heading h2 { font-size: 32px; }
  .career-guide { align-items: flex-start; flex-direction: column; gap: 14px; padding: 16px 18px; }
  .career-guide__trigger { align-self: flex-start; gap: 8px; font-size: 12px; white-space: nowrap; }
  .mini-services > a { padding: 0; }
  .mini-services img { height: auto; aspect-ratio: 16 / 9; }
  .mini-services > a > span { min-height: 0; padding: 18px 20px 22px; }
  .mini-services strong { font-size: 19px; }
  .mini-services small { font-size: 15px; }
  .service-detail__photo { height: 210px; }
  .service-detail__head { flex-direction: column; align-items: center; gap: 10px; min-height: 0; padding: 22px 20px 12px; text-align: center; }
  .service-detail__head img { width: 78px; height: 78px; }
  .service-detail h3 { font-size: 18px; letter-spacing: -.08em; white-space: nowrap; }
  .concern-grid { width: auto; margin-right: -18px; margin-left: -18px; padding: 4px 18px 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: rgba(139,77,103,.4) rgba(201,166,106,.12); animation: none; }
  .concern-grid::-webkit-scrollbar { height: 7px; }
  .concern-grid::-webkit-scrollbar-track { background: rgba(201,166,106,.12); border-radius: 999px; }
  .concern-grid::-webkit-scrollbar-thumb { background: rgba(139,77,103,.4); border-radius: 999px; }
  .concern-track { flex: 0 0 auto; gap: 14px; padding-right: 14px; animation: none; }
  .concern-track[aria-hidden="true"] { display: none; }
  .concern-card { scroll-snap-align: start; }
  .flow-card { min-height: 300px; }
  .flow-card:not(:last-child)::after { display: none; }
  .price-note { gap: 12px; padding: 18px 16px 20px; }
  .price-note__mark { flex-basis: 34px; width: 34px; height: 34px; margin-top: 1px; font-size: 20px; }
  .price-note__title { margin-bottom: 12px; font-size: 16px; }
  .price-note__list { grid-template-columns: 1fr; gap: 7px; }
  .price-note__list li { gap: 4px; padding: 10px 12px; }
  .price-note__list li span { font-size: 15px; }
  .price-note__list li strong { font-size: 20px; white-space: normal; }
  .price-note__caption { margin-top: 12px; font-size: 12px; }
  .price-card--wide > div:first-child { flex-direction: column; align-items: center; }
  .price-card--wide h3 { text-align: center; }
  .price-plan-list { grid-template-columns: 1fr; gap: 8px; }
  .price-plan-list > div { padding: 12px 14px; }
   .price-plan-list strong { font-size: 24px; }
  .pill-heading { padding: 10px 24px; font-size: 18px !important; }
  .reason-grid { padding: 12px; }
  .reason-card { padding: 16px 8px; }
  .faq summary { min-height: 62px; padding: 13px 14px; font-size: 13px; }
  .faq summary b { flex: 0 0 28px; width: 28px; height: 28px; padding: 0; font-size: 20px; line-height: 1; text-align: center; }
  .faq details p { padding: 0 42px 15px; }
  .contact-panel { scroll-margin-top: 82px; grid-template-columns: 1fr; padding: 26px 18px; border-radius: 30px 30px 0 0; }
  .contact-panel__photo { grid-column: 1; min-height: 300px; }
  .contact-form { grid-column: 1; padding: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form__wide, .contact-form__submit, .form-note, .form-status { grid-column: 1; }
  .career-modal, .company-modal { align-items: end; padding: 12px; }
  .career-modal__dialog, .company-modal__dialog { max-height: calc(100vh - 24px); padding: 32px 22px 24px; border-radius: 24px 24px 24px 0; }
  .career-modal__dialog h2, .company-modal__dialog h2 { font-size: clamp(20px, 6vw, 34px); letter-spacing: .02em; white-space: nowrap; }
  .career-modal__points { grid-template-columns: 1fr; gap: 10px; margin: 22px 0; }
  .career-modal__points > div { padding: 14px; }
  .career-modal__actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .career-modal__actions .button { width: 100%; }
  .timing-grid { width: auto; margin-right: -18px; margin-left: -18px; padding: 4px 0 18px 18px; gap: 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: rgba(139,77,103,.4) rgba(201,166,106,.12); animation: none; }
  .timing-grid::-webkit-scrollbar { height: 7px; }
  .timing-grid::-webkit-scrollbar-track { background: rgba(201,166,106,.12); border-radius: 999px; }
  .timing-grid::-webkit-scrollbar-thumb { background: rgba(139,77,103,.4); border-radius: 999px; }
  .timing-track { flex: 0 0 auto; gap: 14px; padding-right: 0; }
  .timing-track[aria-hidden="true"] { display: none; }
  .timing-card { flex-basis: calc(100vw - 72px); min-height: 178px; padding: 20px; }
  .timing-card { scroll-snap-align: start; }
  .timing-card img { width: 84px; height: 84px; flex-basis: 84px; }
  .timing-card strong { font-size: 18px; }
  .timing-card small { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .timing-grid { animation: none; }
}


/* =========================================================
   v3 追記：サービス／料金プランのセクションのみ差し替え
   （既存のパレット・書体に合わせて移植）
   ========================================================= */

/* --- サービス：2×2の大判カード --- */
.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 34px);
  max-width: 1150px; margin: 0 auto;
}
.service {
  display: grid; grid-template-rows: auto 1fr; overflow: hidden;
  background: rgba(255, 255, 255, .86); border: 1px solid rgba(201, 166, 106, .38); border-radius: var(--r-md);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service__photo { margin: 0; aspect-ratio: 16 / 9; overflow: hidden; }
.service__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.service:hover .service__photo img { transform: scale(1.04); }
#service-career .service__photo img { object-position: 78% 40%; }
.service__body { position: relative; padding: clamp(24px, 2.6vw, 36px); }
.service__body > .service__no {
  position: absolute; right: clamp(22px, 2.6vw, 34px); top: -28px;
  display: grid; place-items: center; width: 56px; height: 56px; margin: 0;
  color: #fff; background: var(--rose); border-radius: 50%;
  font-family: var(--display); font-size: 21px; font-style: italic;
}
.service h3 { margin: 0 0 12px; color: var(--rose); font-size: clamp(20px, 1.8vw, 24px); font-weight: 600; letter-spacing: .04em; }
.service__body > p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.95; }
.check-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  background: var(--blush); border-radius: 999px;
  color: var(--rose); font-family: var(--sans); font-size: 13px; line-height: 1.5;
}
.check-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.service__note {
  margin: 20px 0 0 !important; padding: 16px 18px;
  background: var(--blush); border-left: 2px solid var(--gold);
  color: var(--rose) !important; font-size: 15px !important; line-height: 1.85;
}

/* --- 料金：価格は本文書体（サンセリフ）に統一、横スクロールなし --- */
.plan-block { max-width: 1030px; margin: 0 auto; }
.plan-block + .plan-block { margin-top: clamp(30px, 3.4vw, 46px); }
.plan-block__title {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 18px;
  color: var(--rose-deep); font-size: clamp(19px, 1.8vw, 23px); font-weight: 600; letter-spacing: .08em; text-align: center;
}
.plan-block__title::before, .plan-block__title::after { content: ""; width: clamp(26px, 5vw, 64px); border-top: 1px solid var(--gold); }
.plan-block__title small {
  padding: 3px 12px; border: 1px solid rgba(201, 166, 106, .7); border-radius: 999px;
  color: var(--gold); font-family: var(--sans); font-size: 12px; letter-spacing: .1em;
}

.price-row {
  display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden;
  background: rgba(255, 255, 255, .88); border: 1px solid rgba(201, 166, 106, .48); border-radius: var(--r-md);
}
.price { padding: 30px clamp(14px, 2vw, 26px) 28px; text-align: center; }
.price + .price { border-left: 1px solid rgba(201, 166, 106, .34); }
.price h4 { margin: 0; color: var(--rose); font-size: 18px; font-weight: 600; letter-spacing: .04em; }
.price__sub { margin: 4px 0 0; min-height: 1.7em; color: var(--ink-soft); font-family: var(--sans); font-size: 13px; }
.price__amount {
  display: flex; align-items: baseline; justify-content: center; gap: 4px; margin: 12px 0;
  color: var(--rose-deep); font-family: var(--sans); font-variant-numeric: lining-nums tabular-nums;
}
.price__amount span { font-size: clamp(30px, 3.2vw, 40px); font-weight: 700; line-height: 1; letter-spacing: -.01em; }
.price__amount small { font-size: 15px; font-weight: 500; }
.price__meta {
  display: inline-block; margin: 0; padding: 5px 16px; background: var(--blush-strong); border-radius: 999px;
  color: var(--rose-deep); font-family: var(--sans); font-size: 13px;
}

.window-plan {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: center;
  padding: clamp(22px, 2.6vw, 34px); background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(201, 166, 106, .48); border-radius: var(--r-md);
}
.window-plan__estimate { margin: 0; color: var(--ink-soft); font-size: 15px; }
.window-plan__estimate strong {
  display: block; margin-top: 4px; color: var(--rose-deep); font-family: var(--sans);
  font-size: clamp(26px, 2.6vw, 32px); font-weight: 700; letter-spacing: .04em;
}
.window-plan__note { margin: 14px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; line-height: 1.85; }
.window-plan__table { width: 100%; border-collapse: collapse; font-family: var(--sans); }
.window-plan__table th, .window-plan__table td { padding: 11px 14px; text-align: center; font-size: 15px; }
.window-plan__table thead th {
  background: var(--blush); color: var(--rose-deep); font-size: 13px; font-weight: 600; letter-spacing: .06em;
}
.window-plan__table tbody th { color: var(--ink-soft); font-weight: 400; }
.window-plan__table tbody td { color: var(--ink); font-weight: 600; font-variant-numeric: lining-nums tabular-nums; }
.window-plan__table tbody tr + tr th, .window-plan__table tbody tr + tr td { border-top: 1px solid rgba(201, 166, 106, .34); }

.plan-caption { max-width: 1030px; margin: 12px auto 0; color: var(--ink-soft); font-family: var(--sans); font-size: 12.5px; line-height: 1.8; text-align: center; }

/* 採用代行はオプション扱い：面積と彩度を落として控えめに */
.plan-block--sub {
  margin-top: clamp(34px, 4vw, 54px); padding: clamp(24px, 2.8vw, 36px) clamp(18px, 2.4vw, 32px);
  background: rgba(255, 255, 255, .5); border: 1px dashed rgba(121, 80, 128, .3); border-radius: var(--r-md);
}
.plan-block__title--sub { color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 20px); }
.plan-block__title--sub::before, .plan-block__title--sub::after { border-color: rgba(201, 166, 106, .6); }
.plan-block__lead { margin: 0 0 22px; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; text-align: center; }
.recruit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: stretch; }
.recruit {
  position: relative; display: grid; grid-template-rows: auto auto 1fr auto; gap: 8px;
  padding: 22px 18px 20px; background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(201, 166, 106, .4); border-radius: var(--r-md); text-align: center;
}
.recruit__no {
  justify-self: center; display: grid; place-items: center; width: 28px; height: 28px; margin: 0;
  background: rgba(121, 80, 128, .16); border-radius: 50%;
  color: var(--rose-deep); font-family: var(--sans); font-size: 14px; font-weight: 700;
}
.recruit h4 { margin: 0; color: var(--rose); font-size: 17px; font-weight: 600; letter-spacing: .03em; }
.recruit__body { margin: 0; color: var(--ink-soft); font-family: var(--sans); font-size: 13.5px; line-height: 1.75; }
.recruit__amount {
  margin: 6px 0 0; padding-top: 12px; border-top: 1px solid rgba(201, 166, 106, .45);
  color: var(--ink); font-family: var(--sans); font-variant-numeric: lining-nums tabular-nums;
}
.recruit__amount span { font-size: 25px; font-weight: 700; letter-spacing: -.01em; }
.recruit__amount small { font-size: 14px; font-weight: 500; }
.recruit--pickup { background: #fff; border: 2px solid var(--rose); box-shadow: 0 12px 28px rgba(100, 65, 121, .14); }
.recruit--pickup .recruit__no { background: var(--rose); color: #fff; }
.recruit--pickup .recruit__amount { color: var(--rose-deep); }
.recruit__badge {
  position: absolute; left: 50%; top: -13px; transform: translateX(-50%); margin: 0;
  padding: 4px 18px; background: var(--rose); border-radius: 999px;
  color: #fff; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; white-space: nowrap;
}

/* 助成金は軽く添える */
.subsidy {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px;
  max-width: 1030px; margin: clamp(22px, 2.6vw, 32px) auto 0; padding: 16px 22px;
  background: rgba(255, 255, 255, .42); border-left: 2px solid var(--gold); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.subsidy__label { margin: 0; color: var(--gold); font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; white-space: nowrap; }
.subsidy p:last-child { margin: 0; color: var(--ink-soft); font-family: var(--sans); font-size: 13.5px; line-height: 1.8; }

.tax-note { max-width: 1030px; margin: 18px auto 0; color: var(--ink-soft); font-family: var(--sans); font-size: 13px; text-align: right; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* --- 活用タイミング：個人支援／グループ支援で色分け（横スクロールなし） --- */
.timing-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 36px); max-width: 1150px; margin: 0 auto; }
.timing-group { padding: clamp(24px, 2.6vw, 34px) clamp(20px, 2.4vw, 30px) clamp(16px, 2vw, 24px); border-radius: var(--r-md); }
.timing-group--personal { background: linear-gradient(180deg, #fbf5fe 0%, rgba(255,255,255,.72) 100%); border: 1px solid rgba(121, 80, 128, .26); }
.timing-group--group { background: linear-gradient(180deg, #fdf6ea 0%, rgba(255,255,255,.72) 100%); border: 1px solid rgba(201, 166, 106, .48); }
.timing-group__head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid rgba(201, 166, 106, .3); }
.timing-group__label {
  margin: 0; padding: 5px 16px; border-radius: 999px;
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: #fff;
}
.timing-group--personal .timing-group__label { background: var(--rose); }
.timing-group--group .timing-group__label { background: #a4813c; }
.timing-group__head h3 { margin: 0; font-size: clamp(17px, 1.6vw, 20px); font-weight: 600; letter-spacing: .06em; }
.timing-group--personal .timing-group__head h3 { color: var(--rose-deep); }
.timing-group--group .timing-group__head h3 { color: #7c601f; }
.timing-group__desc { width: 100%; margin: 0; color: var(--ink-soft); font-family: var(--sans); font-size: 13.5px; line-height: 1.8; }
.timing-list { margin: 0; padding: 0; list-style: none; }
.timing-list li { display: grid; grid-template-columns: 62px 1fr; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(201, 166, 106, .26); }
.timing-list li:last-child { border-bottom: 0; }
.timing-list img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; }
.timing-list strong { display: block; font-size: 17px; line-height: 1.5; }
.timing-group--personal .timing-list strong { color: var(--rose); }
.timing-group--group .timing-list strong { color: #8a6a2a; }
.timing-list p { margin: 5px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 13.5px; line-height: 1.75; }

/* --- LINE ボタン --- */
.button--line { flex: 0 0 auto; color: #fff; background: #06c755; border-color: #06c755; white-space: nowrap; }
.button--line:hover { background: #05b34c; }
.button--line .line-mark { width: 22px; height: 22px; flex: 0 0 22px; }
.line-cta { display: block; margin: 24px 0 0; }
.line-cta .button--line { width: fit-content; }
.line-cta__note { margin: 10px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 12.5px; }

@media (max-width: 900px) {
  .timing-groups { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
  .service__body > .service__no { width: 50px; height: 50px; font-size: 19px; top: -25px; }
  .price-row { grid-template-columns: 1fr; }
  .price { padding: 24px 20px; }
  .price + .price { border-left: 0; border-top: 1px solid rgba(201, 166, 106, .38); }
  .price__sub { min-height: 0; }
  .window-plan { grid-template-columns: 1fr; gap: 20px; }
  .recruit-row { grid-template-columns: 1fr; }
  .recruit { grid-template-rows: none; }
  .subsidy { display: block; }
  .tax-note { text-align: center; }
  .timing-list li { grid-template-columns: 52px 1fr; gap: 14px; }
  .timing-list img { width: 52px; height: 52px; }
}

/* --- ご利用の流れ：スマホは縦積み（横スクロール廃止） --- */
@media (max-width: 620px) {
  .flow-grid {
    display: grid; grid-template-columns: 1fr; gap: 0; max-width: none;
    margin: 0; padding: 0; overflow: visible; scroll-snap-type: none;
  }
  .flow-card {
    flex: none; display: grid; grid-template-columns: 76px 1fr; column-gap: 18px; align-items: center;
    min-height: 0; padding: 18px 4px; border: 0; border-bottom: 1px solid rgba(201, 166, 106, .3);
    border-radius: 0; background: none; text-align: left;
  }
  .flow-card:last-child { border-bottom: 0; }
  .flow-card img { grid-column: 1; grid-row: 1 / span 3; width: 76px; height: 76px; margin: 0; }
  .flow-card .step-number {
    grid-column: 2; grid-row: 1; justify-self: start; width: auto; height: auto; margin: 0;
    padding: 2px 12px; border-radius: 999px; font-size: 14px; line-height: 1.6;
  }
  .flow-card h3 { grid-column: 2; grid-row: 2; margin: 4px 0 0; font-size: 18px; }
  .flow-card p { grid-column: 2; grid-row: 3; margin: 4px 0 0; font-size: 13.5px; }
  .flow-card::after { display: none !important; }
}

/* --- ヒーロー：画像を90%幅に収め、ボタンは画像の下に角型で並べる --- */
.hero__visual {
  width: 90%; max-width: 1360px; margin-inline: auto;
  border-radius: 2px; box-shadow: 0 22px 50px -34px rgba(100, 65, 121, .45);
}

.hero__actions {
  position: static; z-index: auto; inset: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  width: 90%; max-width: 1360px; margin: clamp(26px, 3vw, 40px) auto 0;
}
.hero__actions .button { min-height: 68px; padding: 18px 30px; gap: 0;
  border-radius: 2px; font-family: var(--sans); font-size: 16px; letter-spacing: .1em;
  box-shadow: none; transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.hero__actions .button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(100, 65, 121, .45); }
.hero__actions .button:active { transform: translateY(0) scale(.99); }

/* 主CTA：濃いプラムの矩形に金の細罫 */
.hero__actions .button--primary {
  position: relative; justify-content: space-between;
  background: var(--rose-deep); border: 1px solid var(--rose-deep); color: #fff;
}
.hero__actions .button--primary::before {
  position: absolute; inset: 5px; border: 1px solid rgba(231, 207, 156, .5); content: ""; pointer-events: none;
}
.hero__actions .button--primary span:last-child {
  width: auto; height: auto; margin: 0; font-family: var(--sans); font-size: 18px; transform: none;
}

/* 副CTA：白地に細い枠線 */
.hero__actions .button--outline {
  justify-content: center; gap: 12px;
  background: rgba(255, 255, 255, .92); border: 1px solid rgba(121, 80, 128, .5); color: var(--rose-deep);
}
.hero__actions .button--outline:hover { background: #fff; border-color: var(--rose); }

/* LINE：彩度は落とさずサイズで序列をつける */
.hero__actions .button--line { justify-content: center; gap: 12px; border-radius: 2px; }

@media (max-width: 900px) {
  .hero__actions { grid-template-columns: 1fr 1fr; }
  .hero__actions .button--line { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .hero__visual { width: 92%; }
  .hero__actions {
    width: 92%; max-width: 420px; grid-template-columns: 1fr; gap: 10px; margin-top: 22px;
  }
  .hero__actions .button--line { grid-column: auto; }
  .hero__actions .button { min-height: 58px; padding: 14px 22px; font-size: 15px; }
  .hero__actions .button--primary { justify-content: space-between; }
}

/* --- お悩み：自動スクロールをやめて一覧グリッドに（背景色は据え置き） --- */
.concern-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1150px; margin: 0 auto; padding: 0; list-style: none;
  border-top: 1px solid rgba(201, 166, 106, .5); border-left: 1px solid rgba(201, 166, 106, .32);
  background: rgba(255, 255, 255, .5); border-radius: 2px; overflow: hidden;
}
.concern-list li {
  display: grid; justify-items: center; align-content: start; gap: 16px;
  padding: 30px 16px 28px; text-align: center;
  border-right: 1px solid rgba(201, 166, 106, .32); border-bottom: 1px solid rgba(201, 166, 106, .32);
  color: var(--rose); font-size: 16px; line-height: 1.7; word-break: keep-all;
}
.concern-list img { width: 86px; height: 86px; object-fit: cover; border-radius: 50%; }

@media (max-width: 900px) {
  .concern-list { grid-template-columns: repeat(2, 1fr); }
  .concern-list li { font-size: 15px; }
}

@media (max-width: 620px) {
  .concern-list li { padding: 22px 8px 20px; gap: 12px; font-size: 13px; letter-spacing: 0; }
  .concern-list img { width: 62px; height: 62px; }
}

/* --- スマホ：ヒーロー画像を画面幅いっぱいに、ボタンは問い合わせ系2つだけ --- */
@media (max-width: 620px) {
  .hero__visual {
    width: calc(100% + 2 * var(--section-pad)); max-width: none;
    margin-inline: calc(-1 * var(--section-pad)); border-radius: 0; box-shadow: none;
  }
  .hero__visual::after { display: none; }
  .hero__actions { grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; max-width: none; margin-top: 18px; }
  .hero__actions .button--primary { display: none; }
  .hero__actions .button { min-height: 56px; padding: 12px 10px; font-size: 14px; letter-spacing: .06em; }
  .hero__actions .button--outline, .hero__actions .button--line { gap: 8px; }
}

/* --- スマホ：下部固定の2分割バー --- */
.sticky-cta { display: none; }
@media (max-width: 620px) {
  .sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff; box-shadow: 0 -10px 26px -12px rgba(74, 48, 88, .35);
    transform: translateY(110%); visibility: hidden;
    transition: transform 280ms var(--ease), visibility 0s linear 280ms;
  }
  .sticky-cta.is-visible { transform: translateY(0); visibility: visible; transition: transform 280ms var(--ease), visibility 0s; }
  .sticky-cta__btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 58px; padding: 10px 8px;
    font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: .06em; text-decoration: none;
  }
  .sticky-cta__btn:active { opacity: .85; }
  .sticky-cta__btn--line { background: #06c755; color: #fff; }
  .sticky-cta__btn--mail { background: var(--rose-deep); color: #fff; }
  .sticky-cta__btn--mail .mail-mark { color: #fff; }
  body.has-sticky-cta .site-footer { padding-bottom: calc(58px + 24px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta, .sticky-cta.is-visible { transition: none; }
}

/* --- 日本語の改行：文節の切れ目でだけ折り返す --- */
/* スクリプトが <wbr> を入れ終えたら keep-all に切り替える（入らなかった語も枠からははみ出さない） */
html.jp-phrase body { word-break: keep-all; overflow-wrap: break-word; }
/* スクリプトが動かない環境でも、対応ブラウザでは文節で折り返す */
html:not(.jp-phrase) body { word-break: auto-phrase; }
h1, h2, h3, h4 { text-wrap: balance; }
p, li, dd, td, summary, figcaption { text-wrap: pretty; }
/* カード内の短い説明は行の長さを揃える（Safari 17.5 以降も対応） */
.glance-card strong, .glance-card small { text-wrap: balance; }

/* --- 電話番号：ラベルを中央に、その下に番号 --- */
.contact-phone {
  display: grid; justify-items: center; gap: 2px; width: 100%;
  margin: 26px 0 0; padding: 18px 16px 16px; text-align: center;
  border-top: 1px solid rgba(201, 166, 106, .4); border-bottom: 1px solid rgba(201, 166, 106, .4);
}
.contact-phone span { font-size: 13px; letter-spacing: .08em; }
.contact-phone a { line-height: 1.3; }
/* 電話番号の下の LINE ボタンも同じ軸（中央）に揃える */
.line-cta { text-align: center; }
.line-cta .button--line { margin-inline: auto; }

/* --- お問い合わせフォーム（PHP 送信）の状態表示 --- */
.contact-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .field-error { display: block; margin-top: 6px; color: #b3261e; font-family: var(--sans); font-size: 12px; line-height: 1.6; }
.contact-form label.is-invalid input, .contact-form label.is-invalid textarea { border-color: #b3261e; background: #fdf6f5; }
.form-status:empty { display: none; }
.form-status.is-sent, .form-status.is-error {
  padding: 12px 14px; border-radius: 6px; font-size: 13px; line-height: 1.7; text-align: left;
}
.form-status.is-sent { color: var(--rose-deep); background: rgba(255, 255, 255, .85); border: 1px solid rgba(121, 80, 128, .35); }
.form-status.is-error { color: #b3261e; background: #fdf6f5; border: 1px solid rgba(179, 38, 30, .35); }
.contact-form__submit:disabled { opacity: .6; cursor: default; transform: none; }
