@charset "UTF-8";

body.-open {
    position: relative;
}

body::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    transition-duration: 0.5s;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

body.-open::after {
    opacity: 0.4;
    z-index: 10;
}

html.scroll-lock {
    overflow: hidden;
}

a:hover {
    cursor: pointer;
}

.hovact {
    transition-duration: 0.5s;
}

.head {
    top: 0;
    left: 0;
}

.dummy {
    height: 100vh;
}

.pbody {
    padding-top: 0;
    background: #fff;
    font-weight: 500 !important;
}

/* hero */

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info_top {
    background: #FAF7E5;
    padding: 40px 0;
}

.info_top_body {
    display: flex;
    align-items: center;
    gap: 50px;
}

.info_top_ttl {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 24px;
}

.info_top_cnt {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    position: relative;
}

.info_top_cnt::after {
    content: '';
    width: 8px;
    height: 11px;
    background: url(/recruit/img/home/icon-arrow_info.svg);
    background-size: cover;
    position: absolute;
    right: 40px;
    bottom: 50%;
    transform: translateY(50%);
    transition-duration: 0.5s;
}

.info_top_cnt:hover::after {
    transform: translateY(50%) translateX(5px);
}

.info_top_cnt .date {
    font-family: 'Lexend Zetta', sans-serif;
}

.info_top_cnt .title {
    color: #9B4E14;
    font-weight: 500;
}


/* message */

.message {
    padding-top: 250px;
    margin-top: -200px;
}

.message_txt {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.movie {
    text-align: center;
}

.vp-title.Title_module_title__296cb5dd {
    display: none;
}


/* about */

.about .sec_hd {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1320 / 477;
    border-radius: 400px;
    margin-bottom: 0;
    overflow: hidden;
}

.about .sec_hd::before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(/recruit/img/home/bg-about.png);
    background-size: cover;
    background-position: center;
    transition-duration: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}

.about .sec_hd:hover::before {
    transform: scale(1.05);
}

.about .sec_hd:hover {
    background-size: 110%;
}

.about .sec_hd::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 400px;
    background: #000;
    opacity: 0.3;
    transition-duration: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}

.about .sec_hd:hover {
    background-size: 110%;
}

.about .sec_hd:hover::after {
    opacity: 0;
}

.sec_hd .sec_ttl {
    position: relative;
    z-index: 10;
    font-weight: 500;
}

.about .sec_ttl.-ja {
    color: #fff;
}


/* roop */

/* .roop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.roop_cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    animation: l-scroll infinite linear 30s;
}

@keyframes l-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
} */

.roop {
    width: 100%;
    overflow: hidden;
}
  
.roop_inner {
    display: flex;
    width: 17880px; /* 8940px x 2 (複製分) */
    animation: l-scroll 120s linear infinite;
}
  
.roop_cnt {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

@keyframes l-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-8940px); /* 元の全幅ぶんだけ移動 */
    }
}

.roop_cnt p {
    font-size: 108px;
    font-family: 'Lexend Zetta', sans-serif;
}

.roop_cnt img {
    max-width: unset;
}



/* interview */

.interview {
    margin-bottom: 100px;
    padding-top: 250px;
    margin-top: -200px;
}

.interview_body {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
    margin-top: 50px;
}

.interview_cnt {
    position: relative;
}

.interview_cnt.-main:hover {
    cursor: pointer;
}

.interview_cnt p {
    color: #fff;
    background: #9B4E14;
    padding: 5px 15px;
    width: fit-content;
}

.interview_txt {
    position: absolute;
    bottom: -40px;
    left: 0;
    overflow: hidden;
}

/* .interview_txt.-slide p {
    transform: translateX(-100%);
    animation: slidein 1.5s ease forwards;
} */

.interview_txt.-slide p {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.7s ease, opacity 1.5s ease;
}

.interview_txt.-slide.slidein p {
    transform: translateX(0);
    opacity: 1;
}

/* 遅延の設定（0.5秒ずつ） */
.interview_body .interview_cnt:nth-child(1) .interview_txt.-slide.slidein p {
    animation-delay: 0.5s;
}
.interview_body .interview_cnt:nth-child(2) .interview_txt.-slide.slidein p {
    animation-delay: 1s;
}
.interview_body .interview_cnt:nth-child(3) .interview_txt.-slide.slidein p {
    animation-delay: 1.5s;
}
.interview_body .interview_cnt:nth-child(4) .interview_txt.-slide.slidein p {
    animation-delay: 2s;
}

@keyframes slidein {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    transform: unset !important;
}

.carrer {
    margin-bottom: 10px;
}

.interview_btn {
    position: absolute;
    top: 20px;
    right: 0;
    transition-duration: 0.5s;
    background: none;
    border: none;
    z-index: 10;
}

.interview_cnt:hover .interview_btn {
    transform: rotate(180deg);
}

.interview_img {
    overflow: hidden;
    border-radius: 300px;
}

.interview_img img {
    transition-duration: 0.5s;
}

.interview_cnt:hover .interview_img img {
    transform: scale(1.1);
}


/* popup */

.popoup {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    height: 100vh;
    z-index: 1000;
    background: #fffffff2;
    display: none;
}

.interview_popup {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 75px 65px;
    height: 100%;
}

.interview_popup .popup_cnt:nth-child(2) {
    height: 100%;
    overflow: scroll;
    padding-top: 20px;
}

.popup_cnt {
    height: fit-content;
    position: relative;
}

.popup_cnt .popup_txt {
    background: unset;
    color: #000;
}

.popup_ttl.-en {
    font-size: 24px;
    font-family: 'Lexend Zetta', sans-serif;
    background: unset;
    color: #000;
    position: relative;
    margin-bottom: 15px;
    padding: 0 0 15px 0;
}

.popup_ttl.-en::after {
    content: '';
    width: 70px;
    height: 3px;
    background: url(/recruit/img/home/icon-line_popup.svg);
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}

.popup_ttl.-ja {
    font-size: 30px;
    margin-bottom: 50px;
    background: unset;
    color: #000;
    padding: 0;
    font-weight: 500;
}

.popup_txt {
    margin-bottom: 30px;
    padding: 0 !important;
    font-weight: 500;
}

.popup_txt span {
    display: block;
    color: #9B4E14;
    margin-bottom: 10px;
    font-weight: 500;
}

.popup_cnt .popup_message {
    background: #FAF7E5;
    padding: 20px 30px;
    color: #000;
    font-weight: 500;
}

.popup_message span {
    color: #9B4E14;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.interview_btn_close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    z-index: 10000;
    transition-duration: 0.5s;
}

.interview_btn_close:hover {
    cursor: pointer;
    transform: rotate(180deg);
}



/* info */

.info_body {
    background: #FAF7E5;
    padding: 70px 80px;
    position: relative;
}

.info .sec_hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info .sec_ttl.-en {
    position: absolute;
    top: -20px;
    left: 80px;
}

.info .sec_ttl.-en::before {
    bottom: -2px;
    right: -1px;
}

.info .sec_ttl.-en span {
    font-size: 30px;
    padding: 0 40px;
    line-height: 60px;
}

.link_info {
    color: #fff;
    background: #9B4E14;
    padding: 2px 10px;
    border-radius: 40px;
    border: solid 2px #9B4E14;
    font-weight: 500;
}

.link_info:hover {
    background: #fff;
    color: #9B4E14;
}

.info .sec_hd {
    margin-bottom: 40px;
}

.info_list li {
    margin-bottom: 10px;
}

.info_list li a {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 50px;
    padding: 30px;
    position: relative;
}

.info_list li a::after {
    content: '';
    width: 8px;
    height: 11px;
    background: url(/recruit/img/home/icon-arrow_info.svg);
    background-size: cover;
    position: absolute;
    right: 30px;
    bottom: 50%;
    transform: translateY(50%);
    transition-duration: 0.5s;
}

.info_list li a:hover {
    background: #EAE5C7;
}

.info_list li a .date {
    font-family: 'Lexend Zetta', sans-serif;
}

.info_list li a .title {
    font-weight: 500;
}


@media screen and (max-width: 768px) {
    
    .hero {
        height: 41vh;
    }

    .dummy {
        height: 41vh;
    }

    .bnr-entry.inner {
        padding: 0 20px;
    }

    /* info_top */

    .info_top_ttl {
        font-size: 20px;
    }
    
    .info_top {
        padding: 10px 0;
    }

    .info_top_body {
        flex-flow: column;
        align-items: start;
        gap: 0;
    }

    .info_top_cnt {
        flex-flow: column;
        align-items: start;
        gap: 0px;
    }

    .info_top_cnt::after {
        right: 10px;
    }

    .info_top_cnt:hover::after {
        transform: translateY(50%) translateX(5px);
    }


    /* message */

    .message_txt {
        margin-bottom: 40px;
        text-align: left;
    }

    .movie iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 9;
        max-width: 100%;
    }



    /* about */

    .about .sec_hd {
        padding: 55px 20px;
        border-radius: 30px;
        aspect-ratio: unset;
    }

    .about .sec_hd::before {
        content: '';
        width: 100%;
        height: 100%;
        background: url(/recruit/img/home/bg-about_sp.png);
        background-size: cover;
        background-position: center;
    }

    .about .sec_hd::after {
        border-radius: 30px;
    }


    /* roop */

    .roop {
        gap: 20px;
    }

    .roop_inner {
        width: 2260px;
    }

    .roop_cnt p {
        font-size: 39px;
    }

    .roop_cnt img {
        width: 30%;
        height: auto;
    }


    /* interview */

    .interview {
        margin-bottom: 50px;
    }

    .interview_body {
        flex-flow: column;
        align-items: center;
        gap: 80px;
    }

    .interview_img {
        text-align: center;
    }

    .interview_img {
        width: 90%;
        margin: 0 auto;
    }

    .interview_btn {
        right: 15px;
    }

    .popoup {
        width: 100%;
        overflow: scroll;
        padding: 30px 0 0;
    }

    .interview_popup {
        padding: 25px 20px;
        flex-flow: column;
        justify-content: start;
        align-items: center;
        gap: 70px;
        height: unset;
    }

    .interview_btn_close {
        top: 10px;
        right: 10px;
    }

    .interview_popup .popup_cnt:nth-child(2) {
        overflow: unset;
        height: unset;
    }

    .interview_img_popup {
        text-align: center;
    }

    .interview_img_popup img {
        width: 80%;
        height: auto;
    }

    .popup_cnt .interview_txt {
        left: 20px;
    }

    .popup_ttl.-en {
        font-size: 20px;
    }

    .popup_ttl.-ja {
        font-size: 20px;
        margin-bottom: 30px;
    }


    /* info */

    .info .sec_ttl.-en {
        left: 50%;
        transform: translateX(-50%);
    }

    .info .sec_ttl.-en span {
        font-size: 22px;
        letter-spacing: 0;
        line-height: 50px;
    }

    .info_body {
        padding: 50px 20px 30px;
    }

    .info .sec_hd {
        margin-bottom: 20px;
    }

    .info .sec_ttl.-ja {
        text-align: center;
        width: 100%;
    }

    .info_list {
        margin-bottom: 40px;
    }

    .info_list li a {
        flex-flow: column;
        align-items: start;
        gap: 0px;
        padding: 20px 30px;
        border-radius: 30px;
    }

    .link_info {
        width: 100%;
        max-width: 210px;
        margin: 0 auto;
        text-align: center;
    }
}