@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200&family=Stick&family=Zen+Kaku+Gothic+Antique&display=swap");
.theme--light.v-application {
  background: var(--gray-1);
}

.v-skeleton-loader__bone {
  z-index: 1;
}

.fs-xxs {
  font-size: 10px !important;
}

.fs-xs {
  font-size: 12px !important;
}

.fs-s {
  font-size: 14px !important;
}

.fs-m {
  font-size: 16px !important;
}

.fs-l {
  font-size: 18px !important;
}

.fs-xl {
  font-size: 24px !important;
}

.fs-xxl {
  font-size: 32px !important;
}

@media (min-width: 640px) {
  .fs-sm-xxs {
    font-size: 10px !important;
  }
  .fs-sm-xs {
    font-size: 12px !important;
  }
  .fs-sm-s {
    font-size: 14px !important;
  }
  .fs-sm-m {
    font-size: 16px !important;
  }
  .fs-sm-l {
    font-size: 18px !important;
  }
  .fs-sm-xl {
    font-size: 24px !important;
  }
  .fs-sm-xxl {
    font-size: 32px !important;
  }
}

@media (min-width: 960px) {
  .fs-md-xxs {
    font-size: 10px !important;
  }
  .fs-md-xs {
    font-size: 12px !important;
  }
  .fs-md-s {
    font-size: 14px !important;
  }
  .fs-md-m {
    font-size: 16px !important;
  }
  .fs-md-l {
    font-size: 18px !important;
  }
  .fs-md-xl {
    font-size: 24px !important;
  }
  .fs-md-xxl {
    font-size: 32px !important;
  }
}

.rounded {
  border-radius: 4px !important;
}

.rounded-sm {
  border-radius: 2px !important;
}

.rounded-lg {
  border-radius: 8px !important;
}

.rounded-xl {
  border-radius: 24px !important;
}

.lh-s {
  line-height: 1.25 !important;
}

.lh-m {
  line-height: 1.5 !important;
}

.lh-l {
  line-height: 1.75 !important;
}

.lh-xl {
  line-height: 2 !important;
}

.fc-primary {
  color: var(--c-primary) !important;
}

.fc-primary-light {
  color: var(--c-primary-light) !important;
}

.fc-primary-dark {
  color: var(--c-primary-dark) !important;
}

.fc-primary-bg {
  color: var(--c-primary-bg) !important;
}

.fc-secondary {
  color: var(--c-secondary) !important;
}

.fc-secondary-light {
  color: var(--c-secondary-light) !important;
}

.fc-secondary-dark {
  color: var(--c-secondary-dark) !important;
}

.fc-secondary-bg {
  color: var(--c-secondary-bg) !important;
}

.fc-accent {
  color: var(--c-accent) !important;
}

.fc-accent-light {
  color: var(--c-accent-light) !important;
}

.fc-accent-dark {
  color: var(--c-accent-dark) !important;
}

.fc-accent-bg {
  color: var(--c-accent-bg) !important;
}

.fc-black {
  color: var(--black) !important;
}

.fc-gray-10 {
  color: var(--gray-10) !important;
}

.fc-gray-8 {
  color: var(--gray-8) !important;
}

.fc-gray-6 {
  color: var(--gray-6) !important;
}

.fc-gray-4 {
  color: var(--gray-4) !important;
}

.fc-gray-3 {
  color: var(--gray-3) !important;
}

.fc-gray-2 {
  color: var(--gray-2) !important;
}

.fc-gray-1 {
  color: var(--gray-1) !important;
}

.fc-white {
  color: var(--white) !important;
}

.fc-black-bg {
  color: var(--c-black-bg) !important;
}

.fc-error {
  color: var(--c-error) !important;
}

.fc-info {
  color: var(--c-info) !important;
}

.fc-success {
  color: var(--c-success) !important;
}

.fc-warning {
  color: var(--c-warning) !important;
}

.z-header {
  z-index: 3 !important;
}

.z-footer {
  z-index: 3 !important;
}

.z-nav {
  z-index: 2 !important;
}

.z-content {
  z-index: 1 !important;
}

.theme--light.v-skeleton-loader .v-skeleton-loader__bone::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

a {
  color: var(--gray-8);
  text-decoration: none;
}

.v-dialog {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Chrome, Safari, Edge */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

/* Firefox */
input[type="number"] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

:root {
  --c-primary: #b33c42;
}

.ff-nmincho {
  font-family: dnp-shuei-nmincho-std, "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 400;
  font-style: normal;
}

.ff-stick {
  font-family: Stick, serif !important;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 2s;
  transition: all 2s;
  background-color: #dae7f7;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading > .logo {
  -webkit-mask-image: url(../img/ipo.svg);
          mask-image: url(../img/ipo.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mask-mode: alpha;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 140px;
          mask-size: 140px;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-45deg, #dae7f7, #23a6d5, #9ce6ff, #ccffc8, #dae7f7);
  background-size: 100vw 100vh;
  -webkit-animation: gradient 5s ease infinite;
          animation: gradient 5s ease infinite;
  display: block;
  border-radius: 50%;
  line-height: 140px;
  width: 140px;
  text-align: center;
  color: #fff;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  margin: 0;
  background: #f2eeeb;
  color: #4d4545;
  font-family: sans-serif;
  font-size: 12pt;
  line-height: 1.8;
  text-align: justify;
}

/* headline */
h1 {
  color: #fff;
  font-size: 1.3rem;
}

h2 {
  color: #4d4545;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
}

#about h2 {
  color: #fff;
}

h3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(30, 11, 11, 0.852);
  font-family: "dnp-shuei-nmincho-std", serif;
  font-size: 2rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

@media (min-width: 640px) {
  h3 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3rem;
  }
}

h3.-pre {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 640px) {
  h3.-pre {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

h4 {
  color: #4d4545;
  font-family: "Stick", sans-serif;
  font-size: 1.3rem;
  padding-top: 40px;
  padding-bottom: 32px;
}

.sp3 h4 {
  text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
}

/* text */
hr {
  padding: 1em 0;
  border: none;
}

a,
a:hover,
a:visited {
  color: #d70035;
  text-decoration: none;
}

/* header */
#headerRoot {
  background: #222;
  position: fixed;
  z-index: 6;
  top: 0;
}

#header {
  margin: 0 auto;
  padding: 1em 0;
}

.acLogo {
  margin-bottom: 0;
}

/* Groval Menu */
#gMenu {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 100;
}

@media (min-width: 640px) {
  #gMenu {
    bottom: 20px;
    right: 40px;
  }
}

#gMenu-Btn {
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}

#gMenu-Btn.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#gMenu-Btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#mMenu {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#faf6f2), color-stop(42%, rgba(250, 246, 242, 0))), url("../img/m_002.webp");
  background-image: linear-gradient(0deg, #faf6f2 0%, rgba(250, 246, 242, 0) 42%), url("../img/m_002.webp");
  background-position: center, center;
  background-size: 100%;
  background-repeat: no-repeat, no-repeat;
  border-radius: 8px;
}

#mMenu a {
  padding: 0.2rem 0;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  display: block;
  height: 100%;
  width: 100%;
  color: #4d4545;
  font-family: Stick, serif;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

@media (min-width: 640px) {
  #mMenu a {
    padding: 0.5rem 0;
    font-size: 1.4rem;
  }
}

#mMenu a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#mMenu .close {
  color: #675d5a;
  cursor: pointer;
  display: inline;
  position: absolute;
  top: 0;
  right: 8px;
  -webkit-transform: scaleX(1.2);
          transform: scaleX(1.2);
  font-size: 1.4rem;
}

@media (min-width: 640px) {
  #mMenu .close {
    font-size: 1.8rem;
    top: -8px;
    right: 4px;
  }
}

.mMenuButton {
  cursor: pointer;
  color: #3e3532;
  display: block;
  text-align: center;
  width: 60px;
  padding-top: 60px;
  font-size: 0.8rem;
  line-height: 1 !important;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  background-image: url("../img/menu.webp");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (min-width: 640px) {
  .mMenuButton {
    font-size: 1rem;
    width: 80px;
    padding-top: 80px;
  }
}

.mMenuButton:hover {
  color: #3e3532;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.mMenuBorder {
  border: 10px double #ddd;
}

/* top page section */
#top {
  min-height: 140vh;
  background-image: url("../img/top_001@m.jpg");
  background-attachment: scroll;
  background-position-x: -100px;
}

#topForPc {
  min-height: 140vh;
  height: 200vh;
  background-image: url("../img/top_001.jpg");
  background-attachment: scroll;
  background-position-x: -100px;
}

@media (min-width: 960px) {
  #topForPc {
    background-position-x: 0;
  }
}

.top {
  position: relative;
  overflow: hidden;
  /* particle */
}

.top > .logo {
  position: absolute;
  display: block;
  background-image: url("../img/logo.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: 0;
  left: 10%;
  bottom: 60%;
  right: 10%;
  max-height: 100vh;
  z-index: 99;
}

@media (min-width: 1200px) {
  .top > .logo {
    top: 40px;
    left: 80px;
    bottom: 0;
    right: 0;
    max-height: 520px;
    background-position: left center;
  }
}

.top > .front {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("../img/top_002.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
}

@media (min-width: 1200px) {
  .top > .front {
    background-image: url("../img/top_002@2.webp");
  }
}

.top .effect {
  position: absolute;
  display: block;
  top: 0;
  left: -400px;
  bottom: 0;
  right: -200px;
  background-image: url("../img/top_003.webp");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: blur 5s ease-in-out forwards;
          animation: blur 5s ease-in-out forwards;
}

@-webkit-keyframes blur {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: translateX(200px) translateY(-60px);
            transform: translateX(200px) translateY(-60px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

@keyframes blur {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: translateX(200px) translateY(-60px);
            transform: translateX(200px) translateY(-60px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

.top > .background {
  position: absolute;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  display: block;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 29;
}

.top > .credit {
  position: absolute;
  display: block;
  text-align: center;
  z-index: 99;
  color: #f0f9fe;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 0.8rem;
  text-shadow: 0px 0px 10px #131b3e;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .top > .credit {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .top > .credit {
    font-size: 4rem;
    padding-bottom: 80px;
  }
}

.top > .credit .link {
  font-family: Stick, serif !important;
  display: block;
  background: #ffffffd9;
  text-shadow: none;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  color: #0b2c48;
  padding: 16px 0;
  margin: 40px 48px;
  border-radius: 80px;
  cursor: pointer;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

@media (min-width: 640px) {
  .top > .credit .link {
    font-size: 2rem;
  }
}

.top > .credit .link:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.wlLead {
  color: #fff;
  font-size: 1rem;
  text-shadow: 0px 0px 5px #222, 0px 0px 5px #222;
}

/* toppage sp or pc */
.forSp {
  display: none !important;
}

.forPc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media only screen and (max-width: 750px) {
  .forPc {
    display: none !important;
  }
  .forSp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* copy page section */
p.wlcopy {
  color: #fff;
}

/* overclip */
.introOverclip {
  background-image: url(../img/bg_004.webp);
  background-repeat: repeat-y;
  background-position: top -80px right 10%;
  background-attachment: fixed;
}

.worldOverclip {
  background-image: url(../img/bg_004.webp);
  background-repeat: repeat-y;
  background-position: top -80px left 10%;
  background-attachment: fixed;
}

.systemOverclip1 {
  background-image: url("../img/m_001.webp");
  background-position: center -60px, left 120px;
  background-repeat: no-repeat, repeat-y;
}

@media only screen and (max-width: 840px) {
  .systemOverclip1 {
    background-image: url("../img/m_001.webp");
    background-position: center -60px;
    background-repeat: no-repeat;
  }
}

.systemOverclip2 {
  background-color: transparent;
  position: relative;
}

.systemOverclip3 {
  padding-top: 80px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, rgba(255, 255, 255, 0))), url("../img/k_002.webp");
  background-image: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 50%), url("../img/k_002.webp");
  background-position: center, center top;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.systemOverclip4 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, rgba(255, 255, 255, 0))), url("../img/k_002.webp");
  background-image: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 50%), url("../img/k_002.webp");
  background-position: center, center bottom;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

/* introduction section */
#copy {
  background-image: url("../img/k_003.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  color: #fff;
  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;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 3rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  width: 100%;
  letter-spacing: 0.1rem;
}

#copy span {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  line-height: 1.2em;
}

@media (min-width: 640px) {
  #copy {
    list-style: 1;
    font-size: 6rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
}

@media (min-width: 640px) {
  #copy {
    line-height: 1.6;
    font-size: 4rem;
  }
}

@media (min-width: 960px) {
  #copy {
    font-size: 6rem;
  }
}

@media (min-width: 1200px) {
  #copy {
    line-height: 1.3;
    font-size: 8rem;
  }
}

@media (min-width: 1600px) {
  #copy {
    font-size: 10rem;
  }
}

.copyPrag {
  font-family: "dnp-shuei-nmincho-std", serif;
  font-size: 1.3rem;
  display: inline-block;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #00608d), color-stop(89%, #a0d8ef));
  background: linear-gradient(0deg, #00608d 20%, #a0d8ef 89%);
  background: -webkit-linear-gradient(90deg, #00608d 20%, #a0d8ef 89%);
}

/* section */
#intro,
#world,
#character,
#system,
#about,
.systemPage,
.sp2,
.sp3 {
  position: relative;
  padding: 2em;
  border-bottom: 1px solid #c1c1c1;
}

@media (min-width: 640px) {
  #intro,
  #world,
  #character,
  #system,
  #about,
  .systemPage,
  .sp2,
  .sp3 {
    padding: 4em;
  }
}

#introPc,
#worldPc {
  max-width: 1200px;
  margin: 0 auto;
}

#intro > div p,
#world > div p {
  font-family: "dnp-shuei-nmincho-std", serif;
  font-size: 1rem;
}

#character {
  background-image: url("../img/k_004.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 720px;
}

#character3 {
  border-bottom: solid 1px #c8c8c8;
}

#character2 {
  height: 740px;
  background-image: url("../img/bg_005.webp");
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-size: cover;
}

#character3 {
  height: 520px;
  margin-top: 80px;
}

#character,
#character2,
#character3 {
  position: relative;
  padding: 0;
}

#character .characterBox,
#character2 .characterBox,
#character3 .characterBox {
  height: 100%;
  width: 100%;
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

#character .characterBox .character,
#character2 .characterBox .character,
#character3 .characterBox .character {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  padding: 0 32px;
  display: block;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (min-width: 640px) {
  #character .characterBox .character,
  #character2 .characterBox .character,
  #character3 .characterBox .character {
    padding: 0;
    max-width: 600px;
  }
}

#character .characterBox .character.-npc1,
#character2 .characterBox .character.-npc1,
#character3 .characterBox .character.-npc1 {
  right: -10%;
  background-image: url("../img/character01.webp");
  background-position: top 10% right;
}

@media (min-width: 960px) {
  #character .characterBox .character.-npc1,
  #character2 .characterBox .character.-npc1,
  #character3 .characterBox .character.-npc1 {
    right: 0;
  }
}

#character .characterBox .character.-npc2,
#character2 .characterBox .character.-npc2,
#character3 .characterBox .character.-npc2 {
  left: 0;
  background-image: url("../img/character02.webp");
  background-position: top 18% left;
}

@media (min-width: 960px) {
  #character .characterBox .character.-npc2,
  #character2 .characterBox .character.-npc2,
  #character3 .characterBox .character.-npc2 {
    left: 0;
  }
}

#character .characterBox .character.-npc3,
#character2 .characterBox .character.-npc3,
#character3 .characterBox .character.-npc3 {
  right: 26%;
  background-image: url("../img/character03.webp");
  background-position: top 160px right -10%;
  background-size: 88% auto;
}

@media (min-width: 480px) {
  #character .characterBox .character.-npc3,
  #character2 .characterBox .character.-npc3,
  #character3 .characterBox .character.-npc3 {
    background-position: top -40% right;
    background-size: 70% auto;
  }
}

@media (min-width: 640px) {
  #character .characterBox .character.-npc3,
  #character2 .characterBox .character.-npc3,
  #character3 .characterBox .character.-npc3 {
    background-position: top -10% right;
    background-size: 70% auto;
  }
}

@media (min-width: 960px) {
  #character .characterBox .character.-npc3,
  #character2 .characterBox .character.-npc3,
  #character3 .characterBox .character.-npc3 {
    background-position: top -30% right 10%;
    right: 30%;
  }
}

#character .characterBox .character.-npc4,
#character2 .characterBox .character.-npc4,
#character3 .characterBox .character.-npc4 {
  left: -20%;
  background-image: url("../img/character04.webp");
  background-position: top 0 left 10px;
  background-size: 100% auto;
}

@media (min-width: 480px) {
  #character .characterBox .character.-npc4,
  #character2 .characterBox .character.-npc4,
  #character3 .characterBox .character.-npc4 {
    background-position: top 0 left 0px;
    background-size: 100% auto;
  }
}

@media (min-width: 960px) {
  #character .characterBox .character.-npc4,
  #character2 .characterBox .character.-npc4,
  #character3 .characterBox .character.-npc4 {
    background-position: top -10% left 0px;
    background-size: 100% auto;
    left: 0;
  }
}

#character .characterBox .character.-npc5,
#character2 .characterBox .character.-npc5,
#character3 .characterBox .character.-npc5 {
  right: -16%;
  background-image: url("../img/character05.webp");
  background-position: top 100px right 20px;
  background-size: 70% auto;
}

@media (min-width: 480px) {
  #character .characterBox .character.-npc5,
  #character2 .characterBox .character.-npc5,
  #character3 .characterBox .character.-npc5 {
    background-position: top 52px right 40%;
    background-size: 60% auto;
  }
}

@media (min-width: 640px) {
  #character .characterBox .character.-npc5,
  #character2 .characterBox .character.-npc5,
  #character3 .characterBox .character.-npc5 {
    background-position: top -40% right 40%;
    background-size: 60% auto;
  }
}

@media (min-width: 960px) {
  #character .characterBox .character.-npc5,
  #character2 .characterBox .character.-npc5,
  #character3 .characterBox .character.-npc5 {
    background-position: top -160% right 40%;
    background-size: 60% auto;
    right: 0;
  }
}

#character .characterBox .character.-npc6,
#character2 .characterBox .character.-npc6,
#character3 .characterBox .character.-npc6 {
  right: -15%;
  background-image: url("../img/character06.webp");
  background-position: top 40px right;
  background-size: 80%;
  z-index: 10;
}

@media (min-width: 640px) {
  #character .characterBox .character.-npc6,
  #character2 .characterBox .character.-npc6,
  #character3 .characterBox .character.-npc6 {
    right: 5%;
  }
}

#character .characterBox .character.-npc7,
#character2 .characterBox .character.-npc7,
#character3 .characterBox .character.-npc7 {
  left: -20px;
  background-image: url("../img/character07.webp");
  background-position: top 0 left;
}

@media (min-width: 640px) {
  #character .characterBox .character.-npc7,
  #character2 .characterBox .character.-npc7,
  #character3 .characterBox .character.-npc7 {
    left: 5%;
  }
}

#character > .grad,
#character2 > .grad,
#character3 > .grad {
  content: "";
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(8%, white), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(0deg, white 8%, rgba(255, 255, 255, 0) 100%);
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  display: block;
}

#character > .grad.-beige,
#character2 > .grad.-beige,
#character3 > .grad.-beige {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(8%, #e5e3e8), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(0deg, #e5e3e8 8%, rgba(255, 255, 255, 0) 100%);
}

#character::after,
#character2::after,
#character3::after {
  border: solid 24px transparent;
  border-top: solid 24px #fff;
  margin-top: -1px;
}

#character2 > .characterBox {
  max-width: 1200px;
}

#system,
.systemPage,
.sp2,
.sp3,
#about {
  padding: 4em 0;
}

#system > div p,
.systemPage > div p,
.sp2 > div p,
.sp3 > div p,
#about > div p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
}

.spCenter {
  margin: 0 auto;
  padding: 0 3rem;
}

.p1,
.p2 {
  margin: 0 auto;
  padding-top: 160px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.p1 {
  background-image: url("../img/bg_002.webp");
}

.p2 {
  background-image: url("../img/bg_003.webp");
}

.uk-tab {
  margin-left: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
}

.uk-tab > * > a {
  padding: 5px 7px;
}

.uk-tab > .uk-active > a {
  border-color: #d70035;
}

.career .card {
  border-radius: 8px;
}

.career .card::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
  border: solid 2px #8f6f2f;
  border-radius: 8px;
}

.career .card .bivider {
  height: 1px;
  background-color: #cac8c6;
  margin: 4px 0 8px;
}

.career .card .subTitle {
  font-size: 1rem;
  color: #605e5a;
}

.sp2 > div p,
.sp3 > div p,
.sp3 > div li {
  text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
}

.note {
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
}

.note > h4 {
  font-size: 1.2rem;
}

.gallery {
  margin: 0 auto 4em;
  background: #aaa;
  width: 100%;
}

.gallery .uk-slideshow-items {
  padding-top: 40px;
}

.gallery .uk-slideshow-nav {
  padding-top: 16px;
  background-color: #e5e3e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery .label {
  position: absolute;
  top: -48px;
  right: 16px;
}

/* ballon */
#copy:before,
#intro:before,
#world:before,
#character:before,
#system:before,
.systemPage:before,
#copy:after,
#intro:after,
#world:after,
#character:after,
#system:after,
.systemPage:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#copy:before,
#intro:before,
#world:before,
#character:before,
#system:before,
.systemPage:before {
  border: solid 24px transparent;
  border-top: solid 24px rgba(0, 0, 0, 0.25);
}

#copy:before,
#intro:after,
#world:after,
#system:after,
.systemPage:after {
  border: solid 24px transparent;
  border-top: solid 24px #f2eeeb;
  margin-top: -1px;
}

#copy:before {
  border-top: solid 24px transparent;
}

#system:after,
.systemPage:after {
  border-top: solid 24px #e5e3e8;
}

#system,
.systemPage {
  background-color: #e5e3e8;
}

#system .link {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  padding: 8px 24px;
  margin: 40px 0;
  border-radius: 8px;
  cursor: pointer;
}

#system .link:hover {
  opacity: 0.6;
}

#about {
  background-image: url("../img/bg_005.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  padding: 80px 8px;
}

@media (min-width: 960px) {
  #about {
    padding: 80px 0;
  }
}

#about > .aboutBox {
  text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
  color: #413c3c;
  padding: 40px;
  background-color: #f5f5f5b3;
  border-radius: 8px;
}

#about .link {
  display: block;
  background: var(--c-primary);
  color: #fff !important;
  padding: 8px 24px;
  margin: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  text-shadow: none;
}

#about .link:hover {
  opacity: 0.6;
}

/* section z-index */
#headerRoot {
  z-index: 40;
}

#gMenu {
  z-index: 30;
}

#top {
  z-index: 28;
}

#copy {
  z-index: 26;
}

#intro {
  z-index: 24;
}

#world {
  z-index: 22;
}

#character {
  z-index: 21;
}

#system {
  z-index: 20;
}

.sp1 {
  z-index: 18;
}

.sp2 {
  z-index: 16;
}

.sp3 {
  z-index: 14;
}

#about {
  z-index: 2;
}

/* footer */
#footerRoot {
  background: #222;
}

#footer {
  margin: 0 auto;
  padding: 2em 0;
  color: #fff;
  font-size: 0.9rem;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/k_003.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  line-height: 2rem;
}

/* scrollm */
p.scrollm {
  margin-bottom: -20px;
  font-family: "Stick", sans-serif;
  width: 200px;
  max-width: inherit;
}

p.scrollm-img {
  margin-bottom: 0;
  font-family: "Stick", sans-serif;
  z-index: 25;
}

#intro p.scrollm,
#world p.scrollm,
#character p.scrollm {
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: "Stick", sans-serif;
  font-size: 1rem;
}

span.scrButton {
  font-size: 26px;
  color: #d70035;
}
