@charset "utf-8";

/* front-page */

/* background_img */
.background_img {
    height: 100vh;
    background-image: url("/wp-content/themes/inasapo_theme/assets/img/top_img.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.concept_pc img {
    margin-top: 26%;
    width: 100%;
}
.concept_mp {
    display: none;
}

/* business */
#business {
    background-color: #ececec;
}
.business_content {
    padding: 50px 0;
    display: flex;
}
.business_img {
    width: 50%;
    display: flex;
    justify-content: center;
}
.business_img img {
    width: 70%;
}
.business_txt {
    width: 45%;
}
.business_name {
    font-size: 40px;
    color: #00b050;
}
.business_explanation {
    padding: 30px 0 0 25px;
    font-size: 25px;
    color: #333333;
}
.boundary_line {
    width: 90%;
    margin: 0 auto;
    border: solid 1px #00b050;
}
.boundary_line:last-child {
    display: none;
}

/* zoom_show */
.zoom_show {
    transition: .1s ease-in-out;
}

/* responsive */
@media (max-width: 960px) {
    .business_content {
        display: block;
    }
    .business_img {
        width: 100%;
    }
    .business_txt {
        width: 100%;
    }
    .business_name {
        margin-top: 30px;
        text-align: center;
        font-size: 35px;
    }
    .business_explanation {
        width: 90%;
        margin: 0 auto;
        padding-left: 0;
        font-size: 20px;
    }
}
@media (max-width: 428px) {
    .background_img {
        background-size: 200%;
    }
    .concept_pc {
        display: none;
    }
    .concept_mp {
        margin-top: 130px;
        display: block;
    }
    .concept_mp img {
        margin-top: 295px;
        width: 100%;
    }
}