@charset "utf-8";

.cta-btn-wrap {
    padding: 0 clamp(20px, calc(96 / 1440 * 100vw), 96px); !important;
}

@media screen and (max-width: 767px) {
    .cta-btn-wrap {
        padding: 0 18px !important;
    }
}

.cta-btn-inner {
    display: flex;
    gap: 32px;
    max-width: 1040px;
    margin: 0 auto;
}

@media screen and (max-width: 1023px) {
    .cta-btn-inner {
        flex-direction: column;
        align-items: center;
    }
}

.cta-btn {
    width: 100% !important;
    height: 143px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: contain;
    background-position: right;
    background-color: #333;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: normal !important;
    transition: all 0.3s ease-in-out;
    background-image: url(../../../img/film/protection_top/cta-btn-bg.png);
    font-size: 20px !important;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    .cta-btn {
        font-size: 16px !important;
        padding: 18px !important;
        height: 134px !important;
        background-image: url(../../../img/film/protection_top/cta-btn-bg-sp.png);
    }
}

.cta-btn br {
    display: none;
}

@media screen and (max-width: 767px) {
    .cta-btn br {
        display: block;
    }
}

.cta-btn:hover {
    opacity: 0.8;
}

.cta-btn:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ffffff;
    border-right: 0;
    top: 0;
    bottom: 0;
    right: 80px;
    margin: auto;
}
@media screen and (max-width: 767px) {
    .cta-btn:after {
        right: 20px;
    }
}