/* loginページ */
body {
    width: 100%;
    font-family: Inter;
    margin:auto 0;
}
header {
    background-color: #F2F2F2;
    height: 64px;
    width: 100%;
}
.header-logo img {
    width: 180px;
    height: 48px;
    margin: 8px 0px 8px 40px;
}
.main-contents {
    text-align: center;
    padding: 72px 280px 0 280px;
}
.main_box {
    max-width: 720px;
    background-color: #F2F2F2;
    padding: 60px 190px 70px 190px;
}
.contents_inner_manual {
    position: absolute;
    transform: translateX(-40%);
    font-size: 20px;
    font-weight: 700;
}
.flex-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.contents_inner {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: -30px;
}
.login_area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form_box {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.login_area .input_loginId {
    margin: 32px 0px 24px 0px;
}
.login_area .loginId {
    width: 320px;
    padding: 20px 0px 20px 24px;
    font-size: 16px;
    border: none;
    border-radius: 3px 3px 3px 3px;
    border: 1px solid #D9D9D9
}
/* .login_area .input_password{
    margin: 0px 191px 24px 191px;
} */
.login_area .password {
    width: 320px;
    padding: 20px 0px 20px 24px;
    font-size: 16px;
    border: none;
    border-radius: 3px 3px 3px 3px;
    border: 1px solid #D9D9D9
}
.password_toggle_wrapper {
    margin: 10px 0px 34px 0px;
    text-align: left;
}
label.checkbox01 {
    font-size: 13px;
    font-weight: 300;
}

/* チェックボックス01 */
input[type=checkbox] {
    display: none;
}
.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox01::before {
    background: #fff;
    border: none;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox01::after {
    border-right: 3px solid #D52425;
    border-bottom: 3px solid #D52425;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}
.submit_btn button {
    background-color: #D52425; /* 背景色 */
    color: white; /* 文字色 */
    padding: 15px 110px 15px 110px; /* パディング */
    text-align: center; /* 文字のアライメント */
    text-decoration: none; /* 文字装飾 */
    display: inline-block; /* ボタンの表示方法 */
    font-size: 20px; /* フォントサイズ */
    margin: 4px 2px; /* 外側の余白 */
    cursor: pointer; /* カーソル */
    border: 2px; /* ボーダー */
    border-radius: 50px; /* 50pxの角丸 */
}
.submit_btn button:hover {
    background-color:#a61d1d;
}
.login_btn img {
    width: 18px;
    margin-left: 14px;
}
.page_p_text {
    padding: 10px 44px;
}
.page_p_text p {
    color: #D52425;
    font-size: 12px;
    font-weight: 300;
    text-align: left;
}

/* エラーメッセージ */
.error_txt_area {
    text-align: left;
    margin: 50px 0px -30px 0px;
    display: flex;
}
.error_txt_area img {
    width: 20px;
    height: 20px;
    margin: 20px 10px 0 0;
}
.error_txt {
    color: #FC2727;
    font-size: 12px;
    font-weight: 300;
}