@charset "UTF-8";

/*
 * Global
 */
#wrapper {
  padding-top: 100px;
  padding-bottom: 0;
  min-width: 0;
}
.container {
  width: auto;
}

/*
 * Common input form
 */
input[type=text],
input[type=search],
input[type=password],
textarea {
  padding: 5px;
}

/*
 * Header
 */
header {
  width: 100%;
  height: 35px;
  padding-top: 0;
  position: absolute;
}
header h1 {
  top: 0;
  left: 10px;
  
  -webkit-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
header h1.open {
  opacity: 0;
}
header h1 a {
  width: 140px;
  height: 85px;
}
html:lang(ja) header h1 a {
  background: url(../img/header_title_sp_ja.png);
  background-size: contain;
}
html:lang(en) header h1 a {
  background: url(../img/header_title_sp_en.png);
  background-size: contain;
}
html:lang(zh) header h1 a {
  background: url(../img/header_title_sp_zh.png);
  background-size: contain;
}
header .nav {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  margin: 0;
}
header .nav:after {
  content: "";
}
header .nav div {
  float: none;
  padding: 0;
}
header .nav div:before,
header .nav .lang li.ja:before{
  content: "";
  margin: 0;
}
header .nav .about {
  display: none;
}
header .nav .lang {
  background: rgba(0, 0, 0, 0.8);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 35px;
  width: 100%;
  float: none;
  overflow: hidden;
  
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  
  -webkit-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
header .nav .lang.open {
  transform: scaleY(1);
}
header .nav .lang li {
  float: none;
  padding: 0;
}
header .nav .lang li a {
  border-bottom: #999 1px solid;
  display: block;
  padding: 20px 0;
  color: #fff;
  text-align: center;
}
header .nav .lang li.active a {
  color: #ffa000;
  font-weight: bold;
  text-decoration: none;
}
header .login,
header .logout {
  position: absolute;
  top: 0;
  right: 5px;
  width: 35px;
  height: 35px;
}
header .login a,
header .logout a {
  display: block;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
}
header .login a {
  background: url(../img/icon_login_sp.svg) no-repeat 10px 1px;
  background-size: 81px 29px;
  padding: 0;
}
header .logout a {
  background: url(../img/icon_login_sp.svg) no-repeat -52px 1px;
  background-size: 81px 29px;
  padding: 0;
}
header .select_lang {
  display: block;
  position: absolute;
  top: 17px;
  right: 50px;
  
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
header .select_lang a {
  background: url(../img/arrow_b.svg) no-repeat right center;
  background-size: 9px 8px;
  padding-right: 12px;
  color: #fff;
}
header .back {
  background: url(../img/icon_back.svg) no-repeat left center;
  background-size: 10px 14px;
  padding-left: 22px;
  position: absolute;
  top: 55px;
  right: 12px;
  display: inline-block;
}

/*
 * Contents
 */
#contents {
  width: 100%;
  min-height: 0;
}

/*
 * Footer
 */
footer {
  position: relative;
  z-index: 1002;
}
footer .links {
  margin-bottom: 10px;
}
footer .links:after {
  content: "";
  display: none;
}
footer .links a {
  border-bottom: #fff 1px solid;
  display: block;
  position: relative;
  margin: 0 10px;
  padding: 10px 5px;
  font-size: 13px;
  text-align: left;
  text-decoration: none;
}
footer .links a:after {
  background: url(../img/arrow_footer_link.svg) no-repeat center right;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 17px;
  margin-top: -8px;
}
footer .links a:before{
  content: "";
  display: none;
}
footer .copyright {
  font-size: 9px;
  line-height: 1em;
}

/*
 * Pager
 */
.pager {
  padding: 15px 0 !important;
}
.pager .total {
  background: #eee;
  border-radius: 3px;
  position: relative;
  top: auto !important;
  right: auto;
  margin: 0;
  padding: 5px 20px;
  font-size: 10px;
  line-height: 1em;
  display: inline-block;
}
.pager li {
  font-size: 12px;
  line-height: 1.4em;
}
.pager li.active {
  font-size: 14px;
}
.pager .prev a {
  margin-right: 0;
}
.pager .next a {
  margin-left: 0;
}

/*
 * To page top
 */
#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
}
#pagetop a {
  background: #ffa000 url(../img/btn_pagetop.png) center center;
  background-size: 23px 23px;
  border: #fff 2px solid;
  border-radius: 5px;
}
#pagetop a:hover {
  background-color: rgba(255, 160, 0, 0.7);
}

/*
 * Login
 */
#login_window form {
  padding: 15px;
  width: 90%;
  box-sizing: border-box;
}
#login_window .error {
  float: none;
  text-align: center;
  padding-bottom: 20px;
}

/*
 * Error window
 */
#error_window .window {
  padding: 15px;
  width: 90%;
}

.checkbox:hover {
  border-color: #fff;
}