/* MV */
.mv h1 img{
    display: block;
    width: 100%;
    object-fit: contain;
}
/* MV */

/* FEATURES */
.features{
    background-image: url('../img/about-features_bg_pc.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0 150px;
}
.features .features_flex{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.features .features_flex h2{
    position: relative;
    margin-left: 3%;
    margin-right: 15%;
}
.features .features_flex h2>img{
    position: absolute;
    top: -40%;
    left: -40%;
    mix-blend-mode: multiply;
}
.features .features_flex h2 .txt{
    position: relative;
    z-index: 1;
    font-size: 48px;
}
.features .features_flex h2 .txt .min{
    font-size: 16px;
    display: block;
    font-weight: normal;
}
.features .features_flex ul{
    list-style: none;
    width: 37%;
}
.features .features_flex ul li{
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
}
.features .features_flex ul li+li{
    margin-top: 20px;
}
.features .features_flex ul li .num{
    font-family: century-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 45px;
    display: inline-block;
    text-align: center;
    background-color: #222;
    border-radius: 20px 0 0 20px;
    color: #fff;
    vertical-align: middle;
    padding: 30px 25px;
}
.features .features_flex ul li p{
    line-height: 1.5;
    display: block;
    width: 100%;
    padding: 0 20px;
}
.ojt{
    display: block;
    width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1200px){
    .features .features_flex ul{
        width: 50%;
    }
    .features .features_flex ul li{
        font-size: 15px;
        padding-right: 20px;
    }
    .features .features_flex ul li p{
        text-align: justify;
    }
}
@media screen and (max-width: 767px){
    .features{
        padding: 100px 0 270px;
        background-image: url('../img/about-features_bg_sp.jpg');
        background-position: center bottom;
        background-size: cover;
        background-repeat: no-repeat;
        margin-bottom: 80px;
    }
    .features .features_flex{
        flex-wrap: wrap;
    }
    .features .features_flex h2{
        text-align: center;
        margin: 0;
        width: 100%;
    }
    .features .features_flex h2>img{
        transform: scale(0.5);
        left: 11%;
        top: -93%;
    }
    .features .features_flex h2 .txt{
        font-size: 32px;
    }
    .features .features_flex h2 .txt .min{
        font-size: 14px;
    }
    .features .features_flex ul{
        width: 90%;
        margin-top: 30px;
    }
    .features .features_flex ul li .num{
        font-size: 27px;
        border-radius: 10px 0 0 10px;
        padding: 25px 20px;
    }
    .features .features_flex ul li:nth-child(2) .num{
        padding: 35px 20px;
    }
    .features .features_flex ul li p{
        font-size: 16px;
    }
}
/* FEATURES */

/* 下層ページのボタン一覧 */
section.Sub-page_btn-list .inner{
    width: 90%;
    max-width: 750px;
    margin: 5% auto;  
}
.btn_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
    width: 100%;
}
div.more{
    text-align: center;
    width: 49%;
}
section.Sub-page_btn-list a.detail_btn{
    display: block;
    width: 100%;
    padding: 5% 30px;
    box-sizing: border-box;
}

@media screen and (max-width: 767px){
    section.Sub-page_btn-list .inner{
        margin: 10% auto;
    }
    .btn_container {
        gap: 0;
        display: block;
    }
    div.more{
        width: 100%;
        margin-bottom: 3%;
    }
}
/* 下層ページのボタン一覧 */