@media screen and (min-width: 600px) {
    .interview {
        max-width: 800px;
        margin: auto;
        padding-top: 30px;
    }

    .interview img {
        padding-bottom: 20px;
    }


    .interview .flex {
        display: flex;
        margin: auto;
        align-items: stretch;
        /* 子要素の高さを揃える */
        justify-content: space-between;
        /* 左右要素の間に適切なスペース */

    }

    .interview .flex h1 {
        font-size: 22px;
        font-weight: bold;
    }

    .interview .flex p {
        padding-bottom: 20px;
    }

    .interview .flex .leftside,
    .interview .flex .rightside {
        width: 45%;
        border: 1.5px solid #000000;
        padding: 20px;
        box-sizing: border-box;
        /* padding, borderを含めたサイズ計算 */
        margin: 0;
        /* 不要なautoマージンを除外 */
    }

}



@media screen and (max-width: 600px) {

    .interview {
        width: 90%;
        margin: auto;
        padding-top: 30px;
    }

    .interview img {
        padding-bottom: 20px;
    }


    .interview .flex h1 {
        font-size: 22px;
        font-weight: bold;
    }

    .interview .flex p {
        padding-bottom: 20px;
    }






    .interview .flex .leftside,
    .interview .flex .rightside {
        border: 1.5px solid #000000;
        padding: 20px;
        box-sizing: border-box;
        /* padding, borderを含めたサイズ計算 */
        margin: 0;
        /* 不要なautoマージンを除外 */
    }


}









* {
    box-sizing: border-box;
}

.recruitment-form {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #EFA125;
    padding: 18px;
    border-radius: 15px;
    /* 丸くするためのスタイル */
}

.recruitment-form a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    /* リンクの下線を削除するためのスタイル */
}

.recruitment-form a:hover {
    text-decoration: underline;
    /* マウスオーバー時に下線を追加 */
}


.fixed-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #EFA125;
    border-radius: 0px;
    text-align: center;
    padding: 14px;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}

.fixed-button a {
    text-decoration: none;
}

.fixed-button p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}


img {
    height: auto;
    max-width: 100%;
}

body {
    color: #555;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans CJK JP";
    font-weight: 500;
    line-height: 1.6;
}

li {
    list-style-type: none;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.br_pc {
    display: block;
}

.br_sp {
    display: none;
}

section {
    margin: 100px auto;
    max-width: 1440px;
    width: 100%;
}

.cta {
    margin: 30px auto;
    text-align: center;
}

.fv {
    text-align: center;
}

.fv img {
    margin: 0 auto;
}

.section_title {
    color: #0e337b;
    font-size: 40px;
    font-weight: bold;
    margin: 40px 0;
    text-align: center;
}

.section_subtitle {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 40px 0;
    text-align: center;
}

.schedule_img {
    text-align: center;
}

.reason .list {
    display: flex;
    justify-content: center;
}


.reason .list .list_item {
    width: 25%;
}

.reason .list .list_item:not(:last-child) {
    margin-right: 40px;
}

.reason .list .list_item .text {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}

.interview .list {
    display: flex;
    justify-content: center;
}

.interview .list .list_item:not(:last-child) {
    margin-right: 40px;
}

.Welfare .images_box {
    text-align: center;
}

.faq dl {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.faq dt {
    background-color: #0e337b;
    color: #fff;
    font-size: 24px;
    padding: 20px;
}

.faq dd {
    border: 1px solid #0e337b;
    margin-bottom: 40px;
    padding: 20px;
}

.footer_contact {
    text-align: center;
}

.footer_contact .text {
    color: #0e337b;
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0;
}

.footer .content {
    background-color: #555;
    color: #fff;
    margin-top: 40px;
    padding: 10px 0;
    text-align: center;
}


.footer a {
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.essentials {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.essentials p {
    margin-top: 20px;
}

.essentials h3 {
    background-color: #0e337b;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px 20px;
}

.form {
    margin-top: 40px;
}




@media screen and (max-width: 600px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .br_pc {
        display: none;
    }

    .br_sp {
        display: block;
    }

    .fv img {
        width: 100%;
    }

    section {
        margin: 40px auto;
        max-width: 400px;
        width: 100%;
    }

    .section_title {
        color: #0e337b;
        font-size: 24px;
        font-weight: bold;
        margin: 20px 0;
        text-align: center;
    }

    .section_subtitle {
        color: #333;
        font-size: 16px;
        font-weight: bold;
        margin: 10px 0 20px 0;
        text-align: center;
    }

    .reason .list {
        flex-direction: column;
    }

    .reason .list .list_item {
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }

    .reason .list .list_item .text {
        text-align: center;
    }

    .reason .list .list_item .sub_text {
        margin: 0 auto;
        text-align: left;
        width: 90%;
    }

    .reason .list .list_item:not(:last-child) {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .interview .list {
        flex-direction: column;
    }

    .interview .list .list_item:not(:last-child) {
        margin: 0;
        margin-bottom: 20px;
    }

    .footer_contact .text {
        font-size: 20px;
    }

    .cta {
        width: 80%;
    }

    .essentials {
        margin: 0 auto;
        width: 96%;
    }

    .essentials p {
        font-size: 15px;
        padding: 0 15px;
    }
}


.an2-fadeup {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: fadeup;
    background-color: #ff7f50;
    font-size: 30px;
    font-weight: bold;
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*アニメーション要素のスタイル*/
.animation {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.5s;
    visibility: hidden;
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}