@charset "UTF-8";
@font-face {
  font-family: "PixelMplus10";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/PixelMplus10-Regular.woff") format("woff");
}
@font-face {
  font-family: "PixelMplus12";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/PixelMplus12-Regular.woff") format("woff");
}
/* =========================================================
 animation
========================================================= */
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes slideSp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-2800px, 0, 0);
            transform: translate3d(-2800px, 0, 0);
  }
}
@keyframes slideSp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-2800px, 0, 0);
            transform: translate3d(-2800px, 0, 0);
  }
}
@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
}
img {
  display: block;
}

.blackBox {
  background: #14283c;
  padding: 12px 12px 0;
  margin: 24px 0;
  color: #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #14283c;
          box-shadow: 0px 0px 0px 2px #14283c;
  border: 1px #fff solid;
  border-radius: 3px;
}
.blackBox p {
  font-size: 1.4rem;
  font-family: "PixelMplus12";
  line-height: 2.5;
  letter-spacing: 0.1rem;
  letter-spacing: 0rem;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .blackBox p {
    font-size: 3.3854166667vw;
    line-height: 2;
  }
}

.linkBtn {
  display: inline-block;
  margin: 0 20px;
  width: 100%;
}
.linkBtn a {
  display: block;
  background: #ed1a3a;
  border: 2px solid #ed1a3a;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px 0;
  margin: 0 auto;
  border-radius: 8px;
  width: 450px;
}
.linkBtn a span {
  position: relative;
  padding-right: 20px;
  display: inline-block;
  line-height: 1.3;
}
.linkBtn a span:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  margin-top: -7px;
  background: #fff;
}
.linkBtn a span:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 7px;
  margin-top: -1px;
  border-top: solid 2px #ed1a3a;
  border-right: solid 2px #ed1a3a;
}

.linkBtn2 {
  display: inline-block;
  margin: 0 20px;
  width: 100%;
}
.linkBtn2 a {
  display: block;
  background: #fff;
  border: 2px solid #ed1a3a;
  color: #ed1a3a;
  font-weight: bold;
  text-align: center;
  padding: 12px 0;
  margin: 0 auto;
  border-radius: 8px;
  width: 450px;
}
.linkBtn2 a span {
  position: relative;
  padding-right: 20px;
  display: inline-block;
  line-height: 1.3;
}
.linkBtn2 a span:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  margin-top: -7px;
  background: #ed1a3a;
}
.linkBtn2 a span:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 7px;
  margin-top: -1px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.toTop {
  position: relative;
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  position: fixed;
  bottom: 60px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 200;
}
.toTop img {
  width: 100%;
  display: block;
}
.toTop.show {
  opacity: 1;
}

@media (max-width: 768px) {
  .blackBox {
    padding: 6% 6% 0;
    margin: 8% 0;
  }
  .blackBox p {
    margin-bottom: 6%;
  }
  .linkBtn {
    margin: 0 auto;
    width: 85.7142857143%;
    display: block;
  }
  .linkBtn a {
    border: 1px solid #ed1a3a;
    width: 100%;
    padding: 3.4285714286% 0;
  }
  .linkBtn a span {
    font-size: 3.2552083333vw;
  }
  .linkBtn a span:before {
    width: 14px;
    height: 14px;
  }
  .linkBtn a span:after {
    width: 5px;
    height: 5px;
    margin-top: -2px;
    right: 5px;
  }
  .linkBtn2 {
    margin: 0 auto;
    width: 92.8571428571%;
    display: block;
  }
  .linkBtn2 a {
    border: 2px solid #ed1a3a;
    width: 100%;
    padding: 3.6923076923% 0;
  }
  .linkBtn2 a span {
    font-size: 3.2552083333vw;
  }
  .linkBtn2 a span:before {
    width: 14px;
    height: 14px;
  }
  .linkBtn2 a span:after {
    width: 5px;
    height: 5px;
    margin-top: -2px;
    right: 5px;
  }
  .toTop {
    bottom: 2.5%;
    right: 2.5%;
    width: 12.75%;
    height: auto;
  }
}
.main_outer1 {
  line-height: 1.2;
  font-size: 16px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* =========================================================================
   共通
  ========================================================================= */
  /* =========================================================
   スマホ対応
  ========================================================= */
}
@media (max-width: 768px) {
  .main_outer1 .main_outer1 {
    padding: 0;
  }
}
.main_outer1 img {
  max-width: none !important;
}
.main_outer1 .content {
  width: 1000px;
  background: #b1dcfc;
  margin: 0 auto;
  padding-bottom: 60px;
}
.main_outer1 .kvArea {
  margin-bottom: -62px;
  overflow: hidden;
  position: relative;
}
.main_outer1 .kvArea .titleArea {
  background: url(../img/bg_monster01_pc.png);
  background-position: center 170px;
  background-repeat: no-repeat;
  margin-top: -240px;
  z-index: 5;
  position: relative;
}
.main_outer1 .kvArea .titleArea .logo {
  margin: 0 auto;
  z-index: 10;
  position: relative;
  width: 700px;
}
.main_outer1 .kvArea .titleArea h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 900px;
  position: absolute;
  top: 330px;
  left: 0;
  right: 0;
  margin: auto;
}
.main_outer1 .kvArea .titleArea [class^=label] {
  color: #ff5a00;
  font-size: 3.2rem;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(90deg, #FF4902, #FF7828);
  -webkit-background-clip: text;
  text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, 3px -3px 0 #fff, -3px -3px 0 #fff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.main_outer1 .kvArea .titleArea [class^=label] span {
  font-size: 6rem;
}
.main_outer1 .kvArea .sliding {
  height: 240px;
  width: 4000px;
  background: url("../img/bg_sky_pc.png") repeat-x;
  -webkit-animation: slide 200s linear infinite;
          animation: slide 200s linear infinite;
}
.main_outer1 .leadArea {
  width: 900px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 2px #14418c solid;
  z-index: 5;
  position: relative;
}
.main_outer1 .leadArea .lead01 {
  position: relative;
}
.main_outer1 .leadArea .lead01 .king {
  position: absolute;
  top: 24px;
  left: 24px;
}
.main_outer1 .leadArea .lead01 .king figcaption {
  background: rgba(20, 40, 60, 0.9);
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 2px 0;
  font-size: 1.5rem;
  width: 110px;
}
.main_outer1 .leadArea .lead01 .car {
  position: absolute;
  top: 24px;
  right: 24px;
}
.main_outer1 .leadArea .lead02 {
  width: 600px;
  margin: 0 auto 36px;
  position: relative;
}
.main_outer1 .leadArea .lead02 .king {
  position: absolute;
  bottom: 0;
  right: -140px;
}
.main_outer1 .leadArea [class^=txt] {
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_outer1 .leadArea [class^=txt].active {
  opacity: 1;
}
.main_outer1 .leadArea .arrow {
  margin: 24px auto;
  width: 32px;
  -webkit-animation: flash 2s linear infinite;
          animation: flash 2s linear infinite;
}
.main_outer1 [data-ruby] {
  position: relative;
}
.main_outer1 [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1.2rem;
  color: #3c3c3c;
  text-align: center;
}
.main_outer1 .characterIcon {
  background: url(../img/bg_block_circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 280px;
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: -50px auto 0;
}
.main_outer1 .characterIcon::after {
  content: "";
  background: url(../img/bg_bubble_pc.png);
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  width: 1000px;
  height: 280px;
}
.main_outer1 .characterIcon img {
  width: 150px;
  padding-right: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
}
.main_outer1 .contentList {
  background: #14418c;
  background-image: url(../img/bg_content_list_pc.png);
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 5px;
  width: 900px;
  margin: 0 auto;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main_outer1 .contentList h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main_outer1 .contentList dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/line_spark_pc.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 12px 24px;
  width: 570px;
}
.main_outer1 .contentList dt img {
  width: 120px;
  height: auto;
}
.main_outer1 .contentList dd {
  width: 100%;
}
.main_outer1 .contentList dd a {
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  padding-right: 20px;
  display: block;
  line-height: 1.3;
}
.main_outer1 .contentList dd a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  right: 7px;
  margin-top: -1px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.main_outer1 .chapterWrap {
  background: url(../img/bg_block_pc.png);
  background-position: top center;
  background-repeat: repeat-y;
  margin-bottom: 60px;
}
.main_outer1 .chapterArea h2 {
  text-align: center;
  color: #14418c;
  font-size: 3.2rem;
  font-weight: 900;
  text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, 3px -3px 0 #fff, -3px -3px 0 #fff;
  margin-bottom: 24px;
}
.main_outer1 .chapterArea h2 span {
  display: inline-block;
  padding-bottom: 12px;
  margin: 0 auto;
  background: url(../img/bg_effect_pc.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
  line-height: 1;
}
.main_outer1 .chapterArea h2 span strong {
  color: #14283c;
}
.main_outer1 .chapterArea h2 img {
  margin: 0 auto 24px;
  width: 358px;
}
.main_outer1 .chapter01 {
  background: url(../img/bg_monster02_pc.png);
  background-position: top center;
  background-repeat: space;
  padding: 48px 0;
}
.main_outer1 .chapter01 .arrow {
  margin: 3.6923076923% auto 5.5384615385%;
  display: none;
  -webkit-animation: flash 2s linear infinite;
          animation: flash 2s linear infinite;
}
.main_outer1 .chapter02 {
  background: url(../img/bg_monster03_pc.png);
  background-position: top center;
  background-repeat: space;
  padding: 48px 0;
}
.main_outer1 .chapter03 {
  background: url(../img/bg_monster04_pc.png);
  background-position: top center;
  background-repeat: space;
  padding: 48px 0;
}
.main_outer1 .chapter03 .branchArea .branchChoice dl.commandBox ul {
  width: 60px;
}
.main_outer1 .branchArea {
  width: 900px;
  margin: 0 auto 60px;
  position: relative;
}
.main_outer1 .branchArea .branchAsking {
  width: 740px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 12px;
}
.main_outer1 .branchArea .branchAsking p {
  text-align: left;
  margin: 0 0 0 24px;
  line-height: 2.2;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_outer1 .branchArea .branchAsking p.active {
  opacity: 1;
}
.main_outer1 .branchArea .branchAsking p.noImg {
  text-align: left;
  margin: 0 0 0 60px;
}
.main_outer1 .branchArea .branchChoice {
  position: absolute;
  top: 10px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main_outer1 .branchArea .branchChoice dl {
  width: 200px;
  font-size: 1.4rem;
  font-family: "PixelMplus12";
  line-height: 2.5;
  letter-spacing: 0.1rem;
  padding: 0;
  margin: 24px 1px;
  min-height: 130px;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
@media (max-width: 768px) {
  .main_outer1 .branchArea .branchChoice dl {
    font-size: 3.3854166667vw;
    line-height: 2;
  }
}
.main_outer1 .branchArea .branchChoice dl.active {
  opacity: 1;
}
.main_outer1 .branchArea .branchChoice dl.commandBox ul {
  width: 70px;
}
.main_outer1 .branchArea .branchChoice dl.commandBox ul button {
  font-size: 100%;
  font-weight: 500;
  font-family: "PixelMplus12";
}
.main_outer1 .branchArea .branchChoice dl.commandBox .select {
  width: 70px;
}
.main_outer1 .branchArea .branchChoice dl.commandBox .select::before {
  background: url(../img/icon_arrow02.png);
  background-position: left 10px top 5px;
  background-repeat: no-repeat;
  background-size: 20px 25px;
}
.main_outer1 .branchArea .branchChoice dl.itemBox ul {
  width: 150px;
  padding-left: 40px;
}
.main_outer1 .branchArea .branchChoice dl.itemBox .select {
  color: #fff078;
}
.main_outer1 .branchArea .branchChoice dl.itemBox .select::before {
  background: url(../img/icon_arrow03.png);
  background-position: left 10px top 5px;
  background-repeat: no-repeat;
  background-size: 20px 25px;
}
.main_outer1 .branchArea .branchChoice dt {
  border-bottom: 1px #fff solid;
  text-align: center;
}
.main_outer1 .branchArea .branchChoice dt span {
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_outer1 .branchArea .branchChoice dt span.active {
  opacity: 1;
}
.main_outer1 .branchArea .branchChoice ul {
  width: 100px;
  margin: 0 auto;
  padding: 12px 0;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_outer1 .branchArea .branchChoice ul.active {
  opacity: 1;
}
.main_outer1 .branchArea .branchChoice ul li {
  line-height: 1.8;
}
.main_outer1 .branchArea .branchChoice ul li.select {
  position: relative;
}
.main_outer1 .branchArea .branchChoice ul li.select::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  width: 30px;
  height: 36px;
  -webkit-animation: flash 2s linear infinite;
          animation: flash 2s linear infinite;
}
.main_outer1 .branchArea .branchChoice ul button {
  background: transparent;
  border: none;
  border-bottom: 1px #64b9fa solid;
  color: #64b9fa;
  padding: 0;
  cursor: pointer;
  outline: 0;
}
.main_outer1 .branchArea .branchChoice ul button:hover {
  border: none;
}
.main_outer1 .itemArea {
  width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main_outer1 .itemArea p {
  margin-bottom: 24px;
  line-height: 1.3;
}
.main_outer1 .itemArea p.model {
  font-size: 1.5rem;
  border: 1px #3c3c3c solid;
  padding: 6px 12px;
  margin-left: 24px;
}
.main_outer1 .itemArea p strong {
  font-weight: bold;
}
.main_outer1 .itemArea h3 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.main_outer1 .itemArea h3::before, .main_outer1 .itemArea h3::after {
  content: "";
  background: url(../img/bg_arrow_pc.png);
  position: absolute;
  width: 14px;
  height: 14px;
}
.main_outer1 .itemArea h3::before {
  top: 0;
  left: 0;
}
.main_outer1 .itemArea h3::after {
  top: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.main_outer1 .itemArea h3 span::before, .main_outer1 .itemArea h3 span::after {
  content: "";
  background: url(../img/bg_arrow_pc.png);
  position: absolute;
  width: 14px;
  height: 14px;
}
.main_outer1 .itemArea h3 span::before {
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.main_outer1 .itemArea h3 span::after {
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.main_outer1 .itemArea .caution {
  font-size: 1.3rem;
}
.main_outer1 .equipmentArea {
  width: 740px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 24px 0;
  margin-bottom: 36px;
}
.main_outer1 .equipmentArea .ttl {
  border: 2px #14418c solid;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #02dc00), color-stop(33%, #ffb107), color-stop(66%, #ff3ff9), to(#01b3ff));
  background: linear-gradient(to right, #02dc00 1%, #ffb107 33%, #ff3ff9 66%, #01b3ff 100%);
  padding: 3px;
  margin-bottom: 24px;
  position: relative;
}
.main_outer1 .equipmentArea .ttl::before {
  content: "";
  background: url(../img/gif/icon_spark.gif);
  width: 200px;
  height: 100px;
  position: absolute;
  top: -50px;
  right: -20px;
  background-size: contain;
  background-repeat: no-repeat;
}
.main_outer1 .equipmentArea .ttl .ttlInner {
  background: #14418c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px;
}
.main_outer1 .equipmentArea .ttl .ttlInner .equipment {
  background: #fcde7d;
  width: 136px;
  padding: 6px;
}
.main_outer1 .equipmentArea .ttl .ttlInner .equipment img {
  margin: 0 auto;
}
.main_outer1 .equipmentArea .ttl .ttlInner .equipment figcaption {
  color: #14418c;
  font-weight: bold;
  padding-top: 6px;
  line-height: 1.3;
}
.main_outer1 .equipmentArea .ttl .ttlInner h3 {
  width: 510px;
}
.main_outer1 .optionArea {
  width: 740px;
  background: #fff0c8;
  border-radius: 10px;
  padding: 24px 24px 0;
  margin: 0 0 24px auto;
}
.main_outer1 .optionArea .caption {
  border-top: 3px #ff5a00 solid;
  border-bottom: 3px #ff5a00 solid;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding: 12px 0;
}
.main_outer1 .optionArea .caption::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  background: url(../img/icon_up.png);
  background-size: contain;
  width: 35px;
  height: 35px;
}
.main_outer1 .optionArea .ttl {
  border: 2px #ff5a00 solid;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#fcde7d), to(#e6c864));
  background: linear-gradient(to right, #fcde7d 0%, #e6c864 100%);
  padding: 3px;
  margin-bottom: 24px;
}
.main_outer1 .optionArea .ttl .ttlInner {
  background: #ff5a00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px;
}
.main_outer1 .optionArea .ttl .ttlInner h3 {
  width: 100%;
  padding: 6px;
}
.main_outer1 .itemImg {
  margin-top: -48px;
}
.main_outer1 .itemImg figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.main_outer1 .itemImg figure img {
  margin-left: 24px;
}
.main_outer1 .itemImg figure img:first-of-type {
  margin: 0;
}
.main_outer1 .itemImg .imgItem01 {
  margin-left: -72px;
}
.main_outer1 .itemName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: -48px;
}
.main_outer1 .levelUp {
  border-bottom: 2px #64b9fa solid;
  position: relative;
  width: 900px;
  margin: 0 auto;
  padding-top: 140px;
}
.main_outer1 .levelUp.level01 {
  background: url(../img/bg_damage01_pc.png);
  background-position: center top;
  background-repeat: no-repeat;
}
.main_outer1 .levelUp.level02 {
  background: url(../img/bg_damage02_pc.png);
  background-position: center top;
  background-repeat: no-repeat;
}
.main_outer1 .levelUp.level03 {
  background: url(../img/bg_damage03_pc.png);
  background-position: center top;
  background-repeat: no-repeat;
}
.main_outer1 .levelUp .bomb {
  background: url(../img/bg_bomb_pc.png);
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -24px;
  height: 350px;
  width: 350px;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main_outer1 .levelUp .bomb.active {
  opacity: 1;
}
.main_outer1 .levelUp .bomb p {
  color: #ff5a00;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  background: -webkit-linear-gradient(90deg, #FF7828, #FF4902);
  -webkit-background-clip: text;
  color: transparent;
}
@media all and (-ms-high-contrast: none) {
  .main_outer1 .levelUp .bomb {
    /* IE11 */
  }
  .main_outer1 .levelUp .bomb *::-ms-backdrop, .main_outer1 .levelUp .bomb p {
    color: #ff5a00;
  }
}
.main_outer1 .levelUp .bomb div {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  margin-bottom: 24px;
}
.main_outer1 .levelUp .bomb div span {
  background: #008cdc;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  padding: 3px 12px;
  display: inline-block;
}
.main_outer1 .levelUp .bomb div span.bombTxt02 {
  margin: -1px 0 0 84px;
}
.main_outer1 .levelUp .label {
  position: absolute;
  top: 24px;
  right: 0;
  width: 275px;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_outer1 .levelUp .label.active {
  opacity: 1;
}
.main_outer1 .linkBtn2 {
  margin: 36px 0px;
}
.main_outer1 .characterGif {
  background: url(../img/bg_block_circle.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: relative;
  margin: 0 auto;
  width: 470px;
  height: 280px;
}
.main_outer1 .characterGif::after {
  content: "";
  background: url(../img/bg_spark01_pc.png);
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 470px;
  height: 282px;
}
.main_outer1 .characterGif figure {
  width: 150px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
}
.main_outer1 .characterGif figure.character02 {
  width: 260px;
  padding-right: 60px;
}
.main_outer1 .characterGif figure.character03 {
  width: 140px;
}
.main_outer1 .characterGif figure.character04 {
  width: 250px;
}
.main_outer1 .characterGif figure img {
  width: 100%;
}
.main_outer1 .characterGif figure figcaption {
  font-size: 3.2rem;
  font-family: "PixelMplus12";
}
.main_outer1 .endArea {
  width: 900px;
  margin: 36px auto 0;
  position: relative;
}
.main_outer1 .endArea .king {
  position: absolute;
  top: 24px;
  left: 24px;
}
.main_outer1 .endArea .car {
  position: absolute;
  top: 24px;
  right: 24px;
}
.main_outer1 .endArea .iconWear {
  top: 170px;
  left: 60px;
}
.main_outer1 .endArea .iconBoots {
  top: 110px;
  right: 160px;
}
.main_outer1 .endArea .iconGloves {
  top: 170px;
  right: 84px;
}
.main_outer1 .endArea p {
  margin: 24px auto;
}
.main_outer1 .endArea [class^=txt] {
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_outer1 .endArea [class^=txt].active {
  opacity: 1;
}
.main_outer1 .endArea [class^=icon] {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  width: 92px;
}
.main_outer1 .endArea [class^=icon].active {
  opacity: 1;
}
.main_outer1 .endArea .characterGif {
  background-size: 230px;
  height: 230px;
  margin: 48px auto 24px;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_outer1 .endArea .characterGif.active {
  opacity: 1;
}
.main_outer1 .endArea .characterGif::after {
  background: url(../img/gif/spark02_pc.gif);
  background-repeat: no-repeat;
  background-position: top center;
  width: 337px;
  height: 154px;
}
.main_outer1 .endArea .characterGif figure {
  width: 180px;
}
.main_outer1 .endArea .characterGif figure img {
  padding-right: 16px;
}
.main_outer1 .endArea .characterGif figure figcaption {
  padding-top: 0;
  margin-left: 10px;
  letter-spacing: 10px;
}
.main_outer1 .endArea + .linkBtn2 {
  margin: 48px 0px 0;
}
.main_outer1 .heed {
  width: 900px;
  margin: 30px auto 0;
}
.main_outer1 .heed li {
  padding-left: 20px;
  position: relative;
}
.main_outer1 .heed li::before {
  content: "※";
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .main_outer1 .content {
    width: 100%;
    padding: 0 0 8.5714285714%;
  }
  .main_outer1 .content img {
    width: 100%;
  }
  .main_outer1 .kvArea {
    margin: 0 auto 8.5714285714%;
  }
  .main_outer1 .kvArea .titleArea {
    background: none;
    position: relative;
    padding-bottom: 17.1428571429%;
    margin-top: -270px;
  }
  .main_outer1 .kvArea .titleArea::after {
    content: "";
    background: url(../img/bg_monster01_sp.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 51.1428571429%;
    position: absolute;
    bottom: 21.4285714286%;
    left: 0;
  }
  .main_outer1 .kvArea .titleArea .logo {
    width: 95.7142857143%;
  }
  .main_outer1 .kvArea .titleArea h1 {
    display: block;
    width: 100%;
    top: 28.5714285714%;
    z-index: 5;
  }
  .main_outer1 .kvArea .titleArea [class^=label] {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    font-size: 4.1666666667vw;
    display: block;
    text-align: center;
    line-height: 1.5;
    text-shadow: 1.5px 1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px -1.5px 0 #fff;
  }
  .main_outer1 .kvArea .titleArea [class^=label] span {
    font-size: 5.859375vw;
  }
  .main_outer1 .kvArea .sliding {
    width: 5600px;
    height: auto;
    padding-top: 71.4285714286%;
    background: url("../img/bg_sky_sp.png") repeat-x;
    background-size: contain;
    -webkit-animation: slideSp 700s linear infinite;
            animation: slideSp 700s linear infinite;
  }
  .main_outer1 .leadArea {
    width: 92.8571428571%;
    padding-bottom: 5.1428571429%;
    margin-top: -31.4285714286%;
  }
  .main_outer1 .leadArea .lead01 {
    padding-top: 27.6923076923%;
  }
  .main_outer1 .leadArea .lead01 .king {
    top: -7.3846153846%;
    left: -0.9230769231%;
    width: 33.2307692308%;
  }
  .main_outer1 .leadArea .lead01 .king figcaption {
    bottom: 5.5555555556%;
    padding: 2.7777777778% 0;
    font-size: 2.6041666667vw;
    width: 80%;
  }
  .main_outer1 .leadArea .lead01 .car {
    top: 5.5384615385%;
    right: 0;
    left: 0;
    margin: auto;
    width: 19.0769230769%;
  }
  .main_outer1 .leadArea .lead02 {
    width: 100%;
    margin: 0 auto 5.5384615385%;
  }
  .main_outer1 .leadArea .lead02 p {
    text-align: left;
  }
  .main_outer1 .leadArea .lead02 .king {
    bottom: 50%;
    right: 3.6923076923%;
    -webkit-transform: translateY(50%) translateX(0);
            transform: translateY(50%) translateX(0);
    width: 24%;
  }
  .main_outer1 .leadArea .arrow {
    margin: 3.6923076923% auto 5.5384615385%;
    width: 6.1538461538%;
  }
  .main_outer1 [data-ruby]::before {
    top: -0.4rem;
    font-size: 1.5625vw;
    text-shadow: none;
  }
  .main_outer1 .characterIcon {
    background-size: 55.7142857143%;
    height: auto;
    margin: 28.5714285714% auto 0;
    padding-top: 55.7142857143%;
  }
  .main_outer1 .characterIcon::after {
    content: "";
    background: url(../img/bg_bubble_sp.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    z-index: 8;
    height: 200%;
  }
  .main_outer1 .characterIcon img {
    width: 37.1428571429%;
    padding-right: 8.5714285714%;
    z-index: 8;
  }
  .main_outer1 .contentList {
    background-image: url(../img/bg_content_list_sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: 100%;
    padding: 5.5384615385%;
    display: block;
  }
  .main_outer1 .contentList h2 {
    width: 35.3846153846%;
    margin: 0 auto;
  }
  .main_outer1 .contentList dl {
    display: block;
    background: url(../img/line_spark_sp.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    padding: 3.6923076923% 5.5384615385% 5.5384615385%;
    width: 100%;
  }
  .main_outer1 .contentList dl:nth-child(1) a:after {
    right: 7%;
  }
  .main_outer1 .contentList dl:nth-child(2) a:after {
    right: 12%;
  }
  .main_outer1 .contentList dl:nth-child(3) a:after {
    right: 15%;
  }
  .main_outer1 .contentList dt img {
    width: 38.4615384615%;
    margin: 0 auto 3.8461538462%;
  }
  .main_outer1 .contentList dd a {
    text-align: center;
    font-size: 3.125vw;
    padding-right: 5.5384615385%;
    position: relative;
  }
  .main_outer1 .contentList dd a:after {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    top: 30%;
  }
  .main_outer1 .chapterWrap {
    background: url(../img/bg_block_sp.png);
    background-position: top center;
    background-repeat: repeat-y;
    background-size: contain;
    margin-bottom: 8.5714285714%;
  }
  .main_outer1 .chapterArea h2 {
    font-size: 5.859375vw;
    margin-bottom: 3.4285714286%;
    text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  }
  .main_outer1 .chapterArea h2 span {
    padding-bottom: 1.7142857143%;
    background: url(../img/bg_effect_sp.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main_outer1 .chapterArea h2 img {
    margin: 0 auto 5.1428571429%;
    width: 68.5714285714%;
  }
  .main_outer1 .chapter01 {
    background: url(../img/bg_monster02_sp.png);
    background-position: top center;
    background-repeat: space;
    background-size: contain;
    padding: 6.8571428571% 0;
  }
  .main_outer1 .chapter01 .arrow {
    display: block;
    margin: 3.6923076923% auto 5.5384615385%;
    width: 6.1538461538%;
  }
  .main_outer1 .chapter02 {
    background: url(../img/bg_monster03_sp.png);
    background-position: top center;
    background-repeat: space;
    background-size: contain;
    padding: 6.8571428571% 0;
  }
  .main_outer1 .chapter03 {
    background: url(../img/bg_monster04_sp.png);
    background-position: top center;
    background-repeat: space;
    background-size: contain;
    padding: 6.8571428571% 0;
  }
  .main_outer1 .chapter03 .branchArea .branchChoice dl.commandBox ul {
    width: 38.7096774194%;
  }
  .main_outer1 .branchArea {
    width: 92.8571428571%;
    margin: 0 auto 8.5714285714%;
  }
  .main_outer1 .branchArea .branchAsking {
    width: 100%;
    padding: 1.8461538462%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main_outer1 .branchArea .branchAsking p {
    margin: 0 0 0 3.4285714286%;
    line-height: 2;
  }
  .main_outer1 .branchArea .branchAsking p.noImg {
    margin: 0 0 0 8.5714285714%;
  }
  .main_outer1 .branchArea .branchAsking img {
    width: 30.7692307692%;
  }
  .main_outer1 .branchArea .branchChoice {
    position: static;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main_outer1 .branchArea .branchChoice dl {
    width: 47.6923076923%;
    margin: 3.6923076923% 1px;
    min-height: 32vw;
  }
  .main_outer1 .branchArea .branchChoice dl.commandBox ul {
    width: 32.2580645161%;
  }
  .main_outer1 .branchArea .branchChoice dl.commandBox .select::before {
    background-size: 14px 20px;
    left: -44.4444444444%;
    width: 30px;
    padding-top: 30px;
  }
  .main_outer1 .branchArea .branchChoice dl.itemBox {
    margin-top: 19.3548387097%;
  }
  .main_outer1 .branchArea .branchChoice dl.itemBox ul {
    width: 88.7096774194%;
    margin-left: 3.2258064516%;
  }
  .main_outer1 .branchArea .branchChoice dl.itemBox .select::before {
    background-size: 14px 20px;
    left: -27.7777777778%;
    width: 30px;
    padding-top: 30px;
  }
  .main_outer1 .branchArea .branchChoice dt {
    padding: 3.8709677419% 0;
  }
  .main_outer1 .branchArea .branchChoice ul {
    width: auto;
    margin: 0 auto;
    padding: 3.8709677419% 0;
  }
  .main_outer1 .branchArea .branchChoice ul li.select::before {
    height: auto;
  }
  .main_outer1 .itemArea {
    width: 92.8571428571%;
    margin: 0 auto;
    display: block;
  }
  .main_outer1 .itemArea p {
    margin-bottom: 3.6923076923%;
    font-size: 3.3854166667vw;
  }
  .main_outer1 .itemArea p.model {
    font-size: 3.125vw;
    padding: 0.9230769231% 1.8461538462%;
    margin: 0 0 1.8461538462%;
  }
  .main_outer1 .itemArea h3 {
    font-size: 3.90625vw;
  }
  .main_outer1 .itemArea h3::before, .main_outer1 .itemArea h3::after {
    background: url(../img/bg_arrow_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4vw;
    height: 4vw;
  }
  .main_outer1 .itemArea h3 span::before, .main_outer1 .itemArea h3 span::after {
    background: url(../img/bg_arrow_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4vw;
    height: 4vw;
  }
  .main_outer1 .itemArea .caution {
    padding-bottom: 2.6041666667vw;
    font-size: 2.8645833333vw;
  }
  .main_outer1 .equipmentArea {
    width: 100%;
    padding: 3.6923076923% 3.6923076923% 0;
    margin-bottom: 5.5384615385%;
  }
  .main_outer1 .equipmentArea .ttl {
    padding: 0.6153846154%;
    margin-bottom: 3.6923076923%;
  }
  .main_outer1 .equipmentArea .ttl::before {
    width: 46.1538461538%;
    height: 46.1538461538%;
    top: -14.7692307692%;
    right: -3.6923076923%;
  }
  .main_outer1 .equipmentArea .ttl .ttlInner {
    display: block;
    padding: 1.8461538462%;
  }
  .main_outer1 .equipmentArea .ttl .ttlInner .equipment {
    width: 100%;
    padding: 0.9230769231%;
    margin-bottom: 1.8461538462%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main_outer1 .equipmentArea .ttl .ttlInner .equipment img {
    width: 8.9230769231%;
  }
  .main_outer1 .equipmentArea .ttl .ttlInner .equipment figcaption {
    padding-top: 0.9230769231%;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    font-size: 3.3854166667vw;
  }
  .main_outer1 .equipmentArea .ttl .ttlInner h3 {
    width: 100%;
    padding: 3.6923076923% 0;
  }
  .main_outer1 .optionArea {
    width: 100%;
    padding: 3.6923076923% 3.6923076923% 0;
    margin: 0 0 5.5384615385% auto;
  }
  .main_outer1 .optionArea .caption {
    padding: 3.6923076923% 0;
  }
  .main_outer1 .optionArea .caption::before {
    left: 0.9230769231%;
    background: url(../img/icon_up.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 8vw;
    height: 8vw;
  }
  .main_outer1 .optionArea .ttl {
    padding: 0.9230769231%;
    margin-bottom: 3.6923076923%;
  }
  .main_outer1 .optionArea .ttl .ttlInner {
    padding: 1.8461538462%;
  }
  .main_outer1 .optionArea .ttl .ttlInner h3 {
    width: 100%;
    padding: 1.8461538462%;
  }
  .main_outer1 .itemImg {
    margin-top: 0;
  }
  .main_outer1 .itemImg figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 3.6923076923%;
  }
  .main_outer1 .itemImg figure img {
    margin-left: 3.6923076923%;
    width: 46.1538461538%;
  }
  .main_outer1 .itemImg figure img:first-of-type {
    margin: 0;
  }
  .main_outer1 .itemImg figure .imgUse01 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 53.8461538462%;
    margin-left: 3.6923076923%;
  }
  .main_outer1 .itemImg figure .imgItem01 {
    margin-top: 4.6153846154%;
    margin-left: -18.4615384615%;
    width: 61.5384615385%;
  }
  .main_outer1 .itemImg figure .imgItemOption {
    margin-top: 7.6923076923%;
  }
  .main_outer1 .itemName {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
  }
  .main_outer1 .backModal {
    width: 92.8571428571%;
    padding: 3.4285714286% 3.4285714286%;
  }
  .main_outer1 .backModal img {
    width: 47.6923076923%;
  }
  .main_outer1 .backModal .blackBox {
    margin: -3.6923076923% 0 3.6923076923%;
    padding: 6% 4% 0;
  }
  .main_outer1 .backModal .backBtn {
    padding-bottom: 9.2307692308%;
  }
  .main_outer1 .backModal .backBtn a {
    width: 18.4615384615%;
  }
  .main_outer1 .levelUp {
    width: 92.8571428571%;
    margin: 0 auto;
    padding-top: 57.1428571429%;
  }
  .main_outer1 .levelUp.level01 {
    background: url(../img/bg_damage01_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main_outer1 .levelUp.level02 {
    background: url(../img/bg_damage02_pc.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main_outer1 .levelUp.level03 {
    background: url(../img/bg_damage03_pc.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main_outer1 .levelUp .bomb {
    background: url(../img/bg_bomb_sp.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 15.3846153846%;
    left: 0;
    right: 0;
    margin: auto;
    height: 46.1538461538%;
    width: 86.1538461538%;
  }
  .main_outer1 .levelUp .bomb p {
    font-size: 6.7708333333vw;
    top: 40%;
  }
  .main_outer1 .levelUp .bomb div {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0;
    position: absolute;
    bottom: 21.4285714286%;
    left: -4.2857142857%;
    z-index: 6;
    width: 62.5%;
  }
  .main_outer1 .levelUp .bomb div span {
    font-size: 4.1666666667vw;
    padding: 1.0714285714% 4.2857142857%;
    display: inline-block;
  }
  .main_outer1 .levelUp .bomb div span.bombTxt01 {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .main_outer1 .levelUp .bomb div span.bombTxt02 {
    margin: -1px 0 0 10.7142857143%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  .main_outer1 .levelUp .label {
    position: absolute;
    top: 43.0769230769%;
    right: 0;
    width: 35.3846153846%;
    z-index: 6;
  }
  .main_outer1 .levelUp .linkBtn2 {
    margin: -5.5384615385% 3.0769230769% 7.3846153846%;
    z-index: 7;
    position: relative;
  }
  .main_outer1 .linkBtn2 {
    margin: 5.5384615385% 3.0769230769%;
  }
  .main_outer1 .characterGif {
    background: url(../img/bg_block_circle.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: 100%;
    height: auto;
    padding-bottom: 60%;
    z-index: 5;
  }
  .main_outer1 .characterGif::after {
    content: "";
    background: url(../img/bg_spark01_sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    right: auto;
    margin: 0;
    width: 92.3076923077%;
    height: auto;
    padding-bottom: 34.4615384615%;
  }
  .main_outer1 .characterGif figure {
    width: 38.4615384615%;
    left: -3.6923076923%;
  }
  .main_outer1 .characterGif figure.character02 {
    width: 58.4615384615%;
    padding-right: 10%;
  }
  .main_outer1 .characterGif figure.character03 {
    width: 32.3076923077%;
  }
  .main_outer1 .characterGif figure.character04 {
    width: 64.6153846154%;
    padding-left: 4.6153846154%;
  }
  .main_outer1 .characterGif figure figcaption {
    font-size: 4.1666666667vw;
    font-family: "PixelMplus12";
  }
  .main_outer1 .endArea {
    width: 92.8571428571%;
    margin: 18.4615384615% auto 0;
    padding: 24% 6% 0;
  }
  .main_outer1 .endArea .king {
    top: -5.5384615385%;
    left: -0.9230769231%;
    width: 33.2307692308%;
  }
  .main_outer1 .endArea .car {
    top: 1.8461538462%;
    right: 0;
    left: 0;
    margin: auto;
    width: 30.7692307692%;
  }
  .main_outer1 .endArea .itemIcon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .main_outer1 .endArea p {
    margin: 24px auto;
  }
  .main_outer1 .endArea [class^=icon] {
    position: static;
    width: 19.6923076923%;
    height: 100%;
  }
  .main_outer1 .endArea .characterGif {
    background-size: 46.1538461538%;
    height: 46.1538461538%;
    margin: 7.3846153846% auto 9.2307692308%;
    padding-bottom: 46.1538461538%;
  }
  .main_outer1 .endArea .characterGif::after {
    background: url(../img/gif/spark02_sp.gif);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: 100%;
    height: auto;
  }
  .main_outer1 .endArea .characterGif figure {
    width: 41.5384615385%;
    left: 0;
  }
  .main_outer1 .endArea .characterGif figure img {
    padding-right: 10.7692307692%;
  }
  .main_outer1 .endArea .characterGif figure figcaption {
    margin-left: 9.2307692308%;
    letter-spacing: 0.7692307692%;
  }
  .main_outer1 .endArea + .linkBtn2 {
    margin: 7.3846153846% 3.6923076923% 0;
  }
  .main_outer1 .heed {
    width: 92.8571428571%;
    margin: 4.6153846154% auto 0;
  }
  .main_outer1 .heed li {
    padding-left: 4.6153846154%;
  }
}

/* =========================================================================
 .main_outer1 { の中に書くの何故かバグるので外に出した
========================================================================= */
.backModal {
  width: 500px;
  text-align: center;
  padding: 12px 36px;
}
.backModal .close {
  color: #14283c;
  font-size: 3.2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.backModal img {
  margin: 0 auto;
  width: 230px;
}
.backModal .blackBox {
  margin: -24px 0 24px;
}
.backModal .blackBox p {
  line-height: 2;
}
.backModal .backBtn {
  position: static;
  padding-bottom: 36px;
}
.backModal .backBtn a {
  color: #fff;
  width: 100px;
  background: #52a2d8;
  border-radius: 2px;
  margin: 0 auto;
  display: block;
  font-size: 1.4rem;
  font-family: "PixelMplus12";
  line-height: 2.5;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  .backModal .backBtn a {
    font-size: 3.3854166667vw;
    line-height: 2;
  }
}

@media (max-width: 768px) {
  .backModal {
    width: 92.8571428571%;
    padding: 3.4285714286% 3.4285714286%;
  }
  .backModal img {
    width: 47.6923076923%;
  }
  .backModal .blackBox {
    margin: -3.6923076923% 0 3.6923076923%;
    padding: 6% 4% 0;
  }
  .backModal .backBtn {
    padding-bottom: 9.2307692308%;
  }
  .backModal .backBtn a {
    width: 18.4615384615%;
  }
}
/*# sourceMappingURL=style.css.map */