@charset "utf-8";

/* 全体のスタイル */
body {
}

/* ログインフォームのコンテナ */
.contents01 {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
}

.contents01 .contentsInner01 {
    padding: 20px;
}

p.fd-success,
p.fd-error {
    font-size: 14px;
    text-align: left;
    font-weight: bold;
    line-height: 20px;
    padding-bottom: 20px;
}

p.fd-success { color: mediumseagreen; }
p.fd-error { color: red; }


dl.formList01 {
}

/* フォーム内のラベル */
dl.formList01 dt {
    display: block;
    font-weight: bold;
    text-align: left;
    color: #555;
    line-height: 20px;
    font-size: 12px;
}

dl.formList01 dd {
    padding-bottom: 30px;
}

/* 入力フィールド */
dl.formList01 input[type="email"],
dl.formList01 input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* ボタン */
form button {
    width: 100%;
    line-height: 20px;
    background: #003378;
    color: white;
    border: none;
    padding: 20px 0;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 20px;
}

form button:hover {
    background: #0056b3;
}

form button.login01 {
    background: url("../images/ico_logout_01.png") no-repeat left 30% top 50% / auto 20px #003378;
}

form button.login01:hover {
    background: url("../images/ico_logout_01.png") no-repeat left 30% top 50% / auto 20px #0056b3;
}

form button.mail01 {
    background: url("../images/ico_mail_01.png") no-repeat left 10% top 50% / auto 14px #003378;
}

form button.mail01:hover {
    background: url("../images/ico_mail_01.png") no-repeat left 10% top 50% / auto 14px #0056b3;
}

.links01 {
}

.links01 p {
    text-align: right;
}

/* リンク */
.links01 p a {
    color: #003378;
    text-decoration: none;
    font-size: 14px;
    line-height: 30px;
}

.links01 p a:hover {
    text-decoration: underline;
}

.finish01 {
}
.finish01 h3 {
    font-weight: bold;
    color: #278043;
    font-size: 14px;
    padding-bottom: 20px;
}
.finish01 p {
    font-size: 12px;
    padding-bottom: 10px;
    text-align: left;
}
.finish01 a {
    display: block;
    width: 100%;
    line-height: 20px;
    background: #003378;
    color: white;
    border: none;
    padding: 20px 0;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
    text-decoration: none;
}
.finish01 a:hover {
    background: #0056b3;
}

