@charset "UTF-8";

/* Component: CTA btn
-------------------------------- */

.c-cta {
    border-radius: var(--radius-xs);
    color: var(--color-white);
    text-align: center;
    transition: var(--transition);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.c-cta:hover {
    color: var(--color-white);
}

.c-cta-green {
    background: var(--color-cta-green);
}

.c-cta-green:hover {
    background: var(--color-cta-green--hover);
}

.c-cta-orange {
    background: var(--color-cta-orange);
}

.c-cta-orange:hover {
    background: var(--color-cta-orange--hover);
}


.header__ctaWrapper {
    gap: 8px;
}

.header__cta {
    width: 160px;
    font-weight: 500;
    padding: 8px;
}

.c-sideForm-cta {
    padding: 15px 25px;
    font-size: 18px;
    letter-spacing: 0.02em;
    width: 100%;
}

.c-fixedCta {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: .3s;
    z-index: 700;
}


.c-fixedCta__button {
    flex: 1;
    display: grid;
    place-items: center;
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    height: 40px;
}


/* Component: section-heading
-------------------------------- */

.c-sec__headingContainer {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-inline: 20px;
}

.c-sec__headingTitle-en {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 2.5px;
}

.c-sec__headingTitle {
    font-size: 36px;
    color: var(--color-text-base);
}

.c-sec__headingTitle-size {
    font-size: 36px;
}

.c-sec__lead {
    margin-top: 32px;
    letter-spacing: 0;
}

/* Component: text
-------------------------------- */

.c-wysiwyg-sm p {
    font-size: 14px;
    line-height: 1.6;
}

/* Component: 変形角丸コンテンツ
-------------------------------- */

.c-corner-secContainer {
    border-radius: var(--radius-md);
    padding: 105px var(--space-xl) var(--space-xl);
    position: relative;
}

.c-corner-labelWrapper {
    position: absolute;
    top: -1px;
    left: -1px;
    background: var(--color-bg);
    border-bottom-right-radius: 20px;
}

.c-corner-labelWrapper:before, .c-corner-labelWrapper:after {
    position: absolute;
    display: inline-block;
    content: '';
    width: 20px;
    height: 20px;
    background: url("../renewal-images/corner.svg") no-repeat;
    background-size: contain;

}

.c-corner-labelWrapper:before {
    left: -1px;
    bottom: 1px;
    transform: translateY(100%);
}

.c-corner-labelWrapper:after {
    right: 1px;
    top: -1px;
    transform: translateX(100%);
}

.c-corner-label__text {
    font-size: 20px;
    padding: 15px 28px;
    position: relative;
    display: inline-block;
    color: var(--color-accent-blue);
    font-weight: 600;
}


/* Component: 18px checkMark
-------------------------------- */
.c-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    flex: 0 0 18px;
}

.c-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 5px;
    width: 6px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* Component: 40px checkMark
-------------------------------- */
.c-check40 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    flex: 0 0 40px;
}

.c-check40::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 9px;
    width: 12px;
    height: 18px;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(45deg);
}

/* Component: 40px バツMark
-------------------------------- */
.c-cross40 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.c-cross40::before,
.c-cross40::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 3px;
    background: #fff;
}

.c-cross40::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.c-cross40::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* ==========================================
SP
========================================== */
@media screen and (max-width: 768px) {
    .c-fixedCta {
        display: flex;
        gap: 10px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, .3);
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
    }

    .c-fixedCta.is-show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .c-sec__headingContainer {
        margin-bottom: var(--space-base);
    }

    .c-sec__headingTitle-en {
        font-size: 10px;
    }

    .c-sec__headingTitle, .c-sec__headingTitle-size {
        font-size: 20px;
    }

    .c-sec__lead {
        margin-top: 20px;
        font-size: 14px;

    }

    .c-corner-label__text {
        font-size: 18px;
    }

    .c-corner-secContainer {
        border-radius: var(--radius-lg);
        padding: 90px var(--space-base) var(--space-base);
        position: relative;
    }

}

@media screen and (max-width: 600px) {
    .c-sec__lead {
        text-align: left;
    }

    .c-sec__headingTitle-size {
        text-align: left;
    }
}