@charset "utf-8";

/* ------------------------------ */
/* フォント設定 */
/* ------------------------------ */
body {
    font-family: 'Noto Sans', sans-serif;
    color: #2C398B;
}

/* フォント設定 */
:root {
    --font-ja: 'Noto Sans', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    --font-ro: 'Roboto Condensed', sans-serif;
}

/* 日本語フォント */
:lang(ja) {
    font-family: var(--font-ja);
}

/* 英字フォント */
[lang="en"],
.mainV__scroll-text {
    font-family: var(--font-en);
}

.container {
    width: 84%;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 600px) {
    .container {
        width: 100%;
    }
}


.u-pc-only {
    display: block;
}

@media screen and (max-width: 600px) {
    .u-pc-only {
        display: none !important;
    }
}

.u-sp-only {
    display: none !important;
}

@media screen and (max-width: 600px) {
    .u-sp-only {
        display: flex !important;
    }
}

/* ------------------------------ */
/* ヘッダー */
/* ------------------------------ */
.header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0px;
    z-index: 100;
    background: transparent;
}

@media screen and (max-width: 600px) {
    .header {
        position: relative;
    }
}

.header__logo {
    width: 22vw;
    min-width: 220px;
    max-width: 340px;
    padding-top: 15px;
    padding-left: 30px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .header__logo {
        position: absolute;
        z-index: 101;
    }
}

.header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.header__right {
    display: flex;
    align-items: self-start;
    gap: 20px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
}

.header__entry a {
    width: 160px;
    height: 50px;
    margin-top: 14px;
    border-radius: 24px;
    background: #489656;
    color: #fff;
    font-family: var(--font-ro);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s;
}

.header__entry a:hover {
    opacity: 0.8;
}

.header__entry-text {
    display: inline-block;
    font-size: 18px;
}

.header__entry-arrow {
    width: auto;
    height: 12px;
    display: block;
    object-fit: contain;
    transform: translateX(100%);
}

.header__entry:hover {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
    .header__entry {
        display: none;
    }
}

.header__menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .header__menu-wrapper {
        gap: 0;
    }
}

.header__menu {
    width: 70px;
    height: 70px;
    background: #2C398B;
    border-radius: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
    padding: 10px;
    box-sizing: border-box;
}

.header__menu:hover {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
    .header__menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
    }
}

.header__menu-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.header__menu-line {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
}

.header__menu-text {
    font-size: 10px;
    color: #fff;
    font-family: var(--font-ro);
    letter-spacing: 0.05em;
}

.header__instagram-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.header__instagram-wrapper:hover {
    background: rgba(255, 255, 255, 0.4);
}

.header__instagram {
    width: 20px;
    height: 20px;
    display: block;
    transition: opacity 0.3s;
}

.header__instagram:hover {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
    .header__instagram-wrapper {
        display: none;
    }
}

.header__instagram img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ------------------------------ */
/* ハンバーガーメニュー */
/* ------------------------------ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 57, 139, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    overflow-y: auto;
}

.menu-overlay.is-active {
    display: block;
}

.menu-overlay__bg {
    position: absolute;
    bottom: -20px;
    right: 7%;
    width: 60%;
    height: 100%;
    background-image: url('../img/menu-bg.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

@media screen and (max-width: 600px) {
    .menu-overlay__bg {
        display: none;
    }
}

.menu-overlay__content {
    position: relative;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    margin: 40px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    background-color: #2C398B;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .menu-overlay__content {
        width: calc(100% - 60px);
        height: calc(100% - 60px);
        margin: 30px;
        overflow-y: scroll;
        padding: 0 30px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 600px) {
    .menu-overlay__content {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        margin: 20px;
        padding: 60px 20px 100px;
    }
}

.menu-overlay__close {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    font-family: var(--font-ro);
    transition: opacity 0.3s;
}

.menu-overlay__close:hover {
    opacity: 0.8;
}

@media screen and (max-width: 1200px) {
    .menu-overlay__close {
        top: 30px;
        right: 30px;
    }
}

@media screen and (max-width: 600px) {
    .menu-overlay__close {
        position: fixed;
        right: 44px;
    }
}

.menu-overlay__close-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: block;
}

.menu-overlay__close-icon::before,
.menu-overlay__close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    background-color: #fff;
    transform-origin: center;
}

.menu-overlay__close-icon::before {
    transform: translate(-50%, -50%) rotate(60deg);
}

.menu-overlay__close-icon::after {
    transform: translate(-50%, -50%) rotate(-60deg);
}

.menu-overlay__close-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #fff;
    font-family: var(--font-ro);
    font-weight: 500;
}

.menu-overlay__columns {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .menu-overlay__columns {
        flex-direction: column;
        gap: 60px;
        align-items: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .menu-overlay__columns {
        padding-top: 40px;
        margin-top: 80px;
        gap: 18px;
    }
}

/* .menu-overlay__column {
    flex: 1;
} */

@media screen and (max-width: 600px) {
    .menu-overlay__column {
        flex: 0;
    }
}

.menu-overlay__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media screen and (max-width: 600px) {
    .menu-overlay__list {
        gap: 18px;
    }
}

.menu-overlay__item {
    margin-bottom: 0;
}

.menu-overlay__link {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s;
    line-height: 1.6;
    font-family: var(--font-ja);
}

.menu-overlay__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
    .menu-overlay__link {
        font-size: 15px;
    }
}

.menu-overlay__recruit {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1200px) {
    .menu-overlay__recruit {
        margin-top: 60px;
    }
}

@media screen and (max-width: 600px) {
    .menu-overlay__recruit {
        margin-top: 18px;
    }
}

.menu-overlay__recruit-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    font-family: var(--font-ja);
}

@media screen and (max-width: 600px) {
    .menu-overlay__recruit-title {
        font-size: 18px;
    }
}

.menu-overlay__recruit-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .menu-overlay__recruit-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

.menu-overlay__recruit-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .menu-overlay__recruit-btn {
        gap: 10px;
    }
}

.menu-overlay__recruit-btn:hover {
    opacity: 0.8;
}

.menu-overlay__recruit-btn img {
    width: 30px;
    height: 30px;
    display: block;
    flex-shrink: 0;
}

@media screen and (max-width: 600px) {
    .menu-overlay__recruit-btn img {
        width: 24px;
        height: 24px;
    }
}

.menu-overlay__recruit-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    font-family: var(--font-ja);
}

@media screen and (max-width: 600px) {
    .menu-overlay__recruit-text {
        font-size: 15px;
    }
}

.menu-overlay__entry {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.menu-overlay__entry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #489656;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    transition: opacity 0.3s;
    font-family: var(--font-ja);
    width: 100%;
    max-width: 300px;
}

.menu-overlay__entry-btn:hover {
    opacity: 0.8;
}

.menu-overlay__entry-arrow {
    width: 16px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.menu-overlay__instagram {
    position: absolute;
    bottom: 60px;
    right: 80px;
    z-index: 10;
    width: 140px;
}

@media screen and (max-width: 1200px) {
    .menu-overlay__instagram {
        bottom: 40px;
        right: 40px;
    }
}

@media screen and (max-width: 600px) {
    .menu-overlay__instagram {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 40px;
    }
}

.menu-overlay__instagram-link {
    display: flex;
    align-items: center;
    width: 140px;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: var(--font-ja);
}

.menu-overlay__instagram-link:hover {
    opacity: 0.8;
}

.menu-overlay__instagram-link img {
    display: block;
    object-fit: contain;
}

/* ------------------------------ */
/* メインビジュアル */
/* ------------------------------ */
.main-bg {
    width: 100%;
    height: auto;
    background-image: url('../img/main-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

.accent-contents {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* アクセント装飾 */
.accent-star {
    position: absolute;
    background-image: url('../img/accent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
}

.accent-star.fade-out {
    opacity: 0;
}

.accent-star--01 {
    width: 10vw;
    height: 10vw;
    top: 50%;
    left: 0;
}

@media screen and (max-width: 600px) {
    .accent-star--01 {
        width: 25vw;
        height: 25vw;
        top: 50%;
        left: 0;
    }
}

.accent-star--02 {
    width: 25vw;
    height: 25vw;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -100%);
    z-index: -1;
}

.accent-star--03 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 5%;
    transform: translateY(-100%);
    z-index: -1;
}

@media screen and (max-width: 600px) {
    .accent-star--03 {
        width: 25vw;
        height: 25vw;
        top: 50%;
        right: 0;
    }
}



.mainV {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.mainV__row {
    display: flex;
    width: 100%;
    flex-shrink: 0;
}

.mainV__row--top,
.mainV__row--bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    flex: 1 1 auto;
    min-height: 0;
}

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

    .mainV__row--top,
    .mainV__row--bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mainV__item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mainV__row--top .mainV__item,
.mainV__row--bottom .mainV__item {
    height: 100%;
}

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

.mainV__row--copy {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    flex-shrink: 0;
    flex-grow: 0;
    transform: translateY(15px);
}

@media screen and (max-width: 600px) {
    .mainV__row--copy {
        transform: translateY(0px);
    }
}

/* .mainV__copy {
    max-width: 100%;
}

.mainV__copy img {
    width: 70vw;
    height: auto;
    display: block;
}

@media screen and (max-width: 600px) {
    .mainV__copy img {
        width: 90vw;
    }
} */
.mainV__copy {
    max-width: 100%;
}

.mainV__copy img,
.mainV__copy-svg {
    width: 70vw;
    height: auto;
    display: block;
}

.mainV__copy-svg svg {
    width: 100%;
    height: auto;
    display: block;
}

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

    .mainV__copy img,
    .mainV__copy-svg {
        width: 90vw;
    }
}

.mainV__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 60px;
    gap: 4px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
}

.mainV__scroll-text {
    font-size: 10px;
    font-family: var(--font-ro);
    color: #2C398B;
    font-weight: 600;
}

.mainV__scroll-arrow {
    width: 13px;
    height: 7px;
    position: relative;
    display: block;
    animation: scrollArrowMove 1.5s ease-in-out infinite;
}

@keyframes scrollArrowMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.mainV__scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #2C398B;
    border-right: 1px solid #2C398B;
    box-sizing: border-box;
}


/* メッセージ */



.message {
    position: relative;
}



.accent-star--04 {
    width: 25vw;
    height: 25vw;
    top: -10%;
    left: 30%;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .accent-star--04 {
        width: 50vw;
        height: 50vw;
        top: 30%;
        left: 5%;
    }
}

.accent-star--05 {
    width: 10vw;
    height: 10vw;
    top: 20%;
    left: 70%;
}

@media screen and (max-width: 600px) {
    .accent-star--05 {
        width: 25vw;
        height: 25vw;
        top: 50%;
        left: 80%;
    }
}

.accent-star--06 {
    width: 18vw;
    height: 18vw;
    top: 65%;
    left: 25%;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .accent-star--06 {
        width: 30vw;
        height: 30vw;
        top: 90%;
        left: 0%;
    }
}


.message__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .message__inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
    }
}

.message__left {
    width: 40%;
    flex-shrink: 0;
    transform: translate(-8%, 15%);

}

@media screen and (max-width: 600px) {
    .message__left {
        width: 100%;
        transform: none;
        margin-top: 50px;
    }
}

.message__title {
    font-size: clamp(64px, 10vw, 150px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #2C398B;
    opacity: .04;
    transform: translate(-5%, 60%);
}

@media screen and (max-width: 600px) {
    .message__title {
        font-size: 48px;
        transform: translate(-5%, 40%);
    }
}

.message__text {
    font-family: var(--font-ja);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 1em;
}

@media screen and (max-width: 600px) {
    .message__text {
        font-size: 14px;
    }
}

.message__right-copy {
    margin-top: 40px;
    width: clamp(300px, 30vw, 660px);
}

@media screen and (max-width: 600px) {
    .message__right-copy {
        margin-top: 0;
        margin: 30px 0;
    }
}

.message__right-img {
    display: flex;
    margin-top: 30px;
    justify-content: space-around;
}

@media screen and (max-width: 600px) {
    .message__right-img {
        justify-content: center;
    }
}

.message__right-img-item--01 {
    width: 18vw;
    transform: translateX(-50%);
}

@media screen and (max-width: 600px) {
    .message__right-img-item--01 {
        width: 30vw;
        transform: translateX(0);
    }
}

.message__right-img-item--02 {
    width: 35vw;
    margin-right: 5%;
}

@media screen and (max-width: 600px) {
    .message__right-img-item--02 {
        width: 50vw;
        margin-right: 0;
    }
}




/* 代表挨拶 */
.president {
    padding-top: 200px;
    position: relative;
}

.accent-star--07 {
    width: 24vw;
    height: 24vw;
    top: 0px;
    left: 50%;
}

@media screen and (max-width: 600px) {
    .accent-star--07 {
        width: 40vw;
        height: 40vw;
        top: -2%;
        left: 50%;
    }
}

@media screen and (max-width: 1200px) {
    .president {
        padding-top: 120px;
    }
}

@media screen and (max-width: 600px) {
    .president {
        padding-top: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .president .container {
        width: 96%;
    }

}

.president__content {
    display: flex;
    position: relative;
    z-index: 20;
    gap: 40px;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .president__content {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 60px 20px;
    }
}

@media screen and (max-width: 600px) {
    .president__content {
        gap: 20px;
    }
}


.president__content::before {
    content: "";
    width: 100%;
    height: 80%;
    background: #fff;
    position: absolute;
    top: 6%;
    left: 0;
    border-radius: 40px;
    z-index: -1;
}

@media screen and (max-width: 1460px) {
    .president__content::before {
        height: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .president__content::before {
        border-radius: 20px;
        height: 100%;
    }
}

@media screen and (max-width: 600px) {
    .president__content::before {
        border-radius: 15px;
        height: 100%;
        top: 0;
    }
}

.president__left {
    padding-top: 6%;
    padding-left: 50px;
}

@media screen and (max-width: 1200px) {
    .president__left {
        padding-top: 80px;
        padding-left: 30px;
    }
}

@media screen and (max-width: 600px) {
    .president__left {
        padding-top: 0px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.president__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transform: translateX(-50px);
}

@media screen and (max-width: 1200px) {
    .president__title {

        transform: translateX(-30px) translateY(20px);

    }
}

@media screen and (max-width: 600px) {
    .president__title {
        transform: translateX(-20px);
    }
}

.president__title::before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #2C398B;
}

@media screen and (max-width: 600px) {
    .president__title::before {
        width: 20px;
    }
}

.president__head {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    .president__head {
        font-size: 24px;
        margin-top: 20px;
    }
}

.president__text {
    font-size: 18px;
    line-height: 2;
    margin-top: 1em;
    font-weight: 600;
    max-width: 500px;

}

@media screen and (max-width: 1200px) {
    .president__text {
        max-width: 100%;
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .president__text {
        font-size: 14px;
        line-height: 1.8;
    }
}

.president__right {
    width: 50%;
    flex-shrink: 0;
}

@media screen and (max-width: 600px) {
    .president__right {
        width: 100%;
    }
}

.president__right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* ------------------------------ */
/* インタビューセクション */
/* ------------------------------ */
.interview {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
}

@media screen and (max-width: 600px) {
    .interview {
        padding: 60px 0;
    }
}

.interview__accent-item {
    position: absolute;
    z-index: 1;
}

.interview__accent-item--01 {
    width: 20vw;
    top: 0;
    transform: translateY(30%);
    left: 8vw;

}

@media screen and (max-width: 600px) {
    .interview__accent-item--01 {
        width: 40vw;
        top: -3%;
        left: 0%;
    }
}

.interview__accent-item--02 {
    width: 10vw;
    top: 0;
    right: 5vw;
    transform: translateY(30%);
}

@media screen and (max-width: 600px) {
    .interview__accent-item--02 {
        width: 25vw;
        top: 15%;
        right: 0%;
    }
}

.interview__top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1200px) {
    .interview__top {
        flex-direction: column;
        gap: 40px;
    }
}

@media screen and (max-width: 600px) {
    .interview__top {
        margin-bottom: 40px;
    }
}

.interview__header {
    flex: 0 0 auto;
    width: 30%;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .interview__header {
        width: 100%;
    }
}

.interview__title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.interview__title-main {
    font-size: 44px;
    font-weight: 900;
    color: #2C398B;
    line-height: 1.4;
}

@media screen and (max-width: 600px) {
    .interview__title-main {
        font-size: 24px;
    }
}

.interview__title-sub {
    font-size: 70px;
    font-weight: 900;
    color: #2C398B;
    line-height: 1.2;
}

@media screen and (max-width: 600px) {
    .interview__title-sub {
        font-size: 40px;
    }
}

.interview__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #2C398B;
    margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
    .interview__subtitle {
        font-size: 16px;
    }
}

.interview__description {
    font-size: 20px;
    font-weight: 700;
    color: #2C398B;
    line-height: 1.6;
}

@media screen and (max-width: 600px) {
    .interview__description {
        font-size: 14px;
    }
}

.interview__top-images {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    flex: 1;
}

@media screen and (max-width: 1200px) {
    .interview__top-images {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .interview__top-images {
        flex-direction: column;
        gap: 20px;
    }
}

.interview__top-images .interview__item {
    flex: 1;
}

.interview__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

@media screen and (max-width: 1200px) {
    .interview__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 600px) {
    .interview__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.interview__item {
    cursor: pointer;
    transition: transform 0.3s ease-out;
    display: flex;
    align-items: flex-end;
}

.interview__item:hover {
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.interview__photo {
    width: 100%;
}

.interview__photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* スマホ用横スクロール */
.interview__sp-scroll {
    display: none;
}

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

    .interview__top-images,
    .interview__grid {
        display: none;
    }

    .interview__sp-scroll {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding-bottom: 20px;
        margin-top: 20px;
        /* 見出しとの間隔 */
    }

    .interview__sp-scroll .interview__item {
        width: calc(50% - 7.5px);
        /* 2カラム表示（gapを考慮） */
        margin-bottom: 0;
    }
}



/* 実情セクション */

.data {
    background: #2C398B;
    padding: 160px 0;
    padding-bottom: 400px;
}

@media screen and (max-width: 1200px) {
    .data {
        padding: 120px 0;
        padding-bottom: 300px;
    }
}

@media screen and (max-width: 600px) {
    .data {
        padding: 80px 0;
        padding-bottom: 200px;
    }
}

.data__head {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    color: #fff;
    margin-bottom: 70px;
}

@media screen and (max-width: 1200px) {
    .data__head {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .data__head {
        margin-bottom: 40px;
        text-align: left;
    }
}

.data__title {
    font-weight: bold;
    font-size: 45px;
}

@media screen and (max-width: 600px) {
    .data__title {
        font-size: 28px;
    }
}

.data__description {
    font-weight: bold;
    line-height: 1.75;
}

@media screen and (max-width: 600px) {
    .data__description {
        font-size: 14px;
    }
}

.data__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

@media screen and (max-width: 1200px) {
    .data__list {
        gap: 20px;
        justify-content: space-around;
    }
}

@media screen and (max-width: 600px) {
    .data__list {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
}

.data__item--01 {
    width: 30%;
}

@media screen and (max-width: 960px) {
    .data__item--01 {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 600px) {
    .data__item--01 {
        width: 100%;
        max-width: 400px;
    }
}

.data__item--02 {
    width: 27%;
}

@media screen and (max-width: 960px) {
    .data__item--02 {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 600px) {
    .data__item--02 {
        width: 100%;
        max-width: 400px;
    }
}

.data__item--03 {
    width: 20%;
}

@media screen and (max-width: 960px) {
    .data__item--03 {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 600px) {
    .data__item--03 {
        width: 100%;
        max-width: 400px;
    }
}

.data__item--04 {
    width: 33%;
}

@media screen and (max-width: 960px) {
    .data__item--04 {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 600px) {
    .data__item--04 {
        width: 100%;
        max-width: 400px;
    }
}

.data__item--05 {
    width: 20%;
}

@media screen and (max-width: 960px) {
    .data__item--05 {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 600px) {
    .data__item--05 {
        width: 100%;
        max-width: 400px;
    }
}

.data__item--06 {
    width: 25%;
}

@media screen and (max-width: 960px) {
    .data__item--06 {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 600px) {
    .data__item--06 {
        width: 100%;
        max-width: 400px;
    }
}


.data__item-head {
    background: #49559D;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 28px;
    margin-bottom: 24px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .data__item-head {
        font-size: 16px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
}

.data__item-text {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

@media screen and (max-width: 1300px) {
    .data__item-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.data__item img {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .data__item img {
        width: 70%;
    }
}

/* 写真で見る日生化学スライダー */
.data__slide {
    margin-top: 80px;
}

@media screen and (max-width: 600px) {
    .data__slide {
        margin-top: 60px;
    }
}

.data__slide-header {
    background: #2C398B;
    padding: 40px 0;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .data__slide-header {
        padding: 30px 20px;
    }
}

.data__slide-title {
    color: #fff;
    font-weight: 700;
    margin: 0 auto;
    width: 29vw;
    margin-bottom: 0;
    font-family: var(--font-ja);
}

@media screen and (max-width: 1200px) {
    .data__slide-title {
        width: 40vw;
    }
}

@media screen and (max-width: 600px) {
    .data__slide-title {
        width: 80%;
        font-size: 24px;
        margin-bottom: 0;
    }
}

.data__slide-wrapper {
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2C398B;
}

.data__slide-tabs {
    display: flex;
    width: 100%;
    gap: 5px;
}


.data__slide-tab {
    flex: 1;
    background: #fff;
    color: #2C398B;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.3s, background-color 0.3s, color 0.3s;
    font-family: var(--font-ja);
    border-bottom: 2px solid transparent;
    border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 600px) {
    .data__slide-tab {
        padding: 12px 8px;
        font-size: 11px;
    }
}

.data__slide-tab:hover {
    opacity: 0.8;
}

.data__slide-tab--active {
    background: #489656;
    color: #fff;
    border-bottom: 2px solid #489656;
}

.data__slide-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@media screen and (max-width: 1200px) {
    .data__slide-content {
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .data__slide-content {
        padding: 0;
    }
}

.data__slide-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.data__slide-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.data__slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s;
    padding: 0;
}

.data__slide-nav:hover {
    opacity: 0.8;
}

.data__slide-nav--prev {
    left: -30px;
}

@media screen and (max-width: 1200px) {
    .data__slide-nav--prev {
        left: -25px;
    }
}

@media screen and (max-width: 600px) {
    .data__slide-nav--prev {
        left: -15px;
    }
}

.data__slide-nav--next {
    right: -30px;
}

@media screen and (max-width: 1200px) {
    .data__slide-nav--next {
        right: -25px;
    }
}

@media screen and (max-width: 600px) {
    .data__slide-nav--next {
        right: -15px;
    }
}

.data__slide-nav-arrow {
    width: auto;
    height: 60px;
    display: block;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    .data__slide-nav-arrow {
        height: 50px;
    }
}

@media screen and (max-width: 600px) {
    .data__slide-nav-arrow {
        height: 40px;
    }
}

.data__slide-nav-arrow--prev {
    transform: scaleX(-1);
}

.section-bg {
    position: relative;

}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/section-bg.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* スライダー */
.splide-wrapper {
    margin-top: -200px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 600px) {
    .splide-wrapper {
        margin-top: -150px;
    }
}

.splide__slide--01 {
    padding-top: 100px;
}

.splide__slide--03 {
    padding-bottom: 100px;
}

.splide__slide--04 {
    padding-top: 100px;
}

/* 福利厚生セクション */
.welfare {
    padding: 120px 0;
}

@media screen and (max-width: 768px) {
    .welfare {
        padding: 30px;
    }
}

@media screen and (max-width: 600px) {
    .welfare {
        padding: 60px 0;
        padding-top: 20px;
    }
}

.welfare__title {
    font-size: 44px;
    font-weight: 900;
    color: #2C398B;
    text-align: center;
    margin-bottom: 80px;
    font-family: var(--font-ja);
}

@media screen and (max-width: 600px) {
    .welfare__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.welfare__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media screen and (max-width: 768px) {
    .welfare__list {
        gap: 24px;
    }
}

@media screen and (max-width: 600px) {
    .welfare__list {
        gap: 40px;
    }
}

.welfare__item {
    display: flex;
    align-items: center;
    gap: 32px;
    border: 4px solid #2C398B;
    border-radius: 15px;
    padding: 10px 15px;
    background: #fff;
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {
    .welfare__item {
        gap: 25px;
    }
}

@media screen and (max-width: 600px) {
    .welfare__item {
        flex-direction: column;
        gap: 0px;
    }
}

.welfare__image {
    flex: 0 0 auto;
    width: 20%;
    min-width: 200px;
    max-width: 330px;
    transform: translateY(-30px);
}

@media screen and (max-width: 600px) {
    .welfare__image {
        width: 100%;
        transform: translateY(0);
        margin-bottom: 10px;
    }
}

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

.welfare__content {
    flex: 1;
    padding: 10px 0;
    padding-top: 0;
}

.welfare__item-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C398B;
    margin-bottom: 15px;
    font-family: var(--font-ja);
    line-height: 1.4;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .welfare__item-title {
        font-size: 22px;
        margin-bottom: 5px;
    }
}

.welfare__item-title span {
    font-size: 60px;
    font-weight: 700;
    margin-right: 20px;
    line-height: 1;
    transform: translateY(-4px);
    font-family: var(--font-ro);
}

@media screen and (max-width: 768px) {
    .welfare__item-title span {
        font-size: 40px;
        margin-right: 10px;
        transform: translateY(-2px);
    }
}

.welfare__item-text {
    font-size: 18px;
    font-weight: 600;
    color: #2C398B;
    line-height: 1.8;
    font-family: var(--font-ja);
}

@media screen and (max-width: 768px) {
    .welfare__item-text {
        font-size: 16px;
    }
}


/* 募集要項 */
.recruit {
    padding: 120px 0;
    background: #2C398B;
    color: #fff;
}

@media screen and (max-width: 960px) {
    .recruit {
        padding: 60px 0;
    }
}

.recruit__title {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-ja);
}

@media screen and (max-width: 600px) {
    .recruit__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

.recruit__description {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .recruit__description {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .recruit__description {
        font-size: 14px;
        text-align: left;
    }
}

.recruit__content {
    display: grid;
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.recruit__content-left {
    position: relative;
}

.recruit__content-btn {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60px;
    padding: 16px 24px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 20px;
    height: 120px;
    transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
    .recruit__content-btn {
        height: 100px;
    }
}

@media screen and (max-width: 960px) {
    .recruit__content-btn {
        height: 80px;
        padding: 10px 24px;
    }
}

.recruit__content-btn--new {
    background: #80D5CF;
}

.recruit__content-btn--mid {
    background: #FACC83;
}

.recruit__content-btn:hover {
    background: #fff;
}

.recruit__content-btn:hover .recruit__content-btn-arrow {
    background: #2C398B;
}

.recruit__content-btn:hover .recruit__content-btn-arrow img {
    filter: brightness(0) invert(1);
}

.recruit__content-btn-text {
    color: #2C398B;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-ja);
    flex: 1;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .recruit__content-btn-text {
        font-size: 20px;
    }
}

.recruit__content-btn-arrow {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .recruit__content-btn-arrow {
        width: 36px;
        height: 36px;
        padding: 5px;
    }
}

.recruit__content-btn-arrow img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(100%) saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(90%);
}

@media screen and (max-width: 600px) {
    .recruit__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recruit__content-btn {
        padding: 14px 20px;
    }

    .recruit__content-btn-text {
        font-size: 16px;
    }

    .recruit__content-btn-arrow {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
}

.recruit__content-data {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px;
    background: #fff;
    border-radius: 30px;
}

.recruit__data-item {
    width: 100%;
}

.recruit__data-title {
    color: #2C398B;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: var(--font-ja);
}

.recruit__data-description {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #171717;
    line-height: 1.8;
}

.recruit__data-details {
    background: #EDEEFA;
    padding: 30px 40px;
    border-radius: 10px;
}

.recruit__data-list {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px 40px;
}

.recruit__data-row {
    display: flex;
    align-items: baseline;
}

.recruit__data-label {
    color: #2C398B;
    font-size: 16px;
    font-weight: bold;
    min-width: 160px;
    flex-shrink: 0;
    margin-right: 20px;
}

.recruit__data-text {
    font-size: 16px;
    font-weight: 500;
    color: #171717;
}

@media screen and (max-width: 1200px) {
    .recruit__content-data {
        padding: 40px;
        gap: 50px;
    }

    .recruit__data-details {
        padding: 25px 30px;
    }
}


@media screen and (max-width: 1000px) {
    .recruit__content-data {
        padding: 24px;
        gap: 32px;
        border-radius: 20px;
    }

    .recruit__data-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .recruit__data-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .recruit__data-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recruit__data-row[data-sp-order="1"] {
        order: 1;
    }

    .recruit__data-row[data-sp-order="2"] {
        order: 2;
    }

    .recruit__data-row[data-sp-order="3"] {
        order: 3;
    }

    .recruit__data-row[data-sp-order="4"] {
        order: 4;
    }

    .recruit__data-row[data-sp-order="5"] {
        order: 5;
    }

    .recruit__data-details {
        padding: 20px;
        border-radius: 8px;
    }

    .recruit__data-label {
        min-width: 140px;
        font-size: 14px;
    }

    .recruit__data-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .recruit__content-data {
        padding: 40px 20px;
        gap: 50px;
        margin-top: 40px;
        border-radius: 15px;
    }

    .recruit__data-title {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .recruit__data-description {
        font-size: 12px;
        margin-bottom: 14px;
        line-height: 1.7;
    }

    .recruit__data-details {
        padding: 16px;
        border-radius: 8px;
    }

    .recruit__data-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .recruit__data-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .recruit__data-label {
        font-size: 13px;
        min-width: auto;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .recruit__data-text {
        font-size: 13px;
    }
}


/* フッター */
.footer {
    padding: 80px 0 40px;
    color: #2C398B;
    position: relative;
}

@media screen and (max-width: 600px) {
    .footer {
        padding: 60px 0 120px;
        background: #F5F5F0;
    }
}

/* section-bgのスタイル（共通） */
.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/footer-bg.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

/* PC版フッター */
.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (max-width: 600px) {
    .footer__content {
        display: none;
    }
}

.footer__left {
    width: 30%;
}

.footer__logo {
    width: 280px;
    margin-bottom: 40px;
}

.footer__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer__entry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #489656;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 60px;
    transition: opacity 0.3s;
    font-family: var(--font-ja);
}

.footer__entry-btn:hover {
    opacity: 0.8;
}

.footer__entry-arrow {
    width: 20px;
    height: auto;
}

.footer__instagram {
    display: block;
    width: 140px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: opacity 0.3s;
    font-family: var(--font-ja);
}

.footer__instagram:hover {
    opacity: 0.8;
}



.footer__corporate-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #2C398B;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border: 1px solid #2C398B;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: var(--font-ja);
    background: transparent;
}

.footer__corporate-btn:hover {
    background: #2C398B;
    color: #fff;
}

.footer__corporate-arrow {
    width: 16px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(90%);
}

.footer__corporate-btn:hover .footer__corporate-arrow {
    filter: brightness(0) invert(1);
}

.footer__corporate-arrow {
    transform: rotate(180deg);
}

.footer__right {
    width: 70%;
    padding-top: 20px;
}

.footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 60px;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.footer__nav-item {
    margin: 0;
    width: fit-content;
}

.footer__nav-link {
    color: #2C398B;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: var(--font-ja);
}

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

.footer__copyright {
    text-align: right;
    font-size: 12px;
    color: #2C398B;
    font-family: var(--font-ro);
    transform: translateY(-100%);
}

@media screen and (max-width: 1200px) {
    .footer__content {
        flex-direction: column;
        gap: 60px;
    }

    .footer__left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__nav-list {
        gap: 30px;
        justify-content: center;

    }

    .footer__right {
        width: 100%;
        padding-top: 0;
        align-items: center;
    }

    .footer__copyright {
        text-align: center;
        transform: translateY(0%);
    }

    .footer__nav-list {
        margin-bottom: 20px;
    }

    .footer__nav-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .footer__copyright {
        text-align: center;
        font-size: 9px;
    }
}

/* スマホ版フッター */
.footer__mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    .footer__mobile {
        display: block;
        margin-bottom: 40px;
    }
}

.footer__mobile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer__mobile-logo {
    width: 200px;
}

@media screen and (max-width: 600px) {
    .footer__mobile-logo {
        width: 100%;
        max-width: 430px;
    }
}

.footer__mobile-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer__mobile-site-title {
    font-size: 16px;
    font-weight: 700;
    color: #2C398B;
    font-family: var(--font-ja);
}

.footer__mobile-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.footer__mobile-nav {
    flex: 1;
}

.footer__mobile-nav--right {
    position: relative;
}

.footer__mobile-nav-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/accent-dots.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.footer__mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .footer__mobile-nav-list {
        gap: 40px;
    }
}

.footer__mobile-nav-item {
    margin: 0;
}



.footer__mobile-nav-link {
    color: #2C398B;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: var(--font-ja);
    display: block;
}

@media screen and (max-width: 600px) {
    .footer__mobile-nav-link {
        font-size: 13px;
    }
}

.footer__mobile-nav-link:hover {
    opacity: 0.7;
}

.footer__mobile-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    .footer__mobile-bottom {
        margin-top: 60px;
    }
}

.footer__mobile-instagram {
    width: 140px;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: var(--font-ja);
}

.footer__mobile-instagram:hover {
    opacity: 0.8;
}

.footer__mobile-instagram img {

    object-fit: contain;
}

.footer__mobile-corporate-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #2C398B;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #2C398B;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: var(--font-ja);
    background: transparent;
}

@media screen and (max-width: 600px) {
    .footer__mobile-corporate-btn {
        margin-top: 46px;
    }
}

.footer__mobile-corporate-btn:hover {
    background: #2C398B;
    color: #fff;
}

.footer__mobile-corporate-btn:hover .footer__mobile-corporate-arrow {
    filter: brightness(0) invert(1);
}

.footer__mobile-corporate-arrow {
    width: 16px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(90%);
    transform: rotate(180deg);
}

/* ------------------------------ */
/* インタビューモーダル */
/* ------------------------------ */


.welfare__accent {
    position: relative;
}

.welfare__accent-item {
    position: absolute;
    z-index: -1;

}

.welfare__accent-item--01 {
    width: 13vw;
    top: 0;
    left: 0;
    min-width: 100px;
}

@media screen and (max-width: 600px) {
    .welfare__accent-item--01 {
        width: 20vw;
        top: -3%;
        left: 0%;
    }
}

.welfare__accent-item--02 {
    width: 16vw;
    top: -10%;
    right: 15%;
    min-width: 90px;
}

.welfare__accent-item--03 {
    width: 20vw;
    right: 0;
    top: 30%;
    min-width: 120px;
}

.interview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interview-overlay.is-active {
    display: block;
    opacity: 1;
}

.interview-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1400px;
    height: 85vh;
    max-height: 800px;
    background: #fff;
    z-index: 9999;
    display: none;
    opacity: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.interview-modal.is-active {
    display: block;
    opacity: 1;
}

.interview-modal__close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    padding: 0;
    transition: transform 0.3s;
}

.interview-modal__close-btn::before,
.interview-modal__close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #2C398B;
    /* 青色 */
    transform-origin: center;
}

.interview-modal__close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.interview-modal__close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.interview-modal__close-btn:hover {
    transform: rotate(90deg);
}

.interview-modal__inner {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 左側：画像 */
.interview-modal__left {
    width: 45%;
    flex-shrink: 0;
    height: 100%;
    background: #f0f0f0;
}

.interview-modal__left img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    height: 100%;

}

/* 右側：コンテンツ */
.interview-modal__right {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    padding: 60px 50px;
    background: #fff;
    box-sizing: border-box;
}

.interview-modal__header {
    margin-bottom: 40px;
}

.interview-modal__label {
    display: block;
    font-size: 14px;
    color: #2C398B;
    font-weight: 700;
    font-family: var(--font-en);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.interview-modal__title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.interview-accordion__text-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 900px) {
    .interview-accordion__text-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.interview-modal__dept {
    background: #7CBD73;
    /* 緑色 */
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 4px;
    display: inline-block;
}

@media screen and (max-width: 1200px) {
    .interview-modal__dept {
        font-size: 16px;
        padding: 6px 20px;
    }
}

.interview-modal__name {
    font-size: 40px;
    font-weight: 900;
    color: #2C398B;
    margin: 0;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
    .interview-modal__name {
        font-size: 32px;
    }
}

.interview-modal__name-sub {
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .interview-modal__name-sub {
        font-size: 14px;
    }
}

/* アコーディオン */
.interview-modal__accordions {
    border-top: 1px solid #E5E5E5;
}

.interview-accordion {
    border-bottom: 1px solid #E5E5E5;
}

.interview-accordion__summary {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}

.interview-accordion__summary::-webkit-details-marker {
    display: none;
}

.interview-accordion__q {
    font-family: var(--font-ro);
    font-size: 26px;
    font-weight: 900;
    color: #2C398B;
    margin-right: 20px;
    line-height: 1;
}

.interview-accordion__title {
    font-size: 18px;
    font-weight: 700;
    color: #2C398B;
    flex: 1;
}

.interview-accordion__icon {
    width: 30px;
    height: 30px;
    border: 1px solid #2C398B;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-left: 10px;
}

.interview-accordion__icon::before,
.interview-accordion__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #2C398B;
    transform: translate(-50%, -50%);
}

.interview-accordion__icon::before {
    width: 14px;
    height: 2px;
}

.interview-accordion__icon::after {
    width: 2px;
    height: 14px;
    transition: transform 0.3s;
}

/* Open時のアイコン変化 */
.interview-accordion[open] .interview-accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}



.interview-accordion__content {
    padding-bottom: 30px;
    padding-left: 50px;
    /* Qの幅分ずらす */
    animation: fadeIn 0.4s ease;
}

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

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

.interview-accordion__text-wrapper {
    margin-bottom: 20px;
}

.interview-accordion__text {
    font-size: 14px;
    line-height: 1.8;
    color: #171717;
    margin-bottom: 1.5em;
    font-weight: 500;
}

.interview-accordion__text:last-child {
    margin-bottom: 0;
}

.interview-accordion__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* スマホ対応 */
@media screen and (max-width: 900px) {
    .interview-modal {
        width: 92%;
        height: 80vh;
        /* 少し小さめに */
        border-radius: 14px;
        display: none;
        /* 初期状態 */
        flex-direction: column;
        /* これ重要 */
    }

    /* is-activeになったときに上書きされないように注意 */
    .interview-modal.is-active {
        display: flex;
    }

    .interview-modal__inner {
        flex-direction: column;
        display: flex;
        overflow-y: auto;
        /* 全体をスクロール */
        height: 100%;
    }

    /* 右枠（コンテナ）を解除して中身を並列に扱う */
    .interview-modal__right {
        display: contents;
    }

    /* 順序入れ替え: 見出し(1) -> 画像(2) -> アコーディオン(3) */
    .interview-modal__header {
        order: 1;
        padding: 30px 20px 20px;
        margin-bottom: 0;
        background: #fff;
    }

    .interview-modal__left {
        order: 2;
        width: 100%;
        height: auto;
    }

    .interview-modal__left img {
        aspect-ratio: 16/9;
    }

    .interview-modal__accordions {
        order: 3;
        padding: 20px;
        background: #fff;
        padding-bottom: 60px;
        /* 下部余白 */
    }

    .interview-modal__title-wrapper {
        gap: 10px;
    }

    .interview-modal__name {
        font-size: 28px;
    }

    .interview-modal__dept {
        font-size: 14px;
        padding: 6px 16px;
    }

    .interview-accordion__summary {
        padding: 20px 0;
    }

    .interview-accordion__q {
        font-size: 20px;
        margin-right: 15px;
    }

    .interview-accordion__title {
        font-size: 16px;
    }

    .interview-accordion__content {
        padding-left: 0;
        /* インデント解除 */
    }

    .interview-accordion__text {
        font-size: 14px;
    }

    .interview-accordion__image img {
        border-radius: 8px;
    }

    .interview-modal__close-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
}

/* スマートフォン用追従エントリーボタン */
.sp-entry-fixed {
    display: none;
}

@media screen and (max-width: 600px) {
    .sp-entry-fixed {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 12px 20px;
        /* ガラスモーフィズム効果 */
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        /* 初期状態は非表示 */
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .sp-entry-fixed.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sp-entry-fixed__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #489656;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        padding: 14px 24px;
        border-radius: 50px;
        width: 72%;
        max-width: 100%;
        transition: opacity 0.3s;
        font-family: var(--font-ja);
        margin: 0 auto;
        position: relative;
    }

    .sp-entry-fixed__btn:active {
        opacity: 0.8;
    }

    .sp-entry-fixed__text {
        font-size: 16px;
        font-weight: 700;
    }

    .sp-entry-fixed__arrow {
        width: 16px;
        height: auto;
        display: block;
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
    }
}