:root {
    --pink-bg: #f67280;
    /* 数字セクション背景 */
    --text-pink: #f67280;
    --text-emerald: #24c3b4;
    --text-orange: #f39800;
}

html {
    /* ページ全体のスクロールをスムーズにする */
    scroll-behavior: smooth;
}

body.new_page {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background: #F4F1E5;
    color: #141414;
}

img {
    vertical-align: bottom;
}

.pc_on {
    display: block;
}

.sp_on {
    display: none;
}

/* ヘッダー */
.header-container {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    justify-content: space-between;
}

.header-container .logo img {
    width: 103px;
    height: auto;
}

.header-link-cover {
    display: flex;
    gap: 20px;
}

.header-link {
    line-height: 56px;
}

.header-link a {
    display: block;
    width: 192px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
    transition: 0.6s;
    transition: 0.6s ease-in-out;
}

.header-link a:hover {
    opacity: 0.6;
	color: #fff;
}

a.new-recruit-btn {
    background: #0BC1AB;
}

a.halfway-recruit-btn {
    background: #FB6868;
}

.mv-container img {
    width: 100%;
    height: auto;
}

/* セクション全体の背景と角丸 */
.member-slider-section {
    background-color: #FAA55A;
    /* オレンジ背景 */
    padding: 160px 0;
    margin: 0;
    border-radius: 64px 64px 0 0;
    /* 画像のような大きな角丸 */
    overflow: hidden;
    font-family: 'Noto Sans JP', sans-serif;
}

.slider-container {
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* タイトルスタイル */
.slider-header {
    color: #fff;
    /* margin-bottom: 30px;
    padding: 0 40px; */
    width: 1280px;
    margin: 0 auto 30px;
    max-width: calc(100% - 80px);

}

.en-title {
    font-size: 26px;
    font-weight: bold;
    display: block;
    line-height: 26px;
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
}

.en-title span {
background: #fff;
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    left: 0;
}
.en-title span.black {
    background: #141414;
}
.jp-title {
    font-size: 48px;
    margin: 5px 0 0 0;
    font-weight: 600;
    line-height: 1.2;
}

/* スライダーの横並び設定 */
.slider-wrapper {
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
    width: 10000px;
    will-change: transform;
    transition: none;
}

/* カードの基本設定 */
.member-card {
    position: relative;
    flex-shrink: 0;
    /* 幅を固定 */
    border-radius: 24px;
    overflow: hidden;
    background-color: #eee;
    flex: 0 0 300px;
    box-sizing: border-box;
    backface-visibility: hidden;
}

/* 通常のカード */
.member-card {
    width: 300px;
    height: 400px;
}

.member-card a:hover img {
    opacity: 0.8;
}

.member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

/* 職種タグ */
.tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 11px 12px;
    border-radius: 12px;
    line-height: 42px;
    line-height: 20px;
}
.tag > span {
    display: block;
    font-size: 0.8em;
    margin-bottom: 5px;
}
.tag-emerald {
    background-color: #0BC1AB;
}

.tag-blue {
    background-color: #0CA3E4;
}

.tag-pink {
    background-color: #FB6868;
}

/* 矢印ボタン */
.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin-top: 76px;
    z-index: 10;
    position: relative;
    margin-right: 80px;
}

.arrow-btn {
    width: 56px;
    height: 56px;
    background-color: #141414;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: opacity 0.3s;
        font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
}

.arrow-btn:hover {
    opacity: 0.7;
}





.container {
    width: 1280px;
    margin: 0 auto;
    max-width: calc(100% - 80px);
}

/* --- 数字で見るセクション --- */
.sec-data {
    background: #FB7676;
    padding: 160px 0;
    color: #fff;
}

.sec-header {
    margin-bottom: 50px;
}

.en-tag {
    font-size: 14px;
    font-weight: bold;
}

.sec-title {
    font-size: 28px;
    margin: 5px 0 0 0;
}

/* グループの区切り線 */
.data-group {
    margin-bottom: 80px;
}

.data-group:last-child {
    margin-bottom: 0;
}

.group-label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: bold;
}

.group-label::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

.group-label span {
    font-size: 24px;
    font-weight: 600;
    margin-right: 30px;
}

/* カードレイアウト */
.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.data-card {
    background: #fff;
    border-radius: 24px;
    text-align: center;
    color: #141414;
    position: relative;
}

.data-card img {
    width: 100%;
    vertical-align: bottom;
}

.data-card h3 {
    font-size: 32px;
    margin: 0;
    font-weight: bold;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 30px;
}

.data-card .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.data-card .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    color: var(--text-pink);
    line-height: 1;
}

.data-card .num span {
    font-size: 14px;
    margin-left: 4px;
    font-family: 'Noto Sans JP', sans-serif;
}

/* 職種ごとの数値の色分け */
.num.emerald {
    color: var(--text-emerald);
}

.num.orange {
    color: var(--text-orange);
}

/* もっと見るボタン */
.btn-area {
    text-align: center;
    margin-top: 30px;
}

.btn-more-down {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 20px;
    position: relative;
    padding-right: 45px;
}

.btn-more-down::after {
    content: "∨";
    position: absolute;
    right: 15px;
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* 簡易グラフ表示 */
.graph-box {
    text-align: left;
    margin-top: 10px;
}

.bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
}

.bar-row .label {
    width: 50px;
}

.bar-row .val {
    width: 40px;
    text-align: right;
    font-weight: bold;
}

.bar-wrap {
    flex-grow: 1;
    height: 8px;
    background: #eee;
    margin: 0 8px;
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: var(--text-emerald);
}

/* --- Career Timeline --- */
.sec-career {
    background: #0BC1AB;
    padding: 160px 0 80px;
}

.sec-career .sec-header {
    color: #fff;
}

.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dashed rgba(255, 255, 255, 0.7);
}

.t-node {
    position: relative;
    margin-bottom: 40px;
}

.t-circle {
    position: absolute;
    left: -60px;
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.t-box {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
}

.t-label {
    background: #eee;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
}

.t-box h3 {
    color: var(--emerald);
    font-size: 18px;
    margin: 0 0 10px;
}

.sec-promotions {
    background: #0BC1AB;
    padding-bottom: 160px;
    border-radius: 0 0 64px 64px;
}

.promotions-h {
    position: absolute;
    margin: 0;
    top: 30px;
    left: 40px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0;
    color: #141414;
    padding-left: 22px;
}

.promotions-h span {
background: #141414;
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    left: 0;
}

.promotions-img {
    position: relative;
}

.promotions-img img {
    width: 100%;
}

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

.sec-header {
    margin-bottom: 50px;
}

.en-tag {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* 2カラムレイアウト */
.welfare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* PC時は2列 */
    column-gap: 40px;
    row-gap: 40px;
    margin: 70px 40px 0;
}

.welfare-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border-top: 2px solid rgba(20, 20, 20, 0.12);
    padding-top: 30px;
    align-items: center;

}

.welfare-item:nth-child(5),
.welfare-item:nth-child(6) {
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(20, 20, 20, 0.12);
}

.w-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin: 17px 0;
}

.w-icon img {
    width: 100%;
    height: auto;
}

.w-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.w-text p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* もっと見るボタン */
.btn-area {
    text-align: center;
    margin-top: 30px;
}

.btn-more-dark {
    display: inline-block;
    background-color: #1a1a1a;
    /* ほぼ黒 */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 60px;
    border-radius: 40px;
    position: relative;
    transition: opacity 0.3s;
}

.btn-more-dark::after {
content: "";
    position: absolute;
    right: 30px;
    font-size: 12px;
    top: 50%;
    margin-top: -6px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: border-color 0.3s;
    margin-top: -8px;
}

.btn-more-dark:hover {
    opacity: 0.8;
	    color: #fff;
}


/* --- 社内イベントセクション --- */
.sec-events {
    padding: 160px 0;
}

.sec-header {
    margin-bottom: 30px;
}

.en-tag {
    font-size: 14px;
    font-weight: bold;
    display: block;
    color: #333;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin: 5px 0 0 0;
    letter-spacing: -0.5px;
}

/* 3カラムレイアウト */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3列 */
    gap: 28px 37px;
}

.event-card {
    width: 100%;
}

.event-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    /* 写真の比率を維持 */
    /* overflow: hidden; */
    border-radius: 24px;
    /* 画像のような強めの角丸 */
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 枠に合わせて切り抜き */
    transition: transform 0.3s ease;
}

/* ホバー時に少しズームする演出（任意） */
/* .event-card:hover img {
    transform: scale(1.05);
} */

/* 写真左下のラベルスタイル */
.event-label {
    position: absolute;
    bottom: 20px;
    left: -4px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 0 16px;
    border-radius: 4px;
    z-index: 2;
    line-height: 36px;
}

/* ラベルの色分け */
.label-orange {
    background-color: #EF812B;
}

.label-blue {
    background-color: #0CA3E4;
}

.label-red {
    background-color: #FB6868;
}

.label-green {
    background-color: #0BC1AB;
}


/* --- コンバージョンセクション --- */
.sec-conversion {
    position: relative;
    background-color: #00a1e9;
    /* 鮮やかなブルー */
    padding: 100px 0;
    overflow: hidden;
    /* はみ出した背景テキストを隠す */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 453px;
    box-sizing: border-box;
}

/* 背景のデカ文字（透過させて重ねる） */
.bg-text-top,
.bg-text-bottom {
    position: absolute;
    width: 100%;
}

.bg-text-top {
    top:0;
    left: 0;
}

.bg-text-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
}

.bg-text-top img {
    width: 100%;
}

.bg-text-bottom img {
    width: 100%;
}

/* コンテンツエリア */
.cv-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

/* リンクボタンのスタイル */
.cv-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
    width: 50%;
    justify-content: center;
    line-height: 64px;
    gap: 44px;
    height: 453px;
    position: relative;
}

.cv-link:first-child:after {
    position: absolute;
    width: 2px;
    right: 0;
    content: "";
    height: 64px;
    background: #fff;
}

.cv-link:hover {
    /* opacity: 0.8; */
	color: #fff;
}

.cv-title {
    font-size: 48px;
    font-weight: 600;
}

/* 黒い丸の矢印 */
.arrow-circle {
    width: 56px;
    height: 56px;
    background-color: #141414;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
	    font-family: "Noto Sans JP", sans-serif;
    transition: background 0.4s ease;
}

.cv-link:hover .arrow-circle {
    background-color: #fff;
    color: #141414;
}

/* 中央の白い縦線 */
.cv-border {
    width: 2px;
    height: 60px;
}

/* --- フッター全体のスタイル --- */
.main-footer {
    padding: 80px 0 40px;
    font-family: 'Noto Sans JP', sans-serif;
    border-top: 1px solid #eee;
}

/* 上段：ロゴとボタン */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
        flex-wrap: wrap;
}

.footer-logo img {
    height: 56px;
    /* ロゴのサイズ感 */
}

.btn-corporate {
    display: inline-block;
    background-color: #141414;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    transition: opacity 0.3s;
    line-height: 66px;
    width: 288px;
    text-align: center;
}

.btn-corporate:hover {
    opacity: 0.8;
    color: #fff;
}

.top-link {
    width: 70px;
    height: 70px;

    right: 20px;
    position: fixed;
    bottom: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
z-index: 10;
}

.top-link a {
    background: #0a265c;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-link.is-show {
    opacity: 1;
    visibility: visible;
}

.top-link .arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: -5px;
    transition: border-color 0.3s;
}
/* 中段：メインナビ */
.footer-nav {
    margin-bottom: 36px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
    line-height: 1;
}

.footer-nav a {
    text-decoration: none;
    color: #141414;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 14px;
    line-height: 16px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #1A88D6;
}

/* 画像にある「●」の再現 */
.footer-nav a::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #141414;
}

.footer-hr {
    border: 0;
    border-top: 1px solid #141414;
    margin-bottom: 36px;
    opacity: 0.12;
}

/* 下段：コピーライトとリーガルリンク */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* スマホ対策 */
}

.copyright {
    font-size: 12px;
    color: #141414;
    margin: 0;
}

.sub-link-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 32px;
    flex-wrap: wrap;
}

.sub-link-list a {
    text-decoration: none;
    color: #141414;
    font-size: 12px;
    transition: color 0.3s;
}

.sub-link-list a:hover {
    color: #1A88D6;
}

.mv-container {
    padding: 0;
    text-align: center;
    overflow: hidden;
}

/* 画像グリッドの基本設定 */
.mv-grid {
    display: flex;
    /* justify-content: center;
    gap:40px;
    margin: 0 auto; */
}

.grid-items-wrapper {
    display: flex;
    gap: 40px;
    /* 画像間の隙間 */
    padding-right: 40px;
    /* 2つのwrapperの間の隙間 */
    animation: loop-scroll 30s linear infinite;
    /* 20秒で一周。速度はここで調整 */
}

.grid-items-wrapper-reverse {
    display: flex;
    gap: 40px;
    /* 画像間の隙間 */
    padding-left: 40px;
    /* 2つのwrapperの間の隙間 */
    animation: loop-scroll-reverse 30s linear infinite;
    /* 20秒で一周。速度はここで調整 */
}

.grid-item {
    width: 460px;
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: #f23;
    flex-shrink: 0;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

@keyframes loop-scroll-reverse {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

/* 横長 */

/* 下段は少し位置をずらして配置 */
.grid-bottom .item-v {
    align-self: flex-start;
}

.grid-bottom .item-h {
    align-self: flex-end;
}

/* 中央キャッチコピー */
/* .mv-copy-area {
    margin: 40px 0;
} */

.main-copy {
    font-family: "Roboto", sans-serif;
    font-size: 96px;
    font-weight: 600;
    color: #141414;
    line-height: 1.6;
    letter-spacing: -1.5px;
    /* -webkit-text-stroke: 2px #141414; */
    paint-order: stroke fill;
    margin-block-start: 0;
    margin-block-end: 0;
}

/* 下部メッセージエリア */
.mv-lead {
    margin: 140px auto;
}

.mv-lead h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 18px;
}

.mv-lead p {
    font-size: 24px;
    line-height: 1.6;
    color: #141414;
    font-weight: 600;
}

.en-sub-copy {
    margin-top: 26px;
}





.en-tag {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.sec-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* タイムラインのレイアウト */
.timeline-container {
    position: relative;
    padding-left: 120px;
    /* 左側に円を置くスペース */
}

/* 垂直の点線 */
.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px solid #fff;
    z-index: 1;
}

.timeline-item {
    position: relative;
    /* カード間の隙間 */
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* 左側の円 */
.time-circle {
    position: absolute;
    left: -120px;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-green);
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    top: 0;

    background: #0BC1AB;
    color: #fff;
    border: 2px solid #fff;
}

.time-circle-first {
    color: #0AA391;
    background: #fff;
}

/* 右側の白いカード */
.content-card {
    background-color: #fff;
    padding: 20px 39px 15px;
    width: 100%;
    color: var(--text-dark);
    margin-left: 80px;
    border-bottom: 2px solid rgba(20, 20, 20, 0.2);
    position: relative;
}

.content-card:after {
    content: "";
    width: 2px;
    height: 100%;
    left: -140px;
    top: 0;
    position: absolute;
    background: #fff;
}

.timeline-item:nth-child(6) .content-card:after,
.timeline-item:nth-child(7) .content-card:after {
    content: none;
}

.content-card-first {
    border-radius: 24px 24px 0 0;
}

.content-card-last {
    border-radius: 0 0 24px 24px;
}

.card-label {
    display: inline-block;
    background-color: var(--emerald-green);
    color: #fff;
    font-size: 16px;
    padding: 2px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #0AA391;
    margin-left: -43px;
    width: 92px;
    box-sizing: border-box;
    text-align: right;
    line-height: 30px;
}

.content-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.content-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}
    .main-nav {
		display:none;
}
.sp_nav_open {
		display:none;
}

/* レスポンシブ */
@media (max-width: 1120px) {
    .data-grid {
    gap: 30px;
}
.data-card {
    background: initial;
    border-radius:initial;
}
.data-card img {
    padding-top: 10px;
    background: #fff;
    border-radius: 24px;
}
    .data-card h3 {
    font-size: 24px;
    top: 20px;
    }
    .sub-link-list {
    flex-wrap: wrap;
    width: 100%;
}
.copyright {
        width: 100%;
    order: 2;
    margin-top: 20px;
}
}
@media (max-width: 768px) {
    .pc_on {
        display: none;
    }

    .sp_on {
        display: block;
    }

    .container {
        max-width: calc(100% - 40px);
    }

    .header-container {
        padding: 20px;
    }

    .header-container .logo img {
        width: auto;
        height: 48px;
    }

    .sp_menu_open {
        width: 48px;
        height: 2px;
        background: #141414;
        position: relative;
    }

    .sp_menu_open:before {
        content: "";
        width: 48px;
        height: 2px;
        background: #141414;
        position: absolute;
        top: -12px;
    }

    .sp_menu_open:after {
        content: "";
        width: 48px;
        height: 2px;
        background: #141414;
        position: absolute;
        bottom: -12px;
    }

    .header-link {
        display: none;
    }

    .main-copy {
        font-size: 32px;
    }

    .mv-grid {
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .mv-lead {
        margin: 80px auto;
    }

    .mv-lead h2 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .mv-lead p {
        font-size: 16px;
    }

    .member-slider-section {
        padding: 80px 0;
        border-radius: 48px 48px 0 0;
    }

    .slider-header {
        max-width: calc(100% - 40px);
        margin: 0 auto 26px;
    }

    .en-title {
        font-size: 24px;
        margin-bottom: 12px;
        margin-bottom: 0;
                padding-left: 18px;
    }

    .en-title span {
        width: 8px;
        height: 8px;
        margin-top: -4px;
    }

    .jp-title {
        font-size: 32px;
        line-height: 1.6;
        margin: 0;
    }

    .tag {
        bottom: 12px;
        left: 12px;
        font-size: 12px;
        padding: 5px 12px;
        border-radius: 4px;
        line-height: 16px;
        max-width: 126px;
        box-sizing: border-box;
    }

    .sec-data {
        padding: 80px 0;
    }

    .slider-wrapper {
        gap: 20px;
        margin-left: -40px;
    }

    .member-card {
        width: 150px;
        height: 200px;
    }

    .member-card {
        position: relative;
        flex-shrink: 0;
        border-radius: 24px;
        overflow: hidden;
        background-color: #eee;
        flex: 0 0 150px;
    }

    .slider-controls {
        gap: 24px;
        margin-top: 34px;
		margin-right: 20px;
    }

    .arrow-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .item-v,
    .item-h {
        width: calc(50% - 10px);
        height: 150px;
    }

    .data-grid {
         grid-template-columns: 1fr; 
        gap: 20px;
    }

    .data-card {
        background: initial;
        border-radius: initial;
        text-align: center;
        color: #141414;
        position: relative;
    }

    .data-card h3 {
        font-size: 24px;
        top: 22px;
        line-height: 1.6;
    }

    .data-card img {
        background: #fff;
        border-radius: 24px;
    }

    .data-group {
        margin-bottom: 40px;
    }



    .event-grid {
        grid-template-columns: 1fr;
        /* スマホでは1列縦並び */
        gap: 20px;
    }

    .sec-title {
        font-size: 26px;
    }



    .cv-border {
        width: 100px;
        height: 1px;
    }




    .sec-career {
        padding: 80px 0 80px;
    }

    .time-circle {
        width: 60px;
        height: 60px;
        left: -70px;
        font-size: 12px;
        display: none;
    }

    .content-card:after {
        display: none;
    }

    .timeline-container {
        padding-left: 0;
        display: flex;
        align-items: baseline;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-left: 4px;
        align-items: stretch;
    }

    .timeline-item {
        display: flex;
        align-items: center;
        padding-left: 4px;
        flex-direction: column;
    }

    .card-label {
        font-size: 16px;
        padding: 2px 18px;
        margin-left: -19px;
        width: auto;
        line-height: 26px;
        font-weight: 600;
    }

    .content-card h3 {
        font-size: 20px;
        margin: 5px 0 10px 0;
    }

    .content-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    .content-card {
        margin-left: 0;
        width: 260px;
        border-radius: 24px;
        padding: 20px 16px 15px;
        flex-grow: 1;
    }

    .content-card-first {
        border-radius: 24px;
    }

    .timeline-line {
        left: 30px;
    }

    .sec-title {
        font-size: 32px;
        line-height: 1.6;
        margin: 0;
    }

    .sec-header {
        margin-bottom: 28px;
    }

    .group-label span {
        font-size: 16px;
        margin-right: 24px;
    }

    .promotions-img {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .promotions-img img {
        width: 800px;
    }

    .sec-promotions {
        padding-bottom: 80px;
        border-radius: 0 0 48px 48px;
    }

    .promotions-h {
        top: 20px;
        left: 20px;
        padding-left: 18px;
    }
    .promotions-h span{
        height: 8px;
        width: 8px;
        margin-top: -4px;
    }

    .sec-welfare {
        padding: 80px 0 0;
    }

    .welfare-grid {
        grid-template-columns: 1fr;
        margin: 28px 0;
        row-gap: 20px;
    }

    .welfare-item {
        padding-top: 20px;
    }

    .w-icon {
        width: 40px;
        height: 40px;
    }

    .w-text h3 {
        font-size: 16px;
    }

    .welfare-item:nth-child(5) {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .sec-events {
        padding: 80px 0;
    }

    .event-label {
        padding: 0 8px;
    }

    .cv-content {
        flex-direction: column;
        gap: 0;
        flex-wrap: wrap;
        height: 453px;
    }

    .cv-link {
        width: 100%;
        gap: 44px;
        height: 50%;
        gap: 24px;
    }

    .cv-title {
        font-size: 32px;
    }

    .arrow-circle {
        width: 48px;
        height: 48px;
        font-size: 25px;
    }

    .cv-link:first-child:after {
        width: 120px;
        left: 50%;
        height: 2px;
        bottom: -1px;
        margin-left: -60px;
    }

    .main-footer {
        padding: 60px 0 40px;
    }

    .footer-top,
    .footer-bottom {
        gap: 40px;
    }

    .btn-corporate {
        font-size: 16px;
        line-height: 56px;
        width: 100%;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        gap: 20px;
    }
.footer-nav li{
    width: 100%;
}
    .footer-nav a {
        padding-bottom: 20px;
        border-bottom: 1px solid #141414;
                display: block;
    }

    .footer-nav a::before {
        top: 8px;
    }

    .footer-hr {
        display: none;
    }

    .footer-nav {
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .sub-link-list li {
        width: 100%;
    }

    .copyright {
        margin-top: 0;
    }

    .sub-link-list {
        flex-wrap: wrap;
        gap: 12px;
    }

    .sub-link-list a {
        line-height: 1.6;
    }
    .footer-bottom {
    gap: 20px !important;
}
.top-link {
        width: 50px;
        height: 50px;
        right: 10px;
        bottom: 30px;
    }

    .top-link a {
        width: 50px;
        height: 50px;
    }
	/*スマホメニュー*/
	    .main-nav.is-active {
        right: 0;
			display: block;
    }
    .main-nav {
		display:block;
		box-sizing: border-box;
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100% - 80px);
        background: #F4F1E5;
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        margin-right: 0;
        padding: 0 15px;
        margin-left: auto;
		position: fixed;
    }
    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 55px;
        list-style: none;
        gap: 0;
    }
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #344052;
        padding: 15px 0;
        line-height: 1;
    }
    .main-nav ul li a {
        color: ##1A88D6;
        font-size: 16px;
        text-decoration: none;
        line-height: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        line-height: 26px;
    }
    .sp_menu_text.is-active {
        display: block;
        background: linear-gradient(to right, #022E6B, #1A88D6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 32px;
        font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
        margin-top: 75px;
        font-weight: 500;
        line-height: 1.6;
        padding-bottom: 100px;
    }
	.sp_nav_open{
    position: absolute;
    right: 0;
    top: 0;
    height: 80px;
    display: none;
		cursor: pointer;
}
	.sp_nav_open.is-active{
		display:block;
		}
	.sp_menu_open{
		margin-top: 23px;
	}
	.sp_menu_open-cover{
    height: 48px;
    cursor: pointer;
}
    body.no-scroll {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100vh;
    }
}

@media (max-width: 480px) {
    .data-card h3 {
        font-size: 16px;
        top: 15px;
        padding: 0 10px;
        width: calc(100% - 20px);
        line-height: 1.1;
    }
        .data-card img {
        padding-top: 35px;
    }
}