/* ログイン系背景画像 */
.login-background-img {
    background: url('/img/backgrounds/img02.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    /* スクロールブロックのための設定 */
    overflow: hidden;
}

.login-background-img::after {
    /* ログイン系背景色 */

}

/* ログイン系　コンテンツ領域 */
.login-main {
    position: relative;
    /* コンテンツ領域を最前面に設定 */
    z-index: 1;
}

/* ログイン画面コンテナ　背景をカバーする領域 */
.login-container {
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    /* コンテナの上下中央にコンテンツ表示領域を配置 */
    display: flex;
    justify-content: center;
    align-items: center;

}

/* ログイン画面コンテンツ表示領域 */
.login-display-contents {
    width: 100%;
    height: auto;
    flex-direction: row;
}

/* ログイン画面ロゴ外枠 */
.login-logo {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

/* ログイン画面ロゴ */
.login-main-img {
    width: 40%;
    height: auto;
    margin-left: 15%;
}

/* ログイン情報入力欄外枠 */
.login-form-box {
    box-sizing: content-box;
    background: #001B2B;
    border-radius: 10px;
    width: 30%;
    height: auto;
    margin-left: 20%;
    margin-top: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-form-contents {
    width: 80%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ログイン系見出し */
.login-form-title {
    margin: 30px 20px 22px;
}

/* ログイン系見出し h5 */
.login-form-title h5 {
    color: #FFFFFF;
    font-weight: bold;
}

/* ログイン情報系入力フォーム */
.login-form-group {
    width: 100%;
    padding-bottom: 15px;
    text-align: center;
    opacity: 1;
}

.login-form-group button {
    min-width: 64px;
    max-width: 305px;
}

.is-show {
    visibility: visible;
    width: 100%;
    height: auto;
    opacity: 1;
    /* transform: translate(-50%, -50%) scale(0.9, 0.9); */
    transition: 1s cubic-bezier(0.0, 0.0, 1.0, 1.0);
}

.is-hide {
    visibility: hidden;
    width: 0px !important;
    height: 0px !important;
    opacity: 0;
    /* transform: translate(-50%, -50%) scale(0.9, 0.9); */
    transition: 1s cubic-bezier(0.0, 0.0, 1.0, 1.0);
}

.password-reset-description {
    color: #FFFFFF;
    font: normal normal bold 12px/14px "Helvetica";
}

/* パスワードリセットメール送信完了画面 start */
.password-reset-main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.password-reset-complete-logo {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-reset-complete-logo-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    top: -100px;
    margin-right: 45px;
}

.password-reset-complete-contents-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-reset-complete-contents-box {
    box-sizing: content-box;
    background: #001B2B;
    border-radius: 10px;
    width: 100%;
    max-width: 750px;
    height: auto;
    padding: 60px 0px 10px;
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.password-reset-complete-contents {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.password-reset-complete-contents h5 {
    color: #FFFFFF;
    font-weight: bold;
}

.password-reset-complete-contents-text {
    color: #FFFFFF;
    font: normal normal bold 12px/14px "Helvetica";
    margin: 5px 0px 20px;
    line-height: 20px;
}

.input-submit-password-reset-resend-btn {
    width: 100%;
    padding: 15px 60px;
    border-radius: 26px;
    border: 0px;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    background: transparent linear-gradient(270deg, #FFBD31 0%, #FF9129 50%, #FF6621 100%) 0% 0% no-repeat padding-box;
}


@media screen and (max-width: 850px) {
	/* ログイン情報入力欄外枠 */
.login-form-box {
    box-sizing: content-box;
    background: #001B2B;
    border-radius: 10px;
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-top: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ログイン画面ロゴ */
.login-main-img {
    width: 50%;
    height: auto;
    margin: 0 auto;
}

}