/* =========================================
   MOS LP
========================================= */
.mos-page {
    background: #fff;
}

.mos-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: #eef4fb;
}

.mos-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mos-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.mos-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(8, 56, 122, 0.88) 0%,
            rgba(20, 95, 190, 0.76) 36%,
            rgba(255, 255, 255, 0.10) 70%,
            rgba(255, 255, 255, 0.00) 100%);
}

.mos-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    min-height: 680px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
}

.mos-hero__content {
    max-width: 560px;
    color: #fff;
}

.mos-hero__label {
    display: inline-block;
    margin: 0 0 20px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
}

.mos-hero__title {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .02em;
    color: #fff;
}

.mos-hero__lead {
    margin: 0 0 22px;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.5;
    font-weight: 700;
    color: #ffe16a;
}

.mos-hero__text {
    margin: 0 0 28px;
    font-size: 2rem;
    line-height: 2;
    color: rgba(255, 255, 255, .96);
}

.mos-hero__points {
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}

.mos-hero__points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 18px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
}

/* アイコン */
.mos-hero__points li::before {
    content: "✓";
    flex: 0 0 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: #0d5bc0;

    font-size: 0.9rem;
    font-weight: 800;

    margin-top: 6px;
    /* 1行目と揃える */
}

.mos-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.mos-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 2rem;
    transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.mos-hero__btn:hover {
    transform: translateY(-2px);
    opacity: .95;
}

.mos-hero__btn--primary {
    background: linear-gradient(135deg, #ff9c1a, #ff6a00);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 106, 0, .28);
}

.mos-hero__btn--sub {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .32);
    backdrop-filter: blur(4px);
}

@media (max-width: 1024px) {
    .mos-hero {
        min-height: auto;
    }

    .mos-hero__inner {
        min-height: auto;
        padding: 64px 28px;
    }

    .mos-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(8, 56, 122, 0.84) 0%,
                rgba(20, 95, 190, 0.76) 45%,
                rgba(8, 56, 122, 0.64) 100%);
    }

    .mos-hero__bg img {
        object-position: center;
    }

    .mos-hero__content {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .mos-hero__inner {
        padding: 54px 20px;
    }

    .mos-hero__title {
        font-size: 2.2rem;
    }

    .mos-hero__lead {
        font-size: 1.25rem;
    }

    .mos-hero__text,
    .mos-hero__points li {
        font-size: .98rem;
    }

    .mos-hero__buttons {
        flex-direction: column;
    }

    .mos-hero__btn {
        width: 100%;
    }
}

.mos-trouble {
    padding: 90px 20px;
    background: #f7fafc;
}

.mos-trouble__inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.mos-trouble__sub {
    margin: 0 0 14px;
    color: #0d5bc0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
}

.mos-trouble__title {
    margin: 0 0 40px;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.4;
    font-weight: 800;
    text-align: center;
    color: #1b2b45;
}

.mos-trouble__list {
    max-width: 860px;
    margin: 0 auto 36px;
    padding: 0;
    list-style: none;
}

.mos-trouble__list li {
    position: relative;
    margin-bottom: 18px;
    padding: 24px 24px 24px 72px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(21, 53, 93, 0.08);
    font-size: 1.8rem;
    line-height: 1.9;
    color: #2d3c55;
}

.mos-trouble__list li::before {
    content: "!";
    position: absolute;
    left: 24px;
    top: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e8f1ff;
    color: #0d5bc0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.mos-trouble__lead {
    margin: 0;
    text-align: center;
    font-size: clamp(1.8rem, 2.5vw, 1.3rem);
    line-height: 1.9;
    font-weight: 700;
    color: #1b2b45;
}

@media (max-width: 768px) {
    .mos-trouble {
        padding: 70px 20px;
    }

    .mos-trouble__title {
        margin-bottom: 28px;
    }

    .mos-trouble__list li {
        padding: 18px 18px 18px 58px;
        font-size: 1rem;
        line-height: 1.8;
        border-radius: 16px;
    }

    .mos-trouble__list li::before {
        left: 18px;
        top: 18px;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .mos-trouble__lead {
        font-size: 1.05rem;
    }
}