@charset "utf-8";
.visual {
  width: 960px;
  position: relative;
  margin: 0 auto 50px;
}
.visual__catch {
  width: 746px;
  height: 118px;
  position: absolute;
  top: 350px;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-out 2s, transform 1s ease-out 2s;
}
.visual__img {
  margin-left: -120px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  text-align: center;
  opacity: 1;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  transition: opacity 3s ease-out, -webkit-filter 3s ease-out;
  transition: opacity 3s ease-out, filter 3s ease-out;
  transition: opacity 3s ease-out, filter 3s ease-out, -webkit-filter 3s ease-out;
}
.visual__logo {
  width: 960px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  z-index: 1;
  margin: 0 auto;
  text-align: right;
}
.guide {
  width: 960px;
  margin: 0 auto 50px;
}
.guide > li {
  background-color: #fff;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.25);
}
.guide > li + li {
  margin-top: 10px;
}
.guide a:hover {
  animation: light 600ms linear;
}
.topBanner {
  width: 960px;
  margin: 0 auto 70px;
}
.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;
}
.content {
  margin-bottom: 100px;
}
.topInfo {
  margin-left: -60px;
}
.topInfo::after {
  content: "";
  display: block;
  clear: both;
}
.topInfo__item {
  float: left;
  width: 50%;
  padding-left: 60px;
  box-sizing: border-box;
}
.topInfo__item__head {
  height: 40px;
  margin-left: -30px;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: solid 10px #f8c64a;
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
}
.topInfo__item__head--inline {
  display: inline-block;
}
.topInfo__item__body {
  height: 200px;
  padding: 20px;
  border-radius: 3px;
  border: solid 1px #ddd;
  background-color: rgba(255,255,255,0.6);
  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: #f8c64a;
}
.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 .emphasis {
  padding: 0 5px;
  color: #ac8523;
  font-weight: bold;
}
.update .emphasis--primary {
  color: #f00;
}
.update .emphasis--noSpace {
  padding: 0;
}
.ready .visual__catch {
  opacity: 0;
  transform: scale(1.2);
}
.ready .visual__img {
  opacity: 0;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
#masterup,
#release {
  position: absolute;
  top: 510px;
  left: 0;
  z-index: 2;
  animation: bounceIn 0.6s ease-out 3.4s 1 normal;
  transform-origin: center bottom;
  animation-fill-mode: both;
}
#masterup a,
#release a {
  display: block;
  position: relative;
  transition: all 0.3s;
  opacity: 1;
}
#masterup a:hover,
#release a:hover {
  transform: scale(1.05, 1.05);
  opacity: 0.9;
}
@keyframes light {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
