@charset "UTF-8";

/*================================================
　　ログイン画面
================================================*/

#login_page {
    width: 520px;
    text-align: center;
    margin: 120px auto 90px;
}

#login_page h2 {
    font-size: 2.8em;
    color: #3c3c3c;
    -webkit-text-fill-color: #3c3c3c;
    margin-bottom: 50px;
}

#login_page h2 span {
    display: block;
    font-size: 0.7em;
    font-weight: bold;
    color: #0077ff;
    padding-bottom: 0.5vw;
    margin-top: 3px;
}

#login_page form img {
    width: 100px;
}

#login_page form {
    position: relative;
    background: #f7f7f7;
    border-radius: 15px;
    padding: 25px 0;
}

#login_page form .form_img {
    position: absolute;
    top: -70px;
    right: 20px;
}

#login_page form .form_img img {
    width: 100px;
}

#login_page .form_text_area input,
#login_page form ul li {
    width: 300px;
}

#login_page .form_text_area input {
    height: 33px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#login_page input:focus {
    outline: none;
    border-color: #0077ff;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}


/*エラー時のテキスト色指定*/

#login_page .form_text_area span strong {
    font-size: 0.8em;
    color: #e3342f;
    width: 100%;
    float: left;
}


/*エラー時のテキストボックスborder色指定*/

#login_page .form_text_area .is-invalid {
    border-color: #e3342f;
    box-shadow: 0 0 0 0.1rem rgb(227 52 47 / 25%);
}

#login_page form ul li {
    text-align: left;
    /* height: 77px; */
    margin: 0 auto;
    margin-bottom: 20px;
}

#login_page label {
    font-size: 16px;
    color: #3c3c3c;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0;
}

#login_page .login_keep {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 52px;
}

#login_page .login_keep input {
    vertical-align: middle;
}

#login_page .login_keep label {
    font-weight: normal;
}

#login_page form button {
    font-weight: bold;
    border-radius: 100vh;
    color: #fff;
    background-image: -webkit-linear-gradient(120deg, #0077ff 0%, #00ccff 100%);
    /* border: 2px; */
    background-image: linear-gradient(120deg, #0077ff 0%, #00ccff 100%);
    width: 300px;
    height: 42px;
    font-size: 16px;
    padding: 8px;
    margin-bottom: 20px;
}

#login_page form button:hover {
    /* background-image: -webkit-linear-gradient(120deg, #e6e6e6 0%, #e6e6e6 100%);
    background-image: linear-gradient(120deg, #e6e6e6 0%, #e6e6e6 100%); */
    background: #fff;
    border: 2px solid #0077ff;
    color: #0077ff;
}

#login_page .pw_repuest {
    display: block;
    font-size: 16px;
    text-decoration-line: revert;
}

@media screen and (max-width: 550px) {
    #login_page {
        width: 93vw;
        margin-top: 23vw;
    }
}

@media screen and (max-width: 470px) {
    #login_page h3 {
        margin-bottom: 27vw;
    }
    #login_page label,
    #login_page .pw_repuest {
        font-size: 16px;
    }
}

#main .other_login h3::after {
    content: "";
}

#main .alert-success {
    color: #0077ff;
    font-weight: bold;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

@media screen and (max-width: 360px) {
    #login_page .form_text_area input,
    #login_page form ul li,
    #login_page form button {
        width: 95%;
    }
}


/*================================================
　　パスワードリセット画面
================================================*/

.other_login h3 {
    font-size: 2.6em;
    color: #3c3c3c;
    margin: 0 0 100px;
    opacity: 1;
    font-weight: 700;
}
.invalid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 12px;
    color: #e3342f;
}
.error-input{
    border: 1px solid red !important;
    box-shadow: 0 0px 10px rgba(255, 0, 0, 0.15);
}

.alert-success {
    color: #0077ff;
    font-weight: bold;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
}
.alert-success {
    color: #1d643b;
    background-color: #d7f3e3;
    border-color: #c7eed8;
}
.alert-error {
    color: red;
    font-weight: bold;
    background-color: #fea;
    border-color: #e3342fa8;
}


.display_none{
    display: none;
}

/*================================================
　　モーダル共通
================================================*/
/* 表示時の背景 */
.modal_bkg::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background-color: rgba(173, 173, 173, 0.705);
}

.modal_btn_area .delete_btn img {
	width: 100%;
}
.dialog.modal_bkg::before {
    z-index: 160;
}
.dialog_ajax.modal_bkg::before {
    z-index: 161;
}
.dialog.modal_bkg::before {
    z-index: 160;
}
.dialog_ajax.modal_bkg::before {
    z-index: 161;
}
/*================================================
　　ダイアログ
================================================*/
.dialog_wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    width: 100%;
    box-shadow: var(--shadow);
}
.dialog.modal_bkg::before {
    z-index: 160;
}
.dialog_ajax.modal_bkg::before {
    z-index: 161;
}
.dialog_wrap h4 {
    background: #b9cef9;
    color: #fff;
    text-align: left;
    width: calc(100% - 30px);
    border-radius: 15px 15px 0 0;
    padding: 8px 0 8px 30px;
    margin-bottom: 45px;
    font-size: 20px;
    -webkit-text-fill-color: white;

}
.dialog_wrap div {
    padding: 0 10px;
}
.dialog_wrap_img {
    width: 80px;
    margin: 0 auto;
}
.dialog_wrap p {
    font-weight: bold;
    margin: 45px 0;
    font-size: 20px;
}
.dialog_wrap .flex_center {
    margin-bottom: 45px;
}

@media (min-width: 500px) {
    .dialog_wrap {
        width: 450px;
    }
    .dialog_wrap_img {
        width: 150px;
    }
}