/*-------------------------------------------
Common
-------------------------------------------*/
:root {
    /* color */
    --white: #FFF;
    --black: #000;
    --main: #222;
    --primary: #005EEA;
    --secondary: #00C0FA;
    --gray: #8A8A8A;
    --primary-gradation: linear-gradient(to right, var(--secondary), var(--primary));
    --cv-gradation: linear-gradient(to right, #FB9B41, #FC5A02);
    --pale-gradation: linear-gradient(to bottom, #E9F0FA, #B6D3FD);
    --border-gradation: linear-gradient(120deg, var(--white), var(--primary));
    --primary-gradation-vertical: linear-gradient(to bottom, var(--secondary), var(--primary));
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--main);
    background-color: var(--white);
    font-size: 16px;
    line-height: 2;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

.color-primary {
    color: var(--primary);
}

.sp-none {
    display: none;
}

.pc-none {
    display: block;
}

@media(min-width:992px) {
    .sp-none {
        display: block;
    }

    .pc-none {
        display: none;
    }
}

/*-------------------------------------------
Common-Typography
-------------------------------------------*/

/* sec-ttl */
.sec-ttl {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 32px;
}

.sec-ttl span[lang="ja"] {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: block;
    color: var(--main);
}

.sec-ttl span[lang="ja"]::before {
    content: "";
    display: inline-block;
    background-color: var(--secondary);
    background-size: cover;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    transform: translateY(-2px);
}

@media(min-width:768px) {
    .sec-ttl {
        font-size: 56px;
        margin-bottom: 48px;
    }

    .sec-ttl span[lang="ja"] {
        font-size: 16px;
    }
}

/* marker-ttl */
.marker-ttl {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.marker-ttl span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    padding: 2px 8px 4px;
    color: var(--white);
    background: var(--primary-gradation);
    width: fit-content;
    height: fit-content;
    display: inline-block;
}

@media(min-width:992px) {
    .marker-ttl span {
        font-size: 36px;
        padding: 2px 16px 4px;
    }
}

/* lead */
.lead {
    font-size: 16px;
}

@media(min-width:768px) {
    .lead {
        font-size: 18px;
    }
}

/*-------------------------------------------
Button / Links
-------------------------------------------*/

/* arrow-link */
.arrow-mark,
.arrow-mark--white {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.arrow-mark img,
.arrow-mark--white img {
    width: 24px;
    height: 24px;
}

.arrow-mark {
    background: var(--primary-gradation);
}

.arrow-mark--white {
    background: var(--white);
}

/* button */

.btn:hover .arrow-mark {
    transform: translate(2px, -2px);
}


.btn {
    background: var(--primary-gradation);
    padding: 2px;
    border-radius: 32px;
    height: 64px;
    width: 280px;
    transition: box-shadow 0.35s cubic-bezier(.22, 1, .36, 1);
    background-size: 200% 100%;
    background-position: 0 50%;
    box-shadow: 0 6px 14px rgba(0, 35, 69, 0.18);
}

.btn__inner {
    background: var(--white);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 36px;
}

.btn__inner span {
    width: calc(100% - 48px);
    text-align: center;
}

.btn-area {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media(min-width:992px) {

    .btn {
        width: 400px;
        height: 72px;
        border-radius: 36px;
    }

    .btn-area {
        margin: 64px 0 0;
    }

    .btn__inner {
        font-size: 20px;
        border-radius: 34px;
    }
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {

    .btn {
        transition:
            transform 0.35s cubic-bezier(.22, 1, .36, 1),
            box-shadow 0.35s cubic-bezier(.22, 1, .36, 1),
            background-position 0.6s ease;
    }

    .btn:hover {
        transform: translate(2px, -2px);
        background-position: 100% 50%;
        box-shadow: 0 12px 28px rgba(0, 35, 69, 0.25);
    }
}

/* text-link */
.text-link,
.text-link--white {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.text-link {
    color: var(--primary);
    background: var(--primary-gradation);
    background-size: 100% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
}

.text-link--white {
    color: var(--white);
    border-bottom: 2px solid var(--white);
}

/* text-link */
.text-link-area {
    display: flex;
    gap: 16px;
}

/* hover-link */
.hover-link {
    position: relative;
    text-decoration: none;
    padding: 2px 0;
    transition: color 0.2s ease;
}

.hover-link::after {
    content: none;
}

/* text-link hover設定用 */
.discussion .text-link--white,
.works .text-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
}


@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .hover-link {
        color: var(--main);
    }

    .hover-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 1px;
        width: 100%;
        background-color: var(--main);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.18s cubic-bezier(.22, 1, .36, 1);
    }

    .hover-link:hover::after {
        transform: scaleX(1);
    }
}

/*-------------------------------------------
Header（共通 / 通常時）
-------------------------------------------*/
.header__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.header__logo {
    position: absolute;
    left: 14px;
    top: 18px;
    z-index: 1300;
}

.header__logo a {
    display: flex;
}


.header__logo img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    content: url("../images/logo_mv.svg");
}

.header__ttl {
    display: flex;
    flex-direction: column;
}

.header__logo span {
    color: var(--white);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.header__logo span[lang="en"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.header__logo span[lang="ja"] {
    font-weight: 700;
    font-size: 12px;
}

/*-------------------------------------------
Entry-Button（通常時）
-------------------------------------------*/
.header_entry-btn {
    position: fixed;
    top: 14px;
    z-index: 800;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    background: linear-gradient(270deg, #FC5A02, #FB9B41, #FC5A02) 0 50% / 300% 100%;
    padding: 14px 16px;
    color: var(--white);
    height: 44px;
    width: 78px;
    right: 68px;
    text-transform: uppercase;
    transition: transform 0.25s cubic-bezier(.22, 1, .36, 1);
}

/*-------------------------------------------
Navigation（通常時）
-------------------------------------------*/
.header__nav {
    position: fixed;
    flex-wrap: wrap;
    opacity: 0;
    pointer-events: none;
    display: flex;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
}

.header__nav.is_active {
    opacity: 1;
    pointer-events: auto;
    z-index: 999;
}

.header__nav-item {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

header.is_active .header__logo span[lang="ja"] {
    color: var(--main);
}

.header__sub-nav li {
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    margin-top: 16px;
    display: flex;
}

.header__sub-nav li::before {
    content: "";
    width: 8px;
    height: 1px;
    background: var(--secondary);
    margin-right: 8px;
    flex-shrink: 0;
}

/*-------------------------------------------
Hamburger（通常時）
-------------------------------------------*/
.hamburger-menu {
    position: fixed;
    top: 14px;
    right: 14px;
    background: var(--white);
    width: 44px;
    height: 44px;
    z-index: 999;
}

.hamburger-bar1,
.hamburger-bar2,
.hamburger-bar3 {
    background: var(--primary);
    display: block;
    width: 22px;
    height: 2px;
    margin: 6px auto;
    transition: transform 0.2s, width 0.2s, opacity 0.2s;
}

.hamburger-menu.is_active .hamburger-bar1 {
    transform: translateY(18px) rotate(-45deg);
    width: 28px;
    transform-origin: 2px -4px;
}

.hamburger-menu.is_active .hamburger-bar2 {
    opacity: 0;
    width: 28px;
}

.hamburger-menu.is_active .hamburger-bar3 {
    transform: translateY(-18px) rotate(45deg);
    width: 28px;
    transform-origin: 2px 6px;
}

/*-------------------------------------------
Hamburger background
-------------------------------------------*/
.hamburger-bg {
    opacity: 0;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 400;
    pointer-events: none;
    transition: opacity 0.4s ease-out;
}

.hamburger-bg.is_active {
    opacity: 1;
    pointer-events: auto;
}

.hamburger-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 14px;
    background: var(--primary-gradation);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/*-------------------------------------------
Hamburger OPEN 時
-------------------------------------------*/

/* ハンバーガーOPEN時に body は固定 */
body.is-fixed {
    position: fixed;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.header.is_active {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: block;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    padding: env(safe-area-inset-top, 40px) 16px env(safe-area-inset-bottom, 40px);
    /* overflow: hidden; */
    overflow-y: auto;
    overflow: visible;
}

.header.is_active .header__nav {
    position: relative;
    z-index: 999;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.header.is_active .header__inner {
    height: 100vh;
    padding: 40px 40px 104px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.header.is_active .header__logo,
.header.is_active .header_entry-btn,
.header.is_active .header__nav {
    position: static;
}

.hamburger-bg__inner.is_active {
    background: var(--white);
    position: fixed;
}

.hamburger-menu.is_active {
    background: none;
}

.header.is_active .header__logo {
    z-index: 999;
    margin-bottom: 16px;
}

.header.is_active .header__logo img {
    content: url("../images/logo.svg");
}

.header.is_active .header__logo span[lang="en"] {
    color: var(--primary);
}

.header.is_active .header_entry-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 500;
    /* position: absolute; */
    position: fixed;
    /* bottom: env(safe-area-inset-bottom, 16px); */
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.header.is_active .header_entry-btn::after {
    content: "";
    display: flex;
    background-image: url(../images/icon_paper-airplane-fill.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/*-------------------------------------------
TABLET（576px以上）
-------------------------------------------*/
@media(min-width: 576px) {
    .header.is_active .header__nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 64px;
        row-gap: 24px;
    }

    .header.is_active .header__inner {
        padding: 40px 64px;
    }

    .header.is_active .header__logo {
        margin-bottom: 40px;
    }
}

/*-------------------------------------------
PC（992px以上）
-------------------------------------------*/
@media(min-width:992px) {

    /* 通常時（MV上） */
    .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: transform 0.4s ease,
            opacity 0.4s ease;
    }

    .header__inner {
        overflow: visible;
    }

    .header__nav {
        position: static;
        opacity: 1;
        z-index: 999;
        color: var(--white);
        justify-content: flex-end;
        width: calc(100% - 200px);
        pointer-events: auto;
    }

    .header__nav-list {
        position: relative;
        gap: 28px;
        align-items: flex-end;
        margin-top: 56px;
    }

    .header__nav-label {
        position: relative;
        padding-right: 20px;
        background: none;
        border: none;
        color: inherit;
        font: inherit;
        cursor: pointer;
    }

    /* 矢印 */
    .header__nav-label::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 16px;
        height: 16px;
        background: url("../images/icon_keyboard_arrow_down.svg") no-repeat center / contain;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.3s ease;
    }

    /* hover */
    .header__nav-parent:hover .header__nav-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* nav 全体に hover で色を変える */
    .header .header__nav .header__nav-label:hover,
    .header.is-fixed .header__nav .header__nav-label:hover {
        color: var(--primary);
    }

    /* nav内のリンク a に hover したときも色を変える */
    .header .header__nav a:hover,
    .header.is-fixed .header__nav a:hover {
        color: var(--primary);
    }

    /* click（JS制御） */
    .header__nav-item.is-open .header__nav-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .header__logo {
        top: 50px;
        left: 32px;
    }

    .header__logo span[lang="en"] {
        font-size: 18px;
    }

    .header__logo span[lang="ja"] {
        font-size: 13px;
    }

    .header__logo img {
        width: 40px;
        height: 40px;
        margin-right: 16px;
    }

    .header__nav-list {
        display: flex;
    }

    .hamburger-menu {
        display: none;
    }

    .header_entry-btn {
        position: absolute;
        top: 32px;
        width: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        height: 64px;
        right: 32px;
        z-index: 1200;
    }

    .header_entry-btn::after {
        content: "";
        background-image: url(../images/icon_paper-airplane-fill.svg);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        margin-left: 8px;
        transition: transform 0.25s cubic-bezier(.22, 1, .36, 1);
    }

    .header_entry-btn:hover {
        background-position: 100% 50%;
    }

    .header_entry-btn:hover::after {
        transform: translate(4px, -4px);
    }

    .header__inner::before,
    .header__inner::after {
        display: none;
    }


    /* サブメニュー表示前 */
    .header__sub-nav {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: #fff;
        color: #000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        padding: 0 16px 16px 16px;
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 1000;
    }

    .header__nav-parent {
        position: relative;
    }

    .header__sub-nav {
        position: absolute;
        top: calc(100% + 24px);
        left: 0;
        min-width: 200px;
        background: #fff;
        color: #000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.3s, transform 0.3s;
        z-index: 1000;
        pointer-events: none;
    }

    /* hover, clickで表示 */
    .header__nav-item.is-open>.header__sub-nav,
    .header__nav-parent:focus-within>.header__sub-nav,
    .header__nav-parent:hover>.header__sub-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* click：タッチPC・キーボード対応 */
    .header__nav-parent:hover>.header__sub-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /*-------------------------------------------
    MV通過
    -------------------------------------------*/
    .header.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.8);
        height: 74px;
        backdrop-filter: blur(5px);
        animation: fadeDown 0.4s ease-out forwards;
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .header.is-fixed .header__logo img {
        content: url("../images/logo.svg");
    }

    .header.is-fixed .header__logo span[lang="en"] {
        color: var(--primary);
    }

    .header.is-fixed .header__logo span[lang="ja"] {
        color: var(--main);
    }

    .header.is-fixed .header__logo {
        top: 18px;
    }

    .header.is-fixed .header__nav {
        color: var(--main);
        width: calc(100% - 170px);
    }

    .header.is-fixed .header__nav-list {
        margin-top: 28px;
    }

    .header.is-fixed .header_entry-btn {
        top: 0;
        right: 0;
        height: 74px;
    }

    .header.is-fixed .header__sub-nav {
        background: var(--primary-gradation);
        color: var(--white);
    }

    .header.is-fixed .header__sub-nav li::before {
        background: var(--white);
    }
}

/*-------------------------------------------
MV
-------------------------------------------*/
.mv__inner {
    position: absolute;
    z-index: 200;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* title */
.mv__ttl {
    padding: 0 4% 4px;
}

.mv__sub-ttl {
    margin-bottom: 8px;
    max-width: 460px;
    height: auto;
    display: block;
}

.mv__main-ttl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mv__main-ttl img {
    height: 80px;
}

@media(min-width:768px) {
    .mv__sub-ttl {
        max-width: 684px;
        margin-bottom: 16px;
    }

    .mv__main-ttl {
        flex-direction: row;
    }

    .mv__main-ttl img {
        margin-right: -28px;
        height: 100px;
    }
}

/* news */
.mv__news {
    margin: 24px 0 64px auto;
}

.mv__news__inner {
    background: var(--white);
    padding: 16px 16px 16px 24px;
    display: flex;
    line-height: 1;
    max-width: 560px;
    width: 92vw;
    gap: 24px;
}

.mv__news__inner span[lang="en"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.mv__news__inner dl {
    font-size: 14px;
    width: 100%;
}

.mv__news__inner dt {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 8px;
}

.mv__news__inner dd {
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mv__news__inner dd::after {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../images/icon_arrow_forward_ios.svg)no-repeat right center / 14px 14px;
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

@media(min-width:768px) {
    .mv__news {
        margin: 24px 0 24px auto;
    }
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .mv__news:hover {
        color: var(--primary);
    }

    .mv__news:hover .mv__news__inner dd::after {
        transform: translateX(3px);
    }
}

/*-------------------------------------------
MV-Slider
-------------------------------------------*/

/* Slider */
.mv-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.mv-slider .swiper-slide {
    position: relative;
    opacity: 0;
    transition-property: opacity;
}

.mv-slider .swiper-slide picture,
.mv-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-slider .swiper-slide-active {
    opacity: 1;
}

.mv-slider .swiper-slide-active img {
    animation: mvZoom 6s ease-in-out forwards;
}

@keyframes mvZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* page-nation */
.mv-slider .swiper-pagination {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(0);
    z-index: 20;
}

.mv-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 8px !important;
    transition: .25s ease;
    opacity: 1;
}

.mv-slider .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

@media(min-width:768px) {
    .mv-slider .swiper-pagination {
        left: 80px;
        right: auto;
        text-align: left;
    }
}


/*-------------------------------------------
MV-Animation
-------------------------------------------*/
/* 共通：初期状態 */
.mv__sub-ttl,
.mv__main-ttl,
.mv__news {
    opacity: 0;
    transform: translateX(-24px);
}

.mv__news {
    transform: translateY(16px);
}

.mv.is-animate .mv__sub-ttl {
    animation: mvFadeSlide 0.8s ease-out forwards;
}

.mv.is-animate .mv__main-ttl {
    animation: mvFadeSlide 0.9s ease-out forwards;
    animation-delay: 0.2s;
}

.mv.is-animate .mv__news {
    animation: mvFadeUp 0.7s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes mvFadeSlide {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mvFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mv.is-animate .mv__main-ttl img {
    opacity: 0;
    transform: translateX(-16px);
    animation: mvFadeSlide 0.8s ease-out forwards;
}

.mv.is-animate .mv__main-ttl img:nth-child(1) {
    animation-delay: 0.3s;
}

.mv.is-animate .mv__main-ttl img:nth-child(2) {
    animation-delay: 0.45s;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
.footer {
    padding: 64px 8% 40px;
    position: relative;
    /* 古いSafari対策 */
    background-clip: padding-box;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 14px;
    background: var(--primary-gradation);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.footer__inner {
    max-width: 1440px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* footer__logo-area */
.footer__logo-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__logo a {
    display: flex;
}

.footer__logo a img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.footer__ttl {
    display: flex;
    flex-direction: column;
}

.footer__logo span {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.footer__logo span[lang="en"] {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.footer__logo span[lang="ja"] {
    font-weight: 700;
    font-size: 13px;
}

.footer__external-link {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.2;
    gap: 8px;
}

.footer__external-link li a {
    display: inline-flex;
    align-items: center;
}

.footer__external-link li a::after {
    content: "";
    background-image: url(../images/icon_north_east_primary.svg);
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 8px;
    transition: transform 0.2s ease-out;
}

/* footer__link */
.footer__nav-item {
    font-weight: 700;
    line-height: 1.2;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 8px;
}

.footer__nav-item h3 {
    width: 88px;
}

.footer__sub-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__sub-nav li {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: transform 0.12s linear;
}

.footer__sub-nav li::before {
    content: "";
    width: 8px;
    height: 1px;
    background: var(--secondary);
    margin-right: 8px;
    flex-shrink: 0;
}

.footer__nav-list {
    display: grid;
    gap: 24px;
}

/* footer__media */
.footer__media {
    font-weight: 700;
    line-height: 1.2;
}

.footer__media-ttl {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer__media ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__media ul li {
    font-size: 14px;
    line-height: 1.2;
}

.footer__media ul li a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.footer__media ul li a img {
    width: 20px;
    height: 20px;
}

/* copyright */

.footer_bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray);
}

.copyright {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.copyright small {
    font-family: 'Montserrat', sans-serif;
}

/* キーボード操作アクセシビリティ */
.footer a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* PCマウス操作のときだけ、装飾的なhover */
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .footer__external-link li a:hover::after {
        transform: translate(2px, -2px);
    }

    .footer__sub-nav li:hover {
        transform: translateX(4px);
    }
}

/* メディアクエリ */
@media(min-width:768px) {
    .footer__link-group {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__media ul {
        flex-direction: row;
        justify-content: flex-start;
        gap: 32px;
    }

}

@media(min-width:992px) {
    .footer {
        padding: 64px 64px 40px;
    }

    .footer__inner {
        flex-direction: row;
    }

    .footer__link-group {
        width: 70%;
    }

    .footer__media ul {
        flex-direction: column;
        gap: 8px;
    }
}

/*-------------------------------------------
PAGE-TOP
-------------------------------------------*/
.page-top a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-top__mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    transition:
        background-color 0.35s cubic-bezier(.22, 1, .36, 1),
        color 0.35s cubic-bezier(.22, 1, .36, 1),
        transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.page-top__mark svg {
    width: 24px;
    height: 24px;
}

.page-top .text-link {
    display: none;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .page-top a:hover .page-top__mark {
        background: var(--primary-gradation);
        color: var(--white);
        border: none;
    }

    .page-top .text-link {
        transition: transform 0.25s cubic-bezier(.22, 1, .36, 1);
    }

    .page-top a:hover .text-link {
        transform: translateY(-2px);
    }
}

@media (min-width: 768px) {
    .page-top .text-link {
        display: inline-block;
    }
}

/*-------------------------------------------
Index / Message
-------------------------------------------*/
.message {
    background: var(--primary-gradation);
    position: relative;
    overflow: hidden;
}

.message::before {
    content: "";
    position: absolute;
    top: -4%;
    left: -20%;
    width: 1360px;
    aspect-ratio: 2 / 1;
    height: auto;
    background: url(../images/img_message_bk.svg) no-repeat center / contain;
    transform: rotate(-8deg);
    z-index: 0;
}

.message__inner {
    max-width: 1440px;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.message__inner,
.mv__scroll-img,
.message__catch,
.message__catch-en {
    position: relative;
    z-index: 1;
}

.message__lead-ttl {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.message__bk {
    position: absolute;
    transform: rotate(-8deg);
    overflow: hidden;
    top: -600px;
    z-index: -1;
}

/* scroll */
.scroll-wrap {
    overflow: hidden;
    width: 100%;
}

.mv__scroll-img {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-x 40s linear infinite;
    white-space: nowrap;
}

/* アニメーション効果を削除・軽減の設定をした場合の有効化 */
@media (prefers-reduced-motion: reduce) {
    .mv__scroll-img {
        animation: none;
    }
}

.mv__scroll-img li {
    flex-shrink: 0;
}

.mv__scroll-img li img {
    display: block;
    width: 160px;
    height: 160px;
}

@keyframes scroll-x {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* catch */

.message__catch {
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 40px 0 24px;
}

.message__catch-en {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
    padding: 0 4% 64px;
    color: var(--white);
}

/* メディアクエリ */
@media(min-width:768px) {
    .message__catch {
        font-size: 28px;
    }

    .message__lead-ttl {
        font-size: 32px;
    }
}

@media(min-width:992px) {
    .message__catch {
        font-size: 32px;
    }

    .message__inner {
        padding: 160px 8% 80px;
        flex-direction: row;
        gap: 64px;
    }

    .message__header {
        width: 32%;
    }

    .message__body {
        width: 68%;
    }

    .mv__scroll-img li img {
        width: 240px;
        height: 240px;
    }

    .message__lead-ttl {
        font-size: 40px;
    }

    .message::before {
        top: 5%;
        left: 50%;
        transform: translate(-50%) rotate(-8deg);
    }

    .message__header,
    .message__body {
        padding: 0;
    }

    .message__catch {
        margin: 64px 0 24px;
    }

    .message__catch-en {
        font-size: 20px;
        padding: 0 4% 100px;
    }
}

@media(min-width:1200px) {
    .message .catch br {
        display: none;
    }
}

/*-------------------------------------------
Index / Message-Animation
-------------------------------------------*/
/* Message 初期状態 */
.message [data-anim] {
    opacity: 0;
    transform: translateY(24px);
}

.message__inner.is-show [data-anim] {
    animation: messageFadeUp 0.8s ease-out forwards;
}

.message.is-show .lead p:nth-child(1) {
    animation-delay: 0.2s;
}

.message.is-show .lead p:nth-child(2) {
    animation-delay: 0.35s;
}

.message.is-show .lead p:nth-child(3) {
    animation-delay: 0.5s;
}

.message.is-show .lead p:nth-child(4) {
    animation-delay: 0.65s;
}

.message.is-show .message__catch {
    animation-delay: 0.9s;
}

.message.is-show .message__catch-en {
    animation-delay: 1.05s;
}

.message__catch,
.message__catch-en {
    opacity: 0;
    transform: translateY(24px);
}

.message__catch.is-show,
.message__catch-en.is-show {
    animation: messageFadeUp 0.8s ease-out forwards;
}

.message__catch-en.is-show {
    animation-delay: 0.15s;
}

@keyframes messageFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-------------------------------------------
Index / About
-------------------------------------------*/
.about__inner {
    padding: 80px 8% 40px;
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
}

.about__img {
    position: relative;
    width: 80%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    /* 背景グラデーション回転のため */
    overflow: visible;
}

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

.about__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pale-gradation);
    transform-origin: left bottom;
    transform: rotate(8deg);
    z-index: -1;
}

/* メディアクエリ */

@media(min-width:768px) {
    .about__inner {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 100px 8% 100px 0;
    }

    .about__body {
        width: 48%
    }

    .about__img {
        width: 42%;
        margin: 0;
    }

    .btn-area {
        align-items: flex-start;
    }
}

@media(min-width:992px) {
    .about__inner {
        padding: 160px 8% 160px 0;
    }

    .about__img {
        /* body幅 + gap想定 */
        width: calc(100% - 400px - 100px);
        max-width: 640px;
    }

    .about__body {
        width: 400px
    }
}

/*-------------------------------------------
Index / About-Animation
-------------------------------------------*/
.about__img {
    position: relative;
    overflow: visible;
}

.about__img-inner {
    overflow: hidden;
}

.about__img-inner picture {
    display: block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(.22, 1, .36, 1);
}

.about.is-show .about__img-inner picture {
    clip-path: inset(0 0 0 0);
}

.about__body {
    opacity: 0;
    transform: translateY(24px);
}

.about.is-show .about__body {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.marker-ttl span {
    position: relative;
}

.marker-ttl span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.4em;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: -1;
}

.about.is-show .marker-ttl span::after {
    transform: scaleX(1);
}

/*-------------------------------------------
Index / Works
-------------------------------------------*/
.works {
    margin: 80px auto 64px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 1440px;
}

.works__header {
    padding: 0 8%;
}

.works__body {
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 24px;
}

.works__card {
    position: relative;
    border-radius: 0 0 24px 0;
    padding: 40px 32px 32px;
    box-shadow: 0 8px 16px rgba(0, 35, 69, 0.2);
    z-index: 0;
}

.works__card a {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* グラデーション枠 */
.works__card::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: var(--border-gradation);
    /* 24 + 3 */
    border-radius: 0 0 27px 0;
    z-index: 0;
}

/* カード内を前面 */
.works__card>* {
    position: relative;
    z-index: 2;
}

.works__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: 0 0 24px 0;
    z-index: 1;
}

.works__card-img {
    position: relative;
    width: 240px;
    aspect-ratio: 1 / 1;
    padding-left: 32px;
    /* hover用 */
    overflow: hidden;
}

.works__card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.works__card-img-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.works__card-img figcaption {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg) translateY(-100%);
    transform-origin: left top;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;

}

.works__card-job dt {
    font-size: 22px;
    color: var(--primary);
    line-height: 1.3;
    margin: 24px 0 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.works__card-job dt::before {
    content: "";
    width: 4px;
    background: var(--primary-gradation-vertical);
    align-self: stretch;
    display: block;
}

.works__card-job dd {
    font-size: 14px;
    line-height: 1.8;
}

.works__link {
    margin-top: 24px;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 16px;
    /* hover用 */
    position: relative;
    transition: opacity 0.3s ease;
}

.works::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pale-gradation);
    transform-origin: left top;
    transform: rotate(-8deg);
    top: 240px;
    z-index: -1;
    width: 1200px;
}

@media(min-width:768px) {
    .works {
        margin: 0 auto 160px;
        flex-direction: row;
        justify-content: space-between;
    }

    .works__header {
        position: sticky;
        padding: 0 0 0 8%;
        top: 120px;
        margin-bottom: 120px;
        align-self: flex-start;
    }

    .works__body {
        margin: 16px 0 24px;
        padding: 0 8% 0 0%;
        width: 56%;
    }

    .works::after {
        left: 120px;
    }
}

@media(min-width:992px) {
    .works__body {
        width: 66%;
    }

    .works__card {
        padding: 40px;
    }

    .works__card a {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .works__card-img {
        flex-shrink: 0;
    }

    .works__card-job {
        margin-bottom: 48px;
    }

    .works__link {
        position: absolute;
        right: -8px;
        bottom: -8px;
    }
}

/* hover */
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .works__card {
        transition: transform 0.4s ease;
    }

    .works__card:hover {
        transform: translateY(-4px);
        cursor: pointer;
    }

    .works__card-img img {
        transition: transform 0.6s ease;
    }

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

    .works__card:hover .arrow-mark {
        transform: translate(6px, -6px);
    }

    .works__card:hover .text-link {
        transform: translateX(3px);
    }
}

/*-------------------------------------------
Index / Works-Animation
-------------------------------------------*/
/* 初期状態 */
.works__card {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.works__header {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示 */
.works.is-show .works__card {
    opacity: 1;
    transform: translateY(0);
}

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

/* stagger */
.works.is-show .works__card:nth-child(1) {
    transition-delay: 0.0s;
}

.works.is-show .works__card:nth-child(2) {
    transition-delay: 0.12s;
}

.works.is-show .works__card:nth-child(3) {
    transition-delay: 0.24s;
}

/*-------------------------------------------
Index / Discussion
-------------------------------------------*/
.discussion {
    background: linear-gradient(to right, rgba(0, 192, 250, 0.8), rgba(0, 94, 234, 0.8)), url(../images/img_discussion_bk.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.discussion::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    /* iOS Safari fallback */
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
}

.discussion__inner {
    position: relative;
    z-index: 1;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px auto;
}

.discussion__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin: 0 auto;
}

.discussion__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* hover用 */
    transition: transform 0.6s ease;
}

.discussion__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.discussion__tag {
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    padding: 8px 14px;
    border: 1px solid var(--white);
    width: fit-content;
}

.discussion__lead {
    color: var(--white);
    font-size: 14px;
    line-height: 1.8;
}

.discussion__link {
    align-self: flex-end;
}

.discussion__link a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.discussion__ttl {
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

@media(min-width:768px) {
    .discussion__inner {
        display: grid;
        gap: 40px;
        grid-template-columns: minmax(0, 380px) 1fr;
        grid-template-areas: "img body";
        align-items: stretch;
        max-width: 1200px;
        margin: 80px auto;
    }

    .discussion__body {
        grid-area: body;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .discussion__img {
        aspect-ratio: auto;
        align-self: stretch;
        margin: 0;
        grid-area: img;
        overflow: hidden;
        position: relative;
    }

    /* imgを親いっぱい表示 */
    .discussion__img picture {
        position: absolute;
        inset: 0;
    }

    .discussion__ttl {
        font-size: 26px;
    }
}

/* hover用追加 */
.discussion__inner {
    transition: transform 0.4s ease;
}

.discussion .text-link--white {
    position: relative;
    display: inline-block;
}

/* Hover */
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .discussion__inner:hover {
        cursor: pointer;
    }

    .discussion__inner:hover .arrow-mark--white {
        transform: translate(6px, -6px);
    }

    .discussion__inner:hover .text-link--white {
        transform: translateX(3px);
    }

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

    .discussion__inner:hover {
        transform: translateY(-4px);
    }
}

/*-------------------------------------------
Index / Discussion-Animation（PC only）
-------------------------------------------*/
@media (min-width: 768px) {

    /* 初期状態 */
    .discussion__img picture {
        clip-path: inset(0 100% 0 0);
        transition: clip-path 1s cubic-bezier(.22, 1, .36, 1);
    }

    .discussion__body>* {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    /* 表示状態 */
    .discussion.is-show .discussion__img picture {
        clip-path: inset(0 0 0 0);
    }

    .discussion.is-show .discussion__body>* {
        opacity: 1;
        transform: translateY(0);
    }

    /* stagger */
    .discussion.is-show .discussion__tag {
        transition-delay: 0.15s;
    }

    .discussion.is-show .discussion__ttl {
        transition-delay: 0.3s;
    }

    .discussion.is-show .discussion__lead {
        transition-delay: 0.45s;
    }

    .discussion.is-show .discussion__link {
        transition-delay: 0.6s;
    }
}

/*-------------------------------------------
Index / People
-------------------------------------------*/
.people {
    padding: 80px 0 64px;
}

.people-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.people__inner {
    padding: 0 8%;
    margin: 0 auto 40px;
    max-width: 1440px;
}

.people__header {
    display: flex;
    flex-direction: column;
}

/* people-slider */

.people-slider .slider-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
}

/* slider-img */
.slider-img__catch {
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    top: 16px;
    right: 16px;
}

.slider-img__catch p {
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    background: var(--primary-gradation-vertical);
    width: fit-content;
    height: fit-content;
    writing-mode: vertical-rl;
    padding: 8px 4px;
    line-height: 1;
    z-index: 1;
}

.slider-img__catch_number {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--white);
    left: 16px;
    bottom: 8px;
    font-size: 40px;
    line-height: 1;
}

.slider-img__catch_number span {
    font-size: 24px;
}

/* slider-body */
.slider-body {
    width: 100%;
    margin-top: 8px;
    position: relative;
}

.people-slider .swiper-slide {
    width: clamp(260px, 22vw, 300px);
    /* SP〜PCでカード幅を安定させる */
    flex-shrink: 0;
}

.slider-body__position {
    padding-top: 4px;
    margin-bottom: 16px;
}

.slider-body__position-job {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.slider-body__position-name {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: var(--gray);
}

.slider-body .arrow-mark {
    position: absolute;
    right: 10px;
    top: 0;
    transition: transform 0.3s ease;
}

.slider-body__comment {
    font-size: 14px;
    line-height: 1.6;
}

/* people-page-nation */
.people-page-nation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-right: 40px;
}

.people-page-nation__prev,
.people-page-nation__next {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.people-page-nation__prev:hover,
.people-page-nation__next:hover {
    background-color: var(--primary);
}

.people-page-nation__prev img,
.people-page-nation__next img {
    display: block;
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.people-page-nation__prev:hover img,
.people-page-nation__next:hover img {
    transform: scale(1.15);
    filter: brightness(0) invert(1);
}


/* swiper-customize */

/* 表示を切る箱 */
.people-slider-clip {
    padding-left: 8%;
    padding-right: 0;
    max-width: 1440px;
    margin: 0 auto;
}

.people-slider {
    overflow: hidden;
}

.people .slider-body {
    position: relative;
}

.people .slider-img {
    overflow: hidden;
}

.people-card {
    cursor: pointer;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .people .swiper-slide:hover .slider-img img {
        transform: scale(1.08);
    }

    .people .slider-img img {
        transition: transform 0.4s ease;
    }

    .people .swiper-slide:hover .arrow-mark {
        transform: translate(8px, -8px);
        /* 右上方向への視線誘導 */
    }
}

@media(min-width:768px) {
    .people__header {
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
    }

    .people__header .sec-ttl {
        min-width: 240px;
        width: 30%;
    }

    .people__header p {
        width: 70%;
    }
}

@media(min-width:992px) {
    .people {
        padding: 160px 0 0;
    }

    .slider-img__catch p {
        font-size: 24px;
    }

    .slider-body__position-job,
    .slider-body__position-name {
        font-size: 16px;
    }
}

/*-------------------------------------------
Index / People-Animation
-------------------------------------------*/
/* 初期状態 */
.js-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
}

/*-------------------------------------------
Index / Environment
-------------------------------------------*/
.environment__inner {
    padding: 0 8% 64px;
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
}

.environment__img {
    position: relative;
    width: 80%;
    aspect-ratio: 1 / 1;
    margin: 40px auto;
    overflow: visible;
}

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

.environment__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -6%;
    bottom: -6%;
    background: var(--pale-gradation);
    transform-origin: left bottom;
    transform: rotate(-8deg);
    z-index: -1;
}

/* メディアクエリ */

@media(min-width:768px) {
    .environment__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 100px 0 100px 8%;
    }

    .environment__body {
        width: 48%
    }

    .environment__img {
        width: 42%;
        margin: 0;
    }
}

@media(min-width:992px) {
    .environment__inner {
        padding: 160px 0 160px 8%;
    }

    .environment__img {
        width: calc(100% - 520px);
        max-width: 640px;
    }

    .environment__body {
        width: 400px
    }
}

/*-------------------------------------------
Index / Environment-Animation
-------------------------------------------*/
.environment__img {
    position: relative;
    overflow: visible;
}

.environment__img-inner {
    overflow: hidden;
}

/* ★ 右 → 左 に開く */
.environment__img-inner picture {
    display: block;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 1s cubic-bezier(.22, 1, .36, 1);
}

.environment.is-show .environment__img-inner picture {
    clip-path: inset(0 0 0 0);
}

/* テキスト（Aboutと完全一致） */
.environment__body {
    opacity: 0;
    transform: translateY(24px);
}

.environment.is-show .environment__body {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

/* マーカーも流用 */
.environment.is-show .marker-ttl span::after {
    transform: scaleX(1);
}

/*-------------------------------------------
Apply
-------------------------------------------*/
.apply {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-bottom: 1px solid var(--white);
}

/* apply-ttl */
.apply-ttl {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 35, 69, 0.3);
}

.apply-ttl span[lang="ja"] {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.apply__recruit,
.apply__entry {
    position: relative;
    overflow: hidden;
}

.apply__recruit {
    background: url(../images/img_apply_recuit_bk.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.apply__entry {
    background: url(../images/img_apply_entry_bk.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat
}

.apply__inner {
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    align-items: center;
}

.apply-btn {
    background: linear-gradient(270deg, #FC5A02, #FB9B41, #FC5A02) 0 50% / 300% 100%;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1;
    padding: 20px 0;
    width: 240px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 35, 69, 0.3);
    transition:
        background-position 0.35s cubic-bezier(.22, 1, .36, 1),
        transform 0.25s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.25s cubic-bezier(.22, 1, .36, 1);
}

.apply-btn span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 16px;
}

.apply-btn span::after {
    content: "";
    display: inline-block;
    background: url(../images/icon_north_east_white.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.25s cubic-bezier(.22, 1, .36, 1);
}

/* hover */
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .apply-btn:hover {
        background-position: 100% 50%;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 35, 69, 0.35);
    }

    .apply-btn:hover span::after {
        transform: translate(4px, -4px);
    }

    .apply__recruit:hover .apply__inner,
    .apply__entry:hover .apply__inner {
        background-color: rgba(0, 0, 0, 0.32);
    }

    .apply__inner {
        transition: background-color 0.3s ease;
    }
}

@media(min-width:768px) {
    .apply {
        flex-direction: row;
    }

    .apply__inner {
        padding: 80px 0;
    }

    .apply-ttl {
        font-size: 56px;
        margin-bottom: 48px;
    }

    .apply-ttl span[lang="ja"] {
        font-size: 16px;
    }

    .apply__recruit,
    .apply__entry {
        width: 50%;
    }
}

/*-------------------------------------------
Index / Apply-Animation
-------------------------------------------*/
.apply__inner {
    opacity: 0;
    transform: translateY(24px);
}

.apply.is-show .apply__inner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.apply-ttl,
.apply-btn {
    opacity: 0;
    transform: translateY(16px);
}

/* 表示 */
.apply.is-show .apply-ttl {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.15s;
}

.apply.is-show .apply-btn {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.3s;
}

@media (min-width: 768px) {
    .apply__inner {
        transform: translateY(32px);
    }
}