:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-soft: #f2f6fb;
    --text: #423f45;
    --subtle: #718096;
    --deep-navy: #005c9e;
    --accent-blue: #0089eb;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.04);
    --shadow-mini: 0 10px 24px rgba(0, 0, 0, 0.04);
    --radius: 28px;
    --radiusSm: 18px;
    --max: 1120px;
    --gutter: 24px;
    --sectionPad: 60px;
    --section-odd-bg: #f1f7ff;
    --section-even-bg: #ffffff;
    --case-green: #22c55e;
    --case-orange: #f97316;
    --case-navy: #1e3a8a;
    --case-gold: #f6c453;
    --case-sky: #8fd1ff;
    --case-mint: #9ae6b4;
    --result-green: #00c37b;
    --result-blue: #00b6d4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
}

h2 {
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 137, 235, 0.18);
    border-radius: 10px;
}

strong {
    font-weight: 800;
    background: linear-gradient(transparent 62%, rgba(255, 235, 130, 0.6) 62%);
    padding: 0 2px;
}

.Number {
    font-size: 2.5em;
    font-weight: 900;
    color: var(--deep-navy);
    letter-spacing: 0.02em;
    line-height: 1;
}

.NoWrap {
    white-space: nowrap;
}

.Unit {
    font-size: 0.6em;
    color: var(--subtle);
    vertical-align: super;
    margin-left: 4px;
}

.Container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.SkipLink {
    position: absolute;
    left: -9999px;
    top: 12px;
    background: #0b1220;
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    z-index: 9999;
}

.SkipLink:focus {
    left: 12px;
}

.Header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.Header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: var(--accent-blue);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 137, 235, 0.28);
}

.Header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.Header__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--deep-navy);
    background: #ffffff;
    white-space: nowrap;
}

.Header__title {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.Header__nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
}

.Header__toggleBar {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

.Header__link {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    min-width: 120px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.Header__link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.Main {
    padding-bottom: 92px;
}

.Hero {
    padding: 32px 0 20px;
    background: #ffffff;
}

.Hero .Container {
    background: #ffffff;
    border-radius: calc(var(--radius) + 4px);
    padding: 64px;
    box-shadow: var(--shadow);
}

.Hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.Kicker {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--subtle);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.Hero__headline {
    margin: 0 0 14px;
    font-size: clamp(22px, 6vw, 44px);
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 800;
    white-space: nowrap;
}

.Hero__lead {
    margin: 0 0 24px;
    color: var(--text);
    font-size: 17px;
    line-height: 2;
}

.Hero__points {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.Hero__points li {
    position: relative;
    padding: 16px 16px 16px 44px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.Hero__points li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 16px;
    height: 16px;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(0, 137, 235, 0.95), rgba(0, 182, 212, 0.85));
}

.Hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.Hero__cta .Button {
    min-width: 370px;
    justify-content: center;
}

.FinalCard__actions .Button {
    min-width: 370px;
    justify-content: center;
}

.Button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 22px;
    border-radius: 50px;
    border: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 16px;
    min-height: 56px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.Button--primary {
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(0, 137, 235, 0.28);
}

.Button--ghost {
    background: #ffffff;
    color: var(--deep-navy);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.Button--result {
    flex-direction: column;
    gap: 6px;
    min-height: 72px;
    padding: 16px 26px;
    background: #ffffff;
    color: var(--accent-blue);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-align: center;
}

.Button--stack {
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.Button__main {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.Button__sub {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

.Button--full {
    width: 100%;
}

.Hero__notes {
    margin-top: 12px;
    padding-top: 8px;
}

.Small {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--subtle);
}

.Hero__media {
    position: relative;
    border-radius: var(--radius);
    background: #ffffff;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.Hero__image {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius) - 6px);
    display: block;
    object-fit: contain;
}

.Hero__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    position: absolute;
    left: 18px;
    bottom: 18px;
    right: 18px;
}

.Pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.Section {
    padding: var(--sectionPad) 0;
    background: var(--section-bg, var(--section-alt-bg, transparent));
    color: var(--section-text, var(--text));
}

.Section:nth-of-type(odd) {
    --section-alt-bg: var(--section-odd-bg);
}

.Section:nth-of-type(even) {
    --section-alt-bg: var(--section-even-bg);
}

.Section:not(.Section--accent):not(.Section--deep):not(.Section--light):not(.Section--soft):nth-of-type(odd) {
    --section-bg: var(--section-alt-bg);
    --section-text: var(--text);
    --section-muted: var(--subtle);
    --card-bg: #ffffff;
}

.Section:not(.Section--accent):not(.Section--deep):not(.Section--light):not(.Section--soft):nth-of-type(even) {
    --section-bg: var(--section-alt-bg);
    --section-text: var(--text);
    --section-muted: var(--subtle);
    --card-bg: #ffffff;
}

.Section--light {
    --section-bg: var(--section-alt-bg);
    --section-text: var(--text);
    --section-muted: var(--subtle);
    --card-bg: #ffffff;
}

.Section--soft {
    --section-bg: var(--section-alt-bg);
    --section-text: var(--text);
    --section-muted: var(--subtle);
    --card-bg: #ffffff;
}

.Section--altA {
    --section-alt-bg: var(--section-odd-bg);
    --section-bg: var(--section-odd-bg);
}

.Section--altB {
    --section-alt-bg: var(--section-even-bg);
    --section-bg: var(--section-even-bg);
}

.Section--accent {
    --section-bg: var(--section-alt-bg);
    --section-text: var(--text);
    --section-muted: var(--subtle);
    --card-bg: #ffffff;
}

.Section--deep {
    --section-bg: var(--section-alt-bg);
    --section-text: var(--text);
    --section-muted: var(--subtle);
    --card-bg: #ffffff;
}

.Section>.Container {
    background: var(--card-bg, #ffffff);
    border-radius: calc(var(--radius) + 4px);
    padding: 64px;
    box-shadow: var(--shadow);
}

.Section--compact>.Container {
    padding-top: 48px;
}

.SectionTitle {
    margin: 0 0 12px;
    font-size: 32px;
    letter-spacing: 0.02em;
    text-align: center;
    font-weight: 700;
    color: var(--deep-navy);
    position: relative;
}

.SectionTitle::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-blue);
    margin: 12px auto 0;
    border-radius: 999px;
}

.Section--accent .SectionTitle {
    color: var(--deep-navy);
}

.Section--accent .SectionTitle::after {
    background: var(--accent-blue);
}

.SectionLead {
    margin: 0 auto 18px;
    color: var(--section-muted, var(--subtle));
    font-size: 16px;
    max-width: 820px;
    text-align: center;
}

.Section--accent .Small {
    color: var(--subtle);
}

.SubTitle {
    margin: 22px 0 12px;
    font-size: 18px;
    color: var(--section-text, var(--text));
    text-align: center;
    font-weight: 600;
}

.Card {
    border-radius: var(--radius);
    background: #ffffff;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.Section--accent .Card {
    background: #ffffff;
}

section#chart {
    --section-bg: var(--accent-blue);
    --section-text: #ffffff;
    --section-muted: rgba(255, 255, 255, 0.8);
    --card-bg: rgba(0, 137, 235, 0.96);
}

section#chart .SectionTitle {
    color: #ffffff;
}

section#chart .SectionTitle::after {
    background: #ffffff;
}

section#chart .Small {
    color: rgba(255, 255, 255, 0.85);
}

section#chart .Chart__title {
    color: var(--deep-navy);
}

.Card--soft {
    background: var(--surface-soft);
}

.Card__title {
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-align: center;
    font-weight: 600;
    color: var(--section-text, var(--text));
}

.Card__text {
    margin: 0;
    color: var(--section-muted, var(--subtle));
    font-size: 16px;
}

.BodyText {
    margin: 0 0 12px;
    color: var(--section-text, var(--text));
    font-size: 17px;
}

.Grid {
    display: grid;
    gap: 24px;
}

.Grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.Grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.StepList {
    margin: 12px 0 0;
    padding-left: 0;
    list-style: none;
    counter-reset: step;
    font-size: 17px;
}

.StepList>li {
    counter-increment: step;
    position: relative;
    padding-left: 60px;
    margin: 16px 0;
}

.StepList>li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #0b1220;
    background: #eef5ff;
}

.InlineLinks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: center;
}

.InlineLinks__item {
    font-size: 15px;
    font-weight: 600;
    color: #0b1220;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(0, 137, 235, 0.12);
    min-width: 140px;
    text-align: center;
}

.InlineLinks__item:hover {
    background: rgba(0, 137, 235, 0.2);
}

.InlineLink {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.InlineLink:hover {
    color: #0b1220;
}

.LogoLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.CtaStack {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.LogoStrip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    margin: 18px 0 24px;
}

.LogoStrip__img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.03);
}

.Notice {
    border-radius: var(--radius);
    background: rgba(0, 137, 235, 0.12);
    padding: 18px 20px;
    margin-bottom: 16px;
}

.Notice__title {
    margin: 0 0 6px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--deep-navy);
}

.Notice__text {
    margin: 0;
    color: var(--text);
    font-size: 15px;
}

.OfferCard {
    border-radius: var(--radius);
    background: #ffffff;
    padding: 52px 28px 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--case-badge, rgba(0, 0, 0, 0.05));
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.OfferCard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background: var(--case-gradient, linear-gradient(90deg, #00b6d4, #00c37b));
    border-radius: var(--radius) var(--radius) 0 0;
}

.OfferCard::after {
    content: var(--case-label, "CASE");
    position: absolute;
    left: 20px;
    top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--case-badge, #00b6d4);
}

.OfferCard__logo {
    width: 100%;
    height: auto;
    max-width: 240px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
    margin: 0 auto;
}

.OfferCard__title {
    margin: 6px 0 0;
    font-size: 20px;
    text-align: center;
    color: var(--case-title, #0f172a);
    font-weight: 600;
}

.OfferCard__bullets {
    margin: 0;
    padding: 16px 16px 14px;
    list-style: none;
    border-radius: 18px;
    background: var(--result-bg, var(--result-blue));
    color: #ffffff;
    font-size: 14px;
    flex: 1;
    position: relative;
}

.OfferCard__bullets::before {
    content: "RESULT!";
    display: block;
    font-weight: 900;
    letter-spacing: 0.12em;
    font-size: 11px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.OfferCard__bullets li+li {
    margin-top: 8px;
}

#offers .Grid--3 .OfferCard:nth-child(1) {
    --case-label: "CASE 01";
    --case-badge: #f97316;
    --case-gradient: linear-gradient(90deg, #f97316, #f6ad55);
    --case-title: #c2410c;
    --result-bg: var(--result-green);
}

#offers .Grid--3 .OfferCard:nth-child(2) {
    --case-label: "CASE 02";
    --case-badge: #22c55e;
    --case-gradient: linear-gradient(90deg, #22c55e, #16a34a);
    --case-title: #166534;
    --result-bg: var(--result-blue);
}

#offers .Grid--3 .OfferCard:nth-child(3) {
    --case-label: "CASE 03";
    --case-badge: #f4b740;
    --case-gradient: linear-gradient(90deg, #f4b740, #fbd47a);
    --case-title: #1e3a8a;
    --result-bg: var(--result-green);
}

#offers .Grid--2 .OfferCard:nth-child(1) {
    --case-label: "CASE 04";
    --case-badge: #8fd1ff;
    --case-gradient: linear-gradient(90deg, #8fd1ff, #9ae6b4);
    --case-title: #1d4ed8;
    --result-bg: var(--result-blue);
}

#offers .Grid--2 .OfferCard:nth-child(2) {
    --case-label: "CASE 05";
    --case-badge: #9ae6b4;
    --case-gradient: linear-gradient(90deg, #9ae6b4, #8fd1ff);
    --case-title: #0f766e;
    --result-bg: var(--result-green);
}

.MediaRow {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.MediaRow__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    object-fit: contain;
}

.MediaRow__body {
    text-align: center;
}

.Media {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    margin: 18px auto 0;
    box-shadow: var(--shadow-soft);
    object-fit: contain;
}

.TableWrap {
    overflow: auto;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.TableWrap--mt {
    margin-top: 16px;
}

.Table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.Table th,
.Table td {
    padding: 14px 14px;
    border-bottom: 0;
    font-size: 16px;
    vertical-align: top;
}

.Table th {
    text-align: left;
    color: var(--deep-navy);
    background: #f7f9fc;
    font-weight: 800;
}

.Table tbody tr:nth-child(even) {
    background: #f7f9fc;
}

section[aria-label="口コミ・実績・監修体制の透明性"] .Table th,
section[aria-label="口コミ・実績・監修体制の透明性"] .Table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

section[aria-label="口コミ・実績・監修体制の透明性"] .Table th:last-child,
section[aria-label="口コミ・実績・監修体制の透明性"] .Table td:last-child {
    border-right: 0;
}

section[aria-label="口コミ・実績・監修体制の透明性"] .List {
    list-style: none;
    padding-left: 0;
}

section[aria-label="料金"] .TableWrap {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

section[aria-label="料金"] table[aria-label="料金相場（タイプ別）"] {
    table-layout: fixed;
}

section[aria-label="料金"] table[aria-label="料金相場（タイプ別）"] th:nth-child(1),
section[aria-label="料金"] table[aria-label="料金相場（タイプ別）"] td:nth-child(1) {
    width: 22%;
}

section[aria-label="料金"] table[aria-label="料金相場（タイプ別）"] th:nth-child(2),
section[aria-label="料金"] table[aria-label="料金相場（タイプ別）"] td:nth-child(2) {
    width: 34%;
}

section[aria-label="料金"] table[aria-label="料金相場（タイプ別）"] th:nth-child(3),
section[aria-label="料金"] table[aria-label="料金相場（タイプ別）"] td:nth-child(3) {
    width: 44%;
}

section[aria-label="料金"] .Table th,
section[aria-label="料金"] .Table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

section[aria-label="料金"] .Table th:last-child,
section[aria-label="料金"] .Table td:last-child {
    border-right: 0;
}

section[aria-label="安ければいいではない"] .Table th,
section[aria-label="安ければいいではない"] .Table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

section[aria-label="安ければいいではない"] .Table th:last-child,
section[aria-label="安ければいいではない"] .Table td:last-child {
    border-right: 0;
}

section[aria-label="有給消化で元が取れる計算"] .Table th,
section[aria-label="有給消化で元が取れる計算"] .Table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

section[aria-label="有給消化で元が取れる計算"] .Table th:last-child,
section[aria-label="有給消化で元が取れる計算"] .Table td:last-child {
    border-right: 0;
}

section[aria-label="料金"] .Card,
section[aria-label="料金"] .Card--soft {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--surface-soft);
}

section[aria-label="料金"] .Card .Button {
    margin-top: 20px;
    margin-bottom: 12px;
}

section[aria-label="他社比較"] .TableWrap {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

section[aria-label="他社比較"] .Table th,
section[aria-label="他社比較"] .Table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

section[aria-label="他社比較"] .Table th,
section[aria-label="他社比較"] .Table td {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

section[aria-label="他社比較"] .Table th:last-child,
section[aria-label="他社比較"] .Table td:last-child {
    border-right: 0;
}

section[aria-label="他社比較"] .Button--primary {
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

section#faq .Center .Button--primary {
    display: block;
    width: 100%;
    text-align: center;
}

section#faq .Accordion__body .BodyText+.Card__title {
    margin-top: 24px;
}

section#faq .Accordion__body .TableWrap+.Card__title {
    margin-top: 24px;
}

.TableCards {
    display: none;
    gap: 12px;
}

.TableCard {
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.TableCard__title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--deep-navy);
}

.TableCard__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
}

.TableCard__key {
    font-weight: 900;
    color: var(--subtle);
    font-size: 12px;
    min-width: 92px;
}

.TableCard__val {
    color: var(--text);
    font-size: 16px;
    text-align: right;
    flex: 1;
}

.List {
    margin: 0;
    padding-left: 18px;
    color: var(--section-text, var(--text));
    font-size: 17px;
}

.Center {
    text-align: center;
    margin-top: 18px;
}

.Accordion {
    display: grid;
    gap: 12px;
}

.Accordion__item {
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.Section--deep .Accordion__item {
    background: #f7f9fc;
    border: 1px solid rgba(0, 92, 158, 0.1);
}

.Accordion__summary {
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    list-style: none;
    font-size: 18px;
    color: var(--deep-navy);
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, padding 0.2s ease;
    background: #ffffff;
}

.Section--deep .Accordion__summary {
    background: #f7f9fc;
}

.Accordion__summary:hover {
    background: #f1f7ff;
}

details[open] .Accordion__summary {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8fbff;
}

.Section--deep details[open] .Accordion__summary {
    border-bottom: 1px solid rgba(0, 92, 158, 0.1);
}

.Accordion__summary::-webkit-details-marker {
    display: none;
}

.Accordion__summary::after {
    content: "＋";
    float: right;
    color: var(--subtle);
}

details[open] .Accordion__summary::after {
    content: "−";
}

.Accordion__body {
    padding: 0 18px 16px;
    color: var(--section-text, var(--text));
    font-size: 15px;
}

.Chart {
    display: grid;
    gap: 18px;
}

.Chart__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.ChoiceRow {
    display: grid;
    gap: 12px;
}

.Chart__step.isHidden {
    display: none;
}

.ChoiceRow.isHidden {
    display: none;
}

.ChoiceButton {
    width: 100%;
    text-align: left;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 92, 158, 0.35);
    background: #ffffff;
    color: var(--deep-navy);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    display: block;
    text-decoration: none;
}

.ChoiceButton:hover {
    background: #f7f9fc;
}

.ChoiceButton.isSelected {
    background: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
    box-shadow: 0 14px 28px rgba(0, 137, 235, 0.26);
}

.ChoiceButton:active {
    background: #0a7ad5;
    color: #ffffff;
    border-color: #0a7ad5;
    box-shadow: 0 10px 20px rgba(0, 137, 235, 0.22);
}

.Section--accent .ChoiceButton {
    background: #ffffff;
    color: var(--deep-navy);
}

.Section--accent .ChoiceButton.isSelected {
    background: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
    box-shadow: 0 14px 28px rgba(0, 137, 235, 0.26);
}

.Section--accent .ChoiceButton:active {
    background: #0a7ad5;
    color: #ffffff;
    border-color: #0a7ad5;
    box-shadow: 0 10px 20px rgba(0, 137, 235, 0.22);
}

.ChartResult {
    border-radius: var(--radius);
    background: var(--deep-navy);
    color: #ffffff;
    padding: 18px;
    text-align: center;
}

.ChartResult__label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.ChartResult__value {
    margin-top: 6px;
    font-weight: 900;
    font-size: 22px;
}

.ChartResult__reason {
    margin-top: 6px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
}

#chartResultName {
    font-weight: 600;
}

.ChartResult__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.ChartResult__actions .Button {
    min-width: 200px;
    justify-content: center;
}

.ChartResult__actions .Button--result {
    min-width: 260px;
}

.ChartResult .Small {
    color: rgba(255, 255, 255, 0.9);
}

.Section--accent .Button--primary {
    background: #ffffff;
    color: var(--accent-blue);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.FinalCard {
    border-radius: calc(var(--radius) + 2px);
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.FinalCard__title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--deep-navy);
}

.FinalCard__text {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 16px;
}

.FinalCard__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.FinalCard__image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: var(--shadow-soft);
    object-fit: contain;
}

.Footer {
    padding: 36px 0 86px;
    background: rgba(255, 255, 255, 0.7);
}

.Footer__cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.Footer__title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 900;
    color: var(--deep-navy);
}

.Footer__links {
    margin: 0;
    padding-left: 18px;
    color: var(--text);
    font-size: 14px;
}

.Footer__links a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.Footer__links a:hover {
    color: var(--accent-blue);
}

.Footer__copyright {
    margin: 16px 0 0;
    text-align: center;
}

.StickyCta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.06);
}

.StickyCta__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 12px;
}

.StickyCta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 50px;
    border: 0;
    background: var(--accent-blue);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 36px rgba(0, 137, 235, 0.26);
}

.StickyCta__button--sub {
    background: #ffffff;
    color: var(--deep-navy);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

section[aria-label="よくある悩み"] .Card {
    position: relative;
    padding-top: 56px;
    border: 1px solid #00b6d4;
}

section[aria-label="よくある悩み"] .Card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 8px;
    width: 100%;
    background: #00b6d4;
    border-radius: var(--radius) var(--radius) 0 0;
}

section[aria-label="よくある悩み"] .Card::after {
    content: "CASE 01";
    position: absolute;
    left: 20px;
    top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: #00b6d4;
}

section[aria-label="よくある悩み"] .Card--soft::before {
    background: #00c37b;
}

section[aria-label="よくある悩み"] .Card--soft::after {
    content: "MESSAGE";
    background: #00c37b;
}

section[aria-label="よくある悩み"] .Card--soft {
    border-color: #00c37b;
}

section[aria-label="よくある悩み"] .Card__title {
    text-align: left;
}

section[aria-label="今日変わること"] .Card {
    position: relative;
    padding-top: 56px;
    border: 1px solid #00b6d4;
}

section[aria-label="今日変わること"] .Card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 8px;
    width: 100%;
    background: #00b6d4;
    border-radius: var(--radius) var(--radius) 0 0;
}

section[aria-label="今日変わること"] .Card::after {
    content: "STEP";
    position: absolute;
    left: 20px;
    top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: #00b6d4;
}

section[aria-label="今日変わること"] .Card--soft::before {
    background: #00c37b;
}

section[aria-label="今日変わること"] .Card--soft::after {
    content: "RESULT!";
    background: #00c37b;
}

section[aria-label="今日変わること"] .Card--soft {
    border-color: #00c37b;
}

section[aria-label="今日変わること"] .Card__title {
    text-align: left;
}

section#checklist .Grid>.Card:nth-child(1),
section[aria-label="3つの約束"] .Grid>.Card:nth-child(1),
section[aria-label="追加費用・返金条件の透明性"] .Grid>.Card:nth-child(1) {
    --card-band: #00b6d4;
    --card-badge: #00b6d4;
}

section#checklist .Grid>.Card:nth-child(2),
section[aria-label="3つの約束"] .Grid>.Card:nth-child(2),
section[aria-label="追加費用・返金条件の透明性"] .Grid>.Card:nth-child(2) {
    --card-band: #8fd1ff;
    --card-badge: #8fd1ff;
}

section#checklist .Grid>.Card:nth-child(3),
section[aria-label="3つの約束"] .Grid>.Card:nth-child(3),
section[aria-label="追加費用・返金条件の透明性"] .Grid>.Card:nth-child(3) {
    --card-band: #f6ad55;
    --card-badge: #f6ad55;
}

section#checklist .Grid>.Card:nth-child(4),
section[aria-label="3つの約束"] .Grid>.Card:nth-child(4),
section[aria-label="追加費用・返金条件の透明性"] .Grid>.Card:nth-child(4) {
    --card-band: #00c37b;
    --card-badge: #00c37b;
}

section#checklist .Grid>.Card:nth-child(5),
section[aria-label="3つの約束"] .Grid>.Card:nth-child(5),
section[aria-label="追加費用・返金条件の透明性"] .Grid>.Card:nth-child(5) {
    --card-band: #f4b740;
    --card-badge: #f4b740;
}

section#checklist .Card,
section[aria-label="3つの約束"] .Card,
section[aria-label="追加費用・返金条件の透明性"] .Card {
    position: relative;
    padding-top: 56px;
    border: 1px solid var(--card-band, rgba(0, 0, 0, 0.05));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

section#checklist .Card::before,
section[aria-label="3つの約束"] .Card::before,
section[aria-label="追加費用・返金条件の透明性"] .Card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 8px;
    width: 100%;
    background: var(--card-band, #00b6d4);
    border-radius: inherit;
}

section#checklist .Card::after,
section[aria-label="3つの約束"] .Card::after,
section[aria-label="追加費用・返金条件の透明性"] .Card::after {
    position: absolute;
    left: 20px;
    top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--card-badge, #00b6d4);
}

section#checklist .Card::after {
    content: "CHECK";
}

section[aria-label="3つの約束"] .Card::after {
    content: "POINT";
}

section[aria-label="追加費用・返金条件の透明性"] .Card::after {
    content: "CHECK";
}

section#checklist .Card--soft::before,
section[aria-label="追加費用・返金条件の透明性"] .Card--soft::before,
section[aria-label="3つの約束"] .Card--soft::before {
    background: var(--card-soft-band, var(--card-band, #8fd1ff));
}

section#checklist .Card--soft::after,
section[aria-label="追加費用・返金条件の透明性"] .Card--soft::after,
section[aria-label="3つの約束"] .Card--soft::after {
    background: var(--card-soft-badge, var(--card-badge, #8fd1ff));
}

section#checklist .Card--soft {
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: auto;
}

section#checklist .Card--soft::before,
section#checklist .Card--soft::after {
    content: none;
}

section#checklist .Card--soft .MediaRow {
    grid-template-columns: 1fr;
}

section#checklist .Card--soft .MediaRow__body {
    display: none;
}

section#checklist .Card--soft .MediaRow__image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

section[aria-label="口コミ・実績・監修体制の透明性"] .Grid--2,
section[aria-label="料金"] .Grid--2 {
    grid-template-columns: 1fr;
    gap: 32px;
}

section[aria-label="利用の流れ"] .StepList {
    position: relative;
    padding-left: 48px;
}

section[aria-label="利用の流れ"] .StepList::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(0, 137, 235, 0.25);
}

section[aria-label="利用の流れ"] .StepList>li {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px 16px 64px;
    box-shadow: var(--shadow-mini);
    margin: 18px 0;
}

section[aria-label="利用の流れ"] .StepList>li::before {
    background: #ffffff;
    border: 2px solid rgba(0, 137, 235, 0.4);
}

section[aria-label="利用の流れ"] .StepList strong {
    font-weight: 600;
}

section[aria-label="退職成功事例"] .Card {
    position: relative;
    padding-top: 56px;
    overflow: hidden;
    border: 1px solid var(--case-badge, rgba(0, 0, 0, 0.05));
    --case-label: "CASE";
    --case-badge: #00b6d4;
    --case-gradient: linear-gradient(90deg, #00b6d4, #00c37b);
}

section[aria-label="退職成功事例"] .Card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background: var(--case-gradient);
    border-radius: inherit;
}

section[aria-label="退職成功事例"] .Card::after {
    content: var(--case-label);
    position: absolute;
    left: 20px;
    top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--case-badge);
}

section[aria-label="退職成功事例"] .Grid--2 .Card:nth-child(1) {
    --case-label: "CASE 01";
    --case-badge: #f97316;
    --case-gradient: linear-gradient(90deg, #f97316, #f6ad55);
}

section[aria-label="退職成功事例"] .Grid--2 .Card:nth-child(2) {
    --case-label: "CASE 02";
    --case-badge: #22c55e;
    --case-gradient: linear-gradient(90deg, #22c55e, #16a34a);
}

section[aria-label="退職成功事例"] .Grid--2 .Card:nth-child(3) {
    --case-label: "CASE 03";
    --case-badge: #1e3a8a;
    --case-gradient: linear-gradient(90deg, #1e3a8a, #f6c453);
}

section[aria-label="退職成功事例"] .Grid--2 .Card:nth-child(4) {
    --case-label: "CASE 04";
    --case-badge: #8fd1ff;
    --case-gradient: linear-gradient(90deg, #8fd1ff, #9ae6b4);
}

section[aria-label="退職成功事例"] .Card__title {
    text-align: left;
}

section[aria-label="他社比較"] .Table {
    border-collapse: collapse;
}

section[aria-label="他社比較"] .Table td {
    background: transparent;
}

section[aria-label="他社比較"] .Table td:first-child {
    border-radius: 0;
}

section[aria-label="他社比較"] .Table td:last-child {
    border-radius: 0;
}

section[aria-label="他社比較"] .Table th:nth-child(2) {
    background: rgba(249, 115, 22, 0.12);
}

section[aria-label="他社比較"] .Table th:nth-child(3) {
    background: rgba(34, 197, 94, 0.12);
}

section[aria-label="他社比較"] .Table th:nth-child(4) {
    background: rgba(30, 58, 138, 0.12);
}

section[aria-label="まとめ"] .StepList>li {
    margin: 22px 0;
}

@media (max-width: 940px) {
    .Header__inner {
        flex-wrap: wrap;
    }

    .Header__brand {
        min-width: 0;
    }

    .Header__toggle {
        display: inline-flex;
    }

    .Header__nav {
        width: 100%;
        order: 3;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 12px;
    }

    .Header__link {
        width: 100%;
        min-width: 0;
    }

    .Header.isMenuOpen .Header__nav {
        display: flex;
    }

    :root {
        --sectionPad: 40px;
    }

    .Hero .Container {
        padding: 36px;
    }

    .Section>.Container {
        padding: 36px;
    }

    .LogoStrip {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
        display: none;
    }

    .TableWrap--desktop {
        display: none;
    }

    .TableCards--mobile {
        display: grid;
    }

    section#faq .TableWrap--desktop {
        display: block;
    }

    section#faq .Table {
        min-width: 0;
        table-layout: fixed;
        width: 100%;
    }

    section#faq .Table th,
    section#faq .Table td {
        word-break: break-word;
    }

    section#faq .Number {
        font-size: 1em;
        font-weight: 600;
        color: inherit;
    }

    section#faq .Unit {
        font-size: 1em;
        color: inherit;
        vertical-align: baseline;
    }

    .TableCard__row {
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .TableCard__val {
        text-align: right;
        width: 100%;
        padding-right: 8px;
    }

    .TableCard__row:last-child {
        border-bottom: 0;
    }

    .InlineLinks {
        display: grid;
        grid-template-columns: 1fr;
    }

    .Hero__inner {
        grid-template-columns: 1fr;
        gap: 0;
        grid-template-areas:
            "kicker"
            "headline"
            "lead"
            "points"
            "media"
            "cta"
            "notes";
    }

    .Hero__copy {
        display: contents;
    }

    .Kicker {
        grid-area: kicker;
    }

    .Hero__headline {
        grid-area: headline;
        font-size: clamp(20px, 6vw, 32px);
    }

    .Hero__lead {
        grid-area: lead;
    }

    .Hero__points {
        grid-area: points;
    }

    .Hero__media {
        grid-area: media;
        margin: 12px 0;
    }

    .Hero__cta {
        grid-area: cta;
    }

    .Hero__notes {
        grid-area: notes;
    }

    .Hero {
        padding-top: 0;
    }

    .Hero__cta .Button {
        min-width: 100%;
    }

    .SectionTitle {
        font-size: 26px;
    }

    section#checklist .Card--soft {
        height: 220px;
    }

    .Grid--3,
    .Grid--2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .FinalCard {
        grid-template-columns: 1fr;
    }

    .FinalCard__actions .Button {
        width: 100%;
        min-width: 100%;
    }

    .Footer__cols {
        grid-template-columns: 1fr;
    }

    .MediaRow {
        grid-template-columns: 1fr;
    }

    section[aria-label="利用の流れ"] .StepList {
        padding-left: 18px;
    }

    section[aria-label="利用の流れ"] .StepList::before {
        left: 8px;
    }
}

@media (max-width: 520px) {
    .Header .Container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .Header__inner {
        border-radius: 0;
        width: 100%;
    }

    .Section>.Container {
        padding: 18px;
    }

    .Card {
        padding: 18px;
    }
}

@media (min-width: 941px) {
    .StickyCta {
        display: none;
    }
}