@charset "utf-8";

.text-contents{
    margin-bottom:4em;
}
.text-contents h2 p:nth-child(1){
    font-size:1.75em;
    font-weight:bold;
}
.text-contents h2 span{
    font-size:0.8em;
}

.interview-section{
    background: linear-gradient(#FFFFFF 0%, #ECF6FF 100%);
    position: relative;
    z-index:0; /* -2 */
    margin-top:80px;
}
@media screen and (max-width: 768px) {
    .interview-section{
        margin-top:70px;
    }
}
@media screen and (max-width: 360px) {
    .interview-section{
        margin-top:60px;
    }
}

.interview-section .section-inner {
    position: relative;
    overflow: visible;
}

.interview-section .section-inner::before {
    content: "";
    position: absolute;
    top: -16em;
    right: -8em;
    width: 72em;
    height: 72em;
    background-image: url('../img/interview-detail03.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
}


.interview-section .interview-label{
    display:flex;
}
.interview-section .interview-label div:nth-child(1){
    width:40%;
}
.interview-section .interview-label div:nth-child(2){
    width:60%;
}

.interview-label h3 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4em;
    margin-top:0.25em;
    margin-bottom:1em;
    margin-left:0.25em;
    color:#fff;
}
.interview-label h3 > span {
    position: relative;
    display: inline-block;
}
.interview-label h3 > span::before {
    content: "";
    position: absolute;
    bottom: -0.25em;
    left: -0.25em;
    top: -0.25em;
    right: -0.25em;
    background-color: #004A8C;
    z-index: -1;
}
.interview-label div > span {
    display: flex;
    height: 32px;
    border-radius: 20px;
    width: 120px;
    background-color: var(--theme-color-sub);
    align-items: center;
    justify-content: center;
    margin-bottom:1em;
}
.interview-label p span {
    display: inline-block;
    margin-right:0.25em;
    font-size:1.5em;
}
.interview-move iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.interview-detail{
    margin-top:4em;
    padding-top:4em;
    border-top:1px solid #000;
}

.interview-detail .detail-image img {width:100%;}

.interview-detail .detail-text {
    line-height: 175%;
    width: 64%;
    padding: 2em 4em;
    margin: 0 auto;
    transform: translateY(-50%);
    background-color: var(--bgcolor);
    border-radius: 1em;
    box-shadow: 0 4px 5px #00000044;
}

.detail-label{
    margin-top:4em;
}
.detail-label p,
.detail-qa p{
    line-height: 150%;
}
.detail-label,
.detail-qa{
    margin-bottom:4em;
}

.detail-label div{
    display:inline-block;
    padding:0.5em 5em 0.5em 1em;
    font-size:1.5em;
    background-color:#000;
    color:#fff;
    margin-bottom:1em;
    font-weight: bold;
}

.detail-label div span.main{
    font-size:1.25em;
}
.detail-label div span.main::after{
    content: "｜";
    padding:0 0.25em;
    font-size: 0.75em;
}

.detail-qa div{
    font-size:2em;
    margin-bottom:1em;
    font-weight: bold;
}
.detail-qa div span{
    color:var(--theme-color-sub);
    display: inline-block;
    margin-right:0.5em;
    font-size:1.25em;
}

.detail-message{
    display:flex;
    background-color:#fff;
    border-radius:1em;
    overflow: hidden;
}

.message-image{
    width:40%;
}
.message-image img{
    width:100%;
}
.message-text{
    display: flex;
    align-items: center;
    width:60%;
    padding:0 2em;
}
.message-text p{
    line-height: 150%;
}

.message-label{
    display:inline-block;
    border:1px solid #000;
    padding:0.5em 5em 0.5em 1em;
    margin-bottom:1em;
}
.message-label span{
    display:inline-block;
    margin-bottom:0.25em;
    
}
.message-label div{
    font-size:1.25em;
    font-weight: bold;
}

@media screen and (max-width: 1000px) {
    .detail-message {
        display: block;
    }
    .message-image {
        width: 100%;
    }
    .message-text {
        width: 100%;
        padding: 2em;
    }
    
}

@media screen and (max-width: 768px) {
    .interview-section .interview-label {
        display: unset;
    }
    .detail-label div {
        display: block;
        font-size: 4vw;
        padding: 0.75em 1.5em;
    }
    .detail-label div span.main {
        font-size: 1.75em;
    }
    .detail-label div span.main::after{
        content: unset;
    }
    .detail-qa div {
        font-size: 5vw;
    }
    .interview-section .interview-label div:nth-child(1),
    .interview-section .interview-label div:nth-child(2){
        width:100%;
    }
    .interview-label h3 {
        font-size: 7.5vw;
    }
    .interview-section .interview-label div:nth-child(1){
        margin-bottom:2em;
    }
    .detail-qa {
        margin-bottom: 2em;
    }

    .interview-section .section-inner {
        overflow: hidden;
    }
    .message-label{
        width:100%;
        padding:0.5em 1em;
    }
}