* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
html {
    font-size: 10px;
}
body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: -apple-system, BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,メイリオ,Meiryo,sans-serif;
    position: relative;
    color: #111111;
    z-index: 0;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.5px;
    height:100%;
}
@media all and (-ms-high-contrast:none) {
    body {
        font-family: "游ゴシック",YuGothic,YuGothicM,"Yu Gothic",メイリオ,Meiryo,sans-serif;
    }
  }
a, p, h1, h2 ,h3 ,h4, h5, h6, li, dt, dd, th, td, aside, span, small {
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
    line-height: 2.3rem;
    color: #111111;
    cursor:-moz-text;
    cursor:-webkit-text;
    cursor: text;
}
h1, h2 ,h3 ,h4, h5, h6 {
    display: block;
    font-weight: 700;
    text-align: center;
    position: relative;
}
a, a > img {
    cursor:-moz-pointer;
    cursor:-webkit-pointer;
    cursor: pointer;
}
a, p, span, aside {
    display: inline-block;
}
ul, li, ol {
    list-style: none;
}
img {
    display: block;
    width: 100%;
    height: auto;
    cursor:-moz-default;
    cursor:-webkit-default;
    cursor: default;
}
address {
    font-style: normal;
}

/* フォーム（デフォルトcssリセット）*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="button"],
input[type="time"],
input[type="number"],
input[type="submit"],
input[type="checkbox"],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='radio'] {
  display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

/* ヘッダー */
header {
    background: url(../img/login/header_bg.png) bottom no-repeat;
    background-size: cover;
    margin-bottom: 8rem;
}
header img {
    width: 18rem;
    margin: 0 auto;
    padding: 3rem 0;
}

/* メイン */
main {
    max-width: 420px;
    margin: auto;
    padding-bottom: 5rem;
}
.inner {
    width: 70%;
    margin: 0 auto 4rem;
}
form {
    margin-bottom: 4rem;
}

/* ID・パスワード入力 */
.item_input {
    border-bottom: 2px solid #dddddd;
    margin-bottom: 3rem;
}
.item_input:last-of-type {
    margin-bottom: 1.5rem;
}
input {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: 1px;
    padding: 0.6rem 0;
}
input::placeholder {
    font-size: 1.4rem;
    font-weight: 700;
    color: #cfcfcf;
}
input.btn_login {
    display: block;
    width: 70%;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    background: rgb(147,139,209);
    background: linear-gradient(135deg, rgba(147,139,209,1) 0%, rgba(105,86,164,1) 100%);
    border-radius: 0.6rem;
    position: relative;
    padding: 1.2rem 0;
    margin: 0 auto 1.3rem;
}
input.btn_login[disabled] {
    background: #aaa;
}

.txtContents {
    width: calc(100% - 3rem);
    background: #f9f5ea;
    border-radius: 0.6rem;
    padding: 1.5rem;
    margin: auto;
}
.txtContents h2 {
    display: inline-block;
    font-size: 1.4rem;
    text-align: left;
    padding-left: 2.2rem;
    position: relative;
}
.txtContents h2::before {
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../img/login/icon_ex.svg) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.txtContents .content {
    padding-left: 2.2rem;
}
.txtContents li {
    margin: 0.8rem 0;
}
.txtContents h3 {
    line-height: 1.5;
    border-left: 4px solid #c9bb9c;
    padding-left: 1rem;
    margin-bottom: 3px;
}
.txtContents p:not(li p), .txtContents h3 {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;
}
.txtContents li p {
    font-size: 1.3rem;
    line-height: 1.4;
}

/* フッター */
footer {
    background: #f3f3f3;
    width: 100%;
    padding: 0.4rem 0;
}
small {
    display: block;
    text-align: center;
}
footer small {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #000;
}
small a {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0FA5FF;
}

@media screen and (max-width: 360px) {
    html {
        font-size: 9px;
    }
}
@media screen and (min-height: 800px) {
    footer {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
    }
}