:root {
    --main-color: #A40000;
}

.main-wrapper {
    font-family: var(--font-family-gothic);
    background-color: #fefdf9;
}

.footer__wrapper {
    margin-top: 0px !important;
}

/* fv */
.single-interview-fv-wrapper {
    padding: 0 !important;
    height: 90vh;
    background: #eee;
}

@media(max-width:576px) {
    .single-interview-fv-wrapper {
        height: auto;
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }
}

.single-interview-fv-contents {
    display: flex;
    align-items: center;
    height: 100%;
}

@media(max-width:576px) {
    .single-interview-fv-contents {
        flex-direction: column-reverse;
    }
}

.single-interview-fv-img-wrapper {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 100%;
}

@media(max-width:576px) {
    .single-interview-fv-img-wrapper {
        width: 100%;
        height: 500px;
    }
}

.single-interview-fv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-interview-fv-content {
    width: 50%;
    padding: 0 40px;
}

@media(max-width:576px) {
    .single-interview-fv-content {
        width: 100%;
        margin-top: 40px;
    }
}

.single-interview-fv-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, #eee 50%, rgba(255, 255, 255, 0));
    pointer-events: none;
}

@media(max-width:576px) {
    .single-interview-fv-img-wrapper::before {
        display: none;
    }
}

.single-interview-fv-description {
    font-weight: bold;
    line-height: 56px;
}

@media(max-width:576px) {
    .single-interview-fv-description {
        line-height: 32px;
    }
}

.single-interview-fv-position {
    font-weight: bold;
    margin-top: 40px;
    position: relative;
}

.single-interview-fv-position::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: var(--main-color);
    bottom: -10px;
}

.single-interview-fv-links {
    margin-top: 45px;
    width: 50px;
	display:flex;
	gap:10px;
}

.single-interview-fv-link-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* インタビュー内容 */
.question-wrapper {
    padding: 80px 0;
}

@media(max-width:576px) {
    .question-wrapper {
        padding: 40px 0 0;
    }
}

.question-contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0px auto;
}

@media(max-width:576px) {
    .question-contents {
        flex-direction: column-reverse;
        width: 100%;
    }
}

.questions:nth-of-type(odd):not(:last-of-type) .question-contents {
    flex-direction: row-reverse;
}

@media(max-width:576px) {
    .questions:nth-of-type(odd):not(:last-of-type) .question-contents {
        flex-direction: column-reverse;
    }
}

.questions:last-of-type .question-contents {
    background: #eee;
    padding: 40px;
    position: relative;
}

.questions:last-of-type .question-contents::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.questions:last-of-type .question-contents::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.question-content {
    padding: 0 40px;
    width: 70%;
}

@media(max-width:576px) {
    .question-content {
        width: 100%;
        padding: 20px 0;
    }
}

.question {
    font-weight: bold;
    color: var(--main-color);
}

.questions:last-of-type .question-contents .question {
    position: relative;
}

@media(max-width:576px) {
    .questions:last-of-type {
        padding-bottom: 40px;
    }
}

.questions:last-of-type .question-contents .question::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: var(--main-color);
    bottom: -10px;
}

.answer {
    font-weight: 500;
    color: #333;
    margin-top: 40px;
}

.question-img {
    width: 30%;
    height: auto;
    object-fit: cover;
}

@media(max-width:576px) {
    .question-img {
        width: 100%;
    }
}