.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.benefits-list__item {
  width: 49%;
  position: relative;
}

.benefits-list__item:nth-of-type(2n + 1) {
  margin-right: 2%;
}

.benefits-list__item:nth-of-type(n + 3) {
  margin-top: 2%;
}

.benefit {
  background: #192543;
  box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  position: relative;
  padding: 3%;
  border-radius: 5px;
  box-sizing: border-box;
}

.benefit__store-name {
  display: block;
  background: #ba008c;
  box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  padding: 1%;
  text-align: center;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
}

.benefit__item-name {
  width: 100%;
  color: white;
  font-weight: bold;
  margin-top: 3%;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}

.benefit__item-image {
  display: block;
  background: white;
  width: 100%;
  height: 0;
  padding-bottom: 90%;
  margin-top: 3%;
  border-radius: 5px;
  box-sizing: border-box;
  position: relative;
}

.benefit__item-image img {
  vertical-align: bottom;
  max-width: 96%;
  max-height: 96%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.benefit__order {
  width: 100%;
  margin-top: 2%;
  position: relative;
  color: white;
  font-weight: bold;
}

.order-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.order-buttons__item {
  width: 49%;
  height: 0;
  padding-bottom: 13%;
  margin-bottom: 5px;
  position: relative;
}

.order-buttons__item-large {
  width: 100%;
  height: 0;
  padding-bottom: 13%;
  position: relative;
}

.order-button-ps4 {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2%;
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid white;
  text-align: center;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: 0 5px 0 0 black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0085d0;
}

.order-button-ps4 span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.order-button-ps4:hover {
  background: #00c9ea;
}

.order-button-switch {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2%;
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid white;
  text-align: center;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: 0 5px 0 0 black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e62013;
}

.order-button-switch span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.order-button-switch:hover {
  background: #ff7445;
}

.order-button-coming {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2%;
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid white;
  text-align: center;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: 0 5px 0 0 black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: gray;
}

.order-button-coming span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.window-corner-deco-topleft {
  vertical-align: bottom;
  width: 10%;
  position: absolute;
  top: 2%;
  left: 1%;
}

.window-corner-deco-topright {
  vertical-align: bottom;
  width: 10%;
  position: absolute;
  top: 2%;
  right: 1%;
  transform: scale(-1, 1);
}

.window-corner-deco-bottomleft {
  vertical-align: bottom;
  width: 10%;
  position: absolute;
  bottom: 2%;
  left: 1%;
  transform: scale(1, -1);
}

.window-corner-deco-bottomright {
  vertical-align: bottom;
  width: 10%;
  position: absolute;
  bottom: 2%;
  right: 1%;
  transform: scale(-1, -1);
}

.hr-article {
  width: 15%;
  margin: 75px auto;
  border: 0;
  border-bottom: 15px dotted white;
}

.hr-section {
  width: 15%;
  margin: 5% auto;
  border: 0;
  border-bottom: 15px dotted white;
}

/* FRAME --------------------------------*/
.subpage-main {
  padding: 100px 0 100px;
}

.subpage-caption {
  max-width: 1280px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}

.subpage-caption img {
  display: block;
  margin: 0 auto;
}

.subpage-caption__character {
  width: 36%;
}

.subpage-caption__system {
  width: 26%;
}

.subpage-caption__story {
  width: 22%;
}


.subpage-caption__gallery {
  width: 30%;
}

.subpage-caption__product {
  width: 30%;
}

.subpage-article {
  width: 100%;
  position: relative;
}

.subpage-article + .subpage-article {
  margin-top: 150px;
}

/* STORY --------------------------------*/
.bg-story {
  display: block;
  background: url(../img/story/bg_story.jpg) 50% 50% no-repeat;
  background-size: cover;
  box-shadow: 0 0 100px 70px black inset;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

.story-text {
  max-width: 880px;
  height: 98vh;
  margin: 0 auto;
  position: relative;
}

.story-text img {
  vertical-align: bottom;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* FRAME --------------------------------*/
.subpage-main {
  padding: 100px 0 200px;
}

.subpage-caption {
  max-width: 1280px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}

.subpage-caption img {
  display: block;
  margin: 0 auto;
}

.subpage-caption__character {
  width: 36%;
}

.subpage-caption__system {
  width: 26%;
}

.subpage-caption__story {
  width: 20%;
}

.subpage-caption__gallery {
  width: 30%;
}

.subpage-caption__product {
  width: 30%;
}

.subpage-article {
  width: 100%;
  position: relative;
}

.subpage-article + .subpage-article {
  margin-top: 150px;
}

.subpage-section {
  width: 100%;
  position: relative;
}

.subpage-section + .subpage-section {
  margin-top: 40px;
}

/* Common-window --------------------------------*/
.common-window {
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 0px 3.2px 0.8px black, 0px 0px 16px 4px black, inset 0px 0px 2.5px 2.5px #7283e9;
          box-shadow: 0px 0px 3.2px 0.8px black, 0px 0px 16px 4px black, inset 0px 0px 2.5px 2.5px #7283e9;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.common-window + .common-window {
  margin-top: 50px;
}

.common-window__caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(11, 92, 130, 0.8)), to(rgba(22, 10, 39, 0.8)));
  background: linear-gradient(to top, rgba(11, 92, 130, 0.8) 0%, rgba(22, 10, 39, 0.8) 100%);
  -webkit-box-shadow: 0px 3px 5px 0px black, inset 0px 0px 14px 6px #13f1ff;
          box-shadow: 0px 3px 5px 0px black, inset 0px 0px 14px 6px #13f1ff;
  width: 100%;
  height: 0;
  padding-bottom: 6%;
  text-align: center;
  margin-bottom: 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  position: relative;
}

.common-window__caption img {
  vertical-align: bottom;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.common-window__caption span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  color: white;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px, black 1px -1px 7px, black -1px -1px 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.common-window-subcaption {
  background: #ba008c;
  -webkit-box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
          box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  text-align: center;
  color: white;
  padding: 1%;
  margin-bottom: 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.05em;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px,black 1px -1px 7px, black -1px -1px 7px;
}

.common-window__contents {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.common-window-text {
  width: 100%;
  color: white;
  font-weight: bold;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px,black 1px -1px 7px, black -1px -1px 7px;
}

.common-window-text:not(:first-child) {
  margin-top: 2%;
}

.common-window-text__center {
  text-align: center;
}

.common-window-text em {
  font-style: normal;
  font-size: 1.15em;
}

.common-window-text mark {
  color: #f9e55e;
  background: none;
}

.common-window-text small {
  font-size: 0.8em;
}

.common-window-text a:visited {
  color: #79c5da;
}

.common-window-text a:hover {
  color: #ffb40a;
}

.common-window-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.common-window-image:not(:first-child) {
  margin-top: 2%;
}

.common-window-image img {
  vertical-align: bottom;
  width: 100%;
}

.common-window-movie {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 6%;
  position: relative;
}

.common-window-movie a {
  display: block;
}

.common-window-movie a::after {
  display: block;
  content: "";
  background: url(../img/icon_play.png);
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.common-window-twitter {
  width: 100%;
}

.common-window-twitter:not(:first-child) {
  margin-top: 3%;
}

.common-window .twitter-tweet {
  margin: 0 auto;
}

.common-window-block-A {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.common-window-block-B {
  background: #192543;
  -webkit-box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
          box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  margin: 0 auto;
  padding: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 5px;
}

.common-window-block-C {
  width: 80%;
  margin: 0 auto;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.common-window-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.common-window-list__item {
  width: 49%;
}

.common-window-list__item:nth-of-type(2n) {
  margin-left: 2%;
}

.common-window-list__item:nth-of-type(n + 3) {
  margin-top: 2%;
}

.common-window-block-A:not(:first-child), .common-window-block-B:not(:first-child), .common-window-list:not(:first-child) {
  margin-top: 5%;
}

.common-window + .common-window {
  margin-top: 5%;
}

/* SLECT-BAR --------------------------------*/
.select-bar {
  width: 100%;
  position: relative;
}

.select-bar__wrapper {
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: inset -1px 5px 5px 0px rgba(200, 48, 233, 0.8), inset -1px -5px 5px 0px rgba(200, 48, 233, 0.8);
          box-shadow: inset -1px 5px 5px 0px rgba(200, 48, 233, 0.8), inset -1px -5px 5px 0px rgba(200, 48, 233, 0.8);
  width: 100%;
  margin: 0 auto 0;
  position: relative;
}

.select-bar-deco-left {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.select-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

.select-buttons__item {
  width: 100%;
  height: 0;
  padding-bottom: 8%;
  position: relative;
}


/* CHARACTER --------------------------------*/
.bg-character {
  display: block;
  background: url(../img/character/bg_character.jpg) 50% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

.select-button-character-main, .select-button-character-sub {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  background: url(../img/character/deco_selectbutton_left.png) 5% 50% no-repeat, url(../img/character/deco_selectbutton_right.png) right 5% top 50% no-repeat, linear-gradient(to top, rgba(11, 92, 130, 0.8) 0%, rgba(22, 10, 39, 0.8) 100%);
  background-size: 10% auto, 10% auto, cover;
  box-shadow: 0px 3px 5px 0px black, inset 0px 0px 14px 6px #13f1ff;
}

.select-button-character-main img, .select-button-character-sub img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  pointer-events: none;
}

.select-button-character-main:hover, .select-button-character-sub:hover, .select-button-character-main.show, .select-button-character-sub.show {
  background: url(../img/character/deco_selectbtn_yellow_left.png) 5% 50% no-repeat, url(../img/character/deco_selectbtn_yellow_right.png) right 5% top 50% no-repeat, linear-gradient(to top, rgba(255, 180, 10, 0.8) 0%, rgba(45, 4, 0, 0.8) 100%);
  background-size: 10% auto;
  box-shadow: 0px 3px 5px 0px black, inset 0px 0px 14px 6px #f9e55e;
}

.select-bar {
  width: 100%;
  position: relative;
}

.select-bar__wrapper {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: inset 0px 0px 5px 5px rgba(200, 48, 233, 0.8);
  width: 120%;
  margin: 0 auto 0;
  position: relative;
  left: calc(50% - 60%);
}

.select-bar-deco-left {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0%, -50%);
}

.select-buttons {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

.select-buttons__item {
  width: 100%;
  height: 0;
  padding-bottom: 8%;
  position: relative;
}

.select-button-blue {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  background: url(../img/character/deco_selectbutton_left.png) 5% 50% no-repeat, url(../img/character/deco_selectbutton_right.png) right 5% top 50% no-repeat, linear-gradient(to top, rgba(11, 92, 130, 0.8) 0%, rgba(22, 10, 39, 0.8) 100%);
  background-size: 10% auto;
  box-shadow: 0px 3px 5px 0px black, inset 0px 0px 14px 6px #13f1ff;
}

.select-button-blue img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
}

.characters-list {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: none;
}

.characters-list:before {
  content: "";
  display: block;
  width: 120%;
  height: 0;
  padding-bottom: 2%;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: inset 0px 0px 5px 5px rgba(200, 48, 233, 0.3);
  position: absolute;
  top: 100%;
  left: calc(50% - 60%);
}

.characters-list.show {
  display: block; 
}

.characters-article {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.character-section {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.character-block {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  width: 100%;
  height: 0;
  padding-bottom: 46.875%;
  position: relative;
}

.character-info {
  display: flex;
  align-items: center;
  background: url(../img/character/deco_chara_left_top.png) 0 0 no-repeat, url(../img/character/deco_chara_right_bottom.png) 100% 100% no-repeat, url(../img/character/bg_chara_dot.png) 0 0 no-repeat, linear-gradient(to top, rgba(11, 92, 130, 0.5) 0%, rgba(22, 10, 39, 0.5) 100%);
  background-size: auto 71.22222%, auto 33.22222%, auto 100%, cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.character-info__text {
  display: block;
  height: 100%;
  position: relative;
  left: 0;
}

.character-info__chara {
  display: block;
  height: 100%;
  position: relative;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.character-info__chara.visible {
  -webkit-animation: anim-fadeIn-horizontal 0.4s ease forwards;
          animation: anim-fadeIn-horizontal 0.4s ease forwards;
  visibility: visible;
}

.characters-list.show {
  display: block;
}

.characters-article {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.character-section {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.character-block {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  width: 100%;
  height: 0;
  padding-bottom: 46.875%;
  position: relative;
}

.character-info, .character-info-coming {
  display: flex;
  align-items: center;
  background: url(../img/character/deco_chara_left_top.png) 0 0 no-repeat, url(../img/character/deco_chara_right_bottom.png) 100% 100% no-repeat, url(../img/character/bg_chara_dot.png) 0 0 no-repeat, linear-gradient(to top, rgba(11, 92, 130, 0.5) 0%, rgba(22, 10, 39, 0.5) 100%);
  background-size: auto 71.22222%, auto 33.22222%, auto 100%, cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.character-info__text {
  display: block;
  height: 100%;
  position: relative;
  left: 0;
}

.character-info__chara {
  display: block;
  height: 100%;
  position: relative;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.character-info__chara.visible {
  -webkit-animation: anim-fadeIn-horizontal 0.4s ease forwards;
          animation: anim-fadeIn-horizontal 0.4s ease forwards;
  visibility: visible;
}

.character-info-coming {
  background: url(../img/character/deco_chara_left_top_coming.png) 0 0 no-repeat, url(../img/character/deco_chara_right_bottom_coming.png) 100% 100% no-repeat, url(../img/character/bg_chara_dot_coming.png) 0 0 no-repeat, rgba(70, 70, 70, 0.9);
  background-size: auto 71.22222%, auto 33.22222%, auto 100%, cover;
  border-top: solid 4px rgba(0, 0, 0, 0.4);
  border-bottom: solid 4px rgba(0, 0, 0, 0.4);
}

.character-info-coming__text {
  display: block;
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-characters {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.sub-characters__item {
  width: 50%;
  height: 0;
  padding-bottom: 30%;
  position: relative;
}

.sub-character-block {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  border: 2px solid white;
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.sub-character-cover {
  background: url(../img/character/sub/bg_sub_cover.png) 50% 50% no-repeat, linear-gradient(to bottom, #0076c1 0%, #1c0739 100%);
  background-size: auto 100%, cover;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.sub-character-cover__title {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-character-info, .sub-character-info-coming {
  display: flex;
  align-items: center;
  background: url(../img/character/deco_chara_left_top.png) 0 0 no-repeat, url(../img/character/deco_chara_right_bottom.png) 100% 100% no-repeat, url(../img/character/bg_chara_dot.png) 0 0 no-repeat, linear-gradient(to top, rgba(11, 92, 130, 0.5) 0%, rgba(22, 10, 39, 0.5) 100%);
  background-size: auto 71.22222%, auto 33.22222%, auto 100%, cover;
  width: 100%;
  height: 100%;
}

.sub-character-info__text {
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
}

.sub-character-info__chara {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  visibility: hidden;
  opacity: 0;
}

.sub-character-info__chara.visible {
  -webkit-animation: anim-fadeIn-horizontal 0.4s ease forwards;
          animation: anim-fadeIn-horizontal 0.4s ease forwards;
  visibility: visible;
}

.sub-character-info-coming {
  background: url(../img/character/deco_chara_left_top_coming.png) 0 0 no-repeat, url(../img/character/deco_chara_right_bottom_coming.png) 100% 100% no-repeat, url(../img/character/bg_chara_dot_coming.png) 0 0 no-repeat, rgba(70, 70, 70, 0.9);
  background-size: auto 71.22222%, auto 33.22222%, auto 100%, cover;
}

.sub-character-info-coming__text {
  display: block;
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* PRODUCT --------------------------------*/
.bg-product {
  display: block;
  background: url(../img/product/bg_product.png) 50% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

.product-spec-wrapper {
  width: 100%;
  position: relative;
}

.product-spec-wrapper__window {
  width: 100%;
  background: linear-gradient(to top, rgba(0, 89, 88, 0.8) 0%, rgba(32, 19, 51, 0.8) 100%);
  box-shadow: 0px 3px 5px 0px black, inset 0px 0px 5px 5px #ba008c;
  position: relative;
  padding: 5% 0 5%;
}

.product-spec-table {
  width: 70%;
  position: relative;
  margin: 0 auto;
}

.product-contents-wrapper {
  width: 100%;
  position: relative;
}

.product-contents-wrapper__window {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 3.2px 0.8px black, 0px 0px 16px 4px black, inset 0px 0px 2.5px 2.5px #7283e9;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2%;
  box-sizing: border-box;
  position: relative;
}

.product-contents-wrapper + .product-contents-wrapper {
  margin-top: 50px;
}

/* PRODUCT-info --------------------------------*/
.product-info-section {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 2%;
  box-sizing: border-box;
}

.product-info-section__caption {
  background: linear-gradient(to top, rgba(11, 92, 130, 0.8) 0%, rgba(22, 10, 39, 0.8) 100%);
  box-shadow: 0px 3px 5px 0px black, inset 0px 0px 14px 6px #13f1ff;
  width: 100%;
  height: 0;
  padding-bottom: 6%;
  text-align: center;
  margin-bottom: 3%;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
}

.product-info-section__caption img {
  vertical-align: bottom;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-info-section__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 2% auto 0;
}

.product-info-section__article {
  width: 100%;
  position: relative;
}

.product-info-section__article + .product-info-section__article {
  margin-top: 5%;
}

.product-info-section__mainimage {
  width: 45%;
}

.product-info-section__mainimage img {
  vertical-align: bottom;
  width: 100%;
}

.product-info-section-price {
  width: 100%;
  border-radius: 3px;
  box-sizing: border-box;
  text-align: right;
}

.product-info-section-price__num {
  font-size: 2em;
}

.product-info-section-goodslist {
  background: #192543;
  box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  padding: 5%;
  border-radius: 3px;
  box-sizing: border-box;
}

.product-info-section-goodslist p {
  border-left: 10px double #ffb40a;
  padding-left: 5%;
}

.product-info-section-goodslist p:not(:nth-of-type(1)) {
  margin-top: 4%;
}

.product-info-section__textbox {
  width: 50%;
  color: white;
  font-weight: bold;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px,black 1px -1px 7px, black -1px -1px 7px;
}

.product-info-section__textbox-full {
  width: 80%;
  color: white;
  font-weight: bold;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px,black 1px -1px 7px, black -1px -1px 7px;
  margin: 0 auto;
}

.product-info-section-subcaption {
  background: #ba008c;
  box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  text-align: center;
  color: white;
  padding: 1%;
  margin-bottom: 2%;
  box-sizing: border-box;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.05em;
}

.product-info-section + .product-info-section {
  margin-top: 5%;
}

/* SYSTEM --------------------------------*/
.bg-system {
  display: block;
  background: url(../img/system/bg_system.jpg) 50% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

.system-frame {
  border: 4px solid white;
  -webkit-box-shadow: 0 5px 0 0 black;
          box-shadow: 0 5px 0 0 black;
}

.system-select {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.8% 0;
  position: relative;
}

.system-select-start {
  max-width: 45%;
  margin: 0 auto 0;
  position: relative;
}

.system-select-start__button {
  display: block;
  width: 100%;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}

.system-select-start__button img {
  vertical-align: bottom;
  width: 100%;
  position: relative;
}

.system-select-start__button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.system-select-hr {
  width: 30%;
  border: none;
  border-bottom: 5px dotted white;
  margin: 0.4% auto;
}

.system-select-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.system-select-menu__item {
  width: 33.33333%;
  height: 0;
  padding-bottom: 3%;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}

.system-select-menu__item:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.system-select-button {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.system-select-button img {
  vertical-align: bottom;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.system-start-list {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.system-start {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 30%;
  position: relative;
  opacity: 0;
}

.system-start + .system-start {
  margin-top: 2%;
}

.system-start-list.visible .system-start:nth-of-type(1) {
  -webkit-animation: anim-fadeIn-horizontal 0.5s ease 0.1s forwards;
          animation: anim-fadeIn-horizontal 0.5s ease 0.1s forwards;
}

.system-start-list.visible .system-start:nth-of-type(2) {
  -webkit-animation: anim-fadeIn-horizontal 0.5s ease 0.2s forwards;
          animation: anim-fadeIn-horizontal 0.5s ease 0.2s forwards;
}

.system-start-list.visible .system-start:nth-of-type(3) {
  -webkit-animation: anim-fadeIn-horizontal 0.5s ease 0.3s forwards;
          animation: anim-fadeIn-horizontal 0.5s ease 0.3s forwards;
}

.system-start__deco-top {
  display: block;
  width: 60%;
  margin: 0 auto 3%;
}

.system-start__deco-bottom {
  display: block;
  width: 60%;
  margin: 3% auto 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.system-start-button {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 10px double white;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

.system-start-button:hover {
  border-color: #ffb40a;
}

.system-start-button:hover .system-start-button__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.system-start-button__image {
  display: block;
  height: 100%;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  position: relative;
}

.system-start-button__text {
  position: absolute;
  bottom: 1%;
  right: 0.5%;
  width: 46.875%;
  z-index: 10;
  pointer-events: none;
}

.system-catch-shortcut01 {
  display: block;
  position: absolute;
  top: -2%;
  bottom: auto;
  left: 27.5%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 45%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-shortcut01.visible {
  -webkit-animation: anim-fadepop 0.4s ease forwards;
          animation: anim-fadepop 0.4s ease forwards;
  visibility: visible;
}

.system-catch-shortcut02 {
  display: block;
  position: absolute;
  top: -2%;
  bottom: auto;
  left: -8%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 45%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-shortcut02.visible {
  -webkit-animation: anim-fadepop 0.4s 0.1s ease forwards;
          animation: anim-fadepop 0.4s 0.1s ease forwards;
  visibility: visible;
}

.system-catch-shortcut03 {
  display: block;
  position: absolute;
  top: -1%;
  bottom: auto;
  left: -5%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 45%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-shortcut03.visible {
  -webkit-animation: anim-fadepop 0.4s ease forwards;
          animation: anim-fadepop 0.4s ease forwards;
  visibility: visible;
}

.system-catch-shortcut04 {
  display: block;
  position: absolute;
  top: -5%;
  bottom: auto;
  left: -5%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 51%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-shortcut04.visible {
  -webkit-animation: anim-fadepop 0.4s 0.1s ease forwards;
          animation: anim-fadepop 0.4s 0.1s ease forwards;
  visibility: visible;
}

.system-catch-lift {
  display: block;
  position: absolute;
  top: -6%;
  bottom: auto;
  left: -5%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 70%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-lift.visible {
  -webkit-animation: anim-fadepop 0.4s ease forwards;
          animation: anim-fadepop 0.4s ease forwards;
  visibility: visible;
}

.system-catch-skill {
  display: block;
  position: absolute;
  top: -6%;
  bottom: auto;
  left: -5%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 65%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-skill.visible {
  -webkit-animation: anim-fadepop 0.4s ease 0.1s forwards;
          animation: anim-fadepop 0.4s ease 0.1s forwards;
  visibility: visible;
}

.system-catch-charamake {
  display: block;
  position: absolute;
  top: -6%;
  bottom: auto;
  left: -5%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 65%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-charamake.visible {
  -webkit-animation: anim-fadepop 0.4s ease 0.2s forwards;
          animation: anim-fadepop 0.4s ease 0.2s forwards;
  visibility: visible;
}

.system-catch-coop {
  display: block;
  position: absolute;
  top: -6%;
  bottom: auto;
  left: -5%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 60%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-coop.visible {
  -webkit-animation: anim-fadepop 0.4s ease 0.3s forwards;
          animation: anim-fadepop 0.4s ease 0.3s forwards;
  visibility: visible;
}

.system-catch-dragon {
  display: block;
  position: absolute;
  top: -11%;
  bottom: auto;
  left: -8%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 45%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-dragon.visible {
  -webkit-animation: anim-fadepop 0.4s 0.1s ease forwards;
          animation: anim-fadepop 0.4s 0.1s ease forwards;
  visibility: visible;
}

.system-catch-crab {
  display: block;
  position: absolute;
  top: -11%;
  bottom: auto;
  left: -8%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 45%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-crab.visible {
  -webkit-animation: anim-fadepop 0.4s 0.1s ease forwards;
          animation: anim-fadepop 0.4s 0.1s ease forwards;
  visibility: visible;
}

.system-catch-dullahan {
  display: block;
  position: absolute;
  top: -11%;
  bottom: auto;
  left: -19%;
  right: auto;
  z-index: 10;
  pointer-events: none;
  width: 55%;
  visibility: hidden;
  opacity: 0;
}

.system-catch-dullahan.visible {
  -webkit-animation: anim-fadepop 0.4s 0.1s ease forwards;
          animation: anim-fadepop 0.4s 0.1s ease forwards;
  visibility: visible;
}


.system-text {
  width: 100%;
  font-weight: bold;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px, black 1px -1px 7px, black -1px -1px 7px;
  text-justify: inter-ideograph;
}

.system-text b {
  color: #F9E55E;
  font-size: 1em;
}

.system-article {
  display: block;
  width: 100%;
  margin-bottom: 5%;
  position: relative;
}

.system-article__contents {
  background: url(../img/system/bg_system_pattern.png) 0 0 repeat, -webkit-gradient(linear, left bottom, left top, from(rgba(0, 89, 88, 0.8)), to(rgba(32, 19, 51, 0.8)));
  background: url(../img/system/bg_system_pattern.png) 0 0 repeat, linear-gradient(to top, rgba(0, 89, 88, 0.8) 0%, rgba(32, 19, 51, 0.8) 100%);
  background-size: 5%, cover;
  width: 100%;
  padding: 0 0 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.system-article__bottom {
  display: block;
  width: 100%;
  min-height: 30px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: inset 0px 0px 5px 5px rgba(200, 48, 233, 0.3);
          box-shadow: inset 0px 0px 5px 5px rgba(200, 48, 233, 0.3);
  top: 100%;
  position: absolute;
}

.system-bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.system-bottom-nav__home {
  display: block;
  width: 27%;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}

.system-bottom-nav__home:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.system-bottom-nav__home img {
  vertical-align: bottom;
  width: 100%;
}

.system-bottom-nav__prev {
  display: block;
  width: 5%;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  left: 2%;
}

.system-bottom-nav__prev:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.system-bottom-nav__prev img {
  vertical-align: bottom;
  width: 100%;
}

.system-bottom-nav__next {
  display: block;
  width: 5%;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  right: 2%;
}

.system-bottom-nav__next:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.system-bottom-nav__next img {
  vertical-align: bottom;
  width: 100%;
}

.system-caption {
  background: url(../img/system/deco_system_caption.png) 0 0 no-repeat, -webkit-gradient(linear, left bottom, left top, from(#037685), to(#00d3c7));
  background: url(../img/system/deco_system_caption.png) 0 0 no-repeat, linear-gradient(to top, #037685 0%, #00d3c7 100%);
  background-size: cover;
  -webkit-box-shadow: 0px 15px 0px 0px black, inset 0px 10px 0px 0px #ba008c;
          box-shadow: 0px 15px 0px 0px black, inset 0px 10px 0px 0px #ba008c;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 15%;
  margin-bottom: 100px;
  position: relative;
}

.system-caption__text {
  display: block;
  max-width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.system-caption__text img {
  vertical-align: bottom;
  width: 100%;
}

.system-section {
  display: block;
  max-width: 1280px;
  margin: auto;
  padding: 0 4.16667% 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.system-section__contents {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.system-section-caption {
  background: url(../img/system/deco_subcap_dot.png) 0 0 no-repeat, -webkit-gradient(linear, left bottom, left top, from(#ffe25c), color-stop(0%, #ffba00), color-stop(47%, #ffb22f), to(#ffaa5e));
  background: url(../img/system/deco_subcap_dot.png) 0 0 no-repeat, linear-gradient(to top, #ffe25c 0%, #ffba00 0%, #ffb22f 47%, #ffaa5e 100%);
  background-size: auto 100%, cover;
  -webkit-box-shadow: inset 2.65px 4.24px 0px 0px white;
          box-shadow: inset 2.65px 4.24px 0px 0px white;
  border: 6px solid #251f1a;
  width: 100%;
  height: 0;
  padding-bottom: 11%;
  margin-bottom: 4%;
  border-radius: 10px;
  position: relative;
}

.system-section-caption__text {
  display: block;
  width: 100%;
  height: 66%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.system-section-caption__text img {
  display: block;
  margin: 0 auto;
  height: 100%;
}

.system-section__subcaption {
  background: #ba008c;
  -webkit-box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
          box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 95%;
  padding: 1%;
  margin: 0 auto 2%;
  text-align: center;
  color: white;
  font-size: 1.45em;
  font-weight: bold;
  text-shadow: 0px 4px 0px black;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.system-section-text {
  width: 100%;
  color: white;
  font-size: 1.3em;
  position: relative;
  text-align: center;
}

.system-section-text__b {
  color: #f9e55e;
  font-size: 1.31em;
}

.system-section-text + .system-section-text,
.system-section-text + .system-section-image-large,
.system-section-text + .system-section-image-middle {
  margin-top: 2%;
}

.system-section-image-large {
  width: 100%;
  position: relative;
}

.system-section-image-large + .system-section-image-large,
.system-section-image-large + .system-section-image-middle,
.system-section-image-large + .system-section-text {
  margin-top: 1%;
}

.system-section-image-middle {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.system-section-image-middle + .system-section-image-middle,
.system-section-image-middle + .system-section-image-large,
.system-section-image-middle + .system-section-text {
  margin-top: 1%;
}

.system-section-block {
  display: block;
  margin-top: 5%;
  position: relative;
}

.system-section-block-b {
  background: #192543;
  -webkit-box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
          box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  display: block;
  margin-top: 5%;
  padding: 3%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.system-section-flexboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-top: 4%;
}

.system-section-flexboxes__item {
  width: 49%;
  position: relative;
}

.system-section-flexboxes__item:nth-of-type(2n) {
  margin-left: 2%;
}

.system-section-flexboxes__item:nth-of-type(n + 3) {
  margin-top: 5%;
}

.system-section-flexboxes__item-full {
  width: 100%;
  position: relative;
}

.system-section-flexboxes__item-full:nth-of-type(n + 2) {
  margin-top: 5%;
}

.system-section-ss-list {
  width: 100%;
  margin-top: 4%;
}

.system-section-flexbox, .system-section-flexbox-b {
  width: 100%;
  height: 100%;
  padding: 1%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  position: relative;
}


.system-section-flexbox__image {
  width: 100%;
  position: relative;
}

.system-section-flexbox__image + .system-section-flexbox__image,
.system-section-flexbox__image + .system-section-flexbox__text {
  margin-top: 3%;
}

.system-section-flexbox-b {
  background: rgba(25, 37, 67, 0.8);
  -webkit-box-shadow: 0px 0px 2.8px 1.2px black;
          box-shadow: 0px 0px 2.8px 1.2px black;
  border: 4px solid #ff2e82;
  padding: 4%;
}


.system-section-flexbox__text {
  width: 100%;
  position: relative;
  color: white;
  font-size: 1.1em;
}

.system-section-flexbox__text__b {
  color: #f9e55e;
}

.system-section-flexbox__text + .system-section-flexbox__text,
.system-section-flexbox__text + .system-section-flexbox__image {
  margin-top: 3%;
}

.ability-wrapper {
  width: 100%;
  padding: 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.ability-wrapper:not(:first-of-type) {
  margin-top: 5%;
}

.ability-bg-zet {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #2597B8;
}

.ability-bg-majo {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #fddfeb;
}

.ability-bg-king {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #e5af52;
}

.ability-bg-melody {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #d5e1ed;
}

.ability-bg-piyori {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #d13327;
}

.ability-bg-iva {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #8c153d;
}


.ability-bg-laharl {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #6784d8;
}

.ability-bg-etna {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #de1b52;
}

.ability-bg-flonne {
  display: block;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 black;
          box-shadow: 0 0 10px 0 black;
  overflow: hidden;
  background-color: #ffe2a3;
}

.ability-name {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d91e64), to(#f10033));
  background-image: linear-gradient(to bottom, #d91e64 0%, #f10033 100%);
  width: 100%;
  height: 29%;
  position: absolute;
  top: -26%;
  left: -10%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: 5;
  border-bottom: 4px solid white;
}

.ability-name-text {
  display: block;
  width: 30%;
  position: absolute;
  top: 3.5%;
  left: 2%;
  z-index: 5;
  -webkit-transform: skew(-5deg) rotate(-10deg);
          transform: skew(-5deg) rotate(-10deg);
}

.ability-chara {
  width: 30%;
  position: absolute;
  top: -27%;
  left: -1%;
  z-index: 2;
}

.ability-text {
  display: block;
  width: 70%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 10;
}

.txt-ability-example {
  vertical-align: bottom;
  width: 100%;
}


/* GALLERY --------------------------------*/
.bg-gallery {
  display: block;
  background: url(../img/gallery/bg_gallery.png) 50% 50% no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

.gallery-spec-wrapper {
  width: 100%;
  position: relative;
}

.gallery-spec-wrapper__window {
  width: 100%;
  background: linear-gradient(to top, rgba(0, 89, 88, 0.8) 0%, rgba(32, 19, 51, 0.8) 100%);
  box-shadow: 0px 3px 5px 0px black, inset 0px 0px 5px 5px #ba008c;
  position: relative;
  padding: 5% 0 5%;
}

.gallery-spec-table {
  width: 70%;
  position: relative;
  margin: 0 auto;
}

.gallery-contents-wrapper {
  width: 100%;
  position: relative;
}

.gallery-contents-wrapper__window {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 3.2px 0.8px black, 0px 0px 16px 4px black, inset 0px 0px 2.5px 2.5px #7283e9;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2%;
  box-sizing: border-box;
  position: relative;
}

.gallery-contents-wrapper + .gallery-contents-wrapper {
  margin-top: 50px;
}

/* GALLERY-info --------------------------------*/
.gallery-section {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 2%;
  box-sizing: border-box;
}

.gallery-section__caption {
  background: linear-gradient(to top, rgba(11, 92, 130, 0.8) 0%, rgba(22, 10, 39, 0.8) 100%);
  box-shadow: 0px 3px 5px 0px black, inset 0px 0px 14px 6px #13f1ff;
  width: 100%;
  height: 0;
  padding-bottom: 6%;
  text-align: center;
  margin-bottom: 3%;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
}

.gallery-section__caption img {
  vertical-align: bottom;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-section__contents {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 2% auto 0;
}

.gallery-section__article {
  width: 100%;
  position: relative;
}

.gallery-section__article + .gallery-section__article {
  margin-top: 5%;
}

.gallery-section__movie {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.gallery-section__movie a {
  display: block;
}

.gallery-section__movie a::after {
  display: block;
  content: "";
  background: url(../img/icon_play.png);
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-section-price {
  width: 100%;
  border-radius: 3px;
  box-sizing: border-box;
  text-align: right;
}

.gallery-section-price__num {
  font-size: 2em;
}

.gallery-section-goodslist {
  background: #192543;
  box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  padding: 5%;
  border-radius: 3px;
  box-sizing: border-box;
}

.gallery-section-goodslist p {
  border-left: 10px double #ffb40a;
  padding-left: 5%;
}

.gallery-section-goodslist p:not(:nth-of-type(1)) {
  margin-top: 4%;
}

.gallery-section__textbox {
  width: 50%;
  color: white;
  font-weight: bold;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px,black 1px -1px 7px, black -1px -1px 7px;
}

.gallery-section__textbox-full {
  width: 80%;
  color: white;
  font-weight: bold;
  text-shadow: black 1px 1px 7px, black -1px 1px 7px,black 1px -1px 7px, black -1px -1px 7px;
  margin: 0 auto;
}

.gallery-section-subcaption {
  background: #ba008c;
  box-shadow: 0px 0px 3.75px 1.25px black, inset 0px 0px 1.55px 3.45px #fd2da2;
  width: 100%;
  text-align: center;
  color: white;
  padding: 1%;
  margin-bottom: 2%;
  box-sizing: border-box;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.05em;
}

.gallery-info-section + .gallery-info-section {
  margin-top: 5%;
}

/* TOPICS --------------------------------*/
.topics-caption {
  background: url(../img/system/deco_subcap_dot.png) 0 0 no-repeat, -webkit-gradient(linear, left bottom, left top, from(#ffe25c), color-stop(0%, #ffba00), color-stop(47%, #ffb22f), to(#ffaa5e));
  background: url(../img/system/deco_subcap_dot.png) 0 0 no-repeat, linear-gradient(to top, #ffe25c 0%, #ffba00 0%, #ffb22f 47%, #ffaa5e 100%);
  background-size: auto 100%, cover;
  -webkit-box-shadow: inset 2.65px 4.24px 0px 0px white;
          box-shadow: inset 2.65px 4.24px 0px 0px white;
  border: 6px solid #251f1a;
  height: 20vh;
  margin: 1% auto 3%;
  padding: 1% 0;
  text-align: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.topics-caption img {
  vertical-align: bottom;
  height: 100%;
}
