@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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

ol, ul{ list-style: none; }

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

/* headline */
h1, h2, h3, h4, h5 {
  font-size: 16px;
}

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

/* layout */
body {
  min-width: 1200px;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "游ゴシック Medium", "游ゴシック", 'YuGothic', "游ゴシック体", 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* Android対策 */
}

input,
button,
textarea,
select {
  color: #000;
  font-family: "游ゴシック Medium", "游ゴシック", 'YuGothic', "游ゴシック体", 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
}

.loginPage {
  height: auto;
  min-height: 100%;
  background-image: url("/ec/images/shop7R/login_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.loginContainer {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}
.loginContainerMain_inner {
  position: relative;
}
.loginContainerMain_logo {
  margin: 0 0 30px;
}
.loginContainerMain_logo img {
  display: block;
  height: auto;
  margin: 0 auto;
  -webkit-backface-visibility: hidden;
}
.loginContainerMain_logo img:nth-of-type(1) {
  width: 100px;
}
.loginContainerMain_logo img:nth-of-type(2) {
  width: 600px;
  margin-top: 70px;
}
.loginContainerMain_logo p {
  margin: 50px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.loginContainerMain_logo p span {
  display: block;
  font-size: 11px;
}
.message {
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #c00;
  background: #ffe7e7;
  border: 1px solid #c00;
}

.loginContainerMain_form {
  width: 100%;
}
.loginContainerMain_id {
  width: 68%;
  margin: 0 auto 14px;
}
.loginContainerMain_id input,
.loginContainerMain_password input {
  width: 100%;
  margin: 0 auto;
  font-size: 13px;
  padding: 12px;
  border: 1px solid #000;
  text-align: center;
  box-sizing: border-box;
  border-radius: 30px;
}
.loginContainerMain_password {
  width: 68%;
  margin: 0 auto 14px;
}
.loginContainerMain_submit input {
  filter: alpha(opacity=100);
  display: block;
  border: none;
  width: 68%;
  margin: 0 auto;
  padding: 13px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
  color: #fff;
  background: #8D8D8D;
  border-radius: 30px;
}
.loginContainerMain_submit input:hover {
  opacity: .7;
}
