@charset "UTF-8";

/* フォント */
@font-face {
    font-family: 'Gotham Narrow';
    src: url('<?php echo esc_url(get_template_directory_uri()); ?>/assets/fonts/Gotham Narrow Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}



/* 共通
-------------------------------------------------- */

html {
    font-size: 62.5%;

    @media (min-width: 768px) and (max-width: 1500px) {
        font-size: calc(10 / 1500 * 100vw);
    }

    @media (min-width: 320px) and (max-width: 767px) {
        font-size: calc(10 / 767 * 100vw);
    }
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
}

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

a,
span {
    display: inline-block;
}

.section__title--white {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.section__title--black {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
}

.section__title--en {
    font-size: 3rem;
    font-weight: 300;
    font-family: "jaf-mashine", sans-serif;
}

.section__title--jp {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(30 / 14 * 100%);
    letter-spacing: 0.15em;
}

/* オープニング */
.opening {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
}

/* ── アメーバ（ブロブ） ── */
.opening__sphere {
    position: absolute;
    width: 110px;
    height: 110px;
    background: #111;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: scale(0);
    opacity: 0;
    animation: blobIn 0.65s cubic-bezier(.25, 0, .2, 1) 0.15s forwards;
}

@keyframes blobIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    65% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ブロブ退場 */
.opening.is-logo .opening__sphere {
    animation: blobOut 0.4s cubic-bezier(.7, 0, .3, 1) forwards;
}

@keyframes blobOut {
    to {
        transform: scale(0.1);
        opacity: 0;
    }
}

/* ── ロゴ ── */
.opening__logo {
    position: absolute;
    opacity: 0;
}

.opening__logo img {
    width: 220px;
    display: block;
}

/* ロゴ登場 */
.opening.is-logo .opening__logo {
    animation: logoIn 0.55s cubic-bezier(.25, 0, .2, 1) 0.2s forwards;
}

@keyframes logoIn {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 退場フェードアウト */
.opening.is-done {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}


/* 追加 アニメーション背景 */

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media (max-width: 576px) {

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .section__title--en {
        font-size: 5rem;
    }

    .section__title--jp {
        font-size: 3rem;
    }
}

/* ヘッダー
-------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    height: 6rem;
    padding-top: 3.6rem;
}

.header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    max-width: 1720px;
    margin: 0 auto;
    padding-inline: 20px;
}

.header__logo {
    width: 40rem;
}

.header__logo.is-invert {
    filter: invert(1);
    transition: filter 0.3s ease;
}

.nav-pc {
    display: flex;
    align-items: center;
    gap: 4rem;
    height: 8rem;
    padding-inline: 5rem;
    background: #000000;
    border-radius: 100px;
    padding-right: 2rem;
    border: 2px solid #A79A88;
    /* color: #A79A88; */
}

.nav-pc__list {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-pc__text {
    color: #8e8e8e;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    transition: color 0.3s;
}

.nav-pc__text:hover {
    color: #252525;
}

.dropDown {
    position: absolute;
    bottom: -20%;
    left: 75%;
    transform: translate(-50%, 100%);
    display: none;
    width: 44%;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.dropDown.two {
    width: 31%;
}

.link:hover>.dropDown,
.link:focus-within>.dropDown {
    display: block;
}

/* 固定で開く用 */
.link.is-open>.dropDown {
    display: block;
}

.dropDown__list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
}

.dropDown__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 5rem;
}

.dropDown__link {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s;
}

.dropDown__link:hover,
.dropDown__link:focus {
    opacity: 0.7;
}

.nav-pc__contact {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 2.5rem;
    border-left: 1px solid #fff;
}

.btn__contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn__contact img {
    width: 2.5rem;
}

.btn__contact span {
    color: #e2e2e2;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    transition: opacity 0.3s;
}

.btn__contact:hover,
.btn__contact:focus {
    opacity: 0.7;
}



/* mobile menu */
.mobile-menu,
.hamburger {
    display: none;
}

@media (max-width: 1460px) {
    .nav-pc__list {
        display: none;
    }

    .nav-pc__contact {
        border-left: none;
    }
}

@media (max-width: 767px) {

    .header__logo {
        position: relative;
        z-index: 1111;
    }

    .nav-pc {
        position: relative;
        padding-inline: 2rem;
        background: initial;
    }

    /* 開いた時、mobile-menuの上に枠線を重ねる（::afterでz-index超え） */
    .nav-pc:has(.mobile-menu.is-open)::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid #bfbfbf;
        border-radius: 95px;
        z-index: 1001;
        pointer-events: none;
    }

    /* ハンバーガーボタンの見た目の土台 */
    .hamburger {
        position: relative;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
    }

    /* OPEN テキスト：閉じているときは表示 */
    .hamburger__open-text {
        display: block;
        color: #A79A88;
        font-size: 3rem;
        font-weight: bold;
        letter-spacing: 0em;
        line-height: 1;
        white-space: nowrap;
    }

    /* CLOSE テキスト：通常時は非表示 */
    .hamburger__close-text {
        display: none;
        color: #A79A88;
        font-size: 3rem;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 1;
        white-space: nowrap;
    }

    /* 開いた時：OPENテキストを非表示にして CLOSEテキストを表示 */
    .hamburger.is-open .hamburger__open-text {
        display: none;
    }

    .hamburger.is-open .hamburger__close-text {
        display: block;
    }

    .mobile-menu {
        width: 50%;
        height: 100%;
        margin-left: auto;
        padding: 100px 0;
        background: #0b0b0b;
        opacity: 0;
        transition: opacity 0.3s;
    }

    /* 開いた状態 */
    .mobile-menu.is-open {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 100;
        overflow-y: auto;
        opacity: 1;
        transition: opacity 0.3s;
    }

    .mobile-menu__inner {
        padding-inline: 30px;
    }

    .mobile-menu__box--common {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .mobile-menu__title {
        color: #e2e2e2;
        font-size: 2.4rem;
    }

    .mobile-menu__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .mobile-menu__item {
        width: 100%;
    }

    .mobile-menu__link {
        color: #bfbfbf;
        font-size: 2rem;
        line-height: 1.8;
    }

    .mobile-menu__link:hover {
        opacity: 0.7;
    }

    .mobile-menu__box--etc {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 25px;
    }

    .mobile-menu__link-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5rem;
    }

    .mobile-menu__link--etc {
        color: #e2e2e2;
        font-size: 2.4rem;
        line-height: 1.8;
    }

    .mobile-menu__link--etc:hover {
        opacity: 0.7;
    }

    .mobile-menu__box--mail {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 4.6rem;
        /* border: 1px solid #7d7d7d; */
        /* transition: border-color 0.3s; */
    }

    .mobile-menu__box--mail:hover {
        border-color: #fff;
    }

    .mobile-menu__box--mail p {
        /* padding: 1.2rem 2.5rem; */
        color: #fff;
        font-size: 1.8rem;
        transition: color 0.3s;
    }

    .mobile-menu__box--mail p:hover {
        color: #fff;
    }

    .mobile-menu__box--mail-img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 6rem;
        height: 100%;
        background: #7d7d7d;
    }

    .mobile-menu__box--mail-img img {
        width: 2.2rem;
    }

    .mobile-menu__logo {
        width: 9.5rem;
        margin-top: 50px;
        margin-inline: auto;
    }
}

@media screen and (max-width: 576px) {

    .btn__contact {
        display: none;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-menu__inner {
        padding-inline: 9rem;
    }

    .mobile-menu__title {
        font-size: 4rem;
        font-weight: 700;
    }

    .mobile-menu__link {
        font-size: 3rem;
    }

    .mobile-menu__link--etc {
        font-size: 4rem;
        font-weight: 700;
    }

    .mobile-menu__box--mail {
        height: 8rem;
    }

    .mobile-menu__box--mail p {
        font-size: 4rem;
        font-weight: 700;
    }

    .mobile-menu__box--mail-img img {
        width: 4rem;
    }

    .mobile-menu__logo {
        width: 20rem;
    }
}


/* 現在のページ
-------------------------------------------------- */

.current__section {
    position: fixed;
    top: 50%;
    left: 10rem;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.current__section.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.current__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
}

.current__item.current {
    border: 1px solid #fff;
}

.current__link {
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
}

.current__link.current {
    opacity: 1;
}

@media (max-width: 767px) {
    .current__section {
        display: none;
    }
}


/* スクロールスナップ */

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.snap-section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* 固定ヘッダーがある場合（必要なときだけ） */
.snap-section {
    scroll-margin-top: 0;
    /* header の高さに合わせる */
}

.last-snap {
    min-height: 40vh;
    height: auto;
    overflow: visible;
    /* ←ここが重要 */
    overscroll-behavior: auto;
}

@media (max-width: 576px) {

    .snap-section {
        scroll-margin-top: 0;
    }
}

/* ファーストビュー
-------------------------------------------------- */

.fv {
    position: relative;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* .fv__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.fv__bg-img img {
    height: 100%;
} */

/* .fv__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
} */

.fv__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.fv__theme {
    color: #fff;
    font-size: 5rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.3em;
}

.fv__text-box img {
    width: 60rem;
}

.fv__scroll-down {
    position: absolute;
    bottom: 2.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 22.5rem;
}

@media (max-width: 767px) {

    .fv__theme {
        font-size: 4rem;
    }

    .fv__text-box img {
        width: 71rem;
    }
}


/* 私たちについて
-------------------------------------------------- */

.about {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* .about__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    rotate: 180deg;
    scale: -1 1;
}

.about__bg-img img {
    height: 100%;
} */

/* .about__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
} */

.about__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.about__title {
    margin-bottom: 3.5rem;
}

.about__text--16px {
    margin-bottom: 3rem;
    color: #fff;
    line-height: calc(35 / 16 * 100%);
    letter-spacing: 0.15em;
}

.about__text-box--14px {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    margin-bottom: 6rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: calc(35 / 15 * 100%);
    letter-spacing: 0.15em;
    text-align: center;
}

.btn__more-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16.5rem;
    height: 3.3rem;
    margin-inline: auto;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: "jaf-mashine", sans-serif;
    transition: opacity 0.3s;
}

.btn__more-view--img {
    background: url(../img/btn-more-view-wrapper.png) no-repeat center center / contain;
    transition: opacity 0.3s;
}

.btn__more-view:hover,
.btn__more-view--img:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {

    .about {
        height: auto;
        padding: 10rem 0;
    }

    .about__text-box {
        width: 75%;
    }

}

@media screen and (max-width: 576px) {

    .about__text-box {
        width: 90%;
    }


    .about__text--16px {
        font-size: 3rem;
    }

    .about__text-box--14px {
        font-size: 2.4rem;
    }

}

/* ミッション・ビジョン
-------------------------------------------------- */

.mission {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* .mission__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    rotate: 180deg;
    scale: 1 -1;
}

.mission__bg-img img {
    height: 100%;
}

.mission__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
} */

.mission__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.mission__logo-img {
    width: 5rem;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.mission__title {
    margin-bottom: 3.5rem;
}

.mission__text--16px {
    margin-bottom: 3.5rem;
    color: #fff;
    line-height: calc(35 / 16 * 100%);
    letter-spacing: 0.15em;
    text-align: center;
}

.mission__text-box--15px {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 6rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(35 / 15 * 100%);
    letter-spacing: 0.15em;
    text-align: center;
}

@media (max-width: 767px) {

    .mission {
        height: auto;
        padding: 10rem 0;
    }

    .mission__text-box {
        width: 75%;
    }
}

@media screen and (max-width: 576px) {

    .mission__text-box {
        width: 90%;
    }

    .mission__text--16px {
        font-size: 3rem;
    }

    .mission__text-box--15px {
        font-size: 2.4rem;
    }
}


/* 事業紹介
-------------------------------------------------- */

.business {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* .business__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    rotate: 180deg;
    scale: 1 1;
}

.business__bg-img img {
    height: 100%;
} */

.business__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.business__logo-img {
    width: 5rem;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.business__title {
    margin-bottom: 4.5rem;
}

.business__flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}

.business__flex-text {
    width: 50rem;
}

.business__flex-text--16px {
    margin-bottom: 3.5rem;
    color: #fff;
    line-height: calc(35 / 16 * 100%);
    letter-spacing: 0.15em;
}

.business__flex-text-box--15px {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(35 / 15 * 100%);
    letter-spacing: 0.15em;
}

.business__flex-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50rem;
}

.business__list-wrapper-img--bottom {
    rotate: 180deg;
}

.business__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
    width: 40rem;
}

.business__list-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.business__list-item-img {
    width: 6rem;
}

.business__list-text-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 35rem;
}

.business__list-text-box h4 {
    color: #fff;
    font-weight: 500;
}

.business__list-text-box p {
    color: #fff;
    font-size: 1.4rem;
    line-height: calc(25 / 14 * 100%);
}

@media (max-width: 767px) {

    .business {
        height: auto;
        padding: 10rem 0;
    }

    .business__flex {
        flex-direction: column;
        gap: 5rem;
    }

    .business__list-text-box p {
        color: #fff;
        font-size: 1.4rem;
        line-height: calc(25 / 14 * 100%);
    }
}

@media screen and (max-width: 576px) {

    .business__flex-text {
        width: 90%;
    }

    .business__flex-list {
        width: 90%;
    }

    .business__list {
        gap: 2rem;
        width: 95%;
    }

    .business__flex {
        gap: 2rem;
    }

    .business__flex-text--16px {
        font-size: 3rem;
    }

    .business__flex-text-box--15px {
        font-size: 2.4rem;
    }

    .business__list-item-img {
        width: 6rem;
    }

    .business__list-text-box {
        width: 90%;
    }

    .business__list-text-box h4 {
        font-size: 3rem;
    }

    .business__list-text-box p {
        font-size: 2.4rem;
    }
}


/* 成長戦略ロードマップ
-------------------------------------------------- */

.roadmap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* .roadmap__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.roadmap__bg-img img {
    height: 100%;
} */

/* .roadmap__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
} */

.roadmap__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.roadmap__logo-img {
    width: 6rem;
    margin-inline: auto;
    margin-bottom: 6rem;
}

.roadmap__title {
    margin-bottom: 3rem;
}

.roadmap__text--15px {
    margin-bottom: 3.5rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(40 / 15 * 100%);
    letter-spacing: 0.15em;
}

.roadmap__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.roadmap__list-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32.3rem;
    height: 21rem;
    background: url(../img/top/roadmap-wrapper.png) no-repeat center center / cover;
}

.roadmap__list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #fff;
}

.roadmap__item-en {
    font-size: 2.2rem;
    font-family: "jaf-mashine", sans-serif;
    line-height: calc(20 / 22 * 100%);
}

.roadmap__item-ja {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: calc(30 / 13 * 100%);
}

.roadmap__item-number {
    font-family: "jaf-mashine", sans-serif;
    line-height: calc(20 / 16 * 100%);
}

.roadmap__list-img {
    width: 4rem;
}

@media (max-width: 767px) {

    .roadmap {
        height: auto;
        padding: 10rem 0;
    }

    .roadmap__list {
        flex-direction: column;
        gap: 1rem;
    }

    .roadmap__list-inner {
        width: 25rem;
        height: 15rem;
    }

    .roadmap__text-box {
        width: 75%;
    }

    .roadmap__list-img {
        rotate: 90deg;
    }
}

@media screen and (max-width: 576px) {

    .roadmap__title .section__title--en {
        font-size: 5rem;
    }

    .roadmap__text-box {
        width: 90%;
    }

    .roadmap__text--15px {
        font-size: 3rem;
    }
}


/* prefooter
-------------------------------------------------- */

.pre-footer--contact {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (max-width: 767px) {
    .pre-footer--contact {
        flex-direction: column;
    }
}


/* お問い合わせ
-------------------------------------------------- */

.contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
    height: 40rem;
    background: #0a1216;
    transition: opacity 0.3s;
}

.contact:hover {
    opacity: 0.7;
}

.contact__bg-img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    height: 100%;
}

.contact__bg-img img {
    height: 100%;
}

.contact__title {
    margin-right: 15rem;
}

.news {
    display: flex;
    align-items: center;
    width: 50%;
    height: 40rem;
    background: #7c7c7c;
}

.news__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__title {
    width: 46rem;
    padding: 15px 0;
    border-right: 1px solid #fff;
}

.news__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-inline: 4rem;
    transition: opacity 0.3s;
}

.news__list:hover {
    opacity: 0.7;
}

.news__list time {
    color: #fff;
    font-size: 1.4rem;
    line-height: calc(35 / 14 * 100%);
    letter-spacing: 0.15em;
}

.news__list p {
    color: #fff;
    font-size: 1.4rem;
    line-height: calc(35 / 14 * 100%);
    letter-spacing: 0.15em;
}

@media (max-width: 767px) {

    .contact {
        width: 100%;
    }

    .news {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .news__list time {
        font-size: 2.4rem;
    }

    .news__list p {
        font-size: 2.4rem;
    }

}

/* footer
-------------------------------------------------- */

.footer {
    position: relative;
    /* z-index: 100; */
    width: 100%;
    height: 100%;
    background: #040505;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 0.1px;
    background: rgba(255, 255, 255, 0.4);
}

.footer__inner {
    max-width: 1420px;
    margin-inline: auto;
    padding: 15rem 20px 3rem 20px;
}

.footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4rem;
    margin-bottom: 10rem;
}

.footer__logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.footer__logo-img {
    width: 70%;
}

.footer__logo-text {
    color: #d3d3d3;
    font-size: 2.5rem;
    line-height: calc(25 / 25 * 100%);
}

.footer__logo-address {
    color: #fff;
    line-height: calc(25 / 16 * 100%);
}

.footer__nav-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5rem;
    /* margin-top: -5rem; */
    flex: 1;
    position: relative;
    top: -65px;
    padding-right: 7rem;
}

.footer__nav-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 11rem;
}

.footer__nav-box--common {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer__nav-title {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Noto Sans JP", sans-serif;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px
}

.footer__nav-link {
    color: #808080;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: calc(30 / 15 * 100%);
    transition: opacity 0.3s;
}

.footer__nav-link:hover {
    opacity: 0.7;
}

.footer__nav-box--etc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.footer__nav-link--recruit {
    color: #808080;
    font-size: 1.8rem;
    font-weight: bold;
    transition: opacity 0.3s;
}

.footer__nav-link--recruit:hover {
    opacity: 0.7;
}

.footer__nav-link--news {
    color: #808080;
    font-size: 1.8rem;
    font-weight: bold;
    transition: opacity 0.3s;
}

.footer__nav-link--news:hover {
    opacity: 0.7;
}

.footer__nav-box--mail {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.6rem;
    border: 1px solid #2939c7;
    transition: border-color 0.3s;
}

.footer__nav-box--mail:hover {
    border-color: #bfbfbf;
}

.footer__nav-box--mail p {
    padding: 1.2rem 2.5rem;
    color: #2939c7;
    font-size: 1.8rem;
    font-weight: bold;
    transition: color 0.3s;
}

.footer__nav-box--mail p:hover {
    color: #fff;
}

.footer__nav-box--mail-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 100%;
    background: #2939c7;
}

.footer__nav-box--mail-img img {
    width: 2.2rem;
}

.footer__sns-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 0;
}

.footer__sns-item {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 35rem;
}

.footer__sns-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #7d7d7d transparent transparent;
}

.footer__sns-item--invert img {
    filter: brightness(0) invert(1);
}

.footer__sns-link {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    transition: opacity 0.3s;
}

.footer__sns-link:hover {
    opacity: 0.7;
}

.footer__sns-link img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    flex-shrink: 0;
}

.footer__sns-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    font-family: 'jaf-mashine';
}

.footer__copyright-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 2rem;
}

.footer__copyright {
    color: #bfbfbf;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: calc(25 / 12 * 100%);
}

.footer__policy-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.footer__privacy-link {
    color: #bfbfbf;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer__privacy-link:hover {
    color: #ffffff;
    opacity: 0.85;
}

.footer__copyright-text {
    color: #bfbfbf;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: calc(25 / 12 * 100%);
}


@media screen and (max-width: 576px) {

    .footer {
        padding-top: 55px;
    }

    .footer__container {
        align-items: center;
        margin-bottom: 0rem;
    }

    .footer__logo-img {
        width: 55rem;
    }

    .footer__logo-text {
        margin-bottom: 1rem;
        font-size: 3.2rem;
    }

    .footer__logo-address {
        font-size: 2.4rem;
    }

    .footer__nav-wrapper {
        flex-direction: column-reverse;
        gap: 14rem;
    }

    .footer__nav-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4rem;
        row-gap: 8rem;
        width: 100%;
    }

    .footer__sns-list {
        width: 100%;
    }

    .footer__sns-item {
        width: 100%;
        min-width: unset;
    }

    .footer__sns-link {
        width: 100%;
        gap: 2rem;
    }

    .footer__sns-link img {
        width: 4rem;
        height: 4rem;
    }

    .footer__sns-text {
        font-size: 2.8rem;
    }

    .footer__sns-item::after {
        border-width: 0 12px 12px 0;
    }

    .footer__nav-title {
        margin-bottom: 5rem;
        font-size: 3.2rem;
        /* font-weight: 400; */
    }

    .footer__nav-link {
        font-size: 2.8rem;
        font-weight: 400;
    }

    .footer__nav-box--mail p {
        font-size: 2.8rem;
        font-weight: 400;
    }

    .footer__copyright {
        font-size: 1.1rem;
    }

    .footer__privacy-link {
        font-size: 1.8rem;
    }
}



/* ミッション・ビジョン
-------------------------------------------------- */

/* 3Dキャンバス */
#canvas-container02 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* より深い黒背景にしてコントラストを確保 */
    background: radial-gradient(circle at center, #020408 0%, #000000 80%);
}

#canvas-container-roadmap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #050308;
    transition: background-color 0.25s linear;
}

body:has(#canvas-container-roadmap) .main__roadmap-detail {
    background: transparent;
}


.mission-vision,
.mission-detail,
.vision-detail {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}


.mission-vision.visible,
.mission-detail.visible,
.vision-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 
h1 {
    font-size: 5rem;
    margin: 0;
    font-weight: 100;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 50, 100, 0.8);
}


p {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-top: 2rem;
    color: #ddeeff;
    font-weight: 300;
    max-width: 600px;
    line-height: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}


.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}


.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    color: #ffffff;
    opacity: 0.5;
}


.line-icon {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #6699ff, transparent);
}


@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
} */


/* ローディング */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.loader-content {
    font-family: monospace;
    color: #4488ff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.mission-vision {
    position: relative;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.mission-vision__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.mission-vision__bg-img img {
    height: 100%;
}

.mission-vision__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100rem;
}

.mission-vision__title {
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 3.5rem;
}

.mission-vision__theme {
    margin-bottom: 3rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(60 / 18 * 100%);
}

.mission-vision__text-box--15px {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: calc(35 / 15 * 100%);
    letter-spacing: 0.15em;
    text-align: center;
}

.mission-vision__text-box--15px [lang="en"],
.mission-detail__text-box--18px [lang="en"],
.vision-detail__text-box--18px [lang="en"] {
    font-weight: 100;
}

.mission-detail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.mission-detail__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    rotate: 180deg;
    scale: -1 1;
}

.mission-detail__bg-img img {
    height: 100%;
}

.mission-detail__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100rem;
}

.mission-detail__title {
    margin-bottom: 3.5rem;
}

.mission-detail__text-box--18px {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

.vision-detail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.vision-detail__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.vision-detail__bg-img img {
    height: 100%;
}

.vision-detail__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100rem;
}

.vision-detail__title {
    margin-bottom: 4.5rem;
}

.vision-detail__text-box--18px {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

.vision-detail__text-color {
    color: #bfbfbf;
}

.pre-footer--roadmap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    height: 40rem;
    padding-inline: 13rem;
    background: #373737;
    transition: opacity 0.3s;
}

.roadmap-link:hover,
.our-businesses-link:hover {
    opacity: 0.7;
}

.roadmap-link__inner,
.our-businesses-link__inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5.5rem;
}

.roadmap-link__title,
.our-businesses-link__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    color: #fff;
}

.roadmap-link__title--en,
.our-businesses-link__title--en {
    font-size: 6rem;
    font-weight: bold;
    text-align: left;
}

.roadmap-link__title--jp,
.our-businesses-link__title--jp {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(30 / 18 * 100%);
}

.roadmap__link-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.7rem;
}

.roadmap__link-detail p {
    width: 9rem;
    color: #fff;
    font-weight: 500;
}

.roadmap__link-detail img {
    width: 3rem;
}

.our-businesses-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    height: 40rem;
    padding-inline: 13rem;
    background: #656565;
    transition: opacity 0.3s;
}

@media (max-width: 767px) {

    .mission-vision {
        display: block;
        height: auto;
        padding: 30rem 0 27rem 0;
    }

    .mission-vision__text-box {
        width: 75%;
        margin-inline: auto;
        text-align: center;
    }

    .mission-detail__text-box {
        width: 75%;
        margin-inline: auto;
        text-align: center;
    }

    .vision-detail__text-box {
        width: 75%;
        margin-inline: auto;
        text-align: center;
    }

    .pre-footer--roadmap {
        flex-direction: column;
    }

    .roadmap-link {
        width: 100%;
    }

    .our-businesses-link {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .mission-vision__theme {
        font-size: 2.8rem;
    }

    .mission-vision__text-box {
        width: 90%;
    }

    .mission-detail__text-box {
        width: 90%;
    }

    .vision-detail__text-box {
        width: 90%;
    }

    .mission-vision__text-box .section__title--en {
        font-size: 4.8rem;
    }

    .mission-vision__text-box--15px {
        font-size: 2rem;
    }

    .roadmap-link__title--en {
        font-size: 4rem;
    }

    .mission-detail__text-box--18px {
        font-size: 2.8rem;
    }

    .vision-detail__text-box--18px {
        font-size: 2.8rem;
    }

    .roadmap__link-detail p {
        font-size: 2.8rem;
    }

    .roadmap-link__title--en,
    .our-businesses-link__title--en {
        font-size: 4.8rem;
    }

    .roadmap-link__title--jp,
    .our-businesses-link__title--jp {
        font-size: 3.2rem;
    }

    .roadmap__link-detail img {
        width: 4rem;
    }
}


/* メッセージ
-------------------------------------------------- */

.main__bg-dimmer {
    background: #fff;
    transition: background-color 0.25s linear;
}

/* companyが十分入ったら黒 */
.main__bg-dimmer.is-dark {
    background: #000;
}

/* 営業事業 FV → 次セクションへの背景遷移（JS lerp で制御） */
.main__bg-dimmer--sales {
    background: #040505;
}

/* 採用情報 FV → 次セクションへの背景遷移（JS lerp で制御） */
.main__bg-dimmer--recruit {
    background: #040505;
}

/* サイネージ事業 FV → 次セクションへの背景遷移（JS lerp で制御） */
.main__bg-dimmer--signage {
    background: #000;
}

.message {
    padding: 26rem 0 7rem 0;
}

.message__inner {
    max-width: 1150px;
    margin-inline: auto;
    padding-inline: 30px;
}

.message__title {
    margin-bottom: 13.3rem;
}

.message__profile {
    display: flex;
    gap: 5rem;
    padding: 3rem 0;
    border-top: 1.5px solid #000;
    border-bottom: 0.5px solid #000;
}

.message__profile-img {
    width: 40%;
}

.message__profile-text-box {
    flex: 1;
    padding: 2rem 0;
}

.message__profile-text--16px {
    font-size: 3rem;
    line-height: calc(35 / 16 * 100%);
}

.message__profile-text--32px {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: calc(35 / 20 * 100%);
}

.message__profile-text--32px span {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: calc(35 / 16 * 100%);
}

.message__profile-text--birthday {
    padding-left: 1rem;
    font-size: 1.6rem;
    line-height: calc(24 / 16 * 100%);
}

.message__profile-text--birthplace {
    margin-bottom: 3rem;
    padding-left: 1rem;
    font-size: 1.6rem;
    line-height: calc(24 / 16 * 100%);
}

.message__profile-text--16px {
    font-size: 1.6rem;
    line-height: calc(35 / 16 * 100%);
}

.message__profile-text--history {
    padding-left: 1rem;
}

.message__flex-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3.5rem;
    color: #000;
}

.message__flex-text--18px {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: calc(35 / 15 * 100%);
}

.message__flex-text--15px {
    font-size: 1.8rem;
    line-height: calc(35 / 15 * 100%);
}

.message__flex-img-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    width: 50%;
    margin-bottom: 13rem;
    margin-left: auto;
    margin-top: 1rem;
}

.message__content-text-img {
    width: 28rem;
    margin-right: -2rem;
}

.message__content-text {
    color: #000;
    font-size: 2rem;
    font-weight: 500;
    line-height: calc(35 / 20 * 100%);
    text-align: right;
}

@media (max-width: 767px) {

    .message__flex {
        flex-direction: column;
        gap: 5rem;
    }

    .message__flex-text {
        order: 2;
        width: 100%;
    }

    .message__flex-img-content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 1.5rem;
        order: 1;
        width: 100%;
        margin-top: 6rem;
    }

}

@media screen and (max-width: 576px) {

    .message__flex-text--18px {
        font-size: 3.2rem;
    }

    .message__flex-text--15px {
        font-size: 2.8rem;
    }

    .message__content-img {
        width: 50rem;
        height: 50rem;
    }

    .message__content-text {
        font-size: 3.2rem;
    }
}


/* 会社概要
-------------------------------------------------- */

.company {
    padding: 20rem 0 30rem 0;
    background: transparent;
}

.company__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.company__title {
    margin-bottom: 8.8rem;
}

.company__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.company__item {
    position: relative;
    display: flex;
    align-items: first baseline;
    gap: 4rem;
    width: 100%;
    padding: 4rem 0;
    padding-left: 3.8rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.company__item:last-child {
    border-bottom: none;
}

.company__item-title {
    position: relative;
    width: 12rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}

.company__item-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3.8rem;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background: #41b6ff;
}

.company__item-text {
    color: #808080;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.company__item-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.company__item-text--separator {
    margin-bottom: 3rem;
}

.company__item-text-box p span {
    opacity: 0;
}

@media (max-width: 767px) {

    .company {
        padding: 10rem 20px;
    }
}

@media screen and (max-width: 576px) {

    .company__item {
        flex-direction: column;
    }

    .company__item-title {
        width: 20rem;
        font-size: 2.8rem;
    }

    .company__item-text {
        font-size: 2.4rem;
    }
}


/* 成長戦略ロードマップ 詳細
-------------------------------------------------- */

.main__roadmap-detail {
    background: #0B0B0B;
    transition: background-color 0.25s linear;
}


.roadmap-detail {
    padding: 26rem 0 23rem 0;
    background: #454545;
}

.roadmap-detail__inner {
    max-width: 1190px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.roadmap-detail__title {
    margin-bottom: 5.3rem;
}

.roadmap-detail__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15rem;
}

.roadmap-detail__flex-text {
    width: 55%;
    color: #fff;
}

.roadmap-detail__text--28px {
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: calc(50 / 18 * 100%);
}

.roadmap-detail__text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(35 / 15 * 100%);
}

.roadmap-detail__flex-img-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 45%;
}

.roadmap-detail__img--short,
.roadmap-detail__img--middle,
.roadmap-detail__img--long {
    width: 87%;
    transition: opacity 0.3s;
}

.roadmap-detail__img--short:hover,
.roadmap-detail__img--middle:hover,
.roadmap-detail__img--long:hover {
    opacity: 0.7;
}

.roadmap-detail__img--short {
    margin-left: -9.4rem;
}

.roadmap-detail__img--middle {
    margin-left: -4.7rem;
}

@media (max-width: 767px) {

    .roadmap-detail__flex {
        flex-direction: column;
        gap: 5rem;
    }

    .roadmap-detail__flex-text {
        width: 90%;
    }

    .roadmap-detail__flex-img-box {
        width: 90%;
        align-items: center;
    }

    .roadmap-detail__img--short {
        margin-left: 0;
    }

    .roadmap-detail__img--middle {
        margin-left: 0;
    }

}

@media screen and (max-width: 576px) {

    .roadmap-detail__text--18px {
        font-size: 3rem;
    }

    .roadmap-detail__text-box {
        font-size: 2.4rem;
    }

}

/* 成長戦略ロードマップ キャッシュ事業
-------------------------------------------------- */

.roadmap-01 {
    padding: 35rem 0;
    background: #454545;
}

.roadmap-01__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 20px;
}

.roadmap-01__title {
    margin-bottom: 5.4rem;
}

.section__title--number-roadmap {
    margin: 0.5rem 0 2.7rem 0;
    font-size: 3rem;
    font-weight: 300;
    font-family: "jaf-mashine", sans-serif;
}

.section__title--jp-roadmap {
    font-size: 3rem;
    font-weight: 500;
    line-height: calc(30 / 30 * 100%);
    letter-spacing: 0.15em;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.roadmap-detail__text--16px {
    line-height: calc(35 / 16 * 100%);
    letter-spacing: 0.15em;
    text-align: center;
}

.roadmap-02 {
    padding: 35rem 0;
    background: #7a7a7a;
}

.roadmap-03 {
    padding: 30rem 0 35rem 0;
    background: #dfdfdf;
}

.roadmap-detail,
.roadmap-01,
.roadmap-02,
.roadmap-03 {
    background: transparent;
}

@media screen and (max-width: 576px) {

    .roadmap-detail__text--16px {
        font-size: 2.6rem;
        text-align: left;
    }

}


/* グループ企業
-------------------------------------------------- */


/* .main__bg-dimmer{
    background: #f4f4f4;
    transition: background-color 0.25s linear;
}
.main__bg-dimmer.is-dark{
    background: #040505;
}

.group {
    padding: 26rem 0 33rem 0;
    background: transparent;
}

.group__inner {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 30px;
}

.group__title {
    margin-bottom: 9rem;
}

.group__name {
    margin-bottom: 4rem;
    color: #2b3cd3;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: calc(50 / 35 * 100%);
    text-align: center;
}

.group__text-box--15px {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    color: #2b3cd3;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(35 / 15 * 100%);
    text-align: center;
}

.group__detail {
    padding: 30rem 0;
    background: transparent;
}

.group__detail-inner {
    max-width: 1010px;
    margin-inline: auto;
    padding-inline: 30px;
}

.group__detail-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13rem;
}

.group__detail-text-box {
    width: 50%;
    color: #2b3cd3;
}

.group__detail-text-box h4 {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(50 / 18 * 100%);
}

.group__detail-text-box p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
}

@media (max-width: 767px) {

    .group {
        padding: 15rem 0;
    }

    .group__detail {
        padding: 15rem 0;
    }

    .group__detail-flex {
        flex-direction: column;
        gap: 5rem;
    }

    .group__detail-text-box {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .group__name {
        font-size: 4.8rem;
    }

    .group__text-box--15px {
        font-size: 2.8rem;
    }

    .group__detail-text-box h4 {
        font-size: 2.8rem;
    }

    .group__detail-text-box p {
        font-size: 2.4rem;
    }
} */

.group {
    padding-block: 25rem 12rem;
    background: #000;
    padding-bottom: 25rem;
}

.group__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 20px;
}

.group__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 18.5rem;
}

.group__title--en {
    color: #fff;
    font-size: 10rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-left: -5rem;
}

@media(max-width:576px) {
    .group__title--en {
        font-size: 10rem;
        margin-left: 0rem;
    }
}

.group__title--jp {
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.25em;
    margin-left: -5rem;
}

@media(max-width:576px) {
    .group__title--jp {
        font-size: 1.4rem;
        margin-left: 0rem;
    }
}

.group__fv {
    margin-bottom: 18rem;
}

.group__company-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    font-family: "jaf-mashine", sans-serif;
    margin-bottom: 2rem;
    margin-left: -5rem;
}

@media(max-width:576px) {
    .group__company-label {
        font-size: 2.5rem;
        margin-left: 0rem;
    }
}

.group__name {
    position: relative;
    margin-bottom: 8rem;
    color: #fff;
    font-size: 6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding-left: 2.8rem;
    margin-left: -5rem;
}

@media(max-width:576px) {
    .group__name {
        font-size: 5rem;
        margin-left: 0rem;
    }
}

.group__name::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 0.8em;
    background: rgba(255, 255, 255, 0.6);
}

@media(max-width:576px) {
    .group__name::before {
        height: 1em;
    }
}

.group__text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3.5rem;
}

.group__text-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.04em;
}

.group__detail {
    padding-block: 10rem 12rem;
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.group__detail-inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 20px;
}

.group__detail-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 7rem;
}

.group__detail-header--en {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    font-family: "jaf-mashine", sans-serif;
}

.group__detail-header--jp {
    color: #fff;
    font-size: 3.2rem;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.group__detail-header--line {
    width: 3.6rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 0.8rem;
}

.group__detail-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12rem;
}

.group__detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    flex: 1;
}

.group__detail-item-num {
    color: rgba(255, 255, 255, 0.2);
    font-size: 7rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    font-family: "Gotham Narrow", "jaf-mashine", sans-serif;
}

.group__detail-item-img {
    width: 100%;
}

.group__detail-item-title {
    position: relative;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.04em;
    padding-left: 1.8rem;
}

.group__detail-item-title::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 3px;
    height: 1.1em;
    background: rgba(255, 255, 255, 0.6);
}

.group__detail-item-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.03em;
}

@media (max-width: 767px) {

    .group__title--jp {
        font-size: 3rem;
    }

    .group__text-box p {
        font-size: 3rem;
    }

    .group__detail-header--jp {
        font-size: 3.6rem;
    }

    .group__detail-flex {
        flex-direction: column;
        gap: 6rem;
    }

    .group__detail-item-num {
        font-size: 6rem;
    }

    .group__detail-item-title {
        font-size: 3rem;
    }

    .group__detail-item-text {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .group__detail {
        padding-block: 8rem 10rem;
        padding-bottom: 25rem;
    }

    .group__detail-header {
        margin-bottom: 5rem;
    }

    .group__detail-flex {
        gap: 8rem;
    }

    .group__detail-item {
        gap: 3rem;
    }
}

/* グループ企業 概要
-------------------------------------------------- */

.group__company {
    padding: 25rem 0;
    background: #000;
}

.group__company-inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 30px;
}

.group__company-title {
    margin-bottom: 3rem;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    line-height: calc(60 / 30 * 100%);
    text-align: left;
}

.group__company-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.group__company-item {
    position: relative;
    display: flex;
    align-items: first baseline;
    gap: 4rem;
    width: 100%;
    padding: 3.2rem 0;
    padding-left: 3.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.group__company-item:last-child {
    border-bottom: none;
}

.group__company-item-title {
    position: relative;
    width: 9rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}

.group__company-item-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3.8rem;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
}

.group__company-item-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: #bfbfbf;
}

@media (max-width: 767px) {

    .group__company {
        padding: 10rem 0 30rem;
    }
}

@media screen and (max-width: 576px) {

    .group__company-title {
        font-size: 3.2rem;
    }

    .group__company-item-title {
        width: 15rem;
        font-size: 2.8rem;
    }

    .group__company-item-text {
        font-size: 2.6rem;
        width: 40rem;
    }
}

/* グループ企業 地図
-------------------------------------------------- */

.pre-footer--map {
    display: flex;
}

.cotact-box {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.cotact-box .contact {
    width: 100%;
}

.cotact-box .news {
    width: 100%;
}

.map-box {
    width: 50%;
    aspect-ratio: 96 / 80;
}

.map-box iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {

    .pre-footer--map {
        flex-direction: column;
    }

    .cotact-box {
        order: 2;
        width: 100%;
    }

    .map-box {
        order: 1;
        width: 100%;
    }
}


/* 営業事業
-------------------------------------------------- */

.sales {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #040505 55%, rgba(4, 5, 5, 0) 100%);
}

.sales__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sales__bg-img img {
    height: 100%;
}

.sales__inner {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 30px;
}

.sales__title {
    margin-bottom: 7rem;
}

.sales__title .section__title--jp {
    font-weight: 300;
}

.sales__text--16px {
    margin-bottom: 5rem;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: calc(32 / 16 * 100%);
    text-align: center;
}

.sales__text--15px {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: calc(35 / 15 * 100%);
    text-align: center;
}

.sales__detail {
    padding: 15rem 0;
    background: transparent;
}

.sales__detail-inner {
    max-width: 1700px;
    margin-inline: auto;
    padding-inline: 30px;
}

.sales__detail-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.sales__detail-text-box {
    width: 45%;
}

.sales__detail-en {
    margin-bottom: 1.5rem;
    color: #808080;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.sales__detail-text-box h3 {
    margin-bottom: 3.3rem;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: calc(90 / 64 * 100%);
}

.sales__detail-text-box p {
    color: #808080;
    font-size: 2rem;
    font-weight: 500;
    line-height: calc(48 / 24 * 100%);
}

.sales__detail-img {
    width: 30%;
}

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

@media (max-width: 767px) {

    .sales__title {
        margin-bottom: 10rem;
    }

    .sales__detail-flex {
        flex-direction: column;
        gap: 5rem;
    }

    .sales__detail-text-box {
        width: 100%;
    }

    .sales__detail-text-box h3 {
        margin-bottom: 3.3rem;
        font-size: 4rem;
    }

    .sales__detail-img {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .sales__text--16px {
        font-size: 3.2rem;
    }

    .sales__text--15px {
        font-size: 2.8rem;
    }

    .sales__detail-text-box h3 {
        font-size: 3.5rem;
    }

    .sales__detail-text-box p {
        font-size: 2.5rem;
    }
}


/* 営業事業の強み
-------------------------------------------------- */

.sales__strength {
    padding: 15rem 0;
    background: transparent;
}

.sales__strength-inner {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 30px;
}

.sales__strength-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 7rem;
}

.sales__strength-title--jp {
    color: #2b3cd3;
    font-size: 2rem;
    font-weight: bold;
}

.sales__strength-title--en {
    color: #000;
    font-size: 7rem;
    font-weight: bold;
}

.sales__strength-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.sales__strength-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33.333%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.sales__strength-item.is-show {
    opacity: 1;
    transform: translateY(0);
}

.sales__strength-item-img {
    position: relative;
    margin-bottom: 1.5rem;
}

.sales__strength-item-img img {
    height: 100%;
}

.sales__strength-item-img span {
    position: absolute;
    right: 1.8rem;
    bottom: 1.5rem;
    color: #fff;
    font-size: 10rem;
    font-weight: 500;
    line-height: calc(50 / 100 * 100%);
}

.sales__strength-item-title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: calc(50 / 25 * 100%);
}

.sales__strength-item-text {
    color: #808080;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
}

@media (max-width: 767px) {

    .sales__strength {
        padding: 10rem 0;
    }

    .sales__strength-flex {
        flex-direction: column;
        gap: 5rem;
    }

    .sales__strength-item {
        width: 100%;
    }

    .sales__strength-item-img {
        margin-bottom: 1rem;
    }

    .sales__strength-item-title {
        margin-bottom: 1rem;
    }

}

@media screen and (max-width: 576px) {

    .sales__strength-title--jp {
        font-size: 2.8rem;
    }

    .sales__strength-title--en {
        font-size: 6rem;
    }

    .sales__strength-item-title {
        font-size: 3.6rem;
    }

    .sales__strength-item-text {
        font-size: 2.4rem;
    }
}


/* 営業領域
-------------------------------------------------- */

.sales__area {
    padding: 5rem 0 30rem 0;
    background: transparent;
}

.sales__area-inner {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 30px;
}

.sales__area-flex {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .sales__area-title-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25rem;
    height: 25rem;
    background: #fff;
    clip-path: polygon(50.0% 0.0%, 100.0% 50.0%, 50.0% 100.0%, 0.0% 50.0%);
} */

.sales__area-title {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5rem;
    color: #0b0b0b;
    font-size: 3rem;
    font-weight: bold;
    line-height: calc(35 / 30 * 100%);
}

@media(max-width:576px) {
    .sales__area-title {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
        color: #0b0b0b;
        font-size: 3rem;
        font-weight: bold;
        line-height: calc(35 / 30 * 100%);
    }
}

.sales__area-title--en {
    color: #000;
    font-size: 7rem;
    font-weight: bold;
}

.sales__area-title--jp {
    color: #2b3cd3;
    font-size: 2rem;
    font-weight: bold;
}

.sales__area-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 5rem 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.sales__area-item:last-child {
    border-top: none;
}

.sales__area-text {
    color: #808080;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
}

/* .sales__area-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* .sales__area-item p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: calc(35 / 20 * 100%);
    text-align: center;
} */

@media (max-width: 767px) {

    .sales__area-flex {
        flex-direction: column;
    }

    .sales__area-title-box {
        width: 15rem;
        height: 15rem;
    }

    .sales__area-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {

    .sales__area-item p {
        font-size: 3rem;
    }

    p.sales__area-text {
        font-size: 2rem;
    }
}

/* 学生イベント事業
-------------------------------------------------- */

.student__mv {
    padding: 26rem 0 37rem 0;
    background: #000;
}

.student__mv-inner {
    max-width: 1230px;
    margin-inline: auto;
    padding-inline: 30px;
}

.student__mv-title {
    margin-bottom: 18rem;
}

.student__mv-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.student__mv-text-box {
    width: 50%;
}

.student__mv-text--16px {
    margin-bottom: 3rem;
    color: #fff;
    font-weight: bold;
    line-height: calc(50 / 16 * 100%);
}

.student__mv-text--15px {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(35 / 15 * 100%);
}

.student__mv-img {
    width: 50%;
}

.student__detail {
    position: relative;
    padding: 33.5rem 0;
}

.student__detail-bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.student__detail-bg-img img {
    height: 100%;
}

.student__detail-inner {
    max-width: 1230px;
    margin-inline: auto;
    padding-inline: 30px;
}

.student__detail-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
}

.student__detail-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 50%;
}

.student__detail-img01 {
    margin-top: -26rem;
}

.student__detail-img02 {
    margin-top: -13rem;
}

.student__detail-img {
    transform: translateY(50%) scale(0.8);
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.student__detail-img.scroll {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.student__detail-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    width: 50%;
}

.student__detail-text--16px {
    margin-bottom: 3rem;
    font-weight: bold;
    line-height: calc(50 / 16 * 100%);
}

.student__detail-text--16px mark {
    padding: 0.5rem;
    background: #fff;
}

.student__detail-text--15px {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(35 / 15 * 100%);
}

.student__detail-text--15px mark {
    padding: 0.5rem;
    background: #fff;
}

@media (max-width: 767px) {

    .student__mv {
        padding: 25rem 0 15rem 0;
    }

    .student__mv-title {
        margin-bottom: 10rem;
    }

    .student__mv-flex {
        flex-direction: column;
    }

    .student__mv-text-box {
        width: 100%;
        text-align: center;
    }

    .student__mv-img {
        width: 100%;
    }

    .student__detail {
        padding: 20rem 0;
    }

    .student__detail-flex {
        flex-direction: column;
        gap: 5rem;
    }

    .student__detail-img-box {
        width: 100%;
    }

    .student__detail-text-box {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .student__mv-text--16px {
        font-size: 2.8rem;
    }

    .student__mv-text--15px {
        font-size: 2.6rem;
    }

    .student__detail-text--16px {
        font-size: 3.2rem;
    }

    .student__detail-text--15px {
        font-size: 2.8rem;
    }
}


/* 学生イベント事業
-------------------------------------------------- */

.student__event {
    padding: 22rem 0 31rem 0;
    background: #f3f3f3;
}

.student__event-inner {
    max-width: 1150px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.student__event-title {
    margin-bottom: 2rem;
    color: #2b3cd3;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: calc(50 / 25 * 100%);
    text-align: center;
}

.student__event-theme {
    margin-bottom: 7.7rem;
    font-size: 4rem;
    font-weight: bold;
    line-height: calc(60 / 40 * 100%);
    text-align: center;
}

.student__event-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.student__event-text-box p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

/* .student__event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.student__event-grid-item {
    height: 25rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.student__event-grid-item:nth-child(odd) {
    color: #2b3cd3;
    background: #fff;
}

.student__event-grid-item:nth-child(even) {
    color: #fff;
    background: #2b3cd3;
}

.student__event-grid-item p {
    font-size: 3rem;
    font-weight: 500;
    line-height: calc(27 / 18 * 100%);
} */

.student__event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.student__event-grid-item {
    min-height: 18rem;
    /* 固定heightより融通が効く */
    padding: 2.4rem;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    display: grid;
    align-items: center;
    /* 縦のバランスが取りやすい */
}

.student__event-grid-item:nth-child(odd) {
    color: #555;
    background: #fff;
}

.student__event-grid-item:nth-child(even) {
    color: #fff;
    background: #2b3cd3;
}

/* 文章全体の余計な癖を消す */
.student__event-grid-item p {
    margin: 0;
}

/* ラベルと値を“縦に”設計 */
.event {
    display: grid;
    gap: .8rem;
}

.event__data {
    font-size: clamp(1.0rem, 0.9rem + .2vw, 1.1rem);
    font-weight: 500;
    letter-spacing: .2em;
    opacity: .55;
    margin-bottom: .2rem;
}

.event__label {
    font-size: clamp(1.4rem, 1.3rem + .3vw, 1.6rem);
    font-weight: 600;
    letter-spacing: .08em;
    opacity: .9;
}

/* 値を主役に */
.event__value {
    font-size: clamp(2.4rem, 1.8rem + 1.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* 単位は少し小さくして“バランス”を作る */
.event__unit {
    font-size: .72em;
    font-weight: 700;
    margin-left: .15em;
    opacity: .95;
}

/* “など / or” のような補助語も小さく */
.event__sub {
    font-size: .72em;
    font-weight: 700;
    opacity: .85;
    margin-left: .2em;
}

@media (max-width: 767px) {

    .student__event {
        padding: 15rem 0;
    }

    .student__event-theme {
        margin-bottom: 7.7rem;
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 576px) {

    .student__event-title {
        font-size: 3.6rem;
    }

    .student__event-theme {
        font-size: 3.2rem;
    }

    .student__event-text-box p {
        font-size: 2.6rem;
    }
}

/* 提供する価値
-------------------------------------------------- */

.student__value {
    background: #f3f3f3;
}

.student__value-title {
    margin-bottom: 8.7rem;
    color: #0b0b0b;
    font-size: 4rem;
    font-weight: bold;
    line-height: calc(60 / 40 * 100%);
    text-align: center;
}

.student__value-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.student__value-item {
    width: 50%;
    height: 38.2rem;
    padding: 1rem;
}

.student__value-item--gray {
    background: rgba(0, 0, 0, 0.28);
}

.student__value-item--white {
    background: #fff;
}

.student__value-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid #1b2fbe;
}

.student__value-item-inner p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

.student__value-number--01,
.student__value-number--02,
.student__value-number--03,
.student__value-number--04 {
    position: absolute;
    color: #1b2fbe;
    font-size: 4rem;
    font-weight: bold;
    line-height: calc(60 / 40 * 100%);
}

.student__value-number--01 {
    right: 1rem;
    bottom: 1rem;
}

.student__value-number--02 {
    bottom: 1rem;
    left: 1rem;
}

.student__value-number--03 {
    top: 1rem;
    left: 1rem;
}

.student__value-number--04 {
    top: 1rem;
    right: 1rem;
}

@media (max-width: 767px) {

    .student__value-flex {
        flex-direction: column;
    }

    .student__value-item {
        width: 100%;
    }

    .student__value-flex:last-child {
        flex-direction: column-reverse;
    }

    .student__value-number--01 {
        top: 1rem;
        left: 1rem;
    }

    .student__value-number--02 {
        top: 1rem;
        left: 1rem;
    }

    .student__value-number--03 {
        top: 1rem;
        left: 1rem;
    }

    .student__value-number--04 {
        top: 1rem;
        left: 1rem;
    }
}

@media screen and (max-width: 576px) {

    .student__value-title {
        font-size: 4rem;
    }

    .student__value-item-inner p {
        font-size: 2rem;
    }

    .student__value-number--01 {
        font-size: 6rem;
    }

    .student__value-number--02 {
        font-size: 6rem;
    }

    .student__value-number--03 {
        font-size: 6rem;
    }

    .student__value-number--04 {
        font-size: 6rem;
    }
}

/* 目指すもの
-------------------------------------------------- */

.student__aim {
    padding: 18.3rem 0 28.5rem 0;
    background: #f3f3f3;
}

.student__aim-inner {
    max-width: 700px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.student__aim-title {
    margin-bottom: 6.2rem;
    font-size: 4rem;
    font-weight: bold;
    line-height: calc(60 / 40 * 100%);
    text-align: center;
}

.student__aim-text {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

@media screen and (max-width: 576px) {

    .student__aim-title {
        font-size: 4rem;
    }

    .student__aim-text {
        font-size: 2.4rem;
    }
}


/* サイネージ事業
-------------------------------------------------- */

.signage {
    position: relative;
    height: 100vh;
    padding-top: 26rem;
    background: linear-gradient(to bottom, #000 55%, rgba(0, 0, 0, 0) 100%);
}

.signage__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.signage__bg-img img {
    height: 100%;
    display: none;
}

.signage__inner {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 30px;
}

.signage__title {
    margin-bottom: 17rem;
}

.signage__text--16px {
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: calc(50 / 16 * 100%);
    text-align: center;
}

.signage__text--15px {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: calc(35 / 15 * 100%);
    text-align: center;
}

@media screen and (max-width: 576px) {

    .signage__text--16px {
        font-size: 3.2rem;
    }

    .signage__text--15px {
        font-size: 2.8rem;
    }
}

/* 媒体掲出エリア
-------------------------------------------------- */

.area {
    padding: 30.5rem 0 33rem 0;
    background: transparent;
}

.area__inner {
    max-width: 1620px;
    margin-inline: auto;
    padding-inline: 30px;
}

.area__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 7rem;
}

.area__title--jp {
    color: #2b3cd3;
    font-size: 2rem;
    font-weight: bold;
}

.area__title--en {
    color: 000;
    font-size: 7rem;
    font-weight: bold;
}

.area-img {
    width: 100%;
    height: 22rem;
    background: #d9d9d9;
}

.area-img img {
    height: 100%;
}

.swiper-container {
    position: relative;
    max-width: 1260px;
    height: 100%;
    margin-inline: auto;
    padding-inline: 2rem;
}

.swiper-container-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
}

.area-tag-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.area-tag-bullet {
    width: 10px;
    height: 10px;
    background: #2b3cd3;
    border-radius: 50%;
}

.area-tag-text {
    font-weight: bold;
    line-height: calc(40 / 16 * 100%);
}

.area-swiper-title {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(32 / 18 * 100%);
}

.area-swiper-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(30 / 15 * 100%);
}

.swiper-number-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
    height: 100%;
}

.swiper-number-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.5rem;
    height: 1px;
    background: #000;
}


/* swiper */

.swiper-button-prev::before,
.swiper-button-next::before,
.swiper-button-prev::after,
.swiper-button-next::after {
    position: absolute;
    content: "";
    margin: auto;
    bottom: 0;
    background: none;
}

.swiper-button-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 13rem;
    height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: #2b3cd3;
    border-radius: 50%;
}

.swiper-arrow--left,
.swiper-arrow--right {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 21px;
}

.swiper-arrow--left::before,
.swiper-arrow--left::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 0;
    width: 15px;
    height: 1px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: 0.5px 50%;
}

.swiper-arrow--left::before {
    transform: rotate(50.55deg);
}

.swiper-arrow--left::after {
    transform: rotate(-50.55deg);
}

.swiper-arrow--right {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 21px;
}

.swiper-arrow--right::before,
.swiper-arrow--right::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 15px;
    height: 1px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 0.5px) 50%;
}

.swiper-arrow--right::before {
    transform: rotate(50.55deg);
}

.swiper-arrow--right::after {
    transform: rotate(-50.55deg);
}

.swiper-pagination {
    position: static !important;
    width: 17% !important;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background-color: #2b3cd3;
}

@media (max-width: 767px) {

    .area {
        padding: 15rem 0;
    }
}

@media screen and (max-width: 576px) {

    .area__title--jp {
        font-size: 2.8rem;
    }

    .area__title--en {
        font-size: 8rem;
    }

    .area-tag-text {
        font-size: 2.4rem;
    }

    .area-swiper-title {
        font-size: 2.8rem;
    }

    .area-swiper-text {
        font-size: 2.2rem;
    }
}

/* 媒体掲出エリア 詳細
-------------------------------------------------- */

.area-detail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.area-detail__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.area-detail__bg-img img {
    height: 100%;
}

.area-detail__list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 3.6rem;
    width: 100%;
}

.area-detail__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 0;
    height: 18.2rem;
    gap: 3rem;
    padding: 3rem 8rem;
    background: #f3f3f3;
    border-top-left-radius: 120px;
    border-bottom-left-radius: 120px;
    opacity: 0;
    transition: width 1.5s ease, opacity 1.5s ease;
}

.area-detail__item:first-child.scroll {
    width: calc(1620 / 1920 * 100%);
    opacity: 1;
}

.area-detail__item:nth-child(2).scroll {
    width: calc(1340 / 1920 * 100%);
    opacity: 1;
}

.area-detail__item:last-child.scroll {
    width: calc(970 / 1920 * 100%);
    opacity: 1;
}

.area-detail__item-number {
    font-size: 10rem;
    font-weight: 500;
    line-height: calc(100 / 10 * 100%);
}

.area-detail__item-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.area-detail__item-text--18px {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(50 / 18 * 100%);
}

.area-detail__item-text--15px {
    color: #4a4a4a;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(35 / 15 * 100%);
}

@media (max-width: 767px) {

    .area-detail__item:first-child.scroll {
        width: 100%;
        opacity: 1;
    }

    .area-detail__item:nth-child(2).scroll {
        width: 90%;
        opacity: 1;
    }

    .area-detail__item:last-child.scroll {
        width: 80%;
        opacity: 1;
    }

    .area-detail__item-text--15px {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 576px) {

    .area-detail__item {
        height: 30rem;
    }

    .area-detail__item-number {
        font-size: 8rem;
    }

    .area-detail__item-text--18px {
        font-size: 2.4rem;
    }

    .area-detail__item-text--15px {
        font-size: 2.2rem;
    }
}


/* サイネージ事業の強み
-------------------------------------------------- */

.p-business-strength {
    background: #2939C7;
    padding: 120px 0 140px;
    border-radius: 16px;
}

@media(max-width) {}

.c-container {
    max-width: 1360px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.c-section-heading {
    width: 100%;
    padding-top: 9px;
    display: block;
    border-top: 1px solid rgba(102, 96, 96, .2);
}

.c-section-heading.--row.--white {
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    color: #fff;
}

.c-section-heading.--row h2 {
    font-size: 2rem;
    font-weight: 700;
}

.c-en {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.c-section-heading.--row .c-en {
    margin-top: 56px;
    color: #05ab1e;
    font-size: 7.2rem;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
}

.c-section-heading.--row .c-en.--white {
    color: #fff;
}

.p-business-strength-body {
    margin-top: 0;
}

.p-business-strength__line {
    min-height: 400px;
    margin-top: 120px;
    display: grid;
    grid-template-columns: 67.2058823529% 32.7941176471%;
    border-top: 1px solid hsla(0, 0%, 100%, .5);
}

.p-business-strength__line:nth-of-type(2) {
    min-height: 400px;
    margin-top: 0;
    grid-template-columns: 48.8235294118% 51.1764705882%;
}

.p-business-strength__line-box {
    height: 100%;
    padding: 64px 0 40px;
    color: #fff;
}

.p-business-strength__line-box:nth-of-type(1) {
    padding-right: 20px;
}

.p-business-strength__line:nth-of-type(2) .p-business-strength__line-box {
    padding: 48px 0 0;
}

.p-business-strength__line:nth-of-type(2) .p-business-strength__line-box:nth-of-type(1) {
    padding-right: 20px;
}

.p-business-strength__line:nth-of-type(2) .p-business-strength__line-box:nth-of-type(2) {
    padding-left: 20px;
}

.p-business-strength__line-box {
    height: 100%;
    padding: 64px 0 40px;
    color: #fff;
}

.p-business-strength__line-box:nth-of-type(2) {
    padding-left: 20px;
    border-left: 1px solid hsla(0, 0%, 100%, .5);
}

.p-business-strength__line-box-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.p-business-strength__line-box:nth-of-type(1) .p-business-strength__line-box-inner {
    max-width: 600px;
    width: 100%;
}

.p-business-strength__line-box:nth-of-type(2) .p-business-strength__line-box-inner {
    max-width: 412px;
    width: 100%;
    margin-left: auto;
}

.p-business-strength__line:nth-of-type(2) .p-business-strength__line-box:nth-of-type(2) .p-business-strength__line-box-inner {
    max-width: 638px;
    width: 100%;
}

.c-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 2.6rem;
}

.c-copy {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

/* 下部の大きなテキストブロック */
.p-business-box-lower {
    margin-top: auto;
    /* padding-top: 20px; */
    padding-bottom: 30px;
}

.p-business-box-lower__title {
    font-size: 2.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.p-business-box-lower__number {
    font-family: "Montserrat", sans-serif;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}

.p-business-box-lower__number span {
    font-size: 6.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
}

@media screen and (max-width: 767px) {

    .p-business-strength-body {
        width: 100%;
    }

    .p-business-strength__line {
        width: 100%;
        min-height: inherit;
        margin-top: 64px;
        grid-template-columns: 1fr;
        border-top: none;
    }

    .p-business-strength__line-box {
        width: 100%;
        padding: 48px 20px;
        border-top: 1px solid hsla(0, 0%, 100%, .5);
    }

    .p-business-strength__line-box:nth-of-type(2) {
        border-left: 0;
    }

    .p-business-strength__line-box:nth-of-type(2) .p-business-strength__line-box-inner {
        max-width: 600px;
        margin-left: 0;
    }

    .p-business-strength__line:nth-of-type(2) {
        min-height: inherit;
        grid-template-columns: 1fr;
    }

    .p-business-strength__line:nth-of-type(2) .p-business-strength__line-box:nth-of-type(1) {
        padding-left: 20px;
        padding-bottom: 48px;
    }

    .p-business-strength__line:nth-of-type(2) .p-business-strength__line-box:nth-of-type(2) {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 48px;
    }

    .c-section-heading.--row h2 {
        font-size: 4rem;
    }

    .c-section-heading.--row .c-en {
        font-size: 10rem;
    }

    .c-text {
        font-size: 3.6rem;
    }

    .c-copy {
        font-size: 2.8rem;
    }

    .p-business-box-lower__title {
        font-size: 2.2rem;
    }

    .p-business-box-lower__number {
        font-size: 10rem;
    }

    .p-business-box-lower__number span {
        font-size: 6rem;
    }
}

/* サイネージ事業概要
-------------------------------------------------- */

.signage-overview {
    padding: 24rem 0 38rem;
    background: #f3f3f3;
}

.signage-overview__inner {
    max-width: 1220px;
    margin-inline: auto;
    padding-inline: 30px;
}

.signage-overview__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.signage-overview__title--jp {
    color: #2b3cd3;
    font-size: 2rem;
    font-weight: bold;
}

.signage-overview__title--en {
    color: 000;
    font-size: 7rem;
    font-weight: bold;
}

.signage-overview__text--18px {
    margin-bottom: 10rem;
    color: #4a4a4a;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
}

@media screen and (max-width: 576px) {

    .signage-overview__title--jp {
        font-size: 2.8rem;
    }

    .signage-overview__title--en {
        font-size: 6rem;
    }

    .signage-overview__text--18px {
        font-size: 2.8rem;
    }

}


/* コンタクト ブルー
-------------------------------------------------- */

.contact-blue {
    padding: 5rem 0 6rem 0;
    background: #000;
}

.contact-blue__inner {
    max-width: 1220px;
    margin-inline: auto;
    padding-inline: 30px;
}

.contact-blue__title {
    margin-bottom: 3.5rem;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
}

.contact-blue__text {
    margin-bottom: 4.4rem;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    line-height: calc(45 / 30 * 100%);
}

.btn__contact-blue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 34rem;
    height: 6rem;
    padding-inline: 3rem;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 95px;
    transition: all 0.3s;
}

.btn__contact-blue:hover {
    background: #fff;
}

.btn__contact-blue-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    line-height: calc(40 / 20 * 100%);
    transition: all 0.3s;
}

.btn__contact-blue:hover .btn__contact-blue-text {
    color: #2939c7;
}

.btn__contact-blue-arrow-wrapper {
    width: 4rem;
    height: 4rem;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn__contact-blue:hover .btn__contact-blue-arrow-wrapper {
    background: #2939c7;
}

.btn__contact-blue-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #2939c7;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn__contact-blue:hover .btn__contact-blue-arrow {
    color: #fff;
}

@media screen and (max-width: 576px) {

    .contact-blue__title {
        font-size: 4rem;
    }

    .contact-blue__text {
        font-size: 2.8rem;
    }

    .btn__contact-blue {
        width: 40rem;
        height: 8rem;
    }

    .btn__contact-blue-text {
        font-size: 2.8rem;
    }
}


/* AIハード受託開発
-------------------------------------------------- */

.ai-hardware {
    height: 100vh;
    padding: 26rem 0 20rem 0;
    background: #040505;
}

.ai-hardware__title {
    margin-bottom: 6rem;
}

.ai-hardware__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
}

.ai-hardware__content img {
    height: 100%;
}

.ai-hardware__text--18px {
    color: #4a4a4a;
    font-size: 3rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
}


/* 採用情報
-------------------------------------------------- */

.recruit {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    isolation: isolate;
}

.recruit__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.recruit__bg-img img {
    height: 100%;
}

.scroll-down--recruit {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22.5rem;
}

.recruit__theme-container {
    padding: 21rem 0 27rem 0;
}

.recruit__theme-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.recruit__theme {
    color: #2b3cd3;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: calc(50 / 35 * 100%);
    text-align: center;
}

.recruit__theme-text {
    color: #4a4a4a;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
}

@media (max-width: 767px) {

    .recruit__theme-container {
        padding: 15rem 30px;
    }
}

@media screen and (max-width: 576px) {

    .recruit__theme {
        font-size: 4rem;
    }

    .recruit__theme-text {
        font-size: 2.8rem;
    }
}


/* 募集要項
-------------------------------------------------- */

.recruit__requirements {
    margin-bottom: 20rem;
    padding-top: 15rem;
}

.recruit__requirements-inner {
    max-width: 1110px;
    margin-inline: auto;
    padding-inline: 30px;
}

.recruit__section-title {
    margin-bottom: 6.5rem;
    color: #000;
    font-size: 3rem;
    font-weight: bold;
    line-height: calc(50 / 30 * 100%);
    text-align: center;
}

.recruit__requirements-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.recruit__requirements-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 3rem 6rem;
    border-bottom: 1px solid #000;
}

.recruit__requirements-item:last-child {
    border-bottom: none;
}

.recruit__requirements-item-title {
    width: 25rem;
    color: #4a4a4a;
    font-size: 1.8rem;
    font-weight: bold;
}

.recruit__requirements-item-text {
    flex: 1;
    color: #4a4a4a;
    font-size: 1.8rem;
    font-weight: 500;
}

.recruit__requirements-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 100%;
    padding: 8rem;
    border-radius: 10px;
    background: #EDF1F9;
}

.recruit__requirements-box-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10rem;
    flex: 1;
}

.recruit__requirements-box-item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.recruit__requirements-box-item-title {
    color: #327afa;
    font-size: 18px;
    font-weight: 600;
}

.recruit__requirements-box-item-text {
    color: #0f0f11;
    font-size: 16px;
}

.recruit__requirements-box-qr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    width: 40%;
}

.recruit__requirements-box-qr-text--top {
    color: #1d72f2;
    font-size: 18px;
    font-weight: 600;
}

.recruit__requirements-box-qr-text--top span {
    margin-left: 10px;
    padding: 6px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    background-color: #3c8ae5;
    border-radius: 2px;
}

.recruit__requirements-box-qr-text--bottom {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #37383e;
    font-size: 32px;
    font-weight: 600;
}

.recruit__requirements-box-qr-img {
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 1080px) {

    .recruit__requirements-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .recruit__requirements-box-qr {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;
        width: 100%;
    }

    .recruit__requirements-box-qr-text--top {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: center;
        gap: 1rem;
    }

    .recruit__requirements-box-qr-img {
        width: 30%;
    }

}


@media screen and (max-width: 767px) {

    .recruit__requirements-box {
        padding: 24px;
    }

}

@media screen and (max-width: 576px) {

    .recruit__section-title {
        font-size: 4rem;
    }

    .recruit__requirements-item-title {
        font-size: 2.8rem;
    }

    .recruit__requirements-item-text {
        font-size: 2.4rem;
    }

    .recruit__requirements-box-qr {
        flex-direction: column;
        align-items: flex-start;
    }

    .recruit__requirements-box-qr-text--bottom {
        font-size: 20px;
    }

    .recruit__requirements-box-qr-img {
        width: 50%;
    }
}


/* 採用情報 応募フォーム
-------------------------------------------------- */

.recruit__form {
    padding: 8rem 0 12rem 0;
    background: #fff;
}

.recruit__form-inner {
    max-width: 800px;
    margin-inline: auto;
    padding-inline: 30px;
}

.recruit__form-item {
    display: block;
    width: 100%;
    padding: 0 0 5rem 0;
    border: none;
}

.recruit__form-item:first-child {
    border-top: none;
}

.recruit__form-label {
    display: block;
    width: auto;
    margin-bottom: 1.2rem;
    color: #222;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.recruit__form-input {
    display: block;
    width: 100%;
    padding: 1.2rem 0;
    color: #111;
    font-size: 1.6rem;
    font-weight: 400;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.recruit__form-input:focus {
    outline: none;
    border-bottom-color: #111;
}

.recruit__form-input::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.privacy-box {
    height: 28rem;
    margin-top: 5rem;
    margin-bottom: 5.5rem;
    padding: 3.4rem 5rem;
    border: 1px solid #000;
    overflow-y: scroll;
}

.privacy-box-title {
    margin-bottom: 3rem;
    color: #4a4a4a;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

.privacy-box-subtitle,
.privacy-box-text,
.privacy-box-list {
    color: #4a4a4a;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(35 / 14 * 100%);
}

.recruit__form-item__privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.recruit__checkbox-label {
    position: relative;
    display: inline-block;
    padding-left: 3rem;
    color: #333;
    font-size: 1.5rem;
}

.recruit__checkbox-label::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.recruit__checkbox-input:checked+.recruit__checkbox-label::before {
    border-color: #111;
}

.recruit__checkbox-input:checked+.recruit__checkbox-label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-60%) rotate(45deg);
    display: block;
    width: 6px;
    height: 12px;
    border: solid #111;
    border-width: 0 1.5px 1.5px 0;
}

.recruit__checkbox-input:focus+.recruit__checkbox-label::before {
    outline: 2px solid #111;
}

.recruit__form-item__privacy-text {
    margin-bottom: 6rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

.recruit__form-btn {
    display: block;
    width: 28rem;
    padding: 1.8rem 0;
    margin-inline: auto;
    margin-top: 6rem;
    appearance: none;
    background: #111;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-align: center;
    border: 1px solid #111;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.recruit__form-btn:hover {
    background: transparent;
    color: #111;
}

.recruit__form-btn-icon {
    display: none;
}

@media screen and (max-width: 576px) {

    .recruit__form-label {
        font-size: 2rem;
    }

    .recruit__form-input {
        font-size: 2.4rem;
    }

    .privacy-box-title {
        font-size: 2.8rem;
    }

    .privacy-box-subtitle,
    .privacy-box-text,
    .privacy-box-list {
        font-size: 2.2rem;
    }

    .recruit__checkbox-label {
        font-size: 2.2rem;
    }

    .recruit__form-item__privacy-text {
        font-size: 2.4rem;
    }

    .recruit__form-btn {
        width: 100%;
        font-size: 2.4rem;
    }

}


/* お問い合わせ 詳細
-------------------------------------------------- */

.contact-detail {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #0a1216;
}

.contact-detail__bg-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    margin-inline: auto;
}

.contact-detail__bg-img img {
    height: 100%;
}

.contact-detail__text-box {
    padding: 9rem 0 8rem 0;
    background: #fff;
}

.contact-detail__text-box-inner {
    max-width: 800px;
    margin-inline: auto;
    padding-inline: 30px;
}

.contact-detail__text--18px {
    margin-bottom: 3rem;
    color: #333;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: calc(35 / 18 * 100%);
    text-align: center;
}

.contact-detail__text--15px {
    color: #777;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(30 / 15 * 100%);
}

@media (max-width: 767px) {

    .contact-detail {
        height: auto;
        padding: 25rem 0 15rem 0;
    }

    .contact-detail__bg-img {
        width: 100%;
        height: 100%;
    }

}

@media screen and (max-width: 576px) {

    .contact-detail__text--18px {
        font-size: 2.8rem;
    }

    .contact-detail__text--15px {
        font-size: 2.4rem;
    }


}


/* お問い合わせ フォーム
-------------------------------------------------- */

.contact-detail__form-box {
    padding: 8rem 0 12rem 0;
    background: #fff;
}

.contact-detail__form-box-inner {
    max-width: 800px;
    margin-inline: auto;
    padding-inline: 30px;
}

/* 各フィールド行：ラベル上・入力下の縦積み */
.contact-detail__form-item {
    width: 100%;
    padding: 0 0 5rem 0;
    border-top: none;
}

.contact-detail__form-item p {
    display: block;
    width: 100%;
}

.contact-detail__form-item-textarea {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 5rem 0;
    border-top: none;
    border-bottom: none;
}

.contact-detail__form-item-textarea p {
    display: block;
    width: 100%;
    height: auto;
    border-top: none;
    border-bottom: none;
}

/* ラベル */
.contact-detail__form-label {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 1.2rem;
    padding: 0;
    color: #222;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    background: transparent;
}

/* テキスト入力 */
.contact-detail__form-input {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 1.2rem 0;
    color: #111;
    font-size: 1.6rem;
    font-weight: 400;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.contact-detail__form-input:focus {
    outline: none;
    border-bottom-color: #111;
}

/* テキストエリア */
.contact-detail__form-textarea {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 1.2rem 0;
    height: 18rem;
    color: #111;
    font-size: 1.6rem;
    font-weight: 400;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    resize: none;
    overflow-y: auto;
    transition: border-color 0.3s ease;
}

.contact-detail__form-textarea:focus {
    outline: none;
    border-bottom-color: #111;
}

/* CF7 ラッパー */
.wpcf7-form-control-wrap {
    display: block;
    flex: none;
    width: 100%;
}

.wpcf7-form-control {
    width: 100%;
    max-width: 100%;
    background: transparent;
    color: #111;
    border-radius: 0;
}

/* ネイティブ input / select / textarea 共通 */
.contact-detail__form-box input[type="text"],
.contact-detail__form-box input[type="email"],
.contact-detail__form-box input[type="tel"],
.contact-detail__form-box input[type="url"],
.contact-detail__form-box select,
.contact-detail__form-box textarea {
    width: 100%;
    padding: 1.2rem 0;
    color: #111;
    font-size: 1.6rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    appearance: none;
    transition: border-color 0.3s ease;
}

.contact-detail__form-box input[type="text"]:focus,
.contact-detail__form-box input[type="email"]:focus,
.contact-detail__form-box input[type="tel"]:focus,
.contact-detail__form-box input[type="url"]:focus,
.contact-detail__form-box select:focus,
.contact-detail__form-box textarea:focus {
    outline: none;
    border-bottom-color: #111;
}

.contact-detail__form-box input::placeholder,
.contact-detail__form-box textarea::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

/* チェックボックス・ラジオ */
.wpcf7-list-item {
    margin: 0 2rem 0 0;
}

.wpcf7-list-item label input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.wpcf7-list-item-label {
    position: relative;
    display: inline-block;
    padding-left: 3rem;
    margin-bottom: 5px;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
}

.wpcf7-list-item-label::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.wpcf7-list-item label input:checked+.wpcf7-list-item-label::before {
    border-color: #111;
}

.wpcf7-list-item label input:checked+.wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-60%) rotate(45deg);
    display: block;
    width: 6px;
    height: 12px;
    border: solid #111;
    border-width: 0 1.5px 1.5px 0;
}

/* 送信ボタン */
.wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 28rem;
    padding: 1.8rem 0;
    margin-inline: auto;
    margin-top: 6rem;
    appearance: none;
    background: #111;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-align: center;
    border: 1px solid #111;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.wpcf7-form-control.wpcf7-submit:hover {
    background: transparent;
    color: #111;
}

@media screen and (max-width: 576px) {

    .contact-detail__form-label {
        font-size: 2rem;
    }

    .contact-detail__form-box input[type="text"],
    .contact-detail__form-box input[type="email"],
    .contact-detail__form-box input[type="tel"],
    .contact-detail__form-box textarea {
        font-size: 2.4rem;
    }

    .wpcf7-list-item-label {
        font-size: 2.2rem;
    }

    .wpcf7-form-control.wpcf7-submit {
        width: 100%;
        height: 8rem;
        font-size: 2.4rem;
    }
}


/* 採用フォーム CF7
-------------------------------------------------- */

.recruit__form-inner .wpcf7-form p {
    margin-bottom: 4rem;
}

.recruit__form-inner .wpcf7-form label {
    display: block;
    margin-bottom: 1rem;
    color: #222;
    font-size: 1.5rem;
    font-weight: 500;
}

.recruit__form-inner input[type="text"],
.recruit__form-inner input[type="email"],
.recruit__form-inner input[type="tel"],
.recruit__form-inner input[type="date"],
.recruit__form-inner textarea {
    width: 100%;
    padding: 1.2rem 0;
    color: #111;
    font-size: 1.6rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    appearance: none;
    transition: border-color 0.3s ease;
}

.recruit__form-inner input[type="text"]:focus,
.recruit__form-inner input[type="email"]:focus,
.recruit__form-inner input[type="tel"]:focus,
.recruit__form-inner input[type="date"]:focus,
.recruit__form-inner textarea:focus {
    outline: none;
    border-bottom-color: #111;
}

.recruit__form-inner input::placeholder,
.recruit__form-inner textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.recruit__form-inner .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.recruit__form-inner .wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 28rem;
    padding: 1.8rem 0;
    margin-inline: auto;
    margin-top: 6rem;
    appearance: none;
    background: #111;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-align: center;
    border: 1px solid #111;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.recruit__form-inner .wpcf7-form-control.wpcf7-submit:hover {
    background: transparent;
    color: #111;
}

.recruit__form-inner .wpcf7-response-output {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    border-radius: 4px;
}

@media screen and (max-width: 576px) {
    .recruit__form-inner input[type="text"],
    .recruit__form-inner input[type="email"],
    .recruit__form-inner input[type="tel"],
    .recruit__form-inner input[type="date"],
    .recruit__form-inner textarea {
        font-size: 2.4rem;
    }

    .recruit__form-inner .wpcf7-form label {
        font-size: 2.4rem;
    }

    .recruit__form-inner .wpcf7-form-control.wpcf7-submit {
        width: 100%;
        font-size: 2.4rem;
        height: 8rem;
    }
}


/* おしらせ
-------------------------------------------------- */

.news-archive-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45rem;
}

.news-archive-top__bg-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.news-archive-top__bg-img img {
    height: 100%;
}

.news-archive {
    padding: 14.5rem 0 16rem 0;
}

.news-archive__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.news-archive__title {
    margin-bottom: 7rem;
}

.news-archive__title--jp {
    color: #2b3cd3;
    font-size: 2rem;
    font-weight: bold;
}

.news-archive__title--en {
    color: #000;
    font-size: 7rem;
    font-weight: bold;
}

.news-archive__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 14.3rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.news-archive__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 3rem;
    border-bottom: 1px solid #000;
}

.news-archive__item:last-child {
    border-bottom: none;
}

.news-archive__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
    width: 100%;
}

.news-archive__date {
    width: 5rem;
    font-size: 1.4rem;
}

.news-archive__category {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    color: #fff;
    font-size: 1.4rem;
    background: #2b3cd3;
    padding: 0.5rem 2rem;
}

@media screen and (max-width: 576px) {

    .news-archive__link {
        flex-wrap: wrap;
    }

    .news-archive__date {
        width: 10rem;
        font-size: 2.4rem;
    }

    .news-archive__category {
        font-size: 2.4rem;
    }

    .news-archive__title-text {
        font-size: 2.4rem;
    }
}

/* ページネーション
-------------------------------------------------- */

.news-archive__pagination {
    text-align: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.page-numbers {
    width: 4rem;
    height: 4rem;
    color: #fff;
    line-height: 4rem;
    background: #d9d9d9;
    border-radius: 50%;
}

.page-numbers.next {
    color: #000;
    background: transparent;
}

.page-numbers.prev {
    color: #000;
    background: transparent;
}

.page-numbers.current {
    background: #2b3cd3;
}


/* おしらせ 詳細
--------------------------------------------------   */

.news-single {
    padding-top: 1rem;
    padding-bottom: 17.5rem;
}

.news-single__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.news-single__breadcrumb {
    margin-bottom: 10rem;
    margin-left: -7rem;
}

.news-single__breadcrumb-separator {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
}

.news-single__title {
    margin-bottom: 6rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.news-single__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
}

.news-single__title--h2 {
    margin-bottom: 3rem;
    padding-left: 2rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(30 / 18 * 100%);
    border-left: 5px solid #2b3cd3;
}

.news-single__title--h2-text {
    margin-bottom: 4rem;
    line-height: calc(30 / 16 * 100%);
}

.news-single__title--h3 {
    margin-bottom: 3rem;
    padding-left: 2rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(30 / 18 * 100%);
    background: #c7ccff;
}

.news-single__title--h3-text {
    margin-bottom: 4rem;
    line-height: calc(30 / 16 * 100%);
}

.news-single__back-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-single__back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40rem;
    height: 7rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    background: #2b3cd3;
    border-radius: 200px;
}

@media (max-width: 767px) {

    .news-single__breadcrumb {
        margin-bottom: 10rem;
        margin-left: 0;
    }

}

@media screen and (max-width: 576px) {

    .news-single__title {
        font-size: 4rem;
    }

    .news-single__title--h2 {
        font-size: 2.8rem;
    }

    .news-single__title--h3 {
        font-size: 2.8rem;
    }

    .news-single__title--h2-text {
        font-size: 2.4rem;
    }

    .news-single__title--h3-text {
        font-size: 2.4rem;
    }

}


/* プライバシーポリシー
-------------------------------------------------- */

.privacy-policy {
    padding: 12rem 0 15rem;
    background: #fff;
}

.privacy-policy__inner {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 20px;
}

.privacy-policy__title {
    margin-bottom: 8rem;
}

.privacy-policy__lead {
    margin-bottom: 5rem;
    color: #4a4a4a;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: calc(30 / 15 * 100%);
}

.privacy-policy__section {
    margin-bottom: 4rem;
}

.privacy-policy__section-title {
    margin-bottom: 1.5rem;
    color: #222;
    font-size: 1.6rem;
    font-weight: 500;
    border-left: 3px solid #41b6ff;
    padding-left: 1.2rem;
}

.privacy-policy__text {
    color: #4a4a4a;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(30 / 14 * 100%);
}

.privacy-policy__list {
    margin-top: 1rem;
}

.privacy-policy__item {
    color: #4a4a4a;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(30 / 14 * 100%);
}

.privacy-policy__address {
    margin-top: 1.5rem;
    color: #4a4a4a;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: normal;
    line-height: calc(30 / 14 * 100%);
}

.privacy-policy__address a {
    color: #41b6ff;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .privacy-policy {
        padding: 8rem 0 10rem;
    }

    .privacy-policy__title {
        margin-bottom: 5rem;
    }
}


/* JOIN US イントロ
-------------------------------------------------- */

.recruit-intro {
    padding: 12rem 0 10rem;
    background: #fff;
}

.recruit-intro__inner {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 40px;
}

.recruit-intro__heading {
    font-size: 10rem;
    font-weight: 900;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
    color: #111;
    letter-spacing: -0.02em;
}

.recruit-intro__catch {
    margin-top: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.recruit-intro__body {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
}

.recruit-intro__body p {
    font-size: 2.2rem;
    color: #444;
    line-height: 2.2;
    font-weight: 400;
}

.recruit-intro__body p:first-child {
    font-size: 2.2rem;
    font-weight: 400;
    color: #111;
}

@media screen and (max-width: 576px) {
    .recruit-intro {
        padding: 8rem 0 7rem;
    }

    .recruit-intro__catch {
        font-size: 4rem;
    }

    .recruit-intro__body p {
        font-size: 2.2rem;
    }

    .recruit-intro__body p:first-child {
        font-size: 2.2rem;
    }
}


/* メンバー紹介
-------------------------------------------------- */

.recruit-members {
    padding: 15rem 0 20rem;
    background: #f7f7f7;
}

.recruit-members__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 30px;
}

.recruit-members__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 8rem;
    text-align: center;
}

.recruit-members__en {
    font-family: "jaf-mashine", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #bbb;
    letter-spacing: 0.2em;
}

.recruit-members__jp {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #222;
}

.recruit-members__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 3rem;
}

.recruit-member-card__img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 100px;
}

.recruit-member-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.recruit-member-card:hover .recruit-member-card__img img {
    transform: scale(1.05);
}

.recruit-member-card__info {
    padding-top: 2.4rem;
    text-align: center;
}

.recruit-member-card__name {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.6rem;
}

.recruit-member-card__dept {
    font-size: 1.3rem;
    color: #888;
    letter-spacing: 0.04em;
    margin-bottom: 1.4rem;
}

.recruit-member-card__quote {
    font-size: 1.4rem;
    color: #444;
    line-height: 1.9;
    text-align: left;
}

@media screen and (max-width: 900px) {
    .recruit-members__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem 3rem;
    }
}

@media screen and (max-width: 576px) {
    .recruit-members {
        padding: 10rem 0 15rem;
    }

    .recruit-members__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .recruit-members__en {
        font-size: 4.5rem;
    }

    .recruit-member-card__name {
        font-size: 3rem;
    }

    .recruit-member-card__dept {
        font-size: 2rem;
    }

    .recruit-member-card__quote {
        font-size: 2.2rem;
    }
}


/* 募集要項 アコーディオン
-------------------------------------------------- */

.recruit-positions {
    border-top: 1px solid #ddd;
}

.recruit-position {
    border-bottom: 1px solid #ddd;
}

.recruit-position__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0.5rem;
    cursor: pointer;
    list-style: none;
    gap: 3rem;
}

.recruit-position__summary::-webkit-details-marker {
    display: none;
}

.recruit-position__summary:focus {
    outline: none;
}

.recruit-position__company {
    font-size: 1.1rem;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.recruit-position__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.recruit-position__type {
    font-size: 1.3rem;
    color: #666;
}

.recruit-position__icon {
    flex-shrink: 0;
    width: 4.4rem;
    height: 4.4rem;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: #222;
    transition: transform 0.3s ease;
}

.recruit-position__icon::before {
    content: '+';
    display: block;
    line-height: 1;
    transition: transform 0.3s ease;
}

details[open] .recruit-position__icon::before {
    transform: rotate(45deg);
}

.recruit-position__body {
    padding: 0 0.5rem 5rem;
}

.recruit-position__section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #eee;
}

.recruit-position__section:first-child {
    border-top: none;
    padding-top: 2rem;
}

.recruit-position__section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.recruit-position__text {
    font-size: 1.5rem;
    color: #444;
    line-height: 2;
}

.recruit-position__subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.recruit-position__list {
    padding-left: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.recruit-position__list li {
    font-size: 1.5rem;
    color: #444;
    line-height: 1.8;
    list-style: disc;
}

.recruit-position__note {
    font-size: 1.2rem;
    color: #888;
    margin-top: 1.2rem;
    line-height: 1.7;
}

.recruit-position__flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 0.8rem;
    margin-bottom: 1.5rem;
}

.recruit-position__flow span {
    font-size: 1.4rem;
    color: #222;
    font-weight: 500;
    background: #f0f0f0;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
}

.recruit-position__flow-arrow {
    font-size: 1.4rem;
    color: #aaa;
    background: transparent !important;
    padding: 0 !important;
}

.recruit-position__contract-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.recruit-position__contract-item {
    padding: 2.5rem;
    background: #f7f7f7;
    border-radius: 4px;
}

.recruit-position__contract-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.recruit-position__highlight {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: #111;
    border-radius: 4px;
}

.recruit-position__highlight-label {
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.recruit-position__highlight-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.recruit-position__highlight .recruit-position__note {
    color: #888;
    margin-top: 0.8rem;
}

/* LINE QRバナー */
.recruit__qr-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 8rem;
    padding: 5rem 6rem;
    background: #EDF1F9;
    border-radius: 10px;
}

.recruit__qr-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.recruit__qr-banner-text--top {
    color: #1d72f2;
    font-size: 1.8rem;
    font-weight: 600;
}

.recruit__qr-banner-text--top span {
    margin-left: 10px;
    padding: 6px 24px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    background-color: #3c8ae5;
    border-radius: 2px;
}

.recruit__qr-banner-text--bottom {
    color: #37383e;
    font-size: 3rem;
    font-weight: 700;
}

.recruit__qr-banner-img {
    width: 16rem;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .recruit-position__contract-box {
        grid-template-columns: 1fr;
    }

    .recruit__qr-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem;
        gap: 2rem;
    }

    .recruit__qr-banner-img {
        width: 12rem;
    }
}

@media screen and (max-width: 576px) {
    .recruit-position__title {
        font-size: 3.2rem;
    }

    .recruit-position__type {
        font-size: 2rem;
    }

    .recruit-position__text,
    .recruit-position__list li {
        font-size: 2.4rem;
    }

    .recruit-position__flow span {
        font-size: 2.2rem;
    }

    .recruit__qr-banner-text--bottom {
        font-size: 4rem;
    }
}