/* Screen Login(FA.20-ログイン)*/
.main {
    width: 768px;
    padding: var(--space-lg, 24px) var(--Component-Container-PaddingX, 32px);
}

.register-page {
    width: var(--Component-topImage-height, 768px);
    padding: var(--space-xl, 32px) var(--Component-Container-PaddingX, 16px);
}

.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mr-8 {
    margin-right: 8px;
}

.ml-8 {
    margin-left: 8px;
}

.mb-8 {
    margin-bottom: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs, 4px);
}

.form-group .label-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.label-group .label-title {
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.label-group .label__required {
    display: flex;
    padding: 2px 5px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--theme-Alert, #EB4D4B);
}

.label__required span {
    color: var(--theme-Alert, var(--color-theme-alert, #EB4D4B));
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
}

.form-group input {
    border-radius: 4.8px;
    display: flex;
    height: 48px;
    padding: 8px 16px;
    align-items: center;
    flex: 1 0 0;
    border: 1px solid var(--Gray-400, #CED4DA);
    background: var(--Gray-White, #FFF);
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-group input.error {
    border: 1px solid var(--color-main_color_hex, #FF8A8A);
}

input.input-read-only {
    background-color: var(--Gray-200, #E9ECEF);
}

.form-group .button {
    height: 60px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    max-width: 400px;
}

.form-group .button-pink {
    font-weight: 700;
    border: 1px solid var(--color-main_color_hex, #FF8A8A);
    background: var(--color-main_color_hex, #FF8A8A);
    color: var(--Gray-White, var(--gray-white, #FFF));
}

.form-group .button-white {
    width: 100%;
    border-radius: var(--radius-md, 10px);
    border: 1px solid var(--color-main_color_hex, #FF8A8A);
    background: var(--transparent, rgba(255, 255, 255, 0.00));
    color: var(--color-main_color_hex, #FF8A8A);
    font-weight: 400;
}

.redirect-register {
    text-align: center;
    align-items: center;
}

.redirect-register a {
    text-decoration: none;
    color: var(--color-main_color_hex, #FF8A8A);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-content: center;
}

.redirect-forgot {
    text-align: center;
}

.redirect-forgot a {
    color: var(--color-main_color_hex, #FF8A8A);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.line-break {
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider {
    width: 75px;
    height: var(--Component-topImage-width, 1px);
    background: #000;
}

.divider-txt {
    padding: 0 11px;
    color: var(--Gray-Black, var(--gray-black, #000));
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.line-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line-network {
    display: flex;
    padding: 7px 19px;
    justify-content: center;
    align-items: center;
    gap: 13px;
    background: var(--btn-bg_line, #3ACE01);
    text-decoration: none;
    max-width: 400px;
}

.line-button img {
    width: 46px;
    height: 46px;
}

.line-button-text {
    color: var(--Gray-White, var(--gray-white, #FFF));
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
}

/* End Screen Login(FA.20-ログイン)*/

/* Screen Register1(FA.11)*/
.notice-txt {
    color: var(--text-link, var(--gray-gray-900, #212529));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
}

.help-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs, 4px);
}

.help-link img {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.help-link a {
    color: var(--color-main_color_hex, #FF8A8A);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.redirect-login a {
    display: flex;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: var(--color-main_color_hex, #FF8A8A);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.modal-dialog {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
}
.modal-header {
    border: none;
    padding-bottom: 0;
}
.modal-header .modal-header-content {
    display: flex;
    flex-direction: column;
}
.modal-header-close {
    display: flex;
}
.modal-header-close .close {
    margin-left: auto;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 6px 10px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    border: none;
    background-color: #ffffff;
}

.modal-header-title {
    text-align: center;
}

.modal-header-title .modal-title {
    color: var(--gray-black, #000);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.modal-body {
    color: var(--body-text, var(--gray-gray-900, #212529));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
}

/* End Screen Register1(FA.11)*/

/* Screen Register2(FA.12)*/
.help-text span {
    color: var(--body-text, var(--gray-gray-900, #212529));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

/* End Screen Register2(FA.12)*/

/* Screen Register_completed(FA.13-新規会員登録完了)*/
.completed-txt {
    color: var(--color-theme-success, #00CBA5);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 18px;
}

/* End Screen Register_completed(FA.13-新規会員登録完了)*/

/* Screen Reset-password1(FA.30-パスワードをリセット)*/
/* End Screen Reset-password1(FA.30-パスワードをリセット)*/

/* Screen Reset-password2(FA.31-パスワード再設定)*/
/* End Screen Reset-password1(FA.31-パスワード再設定)*/

/* Screen Reset-completed(FA.32-パスワード再設定完了)*/
/* End Screen Reset-completed(FA.32-パスワード再設定完了)*/

/* Screen Logout(FA.40-ログアウト)*/
.logout-txt {
    text-align: center;
}

/* End Screen Logout(FA.40-ログアウト)*/