@charset "utf-8";

/* RECRUIT CSS
---------------------------------- */

/* ------------------------------------------
 .recruit-hero
------------------------------------------ */
.recruit-hero {
    position: relative;
    height: clamp(590px, 53.33vw, 1050px);

    /* height: 100vh; */

    /* min-height: clamp(560px, 48.46vw, 727px); */
    overflow: hidden;
}

.recruit-hero__bg,
.recruit-hero__fig,
.recruit-hero__object,
.recruit-hero__catch-bg,
.recruit-hero__catch,
.recruit-hero__page-title,
.recruit-hero__join {
    position: absolute;
    pointer-events: none;
}

.recruit-hero.vfot .main-ttl {
    visibility: hidden;
    opacity: 0;
}

.recruit-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.recruit-hero__bg,
.recruit-hero__fig,
.recruit-hero__object,
.recruit-hero__catch-bg,
.recruit-hero__catch,
.recruit-hero__page-title,
.recruit-hero__join {
    visibility: hidden;
    opacity: 0;
}

.recruit-hero__bg {
    top: clamp(72px, 15.53vw, 133px);

    /* top: clamp(172px, 15.53vw, 233px); */
    left: 50%;
    width: 83.333vw;
    transform: translateX(-50%);
    z-index: 1;
}

.recruit-hero__fig {
    z-index: 2;
}

.recruit-hero__fig--left {
    top: 243px;

    /* top: clamp(255px, 22.87vw, 343px); */
    left: max(-10px, -2.47vw);
    width: 28.5vw;
}

.recruit-hero__fig--right {
    top: 112px;

    /* top: clamp(126px, 14.13vw, 212px); */
    right: max(-10px, -3.07vw);
    width: 28.5vw;
}

.recruit-hero__object {
    top: 67px;

    /* top: clamp(118px, 11.13vw, 167px); */
    left: 50%;
    width: clamp(320px, 34.4vw, 516px);
    transform: translateX(-50%);
    z-index: 3;
}

.recruit-hero__page-title {
    top: clamp(38px, 12vw, 80px);

    /* top: clamp(138px, 12vw, 180px); */
    left: clamp(40px, 4.07vw, 61px);
    z-index: 5;
}

.recruit-hero__page-title-en {
    display: block;
    font-family: var(--f-en);
    font-size: var(--f-sz36);
    font-weight: 600;
    line-height: 1;
}

.recruit-hero__page-title-ja {
    display: block;
    margin-top: 8px;
    font-family: var(--f-nsj);
    font-size: var(--f-sz18);
    font-weight: 500;
    line-height: 1;
}

.recruit-hero__catch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: clamp(188px, 25.46vw, 282px);

    /* top: clamp(288px, 25.46vw, 382px); */
    left: 50%;
    min-height: clamp(78px, 9.07vw, 136px);
    width: min(90vw, 890px);
    padding: clamp(12px, 1.34vw, 20px) clamp(18px, 2.67vw, 40px);
    color: var(--wht);
    font-family: var(--f-nsj);
    font-size: clamp(4.2rem, 6.4vw, 9.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    font-feature-settings: "palt" 1;
    white-space: nowrap;
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 6;
}

.recruit-hero__catch-text {
    display: block;
}

.recruit-hero__catch-bg {
    top: clamp(188px, 25.46vw, 282px);

    /* top: clamp(288px, 25.46vw, 382px); */
    left: 50%;
    width: min(90vw, 890px);
    min-height: clamp(78px, 9.07vw, 136px);
    background-color: var(--blu);
    mix-blend-mode: multiply;
    transform: translateX(-50%);
    z-index: 4;
}

.recruit-hero__join {
    --join-gap: 2vw;
    --join-item-w: 34vw;
    --join-loop-w: calc((var(--join-item-w) + var(--join-gap)) * 3);
    display: flex;
    gap: var(--join-gap);
    top: clamp(246px, 29.79vw, 347px);

    /* top: clamp(346px, 29.79vw, 447px); */
    left: -18vw;
    width: max-content;
    color: var(--yel);
    font-family: var(--f-en);
    font-size: 10.67vw;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    animation: recruit-hero-join-loop 18s linear infinite;
    will-change: transform;
    z-index: 3;
}

.recruit-hero__join span {
    flex: 0 0 var(--join-item-w);
}

@keyframes recruit-hero-join-loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--join-loop-w) * -1));
    }
}

@media (max-width: 767px) {
    .recruit-hero {
        min-height: 520px;
    }

    .recruit-hero__bg {
        top: 100px;

        /* top: 130px; */
        width: 112vw;
    }

    .recruit-hero__page-title {
        top: 56px;

        /* top: 86px; */
        left: 5vw;
    }

    .recruit-hero__page-title-en {
        font-size: 3rem;
    }

    .recruit-hero__page-title-ja {
        font-size: 1.4rem;
    }

    .recruit-hero__fig--left {
        top: 256px;

        /* top: 286px; */
        left: -92px;
        width: 300px;
    }

    .recruit-hero__fig--right {
        top: 40px;

        /* top: 70px; */
        right: -100px;
        width: 310px;
    }

    .recruit-hero__object {
        top: 82px;

        /* top: 112px; */
        width: min(74vw, 330px);
    }

    .recruit-hero__catch-bg {
        top: 262px;

        /* top: 292px; */
        width: 92vw;
        min-height: 74px;
    }

    .recruit-hero__catch {
        top: 262px;

        /* top: 292px; */
        width: 92vw;
        min-height: 74px;
        font-size: clamp(3.6rem, 10.2vw, 4.6rem);
        padding-right: 12px;
        padding-left: 12px;
    }

    .recruit-hero__join {
        --join-item-w: 56vw;
        top: 316px;

        /* top: 346px; */
        left: -26vw;
        font-size: 18vw;
    }
}

/* ------------------------------------------
 .sec-about
------------------------------------------ */
.sec-about {
    position: relative;
}

.sec-about::after {
    content: "";
    position: absolute;
    background-image: url("../img/recruit/deco-star.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: min(40vw, 600px);
    aspect-ratio: 600/573;
    bottom: 0;
    right: -7.2vw;
    z-index: -1;
}

.sec-about .upper {
    --about-image-cover-scale: 1;
    margin-right: calc((100% - 100vw) / 2);
    position: relative;
    gap: min(7.4vw , 100px);
}

.sec-about .upper .txt-area {
    flex: 1;
}

.sec-about .upper .sec-ttl {
    font-feature-settings: "palt";
}
.sec-about .upper .sec-ttl .pack {
    display: inline-block;
    overflow: hidden;
}
.sec-about .upper .sec-ttl .pack .txt {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.sec-about .upper .about-image {
    width: 40vw;
    position: relative;
}

.sec-about .upper .about-figure {
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    max-height: 600px;
}
.sec-about .upper .about-figure::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blu);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform-origin: right center;
    transform: scaleX(var(--about-image-cover-scale, 1));
    will-change: transform;
}

.sec-about .upper .about-image::after {
    content: "";
    display: block;
    width: var(--mp90);
    aspect-ratio: 9/8.2;
    border-radius: 999px;
    background-color: var(--yel);
    position: absolute;
    right: 12.8vw;
    bottom: calc(var(--mp40) * -1);
    z-index: -1;
}

.sec-about .upper .apl {
    padding-left: 0.4em;
}

.sec-about .upper .txt-cont {
    opacity: 0;
    transform: translateX(32px);
    will-change: opacity, transform;
}

.sec-about .sub-ttl {
    position: relative;
}

.sec-about .sub-ttl::before {
    content: "";
    display: block;
    width: var(--mp140);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--wht);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.sec-about .under {
    --under-image-cover-scale: 1;
    flex-flow: row-reverse;
    justify-content: flex-end;
    gap: 9.2vw;
}

.sec-about .under .sec-ttl {
    opacity: 0;
    transform: translateX(-32px);
    will-change: opacity, transform;
}

.sec-about .under .sec-ttl .system {
    color: var(--333, var(--base));
}
.sec-about .under .sec-ttl .system span {
    display: inline-block;
    color: var(--333, var(--base));
}
.sec-about .under .sec-ttl .system::before {
}


.sec-about .under .about-image {
    width: min(33.46vw, 502px);
}

.sec-about .under .about-figure {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.sec-about .under .about-figure::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blu);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: scaleX(var(--under-image-cover-scale, 1));
    transform-origin: right center;
    will-change: transform;
}

.sec-about .under .txt-cont {
    opacity: 0;
    transform: translateX(-32px);
    will-change: opacity, transform;
}

.sec-about .under .fst {
    width: min(26.6vw, 400px);
}

.sec-about .under .scd {
    width: min(16vw, 240px);
    margin-left: auto;
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1300px) {
    .sec-about .upper {
        gap: var(--mp30);
    }
}

@media (max-width: 991px) {
    .sec-about .upper .txt-area {
        margin-right: 5vw;
        padding-top: 0;
    }

    .sec-about .upper .about-image {
        width: 100%;
    }

    .sec-about .upper .about-figure {
        aspect-ratio: 2/1;
    }
}

@media (max-width: 767px) {
    .sec-about .under {
        flex-flow: column;
    }

    .sec-about .under .txt-area {
        width: 100%;
    }

    .sec-about .under .about-image {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .sec-about .under .fst {
        width: 58.4%;
    }

    .sec-about .under .scd {
        margin: initial;
        width: 34.9%;
    }
}
@media (max-width: 480px) {
    .sec-about .upper .about-figure {
        aspect-ratio: 3/2;
    }
}

/* ------------------------------------------
 .center-links
------------------------------------------ */
.center-links.sec-links {
    background-color: initial;
}

.center-links.sec-links a {
    box-shadow: 0 0 15px 0 rgb(0 48 103 / 5%);
}

.center-links.sec-links .link.yel a {
    background-color: var(--blu);
}

.center-links.sec-links .link.yel .ttl {
    color: var(--wht);
}

/* ------------------------------------------
 .sec-number
------------------------------------------ */
.sec-number {
    padding-top: var(--mp320);
    position: relative;
    overflow: hidden;
}

.sec-number .gia {
    width: 160vw;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    z-index: -1;
}

.sec-number .gia-mask {
    position: absolute;
    inset: 0;
    display: block;
    mask-image: url("../img/recruit/deco-gia-w.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url("../img/recruit/deco-gia-w.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    animation: recruit-gia-rotate 180s linear infinite;
    transform-origin: center;
    opacity: 1;
    overflow: hidden;
}

.sec-number .gia-mask::before {
    content: "";
    position: absolute;
    inset: -25%;
    background-color: #c2d8ff;
    background-image: url("../img/recruit/recruit-backdrop.jpg");
    background-repeat: repeat;
    background-blend-mode: soft-light;
    animation: recruit-gia-rotate-reverse 180s linear infinite;
    transform-origin: center;
}

.sec-number .backdrop {
    position: relative;
}

.sec-number .backdrop::before {
    content: "";
    position: absolute;
    display: block;
    width: 100vw;
    height: calc(100% - 80vw);
    bottom: 0;
    left: 0;
    background-color: #c2d8ff;
    background-image: url("../img/recruit/recruit-backdrop.jpg");
    background-repeat: repeat;
    background-blend-mode: soft-light;
    opacity: 1;
    z-index: -2;
}

@keyframes recruit-gia-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes recruit-gia-rotate-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sec-number .gia {
        animation: none;
    }
}

.sec-number .sec-ttl {
    position: relative;
}

.sec-number .sec-ttl * {
    position: relative;
    z-index: 1;
}

.sec-number .sec-ttl::before {
    content: "";
    width: 102px;
    height: 68px;
    display: block;
    background-image: url("../img/recruit/deco-123.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -3.46vw;
    top: -32px;
    z-index: 0;
}

.sec-number .num-block {
    position: relative;
    z-index: 1;
}

.sec-number .cool {
    width: 70.3%;
}

.sec-number .balloon {
    position: relative;
    border-radius: 10px;
    padding: 10px 30px;
}

.sec-number .balloon::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: -15px;
    width: 15px;
    height: 15px;
    background-color: var(--yel);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.sec-number .like .balloon::after {
    right: initial;
    left: 30px;
    transform: scale(-1, 1);
}

.sec-number .num-lists {
    gap: 30px;
}

.sec-number .num-list {
    background-color: var(--wht);
    border-radius: 20px;
    padding: var(--mp40) 1em var(--mp50);
    display: flex;
    flex-flow: column;
    justify-content: end;
    align-items: center;
}

.sec-number .num-list .deco,
.sec-number .num-list .num-heading,
.sec-number .num-list .num-area,
.sec-number .num-list .comment {
    opacity: 0;
    transform: translateY(18px);
    will-change: opacity, transform;
}
.sec-number .num-list .comment {
    text-align: center;
}

.sec-number .cool .num-list {
    width: calc((100% - 30px) / 2);
}

.sec-number .like .num-list {
    width: calc((100% - 60px) / 3);
    padding-top: var(--mp30);
}

.sec-number .num-sub-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.sec-number .num-area {
    padding-top: 15px;
}
.sec-number .unit {
    letter-spacing: 0;
}
.sec-number .num {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

.sec-number .comment {
    padding-top: 15px;
}

.sec-number .num-list.num-list-02 {
    flex-flow: row;
    justify-content: center;
    gap: 20px;
    align-items: end;
}

.sec-number .num-list-02 .num-sub-ttl {
    flex-flow: column;
    gap: 0;
}

.sec-number .num-list-02 .num-area {
    padding-top: 26px;
    min-width: 5.8em;
    text-align: center;
}

.sec-number .like .num-list-08,
.sec-number .like .num-list-09 {
    width: calc((100% - 30px) / 2);
}

.sec-number .like .num-list-09 {
    justify-content: flex-start;
}

.sec-number .num-list-09 .num-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.sec-number .num-list-09 .area {
    text-align: center;
    display: grid;
    position: relative;
}

.sec-number .num-list-09 .area:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    top: 0;
    right: -10px;
    background-color: rgb(0 0 0 / 10%);
    position: absolute;
}

@media (max-width: 1300px) {
    .sec-number .num-sub-ttl {
        gap: 1.923vw;
    }

    .sec-number .cool {
        width: 100%;
    }
    .sec-number .like .num-list-08 {
        width: calc(40% - 15px);
    }

    .sec-number .like .num-list-09 {
        width: calc(60% - 15px);
    }
}

@media (max-width: 991px) {
    .sec-number .sec-ttl::before {
        top: -52px;
    }
}

@media (max-width: 840px) {
    .sec-number .like .num-list {
        width: calc((100% - 30px) / 2);
    }

    .sec-number .num-list-10 .num-sub-ttl br {
        display: none;
    }

    .sec-number .num-list-09 .area {
        width: calc(50% - 10px);
    }

    .sec-number .num-list-09 .area:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .sec-number .cool .num-list,
    .sec-number .like .num-list {
        width: 100%;
        flex: initial;
    }
}


/* ------------------------------------------
 recruit .sec-internship
------------------------------------------ */
.sec-internship {
    position: relative;
}

.sec-internship .panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 30px;
    background-color: rgb(255 255 255 / 90%);
    padding-right: var(--mp60);
    padding-left: var(--mp60);
}

.sec-internship .backdrop-img {
    position: relative;
    z-index: 0;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    gap: 4px;
}

.sec-internship .backdrop-row {
    --internship-backdrop-gap: 5px;
    --internship-backdrop-width: max(1642px, 105vw);
    overflow: hidden;
}

.sec-internship .backdrop-track {
    display: flex;
    width: max-content;
    animation: internshipBackdropSlide 32s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
}

.sec-internship .backdrop-row.bd1 .backdrop-track {
    animation-direction: reverse;
}

.sec-internship .backdrops {
    gap: var(--internship-backdrop-gap);
    flex-wrap: nowrap;
    width: var(--internship-backdrop-width);
    flex-shrink: 0;
    padding-right: var(--internship-backdrop-gap);
}

.sec-internship .backdrop-img li {
    overflow: hidden;
    border-radius: 10px;
    flex: 0 0
        calc(
            (
                    var(--internship-backdrop-width) -
                        (var(--internship-backdrop-gap) * 4)
                ) /
                4
        );
    aspect-ratio: 4 / 3;
}

.sec-internship .backdrop-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes internshipBackdropSlide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 480px) {
    .sec-internship .panel {
        padding: var(--mp30);
    }

    .sec-internship .sub {
        font-size: var(--f-sz22);
    }
}

/* ------------------------------------------
 recruit .sec-links
------------------------------------------ */
.sec-links {
    background-color: var(--dblu);
}

.sec-links .link-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
}

.sec-links a {
    background-color: var(--wht);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: all 0.28s ease;
}

.sec-links .link a {
    height: 200px;
    position: relative;
}

.sec-links .link.sml a {
    height: 95px;
}

.sec-links .link:not(.sml) {
    grid-row: 1/3;
}

.sec-links .link:not(.sml) a::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-color: var(--yel);
}

.sec-links .en {
    color: var(--yel);
    font-size: var(--f-sz17);
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.5;
}

.sec-links .link:not(.sml) .en {
    position: absolute;
    top: 20px;
    left: 20px;
}

.sec-links .ttl {
    font-size: var(--f-sz28);
    color: var(--blu);
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0;
}

.sec-links .sml .en {
    font-size: var(--f-sz15);
}

.sec-links .sml .ttl {
    font-size: var(--f-sz24);
}

.sec-links .link.yel a {
    background-color: var(--yel);
}

.sec-links .link.yel .en {
    color: var(--wht);
}

.sec-links .link.yel .ttl {
    color: var(--blk);
}

.sec-links .ico {
    height: 70px;
}
@media (min-width: 768px) {
    .sec-links .link a:hover {
        opacity: 0.7;
    }
}
@media (max-width: 991px) {
    .sec-links .link-block {
        grid-template-columns: 1fr 1fr 26%;
    }
}

@media (max-width: 767px) {
    .sec-links .link-block {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-links .link:not(.sml) {
        grid-row: initial;
    }
}

@media (max-width: 480px) {
    .sec-links .link-block {
        grid-template-columns: 1fr;
    }
}


/* ------------------------------------------
 .sec-contact
------------------------------------------ */
#recruit .sec-contact .btn-contact.for-recruit {
    display: block;
}

#recruit .sec-contact .btn-contact.for-contact {
    display: none;
}
