@charset "UTF-8";

.internalPageLayout__inner {
    padding-top: 24.5vw;
}
.breadcrumb {
    display: none;
}
.rec_page {
    background-color: #fff;
    font-family: "Noto Sans JP", serif;
}
.pc_only {
    display: none;
}
.sp_only {
    display: block;
}

@media screen and (min-width: 641px) {

    .internalPageLayout__inner {
        padding-top: 120px;
    }
    .breadcrumb {
        display: block;
    }
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none;
    }
    .hover_effect {
        display: block;
        position: relative;
        transition: filter 0.25s ease;
    }
    .hover_effect img {
        display: inline-block;
        position: relative;
        transition: filter 0.25s ease;
    }
    .hover_effect img:after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.12);
        opacity: 0;
        transition: opacity 0.25s ease;
        pointer-events: none;
    }
    .hover_effect:hover {
        filter: brightness(1.06) contrast(0.95);
    }
    .hover_effect:hover::after {
        opacity: 1;
    }

}

/* エントリーフォーム */
.sec_entry {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-bottom: 20px;
    background: -webkit-gradient(linear, left top, right top, color-stop(.1%, #009FE2), color-stop(99.54%, #019C67));
    background: linear-gradient(90deg, #009FE2 .1%, #019C67 99.54%);
}
.sec_entry_container {
    padding: 4vw 6.4vw;
}
.sec_entry_hl {
    color: #fff;
    font-size: 6vw;
    padding-bottom: 10px;
    font-weight: bold;
}
.sec_entry_txt {
    color: #fff;
    font-size: 3.5vw;
    line-height: 1.6;
}
.sec_entry_txt a {
    color: #fff;
    text-decoration: underline;
}
.entry_mynavi {
    padding: 5px 0 20px;
}
.sec_entry_inner {
    padding-bottom: 10px;
}

@media screen and (min-width: 641px) {

    .sec_entry_container {
        max-width: 1366px;
        margin: 0 auto;
        padding: 20px 80px 50px;
    }
    .sec_entry_hl {
        font-size: 43px;
        padding-bottom: 10px;
    }
    .sec_entry_inner {
        padding: 0 40px 40px;
    }
    .sec_entry_txt {
        font-size: 18px;
    }
    .entry_mynavi {
        padding: 15px 0 40px;
    }

}

/* 送信完了画面 */
.sec_entry_thx_txt {
    color: #fff;
    font-size: 3.5vw;
    line-height: 1.6;
}
.sec_entry_thx_txt a {
    color: #fff;
    text-decoration: underline;
}
.sec_entry_thx_txt + .sec_entry_thx_txt {
    margin-top: 10px;
}

@media screen and (min-width: 641px) {

    .sec_entry_thx_txt {
        font-size: 18px;
    }
    .sec_entry_thx_txt + .sec_entry_thx_txt {
        margin-top: 30px;
    }

}