/* ==========================================
   採用情報ページ専用CSS
   ========================================== */

/* ==========================================
   レイアウト
   ========================================== */

.l_recruit {
    max-width: 1148px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

.l_recruit_inner {
    width: 100%;
}

/* ページタイトル */
.l_recruit .c_page_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 2.5rem;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid var(--line-solid);
    text-align: left;
}

/* ==========================================
   キャッチコピーセクション
   ========================================== */

.c_recruit_hero {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.c_hero_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cp-blue);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

/* ==========================================
   メインコンテンツセクション
   ========================================== */

.c_recruit_about {
    margin-bottom: 4rem;
}

.c_about_layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.c_about_heading {
    flex: 0 0 300px;
}

.c_about_heading h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.c_about_heading h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background-color: var(--cp-blue);
}

.c_about_text {
    flex: 1;
}

.c_about_text p {
    font-size: 1rem;
    line-height: 2;
    color: var(--c-navy);
    margin-bottom: 1.5rem;
}

.c_about_text p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   オフィス写真ギャラリー
   ========================================== */

.c_recruit_gallery {
    margin-bottom: 4rem;
}

.c_gallery_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.c_gallery_item {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 8px;
}

.c_gallery_item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.c_gallery_item:hover img {
    transform: scale(1.05);
}

/* ==========================================
   数字で見るチャットプラス
   ========================================== */

.c_recruit_numbers {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.c_recruit_numbers .c_section_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-navy);
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cp-blue);
}

.c_numbers_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.c_number_item {
    text-align: center;
}

.c_number_value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cp-blue);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.c_number_unit {
    font-size: 1.25rem;
    font-weight: 400;
    margin-left: 0.25rem;
}

.c_number_label {
    font-size: 1rem;
    color: var(--sub-text);
    font-weight: 500;
}

/* ==========================================
   募集要項
   ========================================== */

.c_recruit_details {
    margin-bottom: 4rem;
}

.c_recruit_details .c_section_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cp-blue);
}

.c_details_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.c_detail_column {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.c_detail_heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--line-solid);
}

.c_detail_column .c_detail_heading:not(:first-child) {
    margin-top: 2rem;
}

.c_detail_list {
    margin-bottom: 1rem;
}

.c_detail_list dt {
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.c_detail_list dt:first-child {
    margin-top: 0;
}

.c_detail_list dd {
    margin-left: 0;
    margin-bottom: 0.5rem;
    color: var(--sub-text);
    line-height: 1.8;
}

.c_detail_list ul {
    list-style: none;
    padding-left: 1rem;
}

.c_detail_list ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.25rem;
}

.c_detail_list ul li::before {
    content: '・';
    position: absolute;
    left: 0;
}

.c_detail_column p {
    color: var(--sub-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.c_detail_note {
    font-size: 0.875rem;
    color: var(--sub-text);
    margin-top: 0.25rem;
}

.c_detail_insurance,
.c_detail_welfare {
    list-style: none;
    padding-left: 1rem;
}

.c_detail_insurance li,
.c_detail_welfare li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: var(--sub-text);
}

.c_detail_insurance li::before,
.c_detail_welfare li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cp-blue);
}

/* ==========================================
   エントリーボタン
   ========================================== */

.c_recruit_entry {
    text-align: center;
    margin: 4rem 0;
}

.btn_entry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--cp-blue);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 164, 220, 0.3);
}

.btn_entry:hover {
    background-color: #0088b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 164, 220, 0.4);
}

.btn_entry_text {
    letter-spacing: 0.05em;
}

.btn_entry_arrow {
    font-size: 1.5rem;
}

/* ==========================================
   追加コンテンツエリア
   ========================================== */

.c_recruit_content {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line-solid);
}

.c_recruit_content h2,
.c_recruit_content h3,
.c_recruit_content h4 {
    color: var(--c-navy);
    margin-bottom: 1rem;
}

.c_recruit_content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==========================================
   レスポンシブ対応
   ========================================== */

/* タブレット（768px以下） */
@media screen and (max-width: 768px) {
    .l_recruit {
        padding: 0 1rem 3rem;
    }

    /* キャッチコピー */
    .c_hero_title {
        font-size: 1.75rem;
    }

    /* 2カラムレイアウト */
    .c_about_layout {
        flex-direction: column;
        gap: 2rem;
    }

    .c_about_heading {
        flex: 1;
    }

    .c_about_heading h3 {
        font-size: 1.5rem;
    }

    /* ギャラリー */
    .c_gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 数字セクション */
    .c_numbers_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .c_number_value {
        font-size: 2rem;
    }

    /* 募集要項 */
    .c_details_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .c_detail_column {
        padding: 1.5rem;
    }

    /* エントリーボタン */
    .btn_entry {
        font-size: 1.125rem;
        padding: 1.25rem 2rem;
    }
}

/* モバイル（480px以下） */
@media screen and (max-width: 480px) {
    .l_recruit .c_page_title {
        font-size: 1.5rem;
    }

    /* キャッチコピー */
    .c_recruit_hero {
        padding: 2rem 0;
    }

    .c_hero_title {
        font-size: 1.5rem;
    }

    /* メインコンテンツ */
    .c_about_heading h3 {
        font-size: 1.25rem;
        padding-left: 0.75rem;
    }

    .c_about_text p {
        font-size: 0.875rem;
    }

    /* ギャラリー */
    .c_gallery_grid {
        grid-template-columns: 1fr;
    }

    /* 数字セクション */
    .c_recruit_numbers {
        padding: 2rem 1rem;
    }

    .c_numbers_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* 募集要項 */
    .c_detail_heading {
        font-size: 1.125rem;
    }

    .c_detail_column {
        padding: 1rem;
    }

    /* エントリーボタン */
    .btn_entry {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }
}