@charset "UTF-8";


/*colum105*/
#colum105 {
    text-align: center;
    margin: 20px 0;
}


/* カンマで区切って、リンクのすべての状態を指定します */
#colum105 a,
#colum105 a:link,
#colum105 a:visited {

    display: inline-block;
    padding: 16px 48px;
    background-color: #0056b3;
    /* ご指定の青色に変更 */
    color: #ffffff !important;
    /* ← !important を追加 */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 30px;
    transition: all 0.3s ease;
    border-bottom: 4px solid #003d82;
    /* 立体感用の線を濃い青色に調整 */
}

#colum105 a:hover {
    opacity: 0.8;
    transform: translateY(2px);
    border-bottom: 2px solid #003d82;
    /* 押し込んだ時の影の調整 */
    margin-top: 2px;
}

/*colum105*/

/*colum106*/
/* テーブル全体の枠組み */
.recruit-table-wrapper {
    max-width: 900px;
    margin: 2em auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 25px;
    /* お好みのサイズに */

}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
}

.recruit-table th,
.recruit-table td {
    padding: 10px 24px;
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.6;
}

/* 最後の行は下線を消す */
.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
    border-bottom: none;
}

/* 見出し（左側）：単色背景でシンプルに */
.recruit-table th {
    background-color: #e4f0f8;
    color: #296ad3;
    font-weight: normal;
    width: 30%;
    text-align: left;
    position: relative;
    padding-left: 28px;
    /* ストライプ用の余白 */
}


/* データ（右側）の文字色 */
.recruit-table td {
    color: #4b5563;

}

/* ホバー（マウスオーバー）時のごく僅かな背景色変化 */
.recruit-table tr {
    transition: background-color 0.2s ease;
}

.recruit-table tr:hover {
    background-color: #fcfdfe;
}

/* スマホ対応（レスポンシブ） */
@media screen and (max-width: 600px) {

    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .recruit-table th {
        border-bottom: none;
        padding-bottom: 8px;
        padding-left: 20px;
    }

    .recruit-table td {
        padding-top: 0;
        padding-bottom: 24px;
        padding-left: 20px;
    }

    .recruit-table th::before {
        height: 50%;
        /* スマホ時はラインの長さを微調整 */
    }
}

/*colum106*/