header {
    justify-content: center;
}


.logo.logo_login {
    width: 200px;
    margin: 0 auto;
    display: block;
}

.content__body {
    width: 40%;
}

.box--large h2,
.mb--large h2 {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.box--large.error {
    padding: 30px 0;
}

.box--large.error h2.error {
    padding-bottom: 30px;
    border-bottom: 1px solid #E3E3E3;
}

.box--large.error .error_text {
    padding: 30px;
}

.btn.forget {
    background: linear-gradient(90deg, #F06F5E 18.15%, #F3936E 64.26%);
    position: relative;
}

.btn.forget:hover {
    background: #fff;
    color: #F06F5E;
    outline: 1px solid #F06F5E;
    opacity: 1;
}


/* モーダル */
body.fixed {
    height: 100%;
    position: fixed;
    width: 100%;
}

.modal {
    display: none;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.modal__overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content {
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    min-width: 800px;
    height: 75vh;
    border-radius: 8px;
    box-shadow: 3px 5px 5px #929191;
    overflow-x: scroll;
}

.modal__content__body {
    width: 50%;
    margin: 60px auto 0;
}

.modal__content p {
    color: #999999;
    margin-top: 10px;
}

.js-modal-close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    cursor: pointer;
}

.contact_link {
    display: block;
    text-decoration: underline;
    margin-top: 10px;
}

/* 注意書き */

.icon_alert_login {
    width: 27px;
    display: block;
    margin: 0 auto 10px;
}

.alert p {
    color: #333;
}

.customer_login {
    border: 1px solid #00ABB5;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.customer_login bold {
    font-weight: 700;
}

.tel_btn {
    padding: 5px 0px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 10px;
    font-weight: 700;
}

.icon_tel {
    width: 35px;
    display: inline-block;
}

.tel_btn a {
    font-family: 'Jost', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--green);
}

/* リマインダー */
.content__body.reminder {
    width: 60%;
}



.reminder_explanation {
    text-align: center;
    margin: 30px auto;
}

.reminder_explanation .green_txt {
    color: var(--green);
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.reminder_input {
    background-color: #F2F2F2;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
}

.reminder_01 {
    width: 120px;
    left: 10px;
    top: -118px;
    position: absolute;
}

.reminder_02 {
    width: 114px;
    right: 10px;
    bottom: -48px;
    position: absolute;
}

.reminder_03 {
    width: 132px;
    display: block;
    margin: 20px auto;
}

.reminder_step {
    background-color: var(--green);
    border-radius: 4px;
    padding: 3px 15px;
    color: #fff;
    width: fit-content;
}

.text_link {
    color: var(--green);
    text-decoration: underline;
}

@media (max-width: 1200px) {

    /* リマインダー */

    .reminder_explanation {
        text-align: left;
    }

    .reminder_01.nosp,
    .reminder_02.nosp {
        display: none;
    }

    .reminder_01.nopc {
        width: 140px;
        display: block;
        margin: 20px auto;
        position: relative;
        top: 0;
    }

    .reminder_sp_flex {
        display: flex;
        align-items: center;
    }

    .reminder_02.nopc {
        width: 75px;
        display: block;
        margin: 0 0 0 10px;
        position: relative;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .content__body,
    .content__body.reminder {
        width: 93%;
        padding: 160px 0 90px;
    }

    .logo.logo_login {
        width: 150px;
        margin: 0 auto;
        display: block;
    }

    .attendance_date {
        flex-wrap: wrap;
    }

    .select-wrap.short {
        width: 80%;
        margin-bottom: 10px;
    }

    /* モーダル */

    .modal__content {
        background: #fff;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        min-width: 300px;
        height: 85vh;
        border-radius: 8px;
        box-shadow: 3px 5px 5px #929191;
        overflow-x: scroll;
    }

    .modal__content__body {
        margin-top: 0px;
        width: 93%;
        max-width: 550px;
        padding: 60px 0;
    }

    .confirm-area-message,
    .confirm-area-contact,
    .confirm-area-buttons {
      display: block;
    }

    .confirm-area-message.disabled,
    .confirm-area-contact.disabled,
    .confirm-area-buttons.disabled {
        display: none;
    }

    .confirm-area-message.success {
        color: #30c0b4;
    }

}

.password-input {
    position: relative;
}
  
.password-input input {
    width: 100%;
    padding: 5px 30px 5px 5px;
}
  
.password-input img {
    position: absolute;
    width: 20px;
    height: 20px;
    top:57%;
    right: 10px;
    transform: translateY(-50%);
}