/* ==================== リセット&基本設定 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* /header共通部分 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-sizing: border-box;
    background: transparent; /* ←初期は透明 */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* スクロール後：白背景に切り替え */
header.scrolled {
    background: #f7fcff;
}

.header-contact-btn {
    display: none;
}

.logo-box img {
    display: block; /* 余計な隙間防止 */
}
/* PCナビゲーション (デフォルト非表示) */
.nav-pc {
    display: none;
}

.nav-pc ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-pc a {
    color: #000233;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.nav-pc a:hover {
    color: #0072e3;
}

/* ハンバーガーメニューアイコン */
.menu-icon {
    /* position: fixed は不要 (headerがfixedのため) */
    width: 40px;
    height: 30px;
    z-index: 2001;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 4px;
    background: #003366;
    margin: 4.5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-icon.open span:nth-child(2) {
    opacity: 0;
}

.menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === オーバーレイメニュー === */

.overlay-menu.open {
    top: 0; /* 開いたときに画面内に */
    opacity: 1;
}

/* 閉じるボタン */
.overlay-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 38px;
    color: #004b9b;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
    transition: 0.3s;
}

.overlay-close:hover {
    transform: scale(1.1);
}

/* メニュー内容 */
.overlay-content {
    display: flex;
    flex-direction: column; /* スマホでは縦並び */
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 950px;
    height: 80%; /* メニュー全体の高さに対する割合 */
    gap: 30px; /* スマホでの隙間 */
}

.overlay-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* スマホでは中央揃え */
}

.overlay-nav li {
    margin-bottom: 28px;
}

a {
    text-decoration: none;
}

.overlay-nav .menu-item {
    font-family: "Roboto", sans-serif; /*セクションの英語*/
    display: block;
    font-size: 2rem; /* スマホでのサイズ */
    letter-spacing: 3.6px;
    font-weight: 800;
    color: #000233;
}

.overlay-nav .menu-item2 {
    display: block;
    font-size: 1.2rem; /* スマホでのサイズ */
    font-weight: 600;
    letter-spacing: 2px;
    color: #000233;
}

.overlay-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-contact-btn {
    /* オーバーレイ内のボタン */
    display: inline-block;
    background: linear-gradient(to right, #ff5f4d, #ff7a73);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    padding: 18px 56px;
    font-size: 1.6rem; /* スマホ・タブレット共通サイズ */
    transition: 0.3s ease;
}

.overlay-contact-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* //header共通部分 */

html {
    background-color: #f7fcff; /*全体の背景*/
    font-family: "Zen Kaku Gothic New", sans-serif; /*日本語*/
    font-size: 10px;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: #000233;
    background-color: #f7fcff;
}

/* セクションの英語 */
h1 {
    font-family: "Roboto", sans-serif; /*セクションの英語*/
    font-weight: 900;
    color: #000233;
    line-height: 1;
}
/* //セクションの英語 */

/* セクションの日本語 */
h2 {
    font-weight: 700;
    color: #000233;
    line-height: 1.2;
}
/* //セクションの日本語 */

/* ==================== ヒーローセクション ==================== */
.hero-section {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* ← ここに追加 */
}

.hero-overlay {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 他の要素は左寄せ */
    position: relative;
    overflow: visible; /* ← hidden から visible に変更 */
    z-index: 0;
    margin: 40px 0 0; /* ← 左右下のマージンを削除 */
    padding: 0 0px; /* ← パディングで余白を確保 */
    text-align: left;
    line-height: 1.7;
    width: 90%; /* ← 追加 */
    margin-top: 25vh;
}

.background {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-40%, -50%); /* ← 右下に移動 */
    width: 120%;
    height: 150%;
    min-height: 120%;
    z-index: -5;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #000233;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-yokonarabi {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 右寄せ */
    width: 100%;
}

.hero-text {
    align-self: flex-start; /* テキストは左寄せ */
    font-size: 16px;
    font-weight: 500;
    color: #000233;
    line-height: 1.9;
    margin-bottom: 50px; /* ボタンとの間隔 */
    width: 50%;
}

.cta-button {
    align-self: flex-end; /* ボタンは右寄せ */
    /* 既存のスタイルはそのまま */
    padding-right: 10%;
}

.cta-button {
    transition-duration: 0.4s;
}

.cta-button:hover {
    transform: scale(1.1);
}

.hero-text p {
    margin-bottom: 15px;
}

.hero-text-blue {
    color: #0068b6;
    border-bottom: 1px solid #0068b6;
}

.cta-button {
    align-self: flex-end; /* ボタンだけ右寄せ */
    color: #000233;
    text-align: right;
    display: inline-block;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    background-image: url(../../images/button.svg);
    background-repeat: no-repeat;
    z-index: 3;
    padding: 15px 40px 17px 15px;
    margin-right: 0;
}

/* ==================== 募集要項セクション（センター揃え） ==================== */

ul {
    padding-left: 40px;
}
.recruit-section {
    max-width: 100%;
    margin: 0 auto;
    /* margin-top: 80px; */
    padding: 0px 15px;
    /* margin-bottom: 80px; */
    text-align: center;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000233;
    margin-bottom: -10px;
    text-align: center;
}

.recruit-card {
    background-color: #f7fcff;
    border: none;
    /*padding: 40px;*/
    margin-bottom: 60px;
}

.recruit-card:last-child {
    margin-bottom: 0px;
}

.card-title {
    font-size: 12px;
    margin-bottom: 0px;
    /*padding-bottom: 10px;*/
    font-weight: 700;
    color: #0068b6;
    border-bottom: 1px solid #0068b6;
    display: inline-block;
}

.recruit-table {
    text-align: left;
    max-width: 900px;
    margin: 0 autos;
}

.table-row {
    padding: 20px 0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-label {
    background-color: #cdecfc;
    text-align: center;
    font-weight: 500;
    color: #000233;
    min-width: 150px;
    flex-shrink: 0;
    font-size: 16px;
    /*margin-right: 40px;*/
}

.table-value {
    flex: 1;
    margin: 0 auto;
    color: #000233;
    line-height: 1.8;
    font-size: 12px;
    font-weight: 400;
}

.table-sp-center {
    margin: auto;
    text-align: center;
}

/* 福利厚生リンク */
.welfare-link {
    color: #0068b6;
    text-decoration: underline;
    transition: color 0.3s;
}

.welfare-link:hover {
    color: #0052a3;
}

/* ==================== Q&Aセクション（左揃え） ==================== */
.qa-section {
    max-width: 85%;
    margin: 0 auto;
    background-color: #f7fcff;
    /*padding: 80px 40px;*/
}

.qa-section-title {
    font-size: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    letter-spacing: 5px;
    color: #000233;
    margin-bottom: 10px;
    text-align: left;
}

.qa-section-subtitle {
    display: block;
    font-size: 20px;
    color: #000233;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.qa-container {
    max-width: 900px;
    margin: 0 auto;
}

.qa-item {
    /*padding: 30px;*/
    margin-bottom: 30px;
    text-align: left;
}

.question-text {
    /*font-size: 14px;*/
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.question {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #0068b6;
}

.answer {
    background-color: #cdecfc;
    font-size: 12px;
    color: #000233;
    line-height: 1.9;
    padding: 15px 15px;
    margin-bottom: 40px;
    border-radius: 15px;
}

/* ==================== パソコン対応 (min-width: 1025px) ==================== */
@media (min-width: 1161px) {
    .header-contact-btn {
        padding: 24px 56px;
    }
}
@media (max-width: 1160px) and (min-width: 1060px) {
    .header-contact-btn {
        padding: 20px 40px;
    }
}

@media (max-width: 1060px) and (min-width: 1025px) {
    .header-contact-btn {
        padding: 20px 30px;
    }
}
@media screen and (min-width: 1025px) {
    /* header共通部分 */
    header {
        padding-right: 2vw;
        padding-left: 2vw;
    }

    .header-contact-btn {
        display: inline-block;
        background: linear-gradient(to right, #ff5f4d, #ff7a73);
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        border-radius: 100px;
        font-size: clamp(12px, 1vw, 18px);
        letter-spacing: 4px;
        transition: 0.3s ease;
        order: 2;
    }

    .menu-icon {
        display: none;
    }

    .overlay-menu {
        display: none !important;
    }

    .nav-pc {
        display: block;
        order: 1;
        font-size: clamp(12px, 1vw, 18px);
        margin-left: auto;
        margin-right: 20px;
        letter-spacing: 3px;
    }
    .logo-box img {
        height: 5vw;
        display: block; /* 余計な隙間防止 */
    }

    /* //header共通部分 */

    /* footer共通部分 */
    /* モバイル用のフッターは非表示 */
    .footer-mobile {
        display: none;
    }

    /* PC用のフッター */
    .footer-pc {
        display: block;
        padding: 80px 8% 20px 8%;
        color: #000233;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-left {
        flex: 1;
    }

    .footer-menu_top li {
        margin-top: 20px;
    }
    .footer-menu_news li {
        margin-top: 20px;
    }
    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 30px 80px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: 2.4rem;
        letter-spacing: 3.6px;
        font-weight: 900;
        color: #000233;
    }

    .footer-menu span {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 2.4px;
        opacity: 0.8;
        margin-top: 3px;
    }

    .footer-right {
        flex: 1;
        text-align: left;
        background: url("../../images/logo_lightbule.png") no-repeat right
            bottom;
        background-size: contain;
        padding-left: 40px;
    }

    .footer-right h2 {
        font-size: 4.8rem;
        font-weight: 900;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer-text {
        font-size: 1.6rem;
        line-height: 1.8;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .footer-btn {
        display: inline-block;
        background: linear-gradient(90deg, #ff5f4d, #ff7a73);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
        text-decoration: none;
        padding: 24px 60px;
        border-radius: 100px;
        letter-spacing: 4px;
        transition: all 0.3s ease;
    }

    .footer-btn:hover {
        transform: translateY(-2px);
    }

    .footer-copy {
        font-weight: 500;
        text-align: center;
        margin-top: 60px;
        font-size: 1.6rem;
        opacity: 0.8;
    }

    /* //footer共通部分 */

    /* 共通部分 */
    .head {
        background-image: url(../../images/kasou_top_back_pc.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    h1 {
        font-size: 8.3vw;
        letter-spacing: 0.1em;
    }

    h2 {
        font-size: 3.3vw;
        letter-spacing: 0.1em;
    }

    .page {
        padding-top: 20%;
        max-width: 75%;
        margin: 0 auto;
    }

    .page-title {
        margin-left: -5%;
    }

    .page_subtitle p {
        font-size: 1.38vw;
        margin-top: 2.8vw;
    }

    /* //共通部分 */

    .recruit-top-illust {
        visibility: hidden;
    }
    .question-text {
        font-size: 1.8rem;
    }

    .hero-section {
        margin-top: 9vw;
    }
    .hero-overlay {
        background-image: url(../../images/recruit_PC.svg);
    }

    .hero-title {
        font-size: 57px;
        margin-left: 100px;
    }

    .hero-yokonarabi {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        width: 90%;
        margin-left: 100px;
        padding-right: 10%;
    }

    .hero-text {
        align-self: flex-start;
        margin-bottom: 0;
        width: 60%;
        font-size: 39px;
    }

    .cta-button {
        align-self: flex-end;
        margin-top: auto;
        font-size: 18px;
        margin-right: -10%;
    }

    /* .hero-section {
        margin-bottom: 130px;
    }
    */

    .section-title {
        text-align: center;
        width: 200px;
    }

    .recruit-section {
        width: 85%;
        margin: 0 auto;
    }

    .recruit-section-title {
        padding: 30px;
    }

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

    .recruit-card {
        display: flex;
        flex-direction: row;
    }

    .card-title {
        font-size: 24px;
    }

    .table-label {
        min-width: 130px;
        font-size: 15px;
        background-color: #eaf6fd;
        padding: 20px;
    }

    .table-row {
        padding: 0px 0px;
    }

    .table-kyuyo {
        display: flex;
        border-bottom: none;
    }

    .recruit-table {
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .table-value {
        font-size: 14px;
        border-bottom: none;
    }

    .qa-container {
        width: 65%;
        margin: 0 auto;
    }

    .qa-section-title {
        width: 85%;
        font-size: 32px;
    }

    .qa-section-subtitle {
        width: 85%;
        font-size: 32px;
    }

    .answer {
        font-size: 15px;
    }
}

@media (min-width: 1161px) {
    .hero-overlay {
        margin: 0;
        margin-top: 430px;
    }
}

/* ==================== タブレット対応 (max-width: 900px) ==================== */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    /*/header共通部分 */
    /* ヘッダーのお問い合わせボタン (タブレットでは非表示のまま) */
    header {
        padding-right: 4vw;
        padding-left: 4vw;
        padding-top: 2vw;
    }
    .header-contact-btn {
        display: none;
    }
    .logo-box img {
        height: 7vw;
        display: block; /* 余計な隙間防止 */
    }
    .overlay-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-image: url(../../images/TB_humberger_back.svg);
        background-repeat: no-repeat;

        background-size: 100% auto;
        background-position: center top;

        border-radius: 10px;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 101px;
        overflow-y: auto;
    }

    .overlay-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 90%; /* 幅を少し可変に */
        margin: 0 auto;
        padding: 4vw 5vw; /* 画面幅に応じて余白を調整 */
        gap: 5vw; /* 文字とボタンの間隔を相対値で */
    }

    .overlay-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw 4vw; /* カラム間の隙間も相対値に */
        text-align: left;
    }

    .overlay-nav .menu-item {
        font-size: clamp(1.4rem, 1.8vw, 2.2rem); /* ← 可変フォント */
        letter-spacing: 0.2vw;
    }

    .overlay-nav .menu-item2 {
        font-size: clamp(1rem, 1.2vw, 1.6rem);
    }

    .overlay-right {
        flex: 0 0 auto;
        align-self: flex-end;
        margin-right: 4vw;
    }

    .overlay-contact-btn {
        font-size: clamp(1.2rem, 1.5vw, 1.8rem); /* ← ボタン文字も可変 */
        padding: 1.2em 3em;
    }
    /* //header共通部分 */

    /* footer共通部分 */
    /* モバイル用のフッターは非表示 */
    .footer-mobile {
        display: none;
    }

    .footer-pc {
        display: block;
        padding: 80px 7.6vw 20px 7.6vw;
        color: #000233;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-left {
        flex: 1;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 30px 80px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: 3px;
        color: #000233;
    }

    .footer-menu span {
        letter-spacing: 3px;
        font-size: 1.2rem;
        font-weight: 700;
        margin-top: 3px;
    }

    .footer-right {
        flex: 1;
        text-align: left;
        background: url("../../images/logo_lightbule.png") no-repeat right
            bottom;
        background-size: contain;
        padding-left: 40px;
    }

    .footer-right h2 {
        font-size: 3.6rem;
        font-weight: 900;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer-text {
        font-size: 1.2rem;
        line-height: 1.8;
        font-weight: 700;
        margin-bottom: 30px;
    }

    /* フッターのお問い合わせボタン */
    .footer-btn {
        display: inline-block;
        background: linear-gradient(90deg, #ff5f4d, #ff7a73);
        color: #fff;
        font-size: 1.4rem;
        font-weight: 500;
        text-decoration: none;
        padding: 24px 60px;
        border-radius: 100px;
        transition: all 0.3s ease;
        letter-spacing: 3px;
    }

    .footer-btn:hover {
        transform: translateY(-2px);
    }

    .footer-copy {
        text-align: center;
        font-weight: 500;
        margin-top: 60px;
        font-size: 1.4rem;
        opacity: 0.8;
    }

    .footer-menu_top li {
        margin-top: 20px;
    }
    .footer-menu_news li {
        margin-top: 20px;
    }

    /* //footer共通部分 */
    /* 共通部分 */

    .head {
        max-width: 100%;
        min-width: 100%;
        background-repeat: no-repeat;
        background-image: url(../../images/kasou_top_back_tb.svg);
        background-size: contain;
    }
    .page {
        max-width: 74%;
        padding-top: 16vw;
        margin: 0 auto;
    }

    .page-title {
        margin-left: -5%;
    }
    /* セクション */
    h1 {
        font-size: 7.3vw;
        letter-spacing: 0.1em;
    }

    h2 {
        font-size: 2.6vw;
        letter-spacing: 0.1em;
    }
    .page_subtitle p {
        font-size: clamp(10px, 1.8vw, 14px);
        margin-top: 3vw;
    }
    /* //セクション */
    /* //共通部分 */
}

@media screen and (min-width: 768px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-overlay {
        width: 85%;
        margin: 0 auto;
        overflow: hidden;
        padding: 50px 0px 100px 0px;
        background-image: url(../../images/recruit_TB.svg);
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: right 30% bottom 25%;
        margin-bottom: 0px;
        margin-top: 230px;
    }

    .recruit-top-illust {
        visibility: hidden;
    }

    .hero-title {
        width: 85%;
        padding: 50px 0px 0px 0px;
        font-size: 23px;
        margin-bottom: 60px;
        margin-left: 0;
    }

    .hero-yokonarabi {
        width: 100%;
        display: flex;
        flex-direction: row;
        /*margin-left: 70px;*/
        justify-content: space-between; /* ← 追加 */
        align-items: flex-end; /* ← 追加 */
        margin: 0 auto;
        padding-right: 10%;
    }

    .hero-text {
        width: 230px;
        font-size: 14px;
        margin-bottom: 0px;
        /*margin-right: 200px;*/
        flex-shrink: 0; /* ← 追加 */
    }

    .cta-button {
        align-self: flex-end; /* ← 確認 */
        margin-left: auto; /* ← 追加 */
        font-size: 13px;
        padding: 15px 50px 17px 10px;
        flex-shrink: 0; /* ← 追加 */
        margin-right: -8%;
    }

    .recruit-section {
        padding-top: 130px;
        max-width: 75%;
        /* margin-bottom: 100px; */
    }

    .recruit-section-title {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .recruit-card {
        margin-bottom: 100px;
    }

    .recruit-card:last-child {
        margin-bottom: 0px;
    }

    .card-title {
        font-size: 16px;
        margin-top: 10px;
        /*margin-bottom: 30px;*/
    }

    ul {
        margin-left: -25px;
    }

    .table-row {
        display: flex;
        padding: 0px;
        border-bottom: 1px solid #e0e0e0;
    }

    .table-kyuyo {
        display: flex;
        border-bottom: none;
    }

    .recruit-table {
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .table-value {
        font-size: 14px;
        border-bottom: none;
    }

    .table-label {
        margin-right: 30px;
        padding: 20px;
        min-width: 130px;
        font-size: 15px;
        background-color: #eaf6fd;
    }

    .table-value {
        padding: 20px;
        font-size: 14px;
        border-bottom: none;
    }

    .table-sp-center {
        margin-left: 0px;
        text-align: left;
    }
    .qa-section {
        width: 77%;
        margin: 0 auto;
        padding-top: 130px;
    }

    .qa-container {
        width: 90%;
    }

    .qa-section-title {
        font-size: 56px;
        margin-bottom: 0px;
    }

    .qa-section-subtitle {
        font-size: 20x;
        margin-bottom: 60px;
        text-align: left;
    }

    .question {
        font-size: 24px;
    }

    .question-text {
        margin-bottom: 10px;
        font-size: 1.6rem;
    }

    .answer {
        font-size: 14px;
        margin-bottom: 50px;
    }
}

/* ==================== スマホ対応 (max-width: 400px) ==================== */
@media (max-width: 768px) and (min-width: 466px) {
    /* header共通 */
    header {
        padding-right: 6vw;
        padding-left: 6vw;
        padding-top: 2vw;
    }
    .overlay-content {
        flex-direction: column;
        gap: 30px;
    }

    .overlay-nav ul {
        display: block;
    }

    .overlay-nav li {
        text-align: start;
    }

    .overlay-menu {
        position: fixed;
        top: -100%; /* 初期状態は画面外 */
        left: 0;
        width: 100%;
        height: 100vh; /* スマホでは全画面 */
        background-image: url(../../images/SP_humberger_back.svg);
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 10px;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        align-items: center; /* スマホでは中央揃え */
    }

    .logo-box img {
        height: 8vw;
        display: block; /* 余計な隙間防止 */
    }

    .table-value.center {
        text-align: center;
    }
    /*// header共通 */
}

@media (max-width: 465px) {
    /* header共通 */
    header {
        padding-right: 6vw;
        padding-left: 6vw;
        padding-top: 2vw;
    }
    .overlay-content {
        flex-direction: column;
        gap: 30px;
    }

    .overlay-nav ul {
        display: block;
    }

    .overlay-nav li {
        text-align: start;
    }

    .overlay-menu {
        position: fixed;
        top: -100%; /* 初期状態は画面外 */
        left: 0;
        width: 100%;
        height: 100vh; /* スマホでは全画面 */
        background-image: url(../../images/SP_humberger_back3.svg);
        background-repeat: no-repeat;
        background-size: cover;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        align-items: center; /* スマホでは中央揃え */
    }

    .logo-box img {
        height: 8vw;
        display: block; /* 余計な隙間防止 */
    }

    .table-value.center {
        text-align: center;
    }

    /*// header共通 */
}

@media screen and (max-width: 767px) {
    /* footer共通部分 */
    /* フッター（モバイル） */
    .footer-mobile {
        background: transparent url("../../images/footer_back.svg") no-repeat
            center;
        background-size: cover;

        padding: 80px 15vw 24px;
        text-align: left;
        color: #000233;
    }

    .footer-mobile .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-mobile .footer-nav li {
        margin-bottom: 5.6vw;
    }

    .footer-mobile .footer-nav a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: clamp(20px, 6vw, 28px);
        color: #000233;
        letter-spacing: 3px;
        font-weight: 900;
    }

    .footer-mobile .footer-nav span {
        display: block;
        font-weight: 700;
        font-size: clamp(10px, 3vw, 14px);
        letter-spacing: 2px;
        opacity: 0.8;
    }

    .footer-mobile .footer-copy {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        font-size: clamp(10px, 2.5vw, 14px);
        font-weight: 500;
        letter-spacing: 2px;
        opacity: 0.8;
        margin-top: 40px;
        text-align: center;
    }

    .footer-pc {
        display: none;
    }
    /* //footer共通部分 */

    /* 共通部分 */
    .head {
        max-width: 100%;
        background-repeat: no-repeat;
        background-image: url(../../images/kasou_top_back_sp.svg);
    }

    .page {
        padding-top: 23vw;
        max-width: 85%;
        margin: 0 auto;
    }
    .page_subtitle p {
        font-size: clamp(10px, 2.5vw, 14px);
        margin-top: 3vw;
    }

    /* セクションの英語 */
    h1 {
        font-size: 10vw;
        letter-spacing: 0.06em;
    }
    /* //セクションの英語 */

    /* セクションの日本語 */
    h2 {
        font-size: 5vw;
        letter-spacing: 0.15em;
    }
    /* //セクションの日本語 */
    /* //共通部分 */
    .hero-title {
        font-size: 26px;
    }

    .hero-yokonarabi {
        display: flex;
        flex-direction: column;
    }
    .hero-text {
        font-size: 14px;
    }

    .cta-button {
        font-size: 15px;
        /*padding: 12px 30px;*/
    }

    .section-title {
        font-size: 22px;
    }

    .qa-section {
        padding-top: 80px;
    }

    .qa-section-title {
        font-size: 40px;
    }

    .question-text {
        font-size: 1.4rem;
    }

    .recruit-section {
        padding-top: 80px;
        /*padding: 0px 15px;*/
        /*margin-bottom: 80px;*/
    }

    .section-title {
        font-size: 20px;
    }

    .card-title {
        font-size: 12px;
        margin-top: 20px;
    }

    .recruit-table {
        text-align: left;
    }
    */ .table-row {
        flex-direction: column;
        /*padding: 15px 0;*/
        border-bottom: none;
    }

    .highlight-row {
        margin: 0 -15px;
        /*padding: 15px 15px;*/
    }

    .table-label {
        min-width: auto;
        margin-bottom: 8px;
        font-size: 14px;
        padding: 5px 0px 6px;
    }

    .overlay-menu * {
        line-height: 1.15;
    }
}
