@charset "UTF-8";

.bg {
    background: url(/img/checkup/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

.hero {
    margin-bottom: 135px;
}

.page_ttl {
    font-size: 50px;
    text-align: center;
    margin-bottom: -40px;
}

.intro_img {
    text-align: center;
}

.intro {
    text-align: center;
    font-size: 23px;
    margin: -40px 0 60px;
}

.pre_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.pre_list_cnt {
    width: 100%;
    max-width: 460px;
    height: 312px;
    background: #EFEFEF;
    padding: 70px 35px;
}

.pre_list .pre_list_cnt:nth-child(2) {
    background: #F6F3EC;
}

.pre_list_cnt_ttl {
    font-size: 23px;
    margin-bottom: 20px;
    text-align: center;
}

.pre_list_cnt_txt {
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.pre_note {
    font-size: 20px;
    text-align: center;
}

.link_checkup {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 5px;
    border-bottom: solid 1px #000;
    transition-duration: 0.5s;
}

.link_checkup:hover {
    opacity: 0.7;
}

.link_checkup::after {
    content: '';
    width: 16px;
    height: 14px;
    background: url(/img/checkup/icon-checkup.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
}


/* cost */

.cost .inner {
    max-width: 1040px;
}

.cost_ttl {
    font-size: 23px;
    margin-bottom: 20px;
}

.cost_list {
    margin-bottom: 10px;
}

.note {
    font-family: 'Noto Sans JP', sans-serif;
}


@media screen and (max-width: 767px) {

    .bg {
        background: url(/img/checkup/bg_sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .hero {
        margin-bottom: 60px;
    }
    
    .page_ttl {
        font-size: 30px;
        margin-bottom: -20px;
    }

    .intro {
        font-size: 15px;
        margin: -20px 0 60px;
    }

    .pre_list {
        flex-flow: column;
        gap: 15px;
    }

    .pre_list_cnt {
        height: 100%;
        max-width: unset;
        padding: 30px 25px;
    }

    .pre_note {
        font-size: 16px;
        text-align: left;
    }


    /* cost */

    .cost_ttl {
        font-size: 18px;
    }
}