/* =============================
   LP: Complete Rescue
   ============================= */

/* ---- Global Tokens ---- */
.complete-rescue {
    --cr-accent: #513d36;
    --cr-text: #513d36;
    --cr-bg:#FFF8EF;
    --cr-max: 1000px;
    --cr-gutter: 92%;
    --cr-py: clamp(28px, 5vw, 56px);
    --cr-lead-fz: clamp(17px, 3vw, 24px);
    --cr-h2-fz: clamp(22px, 3.4vw, 32px);
    --cr-text-fz: clamp(15px, 2.1vw, 17px);
    
}

/* =======================================
   Section 共通
======================================= */


.section-space {
    padding-block: clamp(32px, 4vw, 50px);
}

@media (max-width: 767px) {
    .section-space {
        padding-block: 15px;
    }
}

.complete-rescue h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #513D36;
    text-align: center;
    line-height: 1.4;
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 clamp(24px, 4vw, 40px);
}

.complete-rescue .bold {
    font-weight: bold;
}

.complete-rescue h2::before,
.complete-rescue h2::after {
    content: none !important;
    display: none !important;
}



.section-title--sm {
    font-size: clamp(18px, 2.2vw, 24px);
}

.complete-rescue__fv .cr-fv__inner,
.complete-rescue__about-stasis .cr-as__inner,
.complete-rescue__mechanism .cr-mc__inner,
.complete-rescue__movie .cr-mv__inner,
.complete-rescue__faq .cr-faq__inner,
.complete-rescue__cta .cr-cta__inner {
    width: min(var(--cr-max), var(--cr-gutter));
    margin: 0 auto;
    color: var(--cr-text);
}

.sp-br {
    display: none;
}

@media (max-width:767px) {
    .sp-br {
        display: block;
    }
}

@media (max-width: 767px) {
    .complete-rescue h2 {
        font-size: clamp(20px, 5vw, 26px);
        line-height: 1.4;
        text-align: left;
        margin: 0 0 24px;
        padding: 0 8px;
    }

    .section-space h2+* {
        margin-top: 12px;
    }
}


/* =============================
    First View
============================= */
.complete-rescue__fv .cr-fv {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background: url("../images/lp_rescue/fv.jpg") center/cover no-repeat;
    color: #fff;
    
}

.complete-rescue__fv .cr-fv__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.complete-rescue__fv .cr-fv__inner {
    width: 1200px;
    position: relative;
    z-index: 1;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.complete-rescue__fv .cr-fv__title {
    margin: 40px 0;
    font-size: clamp(26px, 5.6vw, 46px);
    line-height: 1.22;
}

.complete-rescue__fv .cr-fv__lead {
    margin: 0 0 20px;
    font-size: var(--cr-lead-fz);
    opacity: .95;
}


.complete-rescue__fv .cr-fv__btns {
    margin-top: clamp(80px, 30vh, 380px);
    display: flex;
    justify-content: center;
    gap: 14px 18px;
    flex-wrap: wrap;
}

.complete-rescue__fv .cr-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .9em 1.6em;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .06s ease;
    user-select: none;
}

.complete-rescue__fv .cr-btn--glass {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.complete-rescue__fv .cr-btn--glass:hover,
.complete-rescue__fv .cr-btn--glass:focus-visible {
    background: var(--cr-accent);
    border-color: var(--cr-accent);
    color: #fff;
    box-shadow: 0 8px 22px rgba(81, 61, 54, .35);
}

.complete-rescue__fv .cr-btn--glass:active {
    transform: translateY(1px);
}

.complete-rescue__fv .cr-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .complete-rescue__fv .cr-btn--glass {
        background: rgba(0, 0, 0, .28);
    }
}


/* FV: SP */
@media (max-width: 767px) {
    .complete-rescue__fv .cr-fv {
        min-height: 60vh;
    }

    .complete-rescue__fv .cr-fv__inner {
        min-height: 60vh;
        padding-inline: clamp(12px, 4.5vw, 20px);
    }

    .complete-rescue__fv .cr-fv__title {
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.28;
        text-wrap: balance;
        word-break: normal;
    }

    .complete-rescue__fv .cr-fv__lead {
        font-size: clamp(14px, 4.2vw, 16px);
        line-height: 1.8;
        text-wrap: pretty;
        word-break: normal;
    }

    .complete-rescue__fv .cr-fv__btns {
        flex-direction: column;
        gap: 1rem;
        margin-top: clamp(16px, 6dvh, 48px);
    }

    .complete-rescue__fv .cr-btn {
        width: 80%;
        margin: 0 auto;

    }

}

/* =============================
    About Stasis
============================= */

.complete-rescue__about-stasis{
    background-color: var(--cr-bg);
}

.complete-rescue__about-stasis .cr-as__title {
    text-align: center;
    margin: 0 0 clamp(18px, 3vw, 28px);
    line-height: 1.3;
}

.complete-rescue__about-stasis li {
    font-weight: bold;
}

.complete-rescue__about-stasis .cr-as__image img {
    display: block;
    margin: clamp(20px, 5vw, 64px) auto;
}


.complete-rescue__about-stasis .cr-as__media {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 2.4vw, 20px);
    margin: clamp(16px, 3vw, 24px) 0 clamp(20px, 4vw, 36px);
}

.complete-rescue__about-stasis .cr-as__img {
    overflow: hidden;
}

.complete-rescue__about-stasis .cr-as__img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .complete-rescue__about-stasis .cr-as__media {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.complete-rescue__about-stasis .cr-as__body,
.complete-rescue__about-stasis .cr-as__body--rebuild {
    font-size: var(--cr-text-fz);
    line-height: 1.9;
    padding-bottom: clamp(32px, 4vw, 50px);
}

.complete-rescue__about-stasis .cr-as__body p+p,
.complete-rescue__about-stasis .cr-as__body--rebuild p+p {
    margin-top: .9em;
}

.complete-rescue__about-stasis .cr-as__subtitle {
    text-align: center;
    margin: clamp(18px, 3.2vw, 28px) 0 clamp(14px, 2.6vw, 22px);
    font-size: clamp(18px, 2.6vw, 24px);
    line-height: 1.4;
    padding: 0;
}

.complete-rescue__about-stasis .cr-as__illust {
    margin: clamp(14px, 3vw, 22px) auto clamp(16px, 4vw, 28px);
    text-align: center;
}

.complete-rescue__about-stasis .cr-as__illust img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;

}


/* =============================
    Mechanism
============================= */


.complete-rescue__mechanism .cr-mc__title {
    text-align: center;
    font-size: var(--cr-h2-fz);
    line-height: 1.3;
    margin: 0 0 clamp(24px, 4vw, 40px);
}


.complete-rescue__mechanism .cr-mc__illust {
    margin: clamp(14px, 3vw, 22px) auto clamp(16px, 4vw, 28px);
    text-align: center;
}

.complete-rescue__mechanism .cr-mc__illust img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.complete-rescue__mechanism .cr-mc__ph {
    display: grid;
    place-items: center;
    height: 320px;
    border-radius: 10px;
    background: #e5e5e5;
    color: var(--cr-text);
    font-weight: 700;
    line-height: 1.7;
}

.complete-rescue__mechanism .cr-mc__desc {
    margin: clamp(10px, 2.6vw, 18px) 0 clamp(14px, 3vw, 22px);
    font-size: clamp(14px, 2.1vw, 16px);
    line-height: 1.9;
}

.cr-mc__list-detail {
    list-style: none;
    margin: clamp(16px, 3vw, 24px) 0;
    padding: 0;
}

.cr-mc__detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: clamp(12px, 2vw, 20px) 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.cr-mc__detail:first-child {
    border-top: none;
}

.cr-mc__icon {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: .4rem;
}

.cr-mc__icon img {
    width: 24px;
    height: 24px;
    display: block;
}


.cr-mc__heading {
    font-weight: 700;
    font-size: clamp(15px, 2.2vw, 17px);
    margin: 0 0 .3rem;
    line-height: 1.6;
}

.cr-mc__sublist {
    list-style: none;
    margin: 0;
    padding-left: 1em;
    font-size: clamp(14px, 2.1vw, 16px);
    line-height: 1.8;
    color: var(--cr-text);
}

.cr-mc__sublist li::before {
    content: "・";
    margin-right: .3em;
    color: currentColor;
    opacity: .6;
}



/* =============================
    Movie
============================= */

.complete-rescue__movie {
    background-color: var(--cr-bg);
}

.complete-rescue__movie .cr-mv__leadtop {
    text-align: center;
    margin: 0 0 clamp(10px, 2.6vw, 16px);
    line-height: 1.8;
    font-size: clamp(15px, 2.3vw, 17px);
}

.complete-rescue__movie .cr-mv__leadlist {
    list-style: none;
    margin: 0 0 clamp(14px, 3vw, 22px);
    padding-left: 1.2em;
}

.complete-rescue__movie .cr-mv__leadlist li {
    position: relative;
    line-height: 1.9;
    font-size: clamp(14px, 2.1vw, 16px);
    font-weight: bold;
}

.complete-rescue__movie .cr-mv__leadlist li::before {
    content: "•";
    position: absolute;
    left: -1.2em;
    color: currentColor;
}

.complete-rescue__movie .cr-mv__desc {
    margin: 0 0 clamp(12px, 2.6vw, 16px);
    font-size: clamp(14px, 2.1vw, 16px);
    opacity: .95;
}

/* 動画 */
.complete-rescue__movie .cr-mv__video-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    background: #513D36;
    margin: 0 0 clamp(18px, 4vw, 28px);
}

.complete-rescue__movie .cr-mv__thumb {
    display: block;
    width: 100%;
    height: auto;
}

.complete-rescue__movie .cr-mv__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 64px;
    color: #fff;
    background: rgba(0, 0, 0, .35);
    border: none;
    cursor: pointer;
    transition: background .2s ease;
}

.complete-rescue__movie .cr-mv__play:hover,
.complete-rescue__movie .cr-mv__play:focus-visible {
    background: rgba(0, 0, 0, .5);
    outline: none;
}

.complete-rescue__movie .cr-mv__video {
    display: none;
    width: 100%;
    height: auto;
}

.complete-rescue__movie .cr-mv__video.is-active {
    display: block;
}

/* ▼ 動画キャプション */
.complete-rescue__movie .cr-mv__caption {
    margin-top: clamp(8px, 2vw, 12px);
    font-size: clamp(13px, 2vw, 15px);
    text-align: center;
    color: #fff;
    line-height: 1.6;
}


.complete-rescue__movie .cr-mv__illust img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.complete-rescue .cr-mv__context {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: var(--cr-lead-fz);
    line-height: 1.8;
}

.complete-rescue__movie .cr-mv__partners {
    list-style-type: disc;
    margin: .2rem 0 .8rem;
    padding: 0 20px;
}

.complete-rescue__movie .cr-mv__partners li {
    padding: .25rem 0;
}

.complete-rescue__movie .cr-mv__linkline {
    margin: .2rem 0 0;
}

.complete-rescue__movie .cr-mv__linktext {
    text-decoration: underline;
    color: inherit;
}



/* =============================
    FAQ
============================= */
.complete-rescue__faq .cr-faq__title {
    text-align: center;
    margin: 0 0 clamp(14px, 2.6vw, 20px);
    font-size: clamp(18px, 2.8vw, 22px);
}

.complete-rescue__faq .cr-faq__list {
    margin: 0;
    padding: 0;
}

.complete-rescue__faq .cr-faq__item {
    padding: clamp(12px, 2.2vw, 16px) 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.complete-rescue__faq .cr-faq__item:first-child {
    border-top: none;
}

.complete-rescue__faq dt {
    font-weight: 700;
    margin: 0 0 .25rem;
}

.complete-rescue__faq dd {
    margin: 0;
    line-height: 1.9;
    font-size: var(--cr-text-fz);
}

/* =============================
    CTA
============================= */

.cr-cta__inner {
    position: relative;
    max-width: var(--mv-width, 1200px);
    margin-inline: auto;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
}

.cr-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}


.cr-cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .55) 0%,
            rgba(255, 255, 255, .25) 40%,
            rgba(255, 255, 255, 0) 100%);
}

.cr-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% 80%;
}

.cr-cta__content {
    position: relative;
    z-index: 1;
    padding: clamp(16px, 4vw, 40px);
    color: #fff;
    text-align: center;
}

.cr-cta__lead {
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.8;
    text-shadow: 0 3px 6px rgba(0, 0, 0, .70);
}



@media (max-width: 767px) {
    .cr-cta__inner {
        aspect-ratio: 4 / 5;
    }

    .cr-cta__bg img {
        object-position: 35% 50%;
    }

}


.complete-rescue__cta .cr-cta__content {
    width: 100%;
    margin: 0 auto;
}


.complete-rescue__cta .cr-cta__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    max-width: 720px;
    margin: 0 auto;
}


.complete-rescue__cta .cr-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .9em 1.6em;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background-color .2s ease, border-color .2s ease,
        box-shadow .2s ease, transform .06s ease;
}


.complete-rescue__cta .cr-cta__btn:hover,
.complete-rescue__cta .cr-cta__btn:focus-visible {
    background: #513d36;
    border-color: #513d36;
    box-shadow: 0 8px 22px rgba(81, 61, 54, .35);
}

.complete-rescue__cta .cr-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}


.complete-rescue__cta .cr-cta__btn:active {
    transform: translateY(1px);
}


.complete-rescue__cta .cr-cta__btn--solo {
    flex-basis: 100%;
    max-width: 360px;
    margin: 2px auto 0;
}

@media (max-width:600px) {
    .complete-rescue__cta .cr-cta__btns {
        max-width: none;
    }

    .complete-rescue__cta .cr-cta__btn--solo {
        max-width: none;
    }
}

@media (hover:hover) {

    .complete-rescue__cta .cr-cta__btn:hover,
    .complete-rescue__cta .cr-cta__btn:focus-visible {
        background: var(--cr-accent);
        border-color: var(--cr-accent);
        box-shadow: 0 8px 22px rgba(81, 61, 54, .35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .complete-rescue__cta .cr-cta__btn {
        transition: none;
    }
}


@media (max-width: 767px) {
    .complete-rescue__cta .cr-cta__btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 320px;
        margin-inline: auto;
    }


    .complete-rescue__cta .cr-cta__btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        padding-block: 12px;
        font-size: clamp(14px, 4vw, 16px);
    }
}