
/*--------------------------------
            共通パーツ
---------------------------------*/

/*セクションタイトル*/
.section_ttl{
    position: relative;
}
.section_ttl .section_ttl_en{
    font-size: 8.75rem;
    font-weight:900;
    font-family: "Roboto", sans-serif;
}
.section_ttl h2{
    display: inline-block;
    font-size: 1.75rem;
    border-bottom:solid 2px #FFC400;
    padding-bottom:0.625rem;
    font-weight: bold;
    color:#FFC400;
    position: absolute;
    bottom:10px;
    left:0;
}
.profile .section_ttl_en{
    color:#3B4A60;
}
.interview .section_ttl_en{
    color:#55647E;
}
@media(max-width:425px){
    .section_ttl .section_ttl_en{
        font-size: 4.625rem;
    }
    .section_ttl h2{
        font-size: 1.25rem;
        bottom:3px;
    }
}







/*プロフィール*/
.profile_container .profile_content{
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top:3.75rem;
}
.profile_container .profile_content:last-of-type{
    flex-flow: row-reverse;
    margin-top:4.688rem;
}
.profile_container .profile_content p{
    width:650px;
    color:white;
    line-height:1.875rem;
}
.profile_container .profile_content img{
    width:calc((100% - 650px) - 5%);
    height:auto;
}






/*インタビュー*/
.interview{
    width:100vw;
    background: linear-gradient(115deg,#465D7E,#273243);
    position: relative;
}
.interview_img1{
    width:270px;
    height:auto;
    position: absolute;
    top:97px;
    left:0;
}
.interview_img2{
    width:392px;
    height:auto;
    position: absolute;
    right:0;
    top:198px;
}

.interview .section_ttl{
    text-align: center;
}
.interview .section_ttl h2{
    left:50%;
    transform: translateX(-50%);
}

.interview h3{
    color:white;
    text-align: center;
    font-size: 2.5rem;
    margin:3.75rem 0;
}

.interview .container{
    position: relative;
    z-index: 2;
}
.q_a_content{
    color:white;
    margin-bottom:3.75rem;
}
.q_a_content h4{
    font-size: 1.125rem;
    position: relative;
}
.q_a_content h4::before{
    content:"Q";
    font-family:serif;
    display: block;
    color:#FFC400;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}
.q_a_content h4,
.q_a_content p{
    width:calc(100% - 5rem);
    margin:0 auto;
}
.q_a_content p{
    line-height:1.875rem;
    margin-top:1.875rem;
}


.contact_area{
    margin-top:0 !important;
}


/*--------------------------------------------------------
                        レスポンシブ
----------------------------------------------------------*/
@media(max-width:1440px){
    .profile_container .profile_content p{
        width:53%;
    }
    .profile_container .profile_content img{
        width:calc((100% - 53%) - 5%);
    }


    /*インタビュー*/
    .interview_img2{
        width: 27.22vw;
    }
}


@media(max-width:1024px){
    .interview_img1{
        top:20px;
    }
    .interview_img2{
        width: 300px;
        top: 180px;
    }
}


@media(max-width:768px){
    .profile_container .profile_content{
        flex-flow: column-reverse;
    }
    .profile_container .profile_content:first-of-type{
        margin-top:1.25rem;
    }
    .profile_container .profile_content:last-of-type{
        flex-flow: column;
        margin-top:0;
    }
    .profile_container .profile_content p {
        width: 100%;
    }
    .profile_container .profile_content img {
        width: 60%;
    }
    .profile_container .profile_content:last-of-type img{
        width:100%;
    }
    .profile_container .profile_content:first-of-type p{
        margin-top:1.875rem;
    }
    .profile_container .profile_content:last-of-type p{
        margin-bottom:1.875rem;
    }



    /*インタビュー*/
    .interview .section_ttl{
        text-align: left;
    }
    .interview .section_ttl h2{
        left:0;
        transform: translateX(0);
    }
    .interview h3{
        margin: 1.875rem 0 70vw 0;
        text-align: left;
    }
    .interview_img1{
        width: 55%;
        top: 370px;
    }
    .interview_img2 {
        width: 50%;
        top: 550px;
    }
}


@media(max-width:600px){
    /*インタビュー*/
    .interview h3 {
        margin: 1.875rem 0 80vw 0;
    }
}

@media(max-width:425px){
    .profile_container .profile_content img {
        width: 80%;
    }


    /*インタビュー*/
    .interview_img1{
        width: 65%;
        top: 310px;
    }
    .interview_img2{
        width: 55%;
        top: 430px;
    }
    .interview h3{
        margin: 1.875rem 0 330px 0;
        font-size: 2rem;
    }
    .q_a_content p{
        width:100%;
    }
    .q_a_content h4{
        width: calc(100% - 40px);
        left: 20px;
    }
    .q_a_content h4::before{
        left: -40px;
    }
}