/* Introduction Section======================================================= */
.introduction {
    position: relative;
    margin: 7.25rem 0 0;
}

.introduction-wrapper {
    width: auto;
    border-bottom: 3px solid #CCEAF9;
    padding-bottom: 7rem;
    margin: 0 5.63rem;
}

.introduction-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8rem;
    max-width: 68rem;
    width: 100%;
    margin: 0 auto;
}

.introduction-left {
    /* flex: 1; */
    max-width: 100%;
}

.job-tag {
    display: inline-block;
    padding: 0.2rem 1.25rem 0.7rem 0.825rem;
    background-color: #CCEAF9;
    color: var(--primary-blue);
    font-size: 1.3125rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1125rem;
    position: relative;
    margin-left: 0.5rem ;
}

.job-tag::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    right: 5px;
    bottom: 3px;
    border: 1px solid var(--primary-blue);
    pointer-events: none;
}

.introduction-title {
    color: var(--lightblue);
    font-family: "Noto Sans JP";
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.6rem;
    letter-spacing: 0.1125rem;
    margin-top: 1.88rem;
}

.introduction-divider {
    width: 5.67rem;
    height: 0.3125rem;
    background-color: var(--lightblue);
    margin-top: 2.19rem;
}

.introduction-info {
    color: var(--black);
}

.position {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.575rem;
    letter-spacing: 0.05625rem;
    margin-top: 3.06rem;
}
.taiyo-position {
    padding-top: 25.2px;
}
.name-ja {
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
    line-height: 2.8rem;
    letter-spacing: 0.1rem;
    margin-top: 0.59rem;
}

.name-en {
    font-size: 1rem;
    color: #AAA;
    font-weight: 400;
    line-height: 2.1rem;
    letter-spacing: 0.075rem;
}

.profile-detail {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.1rem;
    margin-top: 1.22rem;
}

.introduction-right {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.member-image-wrapper {
    position: relative;
    width: 31.25rem;
    height: 25rem;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.decorative-circles {
    position: absolute;
    top: -7%;
    right: -2.5%;
    width: auto;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.decorative-circles-image {
    width: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--skyblue);
    opacity: 0.4;
}

.circle-1 {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -30px;
}

.circle-2 {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: 50%;
}

/* Introductionセクション - レスポンシブ対応 */
@media (max-width: 1024px) {
    .introduction-wrapper {
        padding: 0 50px;
        padding-bottom: 60px;
        margin: 0 10vw;
    }

    .introduction-content {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 60px;
    }

    .introduction-title {
        font-size:  2.25rem;
        line-height: 140%; /* 2.275rem */
        letter-spacing: 0.0625rem;
        margin-top: 1.25rem;
    }

    .decorative-circles {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 40%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}
    .introduction-left,
    .introduction-right {
        max-width: 100%;
    }
    .introduction-divider {
        width: 3.125rem;
        height: 0.4375rem;
        margin-top: 1.25rem;
    }

    .name-ja {
        line-height: 140%; /* 1.925rem */
        letter-spacing: 0.05625rem;
        margin-top: 0rem;
    }
    .name-en {
        line-height: 140%; /* 1.4rem */
    }
    .member-image-wrapper {
        width: 100%;
        height: auto;
        padding: 0 28px;
    }

}

@media (max-width: 768px) {
    .introduction {
        margin: 3rem 0 0;
    }

    .introduction-wrapper {
        margin: 0 1.88rem;
        padding: 0;
    }

    .introduction-content {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 0 0 3.31rem;
    }

    .introduction-title {
        font-size: 1.625rem;
        line-height: 1.4;
    }
    .position {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1.05rem; /* 140% */
        letter-spacing: 0.0375rem;
        margin-top: 2.5rem;
    }
    .taiyo-position {
        padding-top: 16.8px;
    }
    .name-ja {
        font-size: 1.375rem;
        line-height: 1.375rem; /* 100% */
        letter-spacing: 0.075rem;
        margin-top: 0.19rem;
    }
    .name-en {
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 0.75rem; /* 100% */
        letter-spacing: 0.05rem;
        margin-top: 0.63rem;
    }
    .profile-detail {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.4rem; /* 140% */
        letter-spacing: 0.05rem;
    }

    .circle-1 {
        width: 140px;
        height: 140px;
        top: -30px;
        right: -20px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
        bottom: -20px;
    }
    .member-image-wrapper {
        padding: 0;
    }
}

/* Interview Section======================================================= */
.interview {
    background-color: #fff;
    margin: 3.12rem 0;
}

.interview-container {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 10.5rem;
    padding-right: 9.38rem;
}

.interview-left {
    width: 37.59938rem;
}

.interview-image-desktop {
    width: 100%;
    height: 37.52625rem;
    object-fit: cover;
    display: block;
}

.interview-image-mobile {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 60px 0;
}

.interview-right {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    background-color: #fff;
}
.interview-question {
    max-width: 45.75rem;
    width: 100%;
}

.question-number {
    color: transparent;
    -webkit-text-stroke: 1.25px var(--primary-blue);
    font-size: 4.275rem;
    font-weight: 600;
    line-height: 7rem;
    letter-spacing: 0.4375rem;
    font-family: var(--font-din-2014);
}

.question-title {
    color: var(--lightblue);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 2.45rem;
    letter-spacing: 0.0875rem;
}

.question-underline {
    width: 12.52438rem;
    height: 0.3125rem;
    max-width: 12.525rem;
    background-color: var(--lightblue);
    margin-top: 0.9rem;
}

.question-subtitle {
    color: var(--black);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 2.45rem;
    letter-spacing: 0.0875rem;
    margin-top: 3rem;
}

.question-answer {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 350;
    line-height: 2.5rem;
    letter-spacing: 0.125rem;
    margin-top: 1.5rem;
}

.interview-bottom {
    position: relative;
    width: 100%;
    height: 35.625rem;
    overflow: hidden;
    margin-top: 5rem;
}

.interview-image-bottom {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-container-reverse {
    padding-right: 0;
    padding-left: 0;
    margin-top: 5rem; /* 下に移動しないようにmargin-topを0に */
    margin-left: auto;
    justify-content: flex-end;
    width: 100%;
    padding-left: 9.38rem;
}

.interview-left-reverse {
    width: 33.59938rem;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.interview-left-reverse .interview-image-desktop {
    width: 33.59938rem;
    height: 31.415rem;
    object-fit: cover;
    display: block;
}
.interview-container-reverse .interview-question {
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .interview-container {
        padding-right: 5.38rem;
    }
    .interview-container-reverse {
        padding-left: 5.38rem;
    }
}
/* Interviewセクション - レスポンシブ対応 */
@media (max-width: 1024px) {
    .interview-container {
        padding-right: 0;
        gap: 0;
    }
    .interview-container-reverse {
        padding-left: 0;
    }

    .interview-right {
        padding: 60px 60px 60px 0px;
        gap: 3.13rem;
    }

    .interview-container-reverse .interview-right {
        display: flex;
        /* align-items: flex-end; */
        padding: 60px 0 60px 50px;
        order: 1;
    }

    .interview-question {
        margin:0 0 60px 50px;
    }

    /* 3つ目のinterview-question（Q3）のみ個別のスタイル */
    .interview-container-reverse .interview-right .interview-question {
        margin: 0 50px 60px 0px;
    }

    .question-number {
        line-height: 140%; /* 4.9rem */
    }
    .interview-image-mobile {
        display: block;
        width: 80%;
        margin: 0;
        margin-bottom: 3.75rem;
    }

    /* interview-smile-yoshida.webp（.interview-container-reverse内）のみ右端に寄せる */
    .interview-container-reverse .interview-image-mobile {
        margin-left: auto;
        margin-right: max(0vw, -150px);
        align-self: flex-end;
    }
    
    .interview-left {
        display: none;
    }

    .interview-container-reverse {
        justify-content: flex-start;
    }

    .interview-bottom {
        height: 25rem;
        margin-top: 0;
    }
    .question-answer {
        font-size: 1.25rem;
        font-weight: 350;
        line-height: 2.5rem;
        letter-spacing: 0.05rem;
        margin-top: 1.5rem;
    }
    .interview-image-bottom-taiyo {
        width: 100%;
        transform: translate(-1%, 4%) scale(1.4);
    }
    .interview-image-bottom-yoshida {
        width: 100%;
        transform: translateY(-10%) scale(1.4);
    }
    .interview-image-bottom-ando {
        width: 100%;
        transform: translate(-1%, 5%) scale(1.9);
    }
    .interview {
        margin: 0;
    }
}

@media (max-width: 768px) {

    .interview-container-reverse {
        flex-direction: column;
        margin-top: 0;
    }

    .interview-left-reverse {
        display: block;
        width: 100%;
        order: 2;
        margin-top: 40px;
    }

    .interview-left-reverse .interview-image-desktop {
        display: none;
    }

    .interview-question {
        margin-bottom: 0;
    }

    .question-number {
        font-size: 2.875rem; 
        line-height: 100%; /* 4.6rem */
        letter-spacing: 0.2875rem;       
    }

    .question-title {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        line-height: 2.125rem; /* 170% */
        letter-spacing: 0.05625rem;
    }

    .question-underline {
        margin-top: 0.81rem;
        width: 6.25rem;
        height: 0.3125rem;
    }
    .question-subtitle {
        font-size: 1.25rem;
        line-height: 2.125rem; /* 170% */
        letter-spacing: 0.05625rem;
    }

    .question-answer {
        font-size: 1.125rem;
        line-height: 2.25rem; /* 188.889% */
        letter-spacing: 0.1rem;
    }
    .interview-question {
        margin: 0  1.88rem;
    }
    .interview-image-mobile {
        width: 100%;
    }
    .interview-bottom {
        height: 11.53688rem;
    }
        /* 3つ目のinterview-question（Q3）のみ個別のスタイル */
        .interview-container-reverse .interview-right  {
            margin: 0 1.88rem 40px 1.88rem;
            padding-left: 0;
            padding: 4rem 0 0;
        }
        .interview-container-reverse .interview-image-mobile {
            margin-right: max(-9vw, -150px);
        }
}

/* Other Interview Section======================================================= */
.other-interview {
    width: 100%;
    margin: 13.5rem 0 5rem;
}

.other-interview-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    margin: 0 4.86rem;
    border-top: 3px solid #CCEAF9;
}

.other-interview-grid {
    display: grid;
    grid-template-columns: repeat(2, 31.3125rem);
    justify-content: center;
    gap: 15rem;
    margin:0 auto 80px;
    padding: 5.5rem 8.5vw 0;
    width: 100%;

}

.other-member-card {
    width: 100%;
    transition: opacity 0.3s ease;
}

/* カード自体は div のまま維持し、内側の a を全体クリック領域にする */
.other-member-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* WP の自動整形（wpautop）で <p> に包まれても余計な余白が出ないようにする */
.other-interview-grid > p {
    margin: 0;
}

@media (hover: hover) {
    .other-member-card:hover {
        opacity: 0.5;
    }
}

.other-member-image-wrapper {
    width: 100%;
    height: 25rem;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.other-member-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.other-member-name-ja {
    color: var(--black);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: 0.1rem;
    margin-top: 1.25rem;
}

.other-member-name-en {
    color: #AAA;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.075rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.other-interview-logo {
    margin: 1.25rem auto;
    text-align: center;
    width: 46%;
}

.mizuno-logo-end {
    width: 100%;
    height: auto;
    opacity: 0.45;
}
/* Other Interview - レスポンシブ対応 */
@media screen and (max-width: 1300px)   {
    .other-interview-grid {
        gap: 50px;
        margin-bottom: 70px;
        padding:5rem 3rem 0;
        grid-template-columns: repeat(2, 1fr);
    }
    .other-member-image-wrapper {
        height: 20rem;
    }
}
@media (max-width: 1024px) {
    .other-interview {
        margin: 0.5rem 0 5.62rem;
    }

    .other-interview-grid {
        gap: 50px;
        margin-bottom: 70px;
        padding:5rem 0 0;
        grid-template-columns: repeat(2, 1fr);
    }
    .other-member-image-wrapper {
        height: 15rem;
    }
    .other-interview-logo {
        width: 80%;
        }
        .other-member-name-ja {
            color: var(--black);
            font-size: 2rem;
        }
        .job-tag {
            font-size: 1rem;
        }
        .other-member-name-en {
            font-size: 1rem;
        }
        
}

@media (max-width: 768px) {
    .page-member .fv-background {
        transform: translate(-15%, 15%) scale(1.5);
    }

    .other-interview {
        margin: 3.12rem 0 5.62rem;
        padding: 0px;
    }

    .other-interview-wrapper {
        margin: 0 1.88rem;
    }

    .other-interview-grid {
        gap: 60px;
        margin-bottom: 60px;
    }

    .other-member-card {
        padding-top: 40px;
    }

    .other-member-image-wrapper {
        margin-bottom: 25px;
    }

    .other-member-info {
        padding: 0 15px 30px;
    }

    .other-member-name-ja {
        font-size: 1.5rem;
    }

    .other-interview-logo {
        margin-bottom: 50px;
    }

    .mizuno-logo {
        max-width: 400px;
    }

    .back-button {
        padding: 16px 60px;
        font-size: 0.9rem;
    }
    .other-interview-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .other-member-card {
        padding-top: 0;
    }
    .other-interview-logo {
        width: 55%;
        margin-top: 4.06rem;
    }
    .other-member-name-ja {
        margin-top: 0.75rem;
    }
    .other-member-name-en {
        margin-top: 0rem;
    }
}
