.contents {
    position: relative;
    width: 100%;
    padding-top: 0;
    line-height: 1.75;

   & .sec_header {
        & .sec_header_ttl-en {
            margin-bottom: 1.25rem;
            font-size: 4.5rem;
        }
        & .sec_header_ttl-ja {
            font-size: 4.2rem;
        }
    }
}
@media screen and (max-width: 1279px) {
    .contents {
        & .sec_header {
            & .sec_header_ttl-en {
                margin-bottom: 1.25rem;
                font-size: clamp(3.2rem, 3.8rem, 4rem);
            }
            & .sec_header_ttl-ja {
                font-size: clamp(2.5rem, 3.2rem, 3.5rem);
            }
        }
    }
}
@media screen and (max-width: 768px) {
    & .sec_header {
        margin-bottom: 2.5rem !important;

        & .sec_header_ttl-en {
            font-size: 2.8rem !important;

            &::before {
            width: 40px;
            height: 30px;
            }
        }
        & .sec_header_ttl-ja {
            font-size: 2.4rem !important;
        }
    }
}


.top_mv {
    position: relative;
    height: 100svh;
    min-height: 98svh;
    background: var(--gradient-light, linear-gradient(0deg, rgba(204, 241, 111) 0.18%, #9EE849 36.92%, #CCF16F 56.88%, #F3FFD6 99.81%));
    background-image: url(../img/top/bg-mv.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    overflow: hidden;

    & .ttl {
        position: absolute;
        top: 51.5%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 100%;
        max-width: 40vw;
        margin: 0 auto;
        padding: 3.2rem;
        text-align: center;
        z-index: 500;
        opacity: 0;
        animation: fadeIn 1s ease-in-out 2.5s forwards;

        & img {
            margin: 0 auto;
        }
    }

    & .img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 10rem 2rem;
        max-height: 95svh;
        z-index: 75;
        opacity: 0;
        animation: fadeIn 1.5s ease-in-out 3.5s forwards;

        & img {
            width: auto;
            height: 100%;
            border-radius: none !important;
            margin: 0 auto;
        }
    }
    & .line {
        position: absolute;
        top: -70%;
        left: 50%;
        transform: translateX(-50%);
        width: 105vw;

        & svg {
            max-width: 100%;

            & .path {
                stroke-dasharray: 11800px;
                stroke-dashoffset: 11800px;
                stroke: #fff;
                stroke-width: 12px;
                animation: lineAnime 2s linear forwards;
            }
        }
    }
}

@keyframes lineAnime {
    0% {
      stroke-dashoffset: 11800px;
    }
    100% {
      stroke-dashoffset: 0px;
    }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1520px) {
 .top_mv {
    & .line {
            top: -90%;
            left: 50%;
            transform: translateX(-50%);
            width: 120vw;
        }
    }
}

@media screen and (orientation: portrait) {
    .top_mv {
        & .ttl {
            max-width: max-content;
            top: 50%;

            & img {
                width: 100%;
                height: auto;
            }
        }
        & .img {
            padding: 5rem 1.6rem;
            height: auto;
            max-height: 98svh;

            & img {
                height: 100%;
                max-height: 88vh;
            }
        }

        & .line {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-48%, -50%);
            width: 158vw;
    
            & svg {
                & .path {
                    stroke-width: 24px;
                    animation: lineAnime 1.5s linear forwards;
                }
            }
        }
    }
}

.sec_about {
    position: relative;
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
    gap: 3.125vw;
    padding: 7.5rem 0 10rem;
    z-index: 1;

    & .txt-area {
        position: relative;
        padding-left: 10%;
        width: 100%;

        &::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 25%;
            transform: translate(25%, 50%);
            display: block;
            width: 145px;
            height: 101px;
            background: url(../img/components/img-bird_01.svg) no-repeat center center;
            background-size: contain;
            z-index: 15;
        }

        & .txt {
            padding-left: 6%;
            margin-bottom: 5.5rem;

            & p {
                margin-bottom: 2.5rem;
                font-size: 1.85rem;
            }
        }

        & .btn-area {
            padding-left: 6%;
        }
    }
    & .img-area {
        width: 100%;
        max-width: 45.8vw;
        margin-left: auto;

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

@media screen and (max-width: 1279px) {
    .sec_about {
        & .txt-area {
            padding-left: 3.2rem;

            &::after {
                width: 100px;
                height: 70px;
            }

            & .txt {
                & p {
                    font-size: clamp(1.5rem, 1.75rem, 1.8rem);
                    word-break: keep-all;
                }
            }
        }
    }
}

@media screen and (min-width: 769px) and (max-width: 920px) {
    .sec_about {
        padding: 5rem 3.2rem;
        grid-template-columns: 1fr;
        gap: 1rem;

        & .txt-area {
            order: 2;

            &::after {
                top: 0;
                right: 0;
                bottom: inherit;
                transform: translate(-50%,0);
            }

            & .txt {
                padding-left: 2rem;
            }

             & .btn-area {
                padding: 0;
                text-align: center;
             }
        }

        & .img-area {
            order: 1;
            max-width: 80vw;
            margin: 0 auto 3.5rem;

            & img {
                border-radius: 24px;
            }
        }
    }
}
@media screen and (max-width: 768px) {
    .sec_about {
        width: 100%;
        padding: 3rem 0 3.5rem;
        grid-template-columns: 1fr;
        gap: 1rem;

        & .txt-area {
            max-width: 50rem;
            margin: 0 auto;
            padding: 3rem 1.6rem;
            order: 2;

            &::after {
                width: 100px;
                height: 70px;
                top: 0;
                right: 0;
                bottom: inherit;
                transform: translate(-20%, -30%);
            }

            & .txt {
                padding-left: 1.6rem;

                & p {
                    font-size: 1.5rem;
                    word-break: keep-all;
                }
            }
            & .btn-area {
            padding: 0;
            text-align: center;
            }
        }
        & .img-area {
            order: 1;
            width: 100%;
            max-width: 100vw;
            height: auto;
            margin-bottom: 3.5rem;
            padding-left: 8%;
        }
    }
}

.sec_icp {
    padding-top: 10rem;
    background: rgba(248, 255, 209, 0.35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;

    & .sec_header {
        & .sec_header_ttl-en {
            position: relative;
            font-size: 3.2rem;

            &::before {
                top: 0;
                left: 50%;
                transform: translate(-50%, -100%) rotate(0deg);
            }
        }
    }

    & .txt-area {
        & p {
            margin-bottom: 3rem;
            font-size: 1.85rem;

                &.pick {
                    display: inline-block;
                    padding-left: 1rem;
                    padding-right: 0.15rem;
                    color: var(--color-txt-accent);
                    font-weight: 700;
                    background: linear-gradient(transparent 70%, rgba(255, 231, 53, 0.35) 70%);
                    text-align: center;
                }

            & span {
                display: block;
            }
        }
    }

    & .img-area {
        & img {
            max-width: 39%;
            width: 100%;
            margin: 0 auto;
        }
    }
}

@media screen and (max-width: 1024px) {
    .sec_icp {
        & .sec_header {
            padding-left: 0;
        }
    }
}

@media screen and (max-width: 1024px) {
    .sec_icp {
        padding-top: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .sec_icp {
        & .txt-area {
            & p {
                font-size: 1.5rem;
            }
        }
        & .img-area {
                & img {
                    max-width: 45rem;
                    height: auto;
                    padding: 0 2rem;
                }
            }
    }
}

.sec_interview {
    padding-top: 8rem;
    margin-bottom: 10rem;

    & .interview_list {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8rem;
        padding-left: 16rem;

        &::after {
            content: "";
            position: absolute;
            right: 9%;
            bottom: 2.75rem;
            display: block;
            width: 17rem;
            height: 15rem;
            background: url(../img/components/img-bird_02.svg) no-repeat center center;
            background-size: contain;
            z-index: 50;
        }

        & .item {
            position: relative;
            color: var(--color-txt);

            & a {
                width: 100%;
                height: auto;

                &:hover {
                    & .img {
                        & img {
                            transform: scale(1.08);
                        }
                    }
                }
            }

            & .voice {
                position: relative;
                width: 90%;
                padding: 1.5rem 1rem 1.5rem 3.5rem;
                color: var(--color-white);
                font-size: clamp(1.8rem, 2rem, 1.45vw);
                background-color: var(--color-primary);
                border-radius: 24px;
                transform: translateY(25%);

                &::after {
                    content: "";
                    position: absolute;
                    right: 0;
                    bottom: 0;
                    transform: translate(-100%, 55%);
                    display: block;
                    width: 30px;
                    height: 40px;
                    background-color: var(--color-primary);
                    clip-path: polygon(0 1%, 100% 0, 0 100%);
                    z-index: 10;
                }

                & span {
                    display: inline-block;
                    margin: 0 auto;
                }
            }
            & .img {
                position: relative;
                width: 90%;
                margin-left: auto;
                border-radius: 24px;
                overflow: hidden;

                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 16.5rem;
                    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.8) 50%);
                    mix-blend-mode: screen;
                }

                & img {
                    position: relative;
                    width: 100%;
                    z-index: -1;
                    transition: all 0.3s ease-in-out;
                }

                & .view {
                    position: absolute;
                    right: 0;
                    bottom: 0;
                    display: block;
                    width: 12rem;
                    height: 7.5rem;
                    background: url(../img/top/bg-interview_view.svg) no-repeat right bottom;
                    background-size: cover;
                    z-index: 10;

                    & span {
                        position: absolute;
                        right: 2.25rem;
                        bottom: 1.75rem;
                        display: block;
                        font-family: var(--font-alexandria);
                        color: var(--color-white);
                        font-size: 2rem;
                        font-weight: 500;
                        letter-spacing: 0.1em;
                        line-height: 1;
                    }
                }
            }
            & .info {
                position: absolute;
                left: 10%;
                bottom: 0;
                padding-left: 2.5rem;

                & .department {
                display: inline-flex;
                align-items: center;
                justify-content: flex-start;
                gap: 0.5rem;
                font-size: 2rem;
                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: 0.8rem;
                margin-bottom: 2rem;

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

                    & .joined  {
                        color: var(--color-txt);
                        font-size: 1.5rem;

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

@media screen and (max-width: 1279px) {
    .sec_interview {
        & .interview_list {
            padding-left: 3rem;
            gap: 4rem;

            &::after {
                width: 13.6rem;
                height: 12rem;
            }
        }
    }
}
@media screen and (max-width: 1180px) {
    .sec_interview {
        & .interview_list {
            grid-template-columns: 1fr 1fr;
            width: calc(100% - 6.4rem);
            max-width: 76.8rem;

            &::after {
            bottom: inherit;
            top: 0;
            right: 0;
            transform: translate(25%, -100%) scale(0.8);
            }
            & .item {
                & .img {
                    & .view {
                        width: 10rem;

                        & span {
                            right: 2rem;
                            bottom: 1.5rem;
                            font-size: 1.8rem;
                        }
                    }
                }
                & .info {
                    padding-left: 1.6rem;
                    & .row {
                        margin-bottom: 3rem;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 768px) {
    .sec_interview {
        margin-bottom: 6.5rem;

        & .interview_list {
            grid-template-columns: 1fr;
            gap: 1rem;
            width: calc(100% - 3.2rem);
            max-width: 39rem;
            margin: 0 auto;
            padding-left: 0;

            &::after {
                width: 8.2rem;
                height: 7.2rem;
                transform: scale(1) translate(5%, -100%);
            }

            & .item {
                & .voice {
                    padding: 2rem 3rem;
                    font-size: clamp(1.5rem, 1.8rem, 1.85rem);
                }

                & .info {
                    padding-left: 1.6rem;
                }
            }
        }
    }
}