@charset "shift_jis";

/* ===================================================
   recruit.css 求人詳細ページ専用スタイル（リストの点削除版）
=================================================== */

/* 求人詳細セクション */
.recruit-detail-section {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 14.5px !important;
    color: #333;
    line-height: 1.6;
}

/* 求人詳細内のテキスト要素を一括調整 */
.recruit-detail-section p,
.recruit-detail-section li,
.recruit-detail-section th,
.recruit-detail-section td {
    font-size: 14.5px !important;
}

/* 求人ヘッダーエリア */
.recruit-detail-header {
    margin-bottom: 20px;
    border-top: 4px solid #0066cc;
    border-bottom: 2px solid #0066cc;
    padding: 15px 10px;
    background: #f0f6ff;
}

.recruit-detail-meta {
    font-size: 13px !important;
    color: #555;
    margin-bottom: 8px;
    font-weight: bold;
}

/* 会社名・店舗名のバッジ */
.recruit-badge {
    display: inline-block;
    background: #e60012;
    color: #fff;
    padding: 3px 10px;
    margin-right: 8px;
    font-size: 13px !important;
    font-weight: bold;
    border-radius: 2px;
}

.recruit-date {
    display: inline-block;
    color: #0066cc;
    font-size: 13px !important;
}

/* 記事タイトル */
.recruit-detail-header h3 {
    font-size: 17px !important; 
    margin: 0;
    color: #333;
    font-weight: bold;
}

/* 募集要項テーブル */
.recruit-detail-body {
    margin-bottom: 20px;
}

.recruit-detail-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333;
    border-left: 1px solid #ccc;
}

.recruit-detail-table th,
.recruit-detail-table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

/* テーブル見出し（左側） */
.recruit-detail-table th {
    width: 35%;
    background: #e6edf5;
    font-weight: bold;
    color: #003366;
    white-space: nowrap;
}

.recruit-detail-table td {
    background: #fff;
}

.recruit-detail-table td p {
    margin: 0 0 8px 0;
}

.recruit-detail-table td p:last-child {
    margin-bottom: 0;
}

.recruit-detail-table td ul {
    margin: 0 0 8px 0;
    padding-left: 0; /* 左側の余白をなくす */
}

/* リスト項目の左側の点（マーカー）を非表示にする */
.recruit-detail-table td ul li {
    list-style-type: none; /* 点を消去 */
    margin-bottom: 4px;
}

.recruit-detail-table td ul li:last-child {
    margin-bottom: 0;
}

/* 戻るアクションエリア */
.btn-back-to-list-box {
    text-align: center;
    margin: 40px 0 20px 0;
}

.btn-back-to-list {
    display: inline-block;
    background: #ff7f00;
    color: #ffffff !important;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14.5px !important;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-back-to-list:hover {
    background: #e56d00;
    color: #ffffff !important;
    transform: translateY(-1px);
}