@charset "UTF-8";

:root {
    /* Palette */
    --navy: #1F2A44;
    /* 信頼 */
    --blue: #4C6FFF;
    /* CTA */
    --blueDark: #364FC7;
    /* CTA hover */
    --sage: #7BAE9B;
    /* 生活感/補助 */
    --light: #F5F7FA;
    /* セクション背景 */
    --off: #FAFBFD;
    /* やわらか背景 */
    --line: #E3E7EF;
    --muted: #5F6B7A;

    /* Effects */
    --shadow: 0 14px 36px rgba(15, 23, 42, .08);
    --shadow2: 0 10px 26px rgba(15, 23, 42, .06);
    --radius: 18px;
    --radiusSm: 14px;
}

/* Base */
body {
    color: var(--navy);
    background: #fff;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.2;
}

p {
    line-height: 1.75;
}

.text-muted2 {
    color: var(--muted);
}

/* Sections */
.sec {
    padding: 78px 0;
}

.sec--light {
    background: var(--light);
}

.sec--off {
    background: var(--off);
}

.sec-title {
    margin-bottom: 44px;
}

.sec-title p {
    margin: 0;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 20% 10%, rgba(76, 111, 255, .12), transparent 60%),
        radial-gradient(700px 380px at 90% 30%, rgba(123, 174, 155, .14), transparent 55%),
        linear-gradient(180deg, #fff, #fff);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow2);
    font-weight: 800;
    font-size: 13px;
}

/* Buttons */
.btn-main {
    background: var(--blue);
    color: #fff !important;
    border: none;
    padding: 14px 22px;
    font-weight: 900;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(76, 111, 255, .22);
}

.btn-main:hover {
    background: var(--blueDark);
    color: #fff;
    transform: translateY(-1px);
}

/* Cards / Panels */
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel--soft {
    background: linear-gradient(180deg, #fff, rgba(245, 247, 250, .6));
}

.panel-body {
    padding: 22px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(76, 111, 255, .10);
    color: var(--blueDark);
    font-weight: 900;
    font-size: 12px;
}

.chip.sage {
    background: rgba(123, 174, 155, .16);
    color: var(--navy);
}

/* Image placeholders (後ハメ枠) */
.img-ph {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-ph.small {
    min-height: 160px;
    border-radius: var(--radiusSm);
}

.img-ph.tall {
    min-height: 360px;
}

.img-ph .ttl {
    font-weight: 900;
    margin-bottom: 6px;
}

.img-ph .sub {
    font-size: 13px;
    color: rgba(31, 42, 68, .62);
    margin: 0;
}

/* Campaign */
.campaign {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow2);
}

.campaign strong {
    font-weight: 900;
}

.campaign .small {
    font-size: 13px;
    color: var(--muted);
}

/* Data bars */
.data-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow2);
    height: 100%;
}

.bar-row {
    margin: 14px 0 18px;
}

.bar-label {
    font-size: 14px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.bar-track {
    width: 100%;
    height: 12px;
    background: rgba(31, 42, 68, .08);
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--sage);
    width: 0%;
}

.bar-fill.is-private {
    background: var(--blue);
}

.w-35 {
    width: 35%
}

.w-70 {
    width: 70%
}

.w-45 {
    width: 45%
}

.w-90 {
    width: 90%
}

/* Route cards */
.route-card {
    border-left: 7px solid var(--blue);
    border-radius: var(--radius);
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow2);
    height: 100%;
}

.route-card h5 {
    font-weight: 900;
    margin-bottom: 10px;
}

.route-price {
    font-size: 28px;
    font-weight: 1000;
    letter-spacing: -.02em;
}

.route-monthly {
    margin-top: 8px;
    color: var(--sage);
    font-weight: 900;
}

/* Concern list */
.clean-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.clean-list li {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radiusSm);
    box-shadow: var(--shadow2);
    margin-bottom: 12px;
    font-weight: 800;
    position: relative;
}

.clean-list li:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--sage);
    opacity: .9;
}

.clean-list li {
    padding-left: 34px;
}

/* 3 ways */
.way {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow2);
    height: 100%;
}

.way-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.way-no {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 111, 255, .12);
    color: var(--blueDark);
    font-weight: 1000;
}

.way-title {
    font-weight: 1000;
    margin: 0;
}

.note {
    font-size: 13px;
    color: var(--muted);
}

/* Steps */
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow2);
    height: 100%;
}

.step-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 174, 155, .16);
    font-weight: 1000;
}

.step-title {
    font-weight: 1000;
    margin: 0;
}

/* Voices */
.voice {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow2);
    height: 100%;
}

.voice-meta {
    color: var(--muted);
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 10px;
}

.voice-quote {
    margin: 0;
    font-weight: 900;
}

/* FAQ */
.accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow2);
    margin-bottom: 12px;
    background: #fff;
}

.accordion-button {
    font-weight: 1000;
    padding: 16px 18px;
}

.accordion-button:not(.collapsed) {
    background: rgba(76, 111, 255, .10);
    color: var(--navy);
    box-shadow: none;
}

.accordion-body {
    padding: 16px 18px;
    color: var(--navy);
}

/* Source box + footer */
.source {
    font-size: 13px;
    color: var(--muted);
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow2);
}

footer {
    background: var(--light);
    padding: 44px 0;
    color: var(--muted);
    font-size: 13px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .sec {
        padding-top: 8px;
    }

}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow2);
    font-weight: 900;
    font-size: 14px;
}

.hero-point__icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(76, 111, 255, .12);
    color: var(--blueDark);
    font-size: 14px;
}

.clean-list li:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--sage);
    opacity: .9;
}

@media (min-width: 992px) {
    .container {
        max-width: 980px !important;
    }
}

.btn-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    font-size: 14px;
    box-shadow: var(--shadow2);
}

.btn-sub:hover {
    border-color: rgba(76, 111, 255, .35);
    background: rgba(76, 111, 255, .06);
    transform: translateY(-1px);
}

.btn-sub i {
    color: var(--blueDark);
    font-size: 14px;
}

/* chips: SPでも横並びを維持しやすいサイズ */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(76, 111, 255, .10);
    color: var(--blueDark);
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.chip.sage {
    background: rgba(123, 174, 155, .18);
    color: var(--navy);
}

/* 超小型端末で詰まる場合だけ少し縮める */
@media (max-width: 360px) {
    .chip {
        padding: 6px 8px;
        font-size: 11px;
    }
}

h4.way-title {
    font-size: 18px;
}

@media (min-width: 1200px) {

    .h1,
    h1 {
        font-size: 32px;
    }
}

.voice img {
    width: auto;
    height: 120px !important;
}


@media (max-width: 488px) {
    h1 {
        font-size: 23px;
    }

    .hero-points {
        gap: 4px;
    }

    .hero-point {
        gap: 4px;
        padding: 6px 8px;
        font-size: 11px;
    }

    .hero-point__icon {
        width: 22px;
        height: 22px;
    }
}