@charset "utf-8";
/*
Site Name:
File Name: resetPassword.css
Description: CSS
Created: 2016/08/03
Last update: 2026/03/04
*/

h1.title {
    color: #32b372;
}
#contents #col_center {
    width: 590px;
}
#contents #contents_inner {
    padding: 40px 0;
}
p.lead {
    padding-left: 5px;
}
input#inputMailAddress,
input#password1,
input#password2{
    width: 370.3px; height: 30px;
}
input.phoneNumber {
    width: 110px;
    height: 30px;
}
input#btn_send {
    display: block;
    width: 250px !important;
    height: 54px !important;
    margin: 0;
    border: none;
    text-indent: -9999px !important;
    background-repeat: no-repeat;
    background-position: left top;
    background-color: transparent;
    cursor: pointer;
}
div.input.btn_send {
    clear: both;
    margin-top: 15px;
    width : 250px !important;
    height : 54px !important;
    background-image: url('/resources/images/contact/btn_send_on.png');
}
input#btn_send {
    background-image: url('/resources/images/contact/btn_send.png');
}
input:hover#btn_send {
    background:none;
}
input#authenticationCode{
    height: 30px;
}
table.form_reset_password th {
    white-space:nowrap;
}
div.password_description {
    font-size: 85%
}

/* 画面全体の設定 */
.app {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 0 48px;
    width: auto;
    font-family: "Noto Sans JP", "Inter", sans-serif !important;
}
.container {
    margin: 0 auto;
}
.password {
    width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* タイトル */
.password h1 {
    padding: 0 !important;
    margin: 0;
    font-size: 20px !important;
    line-height: 28px !important;
    color: var(--green);
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.45px;
}

/* 項目全般 */
.password-confirm-info {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.section {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 16px;
}
.separator {
    height: 1px;
    width: 100%;
    background: var(--border);
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.label {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.label-strong {
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.15px;
}
.field input[type="text"] {
    border: 1px solid var(--border);
    background: var(--input-bg);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 14px;
    box-shadow: none;
    font-family: "Noto Sans JP", "Inter", sans-serif;
}
.field input[type="password"] {
    border: 1px solid var(--border);
    background: var(--input-bg);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 14px;
    box-shadow: none;
}

/* ボタンエリア */
.actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* ボタン 共通 */
.btn {
    width: 596px;
    height: 56px;
    border-radius: 6px;
    font-size: 18px !important;
    font-weight: 500;
    letter-spacing: -0.44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

/* ボタン 送信 */
.btn.primary {
    background: var(--green);
    color: #fff;
}
.btn.primary:hover {
    background: var(--green-hover);
}

/* ボタン 戻る */
.btn.secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn.secondary:hover {
    background: var(--secondary-hover-bg);
}

/* メッセージ関連 */
.message-area {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0 12px;
    font-size: 14px;
    color: #f63;
}
.password-error-message {
    font-size: 14px;
}
.password-error-message::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    margin-bottom: 3px;
    background-image: url("/resources/images/entry/icon-alert.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* パスワード再設定画面 */
/* フォーム */
.password-form-area {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ご登録メールアドレス */
.mail-input-area {
    width: 572px;
}
.input-mail-address {
    width: 100% !important;
    height: 38px !important;
}

/* 電話番号 */
.tel-input-area {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}
.tel-input-area input[type="text"] {
    height: 38px;
    width: 100%;
    border: 1px solid var(--border);
    background: var(--input-bg);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 14px;
    box-shadow: none;
    margin-bottom: 0;
    font-family: "Noto Sans JP", "Inter", sans-serif;
}
.tel-hyphen {
    font-family: "Noto Sans JP", "Inter", sans-serif;
}

/* パスワード再設定申請完了画面 */
.password-complete {
    background: #fff;
    border-radius: 8px;
    padding: 16px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}
.info {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0 12px;
    font-size: 14px;
    color: #f63;
    justify-content: center;
}
.info-message::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-left: 12px;
    margin-right: 5px;
    margin-bottom: 3px;
    background-image: url("/resources/images/entry/icon-alert.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.password-entry-errmsg {
    font-size: 14px;
}
.password-entry-errmsg li::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    margin-bottom: 3px;
    background-image: url("/resources/images/entry/icon-alert.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* パスワード再設定申請完了画面（yahoo） */
.password-confirm-info-yahoo {
    background: #fff;
    border-radius: 8px;
    padding: 10px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-yahoo {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0 12px;
    font-size: 16px;
    color: #f63;
    justify-content: center;
}
.section-yahoo {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 16px;
    text-align: center;
}

/* パスワード再設定画面 */
/* 入力項目エリア */
.input-area {
    width: 572px;
}
.input-password {
    width: 100% !important;
    height: 38px !important;
}

/* パスワード  注意書き */
.input_attention {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 596px;
}
.attention-list {
    padding: 3px 14px 3px 12px;
    margin: 0;
}
.attention-list-label::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 4px;
    margin-bottom: 2px;
    background-image: url("/resources/images/preEntry/icon-bullet.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* 確認コード */
.auth-code {
    width: 50% !important;
    height: 38px !important;
}
.commit-information {
    font-size: 14px;
    text-align: center;
}
.link {
    display: inline-flex;
    gap: 6px;
    color: var(--link);
    font-size: 14px;
}
.link-text {
    text-decoration: none !important;
}
.link-text:hover {
    text-decoration: underline !important;
}

/* パスワード設定完了画面 */
.complete {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}
.complete-icon {
    width: 64px;
    height: 64px;
}
.complete-field {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    text-align: center;
}