@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

.header--freshers {
    background-color: var(--color-white);
}

.pageTitle {
    display: flex;
}

.main {
    padding: 100rem 0 0;
}

.mv {
    padding: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 48.47vw;
    max-height: calc(100vh - 100rem);
    aspect-ratio: 1440/698;
}

.shutter {
    display: none;
}

.slider--mv .slide {
    height: 48.47vw;
    max-height: calc(100vh - 100rem);
    aspect-ratio: 1440/698;
}

.slide:not(.slide--01) {
    position: relative;
}

.slide:not(.slide--01)::after {
    position: absolute;
    content: "";
    background: url(../img/heading.webp) center/contain no-repeat;
    width: 400rem;
    height: 252rem;
    bottom: 50rem;
    right: 35rem;
}

.slide__img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 1440/698;
}

#mv_video {
    animation: fadeIn 2s forwards;
    object-fit: contain !important;
    width: 100% !important;
    height: 48.47vw !important;
    max-height: calc(100vh - 100rem);
    aspect-ratio: 1440/698 !important;
}

#mv_video video {
    object-fit: contain !important;
    width: 100% !important;
    height: 48.47vw !important;
    max-height: calc(100vh - 100rem);
    aspect-ratio: 1440/698 !important;
    background-color: var(--color-white);
}

/* ブライトコーブ　video上部に表示されるvideo情報 */
.mv .vjs-dock-text {
    display: none !important;
}

/* ブライトコーブ　再生ボタン */
.mv .vjs-big-play-button {
    display: none !important;
}

.add-animation .slide__img {
    animation: zoomUp 8s linear 0s normal both;
}

.slick--pause {
    position: absolute;
    bottom: 50rem;
    right: 50rem;
    width: 34rem;
    height: 34rem;
    cursor: pointer;
    transition: all .4s;
    background: url(../img/btn_pause_f.svg) center/contain no-repeat;
}

.slick--pause.paused {
    background: url(../img/btn_start_f.svg) center/contain no-repeat;
}

.slick--pause:hover {
    opacity: .7;
}

@media screen and (max-width: 1440px) {
    .mv {
        height: 698rem;
    }


    .slider--mv .slide {
        height: 698rem;
    }

    #mv_video {
        height: 698rem !important;
    }

    #mv_video video {
        height: 698rem !important;
    }
}

@media screen and (max-width: 767.9px) {
    .main {
        padding: 62rem 0 20rem;
    }

    .shutter {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-white);
        z-index: 10;
        animation: fadeOut 1s forwards 1.7s 1
    }

    .freshersTop .hamburger__bar {
        background-color: var(--color-base);
    }
        
        .mv,
        .slider--mv .slide,
        .slide__img {
        height: 604rem;
        max-height: calc(100vh - 62rem);
        aspect-ratio: 375/604;
    }

    #mv_video {
        max-height: calc(100vh - 62rem);
        height: 604rem !important;
        aspect-ratio: 375/604 !important;
    }

    #mv_video video {
        width: 140% !important;
        margin-left: -20%;
        object-fit: contain !important;
        background-color: var(--color-white);
        height: 604rem !important;
        max-height: calc(100vh - 62rem);
        aspect-ratio: 375/604 !important;
    }

    .slide:not(.slide--01)::after {
        width: 300rem;
        height: 188rem;
        bottom: 15rem;
        right: 8rem;
    }

    .slick--pause {
        bottom: 20rem;
        right: 20rem;
    }

    .freshers .container--l {
        width: 375rem;
    }
}

/* pagesNav */
.pagesNav {
    margin-bottom: 50rem;
}

.pagesNav__wrapper {
    display: flex;
    gap: 6rem;
    margin: 50rem 0 6rem;
}

.pagesNav__link {
    position: relative;
}

.pagesNav__link .heading__wrapper {
    position: absolute;
    top: 37rem;
    left: 30rem;
    z-index: 1;
}

.pagesNav__link.hover {
    overflow: hidden;
    display: block;
}

.pagesNav__link.hover:hover {
    opacity: 1;
}

.pagesNav__link.hover img {
    transition: all 1s;
    opacity: .65;
}

.pagesNav__link.hover:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.pagesNav__link.modal-open::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120rem;
    height: 155rem;
    background: url(../img/btn_play_f.svg) center/contain no-repeat;
    z-index: 1;
}

@media screen and (max-width: 767.9px) {
    .pagesNav {
        margin-bottom: 0;
    }

    .pagesNav__wrapper {
        flex-direction: column;
        gap: 0;
        margin: 16rem 0 0;
    }

    .pagesNav__link .heading__wrapper {
        top: 21rem;
        left: 19rem;
    }

    .modal-open .pagesNav__img {
        height: 200rem;
    }

    .pagesNav__link.modal-open::before {
        width: 78rem;
        height: 85rem;
        top: 60%;
    }
}

/* modal */
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.modal__bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000rem;
}

video {
    width: 100%;
    border: 0;
    height: 50vh;
}

.close {
    display: block;
    width: 50rem;
    height: 50rem;
    position: absolute;
    top: -50rem;
    right: 0;
}

.close::before,
.close::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: 0% 50%;
    position: absolute;
    top: calc(14% - 5px);
    left: 14%;
}

.close::after {
    transform: rotate(-45deg);
    transform-origin: 100% 50%;
    left: auto;
    right: 14%;
}

@media screen and (max-width: 767.9px) {
    video {
        height: 252rem;
    }
}

/* pickup */
.pickup {
    background-color: var(--color-gray-lighter);
    padding: 79rem 0 74rem;
}

.pickup .container {
    display: flex;
    justify-content: space-between;
}

.pickup .heading__wrapper,
.environment .heading__wrapper {
    margin-top: 5rem;
}

.pickup__list {
    position: relative;
    overflow: hidden;
}

.pickup__lists {
    width: 1024rem;
    display: grid;
    grid-template: 190rem 190rem/2fr 1fr 1fr 2fr;
    gap: 6rem;
}

.pickup__list.list--01 {
    grid-area: 1/1/2/3;
}

.pickup__list.list--02 {
    grid-area: 1/3/2/5;
}

.pickup__list.list--04 {
    grid-area: 2/2/3/4;
}

.pickup__list .link--hover::after {
    background-color: var(--color-green);
    opacity: .4;
}

.pickup__list .link--hover:hover::after {
    opacity: 0;
}

.pickup__wrapper {
    position: absolute;
    top: 18rem;
    left: 27rem;
    z-index: 1;
    color: var(--color-white);
}

.pickup__title {
    font-size: 20rem;
    font-weight: 600;
    letter-spacing: .1em;
}

.pickup__title img {
    width: 18rem;
    height: 18rem;
    margin-left: 4rem;
    vertical-align: text-bottom;
}

.pickup__wrapper .text {
    font-size: 14rem;
    font-weight: 600;
    line-height: 1.7;
    margin-top: 11rem;
}

.pickup__list .btn {
    position: absolute;
    bottom: 20rem;
    right: 20rem;
    z-index: 1;
}

.pickup .btn--f:hover {
    background-color: var(--color-white);
}

.pickup .btn--f:hover .svg--arrow {
    fill: var(--color-green);
}

@media screen and (max-width: 767.9px) {
    .pickup {
        background-color: unset;
        padding: 32rem 0 0;
    }

    .pickup .container {
        flex-direction: column;
    }

    .pickup .heading__wrapper,
    .environment .heading__wrapper {
        margin: 0 0 23rem;
        text-align: center;
    }

    .pickup .heading--primary,
    .environment .heading--primary {
        text-align: center;
    }

    .pickup__lists {
        width: 375rem;
        grid-template: 143rem 70rem 70rem 143rem/1fr 1fr;
        gap: 2rem;
    }

    .pickup__list.list--01 {
        grid-area: 1/1/3/2;
    }

    .pickup__list.list--02 {
        grid-area: 3/1/5/2;
    }

    .pickup__list.list--04 {
        grid-area: 2/2/4/3;
    }

    .pickup__wrapper {
        top: 20rem;
        left: 23rem;
    }

    .pickup__title {
        font-size: 18rem;
        line-height: 1.33;
    }
}

/* environment */
.environment {
    padding: 120rem 0;
}

.environment .container {
    display: flex;
    justify-content: space-between;
}

.environment__wrapper {
    width: 548rem;
}

.environment__lists {
    margin-top: 61rem;
    border-top: 1px solid var(--color-gray-border);
}

.environment__list {
    border-bottom: 1px solid var(--color-gray-border);
}

.environment__list .link {
    justify-content: space-between;
    padding: 19rem 0;
}

.environment__list .link:hover {
    opacity: 1;
}

.link__title {
    font-size: 24rem;
    font-weight: 600;
    letter-spacing: .1em;
}

.environment__img {
    order: -1;
    width: 670rem;
}

.environment__list .link:hover .btn {
    background-color: var(--color-green);
}

.environment__list .link:hover .btn .svg--arrow {
    fill: var(--color-white);
}

@media screen and (max-width: 767.9px) {
    .environment {
        padding: 32rem 0 0;
    }

    .environment .container {
        flex-direction: column;
    }

    .environment__wrapper {
        display: contents;
    }

    .environment .heading__wrapper {
        order: -1;
    }

    .environment__lists {
        border-top: none;
        width: 335rem;
        margin: 11rem auto 59rem;
    }

    .link__title {
        font-size: 18rem;
    }

    .environment__img {
        aspect-ratio: 375/200;
        object-fit: cover;
        width: 100%;
    }
}

/* bottom */
.bottom {
    display: flex;
}

.bottom__link {
    width: 50%;
}

.bottom .link--hover::after {
    opacity: .3;
}

.bottom .link--hover:hover::after {
    opacity: 0;
}

.bottom .heading__wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -41%);
    text-align: center;
    position: absolute;
    z-index: 1;
}

.bottom .heading--primary {
    text-align: center;
}

.backToTop {
    margin-top: -50rem;
}

@media screen and (max-width: 767.9px) {
    .bottom {
        flex-direction: column;
        margin-bottom: 70rem;
    }

    .bottom__link {
        width: 100%;
    }

    .backToTop {
        margin-top: -50rem;
    }
}