@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  color: #33313e;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
  font-size: 1.8rem;
  background-position: center;
  letter-spacing: 0.2rem;
}

.bodywrap {
  overflow: hidden;
}
@media screen and (min-width: 821px) {
  .bodywrap {
    overflow: hidden;
    margin: 0 auto;
    max-width: 2560px;
  }
}

.panel {
  display: none;
  text-align: center;
}

.panel.active {
  display: block;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.overicon {
  max-width: 175px;
  width: 47%;
}

ul {
  padding-left: 0;
}

li {
  list-style-type: none;
}

img {
  pointer-events: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  max-width: 250px;
}

.js-section {
  min-height: 1080px !important;
}

@media only screen and (max-width: 821px) {
  .js-section {
    min-height: min-content !important;
  }
}
.is-icon {
  width: 100%;
  max-width: 30px;
  display: inline-block;
  padding-right: 6px;
}
.v-color {
  color: #1cbb76 !important;
  align-items: center;
  display: flex !important;
}

.v-color:hover {
  opacity: 0.5;
}

.wrap {
  box-sizing: border-box;
  margin: 0 auto;
  word-break: break-all;
  padding: 0 1.9vw;
}

#wrapper::-webkit-scrollbar {
  display: none;
}

.u-pc {
  display: none;
}

.u-sp {
  display: block;
}

@media only screen and (min-width: 821px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
section {
  margin-bottom: 5rem;
}

.mobile-img {
  display: none;
}

.scr-target {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.scr-target.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}

.content button:hover {
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
}

.head_bottom_ma {
  margin: 4rem 0;
}

.header {
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #000;
  width: 100%;
  height: 100%;
  max-height: 83px;
  /* ロゴ画像 */
  /**************** 以下、ハンバーガーボタンのスタイリング ****************/
  /***** 真ん中のバーガー線 *****/
  /***** 上下のバーガー線 *****/
  /***** メニューオープン時 *****/
  /**************** ここまで、ハンバーガーボタンのスタイリング ****************/
  /**************** 以下、メニューのスタイリング ****************/
  /***** メニューオープン時位置0にして画面内に *****/
  /* 768px以上はハンバーガーボタン非表示、ヘッダー固定 */
  /**************** ここまで、メニューのスタイリング ****************/
}
@media screen and (min-width: 769px) {
  .header {
    position: fixed;
    max-height: 95px;
  }
}
.header > .wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
}
.header__logo {
  max-width: 98px;
  margin: 1rem 0;
}
@media screen and (min-width: 769px) {
  .header__logo {
    min-width: 120px;
  }
}
.header__logo a {
  display: block;
}
.header__logo a img {
  display: block;
}
.header ::before, .header ::after {
  box-sizing: inherit;
}
.header button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.header .btn {
  /* ボタンの配置位置  */
  top: 32px;
  right: 16px;
  /* 最前面に */
  z-index: 10;
  /* ボタンの大きさ  */
  width: 48px;
  height: 48px;
}
.header .btn-line {
  display: block;
  /* バーガー線の位置基準として設定 */
  position: relative;
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #d6d5d5;
  transition: 0.2s;
}
.header .btn-line::before, .header .btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d6d5d5;
  transition: 0.5s;
}
.header .btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}
.header .btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}
.header .btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}
.header .btn-line.open::before, .header .btn-line.open::after {
  content: "";
  background-color: #fff;
  transition: 0.2s;
}
.header .btn-line.open::before {
  /* 上の線を傾ける */
  transform: rotate(45deg);
}
.header .btn-line.open::after {
  /* 上の線を傾ける */
  transform: rotate(-45deg);
}
@media screen and (max-width: 820px) {
  .header .menu {
    /* メニューの位置マイナス指定で画面外に */
    text-align: center;
    position: absolute;
    right: -76%;
    width: 76%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #efefef;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 285px;
    flex-direction: column;
  }
}
@media screen and (max-width: 820px) {
  .header .menu.open {
    position: absolute;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 430px;
    flex-direction: column;
    text-align: left;
    padding-left: 3rem;
    top: 76%;
  }
}
@media screen and (max-width: 820px) {
  .header .has-sub {
    text-align: left;
  }
}
.header .has-sub a {
  display: none;
}
@media screen and (min-width: 821px) {
  .header .has-sub a {
    display: block;
    padding-bottom: 0;
  }
}
.header .has-sub li {
  padding-bottom: 1.4rem;
}
@media screen and (min-width: 821px) {
  .header .has-sub li {
    padding-top: 15%;
  }
}
@media screen and (min-width: 821px) {
  .header .btn {
    display: none;
  }
}
.header__navBordernone {
  border-top: none !important;
}
.header__navBorder {
  border-top: 2px solid #fff;
  width: 69vw;
  padding: 15px 0;
}
@media screen and (min-width: 821px) {
  .header__navBorder {
    border-top: none;
    width: auto;
    padding: 0;
  }
}
@media screen and (min-width: 821px) {
  .header__navWrap {
    position: relative;
    white-space: nowrap;
  }
}
.header__navList a {
  font-weight: bold;
  color: #fff;
  display: block;
}
@media screen and (min-width: 821px) {
  .header__navList {
    display: flex;
    padding: 0;
    justify-content: space-around;
    align-items: center;
  }
}
@media screen and (min-width: 821px) {
  .header__navSub {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 821px) {
  .header .system {
    display: none;
    margin-top: 6% !important;
    right: 6%;
    font-size: 1.6rem;
    color: #fff;
    line-height: 3.75;
    background-color: #03032e;
    position: absolute;
    z-index: 10;
  }
}
@media screen and (min-width: 821px) {
  .header .boss {
    display: none;
    margin-top: 6% !important;
    right: 28%;
    font-size: 1.6rem;
    color: #fff;
    line-height: 3.75;
    background-color: #03032e;
    position: absolute;
    z-index: 10;
  }
}
@media screen and (min-width: 821px) {
  .header .boss li, .header .system li {
    padding: 0 3rem;
    border-top: solid 2px #fff;
  }
}
.header .boss li a, .header .system li a {
  display: block;
}
@media screen and (min-width: 769px) {
  .header .boss li:hover, .header .system li:hover {
    transition: ease 0.3s;
    background: #25255a;
  }
}

@media screen and (min-width: 769px) {
  nav a:hover {
    transition: ease 0.3s;
    color: #6d241c;
  }
}

#curtainright {
  width: 1500px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}
#curtainright img {
  width: auto;
  position: absolute;
  right: 0;
}

.cutaininner {
  position: relative;
  right: 0;
  width: 0;
  overflow: hidden;
  transition: 1000ms linear;
}

#curtainleft {
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: 1000ms linear;
}
#curtainleft img {
  width: auto;
}

#curtainleft.is-on {
  width: 1500px;
  height: auto;
}

#curtainright.is-on .cutaininner {
  width: 1500px;
  position: absolute;
  top: 0;
  right: 0;
  height: 2000px;
}

.Flower_wrap {
  display: none;
}
@media screen and (min-width: 821px) {
  .Flower_wrap {
    display: block;
    position: relative;
    width: 100vw;
    height: 100vh;
  }
}

.petal {
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0; /* 初期状態は透明 */
  animation: fall linear infinite, sway 2s ease-in-out infinite, fadeIn 2s ease forwards;
}

/* 回転する花びら用のクラス */
.rotate {
  animation: fall linear infinite, sway 2s ease-in-out infinite, fadeIn 2s ease forwards, rotate3D linear infinite;
}

/* ジグザグで落下アニメーション */
@keyframes fall {
  0% {
    top: -10%; /* 画面外の上から開始 */
  }
  100% {
    top: 110%; /* 画面外の下へ */
  }
}
/* 揺れる動き */
@keyframes sway {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px); /* 左右に揺れる */
  }
}
/* 生成時のふわっとアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5); /* 小さく透明でスタート */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* 通常サイズで完全表示 */
  }
}
/* 3D回転アニメーション */
@keyframes rotate3D {
  0% {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  100% {
    transform: rotate3d(1, 1, 1, 360deg);
  }
}
.fv {
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  font-size: 0;
  padding-top: 7rem;
}
@media screen and (min-width: 821px) {
  .fv {
    background-image: url(../img/fv_bg.png);
    height: 1051px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
  }
}
.fv .top-effect01, .fv .top-effect02, .fv .top-effect03, .fv .top-effect04, .fv .top-effect05, .fv .top-effect06, .fv .top-effect07, .fv .top-effect08, .fv .top-effect09, .fv .top-effect10, .fv .top-effect11, .fv .top-effect12 {
  position: absolute;
}
@media screen and (min-width: 821px) {
  .fv .top-effect01, .fv .top-effect02, .fv .top-effect03, .fv .top-effect04, .fv .top-effect05, .fv .top-effect06, .fv .top-effect07, .fv .top-effect08, .fv .top-effect09, .fv .top-effect10, .fv .top-effect11, .fv .top-effect12 {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.fv .top-bg {
  z-index: 0;
}
.fv .top-effectbg {
  z-index: 4;
  position: absolute;
  height: 478px;
  left: calc(50% - 600px);
  top: 181px;
  width: 501px;
  animation-name: top-effectbg;
  animation-delay: 1.9s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  transition: all 0.3s;
  animation-fill-mode: backwards;
}
@keyframes top-effectbg {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.fv .top-effectbg2 {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}

.top-effect01 {
  --6a4563: 1920px;
  top: 3px;
  left: calc(50% + var(--360f84) - var(--6a4563) / 2);
}

@media screen and (min-width: 821px) {
  .top-effect01 {
    --287203: 0px;
    --360f84: 0px;
    width: 1920px;
    height: 1013px;
    z-index: 5;
    animation-duration: 4s;
    animation: feedin 2s ease-out forwards, pulse 4s ease-in-out 3s infinite;
  }
  .top-effect02 {
    top: 65px;
    z-index: 3;
    width: 840px;
    height: 1058px;
    left: calc(50% + 1028px - 960px);
    bottom: 0;
    animation-name: top-effect02;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: backwards;
  }
  .top-effect03 {
    --6a4563: 1920px;
    --287203: 243px;
    --360f84: 535px;
    top: 243px;
    width: 479px;
    height: 828px;
    left: calc(50% + var(--360f84) - var(--6a4563) / 2);
    z-index: 2;
    animation-name: top-effect03;
    animation-duration: 4s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: backwards;
  }
  .top-effect05 {
    --6a4563: 1920px;
    --287203: 416px;
    --360f84: 260px;
    top: var(--287203);
    left: calc(50% + var(--360f84) - var(--6a4563) / 2);
    width: 378px;
    height: 563px;
    z-index: 1;
    animation-name: top-effect03;
    animation-duration: 4s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: backwards;
  }
}
@keyframes feedin {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  /* 空のまま？必要なら scale アニメーション追加 */
}
@keyframes top-effect02 {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes top-effect03 {
  from {
    opacity: 0;
    transform: translateY(300px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes top-effect05 {
  from {
    opacity: 0;
    transform: translateY(300px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-effect04 {
  display: none;
}
@media screen and (min-width: 821px) {
  .top-effect04 {
    display: block;
    z-index: 4;
    top: 9rem;
    max-width: 300px;
    min-width: 300px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    top: 46rem;
    max-width: 55rem;
    min-width: 0;
    min-width: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top-effect04 {
    max-width: 66rem;
    min-width: 47rem;
    animation-name: top-effect04;
    animation-delay: 2.3s;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
  }
}

@keyframes top-effect04 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.update {
  padding: 0 2rem;
  overflow: hidden;
  position: relative;
  background: url(../img/bg_update.png) no-repeat center 0;
  background-size: cover;
  margin-bottom: 0%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.update__text {
  color: #000;
  font-size: 2.2rem;
  text-align: center;
  padding: 20px 0;
}
.update__title {
  text-align: center;
  padding-top: 90px;
}
.update__title img {
  max-width: 400px;
}
.update__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .update__wrap {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 769px) {
  .update__pad {
    padding-right: 2rem;
  }
}
.update__itemMonster {
  display: none;
}
@media screen and (min-width: 1024px) {
  .update__itemMonster {
    z-index: 1;
    display: block;
    height: 313px;
    left: 50%;
    margin-left: 483px;
    overflow: hidden;
    position: absolute;
    top: 9%;
    width: 371px;
  }
}
.update__itemMen {
  display: none;
}
@media screen and (min-width: 1024px) {
  .update__itemMen {
    z-index: 1;
    display: block;
    height: 760px;
    left: 50%;
    margin-left: -1295px;
    overflow: hidden;
    position: absolute;
    top: 406px;
    width: 759px;
  }
}
.update li:hover {
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
}
.update li img {
  max-width: 30rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .update li img {
    min-width: 22rem;
    max-width: 19vw;
    opacity: 1;
    transition: 0.3s;
  }
}
.update li a {
  display: block;
}

.ki_l {
  background: url(./../img/l_k.png) no-repeat 0 0;
  height: 1490px;
  left: -10%;
  position: absolute;
  top: 36px;
  transition-delay: 0.5s;
  transition-duration: 3s;
  width: 2061px;
  animation: fadeOutLeftFromCurrent 3s ease-in-out 0.5s forwards;
}

.ki_r {
  background: url(./../img/r_k.png) no-repeat 0 0;
  height: 1375px;
  right: -10%;
  margin-left: -454px;
  position: absolute;
  top: 114px;
  transition-delay: 0.5s;
  transition-duration: 3s;
  width: 1734px;
  animation: fadeOutRightFromCurrent 3s ease-in-out 0.5s forwards;
}

@keyframes fadeOutLeftFromCurrent {
  0% {
    transform: translateX(0); /* 現在位置 */
    opacity: 1; /* 完全に表示 */
  }
  100% {
    transform: translateX(-100%); /* 現在位置からさらに左にスライド */
    opacity: 0; /* 完全に透明 */
  }
}
@keyframes fadeOutRightFromCurrent {
  0% {
    transform: translateX(0); /* 現在位置 */
    opacity: 1; /* 完全に表示 */
  }
  100% {
    transform: translateX(100%); /* 現在位置からさらに右にスライド */
    opacity: 0; /* 完全に透明 */
  }
}
#wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

#links {
  position: fixed;
  z-index: 100;
  left: 15px;
  top: 10%;
  max-width: 250px;
}
#links li {
  margin-bottom: 15px;
}

#links a {
  display: block;
  transition: ease 0.3s;
}

#links a:hover {
  transition: ease 0.3s;
  transform: translateY(-5px);
}

.mb-movie {
  display: none;
}

.movie {
  position: absolute;
  top: 58%;
  left: 53%;
  transform: translateX(-53%);
  right: 0;
  bottom: 0;
  z-index: 5;
  display: block;
  background: url(./../img/movie.png) 0 0 no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 97px;
  height: 300px;
}
.movie:hover {
  background: url(./../img/movie_on.png) 0 0 no-repeat;
  background-size: contain;
  width: 100%;
}
@media screen and (min-width: 821px) {
  .movie {
    left: 50%;
    transform: translateX(-50%);
    max-width: 170px;
    height: 178px;
    top: 330px;
    animation-name: movie-effect;
    animation-delay: 2.3s;
    animation-duration: 0.8s;
    animation-fill-mode: backwards;
  }
}

@keyframes movie-effect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#top-contents-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 75px;
}

.texttitle {
  font-size: 20px;
  font-weight: bold;
  color: #01246D;
  text-align: center;
  margin: 70px auto 0;
  padding: 5px 12px;
  background: #48FF5E;
  border-radius: 35px;
  display: table;
}
@media screen and (min-width: 768px) {
  .texttitle {
    font-size: 32px;
    padding: 5px 50px;
  }
}

.scroll-nav {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  left: 0;
  bottom: -15px;
  max-width: 80px;
  height: 100px;
}

.mb-nav {
  display: none;
}

.inner {
  width: 1500px;
  margin: 50px auto;
  position: relative;
  min-height: 100%;
}

.boss-inner {
  padding-top: 0 !important;
}

.top {
  width: 100% !important;
  display: block;
}

#top-contents-pc img {
  width: 100%;
}

.top-scroll-bar img {
  width: auto !important;
}

#top-contents-pc {
  padding-bottom: 42%;
}

#top-contents-mobile {
  display: none;
}

.top-scroll-bar {
  width: 100%;
  text-align: center;
  position: absolute;
  left: -17px;
  bottom: -4px;
  z-index: 999;
}

.scroll-bar {
  width: 100%;
  position: absolute;
  bottom: 5px;
  left: 0;
  text-align: center;
}

.index-img {
  margin: 0 auto;
  text-align: center;
  max-width: 400px;
  padding-top: 90px;
  padding-bottom: 50px;
}

.storywrap {
  background: url(./../img/bg_story.jpg) no-repeat 0 0;
  background-size: cover;
  background-position: bottom;
  height: 100%;
  padding-bottom: 10%;
}

.story {
  margin-bottom: 0;
}
.storybox {
  color: #000;
  font-family: "Sawarabi Mincho";
}
@media screen and (min-width: 769px) {
  .storybox {
    font-size: 1.8rem;
    color: #000;
  }
}

.story-inner {
  padding-top: 0 !important;
  margin: 0 auto;
}

.story-text {
  background: url(./../img/txtbg_story.png) no-repeat;
  background-position: center;
  font-size: 17px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: contain;
  width: 100%;
  height: 797px;
  max-width: 801px;
}

.next-button {
  display: table;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  background: #ff005a;
  box-shadow: 0 3px 0 1px #000;
  padding: 0 30px;
  border-radius: 5px;
  position: relative;
  top: -3px;
  margin: 0 auto 50px;
}

.next-button:hover {
  box-shadow: none;
  top: 0;
}

.next-button a {
  display: block;
  color: #fff;
  padding: 0 30px;
}

.map__wrap {
  position: relative;
  background: url(../img/bg_map.jpg) 0 0 no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 820px) {
  .map__wrap {
    background-attachment: fixed;
  }
}
.map__head {
  margin-top: 8rem;
  text-align: center;
  color: #000;
  margin-bottom: 2rem;
  padding-top: 11rem;
}
@media screen and (max-width: 769px) {
  .map__head {
    padding-top: 0;
  }
}
.map__head img {
  width: 100%;
  max-width: 400px;
}
.map__textbox {
  display: flex;
  flex-flow: column;
  text-align: left;
  line-height: 1.7;
  padding: 1rem;
}
@media screen and (min-width: 820px) {
  .map__textbox {
    flex-flow: row;
    align-items: flex-start;
    justify-content: space-around;
    padding: 1rem 2rem;
    height: 32vw;
    overflow: scroll;
  }
  .map__textbox ul {
    width: 95%;
    margin-top: 1rem;
    margin-bottom: 6rem;
  }
}
.map__textbox::-webkit-scrollbar {
  display: none;
}
.map__part {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #6d241c;
  padding: 3px 15px;
  border-radius: 30px;
  max-width: 100px;
  margin-right: 15px;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .map__part {
    font-size: 1.6rem;
  }
}
.map__headdline {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 820px) {
  .map__headdline {
    font-size: 2rem;
  }
}
.map__text {
  font-size: 1.5rem;
  font-weight: normal;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .map__text {
    font-size: 1.6rem;
  }
}
.map__clickimg {
  width: 8%;
  max-width: 140px;
  min-width: 60px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 820px) {
  .map__clickimg {
    bottom: 0;
  }
}

.map-title {
  font-size: 18px;
  color: rgb(0, 18, 99);
  font-weight: bold;
  text-align: center;
  background: white;
  padding: 0 20px;
  border-radius: 30px;
  margin: 100px 0 15px;
  display: inline-block;
  min-width: 100px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

#pagepiling {
  height: 100%;
  padding: 0 5%;
}

.map-index {
  position: relative;
  margin: 50px auto 0;
}

.map-title, .map-name {
  position: absolute;
}

.map-image {
  position: relative;
  margin-top: -3rem;
}

.map-image img {
  width: 100%;
}

.map-title {
  top: -50px;
  left: 50px;
}

.map-name {
  top: 100px;
  left: 50px;
}

.map-part-title {
  font-weight: bold;
}

.map-desc {
  width: calc(100% - 30px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  margin-top: 0;
}

.map-desc02 {
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
}

.map-desc li:nth-child(odd) {
  width: 30%;
}

.map-desc li:nth-child(even) {
  width: 70%;
}

.map-mg-tp {
  margin-top: 30px !important;
  border-top: 1px dotted white;
  padding-top: 30px;
}

.map-part-title span {
  font-size: 1.8rem;
  color: #01246D;
  font-weight: bold;
  text-align: center;
  background: #ffd52b;
  padding: 3px 15px;
  border-radius: 30px;
  max-width: 100px;
  margin-right: 15px;
  display: block;
  margin-bottom: 10px;
}

.left-margin {
  margin-left: 15px;
  margin-top: 10px;
  font-weight: 600;
}

.map-margin50 {
  margin-bottom: 30px;
}

.system-inner {
  min-height: 0;
  margin: 0 auto;
}
.system-inner img {
  max-width: 500px;
}
.system-inner .texttitle {
  margin-top: 0;
}

.system-wrap {
  background-image: url(../img/system_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.system-section {
  padding-top: 8rem;
  margin-bottom: 0 !important;
}

.system-box {
  align-items: center;
}

.system-box li {
  margin-top: 1rem;
}

.footersystem {
  position: initial !important;
  margin-bottom: 0 !important;
}

.pet-systemtext {
  background: rgba(255, 255, 255, 0.74);
  padding: 3rem;
  position: relative;
}

.system-text01, .system-text02, .system-text03 {
  padding-left: 18px;
  display: block;
}

.system-text01:before {
  content: "1)";
  position: absolute;
  left: 30px;
  padding-top: 1px;
}

.system-text02:before {
  content: "2)";
  position: absolute;
  left: 30px;
  padding-top: 1px;
}

.system-text03:before {
  content: "3)";
  position: absolute;
  left: 30px;
  padding-top: 1px;
}

.text-bold {
  font-weight: bold;
}

.pet-textbox {
  margin: 0 auto;
}

.pet-text {
  color: #fff;
  text-align: center;
}
.pet-text a {
  color: #1a61f5;
}

.text-red {
  color: #c71651;
}

.text-purple {
  color: #c000ff;
}

.fotterboss {
  position: initial !important;
}

.fotternpc {
  position: fixed;
  bottom: 0;
}

.content {
  text-align: center;
}
@media screen and (max-width: 769px) {
  .content button {
    width: 49%;
  }
}

.bosswap {
  background: url(../img/bg_monster.jpg) 0 0 no-repeat;
  background-size: cover;
  background-position: center;
}

.monster__head {
  margin-top: 8rem;
  text-align: center;
  color: #000;
  padding-top: 11rem;
}
@media screen and (max-width: 769px) {
  .monster__head {
    padding-top: 0;
    color: #000;
  }
}
.monster__head img {
  width: 100%;
  max-width: 400px;
}
.monster__headchild1 {
  padding-bottom: 3rem;
  margin: 0 auto;
  width: 100%;
  max-width: 295px;
}
.monster__headchild2 {
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 3rem;
  width: 100%;
  max-width: 210px;
}

.boss-monster01 {
  background: url(./../img/boss-bg01.png) no-repeat center bottom;
  background-size: cover;
}
.boss-monster01 h1 {
  background: #48FF5E;
  color: #01246D;
}

.boss-monster01 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pet-system01 ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .pet-system01 ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.system__wrap {
  background: url(../img/bg_system.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (min-width: 820px) {
  .system__wrap {
    background-attachment: fixed;
  }
}
.system__txt {
  color: #000;
}
.system__text {
  color: #000;
  text-shadow: 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255);
  font-size: 1.6rem;
  text-align: left;
  padding-top: 2rem;
  padding-bottom: 6rem;
  display: inline-block;
  font-weight: normal;
}
.system__part {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #50008B;
  padding: 3px 15px;
  border-radius: 30px;
  max-width: 378px;
  margin-right: 15px;
  display: block;
  margin: 0 auto;
}
.system__textbox {
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-around;
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .system__textbox {
    width: 100%;
  }
}
.system__textbox ul {
  width: 91%;
  text-align: center;
}
.system__le {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .system__le {
    padding-left: 0;
  }
}
.system__battimg1 {
  padding-top: 2rem;
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}
.system__battimg2 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}
.system__battimg3 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
.system__battimg5 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
  max-width: 780px;
  display: block;
  margin: 0 auto;
}
.system__yellow {
  text-align: center;
  color: #50008B;
  font-weight: normal;
  font-size: 1.6rem;
}
.system__pag {
  display: none;
}

.mainsys {
  cursor: default;
}

.tab {
  width: 63vw;
  min-height: 16vh;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .tab {
    width: 355px;
    min-height: 140px;
  }
}

.tab1.active {
  background: url(../img/btn_system1_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab1.active:hover {
  background: url(../img/btn_system1_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
  background-position: center;
}

.tab1 {
  background: url(../img/btn_system1.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab2.active {
  background: url(../img/btn_system2_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab2.active:hover {
  background: url(../img/btn_system2_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
  background-position: center;
}

.tab2 {
  background: url(../img/btn_system2.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab3.active {
  background: url(../img/btn_system3_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab3.active:hover {
  background: url(../img/btn_system3_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
  background-position: center;
}

.tab3 {
  background: url(../img/btn_system3.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab4.active {
  background: url(../img/btn_system4_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab4.active:hover {
  background: url(../img/btn_system4_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
  background-position: center;
}

.tab4 {
  background: url(../img/btn_system4.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* background: #ccc; */
  color: #333;
  background-position: center;
}

.tab-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  margin: 0 auto;
  /* text-align: center; */
  max-width: 1000px;
}
@media screen and (min-width: 820px) {
  .tab-area {
    flex-direction: row;
    display: flex;
    padding-top: 2rem;
    margin: 0 auto;
    /* text-align: center; */
    max-width: 1000px;
  }
}

.systemtext {
  text-align: center;
  color: #fff;
  margin-top: 3rem;
}
.systemtext__color {
  color: #48FF5E;
}

.system-title {
  margin: 38px auto 30px !important;
}

.boss-monster01 li {
  width: 50%;
  align-self: center;
}

@media screen and (min-width: 1024px) {
  .pet-system01 li {
    width: 70%;
  }
}

.boss-img img {
  width: 100%;
}

.system-img {
  text-align: center;
  margin-bottom: 3rem;
}

.boss-title {
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
  text-align: center;
  background: #01246D;
  padding: 1rem;
  border-radius: 30px;
  margin: 50px 0 30px;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .boss-title {
    max-width: 570px;
  }
}

.monster-bg {
  background: url(./../img/monster-bg01.png) 0 0 no-repeat;
  background-size: auto;
}

.other-monster-bg {
  background: url(./../img/monster-bg.png) 0 0 no-repeat;
  background-size: auto;
}
@media screen and (min-width: 768px) {
  .other-monster-bg {
    background-size: cover;
  }
}

.other-monster-list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.other-bottom {
  padding-bottom: 20rem;
}

.other-monster-list li {
  width: calc(50% - 30px);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.other-monster-list img {
  max-width: 500px;
  margin: 5rem 0;
}

.other-monster-list p {
  padding: 1rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #01246D;
  border-radius: 30px;
  min-width: 288px;
  margin: 50px 0 30px;
}

.other-monster-last {
  margin-bottom: 100px;
}

.other-monster-desc {
  margin-top: 15px;
  text-align: center;
}

.npc-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .npc-box {
    flex-flow: column-reverse;
  }
}

.npc-title {
  font-weight: bold;
  color: #000;
  font-size: 2rem;
  padding-bottom: 2rem;
}

.npc ul li {
  width: 40%;
  height: 100%;
  align-self: center;
}

@media screen and (min-width: 768px) {
  .npc ul li:first-child {
    width: 42%;
    margin-bottom: 0;
    padding-bottom: 15%;
  }
}
.npc-name {
  margin-bottom: 25px;
  max-width: 403px;
}

.npc-desc {
  color: #000;
  padding-left: 15px;
}

.npc-img img {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.npcwrap {
  background: url(../img/bg_npc.jpg) 0 0 no-repeat;
  background-position: center;
  background-size: cover;
}

.npc__icon {
  display: flex;
  max-width: 800px;
  flex-flow: wrap;
  margin: 0 auto;
  justify-content: center;
}
.npc__head {
  margin-top: 8rem;
  text-align: center;
  color: #000;
  padding-top: 11rem;
}
@media screen and (max-width: 769px) {
  .npc__head {
    padding-top: 0;
  }
}
.npc__head img {
  width: 100%;
  max-width: 400px;
}

.color_gl {
  color: #087c86;
  font-weight: bold;
  text-shadow: 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255);
}

.npc-inner {
  margin: 0 auto !important;
}

@media screen and (max-width: 769px) {
  .npcmodal {
    width: 47%;
  }
}

.class-bg {
  background: url(./../img/class-bg.png) center top no-repeat;
  background-size: cover;
  padding: 100px 0;
  margin: 0 auto;
}
.class-bg .class-wrap {
  max-width: 1500px;
  margin: 0 auto 100px;
}
.class-bg .class-wrap h1 {
  margin: 0 auto;
  background: #7d002a !important;
}
.class-bg ul {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.class-bg ul li {
  width: 100%;
}
.class-bg ul li img {
  max-width: 100%;
}
.class-bg .class-desc-index {
  font-weight: 600;
  color: white;
  font-size: 1.4rem;
  line-height: 28px;
  margin-bottom: 15px;
}
.class-bg .class-desc-index P {
  background: #c71651;
  padding: 5px 25px;
  border-radius: 20px;
  display: inline-block;
  margin: 0;
}
.class-bg .class-name {
  margin-bottom: 30px;
}
.class-bg .class-name img {
  max-width: 100%;
}
.class-bg .class-desc {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  min-height: auto;
}
.class-bg .class-desc li {
  width: 100% !important;
}
.class-bg .class-movie {
  display: flex;
  flex-direction: column;
  min-height: 398px;
}
.class-bg .class-movie .class-movie-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.class-bg .class-movie .class-movie-wrap li {
  width: calc(50% - 30px) !important;
  height: 200px !important;
  margin: 15px !important;
}
.class-bg .class-movie .class-movie01, .class-bg .class-movie .class-movie02, .class-bg .class-movie .class-movie03, .class-bg .class-movie .class-movie04 {
  height: 170px;
  margin: 15px;
  display: block;
}

.skill-bg {
  background: url(./../img/skill-bg.png) center top no-repeat;
  background-size: cover;
}
.skill-bg h1 {
  margin: 0 auto;
  background: #7d002a !important;
}
.skill-bg section {
  padding: 60px 0 0;
  max-width: 1500px;
  margin: 0 auto;
}
.skill-bg section ul {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.skill-bg section ul li {
  width: 50%;
}
.skill-bg section ul li img {
  max-width: 100%;
}
.skill-bg section ul .skill-index {
  font-weight: 600;
  color: white;
  font-size: 1.4rem;
  line-height: 28px;
  background: #c71651;
  padding: 5px 25px !important;
  border-radius: 20px;
  display: inline-block;
  margin: 0 0 15px !important;
}
.skill-bg section ul p {
  margin: 0 0 15px;
  padding-left: 25px;
}
.skill-bg section ul .slill-desc {
  flex-direction: column !important;
}
.skill-bg section ul .slill-desc li {
  width: 100% !important;
  list-style-type: disc !important;
  margin-left: 25px;
}
.skill-bg section ul .subclass-sm-img {
  text-align: right;
}
.skill-bg section ul .subclass-sm-img img {
  width: 66%;
}

.class-scroll {
  bottom: 0;
}

.subclass-img {
  text-align: center;
}
.subclass-img img {
  width: 69%;
}

.class-footer {
  height: 100px;
}

.storyfooter {
  padding: 5rem 0;
  font-size: 12px;
}

#footer {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding: 10px 0 10px;
}

.footer {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 3rem 0;
  top: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 3rem 0;
    max-width: 1000px;
  }
}
.footer__copyText {
  color: #fff;
  display: block;
  text-align: center;
}

.copy-white {
  color: #fff;
}

@media screen and (max-width: 1600px) {
  .inner {
    width: 1200px;
    margin: 0 auto;
  }
  .scroll-nav {
    position: relative;
  }
  .map-desc {
    font-size: 13px;
  }
  .map-desc li {
    width: calc(50% - 30px);
    padding: 0 15px;
  }
  .map-mg-tp {
    border: none;
    margin-top: 0;
  }
  .boss-img img {
    padding-right: 100px;
  }
  .boss-monster li {
    margin-bottom: 50px;
  }
  .npc-bg {
    background-position: 0 0;
  }
  #npc-inner {
    margin: 50px auto 0 !important;
  }
  .npc-name {
    margin-top: 15px;
  }
  .npc-title {
    margin: 16px 0 0;
  }
  .npc-img img, .npc-img02 img {
    position: initial;
  }
  .npc-desc {
    margin-bottom: 50px;
    padding-left: 0;
  }
  .class-bg .class-wrap {
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
  }
  .class-bg ul {
    min-height: 100%;
  }
  .skill-bg section {
    padding: 200px 200px 100px;
  }
  .skill-bg section ul li {
    width: 100%;
  }
  .subclass-sm-img {
    display: none;
  }
  .class-scroll {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  #links {
    display: none;
  }
  .npc-img img {
    margin: 0 auto;
  }
  .npc-subinnner {
    flex-direction: column-reverse;
  }
  .class-bg ul {
    flex-direction: column-reverse;
    max-width: 950px;
    margin: 0 auto;
  }
  .class-bg .class-desc li {
    text-align: center;
  }
  .class-bg .class-desc-index {
    text-align: center;
  }
  .subclass-img img {
    width: 50% !important;
  }
  .class-bg .class-movie .class-movie-wrap {
    margin: 0 auto;
    max-width: 660px;
  }
  .class-bg section .class-movie .class-movie-wrap li {
    max-width: 300px;
  }
  .class-bg .class-movie {
    height: 100%;
  }
  .class-bg .class-name {
    text-align: center;
  }
  .pan {
    display: block;
    height: 150px;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  #links img {
    width: 150px;
  }
  .inner {
    width: 850px;
    margin: 0 auto;
    padding-top: 80px;
  }
  .scroll-nav {
    bottom: -35px;
    text-align: center;
  }
  .map-desc li, .boss-monster li {
    float: none;
    width: 100%;
  }
  .map-desc li:nth-child(odd) {
    width: 100%;
  }
  .boss-monster01 ul, .boss-monster02 ul {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .boss-monster01 ul li, .boss-monster02 ul li {
    width: 100%;
    text-align: center;
  }
  .boss-title {
    margin: 0 auto 15px;
  }
  .other-monster-list img {
    width: 100%;
  }
  .other-monster-list li {
    min-height: 600px;
  }
  .subclass-img img, .boss-img img, .npc-img02 img {
    width: 850px;
  }
  .skill-bg section {
    padding: 200px 100px 50px;
  }
  .sub-scroll {
    bottom: -40px;
  }
  .index-footer {
    bottom: -100px;
  }
}
@media screen and (max-width: 768px) {
  .index-footer {
    display: table;
    position: relative;
    z-index: 999;
    margin-top: 60px !important;
  }
  #latale-logo {
    top: 45px;
  }
  #links {
    right: 10px;
  }
  #links ul {
    display: flex;
    flex-direction: row;
  }
  #links ul li {
    margin: 0 7.5px;
  }
  .mb-movie {
    display: block;
    position: absolute;
    top: 73px;
    left: 0;
    z-index: 18;
    background: url(./../img/movie_off.png) 0 0 no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
  }
  #top-contents-pc {
    display: none !important;
  }
  #top-contents-mobile {
    display: block;
    position: relative;
    top: 40px;
  }
  #top-contents-mobile img {
    width: 100%;
  }
  .gnav {
    display: none;
  }
  /* Navbar & Navmenu color */
  :root {
    --background-navbar: #c73c6a;
  }
  .navicon {
    background: #ddd;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before {
    top: 9px;
  }
  .navicon:after {
    bottom: 9px;
  }
  /* Navbar Container */
  .navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* Navbar Text */
  .navtext {
    position: absolute;
    text-transform: uppercase;
    color: #ddd;
    letter-spacing: 4px;
    font-size: 20px;
  }
  .mb-nav {
    width: 100%;
    padding: 0 0 10px;
    display: block;
    position: fixed;
    top: 0;
    overflow-x: scroll;
    z-index: 999;
  }
  .mb-nav ul {
    width: 1330px;
    display: table;
    padding: 5px 0;
    margin: 0 auto;
    background: #c73c6a;
  }
  .mb-nav li {
    width: 180px;
    padding: 3px 0;
    margin: 0 5px;
    border-radius: 10px;
    float: left;
    text-align: center;
    font-size: 12px;
    background: lightyellow;
  }
  .mb-nav li a {
    display: block;
    border-radius: 10px;
    padding: 3px 0;
    color: #c73c6a;
    font-weight: bold;
  }
  #latale-logo img {
    width: 80px;
  }
  .story-text {
    width: calc(100% - 34px);
    height: auto;
    background: rgba(255, 255, 255, 0.45);
    padding: 15px;
    border-radius: 10px;
  }
  .storywrap {
    padding: 0 1rem 6rem 1rem;
    background-position: 35%;
  }
  .inner {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding-bottom: 5rem;
  }
  .map-index {
    margin: 40px auto 0;
  }
  .other-monster-list p {
    min-width: 200px;
  }
  .npc ul li {
    width: 100%;
  }
  .npc-bg {
    background-position: -172px 0;
  }
  .npc-img img {
    width: 100%;
  }
  .skill-bg section {
    padding: 100px 30px 50px;
  }
  .index-footer {
    bottom: 0;
  }
}
@media screen and (max-width: 648px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 21px;
  }
  #latale-logo {
    right: 15px;
  }
  #latale-logo img {
    width: 80px;
  }
  #latale-logo ul li:nth-child(2), #latale-logo ul li:nth-child(3), #latale-logo ul li:nth-child(4) {
    display: none;
  }
  #links img {
    width: 100%;
  }
  .top-scroll-bar {
    display: none;
  }
  #pp-nav.right {
    display: none;
  }
  .map-image img {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .map-title {
    top: 0;
    left: 15px;
    font-size: 11px;
  }
  .map-name {
    top: 137px;
    left: 15px;
  }
  .map-name img {
    max-width: 300px;
    width: 100%;
  }
  .map-part-title {
    font-size: 18px;
  }
  .map-part-title span {
    display: block;
    margin-bottom: 15px;
  }
  .map-index {
    margin: 30px auto 0;
  }
  .map-desc {
    padding: 0 15px 15px;
    margin: 0 auto;
  }
  .map-desc li:nth-child(even) {
    width: calc(100% - 10px);
    margin: 0 auto;
  }
  .map-desc li, .boss-monster li {
    padding: 0;
  }
  .boss-name img {
    width: 100%;
    max-width: 230px;
  }
  .boss-footer {
    bottom: 40px;
  }
  .other-monster-list li {
    width: calc(100% - 30px);
    min-height: auto !important;
  }
  .other-monster-list img {
    max-width: 386px;
    width: 100%;
  }
  .other-monster-desc {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
  }
  .npc-desc {
    text-align: left;
    width: calc(100% - 30px);
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    text-shadow: none;
    color: #000;
  }
  .npc-desc p {
    font-size: 16px;
  }
  .npc-title {
    text-shadow: none;
    color: #000;
  }
  .map-part-title {
    font-size: 18px;
  }
  .class-bg section .class-movie .class-movie-wrap {
    flex-direction: column;
    align-items: center;
  }
  .class-bg section .class-movie .class-movie-wrap li {
    max-width: calc(100% - 30px) !important;
    width: 330px !important;
  }
  .class-bg .class-movie .class-movie-wrap {
    flex-direction: column;
    align-content: center;
  }
  .skill-bg section ul .skill-index {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 468px) {
  .wrapper {
    width: 100%;
  }
  h1 {
    font-size: 13px;
  }
  #top-contents-mobile img {
    width: 100%;
  }
  .index-img img {
    width: 100%;
  }
  .story-text {
    font-size: 1.4rem !important;
  }
  .boss-title {
    font-size: 11px;
    width: 95%;
    margin-top: 5rem;
  }
  .other-monster-list p {
    font-size: 1rem;
    padding: 1rem;
  }
  .npc-title {
    font-size: 16px;
  }
  .npc-name img {
    width: 100%;
  }
}