@charset "UTF-8";
/*--------------------------------------------------
reset
--------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, code, img,
small, strong, sub, sup, b, i,
dl, dt, dd, ol, ul, li,
form, label, table, caption, tbody, tfoot, thead, tr, th, td,
article, canvas, figcaption, figure,
footer, header, hgroup, menu, nav, section, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

input, select {
    vertical-align:middle;
}

/*------------------------------------------------------------
common
------------------------------------------------------------*/
html {
    height: 100%;
}

body {
    background: #f4f6f9;
    color: #494949;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin: 0;
    height: 100%;
}

img {
    max-width: 100%;
    vertical-align: top;
}

a {
    text-decoration: none;
}

.main {
    height: 100%;
}

/*------------------------------------------------------------
font, margin
------------------------------------------------------------*/
.text_red {
    color: #970003;
}

.text_bold {
    font-weight: bold;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
header {
    margin-bottom: 50px;
    text-align: center;
}

/*------------------------------------------------------------
content
------------------------------------------------------------*/

#loginWrap {
    align-items: center;
    display: flex;
    position: relative;
    min-height: 100%;
    height: auto !important;
    height: 100%;
}

#loginWrap .inner {
    box-sizing: border-box;
    margin: 70px auto;
    width: 380px;
}

.form {
    background: #fff;
    border: 1px solid #d8dde6;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 25px 20px;
    width: 100%;
}

.loginForm dl {
    margin-bottom: 10px;
}

.loginForm dt {
    font-size: 12px;
    margin-bottom: 5px;
}

.form .input_t {
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    box-sizing: border-box;
    color: #555;
    font-size: 18px;
    padding: 10px 5px;
    margin-bottom: 10px;
    outline: none;
    width: 100%;
}

.form .input_t:focus {
    border: 1px solid #83bfff;
    box-shadow: 0 0 3px #83bfff;
}

.form .error {
    color: #970003;
    font-weight: bold;
    display: none;
}

/*------------------------------------------------------------
btn
------------------------------------------------------------*/

.btn {
    background: #dc653a;
    box-sizing: border-box;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 0px;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

/*--------------------------------------------------
footer
--------------------------------------------------*/
footer {
    padding: 30px 0;
    text-align: center;
}

/*--------------------------------------------------
overlay
--------------------------------------------------*/

.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.overlay .errorWrap {
    background: #fff;
    box-sizing: border-box;
    padding: 30px 40px;
    margin: 100px auto 0;
    width: 600px;
    max-width: 600px;
    max-height: 350px;
    overflow-y: scroll;
    position: relative;
}

.overlay .errorWrap li {
    list-style-type: disc;
    margin-left: 1em;
}

.overlay .errorWrap li span {
    color: #d00;
    font-weight: bold;
}

.overlay .btnWrap {
    border-top: 1px solid #ddd;
    width: 600px;
    background: #fff;
    padding: 30px 0;
    margin: 0 auto;
    box-sizing: border-box;
}

.overlay .btn {
    margin: 0 auto;
    width: 200px;
}

@media screen and (min-width:480px) and ( max-width:990px) {
    .form {
        width: 100%;
    }
}

@media(max-width: 480px){
    .form {
        width: 100%;
    }
    .overlay .errorWrap,
    .overlay .btnWrap {
        width: 90%;
        max-width: 90%;
    }
    .closed {
        margin: 20px auto;
        width: 90%;
    }
}