@charset "utf-8";
.visual {
  width: 960px;
  position: relative;
  margin: 0 auto 50px;
}
.visual__logo {
  position: absolute;
  left: 35px;
  bottom: 30px;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms linear 2.5s, transform 800ms ease-out 2.5s;
}
.visual__catch {
  position: absolute;
  top: 65px;
  left: -25px;
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s linear 1s, transform 1.5s ease-in 1s;
}
.visual__sale {
  display: none;
  position: absolute;
  right: 30px;
  bottom: 70px;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms linear 2.8s, transform 800ms ease-out 2.8s;
}
.visual__release {
  position: absolute;
  right: 30px;
  bottom: 50px;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms linear 2.8s, transform 800ms ease-out 2.8s;
  animation: release 1s linear 3.6s infinite alternate;
}
.visual__release img {
  transition: transform 150ms ease-in;
}
.visual__release img:hover {
  transform: scale(1.03);
}
.visual__enki {
  display: none;
  position: absolute;
  right: 30px;
  bottom: 115px;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms linear 2.8s, transform 800ms ease-out 2.8s;
}
.visual__enki img {
  transition: opacity 150ms linear;
}
.visual__enki img:hover {
  opacity: 0.8;
}
.visual__img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 2.3s linear, transform 2.3s ease-in;
}
.topNotice {
  width: 960px;
  margin: 0 auto 70px;
}
.topNotice__list > li + li {
  margin-top: 10px;
}
.topNotice__list > li > a {
  display: block;
  border-radius: 5px;
  background-color: #fff;
}
.topNotice__list > li > a > img {
  transition: opacity 150ms linear;
}
.topNotice__list > li > a:hover > img {
  opacity: 0.6;
}
.topBanner {
  width: 960px;
  margin: 0 auto 20px;
}
.topBanner__list {
  margin: -10px 0 0 -10px;
}
.topBanner__list::after {
  content: "";
  display: block;
  clear: both;
}
.topBanner__list > li {
  float: left;
  width: 50%;
  padding: 10px 0 0 10px;
  box-sizing: border-box;
}
.topBanner__list > li > a {
  display: block;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  background-color: #fff;
  overflow: hidden;
}
.topBanner__list > li > a > img {
  transition: opacity 150ms linear;
}
.topBanner__list > li > a:hover > img {
  opacity: 0.6;
}
.seriesBanner {
  width: 960px;
  margin: 0 auto 100px;
}
.seriesBanner__head {
  margin-left: -45px;
  margin-bottom: -25px;
}
.seriesBanner__list {
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.8);
  box-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}
.seriesBanner__list > li + li {
  margin-top: 10px;
}
.seriesBanner__list > li > a {
  transition: opacity 150ms linear;
}
.seriesBanner__list > li > a:hover {
  opacity: 0.6;
}
.content {
  margin-bottom: 100px;
}
.topInfo {
  margin-left: -30px;
}
.topInfo::after {
  content: "";
  display: block;
  clear: both;
}
.topInfo__item {
  float: left;
  width: 50%;
  padding-left: 30px;
  box-sizing: border-box;
}
.topInfo__item__head {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: normal;
}
.topInfo__item__head--inline {
  display: inline-block;
}
.topInfo__item__body {
  height: 200px;
  padding: 20px;
  border-radius: 3px;
  border: solid 1px #713317;
  background-color: #fff;
  overflow-y: scroll;
  box-sizing: border-box;
}
.topInfo__item__body--twitter {
  padding: 0;
}
.linkFollow {
  display: inline-block;
  margin-left: 30px;
  padding: 0 10px;
  border-radius: 3px;
  background-color: #ccc;
  color: #fff;
  line-height: 16px;
  text-decoration: none;
  transition: background-color 150ms linear;
}
.linkFollow:hover {
  background-color: #f28808;
}
.update {
  line-height: 1.6;
}
.update__item {
  margin-bottom: 15px;
}
.update__item__date {
  float: left;
  width: 100px;
  color: #aaa;
}
.update__item__text {
  overflow: hidden;
}
.update__item__text .emphasis {
  padding: 0 5px;
  color: #f28808;
  font-weight: bold;
}
.update__item__text .emphasis--red {
  color: #f00;
}
.update__item__text .emphasis--noSpace {
  padding: 0;
}
.notice {
  display: inline-block;
  padding: 30px 50px;
  background-color: #fff;
  box-sizing: border-box;
}
.noticeWrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 50px 0;
  background-color: rgba(0,0,0,0.8);
  text-align: center;
  overflow: scroll;
  box-sizing: border-box;
}
.notice__head {
  height: 30px;
  margin-bottom: 20px;
  border-radius: 15px;
  background-color: #713317;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-shadow: none;
}
.notice__body {
  line-height: 1.6;
}
.notice__body .emphasis {
  font-size: 16px;
  font-weight: bold;
}
.ready .visual__logo,
.ready .visual__sale,
.ready .visual__release,
.ready .visual__enki {
  opacity: 0;
  transform: translateY(20px);
}
.ready .visual__catch,
.ready .visual__img {
  opacity: 0;
  transform: scale(1.1);
}
@keyframes release {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-6px);
  }
}
