/* ====================================================
   採用サイト専用ヘッダー (rc-header)
==================================================== */
.rc-header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.rc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 50px;
    /* 上下の余白（高さ）を少し減らしてスリムに調整 */
    padding: 5px 20px 5px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ロゴ */
.rc-header__logo img {
    height: 55px;
    /* 40pxから55pxに拡大して存在感をアップ */
    width: auto;
    vertical-align: middle;
}

/* ナビゲーション */
.rc-header__nav {
    flex: 1;
    margin: 0 20px 0 40px;
}

.rc-header__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* 縦位置を中央に揃える */
    gap: 25px;
    list-style: none !important;
    /* 既存CSSのリストスタイルを強制リセット */
    margin: 0;
    padding: 0;
}

/* 既存CSSの「青い丸」の干渉を打ち消すためのリセット */
.rc-header__item {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
}
.rc-header__item::before,
.rc-header__item::after {
    display: none !important;
    content: none !important;
}

.rc-header__item a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
    display: block;
    /* クリックできる範囲を広げる */
}

.rc-header__item a:hover {
    color: #007bb5;
}

/* エントリーボタン */
.rc-header__entry {
    margin-left: 20px;
}

.rc-header__btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bb5, #005f8d);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    /* ボタンの上下の余白を減らし、ヘッダーの高さに合わせる */
    padding: 10px 30px;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0, 123, 181, 0.2);
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.rc-header__btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* ====================================================
     レスポンシブ対応（スマホ表示時）
  ==================================================== */
@media screen and (max-width: 1024px) {
    .rc-header__nav {
        display: none;
    }
    .rc-header__inner {
        padding: 10px 20px;
        border-radius: 10px;
    }
    .rc-header__logo img {
        height: 40px;
        /* スマホ時も少し大きめに調整 */
    }
    .rc-header__btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ====================================================
   採用サイト メインビジュアル (rc-mv)
==================================================== */
body.page-rec #wrapper,
body.page-rec #contents {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.rc-mv {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    height: 70vw;
    max-height: 1000px;
    min-height: 700px;
    overflow: hidden;
    background-color: #f5f5f5;
}
.rc-mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.rc-mv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.rc-mv__inner {
    position: relative;
    width: 92%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    z-index: 3 !important;
    display: flex;
    align-items: center;
}
.rc-mv__text-box {
    margin-top: 100px;
    margin-left: 20px;
}

.rc-mv__en {
    font-family: 'Caveat', cursive;
    font-size: 54px;
    color: #ffffff;
    margin: 0 0 -10px 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* 日本語メインコピー (Zen Kaku Gothic New) */
.rc-mv__ja {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 78px;
    color: #002e66;
    /* Figmaに近い濃いブルー */
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* ====================================================
   波形のスタイル（画像配置用）
==================================================== */
.rc-mv__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 22vw;
    max-height: 300px;
    min-height: 120px;
    overflow: hidden;
    z-index: 3;
    line-height: 0;
}

.rc-mv__wave img {
    width: 100%;
    height: auto;
    display: block;
}

/* ====================================================
   装飾テープのスタイル（画像配置用）
==================================================== */
.rc-mv__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* 背景画像(z-index:1)の上 */
    pointer-events: none;
    /* テキスト選択やクリックの邪魔にならないようにする */
    overflow: hidden;
}

.rc-mv__tape-img {
    position: absolute;
    height: auto;
}

/* 左テープ画像の位置とサイズ */
.rc-mv__tape-img--left {
    top: 25%;
    /* 20%から25%へ（少し下へ） */
    left: 4%;
    width: 25vw;
    max-width: 350px;
    min-width: 200px;
}

/* 右テープ画像の位置とサイズ */
.rc-mv__tape-img--right {
    top: 55%;
    /* 50%から55%へ（女性のタブレット付近まで下へ） */
    right: 3%;
    /* 5%から3%へ（少し右へ寄せる） */
    width: 20vw;
    max-width: 300px;
    min-width: 180px;
}

/* ====================================================
     レスポンシブ対応（スマホ表示時）
  ==================================================== */
@media screen and (max-width: 1024px) {
    .rc-mv {
        height: auto;
        min-height: 600px;
    }

    .rc-mv__text-box {
        margin-top: 50px;
    }

    .rc-mv__en {
        font-size: 36px;
        margin: 0 0 -5px 5px;
    }

    .rc-mv__ja {
        font-size: 52px;
    }
}

@media screen and (max-width: 768px) {
    .rc-mv {
        min-height: 500px;
    }

    .rc-mv__inner {
        align-items: flex-start;
        padding-top: 150px;
        /* 先ほど作ったヘッダーと被らないように上から余白を確保 */
    }

    .rc-mv__en {
        font-size: 28px;
    }

    .rc-mv__ja {
        font-size: 38px;
    }

    /* 画像テープのスマホ表示位置調整 */
    .rc-mv__tape-img--left {
        top: 15%;
        left: 0;
    }
    .rc-mv__tape-img--right {
        top: 45%;
        right: 0;
    }
}