@charset "UTF-8";

/* ============================================================
   top_fv / top_fv_under / sp_btn / cta_btn
   style.css から抜粋
   ============================================================ */

/* ----------------------------------------------------------
   PC スタイル
   ---------------------------------------------------------- */

section#top_fv {
    position: relative;
    height: 700px;
    overflow: hidden;
}

section#top_fv .fv01_image {
    position: absolute;
    inset: 0;
    z-index: -1;
}

section#top_fv .fv01_content {
    height: inherit;
}

section#top_fv .fv01_inner {
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 10px 50px;
    width: min(100%, 1340px);
    margin-inline: auto;
}

section#top_fv .fv01_content .fv01_logo {
    width: 260px;
    margin: 0 0 30px;
}

section#top_fv .fv01_content .fv01_headline_text {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    display: block;
    border-bottom: 1px solid #fff;
    width: fit-content;
}

section#top_fv .fv01_content .fv01_headline_text_sub {
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    display: block;
}

section#top_fv .fv01_content .fv01_headline_text_dot .dot_char {
    position: relative;
    display: inline-block;
}

section#top_fv .fv01_content .fv01_headline_text_dot .dot_char::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

section#top_fv .fv01_image ul li {
    width: 100%;
    margin: 0;
    overflow: hidden;
    height: 700px;
    position: relative;
}

section#top_fv .fv01_image ul li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

section#top_fv .fv01_image ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

section#top_fv .fv01_image ul li img.ken-active {
    animation: fvKenBurns 7s linear forwards;
}

@keyframes fvKenBurns {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.0);
    }
}

section#top_fv_under {
    padding: 130px 0;
}

.top_fv_under_content {
    text-align: center;
}

.top_fv_under_text {
    display: inline;
    background: #ffe600;
    padding: 0.2em 0.5em;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


.top_fv_under_btnwrap {
    width: min(100%, 400px);
    margin-inline: auto;
    position: relative;
    margin-top: 60px;
}

.top_fv_under_btn_image {
    width: min(100%, 150px);
    position: absolute;
    left: 0;
    top: -40px;
}

.top_fv_under_btn_image img {
    aspect-ratio: 80/30;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.top_fv_under_btn {
    display: block;
    background: #d03732;
    padding: 1em .8em 1em 5.5em;
    text-align: center;
    margin-inline: auto;
    text-decoration: none;
    border-right: 5px solid #88211D;
    border-bottom: 5px solid #88211D;
    transition: 0.3s ease-out;
}

.top_fv_under_btn_text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.cta_btn_icon {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 110px;
    height: 75px;
    background: url(/wp-content/themes/child/image/icon_card.png) no-repeat center center / contain;
}

/* ----------------------------------------------------------
   SP スタイル (@media max-width: 750px)
   ---------------------------------------------------------- */

@media (max-width: 750px) {

    section#top_fv {
        height: 120vw;
    }

    section#top_fv .fv01_content {
        padding: 0;
        background-image: none;
    }

    section#top_fv .fv01_content .fv01_inner {
        padding: 5vw;
    }

    section#top_fv .fv01_content .fv01_logo {
        width: 45vw;
        margin: 0 0 4vw;
    }

    section#top_fv .fv01_content .fv01_text {
        font-size: 9vw;
        margin-bottom: 2vw;
    }

    section#top_fv .fv01_content .fv01_headline_text {
        font-size: 9vw;
    }

    section#top_fv .fv01_content .fv01_text_sub {
        font-size: 4vw;
    }

    section#top_fv .fv01_image ul li {
        width: 100%;
        margin: 0;
        height: 120vw;
    }

    section#top_fv .fv01_image ul li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    section#top_fv .fv01_image {
        margin-bottom: 0;
    }

    .sp_btn {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 100;
        background: rgba(0, 0, 0, 0.7);
        padding: 2vw 6vw;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .sp_btn.is-visible {
        opacity: 1;
        visibility: visible;
    }

    @keyframes cta_shimmer {

        0%,
        60% {
            opacity: 0;
            background-position: 200% center;
        }

        70% {
            opacity: 1;
            background-position: 50% center;
        }

        80%,
        100% {
            opacity: 0;
            background-position: -100% center;
        }
    }

    .cta_btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3vw 3vw 3vw 13vw;
        background: #d03732;
        position: relative;
        border-bottom: 5px solid #88211D;
    }

    .cta_btn::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10vw;
        background: linear-gradient(105deg,
                transparent 30%,
                rgba(255, 255, 255, 0.55) 50%,
                transparent 70%);
        background-size: 250% 100%;
        pointer-events: none;
        opacity: 0;
        animation: cta_shimmer 5s ease-in-out infinite;
    }

    .cta_btn_icon {
        position: absolute;
        left: 0vw;
        top: -7vw;
        width: 26vw;
        height: 24vw;
        background: url(/wp-content/themes/child/image/icon_card.png) no-repeat center center / contain;
    }

    .cta_btn_text {
        font-size: 4vw;
        font-weight: bold;
        color: #fff;
    }

    section#top_fv_under {
        padding: 2vw 0 20vw;
    }

    section#top_fv_under .content {
        width: 100%;
    }

    section#top_fv_under .image {
        width: 100%;
        margin-bottom: 5vw;
    }

    .top_fv_under_text {
        border-radius: 1.28vw;
        font-size: 3.59vw;
    }


    .top_fv_under_btnwrap {
        width: min(100%, 76vw);
        margin-top: 10vw;
    }

    .top_fv_under_btn_image {
        width: min(100%, 30vw);
        left: 22vw;
        top: -9vw;
    }

    .top_fv_under_btn_text {
        font-size: 4vw;
    }

}

@media (any-hover: hover) {
    .top_fv_under_btn:hover {
        opacity: 0.7;
    }
}