:root {
    --color-navy: #06264b;
    --color-navy-deep: #031834;
    --color-orange: #ff6a2c;
    --color-bg: #f5f7fb;
    --color-text: #1f2933;
    --color-cta-btn: linear-gradient(90deg, #013ED8 0%, #3BC4F6 100%);
    --header-h: 64px;
    --container: 1120px;
    --color-border: #e5e7eb;
    --color-bg-gray: #f5f7fb;
    --color-bg-blue-right: radial-gradient(circle at top, #ffffff 0%, #f2f9ff 58%);
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.page {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

::marker {
    color: var(--color-orange);
}

.u-xl {
    font-size: 1.2em;
}

.u-sm {
    font-size: .85em;
}

.sp {
    display: none !important;
}

@media (max-width: 767px) {
    figure {
        width: 200px;
        margin: 0 auto;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/* ===== Header ===== */
/* .siteHeader {
    position: fixed;
    inset-inline: 0;
    top: 0;
    height: var(--header-h);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    backdrop-filter: blur(8px);
    z-index: 50;
} */

/* .siteHeader__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
} */
.siteHeader__inner {
    padding: 20px 30px;
    background: #031834;
}

.siteHeader__logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    width: 110px;
    display: block;
}

/* .siteHeader__logoSub {
    margin-left: .4rem;
    font-size: .8rem;
    font-weight: 400;
    color: #6b7280;
} */

.siteHeader__contact {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-navy);
    text-decoration: none;
    transition: color .2s ease;
}

.siteHeader__contact:hover {
    color: var(--color-orange);
}

@media (max-width: 767px) {
    .siteHeader__inner {
        padding: 15px 30px;
    }

    .siteHeader__logo {
        width: 80px;
    }
}

/* ===== Hero ===== */
.hero {
    padding: 3rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/fv-img.jpg") center / cover no-repeat;
    opacity: .2;
    z-index: 0;
}

/* .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(245, 247, 251, 0.00) 0%, rgba(245, 247, 251, 0.35) 75%, rgba(245, 247, 251, 0.92) 90%, #f5f7fb 95%, #f5f7fb 100%);
    z-index: 1;
} */

.hero__inner {
    max-width: var(--container);
    margin-inline: auto;
    position: relative;
}

/* ここが肝：左右の親をflexに */
.hero__body {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-top: 0.5rem;
}

/* 左 */
.hero__content {
    flex: 1 1 68%;
    min-width: 0;
    position: relative;
    z-index: 3;
}



/* 右 */
.hero__visual {
    flex: 0 0 auto;
    display: block;
    position: absolute;
    top: 70%;
    right: -10%;
    transform: translate(-10%, -50%);
    width: 560px;
    max-width: 52vw;
    z-index: 2;
}

.hero__visual img {
    max-width: 100%;
    height: auto;
    display: block;
    transform-origin: right bottom;
    transform: translate(20px, 10px) rotate(3deg);
}

/* Eyecatch */
.hero__eyecatch {
    padding: 0.3rem 0.5rem;
    background: #ff6a2c;
    display: inline-block;
}

.hero__eyecatchText {
    font-weight: 700;
    color: #fff;
}

/* Title & copy */
.hero__title {
    margin: 0 0 .8rem;
    font-size: clamp(1.2rem, 2.8vw, 2.4rem);
    color: var(--color-navy-deep);
    font-weight: 700;
    font-feature-settings: "palt";
    letter-spacing: .15rem;

}

.hero__titleLead {
    font-size: 0.9em;
    font-weight: 600;
    line-height: 2;
}

.hero__titleAccent {
    display: inline-block;
    font-size: 1.5em;
    line-height: 1.3;
    font-weight: 900;
}

.hero__titleAccent2 {
    font-size: 1.3em;
    font-weight: 900;
    line-height: 1.3;
}

.hero__lead {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: bold;
    font-feature-settings: "palt";
    letter-spacing: 0.05rem;
    color: #002174;
    text-shadow: 0 2px 2px #fff;
}

.hero__lead span {
    border-bottom: 2px solid;
    margin: 4px 0;
    display: inline-block;
    padding-bottom: 4px;
}

.hero__bulletList {
    color: #002174;
    width: min(550px, 100%);
    line-height: 2;
    padding-left: 1.2rem;
    font-feature-settings: "palt";
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 0.05rem;
}



/* CTA */
.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: .95;
}

.btn--primary {
    padding: .9rem 2.5rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #fff;
    background: var(--color-cta-btn);
}

.btn--primary .btn__icon {
    width: 24px;
    height: 24px;
}




.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    font-size: .8rem;
    color: #6b7280;
    align-items: center;
    margin-left: 1.5rem;
}

.hero__meta img {
    margin: 0;
    width: 1em;
    height: 1em;
}

/* SP レイアウト */
@media (max-width: 767px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero__inner {
        text-align: left;
    }

    .hero__body {
        display: block;
    }

    .hero__eyecatch {
        font-size: 14px;
    }

    .hero__titleAccent {
        font-size: 1.7em;
    }

    .hero__titleAccent2 {
        font-size: 1.4em;
    }

    .hero__bulletList {
        font-size: 14px;
        padding-left: 1rem;
        letter-spacing: 0;
    }

    .hero__visual {
        position: static;
        transform: translate(3px, 0);
    }

    .hero__visual img {
        transform: translate(20px, 10px) rotate(3deg);

    }

    .hero__cta {
        align-items: center;
    }

    .hero__ct .btn--primary .btn__icon {
        width: 16px;
        height: 16px;
    }
}




/* ===== 共通レイアウト（このLP専用） ===== */


.lpSection {
    padding: 60px 16px;
}

@media (min-width: 768px) {
    .lpSection {
        padding: 80px 24px;
    }
}

.lpSection--gray {
    background: var(--color-bg-gray);
}

.lpSection--navy {
    background: radial-gradient(circle at top, #123c88 0%, #020617 55%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lpSection--grid {
    background: url(../img/bg-mesh.png) repeat center center / auto;
}

.lpContainer {
    max-width: 900px;
    margin: 0 auto;
}

.note {
    margin: 18px 0 0;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

/* SP改行 */
.sp-br {
    display: none;
}

@media (max-width: 500px) {
    .sp-br {
        display: inline;
    }
}

/* 見出し */
.lpHeading {
    margin: 0 0 3rem;
    text-align: center;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-navy);
}

.lpHeading--invert {
    color: #fff;
}

.lpHeading--invert span {
    border-color: #fff;
}



.en {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #1a78e5;
    letter-spacing: 0.04em;
    transform: translateY(-1px);
    font-family: 'Noto Serif JP', serif;
}

/* ===== 2. 信頼できる3つの理由 ===== */

#trust .lpHeading {
    color: #fff;
}

.trustSummary {
    text-align: center;
}

.statsGrid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .statsGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.statsCard {
    background: #fff;
    color: var(--color-text);
    border-radius: 12px;
    padding: 20px 18px 22px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.statsCard__icon {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    margin: 0 auto 10px;
}

.statsCard__number {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: var(--color-orange);
    font-family: 'Noto Serif JP', serif;
}

.statsCard__number span {
    margin-left: 2px;
    font-size: .4em;
    color: #64748b;
}

.statsCard__label {
    font-size: 18px;
    margin: 4px 0 0;
    font-weight: 700;
    color: var(--color-navy);
    min-height: 2.8em;
    line-height: 1.4;
}

@media (max-width:767px) {
    .statsCard__label {
        min-height: 0;
    }
}

/* ===== 3. surveyTable ===== */
.survay {
    margin-top: 3rem;
}

.surveyTitle {
    text-align: center;
}

.surveyTable {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(15, 27, 45, .10);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.surveyTable__row {
    display: grid;
    grid-template-columns: 180px 1fr;
}

.surveyTable__row+.surveyTable__row {
    border-top: 1px solid rgba(15, 27, 45, .08);
}

.surveyTable__th {
    margin: 0;
    padding: 14px 16px;
    background: #f3f6fb;
    font-weight: 700;
    color: #041A3F;
    border-right: 1px solid rgba(15, 27, 45, .08);
    text-align: center;
}

.surveyTable__td {
    margin: 0;
    padding: 14px 16px;
    color: rgba(15, 27, 45, .85);
    line-height: 1.8;
}

.surveyTable__td a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* SP：縦積みにして読みやすく */
@media (max-width: 640px) {
    .surveyTable__row {
        grid-template-columns: 1fr;
    }

    .surveyTable__th {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 27, 45, .08);
    }
}

/* ===== 4. 核心データカード ===== */
.dataGrid {
    display: grid;
    gap: 22px;
    margin-top: 28px;
    margin-bottom: 2.5rem;
}


.dataCard {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dataCard__head {
    padding: 14px 16px;
    background: #eff4ff;
    border-bottom: 1px solid #dbeafe;
}

.dataCard__eyebrow img {
    width: 60px;
    text-align: left;
    margin-right: auto;
}

.dataCard__eyebrow {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #1a78e5;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 36px;
    justify-content: center;
}

.dataCard__eyebrow span {
    font-size: 0.4em;
}

.dataCard__title {
    margin: 4px 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--color-navy);
    text-align: center;
}

.dataCard__body {
    padding: 16px 16px 18px;
    font-size: 16px;
    line-height: 1.8;
}

.dataCard__body p {
    margin: 0 0 12px;
    min-height: 7em;
}

.dataCard__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dataCard__list li:first-letter {
    color: var(--color-orange);
}

.dataCard__list li {
    color: var(--color-navy);
    font-weight: 700;
    display: block;
}

.dataCard__bullet {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-orange);
    margin-top: 6px;
}

@media (min-width: 900px) {
    .dataGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 899px) {
    .dataCard__body p {
        min-height: 0;
    }
}

/* ===== 5. 中央CTA ===== */
.mid__cta {
    text-align: center;

}

.btn--secondary {
    padding: .9rem 2.5rem;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #fff;
    background: var(--color-cta-btn);
    border-radius: 999px;
}

.btn--secondary .btn__icon {
    width: 16px;
    height: 16px;
}


/* ===== 6. 悩み・課題 ===== */
.problemChecklist {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    line-height: 1.9;
    color: #111827;
    width: min(640px, 100%);
}

.problemChecklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 6px 0;
    position: relative;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #dbeafe;
}

.problemChecklist li:before {
    content: '✓';
    font-size: 28px;
    font-weight: bold;
    color: var(--color-orange);
}

.checkBullet {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--color-orange);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.checkBullet::before {
    content: "✓";
    font-size: 10px;
    color: var(--color-orange);
}

.problemSummary {
    line-height: 1.9;
    color: #0649da;
    text-align: center;
    margin-top: 3rem;
}

.problemSummary p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* ===== 7. この白書はこんな方に ===== */
.targetGrid {
    display: grid;
    gap: 18px;
    margin: 0 auto;
}

.targetList {
    margin: 0 auto 2.5rem;
    padding-left: 1.2em;
    color: #002174;
    background: #fff;
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.targetList li {
    margin: 0.8rem;
    font-weight: 500;
}


.targetGrid p {
    text-align: left;
    font-size: 14px;
    text-indent: -0.8rem;
    margin-left: 1rem;
}

@media (min-width: 780px) {
    .targetGrid {
        grid-template-columns: 3fr 2fr;
    }
}

/* ===== 8. 公開する理由 ===== */


.reasonBody {
    color: #111827;
}

.reasonGrid {
    display: grid;
    gap: 18px;
    margin: 0 auto;
}

.reasonBody p {
    margin: 0 0 12px;
}

.reasonLead {
    font-weight: 700;
    color: var(--color-navy);
}

@media (min-width: 780px) {
    .reasonGrid {
        grid-template-columns: 2fr 3fr;
    }
}

/* ===== 9. 声 ===== */
.voiceGrid {
    display: grid;
    gap: 18px;
    margin: 0 auto;
}

@media (min-width: 780px) {
    .voiceGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.voiceCard {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    padding: 18px 18px 20px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.voiceCard__tag {
    margin: 0 0 8px;
    font-size: 16px;
    color: #002174;
}

.voiceCard__quote {
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--color-navy);
    font-size: 18px;
    font-feature-settings: "palt";
    letter-spacing: 0.02rem;
}

.voiceCard__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--color-border);
    padding-top: 10px;
}

.voiceCard__avatarIcon {
    width: 30px;
    height: 30px;
    flex: 0 0 18px;
    display: block;
}

.voiceCard__avatarIcon {
    width: 50px;
    height: 50px;
    display: block;
    flex: 1 1 20%;
}

.voiceCard__name {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    flex: 1 1 80%;
}

.voiceCard__name span {
    display: block;
    font-weight: bold;
}




/* ===== FAQ ===== */


.lpFaq__list {
    display: grid;
    gap: 18px;
}

.lpFaq__item {
    border-bottom: 1px solid #dbeafe;
    padding-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.lpFaq__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lpFaq__q {
    margin: 0 0 4px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
}

.lpFaq__qLabel {
    color: var(--color-orange);
}

.lpFaq__aLabel {
    font-weight: 700;
    font-size: 18px;
    margin-right: 4px;
}

.lpFaq__a {
    margin: 0.5rem 0 0 1.6rem;
    line-height: 1.8;
    color: #4b5563;
    text-indent: -1.5rem;
}

/* ===== ダウンロードフォームセクション ===== */
.download {
    background: radial-gradient(circle at top, #123c88 0%, #020617 58%);
    color: #ffffff;
    text-align: center;
}


/* 
.download__panel {
    background: rgba(15, 23, 42, 0.78);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    padding: 24px 20px 26px;
    backdrop-filter: blur(10px);
}

.download__field {
    text-align: left;
    margin-bottom: 18px;
}

.download__label {
    display: block;
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
}

.download__required {
    margin-left: 4px;
    font-size: 11px;
    color: #fed7aa;
}

.download__input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.4;
    outline: none;
}

.download__input:focus-visible {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.4);
}

.download__button {
    margin-top: 6px;
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: none;
    background: var(--color-cta-btn);
    ;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.download__button:hover {
    transform: translateY(-1px);
    opacity: 0.94;
}

.download__buttonIcon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: grid;
    place-items: center;
    font-size: 11px;
    position: relative;
}

.download__buttonIcon::before {
    content: "↓";
    transform: translateY(-1px);
} */



/* ===== フッター ===== */
.footer {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    padding: 32px 16px 28px;
}

.footer__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer__brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
    width: 180px;
    margin: 2rem auto;
}

.footer__sub {
    margin: 0 0 18px;
    font-size: 12px;
    color: #6b7280;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    color: #4b5563;
}

.footer__link {
    text-decoration: none;
    color: inherit;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.footer__link:hover {
    color: var(--color-navy);
    opacity: 0.9;
}

.footer__sep {
    color: #d1d5db;
}

.footer__copy {
    margin: 0;
    font-size: 11px;
    color: #9ca3af;
}


.toTop {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9999;

    width: 38px;
    height: 38px;
    border-radius: 8px;

    border: 1px solid rgba(0, 0, 0, .08);
    cursor: pointer;

    background: #0b1f3a;
    font-size: 18px;
    line-height: 1;

    display: grid;
    place-items: center;

    /* フェード＋ふわっと */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* 消えてる時にクリックできない */
    transform: translateY(12px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility 0s linear .25s;
    /* 消える時だけ遅延させてチラつき防止 */
}

.toTop img {
    width: 16px;
    height: auto;
}

.toTop.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility 0s;
    /* 表示は即 visible */
}

@media (prefers-reduced-motion: reduce) {
    .toTop {
        transition: none;
        transform: none;
    }
}