@charset "UTF-8";
/*----------------------------------------
    ページ固有スタイル
    2026.02～　追加ページに関するcssをこちらに記載しています
----------------------------------------*/
/***************************************
セクションパーツ
****************************************/
.p-section {
    padding-block: 30px;
    margin-inline: auto;
    width: fit-content;
}
.p-section.--blue {
    background: #cfe9f6;
    padding: 30px 20px;
    width: 100%;
}
@media screen and (min-width: 992px) {
    .p-section {
        padding-block: 60px;
    }
    .p-section.--blue {
        padding: 60px 40px;
    }
}

.p-section__title {
    font-size: clamp(12px, 4.8vw, 18px);
    color: #2b6887;
    text-align: left;
    margin-bottom: 10px;
    margin-inline: 0;
    padding-left: 7px;
    border-left: 6px solid #1e89bf;
}
@media screen and (min-width: 992px) {
    .p-section__title {
        font-size: clamp(10px, 1.25vw, 18px);
    }
}

/*----------------------------------------
    採用情報ページ
----------------------------------------*/

/* 求人情報テーブル */
.recruit-table {
    width: 100%;
    max-width: 1000px;
    border-collapse: collapse;
    margin-top: clamp(1rem, 2vw, 1.5rem);
}

.recruit-table th,
.recruit-table td {
    padding: clamp(1rem, 3vw, 1.75rem) clamp(1rem, 3vw, 2rem);
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.8;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

/* 見出しセル：アクセントカラーで視認性を高める */
.recruit-table th {
    width: 20%;
    white-space: nowrap;
    font-weight: bold;
    color: #1e89bf;
}

.recruit-table td {
    color: #333;
}

/* 先頭行の上ボーダー */
.recruit-table tr:first-child th,
.recruit-table tr:first-child td {
    border-top: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    .recruit-table th {
        width: 25%;
        font-size: clamp(0.75rem, 3.5vw, 0.875rem);
    }

    .recruit-table td {
        font-size: clamp(0.75rem, 3.5vw, 0.875rem);
    }
}

.recruit-btn__title {
    font-size: 18px;
    color: #1e89bf;
    text-align: center;
}

.recruit-btn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-inline: auto;
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .recruit-btn-box {
        flex-direction: row;
        max-width: 1000px;
        width: 100%;
    }
}

.recruit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}
.recruit-btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    padding: 16px 30px 15px 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, rgb(94, 187, 234) 80%, rgb(42, 116, 153) 110%);
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .recruit-btn {
        width: 100%;
        max-width: 500px;
    }
}

.recruit-btn.--tel a::before {
    content: "";
    display: inline-block;
    background-image: url(../../img/top/call.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    vertical-align: text-top;
}

/*----------------------------------------
    応募ページ
----------------------------------------*/
.wpcf7 input[type="file"] {
    border: 1px solid #c6c6c6;
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
    font-size: 0.875rem;
}
@media screen and (min-width: 360px) {
    .wpcf7 input[type="file"] {
        font-size: 1rem;
    }
}

.recruit-note {
    font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
    .recruit-note {
        font-size: 0.875rem;
        text-align: end;
    }
}

.recruit-entry-btn {
    display: flex;
    justify-content: center;
}

.recruit-entry-btn input {
    background: linear-gradient(180deg, rgb(94, 187, 234) 80%, rgb(42, 116, 153) 110%);
    box-shadow: 0 4px 7px -5px #000;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    width: 80vw;
    max-width: 300px;
    height: 40px;
    border-radius: 50px;
}

.prev input.back_button {
    text-align: center;
    box-shadow: 0 4px 7px -5px #000;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    width: 40vw;
    max-width: 300px;
    height: 40px;
    border-radius: 50px;
    background: linear-gradient(180deg, #b4b4b4 80%, #929292);
}