/* 募集要項ページ専用のスタイル */
.recruitment-info {
    width: 100%;
    margin-bottom: 40px;
}

.recruitment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #cccccc;
}

.recruitment-table th,
.recruitment-table td {
    border: 1px solid #cccccc;
    padding: 15px;
    text-align: left;
    font-size: 14px;
}

/* 行の境界線スタイルを削除 */
.recruitment-table th {
    width: 25%;
    background-color: #f8f8f8;
    font-weight: bold;
}

.recruitment-message {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    line-height: 1.8;
}

.message {
    font-size: 14px;
}

.apply-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #006699;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #004d73;
}

.section-text {
    line-height: 1.8;
    margin-bottom: 20px;
}