/*---------- 一覧ページ ----------*/
section.interview_wrap-section {
    margin-top: 150px;
}
@media screen and (max-width: 1260px) {
    section.interview_wrap-section {
        margin-top: 115px;
    }
    .interview_wrap-section ul.other-interview__list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }
    .interview_wrap-section li.other-interview__item {
        position: relative;
        min-width: 100% !important;
    }
}
@supports (-webkit-touch-callout: none) {
    /* iPad / iPhone Safariだけ */
    .interview_wrap-section .other-interview__item {
        min-width: auto !important;
        width: 100% !important;
    }

    .interview_wrap-section .other-interview__item img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
}


/*---------- インタビューTOP ----------*/
.member__inner {
    position: relative;
}
img.top-interview__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    max-height: 780px;
    min-height: 700px;
}
.member__content {
    position: absolute;
    top: 60%;
    left: 15%;
}
p.member__catch {
    background: var(--main-color);
    color: #fff;
    font-size: 22px;
    padding: 10px 40px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.member__info {
    background: rgba(255, 255, 255, .8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: absolute;
    width: 400px;
    left: 15%;
    margin-top: 15px;
    color: var(--main-color);
    font-weight: 600;
}
p.member__name {
    font-size: 70px;
}
.member__dept {
    display: flex;
    gap: 10px;
    font-size: 18px;
}
.member__year span {
    font-size: 14px;
}
@media screen and (max-width: 1260px) {
    .member__content {
        left: 5%;
    }
    p.member__catch {
        font-size: 20px;
        padding: 8px 30px;
    }
    .member__info {
        gap: 25px;
        left: 10%;
        margin-top: 10px;
    }
    p.member__name {
        font-size: 60px;
    }
    .member__dept {
        gap: 5px;
        font-size: 16px;
    }
    .member__year span {
        font-size: 13px;
    }
}
@media screen and (max-width: 475px) {
    p.member__catch {
        font-size: 16px;
        padding: 8px 30px;
    }
    p.member__name {
        font-size: 50px;
    }
    .member__info {
        gap: 15px;
        left: 10%;
        margin-top: 10px;
        width: 300px;
    }
    .member__content {
        left: 0;
    }
}

/*---------- 質問＆回答 ----------*/
section.question01,
section.question03 {
    margin-top: 100px;
}
.interview-block {
    display: flex;
    gap: 50px;
}
.interview-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
}
p.interview-item__question {
    color: var(--main-color);
    font-weight: 600;
}
span.interview-item__q-number {
    font-size: 18px;
}
p.interview-item__title {
    font-size: 26px;
    font-weight: 600;
}
.interview-block__image {
    flex: 1;
}
img.interview-block__img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}
@media screen and (max-width: 1000px) {
    p.interview-item__title {
        font-size: 24px;
    }
    .interview-block {
        gap: 30px;
    }
}
@media screen and (max-width: 900px) {
    .interview-block {
        flex-direction: column;
    }
    .question02 .interview-block,
    .question04 .interview-block {
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 475px) {
    section.question01, section.question03 {
        margin-top: 80px;
    }
    .flex-100 {
        gap: 80px !important;
    }
    .flex-100 {
        margin-bottom: 80px;
    }
    p.interview-item__title {
        font-size: 18px;
    }
    img.interview-block__img {
        border-radius: 10px;
    }
    .interview-item {
        gap: 5px;
    }
}

/*---------- 1日のスケジュール ----------*/
section.schedule {
    background: #F6F9FF;
    padding: 100px 0;
}
.schedule__image {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
.schedule__img--pc {
    width: 100%;
    height: auto;
}
.schedule__img--sp {
    display: none !important;
}
@media screen and (max-width: 1000px) {
    img.schedule__img {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 760px) {
    .schedule__img--pc {
        display: none !important;
    }
    .schedule__img--sp {
        display: block !important;
    }
    section.schedule {
        padding: 50px 0;
    }
    .schedule__image {
        padding: 0 10px;
    }
}


/*---------- その他職種 ----------*/
h3.other-interview__title {
    font-size: 28px;
    border-left: 5px solid var(--main-color);
    padding-left: 15px;
    margin-bottom: 30px;
}
ul.other-interview__list {
    display: grid;
    gap: 50px;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
}
li.other-interview__item {
    position: relative;
    min-width: 350px;
}
img.other-interview__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    display: block;
}
.other-interview__content {
    position: absolute;
    bottom: 10%;
    width: 100%;
}
p.other-interview__catch {
    background: var(--main-color);
    color: #fff;
    font-size: 18px;
    padding: 5px 20px;
    font-weight: 500;
    position: absolute;
    bottom: 100px;
}
.other-interview__info {
    background: rgba(255, 255, 255, 0.8);
    color: var(--main-color);
    font-weight: 600;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 5px 50px;
    position: absolute;
    bottom: 10px;
    right: 0;
}
p.other-interview__name {
    font-size: 45px;
}
.other-interview__dept {
    display: flex;
    gap: 5px;
}
p.other-interview__year span {
    font-size: 14px;
}
a.more-link {
    width: 260px !important;
    margin: 30px auto !important;
}
@media screen and (max-width: 1260px) {
    h3.other-interview__title {
        font-size: 24px;
        border-left: 4px solid var(--main-color);
        padding-left: 10px;
        margin-bottom: 30px;
    }
    .other-interview ul.other-interview__list {
        overflow-x: scroll;
        margin-right: -40px;
    }
    p.other-interview__catch {
        font-size: 16px;
        padding: 5px 15px;
    }
    p.other-interview__name {
        font-size: 40px;
    }
    .other-interview__dept {
        font-size: 14px;
    }
    p.other-interview__year {
        font-size: 14px;
    }
    p.other-interview__year span {
        font-size: 12px;
    }
    .other-interview__info {
        gap: 15px;
        padding: 5px 30px;
        bottom: 15px;
    }
}
@media screen and (max-width: 760px) {
    h3.other-interview__title {
        font-size: 22px;
    }
}
@media screen and (max-width: 475px) {
    li.other-interview__item {
        min-width: 315px;
    }
}