@charset "UTF-8";

/*---------------------------------------------------------
Base / Tokens
---------------------------------------------------------*/
:root {
    --c-navy: #0b2a5a;
    --c-navy2: #182A81;
    --c-blue: #2c78c6;
    --c-blue2: #1E6CC3;
    --c-bg-soft: #f3f6fb;
    --c-bg-soft-2: #F5F7FF;
    --c-yellow: #ffe600;

    --shadow-lg: 0 16px 40px rgba(0, 0, 0, .18);

    --r-lg: 16px;
    --r-md: 16px;

    /* Typography (8px scale) */
    --fz-min: 12px;
    /* 一番小さい文字 */
    --fz-14: 14px;
    /* 二番目に小さい文字 */
    --fz-base: 16px;
    /* ベース */
    --fz-20: 20px;
    /* ベース */
    --fz-24: 24px;
    /* h3 基準 */
    --fz-32: 32px;
    /* 特典01見出しのベース */
    --fz-h2: 40px;
    /* h2 基準 */
}

@media (max-width: 960px) {
    :root {
        --fz-base: 14px;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .btn__main {
        font-size: 20px !important;
    }
}

/*---------------------------------------------------------
Layout / Utilities
---------------------------------------------------------*/
body {
    letter-spacing: -0.02em;
}

/*---------------------------------------------------------
Components / Button（Aを正に統一）
---------------------------------------------------------*/
.btn {
    margin: 0;
}

.btn a {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 20px;
    border-radius: 999px;
    text-decoration: none;

    background: #FFFF3B;
    color: var(--c-navy);
    font-weight: 600;
    box-shadow: 0 8px 0 #C7C83C !important;
}

.btn__main {
    font-size: var(--fz-20);
    line-height: 1.2;
}

body {
    font-feature-settings: "palt";
}

.floating-message {
    right: 45px;
}

.floating-message::before {
    right: 64px;
}

.floating-message::after {
    right: 65px;
}

/*---------------------------------------------------------
Hero MV
---------------------------------------------------------*/
.mvarea {
    position: relative;
    background: url("common/img/bg_hero.jpg") center center / cover no-repeat;
    width: 100%;
    min-height: 680px;
    color: #fff;
    overflow: hidden;
}

.mvarea::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 29, 50, .72) 0%, rgba(12, 29, 50, .36) 38%, rgba(12, 29, 50, .10) 100%);
}

.mvarea__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 147px 16px 80px;
}

.mvarea__kicker {
    display: inline-block;
    margin: 0;
    padding: 2px 10px;
    background: #0C1D32;
    color: #fff;
    font-size: var(--fz-base);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.04em;
}

.mvarea__sub {
    margin: 12px 0 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.mvarea__logo {
    margin: 8px 0 0;
    width: min(460px, 100%);
    height: 56px;
}

.mvarea__logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.mvarea__copy {
    margin-top: 24px;
}

.mvarea__copy p {
    margin: 0 0 8px;
}

.mvarea__copy span {
    display: inline-block;
    padding: 2px 8px;
    background: #fff;
    color: #0C1D32;
    font-weight: 700;
    font-size: var(--fz-base);
    line-height: 1.75;
    letter-spacing: 0.04em;
}

.mvarea__btn {
    margin-top: 20px;
}

.mvarea__btn .btn__main {
    font-size: var(--fz-20);
}

@media (max-width: 960px) {
    .mvarea {
        min-height: 560px;
        background-position: center;
    }

    .mvarea__inner {
        padding-top: 92px;
        padding-bottom: 56px;
    }

    .mvarea__kicker {
        font-size: var(--fz-min);
        line-height: 1.8;
    }

    .mvarea__sub {
        font-size: 18px;
    }

    .mvarea__logo {
        width: min(360px, 100%);
        height: 44px;
    }

    .mvarea__copy {
        margin-top: 16px;
    }

    .mvarea__copy span {
        font-size: var(--fz-14);
    }

    .mvarea__btn .btn__main {
        font-size: var(--fz-24);
    }
}

/*---------------------------------------------------------
Shared / Section Common
---------------------------------------------------------*/
.fv-promise__inner,
.fv-reason__inner,
.ctaReserve__inner,
.fv-caseStudy__inner,
.fv-flowLite__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

.fv-promise__en,
.fv-reason__en,
.fv-caseStudy__en,
.fv-flowLite__en {
    margin: 0;
    color: var(--c-blue2);
    font-family: "Roboto", sans-serif;
    font-size: var(--fz-24);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.fv-promise__title,
.fv-reason__title,
.fv-caseStudy__title,
.fv-flowLite__title {
    color: #0C1D32;
    font-size: var(--fz-h2);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.fv-promise__text,
.fv-reason__text,
.fv-caseStudy__text,
.fv-flowLite__text {
    margin: 0;
    color: #404040;
    font-size: var(--fz-base);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.fv-promise__image,
.fv-reason__image,
.fv-caseStudy__image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.fv-promise__image img,
.fv-reason__image img,
.fv-caseStudy__image img {
    display: block;
    width: 100%;
    height: calc(100% + 28px);
    object-fit: cover;
    object-position: center top;
    transform: translateY(-14px);
}

/*---------------------------------------------------------
Section / FV Promise（FV直下）
---------------------------------------------------------*/
.fv-promise {
    background: var(--c-bg-soft-2);
    padding: 80px 0;
}

.fv-promise__en {
    text-align: center;
}

.fv-promise__title {
    margin: 6px 0 40px;
    line-height: 1.6;
    text-align: center;
}

.fv-promise__title span {
    font-size: var(--fz-24);
    line-height: 1.6;
}

.fv-promise__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.fv-promise__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fv-promise__image {
    aspect-ratio: 5 / 3;
}

.fv-promise__cardTitle {
    margin: 0;
    color: #0A3464;
    font-size: var(--fz-24);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.65;
    text-align: center;
}

.fv-promise__text {
    line-height: 1.8;
}

@media (max-width: 960px) {
    .fv-promise {
        padding: 56px 0;
    }

    .fv-promise__title {
        margin: 4px 0 28px;
        font-size: 32px;
        line-height: 1.4;
    }

    .fv-promise__title span {
        font-size: var(--fz-20);
    }

    .fv-promise__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fv-promise__card {
        max-width: 520px;
        margin: 0 auto;
        gap: 12px;
    }

    .fv-promise__cardTitle {
        font-size: var(--fz-24);
    }
}

/*---------------------------------------------------------
Section / FV Reason（FV直下）
---------------------------------------------------------*/
.fv-reason {
    background: #fff;
    padding: 80px 0;
}

.fv-reason__en {
    text-align: center;
}

.fv-reason__title {
    margin: 2px 0 40px;
    line-height: 1.35;
    text-align: center;
}

.fv-reason__title span {
    font-size: var(--fz-24);
    line-height: 1.6;
}

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

.fv-reason__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fv-reason__image {
    aspect-ratio: 23 / 12;
}

.fv-reason__cardTitle {
    margin: 0;
    color: #0A3464;
    font-size: var(--fz-24);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: center;
}

.fv-reason__text {
    line-height: 2;
}

@media (max-width: 960px) {
    .fv-reason {
        padding: 56px 0;
    }

    .fv-reason__title {
        margin: 4px 0 28px;
        font-size: 34px;
        line-height: 1.35;
    }

    .fv-reason__title span {
        font-size: var(--fz-20);
    }

    .fv-reason__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fv-reason__card {
        max-width: 520px;
        margin: 0 auto;
        gap: 12px;
    }

    .fv-reason__cardTitle {
        font-size: var(--fz-24);
        line-height: 1.6;
    }
}

/*---------------------------------------------------------
Section / CTA Reserve（背景画像CTA）
---------------------------------------------------------*/
.ctaReserve {
    position: relative;
    background: url("common/img/bg_kobetsusoudan.jpg") center bottom / cover no-repeat;
    padding: 80px 0 !important;
    color: #fff;
}

.ctaReserve::before {
    content: none;
}

.ctaReserve__inner {
    position: relative;
    z-index: 1;
}

.ctaReserve__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.ctaReserve__title {
    margin: 0;
    font-size: var(--fz-h2);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.ctaReserve__lead {
    margin: 0;
    font-size: var(--fz-14);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.04em;
    color: #fff;
}

.ctaReserve__action {
    text-align: center;
    width: 100%;
    max-width: 474px;
}

@media (max-width: 960px) {

    .ctaReserve {
        padding: 64px 0 !important;
        background-image: url(common/img/bg_kobetsusoudan.jpg);
        background-position: 74% bottom;
    }

    .ctaReserve__content {
        gap: 12px;
    }

    .ctaReserve__title {
        font-size: 36px;
        line-height: 1.4;
    }

    .ctaReserve__lead {
        font-size: var(--fz-min);
        line-height: 1.8;
    }

    .btn a {
        width: 100%;
        padding: 16px 18px;
    }

    .btn__main {
        font-size: var(--fz-24);
    }
}

/*---------------------------------------------------------
Section / FV Case Study
---------------------------------------------------------*/
.fv-caseStudy {
    background: #fff;
    padding: 80px 0;
}

.fv-caseStudy__head {
    text-align: center;
}

.fv-caseStudy__en {
    text-align: center;
}

.fv-caseStudy__title {
    margin: 4px 0 24px;
    line-height: 1.4;
    text-align: center;
}

.fv-caseStudy__lead {
    margin: 0;
    color: #0D0100;
    font-size: var(--fz-base);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}

.fv-caseStudy__grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.fv-caseStudy__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fv-caseStudy__type {
    width: fit-content;
    margin: 0 auto;
    color: #0D0100;
    font-size: var(--fz-base);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
    padding-bottom: 4px;
    border-bottom: 1px solid #404040;
}

.fv-caseStudy__cardTitle {
    margin: 0;
    color: #0A3464;
    font-size: var(--fz-24);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: center;
}

.fv-caseStudy__image {
    aspect-ratio: 304 / 208;
}

.fv-caseStudy__tag {
    margin: 0 auto;
    min-width: 64px;
    height: 32px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--c-blue2);
    color: var(--c-blue2);
    font-size: var(--fz-base);
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.04em;
}

.fv-caseStudy__tag--solve {
    background: var(--c-blue2);
    color: #fff;
    border-color: var(--c-blue2);
    font-weight: 700;
}

.fv-caseStudy__text {
    line-height: 1.7;
}

@media (max-width: 960px) {
    .fv-caseStudy {
        padding: 56px 0;
    }

    .fv-caseStudy__title {
        font-size: 34px;
    }

    .fv-caseStudy__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fv-caseStudy__card {
        max-width: 520px;
        margin: 0 auto;
    }

    .fv-caseStudy__cardTitle {
        font-size: var(--fz-24);
    }
}

/*---------------------------------------------------------
Section / FV Flow Lite
---------------------------------------------------------*/
.fv-flowLite {
    background: #F5F7FF;
    padding: 80px 0;
}

.fv-flowLite__head {
    text-align: center;
}

.fv-flowLite__en {
    text-align: center;
}

.fv-flowLite__title {
    margin: 2px 0 40px;
    line-height: 1.4;
    text-align: center;
}

.fv-flowLite__list {
    border-top: 1px solid #d7dbe3;
}

.fv-flowLite__item {
    display: flex;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #d7dbe3;
}

.fv-flowLite__num {
    margin: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0A3464;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: var(--fz-20);
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    flex: 0 0 48px;
}

.fv-flowLite__content {
    flex: 1;
    padding-top: 2px;
}

.fv-flowLite__itemTitle {
    margin: 0;
    color: #0D0100;
    font-size: var(--fz-24);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.fv-flowLite__text {
    margin-top: 8px;
    line-height: 2;
}

@media (max-width: 960px) {
    .fv-flowLite {
        padding: 80px 0;
    }

    .fv-flowLite__title {
        margin-bottom: 28px;
        font-size: 34px;
    }

    .fv-flowLite__item {
        align-items: flex-start;
        padding: 16px 0;
    }

    .fv-flowLite__text {
        font-size: var(--fz-14);
        line-height: 1.8;
    }
}


.nav .navR a.contact {
    width: 230px;
}
