.interview_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4.5rem;
    box-sizing: border-box;
    margin-bottom: 7rem;

    & .img {
        width: 50%;
        height: auto;

        & img {
            width: 100%;
            height: auto;
            border-radius: 24px;
        }
    }

    & .info {
        width: 50%;
        padding: 3rem;

        & .info_ttl {
            margin-bottom: 4.5rem;
            color: var(--color-txt);
            font-size: 3.8rem;
            line-height: 1.35;
        }

        & .info_person {
            position: relative;
            padding: 1.5rem 0 1.5rem 3.25rem;
            border-left: 8px solid rgba(182, 236, 121, 0.75);

            &::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                display: block;
                width: 145px;
                height: 101px;
                background: url(../img/components/img-bird_01.svg) no-repeat center center;
                background-size: contain;

            }

            & .department {
                display: inline-flex;
                align-items: center;
                justify-content: flex-start;
                gap: 0.5rem;
                margin-bottom: 1.4rem;
                font-size: 2.5rem;
                font-weight: 700;

                &.job_technical {
                    color: var(--color-txt-primary);

                    &::before {
                        content: "";
                        display: inline-block;
                        width: 22px;
                        height: 22px;
                        background: url(../img/components/img-job_technical.svg) no-repeat center center;
                        background-size: contain;
                    }
                }
            }
            & .row {
                display: flex;
                align-items: end;
                justify-content: flex-start;
                gap: 2rem;

                & .name {
                    color: var(--color-txt);
                    font-family: var(--font-alexandria);
                    font-size: 5rem;
                    line-height: 1;
                }

                & .joined  {
                    color: var(--color-txt);
                    font-size: 2.05rem;
                    letter-spacing: 0.05em;

                    & span {
                        font-size: 2.5rem;
                    }
                }
            }

        }
    }
}

@media screen and (max-width: 1179px) {
    .interview_header {
        gap: 1.5rem;
        
        & .info {
            padding: 1rem;

            & .info_ttl {
                margin-bottom: 1.5rem;
                font-size: 2.65rem;
            }

            & .info_person {
                &::after {
                    width: 125px;
                }
                & .department{
                    margin-bottom: 0.75rem;
                }
                & .row {
                    & .name {
                        font-size: 3.5rem;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .interview_header {
        & .info {
            & .info_person {
                &::after {
                    display: none;
                }
            }
        }
    }
}

@media screen and (max-width: 767px) {
    .interview_header {
        flex-wrap: wrap;
        margin-bottom: 3.5rem;

        & .img {
            width: 100%;
            height: auto;
        }

        & .info {
            & .info_person {
                &::after {
                    width: 80px;
                    height: 56px;
                }
            }
            width: 100%;
            padding: 1rem;

            & .info_ttl {
                width: 100%;
                font-size: 2.8rem;
            }
        }
    }
}

@media screen and (max-width: 389px) {
    .interview_header {
        & .info {
            & .info_ttl {
                font-size: 2.5rem;
            }
            & .info_person {
                & .department{
                    font-size: 2.35rem;
                }
                & .row {
                    & .joined {
                        font-size: 1.8rem;

                        & span {
                            font-size: 1.95rem;
                        }
                    }
                }
            }
        }
    }
}

.interview_body {
    & .question {
        max-width: 84rem;
        margin-bottom: 5.5rem;

        &:nth-child(odd) {
           padding-left: 7.63vw;
        }

        &:nth-child(even) {
            padding-left: 0;
            margin-left: auto;
         }

        & .ttl {
            position: relative;
            display: inline-flex;
            gap: 1rem;
            padding: 2rem;
            margin-bottom: 3.5rem;
            color: var(--color-white);
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1;
            background-color: var(--color-primary);
            border-radius: 12px;
            z-index: 10;

            & .ttl_num {
                font-family: var(--font-alexandria);
                font-size: 3.2rem;
                font-weight: 500;
            }

            .ttl_txt {
                display: inline;
            }

            &::after {
                content: "";
                position: absolute;
                bottom: -15px;
                left: 36px;
                display: block;
                width: 21px;
                height: 21px;
                background-color: var(--color-primary);
                clip-path: polygon(0 0, 100% 0, 100% 100%);
                z-index: -1;

            }
        }
        & .txt {
            margin-left: auto;
            margin-bottom: 3rem;
            width: 92.5%;
            font-size: 1.8rem;

            & p {
                margin-bottom: 1.5rem;
            }
        }

        & .img {
            margin-left: auto;
            width: 92.5%;
            height: auto;

            & img {
                width: 100%;
                height: auto;
                border-radius: 24px;
            }
        }
    }
}

@media screen and (max-width: 884px) {
    .interview_body {
        & .question {
            &:nth-child(odd) {
                padding-left: 0;
             }
        }
    }
}

@media screen and (max-width: 768px) {
    .interview_body {
        & .question {
            & .ttl {
                width: 100%;
                gap: 0.5rem;
                margin-bottom: 2.5rem;
                padding: 1rem 1.5rem 1.25rem;
                font-size: 1.8rem;
                line-height: 1.5;

                & .ttl_num { 
                    font-size: 1.8rem;
                    line-height: 1.5;
                }

                &::after {
                    left: 30px;
                    width: 20px;
                    height: 28px;
                }
            }
            & .txt {
                width: 100%;
                margin-left: 0;
                margin-bottom: 2.5rem;
                font-size: 1.5rem;

                & p {
                    margin-bottom: 1.5rem;
                }
            }
            & .img {
                width: 100%;
                margin-left: 0;
            }
        }
    }
}

.interview_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    padding: 3rem 0;

    & .ttl {
        display: none;
    }

    & .select_interview {
        width: 100%;
        max-width: 62rem;
        transition: all 0.5s ease-in-out;

        &:hover {
            transform: translateY(-0.5rem);
        }

        & a {
            cursor: pointer;
        }
    }
}

@media screen and (max-width: 767px) {
    .interview_footer {
        flex-wrap: wrap;
        gap: 1.8rem;

        & .ttl {
            display: block;
            width: 100%;
            text-align: center;
            margin-bottom: 0.5rem;

            & p {
                position: relative;
                font-family: var(--font-caveat);
                color: var(--color-txt-primary);
                font-size: 2.25rem;
                font-weight: 400;

                &::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translate(-50%, -82%);
                    display: block;
                    width: 48px;
                    height: 38px;
                    background: url(../img/components/img-ttl_sun.svg) no-repeat center center;
                    background-size: contain;
                }
            }
            & h3 {
                color: var(--color-txt);
                font-size: 2.4rem;
                font-weight: 700;
                line-height: 1;
            }
        }

        & .select_interview {
            width: 100%;
            max-width: 36rem;
            margin: 0 auto;
            transition: none;

            & a {
                transition: none;
            
                &:hover {
                    transform: none;
                }
            }
        }
    }
}