﻿.recruit_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* ヒーロー */
.recruit_hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(to bottom, #f8f9fb, #ffffff);
}

    .recruit_hero h1 {
        font-size: clamp(26px, 6vw, 40px);
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: 1px;
        max-width: 600px;
        margin: 0 auto;
    }

    .recruit_hero .sub {
        margin-top: 20px;
        font-size: 18px;
        color: #777;
    }

.catch {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    color: #999;
}

/* セクション */
.section {
    width: 100%;
    padding: 70px 20px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .section {
        padding: 50px 20px;
    }
}


/*   SECTION COLOR（6パターン）   */

    /* ① ブルー（安心・会社紹介系） */
    .section.blue {
        background: linear-gradient(180deg,#e7f1ff,#dce9ff);
        /*background: linear-gradient(180deg, #f0f6ff, #e6f0ff); */
    }

    /* ② グリーン（魅力・働きやすさ） */
    .section.green {
        background: linear-gradient(180deg,#ecfff2,#daf5e4);
        /* background: linear-gradient(180deg, #f3fff7, #e3f7ea); */
    }

    /* ③ オレンジ（仕事内容・アクティブ） */
    .section.orange {
        background: linear-gradient(180deg,#fff6eb,#ffe2bf);
        /* background: linear-gradient(180deg, #fffaf3, #ffe9cc); */
    }

    /* ④ パープル（流れ・ストーリー） */
    .section.purple {
        background: linear-gradient(180deg, #f7f5ff, #ebe7ff);
    }

    /* ⑤ ピンク（募集・柔らかい印象） */
    .section.pink {
        background: linear-gradient(180deg, #fff5f7, #ffe3ea);
    }

    /* ⑥ グレー（情報・締め） */
    .section.gray {
        background: linear-gradient(180deg, #f8f9fb, #eef1f4);
    }

.bg_light {
    background: linear-gradient(180deg, #fafafa, #f0f2f5);
}


.bg_white {
    background: linear-gradient(180deg, #ffffff, #f8f9fb);
}

.section_inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px; /* ←左右20px */
    box-sizing: border-box; /* ←超重要 */
    /* background: #fff; */
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06), 0 20px 40px rgba(0,0,0,0.10);
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.04), 0 12px 30px rgba(0,0,0,0.08);*/
    background: rgba(255,255,255,0.85);
    /*background: rgba(255,255,255,0.95); */
    backdrop-filter: blur(2px);
    transition: transform 0.25s ease;
}

    .section_inner:hover {
        transform: translateY(-4px);
    }


/* 見出し */
.section_title {
    text-align: center;
    margin-bottom: 40px;
}

    .section_title span {
        display: block;
        font-size: 12px;
        color: #888;
        letter-spacing: 2px;
        margin-bottom: 6px;
    }

    .section_title h2 {
        max-width: 400px;
        margin: 0 auto;
        font-size: 26px;
        font-weight: bold;
        line-height: 1.4;
        display: inline-block;
    }

    /* タイトルカラー統一 */
    .section.blue .section_title h2 {
        color: #4da3ff;
    }

    .section.green .section_title h2 {
        color: #00B75E;
    }

    .section.orange .section_title h2 {
        color: #FF812D;
    }

    .section.purple .section_title h2 {
        color: #8a6bff;
    }

    .section.pink .section_title h2 {
        color: #ff6b9a;
    }

    .section.gray .section_title h2 {
        color: #666;
    }

        .section_title h2::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background: #333;
            margin: 10px auto 0;
        }

.section.blue .section_title h2::after {
    background: #4da3ff;
}

.section.green .section_title h2::after {
    background: #3ecf8e;
}

.section.orange .section_title h2::after {
    background: #ffb347;
}

.section.purple .section_title h2::after {
    background: #8a6bff;
}

.section.pink .section_title h2::after {
    background: #ff6b9a;
}

.section.gray .section_title h2::after {
    background: #999;
}

.section_sub {
    text-align: center;
    color: #777;
    font-size: 16px;
    margin-top: 10px;
}

.section_lead {
    margin-top: 12px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* 動画 */
.video_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.video_item {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

    .video_item iframe,
    .video_item video {
        width: 100%;
        border-radius: 10px;
    }

.video_title {
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
}

/* 魅力 */
.point_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.point_card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .point_card:hover {
        transform: translateY(-5px);
    }

.point_title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}


.point_text {
    color: #555;
}

.point_text2 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    text-align: left;
    margin-left: 0.5em;
}

.point_text3 {
    font-weight: bold;
    font-size: 16px;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .benefits span {
        background: #f0f2f5;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
    }

.video_title, .point_title, .job_title {
    color: #333;
}

/* 仕事内容 */
.job_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 20px;
}

.job_card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.job_title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
}

.job_text {
    color: #555;
}

/* タイムライン */
.timeline {
    border-left: 3px solid #333;
    padding-left: 25px;
}

.time_item {
    position: relative;
    font-size:16px;
}

    .time_item::before {
        content: "";
        position: absolute;
        left: -29px;
        top: 6px;
        width: 10px;
        height: 10px;
        background: #333;
        border-radius: 50%;
    }

    .time_item span {
        display: inline-block;
        min-width: 60px;
    }

/* 募集要項 */
.info_card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info_row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.label {
    width: 30%;
    font-weight: bold;
}

.value {
    width: 70%;
}

@media (max-width: 600px) {
    .info_row {
        flex-direction: column;
    }

    .label, .value {
        width: 100%;
    }

    .label {
        margin-bottom: 5px;
    }
}

/* CTA */
.recruit_cta, .mini_cta {
    text-align: center;
    margin: 0px 0px;
    padding: 40px 0px;
    background: linear-gradient(180deg, #ffffff, #f8f9fb);
    border-radius: 16px;
}

.cta_text {
    margin-bottom:30px;

}
.cta_button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #333 !important;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

    .cta_button:hover {
        background: #0f9d58;
        color: #fff !important;
        transition: all 0.25s ease;
    }