                                                    /* ========================================
                                                                    ページヘッダー
                                                    ======================================== */
.page-header {
    text-align: center;
}

.page-header__title {
    color: #46A9EB;
    font-weight: 600;
}

.page-header__description {
    color: #000;
    text-align: center;
    font-weight: 300;
    line-height: 1.8;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .page-header {
        padding: 60px 20px;
    }
    
    .page-header__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .page-header__description {
        font-size: 16px;
        margin: 0 auto;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .page-header {
        padding: 50px 20px;
    }
    
    .page-header__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .page-header__description {
        font-size: 15px;
        margin: 0 auto;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .page-header {
        padding: 40px 15px;
    }
    
    .page-header__title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .page-header__description {
        font-size: 14px;
        line-height: 1.7;
    }
}

                                                    /* ========================================
                                                                募集要項セクション
                                                    ======================================== */
.recruit {
    width: 100%;
}

.recruit__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recruit__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.recruit__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.recruit__office {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.recruit__office-title {
    color: #2A6EBB;
}

.recruit__office-description {
    color: #000;
    line-height: 1.6;
}

.recruit__table {
    width: 100%;
    border: 1px solid #46A9EB;
    border-collapse: collapse; /* ←追加：セル間の余白をなくす */
    border-spacing: 0;         /* ←追加：セル間のスペースを0に */
}

.recruit__table tbody {
    width: 100%;
}

.recruit__table-header {
    background: #EEF6FB;
    border-right: 1px solid #46A9EB;
    border-bottom: 1px solid #46A9EB;
    color: #000;
    text-align: center;
    
}

.recruit__table-cell {
    border-bottom: 1px solid #46A9EB;
    color: #000;
    line-height: 1.5;
    text-align: center;
}

.recruit__table-row:last-child .recruit__table-header,
.recruit__table-row:last-child .recruit__table-cell {
    border-bottom: none;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .recruit {
        padding: 50px 0;
    }
    
    .recruit__container {
        max-width: 1200px;
        padding: 0 40px;
        gap: 50px;
    }
    
    .recruit__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .recruit__office {
        gap: 40px;
    }
    
    .recruit__office-title {
        font-size: 24px;
        font-weight: 500;
    }
    
    .recruit__office-description {
        font-size: 16px;
    }
    
    .recruit__table-header {
        width: 240px;
        padding: 15px 25px;
        font-size: 16px;
        font-weight: 500;
    }
    
    .recruit__table-cell {
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .recruit {
        padding: 60px 0;
    }
    
    .recruit__container {
        max-width: 900px;
        padding: 0 30px;
        gap: 40px;
    }
    
    .recruit__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .recruit__office {
        gap: 30px;
    }
    
    .recruit__office-title {
        font-size: 22px;
        font-weight: 400;
    }
    
    .recruit__office-description {
        font-size: 15px;
    }
    
    .recruit__table {
        width: 100%;
        table-layout: fixed; /* ←追加：セル幅を均等にする */
    }
    
    .recruit__table-header {
        width: 200px;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 400;
    }
    
    .recruit__table-cell {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;         /* ←追加：セルを横幅いっぱいに */
        box-sizing: border-box;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .recruit {
        padding: 50px 0;
    }
    
    .recruit__container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .recruit__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .recruit__office {
        gap: 25px;
    }
    
    .recruit__office-title {
        font-size: 20px;
        font-weight: 400;
    }
    
    .recruit__office-description {
        font-size: 14px;
    }
    
    .recruit__table {
         width: 100%;
        table-layout: fixed; /* ←追加：セル幅を均等にする */
    }
    
    .recruit__table-header {
        width: 150px;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 400;
    }
    
    .recruit__table-cell {
        padding: 10px 15px;
        font-size: 14px;
        width: 100%;         /* ←追加：セルを横幅いっぱいに */
        box-sizing: border-box;
    }
}

                                                        /* ========================================
                                                                    選考の流れセクション
                                                        ======================================== */
.selection {
    background: #EEF6FB;
}

.selection__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selection__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.selection__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.selection__steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selection__step {
    width: 100%;
    background: #FFF;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.selection__step-content {
    display: flex;
    align-items: center;
}

.selection__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #2A6EBB;
    color: #FFF;
    font-weight: 600;
    flex-shrink: 0;
}

.selection__step-title {
    color: #000;
    text-align: center;
    font-weight: 600;
}

.selection__step-description {
    color: #000;
    font-weight: 300;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .selection {
        padding: 80px 0;
    }
    
    .selection__container {
        max-width: 1200px;
        padding: 0 40px;
        gap: 50px;
    }
    
    .selection__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .selection__steps {
        gap: 25px;
    }
    
    .selection__step {
        max-width: 800px;
        padding: 30px 50px;
        gap: 100px;
    }
    
    .selection__step-content {
        gap: 25px;
        width: 300px;
    }
    
    .selection__step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .selection__step-title {
        font-size: 22px;
    }
    
    .selection__step-description {
        font-size: 16px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .selection {
        padding: 60px 0;
    }
    
    .selection__container {
        max-width: 900px;
        padding: 0 30px;
        gap: 40px;
    }
    
    .selection__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .selection__steps {
        gap: 20px;
    }
    
    .selection__step {
        padding: 25px 30px;
        gap: 30px;
    }
    
    .selection__step-content {
        gap: 20px;
    }
    
    .selection__step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .selection__step-title {
        font-size: 20px;
    }
    
    .selection__step-description {
        font-size: 15px;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .selection {
        padding: 50px 0;
    }
    
    .selection__container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .selection__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .selection__steps {
        gap: 15px;
    }
    
    .selection__step {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .selection__step-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .selection__step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .selection__step-title {
        font-size: 18px;
    }
    
    .selection__step-description {
        font-size: 14px;
    }
}

/* ========================================
    応募フォームセクション
======================================== */
.application {
    width: 100%;
}

.application__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.application__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.application__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.application__form-wrapper {
    width: 100%;
}

.application__form {
    width: 100%;
    background: #EEF6FB;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.aplication__clums {
    display: flex;
}

.application__field,
.application__fields {
    display: flex;
    flex-direction: column;
}

.application__label {
    color: #000;
    font-weight: 600;
}

.application__required {
    color: #FF6F6F;
    font-weight: 600;
}

.application__input,
.application__select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.application__textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.application__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.application__submit-btn {
    background: #2A6EBB;
    color: #FFF;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.application__submit-btn:hover {
    background: #1a5ba8;
}

.wpcf7-spinner {
    position: absolute;
    right: 0;
    transform: translateX(110%);
    margin: 0;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .application {
        padding: 80px 0;
    }
    
    .application__container {
        max-width: 1000px;
        padding: 0 40px;
        gap: 50px;
    }
    
    .application__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .application__form {
        padding: 50px 40px;
        gap: 35px;
    }
    
    .aplication__clums {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }
    
    .application__fields {
        flex: 1;
        gap: 10px;
    }
    
    .application__field {
        gap: 10px;
    }
    
    .application__label {
        font-size: 16px;
    }
    
    .application__required {
        font-size: 14px;
        margin-left: 5px;
    }
    
    .application__input,
    .application__select {
        height: 42px;
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .application__textarea {
        min-height: 150px;
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .application__submit {
        margin-top: 30px;
    }
    
    .application__submit-btn {
        padding: 14px 50px;
        font-size: 17px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .application {
        padding: 60px 0;
    }
    
    .application__container {
        max-width: 800px;
        padding: 0 30px;
        gap: 40px;
    }
    
    .application__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .application__form {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .aplication__clums {
        flex-direction: column;
        gap: 30px;
    }
    
    .application__fields,
    .application__field {
        gap: 8px;
    }
    
    .application__label {
        font-size: 15px;
    }
    
    .application__required {
        font-size: 13px;
        margin-left: 5px;
    }
    
    .application__input,
    .application__select {
        height: 40px;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .application__textarea {
        min-height: 120px;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .application__submit {
        margin-top: 25px;
    }
    
    .application__submit-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .application {
        padding: 50px 0;
    }
    
    .application__container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .application__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .application__form {
        padding: 25px 20px;
        gap: 25px;
    }
    
    .aplication__clums {
        flex-direction: column;
        gap: 25px;
    }
    
    .application__fields,
    .application__field {
        gap: 6px;
    }
    
    .application__label {
        font-size: 14px;
    }
    
    .application__required {
        font-size: 12px;
        margin-left: 3px;
    }
    
    .application__input,
    .application__select {
        height: 38px;
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .application__textarea {
        min-height: 100px;
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .application__submit {
        margin-top: 20px;
    }
    
    .application__submit-btn {
        padding: 10px 30px;
        font-size: 15px;
    }
}