@charset "UTF-8";

@property --hero-paint-reveal {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}

/* ==========================================================================
   トップページ個別スタイル：ヒーローイメージ
   ========================================================================== */

/* ヒーローコンテナ
-------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    /* Figma高さ 1447.9px / 10 = 144.8rem */
    height: 144.8rem;
    background-color: var(--colorWhite);
    overflow: hidden;
    z-index: 2;
}

@media (max-width: 575px) {
    .hero {
        height: 60.0rem;
        max-height: none;
        min-height: 0;
    }
}

/* ヘッドライン画像（制服胸元アップ）
-------------------------------------- */
.headline {
    position: relative;
    z-index: 3;
    margin-top: -43.0rem;
    margin-left: 100px;
    width: calc(100% - 100px);
    height: 60rem;
}

@media (min-width: 1340px) {
    .headline {
        margin-top: -31vw;
    }
}

.headline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

@media (max-width: 575px) {
    .headline {
        z-index: 3;
        width: 100%;
        height: 24.4rem;
        margin-top: 0;
        margin-left: 0;
        overflow: hidden;
    }
}

/* 背景写真エリア
-------------------------------------- */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__photo {
    position: absolute;
    opacity: 0;
    animation: heroPhotoIn 1.2s ease-out forwards;
    animation-delay: 1.2s;
}

.hero__photo--1 {
    top: 0;
    left: 0;
    width: 84.6rem;
    height: 71.4rem;
}

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

.hero__photo--2 {
    bottom: 38.4rem;
    right: 0;
    width: 93.6rem;
    height: 71.5rem;
}

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

@media (min-width: 1340px) {
    .hero__photo--2 {
        bottom: 28.7vw;
        width: 69.9vw;
        height: 53.4vw;
    }
}

/* スマホ用背景写真 */
@media (max-width: 575px) {
    .hero__photo--sp {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero__photo--sp img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}

/* ペイント風画像（赤ストローク）
-------------------------------------- */
.hero__paint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: scale(1.05) translate(-10px, -10px);
    animation: heroPaintIn 2.2s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.hero__paint picture,
.hero__paint img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero__paint img {
    --hero-paint-reveal: 0%;
    -webkit-mask-image: linear-gradient(to bottom left,
            #000 0%,
            #000 calc(var(--hero-paint-reveal) - 18%),
            rgba(0, 0, 0, 0.78) calc(var(--hero-paint-reveal) - 10%),
            rgba(0, 0, 0, 0) var(--hero-paint-reveal),
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom left,
            #000 0%,
            #000 calc(var(--hero-paint-reveal) - 18%),
            rgba(0, 0, 0, 0.78) calc(var(--hero-paint-reveal) - 10%),
            rgba(0, 0, 0, 0) var(--hero-paint-reveal),
            rgba(0, 0, 0, 0) 100%);
    animation: heroPaintReveal 2.2s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

/* タグライン（テキスト画像）
-------------------------------------- */
.hero__tagline {
    position: absolute;
    top: 20rem;
    left: 10.0rem;
    width: 61.8rem;
    height: 44.4rem;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTaglineIn 1.0s ease-out forwards;
    animation-delay: 1.6s;
}

.hero__tagline img {
    width: 100%;
    height: auto;
}

@media (max-width: 575px) {
    .hero__paint {
        transform: none;
    }

    .hero__paint picture,
    .hero__paint img {
        object-position: center top;
    }

    .hero__tagline {
        top: 17.3rem;
        left: 4.0rem;
        width: 26.0rem;
        height: 18.7rem;
    }

    .hero__tagline img {
        width: 100%;
        height: auto;
    }
}

/* アニメーションキーフレーム
-------------------------------------- */

/* 1. ペイント画像：右上から左下へグラデーション境界付きで表示 */
@keyframes heroPaintIn {
    0% {
        opacity: 1;
        transform: scale(1.03) translate(1.0rem, -1.0rem);
    }

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

@keyframes heroPaintReveal {
    0% {
        --hero-paint-reveal: 0%;
    }

    100% {
        --hero-paint-reveal: 145%;
    }
}

/* 2. 背景写真：フェードイン */
@keyframes heroPhotoIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 3. タグライン：フェードイン＋下からスッと浮き上がる */
@keyframes heroTaglineIn {
    0% {
        opacity: 0;
        transform: translateY(2.0rem);
    }

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





/* ==========================================================================
   ABOUT US セクション
   ========================================================================== */

.about {
    position: relative;
    width: 100%;
    height: 145.0rem;
    padding-top: 22.0rem;
    overflow: hidden;
}

.about__bg-title {
    position: absolute;
    top: 12.6rem;
    right: -3.0rem;
    z-index: 1;
    color: var(--colorBrand);
    font-family: var(--enText);
    font-size: 20.0rem;
    font-weight: var(--weightB);
    line-height: var(--lhNone);
    writing-mode: vertical-rl;
    pointer-events: none;
}

.about__decor {
    position: absolute;
    z-index: -1;
    background: var(--bgGradDecor);
    pointer-events: none;
}

.about__decor--diamond1 {
    top: 15.0rem;
    right: -30.0rem;
    width: 60.0rem;
    height: 60.0rem;
    transform: rotate(45deg);
}

.about__decor--diamond2 {
    top: 90.0rem;
    right: 20.0rem;
    width: 30.0rem;
    height: 30.0rem;
    transform: rotate(45deg);
}

.about__inner {
    position: relative;
    z-index: 3;
}

.about__photo-wrapper {
    position: absolute;
    top: 13.0rem;
    left: 0;
    z-index: 2;
    height: 129.9rem;
}

.about__photo {
    position: absolute;
}

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

.about__photo--1 {
    top: 0;
    left: 0;
    width: 65.0rem;
    height: 129.9rem;
}

.about__photo--2 {
    top: 0.3rem;
    left: 13vw;
    width: 32.0rem;
    height: 25.6rem;
    transform-origin: center center;
    transform: scale(0.8);
}

.about__photo--3 {
    top: 40.1rem;
    left: 8vw;
    width: 45.0rem;
    height: 36.0rem;
    transform-origin: center center;
    transform: scale(0.8);
}

.about__photo--4 {
    top: 90.3rem;
    left: 18vw;
    width: 38.0rem;
    height: 30.4rem;
    transform-origin: center center;
    transform: scale(0.8);
}

.about__content {
    position: absolute;
    top: -9.5rem;
    right: 14vw;
}

.about__heading {
    font-size: 5.4rem;
    font-weight: var(--weightBl);
    line-height: var(--lhNormal);
    text-align: right;
    letter-spacing: var(--lsWideA);
    white-space: nowrap;
}

.about__text-wrap {
    margin-top: 4.8rem;
}

.about__text {
    margin-bottom: 2.4rem;
    font-size: 2.0rem;
    font-weight: var(--weightB);
    line-height: var(--lhVeryLoose);
    text-align: right;
    letter-spacing: var(--lsWideA);
}

.about__text:last-child {
    margin-bottom: 0;
}

/* レスポンシブ (スマホ)
-------------------------------------- */
@media (max-width: 575px) {
    .about {
        margin-top: 64px;
        padding-top: 0;
        padding-bottom: 0;
        height: auto;
    }

    .about__bg-title {
        top: 0;
        right: -8px;
        font-size: 60px;
    }

    .about__decor--diamond1 {
        top: 70px;
        right: -138px;
        width: 276px;
        height: 276px;
    }

    .about__decor--diamond2 {
        top: 610px;
        left: 50px;
        width: 140px;
        height: 140px;
    }

    .about__inner {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 3;
        /* height: auto; */
        width: 100%;
        margin-inline: 0;
    }

    .about__content {
        position: relative;
        top: 0;
        right: 64px;
        /* width: 35.0rem; */
        /* margin-left: 2.0rem; */
        /* margin-right: auto; */
        /* padding-right: 3rem; */
    }

    .about__heading {
        font-size: 26px;
        line-height: 1.5;
        letter-spacing: var(--lsWideA);
        white-space: normal;
    }

    .about__text-wrap {
        margin-top: 25px;
    }

    .about__text {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .about__photo-wrapper {
        position: relative;
        top: auto;
        left: 0;
        z-index: 2;
        width: 100%;
        max-width: 390px;
        height: auto;
        aspect-ratio: 390 / 541;
        margin-top: 48px;
        margin-inline: auto;
    }

    .about__photo--1 {
        top: 0;
        left: 0;
        width: 69.38%;
        height: 99.94%;
    }

    .about__photo--2 {
        top: 0.02%;
        left: 7.68%;
        width: 42.64%;
        height: 24.58%;
    }

    .about__photo--3 {
        top: 30.33%;
        left: 15.3%;
        width: 59.96%;
        height: 34.58%;
    }

    .about__photo--4 {
        top: 70.79%;
        left: 49.48%;
        width: 50.51%;
        height: 29.2%;
    }
}

/* ==========================================================================
   MESSAGE セクション（社長メッセージバナー）
   ========================================================================== */
.message {
    position: relative;
    z-index: 2;
    margin-top: 8.0rem;
    width: 100%;
}

.message::before,
.message::after {
    content: "";
    position: absolute;
    display: block;
    width: 35rem;
    height: 2.0rem;
    pointer-events: none;
    z-index: 3;
}

.message::before {
    top: 12.0rem;
    left: -1.0rem;
    background: linear-gradient(90deg, #e02108 0%, #e0210800 100%);
    transform: rotate(-45deg);
    transform-origin: left center;
}

.message::after {
    right: -1.0rem;
    bottom: 12.0rem;
    background: linear-gradient(90deg, #c9c9c900 0%, #c9c9c9 100%);
    transform: rotate(-45deg);
    transform-origin: right center;
}

.message__link {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 40.0rem;
    overflow: hidden;
    text-decoration: none;
}

.message__photo-area {
    position: relative;
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.message__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.message__photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 47, 40, 0.15);
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.message__photo-text {
    position: absolute;
    top: 50%;
    right: 2.4rem;
    color: var(--colorBrand);
    font-family: var(--enText);
    font-size: 8.0rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsNormal);
    line-height: var(--lhNone);
    transform: translateY(-50%);
    pointer-events: none;
}

.message__content-area {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: var(--colorBrand);
    overflow: hidden;
}

.message__content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 3.6rem;
    padding-right: 4.0rem;
}

.message__title-wrap {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.message__en-title {
    color: var(--colorWhite);
    font-family: var(--enText);
    font-size: 8.0rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsNormal);
    line-height: var(--lhNone);
}

.message__ja-title {
    color: var(--colorWhite);
    font-family: var(--fontJa);
    font-size: 2.4rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNone);
}

.message__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -3rem;
}

.message__arrow-icon {
    display: block;
    width: 6.8rem;
    height: 6.8rem;
    border-top: 0.2rem solid var(--colorWhite);
    border-right: 0.2rem solid var(--colorWhite);
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.message__decor {
    display: none;
}

.can-hover .message__link:hover .message__img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.can-hover .message__link:hover .message__photo-overlay {
    opacity: 0;
}

.can-hover .message__link:hover .message__arrow-icon {
    transform: translateX(1rem) rotate(45deg);
}

/* レスポンシブ (スマホ) */
@media (max-width: 575px) {

    .message::before,
    .message::after {
        display: block;
        width: 150px;
        height: 10px;
        z-index: 3;
    }

    .message::before {
        top: 40px;
        left: -5px;
    }

    .message::after {
        right: -5px;
        bottom: 40px;
    }

    .message {
        overflow: visible;
    }

    .message__link {
        flex-direction: column;
        height: 370px;
    }

    .message__photo-area {
        width: 100%;
        height: 260px;
    }

    .message__photo-area picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .message__photo-text {
        bottom: 10px;
        top: auto;
        right: auto;
        left: 50%;
        font-size: 40px;
        transform: translateX(-50%);
    }

    .message__content-area {
        width: 100%;
        height: 110px;
    }

    .message__content-inner {
        display: block;
        position: relative;
        padding: 0;
    }

    .message__title-wrap {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        position: relative;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }

    .message__en-title {
        display: block;
        font-size: 40px;
    }

    .message__ja-title {
        display: block;
        font-size: 16px;
    }

    .message__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 33px;
        width: 30px;
        height: 30px;
        margin-left: 0;
    }

    .message__arrow-icon {
        width: 30px;
        height: 30px;
        border-top-width: 1px;
        border-right-width: 1px;
    }

    .message__decor {
        display: none;
    }
}

/* ==========================================================================
   STORY セクション（インサイドストーリー・スライダー）
   ========================================================================== */
.story {
    margin-top: 18.0rem;
    overflow: hidden;
}

.story__inner {
    width: 100%;
}

.story__header {
    margin-inline: auto;
    margin-bottom: 6.4rem;
}

.story__title {
    color: var(--colorBrand);
    font-family: var(--enText);
    font-size: 11.0rem;
    font-weight: var(--weightB);
    text-align: center;
    line-height: var(--lhNone);
    letter-spacing: var(--lsNormal);
}

.story__subtitle {
    margin-top: 2.4rem;
    color: var(--colorText);
    font-family: var(--fontJa);
    font-size: 3.2rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    text-align: center;
    line-height: var(--lhLoose);
}

/* スライダー */
.story__slider-wrap {
    position: relative;
    width: 100%;
}

.story__slider {
    margin: 0;
    width: 100%;
}

.story__card {
    padding: 0 2.4rem;
    box-sizing: border-box;
}

.story__card-link {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.story__card-img-wrap {
    width: 100%;
    aspect-ratio: 360 / 420;
    overflow: hidden;
}

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

.can-hover .story__card-link:hover .story__card-img-wrap img {
    transform: scale(1.05);
}

.story__card-tag {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 13.0rem;
    height: 3.5rem;
    color: var(--colorWhite);
    font-family: var(--enText);
    font-size: 2.0rem;
    font-weight: var(--weightB);
    line-height: var(--lhNone);
}

.story__card-tag::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: '';
    background-color: var(--colorBrand);
    transform: skewX(-20deg);
}

.story__card-tag--youtube::before {
    background-color: var(--colorBrand);
}

.story__card-tag--note::before {
    background-color: #3eba9f;
}

.story__card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4rem 0;
}

.story__card-date {
    margin-top: 1.6rem;
    color: var(--colorText);
    font-family: var(--enText);
    font-size: 1.6rem;
    line-height: var(--lhNone);
}

.story__card-title {
    margin-top: 1.6rem;
    color: var(--colorText);
    font-family: var(--fontJa);
    font-size: 2.0rem;
    font-weight: var(--weightB);
    line-height: var(--lhLoose);
    letter-spacing: var(--lsWideA);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story__slider .slick-prev,
.story__slider .slick-next {
    position: absolute;
    top: calc(50% - 11.0rem);
    z-index: 10;
    width: 6.0rem;
    height: 6.0rem;
    border: none;
    background-color: transparent;
    font-size: 0;
    line-height: 0;
    color: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    transform-style: preserve-3d;
}

.story__slider .slick-prev::after,
.story__slider .slick-next::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--colorBrand);
    content: '';
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.can-hover .story__slider .slick-prev:hover::after,
.can-hover .story__slider .slick-next:hover::after {
    transform: scale(1.2);
}

.story__slider .slick-prev {
    left: 6.0rem;
}

.story__slider .slick-next {
    right: 6.0rem;
}

.story__slider .slick-prev::before,
.story__slider .slick-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 1.8rem;
    height: 1.8rem;
    border-top: 0.2rem solid var(--colorWhite);
    border-right: 0.2rem solid var(--colorWhite);
    content: '';
    opacity: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.can-hover .story__slider .slick-prev:hover::before,
.can-hover .story__slider .slick-prev:focus::before,
.can-hover .story__slider .slick-next:hover::before,
.can-hover .story__slider .slick-next:focus::before {
    opacity: 1;
}

.story__slider .slick-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.story__slider .slick-next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

@media (max-width: 575px) {
    .story {
        margin-top: 64px;
    }

    .story__header {
        width: calc(100% - 40px);
        margin-bottom: 32px;
    }

    .story__title {
        font-size: 45px;
    }

    .story__card-date {
        font-size: 14px;
    }

    .story__subtitle {
        margin-top: 16px;
        font-size: 18px;
    }

    .story__card-link {
        height: auto;
    }

    .story__card-tag {
        width: 100px;
        height: 30px;
        font-size: 16px;
    }

    .story__card-body {
        padding: 16px 0;
    }

    .story__card-title {
        font-size: 16px;
        margin-top: 10px;
    }

    .story__slider .slick-prev,
    .story__slider .slick-next {
        top: calc(50% - 100px);
        width: 50px;
        height: 50px;
    }

    .story__slider .slick-prev {
        left: 15px;
    }

    .story__slider .slick-next {
        right: 15px;
    }

    .story__slider .slick-prev::before,
    .story__slider .slick-next::before {
        width: 14px;
        height: 14px;
    }
}



/* ==========================================================================
   INTERVIEW セクション
   ========================================================================== */
.interview {
    position: relative;
    z-index: 2;
    margin-top: 12.0rem;
    width: 100%;
}

.interview__header {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6.4rem;
}

.interview__tag {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 6.0rem;
    padding: 0 5.0rem;
    background-color: var(--colorBrand);
    color: var(--colorWhite);
    font-size: 2.5rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNone);
    z-index: 1;
    clip-path: polygon(0 50%, 3.0rem 0, calc(100% - 3.0rem) 0, 100% 50%, calc(100% - 3.0rem) 100%, 3.0rem 100%);
}

.interview__title {
    margin-top: 2.4rem;
    color: var(--colorBrand);
    font-family: var(--enText);
    font-size: 11.0rem;
    font-weight: var(--weightB);
    text-align: center;
    line-height: var(--lhNone);
    letter-spacing: var(--lsNormal);
}

.interview__banner-wrap {
    position: relative;
    width: 100%;
    margin-top: -12.0rem;
    z-index: 1;
    overflow: visible;
}

.interview__banner-wrap::before,
.interview__banner-wrap::after {
    content: "";
    position: absolute;
    display: block;
    width: 35rem;
    height: 2.0rem;
    z-index: 3;
}

.interview__banner-wrap::before {
    top: 12.0rem;
    left: -1.0rem;
    background: linear-gradient(90deg, #e02108 0%, #e0210800 100%);
    transform: rotate(-45deg);
    transform-origin: left center;
}

.interview__banner-wrap::after {
    right: -1.0rem;
    bottom: 12.0rem;
    background: linear-gradient(90deg, #c9c9c900 0%, #c9c9c9 100%);
    transform: rotate(-45deg);
    transform-origin: right center;
}

.interview__banner {
    position: relative;
    width: 100%;
    height: 75.0rem;
}

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

.interview__btn {
    position: absolute;
    bottom: 8.0rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

@media (max-width: 575px) {
    .interview {
        margin-top: 48px;
    }

    .interview__banner-wrap {
        margin-top: -55px;
    }

    .interview__banner-wrap::before,
    .interview__banner-wrap::after {
        display: block;
        width: 150px;
        height: 10px;
        z-index: 3;
    }

    .interview__banner-wrap::before {
        top: 40px;
        left: -5px;
    }

    .interview__banner-wrap::after {
        right: -5px;
        bottom: 40px;
    }

    .interview__header {
        margin-bottom: 32px;
    }

    .interview__tag {
        height: 32px;
        padding: 0 30px;
        font-size: 14px;
        clip-path: polygon(0 50%, 16px 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 16px 100%);
    }

    .interview__title {
        font-size: 45px;
        margin-top: 10px;
    }

    .interview__banner {
        height: 320px;
    }

    .interview__btn {
        bottom: 30px;
    }
}

/* ==========================================================================
   BUSINESS & ENVIRONMENT セクション
   ========================================================================== */
.business-env {
    position: relative;
    z-index: 4;
    margin-top: 6.4rem;
    padding-inline: 6.4rem;
}

.business-env__inner {
    display: flex;
    gap: 6.4rem;
}

.business-env__card {
    display: block;
    width: calc(50% - 3.2rem);
    text-decoration: none;
}

.business-env__img-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 42.0rem;
    border-radius: var(--round);
}

.business-env__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.business-env__body {
    margin-top: 3.2rem;
}

.business-env__info {
    display: flex;
    flex-direction: column;
}

.business-env__title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.business-env__en {
    color: var(--colorBrand);
    font-family: var(--enText);
    font-size: 6.2rem;
    font-weight: var(--weightB);
    line-height: var(--lhNone);
}

.business-env__ja {
    margin-top: 0.8rem;
    font-size: 2.5rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: 1.2;
}

.business-env__btn {
    position: relative;
    width: 6.0rem;
    height: 6.0rem;
}

.business-env__btn::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--colorBrand);
    content: '';
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.business-env__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    border-top: 0.2rem solid var(--colorWhite);
    border-right: 0.2rem solid var(--colorWhite);
    content: '';
    opacity: 1;
    transform: translate(-70%, -50%) rotate(45deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.can-hover .business-env__card:hover .business-env__img {
    transform: scale(1.05);
}

.can-hover .business-env__card:hover .business-env__btn::after {
    transform: scale(1.2);
}

@media (max-width: 575px) {
    .business-env {
        margin-top: 48px;
        padding-inline: 20px;
    }

    .business-env__inner {
        flex-direction: column;
        gap: 40px;
    }

    .business-env__card {
        width: 100%;
    }

    .business-env__img-wrap {
        height: 240px;
    }

    .business-env__body {
        margin-top: 15px;
    }

    .business-env__title-row {
        align-items: flex-start;
    }

    .business-env__en {
        font-size: 36px;
    }

    .business-env__ja {
        margin-top: -8px;
        font-size: 18px;
    }

    .business-env__btn {
        width: 50px;
        height: 50px;
    }

    .business-env__arrow {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================================================
   RECRUIT セクション
   ========================================================================== */
.recruit {
    margin-top: 8.0rem;
    padding-inline: 6.4rem;
}

.recruit__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8.0rem;
    padding: 7.0rem 8.0rem;
    background-color: var(--colorBgNeutral);
    border-radius: var(--round);
}

.recruit__header {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 28.4rem;
    margin-left: 4.0vw;
}

.recruit__en {
    color: var(--colorBrand);
    font-family: var(--enText);
    font-size: 7.5rem;
    font-weight: var(--weightB);
    line-height: var(--lhNone);
}

.recruit__ja {
    margin-top: 2.4rem;
    font-size: 2.8rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNone);
}

.recruit__body {
    width: 100%;
    max-width: 70.0rem;
    margin-left: auto;
}

.recruit__list {
    list-style: none;
}

.recruit__item {
    border-top: 0.1rem solid var(--colorGray);
}

.recruit__item:first-child {
    border-top: none;
}

.recruit__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.6rem 2.4rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.recruit__text {
    font-size: 2.5rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
}

.recruit__link.is-external .recruit__text {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.recruit__link.is-external .recruit__text::after {
    display: none;
}

.recruit__link.is-external .recruit__arrow {
    display: none;
}

.recruit__link.is-external .recruit__btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 2.0rem;
    height: 2.0rem;
    background-image: url('../img/common/icon-blank-white.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    transform: translate(-50%, -50%);
}

.recruit__btn {
    position: relative;
    width: 4.8rem;
    height: 4.8rem;
}

.recruit__btn::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--colorBrand);
    content: '';
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.recruit__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    border-top: 0.2rem solid var(--colorWhite);
    border-right: 0.2rem solid var(--colorWhite);
    content: '';
    opacity: 1;
    transform: translate(-70%, -50%) rotate(45deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.can-hover .recruit__link:hover .recruit__btn::after {
    transform: scale(1.2);
}

@media (max-width: 575px) {
    .recruit {
        margin-top: 64px;
        padding-inline: 20px;
    }

    .recruit__inner {
        flex-direction: column;
        gap: 20px;
        padding: 40px 24px 24px;
    }

    .recruit__header {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .recruit__en {
        font-size: 44px;
    }

    .recruit__ja {
        margin-top: 12px;
        font-size: 18px;
    }

    .recruit__body {
        width: 100%;
        margin-left: 0;
    }

    .recruit__link {
        padding: 20px 12px;
    }

    .recruit__text {
        font-size: 18px;
    }

    .recruit__link.is-external .recruit__text {
        gap: 6px;
    }

    .recruit__link.is-external .recruit__text::after {
        display: none;
    }

    .recruit__link.is-external .recruit__btn::before {
        width: 16px;
        height: 16px;
    }

    .recruit__btn {
        width: 40px;
        height: 40px;
    }

    .recruit__arrow {
        width: 12px;
        height: 12px;
    }
}