/* system
--------------------------- */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/* reset
--------------------------- */
/* 
 * destyle.css v1.0.14
 * https://github.com/nicolas-cusan/destyle.css 
 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::after,
::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}


dl,
iframe,
p,
table {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}


ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

b {
  font-weight: bolder;
}

img {
  border-style: none;
  vertical-align: bottom;
}


iframe {
  border: 0;
  vertical-align: bottom;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

[hidden] {
  display: none;
}

/* base
--------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.7;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #fff;
  background-color: #000;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  /* min-width: 1400px; */
}
body::after {
  /* content: ""; */
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(../img/common/bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

::selection {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

ul {
  list-style: none;
}
.l-main {
  margin-top: 400px;
}
.l-header {
  position: absolute;
  top: 0;
  /* margin-top: -80px; */
  aspect-ratio: 1400/780;
  height: 100vh;
  width: 100%;
}
.l-header__main {
  width: 100%;
  height: 780px;
  overflow: hidden;
}
.l-header__main img {
  width: auto;
  max-width: 1298px;
  position: relative;
  z-index: 5;
  margin-left: auto;
  display: block;
}
.l-header__logo {
  position: absolute;
  top: 47%;
  left: 28%;
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
  z-index: 6;
}
.l-header__petal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: petal 3s ease-in-out infinite;
  z-index: 3;
}
.l-header__petal img {
  width: auto;
}
.l-header__cover,
.l-header__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-header__cover {
  z-index: 4;
}
.l-header__cover img,
.l-header__bg img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* aspect-ratio: 1400/780; */
}
.l-header__cover img {
}
.l-header__bg {
  z-index: 2;
}
.l-header__bg img {

}
@keyframes petal {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.l-section {
  max-width: 1030px;
  padding: 0 15px;
  margin: 100px auto 0;
}
.l-section + .l-section {
  margin-top: 60px;
}
.l-section:last-child {
  padding-bottom: 150px;
}
.l-container {
  position: relative;
  z-index: 10;
  /* background-color: rgba(4, 0, 94, 0.7); */
  background-image: linear-gradient(90deg, rgba(189, 0, 60, 0.6), rgba(0, 0, 0, 0.6));
  border-radius: 20px;
}
.l-inner {
  padding: 50px 40px;
  margin: 0 auto;
}

.o-nav {
  width: 100%;
}
.o-nav nav {
  position: relative;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  z-index: 999;
  background-image: linear-gradient(90deg, rgba(189, 0, 60, 0.6), rgba(0, 0, 0, 0.6));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.o-nav ul {
  width: 100%;
  max-width: 1000px;
  /* margin: 0 auto; */
  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: flex-start;
          gap: 8%;
          margin-left: 4%;
}
.o-nav li {
  /* overflow: hidden; */
  /* text-indent: 100%; */
  white-space: nowrap;
}
.o-nav li a {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.o-nav li a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 13px;
  background-image: url(../img/nav/before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.o-nav li a:hover {
  background: linear-gradient(0deg, #ffB707 0%, #ffD64f 50%, #F2F1A1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 2px rgba(255, 183, 7, 0.8)) 
          drop-shadow(0 0 4px rgba(255, 214, 79, 0.6))
          drop-shadow(0 0 6px rgba(242, 241, 161, 0.4));
}
.o-nav li a:hover::before {
  filter: drop-shadow(0 0 2px rgba(255, 183, 7, 0.8)) 
          drop-shadow(0 0 4px rgba(255, 214, 79, 0.6))
          drop-shadow(0 0 6px rgba(242, 241, 161, 0.4));
}
/* .o-nav li:nth-child(1) a {
  width: 57px;
  background-image: url(../img/nav/top.png);
} */
/* .o-nav li:nth-child(1):hover a {
  background-image: url(../img/nav/top_on.png);
} */
/* .o-nav li:nth-child(2) a {
  width: 77px;
  background-image: url(../img/nav/story.png);
} */
/* .o-nav li:nth-child(2):hover a {
  background-image: url(../img/nav/story_on.png);
} */
/* .o-nav li:nth-child(3) a {
  width: 137px;
  background-image: url(../img/nav/howtoplay.png);
} */
/* .o-nav li:nth-child(3):hover a {
  background-image: url(../img/nav/howtoplay_on.png);
} */
/* .o-nav li:nth-child(4) a {
  width: 91px;
  background-image: url(../img/nav/reward.png);
} */
/* .o-nav li:nth-child(4):hover a {
  background-image: url(../img/nav/reward_on.png);
} */
/* .o-nav li:nth-child(5) a {
  width: 120px;
  height: 38px;
  background-image: url(../img/nav/gamedata.png);
} */
/* .o-nav li:nth-child(5):hover a {
  background-image: url(../img/nav/gamedata_on.png);
} */
/* .o-nav li:nth-child(6) a {
  width: 124px;
  background-image: url(../img/nav/wallpaper.png);
} */
/* .o-nav li:nth-child(6):hover a {
  background-image: url(../img/nav/wallpaper_on.png);
} */

.sticky {
  position: sticky;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 645px;
}

.o-spNav {
  display: none;
  background-color: rgba(4, 0, 94, 0.7);
  background-image: linear-gradient(90deg, rgba(189, 0, 60, 0.6), rgba(0, 0, 0, 0.6));
  padding: 20% 0;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
.o-spNav.is_active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.o-spNav__logo {
  text-align: center;
  padding: 0 5% 15%;
}
.o-spNav__logo a {
  color: #fff;
}
.o-spNav__logo a img {
  max-width: 300px;
}
.o-spNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.o-spNav li {
  /* overflow: hidden;
  text-indent: 100%; */
  white-space: nowrap;
}
.o-spNav li + li {
  margin-top: 1.5em;
}
.o-spNav li a {
  display: block;
  color: #fff;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.o-spNav li a:hover {
  background: linear-gradient(0deg, #ffB707 0%, #ffD64f 50%, #F2F1A1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 2px rgba(255, 183, 7, 0.8)) drop-shadow(0 0 4px rgba(255, 214, 79, 0.6)) drop-shadow(0 0 6px rgba(242, 241, 161, 0.4));
}
.o-spNav li a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 13px;
  background-image: url(../img/nav/before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.o-spNav li a:hover::before {
  filter: drop-shadow(0 0 2px rgba(255, 183, 7, 0.8)) drop-shadow(0 0 4px rgba(255, 214, 79, 0.6)) drop-shadow(0 0 6px rgba(242, 241, 161, 0.4));
}
/* .o-spNav li:nth-child(1) a {
  width: 57px;
  background-image: url(../img/nav/top.png);
}
.o-spNav li:nth-child(2) a {
  width: 77px;
  background-image: url(../img/nav/story.png);
}
.o-spNav li:nth-child(3) a {
  width: 137px;
  background-image: url(../img/nav/howtoplay.png);
}
.o-spNav li:nth-child(4) a {
  width: 91px;
  background-image: url(../img/nav/reward.png);
}
.o-spNav li:nth-child(5) a {
  width: 120px;
  height: 38px;
  background-image: url(../img/nav/gamedata.png);
}
.o-spNav li:nth-child(6) a {
  width: 124px;
  background-image: url(../img/nav/wallpaper.png);
} */

.o-hamburger {
  display: none;
}

.o-title {
  position: relative;
  text-align: center;
  z-index: 5;
  margin-bottom: 10px;
}
.o-title::before {
  content: "";
  display: block;
  width: 230px;
  height: 230px;
  background-image: url(../img/common/sec-title_after.png);
  background-repeat: repeat-x;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.o-sub-title {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.o-sub-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-image: url(../img/common/line.png);
  background-repeat: repeat-x;
  background-size: 100% auto;
}

.o-table {
  padding: 0 20px;
}
.o-table + .o-table {
  margin-top: 20px;
}
.o-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.o-table th,
.o-table td {
  color: #000;
  font-weight: 400;
  padding: 0.5em;
  vertical-align: middle;
}
.o-table th {
  width: 25%;
  text-align: center;
  background-color: #fb9494;
}
.o-table td {
  background-color: white;
}

.o-button {
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  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;
  width: 100%;
  max-width: 280px;
  height: 50px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, from(#f94747), to(#c50404));
  background: linear-gradient(to right, #f94747, #c50404);
  box-shadow: 0px 3px 2px 0px rgba(226, 0, 16, 0.4), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
}
.o-button--gray {
  background: -webkit-gradient(linear, left top, right top, from(#a9a9a9), to(#878787));
  background-image: linear-gradient(90deg, rgba(169, 169, 169, 1), rgba(135, 135, 135, 1));
  box-shadow: 0px 3px 2px 0px rgba(88, 88, 88, 0.4), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
}
.o-button--arrow {
  position: relative;
}
.o-button--arrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-about .l-container {
  background-image: url(../img/about/bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.c-about__text {
  text-align: center;
}

.c-point__ss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-point__ss .box {
  text-align: center;
}
.c-point__ss .box p {
  margin-top: 1em;
}
.c-point__buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 100px;
}
.c-point__text {
  text-align: center;
  margin-top: 3em;
  padding-left: 1em;
  text-indent: -1em;
}
.c-point__banner {
  margin-top: 50px;
  text-align: center;
}
.c-story__text {
  text-align: center;
}
.c-story__ss {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-story__block + .c-story__block {
  margin-top: 50px;
}
.c-story__block--first {
  margin-top: 50px;
}
.c-story__characters .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
}
.c-story__characters .box .image {
  width: 27%;
  text-align: center;
}
.c-story__characters .box .info {
  width: 73%;
}
.c-story__characters .box .info p {
}
.c-story__characters .box:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
}
.c-story__about {
  margin-top: 40px;
  margin-left: 15px;
  margin-right: 15px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 15px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-story__about h4 {
  text-align: center;
  width: 20%;
}
.c-story__about p {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-story__about p::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 100px;
  background-image: url(../img/common/line_vertical.png);
  margin-right: 25px;
}
.c-story__banner {
  margin-top: 56px;
  text-align: center;
}
.c-story__banner .banner_text {
  margin-top: 20px;
}
.c-howto__block + .c-howto__block {
  margin-top: 50px;
}
.c-howto__map-text {
  padding: 0 1em;
}
.c-howto__maps {
  margin-top: 30px;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: center;
  gap: 50px;
}
.c-howto__monster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-howto__monster  + .c-howto__block {
  margin-top: 64px;
}
.c-howto__monster .left {
  width: 48%;
  padding: 0 1em;
}
.c-howto__monster .left p {
  margin-bottom: 2em;
}
.c-howto__monster .right {
  width: 48%;
  text-align: center;
}
.c-howto__monster:last-child {
  flex-direction: column;
}
.c-howto__monster:last-child .left {
  width: 100%;
}
.c-howto__monster:last-child .right {
  margin: 0 auto;
}
.flex-btn {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 50px;
}

.c-howto__flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  margin-top: 40px;
  gap: 40px;
}
.c-howto__flex01 .left img {
  margin-bottom: 36px;
}
.c-howto__flex01 .left .o-button {
  margin: 0 auto;
}
.c-reward__text {
  margin-bottom: 30px;
}
.c-reward__image {
  text-align: center;
  margin-bottom: 30px;
}
.c-reward__image--mb-none {
  margin-bottom: 0;
}
.c-reward__block + .c-reward__block {
  margin-top: 70px;
}
.c-reward__flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-reward__flex01 .left {
  width: 48%;
}
.c-reward__flex01 .left p {
  margin-bottom: 2em;
}
.c-reward__flex01 .left .o-button {
  margin: 0 auto;
}
.c-reward__flex01 .right {
  width: 48%;
  text-align: center;
}
.c-reward__flex01 .right .o-button {
  margin: 0 auto;
  margin-top: 41px;
}
.c-reward__enchantment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
.c-reward__enchantment li {
  width: 14%;
}
.c-reward__enchantment li .image {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #002272;
  -webkit-box-shadow: 0 0 12px 3px #bc64ef;
          box-shadow: 0 0 12px 3px #bc64ef;
  width: 100%;
  height: 120px;
  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;
}
.c-reward__enchantment li h4 {
  text-align: center;
  margin-top: 10px;
}
.c-reward__button {
  margin: 30px auto 0;
}

.c-data__block + .c-data__block {
  margin-top: 50px;
}
.c-data__block h3 {
  text-align: center;
  margin-bottom: 30px;
}
.c-data__block h4 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.c-data__block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
.c-data__block ul li {
  width: 18%;
}
.c-data__block ul li a {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #091c65;
  -webkit-box-shadow: 0 0 12px 3px #e85454;
          box-shadow: 0 0 12px 3px #e85454;
  width: 100%;
  height: 160px;
  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;
}
.c-data__block.card ul li a {
  border: none;
  height: auto;
}
.c-data__block.card ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-data__block ul li h5 {
  text-align: center;
  margin-top: 10px;
}
.c-data__block--map {
  text-align: center;
}
.c-data__block td {
  text-align: center;
}
.c-data__flex {
  display: flex;
  justify-content: center;
}
.c-data__flex .right .o-table {

}
.c-wallpaper__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.c-wallpaper__sample {
  text-align: center;
}
.c-wallpaper__buttons {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-wallpaper__button + .c-wallpaper__button {
  margin-top: 20px;
}
.c-wallpaper__illust {
  padding-left: 2%;
}
.c-wallpaper__illust,
.c-wallpaper__illust p,
.c-wallpaper__illust a {
  margin-top: 20px;

}

/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/*--------------------------------------*
 * layout
 *--------------------------------------*/
/*--------------------------------------*
 * object
 *--------------------------------------*/
/*-------------------
 * main
 *-------------------*/
/*-------------------
 * sample
 *-------------------*/
@media (max-width: 1120px) {
  .o-nav ul {
    gap: 5%;
  }
  .l-header__main img {
    width: 80%;
  }
}
@media (max-width: 950px) {
  .l-header {
    margin-top: 70px;
  }
  .l-header__main img {
    width: 60%;
  }
  .l-header__logo {
    top: 30%;
  }

  .l-main {
    margin-top: 700px;
  }
  .o-nav {
    display: none;
  }
  .o-spNav {
    display: block;
  }
  .o-hamburger {
    display: block;
    position: fixed;
    z-index: 9998;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background-color: black;
    border: 2px solid #fff;
    border-radius: 50%;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
  }
  .o-hamburger:hover {
    cursor: pointer;
  }
  .o-hamburger span {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
  }
  .o-hamburger span + span {
    margin-top: 5px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
  }
  .o-hamburger.is_active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .o-hamburger.is_active span:nth-child(2) {
    display: none;
  }
  .o-hamburger.is_active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .o-hamburger.is_active span + span {
    margin-top: 0;
    top: -2px;
  }
}
@media (max-width: 599px) {
  body {
    min-width: auto;
  }
  .l-header {
  }
  .l-header__logo {
    width: 100%;
    max-width: 200px;
    top: 15%;
  }
  .l-inner {
    padding: 20px 15px;
  }
  .o-sub-title {
    margin-bottom: 0;
  }
  .o-table {
    padding: 0;
  }
  .c-point__ss {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-point__ss .box + .box {
    margin-top: 30px;
  }
  .c-point__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
  .c-point__buttons .o-button {
    margin: 0 auto;
  }
  .c-story__ss {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-story__ss li {
    text-align: center;
  }
  .c-story__ss li + li {
    margin-top: 20px;
  }
  .c-story__characters .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
  }
  .c-story__characters .box .image {
    width: 100%;
  }
  .c-story__characters .box .info {
    width: 100%;
    text-align: center;
  }
  .c-story__characters .box .info p {
    text-align: left;
  }
  .c-story__characters .box:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
  .c-story__characters .box + .box {
    margin-top: 30px;
  }
  .c-story__about {
    padding: 15px;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-story__about h4 {
    width: 100%;
  }
  .c-story__about p {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1em;
  }
  .c-story__about p::before {
    content: none;
  }
  .c-howto__map-text {
    padding: 0;
  }
  .c-howto__maps {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-howto__maps img + img {
    margin-top: 20px;
  }
  .c-howto__monster {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-howto__monster .left {
    width: 100%;
    padding: 0;
  }
  .c-howto__monster .left p {
    margin-bottom: 1em;
  }
  .c-howto__monster .left .o-button {
    margin: 0 auto;
  }
  .c-howto__monster .right {
    width: 100%;
    margin-top: 30px;
  }
  .c-reward__block + .c-reward__block {
    margin-top: 40px;
  }
  .c-reward__flex01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-reward__flex01 .left {
    width: 100%;
  }
  .c-reward__flex01 .right {
    width: 100%;
    margin-top: 20px;
  }
  .c-reward__enchantment {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-reward__enchantment li {
    width: 46%;
  }
  .c-data__block + .c-data__block {
    margin-top: 30px;
  }
  .c-data__block ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-data__block ul li {
    width: 46%;
    margin: 0 auto;
  }
  .c-data__block ul li a {
    height: 150px;
  }
  .c-wallpaper__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-wallpaper__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: columns;
            flex-direction: columns;
    margin-top: 15px;
  }
  .c-wallpaper__button + .c-wallpaper__button {
    margin-top: 15px;
  }
  .flex-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: center;
  }
}
/*# sourceMappingURL=style.css.map */

#roCommonHeader {
  position: relative;
  z-index: 99;
}
#roEntryFooter {
  background: url(/special/_common/addAccess/img/footer_base.png) repeat-x;
}

.c-point__ss .box h4 {
  margin-bottom: 11px;
}

.c-point__ss .box .image {
  border: 2px solid transparent;
  border-image: linear-gradient(0deg, #b50444, #9611cd)  1;
}

footer {
  z-index: 10;
}