@charset "UTF-8";

#wrapper {
  width: 100%;
  height: auto;
  background-image: url(../images/bg-min.jpg);
  background-position: top center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

a {
  text-decoration: none;
}

header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #353535;
}

header h1 {
  position: relative;
  width: 168px;
  height: 38px;
}

header h1 .logo-demo {
  position: absolute;
  top: -5px;
  right: 10px;
}

header h1 img {
  max-width: unset;
}

.contents {
  padding: 50px 15px 15px;
  max-width: 425px !important;
}

.contents-main {
  padding: 30px 25px 25px;
  text-align: center;
  background-color: #282828;
}

.contents-main h2 {
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 28px;
  max-width: 15em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: .01em;
  color: #fff;
}

.contents-login {
  padding: 30px 25px 0;
  text-align: center;
}

.go-login {
  height: 42px;
  line-height: 42px;
  width: 90%;
  text-align: center;
  display: block;
  background-color: #fccd2a;
  color: #232323;
  border: none;
  font-size: 13px;
  text-decoration: none;
}

.contents-main .go-demo {
  height: 52px;
  line-height: 52px;
  width: 100%;
  text-align: center;
  display: block;
  background-color: #ee683a;
  color: #fff;
  border: none;
  font-size: 13px;
  letter-spacing: .075em;
  text-decoration: none;
}

.contents-main .go-demo span {
  position: relative;
}

.contents-main .go-demo span:before {
  position: absolute;
  content: "";
  top: 3px;
  left: -18px;
  display: block;
  width: 13px;
  height: 13px;
  background: url("../images/arrow-min.png") 50% 50% no-repeat;
  background-size: 13px 13px;
}

.new-register {
  padding: 40px 0 0;
  text-align: center;
}

.new-register,
.new-register a,
.color-fccd2a {
  color: #fccd2a;
}

.color-fccd2a {
  text-decoration: underline;
}

.new-register a {
  text-decoration: underline;
}

.topics {
  padding: 14px;
  margin-top: 20px;
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
}

.news-title {
  display: block;
  padding: 0 0 10px;
}

.news-text {
  display: block;
  font-size: .9em;
  letter-spacing: .075em;
}

.contents-footer {
  padding: 50px 0 100px 0;
  max-width: 425px !important;
}

.contents-footer ul {
  display: block;
  padding: 0 0 0 10px;
}

.contents-footer a {
  color: #afafaf;
  font-size: 14px;
  text-decoration: none;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  line-height: 23px;
  padding-top: 18px;
  height: 82px;
  background-color: #353535;
  width: 100%;
  text-align: center;
  color: #afafaf;
  font-size: 14px;
  font-weight: 400;
}

footer p {
  padding: 0 15px;
  line-height: 23px;
  text-align: center;
  color: #afafaf;
}

footer p a {
  color: #fccd2a;
}

/*=================================================*
 * media query
 *=================================================*
 * BREAK POINT (mobile first)
 *    [SP/TB/PC]    0px ~ x  (SP {縦})
 *    [SP/TB/PC]  320px ~ x  (SP {縦})
 *    [SP/TB/PC]  480px ~ x
 *    [   TB/PC]  768px ~ x
 *    [      PC]  1024px ~ x
 *=================================================*/
/* --------------------- *
 * SP / TB / PC
 * width : 1px - x
 * --------------------- */
@media screen and (min-width: 1px) {

}

/* --------------------- *
 * SP / TB / PC
 * width : 320px - x
 * --------------------- */
@media screen and (min-width: 320px) {

}

/* --------------------- *
 * SP / TB / PC
 * width : 480px - x
 * --------------------- */
@media screen and (min-width: 480px) {

}

/* --------------------- *
 * TB / PC
 * width : 768px - x
 * --------------------- */
@media screen and (min-width: 768px) {

}

/* --------------------- *
 * PC
 * width : 1024px - x
 * --------------------- */
@media screen and (min-width: 1024px) {
  .main-wrapper,
  .contents {
    max-width: 425px;
  }

  header {
    padding-top: 21px;
    padding-bottom: 19px;
  }
}

