@charset "UTF-8";

/*———————————
sub_header
———————————*/

.sub_header{
    margin-top:90px;
    margin-bottom: 90px;
}
.sub_header h1{
    font-size:70px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    padding-left:50px;
    padding-bottom:20px;
}
.sub_image{
    height:600px;
    position: relative;
}

/*社長*/
.sub_image.top{
    background-image: url("../images/sub_image_top_2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 25%;
}
/*ykさん*/
.sub_image.yk{
    height:600px;
    background-image: url("../images/yk_01.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
}
/*mkさん*/
.sub_image.mk{
    height:600px;
    background-image: url("../images/mk_01.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 30%;
    position: relative;
}
/*ckさん*/
.sub_image.ck{
    height:600px;
    background-image: url("../images/ck_01.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 30%;
    position: relative;
}
/*nnさん*/
.sub_image.nn{
    height:600px;
    background-image: url("../images/nn_01.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 40%;
    position: relative;
}

.sub_image .sub_copybox{
    background-color: #D34446;
    padding:60px;
    position: absolute;
    right:10%;
    bottom:-10%;
    color:#fff;
}
.sub_copybox .sc_title{
    font-size: 40px;
    font-weight:500;
    line-height: 1.4;
}

.sub_copybox .sc_title_s{
    font-size: 22px;
    font-weight:500;
    line-height: 1.4;
}

.sub_copybox .sc_name{
    font-size: 30px;
    margin-top: 30px;
    font-weight:500;
    line-height: 1.4;
}
.sub_copybox .sc_name span{

}


/*———————————
interview_contents
———————————*/

.interview_contents{
    margin-top:200px;
}

.interview_contents .int_q{
    font-size:32px;
    font-weight: 600;
    position: relative;
    padding-left:65px;
}
.interview_contents .int_q::before {
    position: absolute;
    content: "";
    top: 50%;
    width: 40px;
    height: 3px;
    left: 0;
    background-color: #D34446;
}

.interview_contents .int_a{
    font-size:20px;
    font-weight: 300;
}
.int_layout_2{
    flex-basis: 60%;
}
.int_layout_3{
    flex-basis: 35%;
}
.int_layout_3 img{
    width:100%;
    height: 280px;
    object-fit: cover;
}
.int_layout_1{
    gap:3%;
}
.int_layout_4{
    flex-basis: 50%;
}
.int_layout_5{
    flex-basis: 45%;
}
.int_layout_6{
    flex-basis: 35%;
}
.int_layout_7 img{
    width:100%;
    height: 500px;
    object-fit: cover;
}
.mt-70{
    margin-top:70px;
}







/*
Media Queries
================================*/

/* 大きなデバイス */
@media (max-width: 1200px) {
    .sub_header h1{
        font-size: 45px;
        padding-left: 20px;
    }
}
/* タブレット */
@media (max-width: 1024px) {
}
/* スマホ */
@media (max-width: 599px) {
    .sub_image.top,
    .sub_image.yk,
    .sub_image.mk,
    .sub_image.ck{
        height:400px;
        background-position: 20% 50%;
        background-size: 900px;
    }
    .sub_image.nn{
        height:400px;
        background-position: 40% 50%;
        background-size: 900px;
    }
    .sub_image .sub_copybox{
        width:80%;
        padding:30px;
        bottom: -30%;
        left: 50%;
        transform:translateX(-50%);
        -webkit- transform: translateX(-50%);
    }
    .sub_copybox .sc_title{
        font-size: 25px;
    }
    .sub_copybox .sc_name{
        font-size: 18px;
    }
    .sub_copybox .sc_name span{
        font-size: 22px;
    }
    .interview_contents .int_q{
        font-size:24px;
        padding-left: 0;
        border-bottom:3px solid #D34446;
        padding-bottom:15px;
    }
    .interview_contents .int_q::before {
        display: none;
    }
    .int_layout_7 img{
        width:100%;
        height: auto;
    }
    .int_layout_3 img,
    .int_layout_4 img,
    .int_layout_6 img{
        width:100%;
        height: auto;
    }
    .int_layout_7 img{
        width:100%;
        height: auto;
    }
    .int_layout_2,
    .int_layout_3,
    .int_layout_4,
    .int_layout_5,
    .int_layout_6{
        flex-basis: 100%;
    }
    .sub_copybox .sc_title_s{
        font-size: 18px;
        text-align: center;
    }

}