body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../images/background.png');
    /* 画像のパスを指定 */
    background-size: cover;
    /* 画像をカバーとして設定 */
    background-repeat: no-repeat;
    /* 画像を繰り返さない */
    height: 100%;
}

.step-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    position: relative;
    z-index: 5;
}

.step-form {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    border-top: 2px solid #ccc;
    width: 100%;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    text-align: center;
}

.progress-bar {
    display: flex;
    /* フレックスコンテナに設定 */
    justify-content: space-between;
    /* アイテムを均等に分散 */
    align-items: center;
    /* アイテムを中央揃え */
    width: 100%;
    /* プログレスバーの全幅 */
    margin: 10% auto;
    /* 中央寄せ */
    padding: 0;
    /* デフォルトのパディングを無効に */
    list-style: none;
    /* リストマーカーを無効に */
    overflow: hidden;
    /* はみ出した内容を非表示に */
}


.progress-bar-fill {
    width: 0%;
    /* 初期状態で0% */
    /* その他のスタイル */
}

.progress-indicator {
    flex: 1;
    /* 各インジケーターが同じ空間を取るように */
    text-align: center;
    /* テキストを中央揃え */
}

/* アクティブなインジケーターのスタイル */
.progress-indicator.active .progress-text {
    color: red;
    /* アクティブなテキストの色を変更 */
}

.progress-text {
    font-size: 10px;
    font-weight: bold;
}

@media screen and (max-width: 400px) {
    .progress-bar {
        width: 100%;
    }
}

.step-icon {
    position: absolute;
    top: -50px;
    width: 40px;
    height: auto;
    z-index: 2;
    transition: left 0.3s ease-in-out;
    /* 位置変更時のアニメーションを追加 */
}

.step-icon-first {
    position: absolute;
    /* アイコンを絶対位置で配置 */
    top: -50px;
    /* アイコンの上端をステップバーの上に配置 */
    left: calc(6% - 20px);
    /* アイコンの左端をステップバーの左端から6%の位置に調整 */
    /* 20pxはアイコンの幅の半分（アイコンの中心を正確な位置に合わせるため） */
}


.step-icon-container {
    position: absolute;
    top: 10px;
    /* ステップナビゲーションの上に配置 */
    left: 50%;
    /* 中央に配置 */
    transform: translateX(-50%);
    /* 中央寄せの調整 */
    display: none;
    /* 初期状態では非表示 */
}

.form-step {
    display: none;
}

.active-step {
    display: block;
}

.button {
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: black;
    text-align: center;
    cursor: pointer;
    outline: none;
    margin: 5px;
    display: inline-block;
}

/* レスポンシブデザインの追加 */
@media (max-width: 600px) {
    .step-form-container {
        width: 90%;
        padding: 20px;
    }

    .next-button {
        width: 100%;
        /* スマートフォンではボタンの幅を調整 */
    }

    .progress-indicator {
        margin-right: 2%;
        /* スマートフォンではステップインジケータのマージンを調整 */
    }

}

.btn-label {
    block-size: 38px;
    border-block-end-color: rgb(85, 85, 85);
    border-block-end-style: solid;
    border-block-end-width: 1px;
    border-block-start-color: rgb(85, 85, 85);
    border-block-start-style: solid;
    border-block-start-width: 1px;
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
    border-inline-end-color: rgb(85, 85, 85);
    border-inline-end-style: solid;
    border-inline-end-width: 1px;
    border-inline-start-color: rgb(85, 85, 85);
    border-inline-start-style: solid;
    border-inline-start-width: 1px;
    border-start-end-radius: 4px;
    border-start-start-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 6px -2px;
    box-sizing: border-box;
    caret-color: rgb(112, 112, 112);
    color: rgb(112, 112, 112);
    column-rule-color: rgb(112, 112, 112);
    cursor: pointer;
    display: inline-block;
    height: 38px;
    inline-size: 180.094px;
    justify-content: flex-end;
    margin-block-end: 10px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-block-end: 9px;
    padding-block-start: 9px;
    perspective-origin: 90.0469px 19px;
    text-align: center;
    text-decoration: none solid rgb(112, 112, 112);
    text-emphasis-color: rgb(112, 112, 112);
    transform-origin: 90.0469px 19px;
    width: 180.094px;
    background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 1px solid rgb(85, 85, 85);
    border-radius: 4px;
    flex-flow: column nowrap;
    font: 700 12px -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    margin: 0px 0px 10px;
    outline: rgb(112, 112, 112) none 0px;
    padding: 9px 0px;
    margin-left: 10px;
}

/*#LABEL_1*/

.btn-label:after {
    border-block-end-color: rgb(112, 112, 112);
    border-block-start-color: rgb(112, 112, 112);
    border-inline-end-color: rgb(112, 112, 112);
    border-inline-start-color: rgb(112, 112, 112);
    caret-color: rgb(112, 112, 112);
    color: rgb(112, 112, 112);
    column-rule-color: rgb(112, 112, 112);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgb(112, 112, 112);
    text-emphasis-color: rgb(112, 112, 112);
    border: 0px none rgb(112, 112, 112);
    font: 700 12px -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    outline: rgb(112, 112, 112) none 0px;
}

/*#LABEL_1:after*/

.btn-label:before {
    border-block-end-color: rgb(112, 112, 112);
    border-block-start-color: rgb(112, 112, 112);
    border-inline-end-color: rgb(112, 112, 112);
    border-inline-start-color: rgb(112, 112, 112);
    caret-color: rgb(112, 112, 112);
    color: rgb(112, 112, 112);
    column-rule-color: rgb(112, 112, 112);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgb(112, 112, 112);
    text-emphasis-color: rgb(112, 112, 112);
    border: 0px none rgb(112, 112, 112);
    font: 700 12px -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    outline: rgb(112, 112, 112) none 0px;
}

/*#LABEL_1:before*/

.btn-checkbox {
    border-block-end-color: rgb(0, 0, 0);
    border-block-end-style: none;
    border-block-end-width: 0px;
    border-block-start-color: rgb(0, 0, 0);
    border-block-start-style: none;
    border-block-start-width: 0px;
    border-inline-end-color: rgb(0, 0, 0);
    border-inline-end-style: none;
    border-inline-end-width: 0px;
    border-inline-start-color: rgb(0, 0, 0);
    border-inline-start-style: none;
    border-inline-start-width: 0px;
    cursor: default;
    display: none;
    inline-size: 250px;
    margin-block-end: 3px;
    margin-block-start: 3px;
    margin-inline-end: 3px;
    margin-inline-start: 4px;
    padding-block-end: 0px;
    padding-block-start: 0px;
    padding-inline-end: 0px;
    padding-inline-start: 0px;
    text-align: left;
    width: 250px;
    background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(0, 0, 0);
    font: 16px / 32px Arial;
    margin: 3px 3px 3px 4px;
    padding: 0px;
}

/*#INPUT_2*/

.btn-checkbox:after {
    cursor: default;
    text-align: left;
    font: 16px / 32px Arial;
}

/*#INPUT_2:after*/

..btn-checkbox:before {
    cursor: default;
    text-align: left;
    font: 16px / 32px Arial;
}

/*#INPUT_2:before*/



.lpCrsSemB_top_page__zKZLY {
    background-position: top;
    background-size: 100% auto;
    background-repeat: no-repeat
}

.Header2_header_container__Wxg8_ {
    background: #595959;
    color: #fff;
    font-weight: 700;
    padding: 7px 5px;
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    grid-template-areas: ". center cta";
    align-items: center;
    justify-items: center
}

@media (max-width:768px) {
    .Header2_header_container__Wxg8_ {
        grid-template-columns: 1fr;
        grid-template-areas: "center"
    }
}

.Header2_header_container__Wxg8_ .Header2_content__dmXf_ {
    grid-area: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto
}

.Header2_header_container__Wxg8_ .Header2_row__mfmHo.Header2_center__mNMUd {
    display: flex;
    align-items: center
}

.Header2_header_container__Wxg8_ .Header2_row__mfmHo.Header2_mb__K7t_N {
    margin-bottom: 2px
}

.Header2_header_container__Wxg8_ .Header2_pic__nXs5G {
    display: flex
}

.Header2_header_container__Wxg8_ .Header2_powered__JaQy5 {
    font-weight: 400;
    font-size: 6px;
    margin-left: 6px
}

.Header2_header_container__Wxg8_ .Header2_logo__EQZhL {
    width: 70px
}

.Header2_header_container__Wxg8_ .Header2_logo_xwork__7Asr3 {
    width: 50px
}

.Header2_header_container__Wxg8_ .Header2_qualification__PbIwx {
    font-size: 10px;
    margin-left: 5px
}

.Header2_header_container__Wxg8_ .Header2_small__wK28m {
    font-size: 10px
}

.Header2_header_container__Wxg8_ .Header2_big__sb525 {
    font-size: 12px
}

.Header2_header_container__Wxg8_ .Header2_blue__OwiaC {
    color: #44e5de
}

.Header2_header_container__Wxg8_ .Header2_pink__Jug4W {
    color: #ee9891
}

.Header2_header_container__Wxg8_ .Header2_right__ckUai {
    grid-area: cta
}

@media (max-width:768px) {
    .Header2_header_container__Wxg8_ .Header2_right__ckUai {
        display: none
    }
}

.Header2_header_container__Wxg8_ .Header2_right__ckUai .Header2_cta_btn__cKRmP {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    width: 200px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #00f;
    border-radius: 5px;
    color: #00f;
    transition: all .3s ease 0s
}

.Header2_header_container__Wxg8_ .Header2_right__ckUai .Header2_cta_btn__cKRmP:hover {
    color: #fff;
    background: #00f
}

.Modal_modal_container__Uc8UT {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
    overflow: scroll
}

.Modal_modal_container__Uc8UT.Modal_active__iZKkj {
    display: flex;
    justify-content: center;
    align-items: flex-start
}

.Modal_modal_container__Uc8UT .Modal_modal__wJgmb {
    width: 60%;
    margin: 20px auto;
    background: #fff;
    position: relative;
    padding: 35px 30px;
    border-radius: 5px
}

@media (max-width:420px) {
    .Modal_modal_container__Uc8UT .Modal_modal__wJgmb {
        width: 80%
    }
}

.Modal_modal_container__Uc8UT .Modal_modal__wJgmb .Modal_close__YSL7Z {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer
}

.ModalContents_modal_content__VmwxT.ModalContents_about__wZYTV {
    width: 90%;
    margin: 0 auto;
    padding: 30px 100px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    box-sizing: border-box
}

@media (max-width:1024px) {
    .ModalContents_modal_content__VmwxT.ModalContents_about__wZYTV {
        padding: 30px 50px
    }
}

@media (max-width:768px) {
    .ModalContents_modal_content__VmwxT.ModalContents_about__wZYTV {
        border: none;
        padding: 30px 0
    }
}

.ModalContents_modal_content__VmwxT .ModalContents_text-center__DipAu {
    text-align: center
}

.ModalContents_modal_content__VmwxT .ModalContents_title__rf3TF {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px
}

.ModalContents_modal_content__VmwxT .ModalContents_subject_container__40zJT {
    width: 85%;
    margin: 30px auto 50px;
    text-align: center;
    font-weight: 700
}

@media (max-width:1024px) {
    .ModalContents_modal_content__VmwxT .ModalContents_subject_container__40zJT {
        width: 100%
    }
}

@media (max-width:768px) {
    .ModalContents_modal_content__VmwxT .ModalContents_subject_container__40zJT {
        text-align: left
    }
}

.ModalContents_modal_content__VmwxT .ModalContents_subject_container__40zJT .ModalContents_plane__fytTn {
    font-size: 14px
}

.ModalContents_modal_content__VmwxT .ModalContents_subject_container__40zJT .ModalContents_plane__fytTn.ModalContents_mb-1__h_IG8 {
    margin-bottom: 1.5rem
}

@media (max-width:768px) {
    .ModalContents_modal_content__VmwxT .ModalContents_subject_container__40zJT .ModalContents_sp_none__RUDXK {
        display: none
    }
}

.ModalContents_modal_content__VmwxT .ModalContents_subject__MQApt {
    font-size: 13px;
    font-weight: 700;
    margin: 20px 0 3px
}

.ModalContents_modal_content__VmwxT .ModalContents_subject__MQApt.ModalContents_big__a_d1x {
    font-size: 16px;
    margin-top: 30px
}

.ModalContents_modal_content__VmwxT .ModalContents_subject__MQApt.ModalContents_underline__yeVdU {
    border-bottom: 1px solid #000;
    padding-left: 5px;
    margin-bottom: 10px
}

.ModalContents_modal_content__VmwxT .ModalContents_sub_subject__MQeAK {
    font-size: 11px;
    font-weight: 700;
    margin: 20px 0 3px
}

.ModalContents_modal_content__VmwxT .ModalContents_plane__fytTn {
    font-size: 13px;
    margin: 0 0 5px;
    line-height: 1.5
}

.ModalContents_modal_content__VmwxT .ModalContents_list__wuKCn {
    font-size: 13px;
    margin: 0 0 5px 10px
}

.ModalContents_modal_content__VmwxT a {
    text-decoration: none;
    color: gray
}

footer .Footer_recruit-times__2s2er {
    background: #fefff2;
    color: #0d7e91;
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 5px 15px;
    margin: 0;
    font-size: 15px;
    display: block
}

@media (max-width:420px) {
    footer .Footer_recruit-times__2s2er {
        text-align: right;
        font-size: 14px;
        display: flex
    }
}

footer .Footer_recruit-times__2s2er.Footer_text-center__ydzPW {
    font-size: 13px
}

@media (max-width:420px) {
    footer .Footer_recruit-times__2s2er.Footer_text-center__ydzPW {
        text-align: center;
        font-size: 12px;
        display: block
    }
}

footer .Footer_recruit-times__2s2er .Footer_cta_btn__QhUiL {
    border: 1px solid #00f;
    color: #00f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all .3s ease 0s;
    background: #fff;
    font-size: 11px;
    padding: 0 5px;
    box-sizing: border-box;
    display: none
}

@media (max-width:420px) {
    footer .Footer_recruit-times__2s2er .Footer_cta_btn__QhUiL {
        display: inline-block
    }
}

footer .Footer_bg-black__ycxPp {
    background: #000
}

footer .Footer_top__rVDRG {
    display: flex;
    justify-content: center;
    width: 80%;
    padding: 20px 0 0;
    margin: 0 auto;
    color: #fff
}

@media (max-width:420px) {
    footer .Footer_top__rVDRG {
        width: 90%;
        justify-content: space-evenly;
        flex-wrap: wrap
    }
}

footer .Footer_top__rVDRG p {
    margin: 0 0 0 20px;
    font-size: 14px;
    cursor: pointer
}

@media (max-width:420px) {
    footer .Footer_top__rVDRG p {
        margin: 0;
        font-size: 10px
    }
}

footer .Footer_top__rVDRG a {
    margin: 0 0 0 20px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    color: #fff
}

@media (max-width:420px) {
    footer .Footer_top__rVDRG a {
        margin: 0;
        font-size: 10px
    }
}

footer .Footer_bottom__0HzHr {
    color: gray;
    text-align: center;
    padding: 15px 0 20px
}

footer .Footer_bottom__0HzHr .Footer_copyright__QmGIo {
    font-size: 12px;
    margin: 0
}

@media (max-width:420px) {
    footer .Footer_bottom__0HzHr .Footer_copyright__QmGIo {
        font-size: 10px
    }
}

.PopupModal_modal_container__RUyhz {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
    overflow: scroll
}

.PopupModal_modal_container__RUyhz.PopupModal_active__Ka4oJ {
    display: flex;
    justify-content: center;
    align-items: center
}

.RegisterSection_register_section__wRkVc {
    padding-top: 20px;
    padding-bottom: 40px;
}

@media (max-width:768px) {
    .RegisterSection_register_section__wRkVc {
        padding: 0;
        border: none;
        padding-top: 5%;
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_wrapper__vZH4k {
    max-width: 420px;
    margin: 0 auto;
    min-height: calc(100vh - 183px)
}

@media (max-width:768px) {
    .RegisterSection_register_section__wRkVc .RegisterSection_wrapper__vZH4k {
        min-height: calc(100vh - 113px)
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_answer_container__0vBN4.RegisterSection_step0__jdnuB {
    display: flex;
    flex-direction: column;
    align-items: center
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_step0__jdnuB {
    display: inline-block;
    border: 2px solid #555;
    cursor: pointer;
    color: #707070;
    font-weight: 700;
    border-radius: 40px;
    width: 250px;
    text-align: center;
    box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, .5);
    font-size: 20px;
    position: relative;
    width: 80%;
    box-sizing: border-box;
    padding: 28px 0;
    border-radius: 60px;
    margin: 0 0 20px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_step0__jdnuB:last-child {
    margin: 0 0 30px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_step0__jdnuB:after {
    position: absolute;
    content: "▶︎";
    color: #ff9b9a;
    top: 50%;
    right: 20px;
    transform: translateY(-50%)
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_step0__jdnuB.RegisterSection_checked__dE4bo {
    background: #ff348e;
    color: #fff
}

.RegisterSection_register_section__wRkVc .RegisterSection_step_container__ZQSrN {
    position: relative
}

@media (max-width:768px) {
    .RegisterSection_register_section__wRkVc .RegisterSection_step_container__ZQSrN {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #fff
    }

    .RegisterSection_register_section__wRkVc .RegisterSection_step_container__ZQSrN.RegisterSection_step_0__fNBhv {
        justify-content: center
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_step_progress_container__mvVuB {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: hsla(0, 0%, 100%, .9)
}

@media (max-width:768px) {
    .RegisterSection_register_section__wRkVc .RegisterSection_step_progress_container__mvVuB {
        border: none
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_step_progress___k6aI {
    width: 80%;
    margin: 0 auto
}

.RegisterSection_register_section__wRkVc .RegisterSection_step_progress___k6aI img {
    margin-top: 1px;
    width: 100%
}

.RegisterSection_register_section__wRkVc .RegisterSection_not_public_alert__1fVOK {
    text-align: center;
    font-size: 12px;
    color: #4e3838;
    margin-top: 0;
    margin-bottom: 3px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U {
    border: 1px solid #ccc;
    background: hsla(0, 0%, 100%, .9);
    padding-top: 25px;
    padding-bottom: 15px
}

@media (max-width:768px) {
    .RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U {
        border: none
    }
}

@media (max-width:420px) {
    .RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U {
        padding-top: 3px;
        padding-bottom: 3px
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va {
    display: none
}

@keyframes RegisterSection_show-form__T88ik {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va.RegisterSection_active__05MEz {
    display: block;
    margin: 0 auto;
    padding-left: 0;
    animation: RegisterSection_show-form__T88ik .3s linear 0s
}

.RegisterSection_question__v5yHf {
    margin: 10px auto 0 auto;
    font-size: 15px;
    color: #4e3838;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.RegisterSection_question__v5yHf .RegisterSection_low__07Pet {
    margin-top: 30px
}

.RegisterSection_title__Os_Do {
    margin: 10px 0 0 0;
    font-size: 18px;
    line-height: 1.5
}

.RegisterSection_title__Os_Do2 {
    margin: auto auto auto 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}


.RegisterSection_question__v5yHf .RegisterSection_title__Os_Do .RegisterSection_point__6xViZ {
    color: #93d6db
}

.RegisterSection_question__v5yHf .RegisterSection_condition__KWy5e {
    margin: 0 0 0 10px;
    font-size: 11px
}

.RegisterSection_question__v5yHf .RegisterSection_description__zE9jf {
    color: red;
    font-size: 13px;
    margin: 0 0 0 16px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_answer_container__0vBN4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;

}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_answer_container__0vBN4.RegisterSection_center__1Y9ET,
.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_answer_container__0vBN4.RegisterSection_left__FPorZ {
    justify-content: space-between
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_answer_container__0vBN4.RegisterSection_center__1Y9ET>label {
    margin-right: 8px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_answer_container__0vBN4.RegisterSection_center__1Y9ET>label:last-child {
    margin-right: 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_answer_container__0vBN4 .RegisterSection_answer_val__A_E4p {
    display: inline-block;
    margin-top: 5px;
    font-size: 16px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 9px 0;
    background: #fff;
    border: 1px solid #555;
    color: #707070;
    font-weight: 700;
    box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, .2);
    cursor: pointer;
    border-radius: 4px;
    width: calc(50% - 8px);
    font-size: 12px;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_divided_into_5__tIdzQ {
    width: calc(50% - 8px);
    font-size: 14px;
    flex-direction: column
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_small_text__b3VGi {
    font-size: 12px;
    justify-content: center
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_checked__dE4bo {
    background: #ff348e;
    color: #fff
}

input[type=checkbox]:checked+label {
    background-color: #ff348e;
    border-color: #ff348e
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label .RegisterSection_tile_image__E4TDx {
    width: 40%;
    margin: 0 auto
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_last_label__8UeX1 {
    width: 100%
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_last_label__8UeX1.RegisterSection_row__Lc4IE {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 70px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_last_label__8UeX1.RegisterSection_row__Lc4IE .RegisterSection_tile_image__E4TDx {
    height: 100%;
    width: 50px;
    margin: 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label.RegisterSection_last_label__8UeX1.RegisterSection_row__Lc4IE .RegisterSection_answer_val__A_E4p {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    text-align: left;
    margin-left: 4px
}

@media (max-width:320px) {
    .RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label {
        font-size: 11px
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_left__FPorZ label,
.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va label:last-child {
    margin-right: 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_step5__foFdH label {
    width: 100%;
    font-size: 14px;
    padding: 14px 10px;
    position: relative
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_step5__foFdH label .RegisterSection_right_image__tCTRr {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 35px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_step7__rsKFm label {
    font-size: 14px;
    padding: 14px 10px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_checkbox_input__mYLVZ,
.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_radio_input__0P_fh {
    display: none
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va input,
.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va select {
    padding: 2px 10px;
    border-radius: 8px;
    line-height: 2;
    width: 250px;
    font-size: 16px;
    text-align: left;
    border: 2px solid #ccc
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va input:focus,
.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va select:focus {
    border: 2px solid #ff348e;
    z-index: 10;
    outline: 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va input.RegisterSection_active__05MEz,
.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va select.RegisterSection_active__05MEz {
    border: 2px solid #ff348e
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va input.RegisterSection_answer_select_form__kZjBE,
.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va select.RegisterSection_answer_select_form__kZjBE {
    background: #fff;
    box-sizing: content-box;
    height: 32px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_input_container__BF9QN {
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_input_container__BF9QN.RegisterSection_step6__4H34h {
    margin-bottom: 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_toggle_btn_container__CcS5n {
    text-align: center;
    margin-top: 10px;
    z-index: 10
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_toggle_btn_container__CcS5n .RegisterSection_toggle_btn__eTReD {
    text-align: center;
    font-size: 13px;
    box-sizing: border-box;
    background: #f8f8f8;
    border-radius: 15px;
    padding: 5px 20px;
    display: inline-block
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_toggle_container__rBdQf {
    overflow: auto;
    transition: max-height .8s ease;
    height: 200px;
    margin-top: -30px;
    padding-top: 20px
}

@keyframes RegisterSection_show__AQUBP {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes RegisterSection_hide__SQOFW {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_toggle_container__rBdQf.RegisterSection_visible__zaPza {
    border: 1px solid #ddd;
    animation: RegisterSection_show__AQUBP .5s linear 0s
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_toggle_container__rBdQf.RegisterSection_hidden__l2oYz {
    border: none;
    animation: RegisterSection_hide__SQOFW .5s linear 0s
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_input_address_container___cq9n {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_input_address_container___cq9n select {
    margin-bottom: 15px;
    height: 35px;
    box-sizing: initial;
    background: #fff
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_input_address_container___cq9n input {
    height: 35px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_support_container__e1wqI {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_support_container__e1wqI .RegisterSection_support_image__17XcO {
    width: 60px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_support_container__e1wqI .RegisterSection_balloon__BdPaw {
    background: rgba(147, 214, 219, .4);
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    position: relative;
    margin-left: 10px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_support_container__e1wqI .RegisterSection_balloon__BdPaw:after {
    position: absolute;
    content: "";
    border: 9px solid transparent;
    border-right-color: rgba(147, 214, 219, .4);
    top: 50%;
    transform: translateY(-50%);
    left: -18px
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_count_container__73ElN p {
    text-align: center;
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #4e3838
}

.RegisterSection_register_section__wRkVc .RegisterSection_form_container__j_l2U .RegisterSection_form__6C2va .RegisterSection_count_container__73ElN span {
    font-size: 18px;
    color: #ff348e
}

.RegisterSection_register_section__wRkVc .RegisterSection_validate_text__hlGuI {
    background: #fcebeb;
    width: 100%;
    box-sizing: border-box;
    color: red;
    text-align: center;
    padding: 10px;
    margin: 0 0 1rem
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_wrapper__kyB_b {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: hsla(0, 0%, 100%, .9);
    padding: 10px 0 20px
}

@media (max-width:768px) {
    .RegisterSection_register_section__wRkVc .RegisterSection_btn_wrapper__kyB_b {
        border: none
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9,
.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_next_btn__K4TcG {
    padding: 5px;
    background: #ccc;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    width: 200px;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    flex: 1 1
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9.RegisterSection_active__05MEz,
.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_next_btn__K4TcG.RegisterSection_active__05MEz {
    background: linear-gradient(180deg, #109fb5 0, #0d7e91 99%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .5), inset 0 0 1px hsla(0, 0%, 100%, .7);
    cursor: pointer
}

@keyframes RegisterSection_shiny__av5LH {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1
    }

    to {
        transform: scale(50) rotate(25deg);
        opacity: 0
    }
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9.RegisterSection_active__05MEz:after,
.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_next_btn__K4TcG.RegisterSection_active__05MEz:after {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, hsla(0, 0%, 100%, 0) 10%, #fff 100%, hsla(0, 0%, 100%, 0) 0);
    animation-name: RegisterSection_shiny__av5LH;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_prev_btn__MBNRz {
    font-size: 12px;
    margin-right: 30px;
    padding: 7px 0;
    cursor: pointer;
    margin-left: 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_next_small_btn__C7hyM {
    font-size: 12px;
    margin-right: 0;
    cursor: pointer;
    padding: 7px 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9 {
    border: 2px solid #ccc;
    width: 200px
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9 .RegisterSection_confirm_term__49XZL {
    font-size: 12px;
    display: block
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9 .RegisterSection_look_recruit__mUouN {
    letter-spacing: 2px;
    font-size: 24px
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9.RegisterSection_active__05MEz {
    border: 2px solid #eb7f03;
    background: linear-gradient(180deg, #ffaa05 0, #f79e05 99%)
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9.RegisterSection_active__05MEz .RegisterSection_look_recruit__mUouN {
    -webkit-text-stroke: 1px #209d3e;
    text-stroke: 1px #209d3e
}

.RegisterSection_register_section__wRkVc .RegisterSection_btn_container__y_Qg2 .RegisterSection_fin_btn__2zLp9.RegisterSection_active__05MEz.RegisterSection_sending__dImqn {
    opacity: .5
}

.RegisterSection_register_section__wRkVc .RegisterSection_link_container__Zcupr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px
}

.RegisterSection_register_section__wRkVc .RegisterSection_link_container__Zcupr .RegisterSection_term_link__Jkm62 {
    display: inline-block;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    color: #a9abb0;
    margin-bottom: 0
}

.RegisterSection_register_section__wRkVc .RegisterSection_link_container__Zcupr .RegisterSection_term_link__Jkm62.RegisterSection_no_under_line__1YoVn {
    text-decoration: none;
    cursor: default
}

.RegisterSection_register_section__wRkVc .RegisterSection_cover__OrO8J {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3
}

@keyframes RegisterSection_hand__J6jYF {
    0% {
        transform: translate(0)
    }

    50% {
        transform: translate(-15px)
    }

    to {
        transform: translate(0)
    }
}

.RegisterSection_hand__J6jYF {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    background-image: url(/images/hand-r270.png);
    background-size: contain;
    background-repeat: no-repeat;
    transition: .5s ease-out;
    -webkit-transition: .5s ease-out;
    animation: RegisterSection_hand__J6jYF 2.5s linear 0s infinite;
    -webkit-animation: RegisterSection_hand__J6jYF 2.5s linear 0s infinite
}

.progress-bar-hidden {
    display: none;
}

.input-field {
    margin-bottom: 20px;
    text-align: center;
    /* テキストを中央揃え */
    justify-content: center;
    /* 水平方向の中央揃え */
}

.field {
    width: 100%;
    margin: 0 auto;
    max-width: max-content;
}

.RegisterSection_option_image {
    width: 100px;
    /* 画像のサイズを設定 */
    height: auto;
    margin-right: 10px;
    /* テキストとの間隔を設定 */
    vertical-align: middle;
    /* テキストと垂直方向の中央揃えにする */
}

.RegisterSection_option_icon {
    display: block;
    margin: 0 auto;
    /* 水平方向の中央揃え */
    max-width: 40%;
    /* 画像の最大幅を設定 */
    height: auto;
    /* 画像の高さを自動調整 */
}

.RegisterSection_option_label {
    text-align: center;
    /* テキストを中央揃え */
}

.RegisterSection_text_field_container {
    display: flex;
    /* フレックスコンテナにする */
    justify-content: center;
    /* 水平方向の中央揃え */
}

.next-right {
    display: flex;
    justify-content: flex-end;
}

.RegisterSection_icon {
    width: 50px; /* アイコンのサイズを指定 */
    height: 50px;
    margin-right: 10px; /* アイコンとテキストの間隔 */
    margin-top: 1%;
    margin-left: 10%;
  }

#postal-code-step-container{
    margin-top:2%;
}