:root {
    --color-primary-blue: #1d2087;
    --color-primary-red: #e50012;
    --color-primary-orange: #fabe00;

    --color-accent-orange: #fa4300;
    --color-accent-orange-dark: #d93700;
    --color-accent-yellow: #fabe00;
    --color-accent-yellow-dark: #e6a800;

    --color-sub-blue: #1d5487;

    --color-bg-white: #ffffff;
    --color-bg-light: #f2f2f2;
    --color-bg-soft-blue: #d2edff;
    --color-bg-soft-orange: #ffeed5;

    --color-text-white: #ffffff;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}
html[lang="ja"] {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
body {
    font-size: 1.4rem;
    background-color: var(--color-bg-white);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
img {
    display: block;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.sp_only {
    display: none;
}
.pc_only {
	display:block;
}
/********************************************************************/
header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 0 0 20px;

    & a img {
        width: 100%;
        display: block;
    }
    & .logo {
        width: 168px;
        margin-right: 30px;
    }
    & .banner {
        width: 125px;
    }
    & .entry {
        width: 333px;
        margin-left: auto;
    }
}
/***********************************/
.keyvisual {
    width: 100%;
    background-image: url(../img/mv/mv_back.webp);
    background-size: cover;
    background-position: center;
    padding: 70px 0 35px 0;
    & .inner {
        width: 100%;
        max-width: 1200px;
        position: relative;
        margin-inline: auto;
        & h2 {
            font-size: 6.2rem;
            font-weight: bold;
            color: var(--color-text-white);
            line-height: 1;
            letter-spacing: 1rem;
            text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 3;
            margin-top: 80px;
            & span {
                display: block;
            }
            & span:last-child {
                margin-top: 10px;
                margin-left: 280px;
            }
        }
        & .image_box {
            width: 520px;
            position: absolute;
            top: 50px;
            right: 0;
            & .illust {
                position: absolute;
                right: 0;
                bottom: -65px;
            }
            & .anim_img--wobble {
                display: block;
                width: 100%;
                max-width: 100%;
                height: auto;
            }
            /* 位置はそのまま */
            & .illust_fade {
                position: absolute;
                z-index: 2;
                right: 0;
                bottom: -65px;
            }

            /* 3枚を完全に重ねる */
            & .illust_fade .illust {
                position: absolute;
                right: 0;
                bottom: 0;
                display: block;
            }
        }
        & .bottom_contens {
            width: 100%;
            max-width: 1200px;
            position: relative;
            margin-top: 415px;
            & .kv_img02 {
                position: absolute;
                top: -130px;
                left: -30px;
            }
            & .kv_img03 {
                position: absolute;
                top: -160px;
                left: 230px;
            }
            & .kv_img04 {
                position: absolute;
                top: 0px;
                left: 962px;
            }
            & .kv_img05 {
                position: absolute;
                top: 310px;
                left: 40px;
            }
            & .kv_img06 {
                position: absolute;
                top: 390px;
                left: 880px;
            }
        }
        & .message_box {
            width: 100%;
            max-width: 663px;
            background-color: var(--color-bg-white);
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            border-radius: 56px;
            position: relative;
            margin: 200px auto 0 auto;
            padding: 30px;
            & h3 {
                font-size: 2.7rem;
                color: #ff6a2a;
                margin-bottom: 20px;
            }
            & h4 {
                font-size: 2.7rem;
                font-weight: bold;
                margin-bottom: 40px;
            }
            & p {
                font-size: 2.2rem;
                text-align: center;
                line-height: 1.7;
                margin-bottom: 20px;
            }
            & .kv_img07 {
                position: absolute;
                top: 40px;
                left: -118px;
            }
            & .kv_img08 {
                position: absolute;
                top: 250px;
                left: 700px;
            }
        }
    }
}
.kv_slider {
    width: 100%;
    max-width: 470px;
    aspect-ratio: 470 / 455;
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;

    & .kv_img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        will-change: opacity;
        transform: translate3d(0, 0, 0);
    }

    & .kv_img--1 {
        animation: kvFade1 30s ease-in-out infinite;
    }

    & .kv_img--2 {
        animation: kvFade2 30s ease-in-out infinite;
    }

    & .kv_img--3 {
        animation: kvFade3 30s ease-in-out infinite;
    }
}
/* ===== keyframes ===== */

@keyframes kvFade1 {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    35% {
        opacity: 0;
    }
    95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes kvFade2 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes kvFade3 {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/***********************************/
/*画像効果（index.phpから移設）*********/
/* === クロスフェード設定 === */
/* 1周 30秒（10秒ごとに画像切替・フェード2秒） */

@keyframes fade1 {
    0% {
        opacity: 1;
    }
    28% {
        opacity: 1;
    }
    33% {
        opacity: 0;
    }
    95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade2 {
    0% {
        opacity: 0;
    }
    28% {
        opacity: 0;
    }
    33% {
        opacity: 1;
    }
    61% {
        opacity: 1;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fade3 {
    0% {
        opacity: 0;
    }
    61% {
        opacity: 0;
    }
    66% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.illust--1 {
    animation: fade1 30s ease-in-out infinite;
}

.illust--2 {
    animation: fade2 30s ease-in-out infinite;
}

.illust--3 {
    animation: fade3 30s ease-in-out infinite;
}
/* ふわふわ用：GPUに乗せてカクつき減らす */
.keyvisual .kv_img02,
.keyvisual .kv_img03,
.keyvisual .kv_img04,
.keyvisual .kv_img05,
.keyvisual .kv_img06,
.keyvisual .kv_img07,
.keyvisual .kv_img08 {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 0.2s linear; /* ほんのり滑らか（不要なら消してOK） */
}

/* 動きを苦手な人向け */
@media (prefers-reduced-motion: reduce) {
    .keyvisual .kv_img02,
    .keyvisual .kv_img03,
    .keyvisual .kv_img04,
    .keyvisual .kv_img05,
    .keyvisual .kv_img06,
    .keyvisual .kv_img07,
    .keyvisual .kv_img08 {
        transition: none;
        transform: none !important;
    }
}

/* その場テクテク用：transformをCSS変数で合成 */
.officialclubpartner .partner_img03,
.officialclubpartner .partner_img04 {
    --tx: 0px;
    --ty: 0px;
    --rot: 0deg;
    transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rot));
    will-change: transform;
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
    .officialclubpartner .partner_img03,
    .officialclubpartner .partner_img04 {
        transform: none !important;
    }
}

/***********************************/
footer {
    width: 100%;
    height: 253px;
    & .inner {
        width: 100%;
        max-width: 1440px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-inline: auto;
        padding: 50px 0 20px 0;
        & .left {
            & a {
                width: 190px;
                display: block;
                margin-bottom: 20px;
                & img {
                    width: 100%;
                }
            }
            & p {
                font-size: 1.5rem;
            }
        }
        & ul {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        & li a {
            width: 50px;
            display: block;
            margin-left: 20px;
            & img {
                width: 100%;
            }
        }
    }
    & address {
        width: 100%;
        display: block;
        text-align: center;
    }
}
/***********************************/
main {
    width: 100%;
}
section {
    width: 100%;
    padding: 80px 20px;
    & .inner {
        width: 100%;
        max-width: 1140px;
        margin-inline: auto;
    }
}
/***********************************/
.heading {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.heading__en {
    font-size: 14.5rem;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.heading__jp {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}
/***********************************/
.heading_c {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.heading_c__en {
    font-size: 14.5rem;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.heading_c__jp {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}
/***********************************/
.heading_r {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.heading_r__en {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14.5rem;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 1;
}

.heading_r__jp {
    writing-mode: vertical-rl;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
/***********************************/
.common__background {
    width: 100%;
    background-image: url(../img/mv/mv_back.webp);
    background-size: cover;
    background-position: center;
}
/***********************************/
.about {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    & .heading_r {
        flex-shrink: 0;
    }
    & h2 {
        color: var(--color-primary-blue);
    }
    & .inner {
        width: 100%;
        flex: 1;
        & .slider {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
            margin-top: 50px;
        }
        & .slider_item {
            width: 367px;
            height: 402px;
            /*background-color: #d2edff;*/
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            & img {
                max-width: 100%;
            }
            & .slider_item_ttl {
                font-weight: bold;
                font-size: 3rem;
                margin-top: 15px;
            }
        }
    }
    & p {
        width: 870px;
        font-size: 2.4rem;
        line-height: 1.6;
        display: block;
        margin: 50px auto 0 auto;
    }
    /*********************/
    & .bedsChart[data-animate="donut"] .donut__seg {
        stroke-dasharray: 0 9999; /* JSで上書きするけど、念のため */
    }
    & .bedsChart {
        background: #cfe9ff;
        padding: 22px 18px;
        border-radius: 16px;
        max-width: 720px;
    }
    & .bedsChart__wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 22px;
        min-height: 260px;
    }

    & .donut {
        width: 300px;
        max-width: 52vw;
        height: auto;
        overflow: visible;
        filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.12));
    }

    & .donut__bg {
        fill: none;
        stroke: rgba(255, 255, 255, 0.55);
        stroke-width: 34;
    }

    & .donut__seg {
        fill: none;
        stroke-width: 34;
        stroke-linecap: butt;
        transform-origin: 100px 100px;
        /* JSで dash を入れるので初期は透明に */
        opacity: 1;
    }

    & .donut__seg--orange {
        stroke: #ff9448;
    }
    & .donut__seg--yellow {
        stroke: #ffd75a;
    }

    & .donut__label {
        font-size: 18px;
        font-weight: 700;
        fill: #1f3a7a;
        letter-spacing: 0.08em;
    }

    & .bedsChart__labels {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        pointer-events: none;
        padding: 10px 18px;
    }

    & .bedsChart__side {
        pointer-events: auto;
        color: #1b2f6a;
        font-weight: 700;
        text-shadow: 0 2px 0 rgba(255, 255, 255, 0.35);
    }
    & .bedsChart__ttl {
        font-size: 14px;
    }
    & .bedsChart__num {
        font-size: 34px;
        line-height: 1;
        margin-top: 4px;
    }

    /* ちょい動き（任意） */
    & .bedsChart:hover .donut {
        transform: translateY(-2px);
        transition: transform 0.25s ease;
    }

    @media (max-width: 520px) {
        & .bedsChart__wrap {
            min-height: 240px;
        }
        & .bedsChart__ttl {
            font-size: 12px;
        }
        & .bedsChart__num {
            font-size: 28px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        & .bedsChart:hover .donut {
            transform: none;
        }
    }

    /* 3色目 */
    & .donut__seg--green {
        stroke: #6fd06f;
    }

    /* 年齢分布のラベル配置 */
    & .bedsChart__labels--age {
        padding: 10px 18px;
    }

    & .bedsChart__age {
        position: absolute;
        color: #1b2f6a;
        font-weight: 700;
        text-shadow: 0 2px 0 rgba(255, 255, 255, 0.35);
    }
    & .bedsChart__age .ttl {
        font-size: 13px;
    }
    & .bedsChart__age .num {
        font-size: 32px;
        line-height: 1;
        margin-top: 4px;
    }

    & .bedsChart__age.left {
        left: 14px;
        top: 92px;
        transform: translateY(-50%);
    }
    & .bedsChart__age.right {
        right: 14px;
        top: 92px;
        transform: translateY(-50%);
        text-align: right;
    }
    & .bedsChart__age.top {
        left: 50%;
        top: 8px;
        transform: translateX(-50%);
        text-align: center;
    }

    @media (max-width: 520px) {
        & .bedsChart__age .num {
            font-size: 26px;
        }
    }

    & .barChart {
        background: #cfe9ff;
        border-radius: 16px;
        padding: 18px 14px;
        width: 100%;
        height: 86%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .barChart__inner {
        width: 100%;
        max-width: 520px;
        position: relative;
        padding-top: 52px; /* 矢印分の余白 */
    }

    & .barChart__bars {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 18px;
        padding: 10px 10px 6px;
    }

    /* 1カラム＝「数字→棒→年」を中央揃えで縦に積む */
    & .bar {
        width: 22%;
        display: flex;
        flex-direction: column;
        align-items: center; /* ★中心揃え */
        justify-content: flex-end;
        position: relative;
    }

    /* 数字（上） */
    & .bar .val {
        font-weight: 800;
        color: #111;
        font-size: 18px;
        opacity: 0;
        transform: translateY(8px);
        margin-bottom: 8px; /* ★棒との間 */
        text-align: center; /* ★中心 */
    }

    /* 棒本体 */
    & .bar .fill {
        width: 62px;
        height: 0px; /* JSで伸ばす */
        border-radius: 4px 4px 0 0;
        display: block;
    }

    /* 年（下） */
    & .bar .year {
        margin-top: 10px; /* ★棒との間 */
        font-weight: 800;
        color: #111;
        font-size: 13px;
        opacity: 0.95;
        text-align: center; /* ★中心 */
    }

    /* 矢印 */
    & .barChart__arrow {
        position: absolute;
        left: 6px;
        top: 0;
        width: 100%;
        height: 70px;
        overflow: visible;
    }

    & .arrowPath {
        stroke-dasharray: 999;
        stroke-dashoffset: 999;
    }

    & .arrowHead {
        opacity: 0;
        transform-origin: 270px 30px;
        transform: scale(0.95);
    }

    @media (max-width: 520px) {
        & .bar .fill {
            width: 52px;
        }
    }
}
/***********************************/
.facility {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
    background-image: url(../img/facility_back.webp);
    background-size: cover;
    background-position: center;
    flex-direction: row-reverse;
    position: relative;
    & h2 {
        color: var(--color-text-white);
    }
    & .inner {
        width: 100%;
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        margin-top: 50px;
        & .card {
            width: 410px;
            & h3 {
                font-size: 3rem;
                font-weight: bold;
                color: var(--color-text-white);
                text-align: center;
                margin-top: 10px;
            }
            & p {
                width: 100%;
                font-size: 2rem;
                color: var(--color-text-white);
                margin-top: 10px;
                padding: 0 20px;
            }
            & img {
                max-width: 100%;
            }
        }
    }
    & .txt {
        line-height: 1.6;
        display: block;
        margin: 50px auto 0 auto;
    }

    /******************************/

    /* 画面内に見せる帯 */
    & .facility_rail {
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    /* 横に並べるトラック */
    & .facility_track {
        display: flex;
        gap: 30px;
        will-change: transform;
        transform: translate3d(0, 0, 0);
        /* カード幅固定（縮まない） */
        & .card {
            width: 410px;
            flex: 0 0 410px;
        }
    }
}
/***********************************/
.philosopy {
    & h2 {
        color: var(--color-primary-red);
    }
    & .inner {
        width: 100%;
        max-width: 1140px;
        margin-inline: auto;
        & .philosopy_img01 {
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
        }
    }
    & .contents {
        width: 100%;
        max-width: 1024px;
        height: 185px;
        background-color: var(--color-bg-soft-orange);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 40px auto 0 auto;
        & h4 {
            font-family: "Inter", "Noto Sans JP", sans-serif;
            font-weight: bold;
            color: #1d5487;
            margin-bottom: 10px;
            & span {
                font-size: 5.5rem;
            }
        }
        & span {
            font-size: 2.5rem;
        }
        &::after {
            content: "";
            width: 100%;
            max-width: 1024px;
            height: 185px;
            background-color: #1d5487;
            border-radius: 12px;
            position: absolute;
            left: 20px;
            top: 20px;
            z-index: -1;
        }
        /* 3単語の並び（いままで通り横並び） */
        & .philo_words {
            display: flex;
            flex-wrap: wrap;
            gap: 14px; /* お好み */
            justify-content: center; /* 既存に合わせて調整 */
        }

        /* 最初は隠す */
        & .philo_words span {
            display: inline-block;
            opacity: 0;
            transform: translateY(-18px);
            filter: blur(2px);
            transition:
                opacity 0.7s ease,
                transform 0.7s ease,
                filter 0.7s ease;
        }

        /* 表示状態 */
        & .philo_words.is-show span {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* 順番（遅延） */
        & .philo_words.is-show span:nth-child(1) {
            transition-delay: 0s;
        }
        & .philo_words.is-show span:nth-child(2) {
            transition-delay: 0.18s;
        }
        & .philo_words.is-show span:nth-child(3) {
            transition-delay: 0.36s;
        }

        /* 動きを減らす設定 */
        @media (prefers-reduced-motion: reduce) {
            & .philo_words span {
                opacity: 1;
                transform: none;
                filter: none;
                transition: none;
            }
        }
    }
    & p {
        width: 870px;
        font-size: 2.4rem;
        line-height: 1.6;
        display: block;
        margin: 50px auto 0 auto;
    }
}
/***********************************/
.workenvironment {
    & .heading__en {
        font-size: 9.6rem;
        color: var(--color-text-white);
    }
    & .heading__jp {
        color: var(--color-text-white);
    }
    & .inner {
        width: 100%;
        max-width: 1140px;
        margin-inline: auto;
    }
    & .contents {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        max-width: 1200px;
        margin: 40px auto 0 auto;
        & h3 {
            font-size: 2.4rem;
            font-weight: bold;
        }
    }

    & .col {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    & .card--comment {
        grid-column: 1 / -1;
    }

    & .card--gender {
        height: 271px;
        position: relative;
        border: 5px solid var(--color-primary-blue);
        & .img01 {
            position: absolute;
            bottom: 0;
            left: 10px;
        }
        & .img02 {
            position: absolute;
            top: 80px;
            right: 20px;
        }
    }
    & .card--holiday {
        height: 402px;
        position: relative;
        border: 5px solid var(--color-primary-red);
        & .img01 {
            position: absolute;
            bottom: 0;
            left: 10px;
        }
        & .day {
            width: 100%;
            font-size: 3.5rem;
            line-height: 1;
            font-weight: bold;
            display: block;
            text-align: center;
            margin-top: 10px;
            & .num {
                font-size: 8.6rem;
                color: var(--color-primary-red);
            }
            & .small {
                font-size: 1.6rem;
                display: block;
                font-weight: normal;
                margin-top: 10px;
                text-align: right;
            }
        }
        & .txt {
            line-height: 1.7;
            position: absolute;
            left: 200px;
            top: 220px;
        }
    }
    & .card--age {
        height: 563px;
        position: relative;
        border: 5px solid var(--color-primary-red);
        & .img01 {
            position: absolute;
            top: 75px;
            right: 60px;
        }
        & .img02 {
            position: absolute;
            bottom: 0;
            left: 36px;
        }
    }
    & .card--overtime {
        height: 433px;
        position: relative;
        border: 5px solid var(--color-primary-blue);
        & .img01 {
            position: absolute;
            bottom: 0;
            right: 2px;
        }
        & .day {
            width: 100%;
            font-size: 3.5rem;
            line-height: 1;
            font-weight: bold;
            display: block;
            text-align: center;
            margin-top: 10px;
            & .num {
                font-size: 8.6rem;
                color: var(--color-primary-blue);
            }
            & .small {
                font-size: 1.6rem;
                display: block;
                font-weight: normal;
                margin-top: 10px;
                text-align: right;
            }
        }
        & .txt {
            line-height: 1.7;
            position: absolute;
            top: 290px;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    & .card--comment {
        height: 391px;
        border: 5px solid var(--color-primary-blue);
        & dl {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            margin-top: 15px;
            & dt {
                width: 124px;
            }
            & dd {
                flex: 1;
                font-size: 1.6rem;
            }
        }
        & .comment {
            width: 390px;
            height: 46px;
            font-size: 2rem;
            font-weight: bold;
            color: var(--color-text-white);
            line-height: 1;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background-color: var(--color-accent-yellow);
            padding: 10px 20px;
            border-radius: 32px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            margin-top: 10px;
            margin-left: auto;
            &:hover {
                background-color: var(--color-accent-yellow-dark);
                cursor: pointer;
            }
            &::after {
                content: "▶";
                position: absolute;
                right: 30px;
                top: 50%;
                transform: translateY(-50%);
                font-size: 1.4rem;
                transition: transform 0.3s ease;
            }
            &:hover::after {
                transform: translateY(-50%) translateX(4px);
            }
        }
    }

    & .card {
        background: #f2f2f2;
        border-radius: 20px;
        padding: 32px;
        box-sizing: border-box;
    }
}
/***********************************/
.benefits {
    & h2 {
        color: var(--color-primary-blue);
    }
    & .inner {
        width: 100%;
        max-width: 1140px;
        margin-inline: auto;
        display: grid;
        justify-content: space-evenly;
        grid-template-columns: repeat(2, 1fr);
        gap: 70px;
        margin-top: 50px;
    }
    & figure {
        padding: 5px;
        & img {
            width: 100%;
            max-width: 100%;
        }
    }
    & .card {
        & h3 {
            width: 100%;
            height: 60px;
            color: var(--color-text-white);
            font-size: 2.4rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            border-radius: 11px;
        }
        & .h3-red {
            background-color: var(--color-primary-red);
        }
        & .h3-blue {
            background-color: var(--color-primary-blue);
        }
        & p {
            font-size: 1.6rem;
            line-height: 1.7;
            padding: 20px 30px;
        }
    }
}

/***********************************/
.officialclubpartner {
    padding-bottom: 0;
    & .heading_c__en {
        font-size: 8.5rem;
        color: var(--color-primary-red);
    }
    & .heading_c__jp {
        color: var(--color-primary-red);
    }
    & h3 {
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
        margin-top: 50px;
    }
    & .inner {
        position: relative;
        padding-bottom: 100px;
        & p {
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            color: var(--color-primary-blue);
            margin-top: 60px;
        }
    }
    & .contents {
        width: 100%;
        max-width: 1140px;
        margin-inline: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: 30px;
        & figure {
            & img {
                width: 100%;
                max-width: 100%;
            }
        }
        &.left {
            width: 563px;
        }
        &.right {
            width: 560px;
        }
    }
    & .partner_img03 {
        position: absolute;
        left: -50px;
        bottom: 0;
    }
    & .partner_img04 {
        position: absolute;
        right: -50px;
        bottom: 10px;
    }
}
/***********************************/
.message {
    & .heading__en {
        color: var(--color-text-white);
    }
    & .heading__jp {
        color: var(--color-text-white);
    }
    & .contents {
        background-color: var(--color-bg-white);
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-radius: 20px;
        gap: 40px;
        padding: 30px;
        & .left {
            width: 313px;
            & img {
                width: 100%;
                margin-bottom: 10px;
            }
            & p {
                font-size: 2.4rem;
                font-weight: bold;
                text-align: center;
            }
        }
        & .right {
            flex: 1;
            & h3 {
                font-size: 3rem;
                font-weight: bold;
                margin-bottom: 20px;
            }
            & p {
                font-size: 2.4rem;
                line-height: 2;
            }
        }
    }
}
/***********************************/
.access {
    & .heading_c__en {
        color: var(--color-primary-red);
    }
    & .heading_c__jp {
        color: var(--color-primary-red);
    }
    & .contents {
        background-color: var(--color-bg-white);
        width: 100%;
        display: grid;
        justify-content: space-evenly;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
        gap: 40px;
        margin-top: 40px;
        & .shop {
            width: 550px;
            & img {
                width: 100%;
            }
            & h3 {
                width: 100%;
                height: 63px;
                color: var(--color-text-white);
                font-size: 1.8rem;
                font-weight: bold;
                text-align: left;
                line-height: 63px;
                background-color: var(--color-primary-blue);
                padding: 0 30px;
            }
            & p {
                font-size: 1.6rem;
                border: 2px solid;
                border-top: none;
                border-bottom-left-radius: 12px;
                border-bottom-right-radius: 12px;
                padding: 30px;
            }
        }
    }
    & .contents_dc {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
        & .comment {
            width: 719px;
            height: 166px;
            background-image: url(../img/access_img04.webp);
            background-size: cover;
            background-position: center;
            & p {
                font-size: 1.6rem;
                line-height: 1.7;
                padding: 15px 0 0 60px;
            }
        }
    }
}
/***********************************/
.zoom {
    padding-bottom: 0;
    background-color: var(--color-bg-soft-orange);
    & .inner {
        width: 100%;
        max-width: 1140px;
        margin-inline: auto;
        & .contents {
            width: 100%;
            height: 443px;
            background-image: url(../img/zoom_back.webp);
            background-size: cover;
            background-position: top;
            padding: 30px 0 20px 0;
            & h3 {
                font-size: 4rem;
                color: #fa4300;
                font-weight: bold;
                text-align: center;
            }
            & p {
                font-size: 1.6rem;
                line-height: 1.7;
                text-align: center;
                margin-top: 30px;
            }
            & a {
                width: 340px;
                height: 50px;
                color: var(--color-text-white);
                font-size: 2.4rem;
                background-color: #fa4300;
                display: block;
                margin: 20px auto 0 auto;
                border-radius: 25px;
                text-align: center;
                line-height: 50px;
                position: relative;
                transition: all 0.3s ease;
                &::after {
                    content: "▶";
                    position: absolute;
                    right: 30px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 1.6rem;
                    transition: transform 0.3s ease;
                }
                &:hover {
                    background-color: #d93700;
                }

                &:hover::after {
                    transform: translateY(-50%) translateX(4px);
                }
            }
        }
    }
}
/***********************************/
.contact {
    & .heading_c__en {
        color: var(--color-text-white);
    }
    & .heading_c__jp {
        color: var(--color-text-white);
    }
    & .inner {
        width: 100%;
        max-width: 830px;
        background-color: var(--color-bg-soft-orange);
        border-radius: 30px;
        margin: 50px auto 0 auto;
        padding: 60px 0;
        & .contents {
            width: 600px;
            margin-inline: auto;
            & dl {
                margin-bottom: 20px;
            }
            & .checkbox,
            & .radio {
                display: flex;
                justify-content: space-between;
                align-items: center;
                & dt {
                    width: 140px;
                }
                & dd {
                    flex: 1;
                }
            }
            & dt {
                & span {
                    font-size: 1.2rem;
                    line-height: 1;
                    margin-left: 5px;
                    font-weight: normal;
                    display: inline-block;
                    color: var(--color-text-white);
                    background-color: var(--color-primary-red);
                    border-radius: 4px;
                    padding: 4px 5px;
                }
            }
        }
        & input[type="text"],
        & input[type="email"],
        & textarea {
            width: 100%;
            border: 2px solid var(--color-primary-orange);
            background-color: var(--color-bg-white);
            margin-top: 10px;
            padding: 10px 15px;
        }
        & textarea {
            height: 150px;
        }
        & input[type="checkbox"],
        & input[type="radio"] {
            appearance: auto;
            -webkit-appearance: auto;
            -moz-appearance: auto;
            position: static;
            opacity: 1;
            width: auto;
            height: auto;
        }

        & label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-right: 24px;
            margin-bottom: 20px;
            cursor: pointer;
        }
        & label.r {
            margin-bottom: 0;
        }
        & button {
            width: 100%;
            height: 60px;
            font-size: 1.8rem;
            color: var(--color-text-white);
            line-height: 1;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background-color: var(--color-primary-blue);
            border-radius: 30px;
            transition: all 0.3s ease;
            margin-top: 40px;

            &:hover {
                opacity: 0.8;
            }
        }
    }
}
/********************************************************************/
.scroll_c {
    position: fixed;
    right: 30px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
.scroll_c.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/
@media (max-width: 1024px) {
}
/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/
@media (max-width: 450px) {
	.sp_only {
		display:block;
	}
	.pc_only {
		display:none;
	}
    /********************************************************************/
    header {
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 0 0 0 20px;

        & a img {
            width: 100%;
            display: block;
        }
        & .logo {
            width: 168px;
            margin-right: 30px;
        }
        & .banner {
            width: 125px;
        }
        & .entry {
            display: none;
            /*width: 333px;
            margin-left: auto;*/
        }
    }
    /***********************************/
    .keyvisual {
        width: 100%;
        background-image: url(../img/mv/mv_back.webp);
        padding: 40px 20px 35px 20px;
        & .inner {
            width: 100%;
            max-width: 1200px;
            position: relative;
            margin-inline: auto;
            & .site_title {
                width: 80%;
            }
            & h2 {
                width: 100%;
                font-size: 4rem;
                text-align: center;
                margin-top: 20px;
                & span:last-child {
                    margin-top: 10px;
                    margin-left: 0;
                }
            }
            & .image_box {
                width: 100%;
                top: 20px;
                margin-top: 0;
                position: relative;
                & .anim_img {
                    max-width: 100%;
                }
                & .illust {
                    width: 100px;
                    position: absolute;
                    right: 0;
                    bottom: -15px;
                }
                & .illust_fade {
                    z-index: 2;
                    right: 0;
                    bottom: -65px;
                }

                & .illust_fade .illust {
                    right: 0;
                    bottom: 0;
                    display: block;
                }
            }
            & .bottom_contens {
                position: relative;
                margin-top: 0;
                & .kv_img02 {
                    display: none;
                }
                & .kv_img03 {
                    display: none;
                }
                & .kv_img04 {
                    display: none;
                }
                & .kv_img05 {
                    display: none;
                }
                & .kv_img06 {
                    display: none;
                }
            }
            & .message_box {
                margin: 120px auto 0 auto;
                padding: 20px;
                & h3 {
                    font-size: 2rem;
                    margin-bottom: 20px;
                }
                & h4 {
                    font-size: 2rem;
                    margin-bottom: 20px;
                }
                & p {
                    font-size: 1.6rem;
                    margin-bottom: 20px;
                }
                & .kv_img07 {
                    width: 70px;
                    top: -50px;
                    left: -18px;
                }
                & .kv_img08 {
                    width: 90px;
                    top: 580px;
                    left: 262px;
                }
            }
        }
    }
    /***********************************/
    footer {
        height: auto;
        & .inner {
            width: 100%;
            padding: 20px 20px 10px 20px;
            & .left {
                & a {
                    width: 100px;
                    display: block;
                    margin-bottom: 20px;
                    & img {
                        width: 100%;
                    }
                }
                & p {
                    font-size: 1.4rem;
                }
            }
            & li a {
                width: 30px;
                display: block;
                margin-left: 10px;
                & img {
                    width: 100%;
                }
            }
        }
        & address {
            padding-bottom: 20px;
        }
    }
    /***********************************/
    section {
        padding: 40px 20px;
    }
    /***********************************/
    .heading {
        display: block;
    }

    .heading__en {
        font-size: 5rem;
        display: block;
    }

    .heading__jp {
        font-size: 2rem;
        font-weight: bold;
        display: block;
    }
    /***********************************/
    .heading_c {
        display: block;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .heading_c__en {
        font-size: 5rem;
    }

    .heading_c__jp {
        font-size: 2rem;
        font-weight: bold;
        display: block;
    }
    /***********************************/
    .heading_r {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .heading_r__en {
        font-size: 5rem;
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }

    .heading_r__jp {
        writing-mode: horizontal-tb;
        font-size: 2rem;
    }
    /***********************************/
    /***********************************/
    .about {
        display: block;
        & h2 {
            color: var(--color-primary-blue);
        }
        & .inner {
            width: 100%;
            overflow: auto;
            flex: 1;
            & .slider {
                width: 960px;
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 30px;
                margin-top: 30px;
            }
            & .slider_item {
                width: 367px;
                height: 402px;

                border-radius: 30px;
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                & img {
                    max-width: 100%;
                }
            }
        }
        & p {
            width: 100%;
            font-size: 2.4rem;
            line-height: 1.6;
            display: block;
            margin: 50px auto 0 auto;
        }
    }
    /***********************************/
    .facility {
        display: block;
        gap: 20px;
        width: 100%;
        background-image: url(../img/facility_back.webp);
        background-size: cover;
        background-position: center;
        & h2 {
            color: var(--color-text-white);
        }
        & .inner {
            width: 100%;
            flex: 1;
            display: block;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
            margin-top: 50px;
            & .card {
                width: 100%;
                margin-bottom: 20px;
                & h3 {
                    font-size: 2rem;
                    margin-top: 10px;
                }
                & p {
                    font-size: 1.6rem;
                    padding: 0 10px;
                }
            }
        }
    }
    /***********************************/
    .philosopy {
        & .inner {
            & .philosopy_img01 {
                display: flex;
                justify-content: flex-end;
                align-items: top;
            }
        }
        & .contents {
            width: 100%;
            height: 150px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            position: relative;
            margin: 30px auto 0 auto;
            & h4 {
                font-size: 3rem;
                text-align: center;
                margin-bottom: 10px;
                & span {
                    font-size: 3rem;
                }
            }
            & span {
                font-size: 2rem;
            }
            &::after {
                content: "";
                width: 100%;
                height: 150px;
                max-width: 1024px;
                left: 10px;
                top: 10px;
            }
        }
        & p {
            width: 100%;
            font-size: 1.6rem;
            line-height: 1.6;
            margin: 30px auto 0 auto;
        }
    }
    /***********************************/
    .workenvironment {
        & .heading__en {
            font-size: 4rem;
            color: var(--color-text-white);
        }
        & .heading__jp {
            color: var(--color-text-white);
        }
        & .contents {
            display: block;
            margin: 20px auto 0 auto;
            & h3 {
                font-size: 2rem;
                margin-bottom: 20px;
            }
        }
        & .col {
            display: block;
        }

        & .card--gender {
            height: auto;
            position: relative;
            border: 5px solid var(--color-primary-blue);
            margin-bottom: 20px;
            & .img01 {
                position: static;
                margin: 0 auto 20px auto;
            }
            & .img02 {
                position: static;
                width: 100%;
            }
        }
        & .card--holiday {
            height: 320px;
            position: relative;
            border: 5px solid var(--color-primary-red);
            margin-bottom: 20px;
            & .img01 {
                width: 100px;
                position: absolute;
                bottom: 0;
                left: 0;
            }
            & .day {
                font-size: 2rem;
                margin-top: 10px;
                & .num {
                    font-size: 5rem;
                    color: var(--color-primary-red);
                }
                & .small {
                    font-size: 1.6rem;
                    display: block;
                    font-weight: normal;
                    margin-top: 10px;
                    text-align: right;
                }
            }
            & .txt {
                line-height: 1.6;
                left: 90px;
                top: 160px;
            }
        }
        & .card--age {
            height: auto;
            position: relative;
            border: 5px solid var(--color-primary-red);
            margin-bottom: 20px;
            padding-bottom: 0 !important;
            & .img01 {
                max-width: 100%;
                position: static;
                margin: 0 auto 20px auto;
            }
            & .img02 {
                max-width: 100%;
                position: static;
            }
        }
        & .card--overtime {
            height: 300px;
            position: relative;
            border: 5px solid var(--color-primary-blue);
            margin-bottom: 20px;
            & .img01 {
                width: 120px;
                bottom: 0;
                right: 2px;
            }
            & .day {
                font-size: 2rem;
                margin-top: 10px;
                & .num {
                    font-size: 5rem;
                }
                & .small {
                    font-size: 1.6rem;
                    display: block;
                    font-weight: normal;
                    margin-top: 10px;
                    text-align: right;
                }
            }
            & .txt {
                line-height: 1.7;
                position: absolute;
                top: 140px;
                left: 20px;
                transform: initial;
            }
        }
        & .card--comment {
            height: auto;
            border: 5px solid var(--color-primary-blue);
            margin-bottom: 20px;
            & dl {
                display: block;
                gap: 20px;
                margin-top: 15px;
                & dt {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    flex-wrap: wrap;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 10px;
                }
            }
            & .comment {
                width: 100%;
                height: 40px;
                font-size: 2rem;
                margin-top: 30px;
                &::after {
                    content: "";
                }
            }
        }

        & .card {
            padding: 20px;
        }
    }
    /***********************************/
    .benefits {
        & h2 {
            color: var(--color-primary-blue);
        }
        & .inner {
            width: 100%;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        & figure {
            padding: 3px;
        }
        & .card {
            & h3 {
                width: 100%;
                height: 40px;
                font-size: 2rem;
            }
            & p {
                font-size: 1.6rem;
                line-height: 1.6;
                padding: 10px 0;
            }
        }
    }

    /***********************************/
    .officialclubpartner {
        padding-bottom: 0;
        & .heading_c__en {
            font-size: 5rem;
        }

        & h3 {
            font-size: 1.8rem;
            margin-top: 30px;
        }
        & .inner {
            position: relative;
            padding-bottom: 100px;
            & p {
                font-size: 1.8rem;
                margin-top: 10px;
            }
        }
        & .contents {
            margin-top: 30px;
            & figure {
                & img {
                    width: 100%;
                    max-width: 100%;
                }
            }
            &.left {
                width: 563px;
            }
            &.right {
                width: 560px;
            }
        }
        & .partner_img03 {
            width: 80px;
            left: -20px;
            bottom: 0;
        }
        & .partner_img04 {
            width: 80px;
            right: -17px;
            bottom: 10px;
        }
    }
    /***********************************/
    .message {
        & .inner {
            margin-top: 30px;
        }
        & .contents {
            width: 100%;
            display: block;
            gap: 20px;
            padding: 20px;
            & .left {
                width: 100%;
                & img {
                    width: 100%;
                    margin-bottom: 10px;
                }
                & p {
                    font-size: 2rem;
                }
            }
            & .right {
                width: 100%;
                flex: initial;
                & h3 {
                    font-size: 2.4rem;
                    margin-bottom: 10px;
                    text-align: center;
                }
                & p {
                    font-size: 1.6rem;
                    line-height: 1.7;
                }
            }
        }
    }
    /***********************************/
    .access {
        & .contents {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin-top: 20px;
            & .shop {
                width: 100%;
                & img {
                    width: 100%;
                }
                & h3 {
                    width: 100%;
                    height: 30px;
                    font-size: 1.6rem;
                    line-height: 30px;
                }
                & p {
                    font-size: 1.4rem;
                    padding: 20px;
                }
            }
        }
        & .contents_dc {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            & .comment {
                width: 100%;
                height: auto;
                background-image: none;
                & p {
                    font-size: 1.4rem;
                    line-height: 1.4;
                    padding: 15px;
                }
            }
        }
    }
    /***********************************/
    .zoom {
        padding-bottom: 40px;
        & .inner {
            & .contents {
                width: 100%;
                height: auto;
                background-image: none;
                background-color: var(--color-bg-white);
                padding: 20px;
                & h3 {
                    font-size: 2rem;
                    color: #fa4300;
                }
                & p {
                    font-size: 1.4rem;
                    margin-top: 20px;
                }
                & a {
                    width: 100%;
                    height: 40px;
                    font-size: 2rem;

                    margin: 20px auto 0 auto;
                    line-height: 40px;
                    position: relative;
                    transition: all 0.3s ease;
                    &::after {
                        content: "▶";
                        position: absolute;
                        right: 30px;
                        top: 50%;
                        transform: translateY(-50%);
                        font-size: 1.6rem;
                        transition: transform 0.3s ease;
                    }
                    &:hover {
                        background-color: #d93700;
                    }

                    &:hover::after {
                        transform: translateY(-50%) translateX(4px);
                    }
                }
            }
        }
    }
    /***********************************/
    .contact {
        & .inner {
            width: 100%;
            margin: 30px auto 0 auto;
            padding: 20px;
            & .contents {
                width: 100%;
                max-width: 600px;
                & dl {
                    margin-bottom: 20px;
                }
                & .checkbox,
                & .radio {
                    display: block;
                    justify-content: space-between;
                    align-items: center;
                    & dt {
                        width: 100%;
                        margin-bottom: 10px;
                    }
                    & dd {
                        flex: 1;
                    }
                }
                & dt {
                    & span {
                        font-size: 1.2rem;
                        line-height: 1;
                        margin-left: 5px;
                        font-weight: normal;
                        display: inline-block;
                        border-radius: 4px;
                        padding: 4px 5px;
                    }
                }
            }
            & input[type="text"],
            & input[type="email"],
            & textarea {
                max-width: 100%;
                margin-top: 10px;
                padding: 8px 10px;
            }
            & textarea {
                height: 130px;
            }
            & input[type="checkbox"],
            & input[type="radio"] {
                appearance: auto;
                -webkit-appearance: auto;
                -moz-appearance: auto;
                position: static;
                opacity: 1;
                width: auto;
                height: auto;
            }

            & label {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                margin-right: 24px;
                margin-bottom: 20px;
                cursor: pointer;
            }
            & label.r {
                margin-bottom: 0;
            }
            & button {
                width: 100%;
                height: 60px;
                font-size: 1.8rem;
                color: var(--color-text-white);
                line-height: 1;
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                background-color: var(--color-primary-blue);
                border-radius: 30px;
                transition: all 0.3s ease;
                margin-top: 40px;

                &:hover {
                    opacity: 0.8;
                }
            }
        }
    }
    /********************************************************************/
    .scroll_c {
        width: 100px;
        right: 5px;
        bottom: 0;
        & img {
            max-width: 100%;
        }
    }
}

.error_text {
    color: #d90000;
    font-size: 1.3rem;
    margin-top: 8px;
    display: block;
}
.error_input {
    border: 2px solid #d90000 !important;
    background: #fff7f7;
}
.form_error_box {
    background: #fff1f1;
    border: 1px solid #e5a4a4;
    color: #b30000;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 10px;
}
.form_error_box ul {
    margin: 0;
    padding-left: 20px;
}

.contact_modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.contact_modal.is-show {
    display: block;
}

.contact_modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contact_modal__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 520px;
    background: #fff;
    border-radius: 20px;
    padding: 38px 24px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact_modal__box h3 {
    margin: 0 0 18px;
    font-size: 2.4rem;
    color: #1d2087;
    font-weight: bold;
}

.contact_modal__box p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.9;
}

.contact_modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
}

.contact_modal__btn {
    margin-top: 24px;
    min-width: 180px;
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 24px;
    background: #1d2087;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.contact_modal__btn:hover {
    opacity: 0.85;
}

@media (max-width: 450px) {
    .contact_modal__box {
        padding: 34px 18px 22px;
        border-radius: 16px;
    }

    .contact_modal__box h3 {
        font-size: 2rem;
    }

    .contact_modal__box p {
        font-size: 1.4rem;
        line-height: 1.8;
    }
}
