/* ヒーローセクションの画像 */
.hero{
    background-image: url(../img/interview_hero.png);
}

@media screen and (max-width: 768px) {
    .hero-to-left {
        background-position: 70% center;
    }
}

.text-contents{
    margin-bottom:2em;
}
.text-contents h4 p:nth-child(1){
    font-size:1.25em;
    font-weight:bold;
}
.text-contents h4 span{
    font-size:1.5em;
}
.text-contents >div div p:nth-child(1){
    font-size:1.75em;
    font-weight:bold;
}
.text-contents >div div p:nth-child(2){
    font-size:2em;
    font-weight:bold;
}
.text-contents >div div span{
    font-size:0.8em;
}
.text-contents p{
    line-height: 1.75;
}
.text-contents > div:not(:last-child){
    margin-bottom:4em;
}

.interview-section.bg{
    background-color:#ECF6FF;
    
}
.interview-section.bg h3{
    text-align:center;
    font-weight: bold;
    margin-bottom:1em;
}
.interview-section.bg h3 p:nth-child(1){
    font-size:2.5em;
    margin-bottom:0.4em;
}
.interview-section.bg h3 p:nth-child(2){
    font-size:3em;
    background: linear-gradient(90deg, #1263A0 0%, #2296CC 50%, #2974AC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 8px;
}
.interview-section.bg .section-inner div{
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
}

.interviewee-blocks{
    display:flex;
    flex-wrap: wrap;
    margin-bottom: -3em;
}
.interviewee-blocks > a{
    width: calc(33.33% - 2em);
    margin-bottom:3em;
    overflow: hidden;
    border-radius:1em;
    background-color:#002C6C;
    position: relative;
    color:#fff;
    display:block;
}
.interviewee-blocks > a img{
    width:100%;
}
.interviewee-blocks > a:not(:nth-child(3n+3)){
    margin-right:3em;
}
.block-info{
    padding:1em 1em 4.5em 1em;
    position: relative;
}
.block-info .title{
    line-height: 150%;
}
.occ-time{
    display: flex;
    align-items: center;
    position: absolute;
    padding: 1em;
    bottom: 0;
    width:100%;
}
.occ-time div{
    display: flex;
}
.occ{
    width: 100px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 0.875em;
    margin-right: 1em;
}
.in-time{
    font-size: 0.875em;
}
.arrow-icon{
    position: absolute;
    right: 1em;
    bottom: 1em;
    height: 1.5em;
    width: 1.5em;
    border: 2px solid #ffff;
    border-radius: 50%;
}
.arrow-icon::before{
    content: "";
    position: absolute;
    height: 0.5em;
    width: 0.5em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    top: calc(25% + 1px);
    left: calc(25% + 1px);

}
.arrow-icon::after{
    content: "";
    position: absolute;
    width: 0.5em;
    border-top: 2px solid #fff;
    top: 50%;
    left: calc(50% - 1px);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
    .occ-time >div:nth-child(1) {flex-flow: column;}
    .occ-time .occ {
        margin-right:unset;
        margin-bottom:.5em;
    }
}

@media screen and (max-width: 768px) {
    .interviewee-blocks > a {
        width: calc(100%);
    }
    .interviewee-blocks > a:not(:nth-child(3n+3)) {
        margin-right: unset;
    }
    .text-contents h4 p:nth-child(1) {
        font-size: 4vw;
    }
    .interview-section.bg h3{
        text-align: unset;
        font-size: 3vw;
    }
}