@charset "utf-8";

/* +++++++++++++++++++++++++++++++

 login.css

+++++++++++++++++++++++++++++++ */

/* reset
-----------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

ol, ul{ list-style: none; }

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

caption, th {
  text-align: left;
}


/* default
-----------------------------------*/
html, body, input, button, textarea, select {
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
  font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック", 'YuGothic', "游ゴシック体", 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
  font-size: 62.5%;
  letter-spacing: .01em;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

html {
  height: 100%;
  overflow: auto;
}

*, *:before, *:after { box-sizing: border-box; }

a {
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

a:focus {
  outline:none;
}

h1, h2, h3, h4, h5 { font-size: 1.25rem; }
h1, h2, h3, h4, h5 { max-height: 100%; } /* Android対策 */

button {
  cursor: pointer;
}


/*iOSでのデフォルトスタイルをリセット
-----------------------------------*/
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


/* layout
-----------------------------------*/
.loginContainer {
  display: flex;
  justify-content: center;
  padding: 120px 0 200px;
}

.loginContainerMain_inner {
}

.loginContainerMain_logo {
  width: 155px;
  margin: 0 auto 50px;
}

.loginContainerMain_txt {
  width: 390px;
  margin: 0 auto;
}
.loginContainerMain_txt > p {
  margin: 0 0 50px;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1;
}
.loginContainerMain_txt > p span {
  display: block;
  margin: 14px 0 0;
  font-size: 1.7rem;
  color: #656464;
}
.loginContainerMain_txt > a {
  display: block;
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.1rem;
  text-decoration: underline;
}
.loginContainerMain_txt > a:hover {
  opacity: .7;
}

/* エラーメッセージ */
.message {
  display: block;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #c00;
  background: #faefef;
  border: 1px solid #c00;;
}

.loginContainerMain_form,
#loginForm {
  text-align: center;
}
.loginContainerMain_id,
.loginContainerMain_password {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.loginContainerMain_id {
  margin: 0 0 12px;
}
.loginContainerMain_id p,
.loginContainerMain_password p {
  width: 114px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 33px;
  background: #F4EFEF;
  border-radius: 33px;
}
.loginContainerMain_id input,
.loginContainerMain_password input {
  width: 260px;
  padding: 0 10px;
  font-size: 1.4rem;
  line-height: 23px;
  letter-spacing: 0.6px;
  color: #000;
  background: #fff;
  border: 1px solid #707070;
  outline: none;
}
.loginContainerMain_id input::placeholder,
.loginContainerMain_password input::placeholder {
  color: #BAB6B6;
}

.loginContainerMain_submit {
  margin: 52px 0 0;
}
.loginContainerMain_submit input {
  width: 245px;
  padding: 0 10px;
  font-size: 1.8rem;
  line-height: 50px;
  letter-spacing: 0.6px;
  font-weight: 600;
  opacity: 1;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: .3s;
}
.loginContainerMain_submit input:hover {
  opacity: .7;
}

footer {
  padding: 44px 0;
  text-align: center;
  background: #000;
}
footer a {
  display: inline-block;
}
footer a img {
  width: 142px;
  transition: .3s;
}
footer a span {
  display: block;
  margin: 12px 0 0;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  transition: .3s;
}
footer a:hover img,
footer a:hover span {
  opacity: .7;
}
