/* ログイン */

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dt,
dd,
ol,
ul,
li,
hr,
fieldset,
form,
label,
legend,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
hgroup {
    margin: 0;
    padding: 0;
    border: 0;
}

a:active,
a:hover {
    outline: 0;
}

@-webkit-viewport {
    width: device-width;
}
@-moz-viewport {
    width: device-width;
}
@-ms-viewport {
    width: device-width;
}
@-o-viewport {
    width: device-width;
}
@viewport {
    width: device-width;
}

/* ------------------------------------------
 STYLES
--------------------------------------------- */

body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: #333333;
    background: transparent linear-gradient(180deg, #132b88 0%, #79cbea 100%, #daf6fd 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font: 14px/1.8 "Noto Sans JP", Arial, Verdana, 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

body::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url(../img/bg_line.svg);
    background-position: top center;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: cover;
}

.header_inner_login {
    background-color: #fff;
    width: 100%;
    padding: 24px 18px;
    box-sizing: border-box;
}

section {
    text-align: center;
    padding: 0px 0 0 0;
    width: 100%;
}

/* sec_login
------------------------------------------------------------*/

#sec_login {
    margin: 0;
    padding: 50px 5%;
    text-align: left;
    transition: 0.2s;
}

#sec_login .inner {
    margin: auto;
    max-width: 484px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);

    border-radius: 8px;
    transition: 0.2s;
    padding: 50px 30px;
}

#sec_login .inner h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 50px;
}

form {
    margin-top: 30px;
}

.textbox {
    padding: 2px 10px;
    border: 1px solid #c3c3c3;
    display: block;
    font-size: 14px;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 4px;
}

.textbox::placeholder {
    color: #ccc;
}

.textbox:focus {
    outline: 0 !important;
    border: 1px solid #2196f3;
    box-shadow: 0 0 0 0 Canvas;
}

/* .btn,
a.btn,
button.btn {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 15px 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 4px;
    border: none;
} */

.btn--submit,
a.btn--submit {
    color: #fff;
    background-color: #132b88;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    padding: 16px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
}
.btn--submit:hover,
a.btn--submit:hover {
    color: #fff;
    background: #1b3bb2;
}

@media screen and (min-width: 732px) {
    /* sec_login
    ------------------------------------------------------------*/
    #sec_login {
        margin: 0;
        padding: 100px 0 100px 0;
        text-align: left;
        transition: 0.2s;
    }

    #sec_login .inner {
        border-radius: 8px;
        transition: 0.2s;
        padding: 100px;
    }
}
