@charset "UTF-8";

/* 
==========================================================================
相似形レスポンシブ縮小システム
--------------------------------------------------------------------------
【仕組み】
1. デザイン基準幅（1200px）に対し、htmlのfont-sizeを min(0.833vw, 62.5%) に設定。
2. これにより 1200px 以下の画面幅において、1rem が正確に画面比率に合わせて縮小。
3. すべてのレイアウト（width, padding, margin, font-size）を rem で指定することで、
   JavaScriptを使用せずCSSのみで、PC版を相似形のまま相似形へ縮めることが可能。

【数値換算ルール】
・デザイン（px）/ 10 = rem数 （例：120px → 12.0rem）
・1200px時：1rem = 10px / 1200px以下：1rem = 0.833vw相当

※576px〜1199pxの範囲で適用。575px以下はスマホ専用レイアウト。
==========================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&text=%E6%9C%AA%E6%9D%A5%E3%82%92%E5%89%B5%E3%82%8B%E3%80%82%E6%80%9D%E3%81%84%E5%90%88%E3%81%84%E3%80%81%E9%AB%98%E3%82%81%E5%90%88%E3%81%84%E3%80%81%E3%81%A8%E3%82%82%E3%81%AB%E5%A4%A2%E3%82%92%E7%8F%BE%E5%AE%9F%E3%81%AB%E3%80%82&display=swap');

/* デバイスごとの表示切替
-------------------------------------- */
/* PC・タブレット共通 */
@media (min-width:576px) {
    .sp:not(.pc) {
        display: none;
    }
}

/* スマホ */
@media (max-width:575px) {
    .pc:not(.sp) {
        display: none;
    }
}


/* 変数
-------------------------------------- */
:root {
    --colorText: #2f2f2f;
    --colorBrand: #e02108;
    --colorBgNeutral: #f1f1f1;
    --colorAccentRed: #eb4a34;
    --colorAccentBlue: #45aace;

    --colorWhite: #ffffff;
    --colorGray: #d9d9d9;
    --bgColorLight: #f4e9e8;
    --bgGradDecor: linear-gradient(135deg, #ffffff 0%, #efcdcd 100%);
    --colorDark: #140700;

    --lsNormal: 0em;
    --lsWideA: 0.07em;
    --lsWideB: 0.1em;

    --lhNone: 1;
    --lhTight: 1.2;
    --lhNormal: 1.5;
    --lhLoose: 1.8;
    --lhVeryLoose: 2.2;

    --fontJa: 'Noto Sans JP', sans-serif;
    --enText: 'Roboto', sans-serif;
    --weightR: 400;
    --weightM: 500;
    --weightB: 700;
    --weightBl: 900;
    --shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);

    --round: 1.6rem;
}

@media (max-width: 575px) {
    :root {
        --round: 10px;
    }
}


/* アニメーション
-------------------------------------- */
/* フェードイン表示 */
body {
    animation: fade-in 3s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 英字見出し：文字ごとの縦カラムリビール
-------------------------------------- */
.c-heading-column-reveal__word {
    display: inline-flex;
    white-space: nowrap;
}

.c-heading-column-reveal__char {
    display: inline-block;
}

.c-heading-column-reveal__space {
    display: inline-block;
    width: 0.28em;
}

.c-heading-column-reveal.is-ready .c-heading-column-reveal__char {
    opacity: 0;
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
    transform: translateY(0.18em) scaleY(0.82);
    transform-origin: 50% 100%;
    will-change: opacity, clip-path, transform;
}

.c-heading-column-reveal.is-ready.is-visible .c-heading-column-reveal__char {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    transform: translateY(0) scaleY(1);
    transition:
        opacity 260ms ease-out,
        -webkit-clip-path 760ms cubic-bezier(0.16, 1, 0.3, 1),
        clip-path 760ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay);
}

@media (prefers-reduced-motion: reduce) {
    .c-heading-column-reveal.is-ready .c-heading-column-reveal__char {
        opacity: 1;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
        transform: none;
        transition: none;
    }
}


/* 全体設定
-------------------------------------- */
html {
    overflow: auto;
    /* 1200pxのデザインベース: 10px / 1200 * 100 = 0.833vw */
    font-size: min(0.833vw, 62.5%);
}

@media (max-width: 575px) {
    html {
        font-size: 62.5%;
    }
}

body,
table,
input,
textarea,
select,
option {
    color: var(--colorText);
    font-family: var(--fontJa);
    font-size: 1.6rem;
    font-weight: var(--weightM);
    font-feature-settings: "palt";
}

body {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

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

a,
input {
    transition: all 0.3s;
}

.wrap {
    position: relative;
    overflow: clip;
}

@media (max-width: 768px) {
    .wrap {
        min-width: 320px;
    }
}

/* リンクホバー禁止 */
.can-hover a[href^="tel:"] {
    pointer-events: none;
}


/* コンテンツ部分
-------------------------------------- */
.contents {
    position: relative;
    width: calc(100% - 16.0rem);
    max-width: 124.0rem;
    margin: auto;
}

@media (max-width: 575px) {
    .contents {
        width: calc(100% - 40px);
    }
}


/* ヘッダー
-------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10.0rem;
    padding-top: 0.4rem;
    padding-left: 2.8rem;
    padding-right: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* ロゴエリア */
.header__logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.2rem;
    margin-top: -0.6rem;
    text-decoration: none;
}

.header__logo-logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    width: 16.8rem;
    height: auto;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header__logo-recruit {
    display: block;
    color: var(--colorWhite);
    font-family: var(--enText);
    font-size: 1.6rem;
    font-weight: var(--weightB);
    line-height: var(--lhNone);
    letter-spacing: var(--lsWideB);
    transition: color 0.3s ease;
}

.header__logo-corp {
    display: block;
    color: var(--colorWhite);
    font-size: 1.2rem;
    font-weight: var(--weightM);
    letter-spacing: var(--lsNormal);
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* ナビゲーションメニュー */
.header__nav {
    margin-left: auto;
    margin-right: 2.0rem;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 2.0rem;
}

.header__nav-list a {
    color: var(--colorWhite);
    font-size: 1.5rem;
    font-weight: var(--weightB);
    text-decoration: none;
    letter-spacing: var(--lsWideA);
}

.header__nav-list a.is-external {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.header__nav-list a.is-external::after {
    content: "";
    display: inline-block;
    width: 1.7rem;
    height: 1.7rem;
    background-image: url('../img/common/icon-blank-white.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header__nav-list a span {
    position: relative;
    display: inline-block;
    padding: 0 0.2rem;
    color: rgba(0, 0, 0, 0);
    line-height: 1.5;
    clip-path: inset(0 0 0 0);
}

.header__nav-list a span::before,
.header__nav-list a span::after {
    display: inline-block;
    position: absolute;
    left: 0;
    content: attr(data-hover);
    transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header__nav-list a span::before {
    top: 0;
    color: var(--colorWhite);
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header__nav-list a span::after {
    top: 100%;
    color: var(--colorWhite);
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.can-hover .header__nav-list a:hover span::before,
.can-hover .header__nav-list a:hover span::after {
    transform: translateY(-100%);
}


/* エントリーボタン */
.header__entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15.8rem;
    height: 5.7rem;
    background-image: url('../img/common/header-entry.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--colorBrand);
    font-family: var(--enText);
    font-weight: var(--weightB);
    font-size: 1.8rem;
    /* 18px / 10 = 1.8rem */
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: background-image 0.3s ease;
}

.can-hover .header__entry-btn:hover {
    background-image: url('../img/common/header-entry-hover.webp');
    color: var(--colorWhite);
}

@media (max-width: 575px) {
    .header {
        position: absolute;
        height: 70px;
        padding-top: 12px;
        padding-left: 16px;
        padding-right: 72px;
    }

    .header__inner {
        width: 100%;
    }

    .header__logo a {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .header__logo img {
        width: 120px;
    }

    .header__logo-text {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .header__logo-recruit {
        font-size: 12px;
    }

    .header__logo-corp {
        font-size: 9px;
        letter-spacing: var(--lsNormal);
        line-height: var(--lhNormal);
    }

    .header__entry-btn {
        display: none;
    }
}

/* 白背景ヘッダー（スクロール後および下層ページ用）
-------------------------------------- */
.header--white {
    background-color: var(--colorWhite);
}

.header--white .header__logo-text {
    text-shadow: none;
}

.header--white .header__logo-corp {
    color: var(--colorText);
}

.header--white .header__logo-recruit {
    color: var(--colorText);
}

.header--white .header__nav-list a span::before,
.header--white .header__nav-list a span::after {
    color: var(--colorText);
}

.header--white .header__nav-list a.is-external::after {
    background-image: url('../img/common/icon-blank.webp');
}


.header--white .header__entry-btn {
    background-image: url('../img/common/header-entry-hover.webp');
    color: var(--colorWhite);
}

.can-hover .header--white .header__entry-btn:hover {
    background-image: url('../img/common/header-entry-hover2.webp');
}


/* ==========================================================================
   スマホハンバーガーメニュー
   ========================================================================== */
.hamburger,
.global-nav {
    display: none;
}

@media (max-width: 575px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 220;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--colorBrand);
        transition: background-color 0.3s ease;
    }

    .hamburger.on {
        background-color: var(--colorWhite);
    }

    .hamburger__line {
        display: block;
        position: relative;
        width: 24px;
        height: 2px;
        background-color: var(--colorWhite);
        transition: background-color 0.3s ease;
    }

    .hamburger.on .hamburger__line {
        background-color: transparent;
    }

    .hamburger__line::before,
    .hamburger__line::after {
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: var(--colorWhite);
        content: '';
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .hamburger__line::before {
        top: -8px;
    }

    .hamburger__line::after {
        top: 8px;
    }

    .hamburger.on .hamburger__line::before,
    .hamburger.on .hamburger__line::after {
        background-color: var(--colorBrand);
    }

    .hamburger.on .hamburger__line::before {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.on .hamburger__line::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    .global-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 210;
        width: 100%;
        height: 100dvh;
        background-color: var(--colorBrand);
        color: var(--colorWhite);
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .global-nav.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    .global-nav__inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%;
        padding: 48px 20px 32px;
    }

    .global-nav__list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .global-nav__list li {
        width: 100%;
        max-width: 320px;
        border-bottom: 1px solid var(--colorWhite);
        padding-bottom: 20px;
        margin-top: 20px;
    }

    .global-nav__list li:first-child {
        margin-top: 0;
    }

    .global-nav__list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .global-nav__list a {
        display: block;
        color: var(--colorWhite);
        font-size: 18px;
        font-weight: var(--weightB);
        letter-spacing: var(--lsWideA);
        line-height: var(--lhTight);
        text-align: center;
        text-decoration: none;
    }

    .global-nav__list a.is-external {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .global-nav__list a.is-external::after {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url('../img/common/icon-blank-white.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .global-nav__cta {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }

    .global-nav__entry,
    .global-nav__line {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        height: 60px;
        margin-inline: auto;
        font-family: var(--fontJa);
        font-size: 18px;
        font-weight: var(--weightB);
        letter-spacing: var(--lsWideA);
        text-decoration: none;
    }

    .global-nav__entry {
        background-color: var(--colorWhite);
        color: var(--colorBrand);
    }

    .global-nav__line {
        background-color: #06c755;
        color: var(--colorWhite);
    }

    .global-nav__entry-icon {
        width: 23px;
        height: 24px;
    }

    .global-nav__line-icon {
        width: 32px;
        height: 30px;
    }
}


/* ==========================================================================
   固定フローティングボタン
   ========================================================================== */
.floating-button {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    width: 6.4rem;
    transform: translateY(-50%);
}

.floating-button__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    overflow: hidden;
    color: var(--colorWhite);
    font-weight: var(--weightB);
    text-decoration: none;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.floating-button__item--entry {
    height: 23.8rem;
    background-color: var(--colorBrand);
    clip-path: polygon(0 0, 100% 1.6rem, 100% 100%, 0 calc(100% - 1.6rem));
}

.floating-button__item--line {
    height: 24.0rem;
    margin-top: 0.6rem;
    background-color: #06c755;
    clip-path: polygon(0 0, 100% 1.6rem, 100% 100%, 0 calc(100% - 1.6rem));
}

.floating-button__entry-icon {
    width: 2.3rem;
    height: 2.4rem;
}

.floating-button__line-icon {
    width: 3.2rem;
    height: 3.0rem;
}

.floating-button__entry-main {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
    color: var(--colorWhite);
    font-size: 1.7rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNone);
}

.floating-button__entry-main span {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.floating-button__entry-apply {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 0.8rem;
    color: var(--colorWhite);
    font-size: 2.0rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: 1.15;
    text-align: center;
    text-orientation: upright;
    writing-mode: vertical-rl;
}

.floating-button__line-text {
    margin-top: 1.4rem;
    color: var(--colorWhite);
    font-size: 2.0rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNone);
    text-align: center;
    text-orientation: upright;
    writing-mode: vertical-rl;
}

.can-hover .floating-button__item--entry:hover {
    height: 27.0rem;
}

.can-hover .floating-button__item--line:hover {
    height: 27.0rem;
}

@media (max-width: 575px) {
    .wrap {
        padding-bottom: 50px;
    }

    .floating-button {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 130;
        flex-direction: row;
        height: 50px;
        width: 100%;
        overflow: hidden;
        background-color: transparent;
        transform: none;
    }

    .floating-button__item {
        flex: 0 0 calc(50% + 6px);
        flex-direction: row;
        gap: 0;
        width: calc(50% + 6px);
        height: 50px;
        transition: filter 0.3s ease;
    }

    .floating-button__item--entry {
        z-index: 1;
        justify-content: flex-start;
        height: 50px;
        padding-left: 23px;
        clip-path: polygon(0 0, 100% 0, calc(100% - 19px) 100%, 0 100%);
    }

    .floating-button__item--line {
        z-index: 2;
        justify-content: center;
        height: 50px;
        margin-top: 0;
        margin-left: -6px;
        padding-left: 10px;
        clip-path: polygon(19px 0, 100% 0, 100% 100%, 0 100%);
    }

    .floating-button__entry-icon {
        width: 23px;
        height: 24px;
    }

    .floating-button__line-icon {
        width: 32px;
        height: 30px;
    }

    .floating-button__entry-main {
        flex-direction: column;
        gap: 0;
        width: 70px;
        margin-left: 9px;
        margin-top: 0;
        font-size: 14px;
        line-height: 1.2;
    }

    .floating-button__entry-main span {
        writing-mode: horizontal-tb;
    }

    .floating-button__entry-apply {
        display: block;
        margin-left: 7px;
        margin-top: 0;
        padding-top: 0;
        font-size: 16px;
        writing-mode: horizontal-tb;
    }

    .floating-button__entry-apply::before {
        display: none;
    }

    .floating-button__line-text {
        margin-left: 10px;
        margin-top: 0;
        font-size: 16px;
        letter-spacing: var(--lsNormal);
        line-height: 1.4375;
        writing-mode: horizontal-tb;
    }
}


/* ==========================================================================
   共通コンポーネント: カプセル型スライドボタン
   ========================================================================== */
.c-btn-slide {
    position: relative;
    display: flex;
    align-items: center;
    width: 36.0rem;
    height: 8.0rem;
    background-color: var(--colorWhite);
    box-sizing: border-box;
    padding-left: 4.0rem;
    overflow: hidden;
    text-decoration: none;
    border-radius: 4.0rem;
    /* カプセル型の角丸を追加 */
}

.c-btn-slide__text {
    position: relative;
    z-index: 2;
    color: var(--colorBrand);
    font-family: var(--fontJa);
    font-size: 2.2rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    transition: color 0.3s ease;
}

/* ボタン右側の赤い平行四辺形アクセント */
.c-btn-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2.0rem;
    width: 9.0rem;
    height: 100%;
    background-color: var(--colorBrand);
    transform: skewX(-20deg);
    transform-origin: right top;
    transition: width 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

/* 白い矢印アイコン */
.c-btn-slide__arrow {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    border-top: 0.3rem solid var(--colorWhite);
    border-right: 0.3rem solid var(--colorWhite);
    transition: transform 0.3s ease;
}

/* ホバー時のインタラクション */
.can-hover .c-btn-slide:hover::after {
    width: calc(100% + 5.0rem);
}

.can-hover .c-btn-slide:hover .c-btn-slide__text {
    color: var(--colorWhite);
}

.can-hover .c-btn-slide:hover .c-btn-slide__arrow {
    transform: translateY(-50%) translateX(0.6rem) rotate(45deg);
}

@media (max-width: 575px) {
    .c-btn-slide {
        width: 280px;
        height: 62px;
        padding-left: 35px;
        border-radius: 40px;
    }

    .c-btn-slide__text {
        font-size: 17px;
    }

    .c-btn-slide::after {
        right: -15px;
        width: 70px;
    }

    .c-btn-slide__arrow {
        right: 30px;
        width: 15px;
        height: 15px;
        border-top: 2px solid var(--colorWhite);
        border-right: 2px solid var(--colorWhite);
    }
}


/* ==========================================================================
   共通ボトムエリア
   ========================================================================== */
.bottom-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 6.4rem;
    padding-bottom: 6.4rem;
}

.bottom-area__copy {
    margin: 16.0rem 0;
    width: 70.0rem;
    max-width: 100%;
}

.bottom-area__copy img {
    display: block;
    width: 100%;
}

.bottom-area__entry {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    height: 40.0rem;
    padding-inline: 8.0rem;
    overflow: hidden;
    background-color: var(--colorBrand);
    border-radius: var(--round);
}

.bottom-area__entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 53.8rem;
    height: 100%;
    background-image: url('../img/common/entry-bg.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.bottom-area__entry::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(95deg, #E02108 50%, #A21300 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.can-hover .bottom-area__entry:hover::after {
    opacity: 1;
}

.bottom-area__entry-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 55.4rem;
}

.bottom-area__entry-heading {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.4rem;
    width: 100%;
}

.bottom-area__entry-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19.0rem;
    height: 5.0rem;
    background-color: var(--colorWhite);
    color: var(--colorBrand);
    font-size: 2.0rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNone);
    clip-path: polygon(0 50%, 2.4rem 0, calc(100% - 2.4rem) 0, 100% 50%, calc(100% - 2.4rem) 100%, 2.4rem 100%);
}

.bottom-area__entry-en {
    color: var(--colorWhite);
    font-family: var(--enText);
    font-size: 10.0rem;
    font-weight: var(--weightB);
    line-height: var(--lhNone);
}

.bottom-area__entry-text {
    margin-top: 2.4rem;
    color: var(--colorWhite);
    font-size: 2.6rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNormal);
    text-align: right;
}

.bottom-area__privacy {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6.4rem;
    padding-right: 7.2rem;
}

.bottom-area__privacy-text {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--colorText);
    font-size: 2.5rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideA);
    line-height: 4.0rem;
}

.bottom-area__privacy-text::after {
    display: none;
}

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

.bottom-area__privacy::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.4rem;
    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;
    transform: translateY(-50%);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.can-hover .bottom-area__privacy:hover::after {
    transform: translateY(-50%) scale(1.2);
}

@media (max-width: 575px) {
    .bottom-area {
        padding-inline: 20px;
        padding-bottom: 48px;
    }

    .bottom-area__copy {
        margin: 48px 0;
        width: 300px;
    }

    .bottom-area__entry {
        height: 180px;
        padding: 38px 28px 34px;
        border-radius: 8px;
    }

    .bottom-area__entry::before {
        width: 250px;
    }

    .bottom-area__entry-content {
        width: 100%;
        height: 100%;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .bottom-area__entry-heading {
        flex-direction: row;
        justify-content: flex-end;
        gap: 14px;
        align-items: center;
    }

    .bottom-area__entry-label {
        width: 110px;
        height: 30px;
        font-size: 14px;
        clip-path: polygon(0 50%, 15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%);
    }

    .bottom-area__entry-en {
        font-size: 44px;
    }

    .bottom-area__entry-text {
        margin-top: 12px;
        font-size: 16px;
        line-height: var(--lhLoose);
        text-align: right;
    }

    .bottom-area__privacy {
        min-height: 40px;
        margin-top: 40px;
        padding-right: 56px;
    }

    .bottom-area__privacy-text {
        font-size: 18px;
        line-height: var(--lhNormal);
        gap: 6px;
    }

    .bottom-area__privacy-text::after {
        display: none;
    }

    .bottom-area__privacy::after {
        width: 40px;
        height: 40px;
    }

    .bottom-area__privacy::before {
        right: 12px;
        width: 16px;
        height: 16px;
    }
}


/* ==========================================================================
   フッター
   ========================================================================== */
.footer {
    width: 100%;
}

.footer__main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24.0rem;
    padding: 6.4rem;
    background-color: var(--colorBgNeutral);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer__brand {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 3.2rem;
    color: var(--colorText);
    text-decoration: none;
}

.footer__brand-logo {
    display: flex;
    align-items: center;
}

.footer__logo {
    width: 16.8rem;
    height: auto;
}

.footer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__recruit {
    font-family: var(--enText);
    font-size: 1.6rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWideB);
    line-height: var(--lhNone);
}

.footer__corp {
    font-size: 1.2rem;
    font-weight: var(--weightM);
    line-height: var(--lhNormal);
}

.footer__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2.0rem;
}

.footer__nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3.2rem;
}

.footer__nav-list a,
.footer__privacy {
    color: var(--colorText);
    font-size: 1.5rem;
    font-weight: var(--weightM);
    letter-spacing: var(--lsWideA);
    line-height: var(--lhNormal);
    text-decoration: none;
}

.footer__nav-list a.is-external,
.footer__privacy {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer__nav-list a.is-external::after,
.footer__privacy::after {
    content: "";
    display: inline-block;
    width: 1.7rem;
    height: 1.7rem;
    background-image: url('../img/common/icon-blank.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.can-hover .footer__nav-list a:hover,
.can-hover .footer__privacy:hover {
    color: var(--colorBrand);
}

.footer__copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.2rem;
    color: var(--colorText);
    font-family: var(--enText);
    font-size: 1.4rem;
    font-weight: var(--weightR);
    line-height: var(--lhNormal);
    text-align: center;
}

@media (max-width: 575px) {
    .footer__main {
        min-height: auto;
        padding: 48px 24px;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer__brand {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .footer__logo {
        width: 110px;
    }

    .footer__brand-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .footer__recruit {
        font-size: 12px;
    }

    .footer__corp {
        margin-top: 0;
        font-size: 9px;
        letter-spacing: 0.02em;
    }

    .footer__menu {
        align-items: flex-start;
        width: 100%;
        gap: 24px;
    }

    .footer__nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
        width: 100%;
    }

    .footer__nav-list a,
    .footer__privacy {
        font-size: 14px;
    }

    .footer__nav-list a.is-external,
    .footer__privacy {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .footer__nav-list a.is-external::after,
    .footer__privacy::after {
        width: 18px;
        height: 18px;
    }

    .footer__copyright {
        font-size: 14px;
    }
}