/**
 * Mixin
 */
* {
  box-sizing: border-box;
}

html {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  background-color: #000;
  color: #fff;
  letter-spacing: 0.075em;
  font-size: 1.6rem;
  line-height: 2;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  color: #fff;
  text-decoration: none;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.mtS {
  margin-top: 20px !important;
}

.mtM {
  margin-top: 40px !important;
}

.txt_bold {
  font-weight: bold;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.fsS {
  font-size: 90% !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 980px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
select {
  padding: 0 10px;
  width: 100%;
  height: 42px;
  border: solid 1px #ccc;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1em;
}

.contents {
  margin-top: -140px;
  min-height: 90vh;
}
@media only screen and (max-width: 980px) {
  .contents {
    margin: 0;
  }
}

/* header  */
.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  -webkit-overflow-scrolling: touch;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  height: 80px;
  background-color: #000;
}
@media only screen and (max-width: 980px) {
  .header {
    align-items: center;
    padding-top: 0;
    height: 60px;
  }
}

@media screen and (max-width: 767.98px) {
  .content {
    padding-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  .content {
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px), print {
  .content {
    padding-top: 50px;
  }
}
.header__logo {
  width: 220px;
  height: auto;
}
@media only screen and (max-width: 980px) {
  .header__logo {
    width: 150px;
  }
}

.gnav {
  display: flex;
  flex: 1;
  justify-content: space-between;
  justify-content: flex-end;
}
.gnav ul {
  display: flex;
  justify-content: space-between;
}
.gnav ul li {
  position: relative;
}
.gnav ul li + li {
  margin-left: 10px;
}
.gnav ul a {
  position: relative;
  color: #ede6d8;
  font-weight: 300;
  font-size: 19px;
  font-family: "Roboto", sans-serif;
}
.gnav .gnav__item--lang a {
  pointer-events: none;
}
.gnav .gnav__item--lang a::after {
  position: absolute;
  top: calc(50% - 4px);
  right: -10px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
  content: "";
  transform: translateY(-50%) rotate(-135deg);
}

.gnav li:hover .gnav__lang {
  display: block;
}

.gnav__lang {
  position: absolute;
  top: 100%;
  right: -10px;
  z-index: 1;
  display: none;
  width: 130%;
  background-color: #513863;
}
.gnav__lang button {
  position: relative;
  padding: 0;
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  line-height: 2;
  cursor: pointer;
  appearance: none;
}
.gnav__lang button img {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px;
  height: auto;
  transform: translateY(-50%);
}

@media only screen and (max-width: 980px) {
  .gnav {
    position: fixed;
    top: 75px;
    right: -100%;
    z-index: 1;
    display: block;
    padding: 20px 40px 0;
    width: 70%;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.5s;
  }
  .gnav ul {
    display: block;
  }
  .gnav li {
    margin: 0 !important;
    padding: 20px 0;
  }
  .gnav li + li {
    border-top: 1px solid;
  }
  .nav_on.fixed {
    position: fixed;
    width: 100%;
  }
  .nav_on .gnav {
    right: 0;
  }
  .gnav__lang {
    position: relative;
    right: 0;
    left: 0;
    display: block;
    display: block;
    margin-left: -40px;
    padding: 0 40px;
    width: 100%;
    width: calc(100% + 80px);
    border-top: 1px solid;
    border-bottom: 1px solid;
    background-color: #1e1728;
  }
  .gnav__lang button {
    padding: 20px 0;
    color: #ede6d8;
    text-align: left;
    font-size: 19px;
  }
  .gnav__lang button + button {
    border-top: 1px solid;
  }
  .gnav__item--lang {
    padding: 0 !important;
    border-top: none !important;
  }
  .gnav__item--lang a {
    display: none;
  }
}
.headder__btn {
  display: none;
}
@media only screen and (max-width: 980px) {
  .headder__btn {
    display: block;
    margin-right: 40px;
    margin-left: auto;
    width: 90px;
    height: 30px;
    background: url(../img/common/btn_bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    color: #000;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
  }
}

.en .headder__btn {
  font-size: 10px;
}

.menuBtn {
  display: none;
}
@media only screen and (max-width: 980px) {
  .menuBtn {
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
  }
  .menuBtn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #808080;
  }
  .menuBtn span:nth-child(1) {
    top: 0;
  }
  .menuBtn span:nth-child(2) {
    top: 50%;
  }
  .menuBtn span:nth-child(3) {
    bottom: 0;
  }
}

.footer__logo {
  margin: 0 auto;
  width: 380px;
}
@media only screen and (max-width: 980px) {
  .footer__logo {
    max-width: 170px;
    width: 20%;
  }
}

.footer__txt {
  margin-top: 15px;
  padding: 0 15px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 686px;
  margin: 15px auto 0;
}

.footer__navttl {
  display: none;
}
@media only screen and (max-width: 980px) {
  .footer__navttl {
    display: block;
    text-align: center;
    font-size: 15px;
  }
}

.footer__nav {
  display: flex;
  justify-content: center;
  margin: 90px auto 0;
  padding: 30px 0;
  max-width: 1260px;
  width: 90%;
  border-top: 1px solid #4b4945;
}
@media only screen and (max-width: 980px) {
  .footer__nav {
    flex-wrap: wrap;
    margin: 0 auto;
    padding-top: 0;
    width: 50%;
    border-top: none;
  }
}
.footer__nav li {
  padding: 0 40px;
}
@media only screen and (max-width: 980px) {
  .footer__nav li {
    padding: 0 5px;
  }
}
.footer__nav a {
  color: #ede6d8;
  font-weight: 300;
  font-size: 19px;
}
@media only screen and (max-width: 980px) {
  .footer__nav a {
    font-size: 14px;
  }
}

.footer {
  position: relative;
  z-index: 1;
  padding: 70px 0 120px;
  min-height: 600px;
  border-top: 1px solid #4b4945;
  background-image: url(../img/home/Desktop_Footer.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 980px) {
  .footer {
    display: block;
    padding: 45px 0 30px;
    border: none;
    background-image: url(../img/common/Mobile_Footer.png);
    background-position: top;
  }
}

.footer__bottom {
  display: flex;
  margin: 30px auto 0;
  max-width: 660px;
  width: 90%;
  font-size: 18px;
}
@media only screen and (max-width: 980px) {
  .footer__bottom {
    display: block;
    margin: 0 auto 0;
    text-align: center;
    font-size: 11px;
  }
}
.footer__bottom span {
  font-weight: bold;
}

.footer__sns {
  display: flex;
  margin-left: 50px;
}
@media only screen and (max-width: 980px) {
  .footer__sns {
    display: none;
  }
}
.footer__sns a {
  display: block;
  width: 32px;
}
.footer__sns a + a {
  margin-left: 20px;
}

.footer__sns_sp {
  display: none;
  margin: 80px 0 40px;
}
@media only screen and (max-width: 980px) {
  .footer__sns_sp {
    display: flex;
    justify-content: center;
  }
  .footer__sns_sp a {
    display: block;
    width: 40px;
  }
}

.footer__subnav {
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 980px) {
  .footer__subnav {
    justify-content: center;
  }
}
.footer__subnav a {
  font-size: 18px;
}
@media only screen and (max-width: 980px) {
  .footer__subnav a {
    font-size: 13px;
  }
}
.footer__subnav li + li {
  margin-left: 20px;
}

.footer__logo_sp {
  display: none;
}
@media only screen and (max-width: 980px) {
  .footer__logo_sp {
    display: block;
    margin: 50px auto 0;
    width: 150px;
  }
}

.floating_cta {
  position: fixed;
  top: 65%;
  right: 15px;
  z-index: 9999;
  max-width: 20%;
  width: 352px;
}

.btn_cta {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 230px;
  height: 72px;
  background: url(../img/common/btn_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  color: #000;
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  font-family: "kozuka-mincho-pro", serif;
  line-height: 72px;
}

.ttl_1 {
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 767.98px) {
  .ttl_1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 65px;
  }
  .ttl_1 img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 500px;
    width: 150%;
    transform: translate(-50%, -50%);
  }
}

.home_tw .ttl_1 {
  width: 100%;
}
@media screen and (min-width: 1280px), print {
  .home_tw .ttl_1 {
    width: 80%;
  }
}

.en .jp_dsp {
  display: none !important;
}

.jp .en_dsp {
  display: none !important;
}

.simpleParallax {
  overflow: visible !important;
}

@media only screen and (max-width: 980px) {
  .parallax {
    margin-top: 20%;
    margin-left: 20%;
    width: 65%;
  }
}

/* home */
.mv {
  position: relative;
}

.mv picture img {
  width: 100%;
  height: auto;
}

.mv_btn {
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 980px) {
  .mv_btn {
    position: relative;
    bottom: inherit;
    left: auto;
    margin: 0 auto;
    width: 350px;
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  .mv_btn {
    width: 470px;
    gap: 15px;
  }
}
@media screen and (min-width: 1280px), print {
  .mv_btn {
    width: 500px;
    bottom: 45px;
    bottom: 3.515625vw;
  }
}
@media screen and (min-width: 1441px) {
  .mv_btn {
    bottom: 75px;
    bottom: 5.2083333333vw;
  }
}
@media screen and (min-width: 1920px) {
  .mv_btn {
    bottom: 150px;
    bottom: 7.8125vw;
  }
}
@media screen and (min-width: 981px) {
  .mv_btn {
    width: 500px;
    bottom: 10px;
    bottom: 1.0193679918vw;
  }
}
.mv_btn__link {
  display: inline-block;
}
.mv_btn__img {
  max-width: inherit;
  width: auto;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .mv_btn__img {
    height: 70px;
  }
}
@media screen and (min-width: 981px) {
  .mv_btn__img {
    height: 80px;
  }
}

.jp .mv_btn {
  display: flex;
  width: 324px;
}
@media screen and (min-width: 768px) {
  .jp .mv_btn {
    width: 434px;
  }
}
.jp .mv_btn__link {
  position: relative;
}
.jp .mv_btn__link:nth-child(1) .mv_btn__img {
  width: 148px;
  height: 49px;
}
@media screen and (min-width: 768px) {
  .jp .mv_btn__link:nth-child(1) .mv_btn__img {
    width: 200px;
    height: 66px;
  }
}
.jp .mv_btn__link:nth-child(2) .mv_btn__img {
  width: 165px;
  height: 64px;
  position: absolute;
  top: -7px;
}
@media screen and (min-width: 768px) {
  .jp .mv_btn__link:nth-child(2) .mv_btn__img {
    width: 220px;
    height: 85px;
    top: -10px;
  }
}

.mv__bottom {
  padding: 10px 0;
  background-image: url(../img/home/mv_bg_sp.png);
  background-position: bottom;
  background-size: auto 100%;
}

.home_world {
  position: relative;
  margin: 0 auto;
  padding: 100px 0 80px;
  padding-right: 47.5%;
  padding-left: 9.1145833333%;
  min-height: 600px;
  width: 100%;
  background-image: url(../img/home/home_world.png);
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  color: #ede6d8;
  text-align: center;
  font-family: "kozuka-mincho-pro", serif;
}
@media only screen and (max-width: 980px) {
  .home_world {
    padding: 20px 0 0;
    padding-right: 5%;
    padding-left: 5%;
    min-width: auto;
    background-image: url(../img/home/home_world_sp.png);
  }
}
@media only screen and (max-width: 980px) {
  .home_world h2 {
    margin: 0 auto;
    width: 60%;
  }
}
.home_world p {
  word-break: keep-all;
}

.Desktop_RoyalKV__kv {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54.1666666667%;
}
@media only screen and (max-width: 980px) {
  .Desktop_RoyalKV__kv {
    position: relative;
    margin-left: 5%;
    width: 100%;
  }
}
.Desktop_RoyalKV__kv img {
  width: 100%;
}

.w1 {
  margin-top: 100px;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.4583333333vw;
}
@media only screen and (max-width: 980px) {
  .w1 {
    margin-top: 50px;
    font-size: 14px;
  }
}

.w2 {
  margin-top: 70px;
  font-weight: 900;
  font-size: 43px;
  font-size: 2.2395833333vw;
}
@media only screen and (max-width: 980px) {
  .w2 {
    margin-top: 30px;
    font-size: 14px;
  }
}

.w3 {
  margin-top: 70px;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.4583333333vw;
}
@media only screen and (max-width: 980px) {
  .w3 {
    margin-top: 30px;
    font-size: 14px;
  }
}

.w4 {
  margin-top: 70px;
  font-weight: 900;
  font-size: 37px;
  font-size: 1.9270833333vw;
}
@media only screen and (max-width: 980px) {
  .w4 {
    margin-top: 30px;
    font-size: 16px;
  }
}

.home_world::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: block;
  width: 100%;
  height: 140px;
  background: rgb(27, 17, 27);
  background: linear-gradient(0deg, rgb(27, 17, 27) 0%, rgba(27, 17, 27, 0) 100%);
  content: "";
  opacity: 1 !important;
}

.home_twWrapper {
  width: 100%;
  height: 100%;
  background: rgb(27, 17, 27);
}

.home_tw {
  position: relative;
  padding: 60px 0 120px;
  background-color: #0d090e;
  background-image: url(../img/home/Desktop_HomeTwitterBG.png);
  background-position: 0 352px;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
@media only screen and (max-width: 980px) {
  .home_tw {
    padding: 40px 0 60px;
    background-image: url(../img/home/Mobile_HomeTwitterBG.png);
    background-position: top;
    background-size: cover;
  }
}
@media screen and (max-width: 767.98px) {
  .home_tw::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
  }
}
@media screen and (max-width: 767.98px) {
  .home_tw .chara {
    display: none;
  }
}
@media screen and (max-width: 1279.8px) {
  .home_tw .chara {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .home_tw .chara {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 450px;
    transform: translate(-150%, -20%);
  }
}

.home_tw__inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1284px;
  width: 90%;
}
.home_tw__inner .btn_cta {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 50px;
}

.home_tw__box {
  margin: 0 auto;
  max-width: 650px;
}

.home_tw__boxinner {
  overflow-y: scroll;
  height: 480px;
}

.home_tw__txt {
  margin-top: 40px;
  font-size: 36px;
  font-family: "kozuka-mincho-pro", serif;
}
@media only screen and (max-width: 980px) {
  .home_tw__txt {
    font-size: 20px;
  }
}

.home_tw__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 20px;
}
@media only screen and (max-width: 980px) {
  .home_tw__header {
    font-size: 12px;
  }
}
.home_tw__header img {
  margin-bottom: 7px;
  width: 30px;
}
@media screen and (max-width: 767.98px) {
  .home_tw__header img {
    margin-bottom: 0;
    width: 24px;
  }
}

.floating_cta--home {
  opacity: 0;
  transition: 0.6s;
}

.floating_cta--home.on {
  opacity: 1;
}

.is-scloll {
  opacity: 0;
  transition: 1s;
}

.sclollIn {
  opacity: 1;
}

.home_world p.is-scloll {
  transform: translateX(30px);
}

.home_world p.is-scloll.sclollIn {
  transform: translateX(0);
}

.btn_cta.is-scloll,
.home_tw__box.is-scloll {
  transform: translateY(30px);
}

.btn_cta.is-scloll.sclollIn,
.home_tw__box.is-scloll.sclollIn {
  transform: translateX(0);
}

.home {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.loading {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #4c3a63;
  font-size: 12px;
}

.loading__txt {
  margin-top: 10px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  animation: loading_txtcolor 0.6s forwards;
}

.loading__txt span {
  display: inline-block;
  margin: 0 -0.05em;
  animation: loading_txt 1.2s infinite alternate;
  animation-delay: 0.8s;
}

.loading__txt span:nth-child(2) {
  animation-delay: 0.9s;
}

.loading__txt span:nth-child(3) {
  animation-delay: 1s;
}

.loading__txt span:nth-child(4) {
  animation-delay: 1.1s;
}

.loading__txt span:nth-child(5) {
  animation-delay: 1.2s;
}

.loading__txt span:nth-child(6) {
  animation-delay: 1.3s;
}

.loading__txt span:nth-child(7) {
  animation-delay: 1.4s;
}

.loading__txt span:nth-child(8) {
  animation-delay: 1.5s;
}

@keyframes loading_txt {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading_txtcolor {
  100% {
    color: #4c3a63;
  }
}
.story_content {
  position: relative;
  padding: 30px 0 60px;
  background-image: url(../img/story/Story_BG_01.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 980px) {
  .story_content {
    background-image: url(../img/story/Story_Mobile_BG_01_02.png);
  }
}
@media only screen and (max-width: 980px) {
  .story_content .ttl_1 {
    height: 75px;
  }
}
.story_content h2 {
  margin-bottom: 80px;
}

.story__kv {
  position: absolute;
  right: 0;
  bottom: 30vh;
  width: 36.4583333333%;
}
@media only screen and (max-width: 980px) {
  .story__kv {
    top: 150px;
    right: -30%;
    bottom: auto;
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .story__kv {
    top: 120px;
    right: -20%;
    bottom: auto;
    width: 70%;
  }
}
@media screen and (min-width: 1280px), print {
  .story__kv {
    top: 160px;
    right: 0;
    width: 40%;
  }
}
@media screen and (min-width: 1441px) {
  .story__kv {
    top: 220px;
    right: 0;
    width: 35%;
  }
}
@media screen and (min-width: 1920px) {
  .story__kv {
    top: 300px;
    right: 0;
    width: 35%;
  }
}
.story__kv::after {
  position: absolute;
  right: 0;
  bottom: -20%;
  width: 160vw;
  height: 140%;
  background-image: url(../img/story/bg.png);
  background-position: bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
  content: "";
}
@media only screen and (max-width: 980px) {
  .story__kv::after {
    background-image: url(../img/story/bg_sp.png);
  }
}

.story_box {
  display: flex;
}

.jp .story_txt p {
  white-space: nowrap;
}

.story_txt {
  z-index: 1;
  margin-left: 18.75%;
  width: 30.5208333333%;
}
@media only screen and (max-width: 980px) {
  .story_txt {
    z-index: 1;
    margin-left: 5%;
    text-shadow: 0 0 2px #000;
    width: initial;
  }
}
.story_txt .t1 {
  font-weight: 700;
  font-size: 46px;
  font-size: 2.3958333333vw;
  font-family: "kozuka-mincho-pro", serif;
}
@media only screen and (max-width: 980px) {
  .story_txt .t1 {
    margin-top: 30px;
    font-size: 22px;
    width: 70%;
  }
}
.story_txt .t2 {
  margin-top: 20px;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.1458333333vw;
  font-family: "kozuka-mincho-pro", serif;
}
@media only screen and (max-width: 980px) {
  .story_txt .t2 {
    font-size: 14px;
    width: 70%;
  }
}
.story_txt .t3 {
  margin-top: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.1458333333vw;
  font-family: "kozuka-mincho-pro", serif;
  text-align: center;
}
@media only screen and (max-width: 980px) {
  .story_txt .t3 {
    font-size: 14px;
  }
}
.story_txt .t4 {
  text-align: center;
  font-weight: 700;
  font-size: 42px;
  font-size: 2.1875vw;
  font-family: "kozuka-mincho-pro", serif;
  text-align: center;
}
@media only screen and (max-width: 980px) {
  .story_txt .t4 {
    font-size: 22px;
  }
}
.story_txt .t5 {
  margin-top: 40px;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.1458333333vw;
  font-family: "kozuka-mincho-pro", serif;
  text-align: left;
}
@media only screen and (max-width: 980px) {
  .story_txt .t5 {
    font-size: 14px;
    text-align: center;
  }
}
.story_txt .t6 {
  margin-top: 20px;
  font-weight: 900;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-family: "kozuka-mincho-pro", serif;
  text-align: left;
}
@media only screen and (max-width: 980px) {
  .story_txt .t6 {
    font-size: 17px;
    text-align: center;
  }
}

.en .story_txt .t1,
.en .story_txt .t6 {
  display: none;
}

.story_logo {
  margin-top: 60px;
  width: 468px;
}
@media only screen and (max-width: 980px) {
  .story_logo {
    display: none;
  }
}

.chara_content {
  padding: 96px 0 158px;
}
@media only screen and (max-width: 980px) {
  .chara_content {
    padding: 30px 0 158px;
  }
}
@media only screen and (max-width: 980px) {
  .chara_content .ttl_1 img {
    width: 230%;
  }
}

.chara__inner {
  margin: 0 auto;
  max-width: 1193px;
  width: 90%;
}

.chara__link_all {
  position: relative;
  z-index: 100;
  display: block;
  margin: 25px 0 30px;
  margin-left: -20px;
  width: 197px;
}
.chara__link_all img {
  max-width: 180px;
}
@media screen and (max-width: 767.98px) {
  .chara__link_all img {
    max-width: 130px;
  }
}

.chara__box {
  position: relative;
  padding: 30px 60px;
  width: 100%;
  border: 2px solid #ffe4c9;
  background-color: #000;
  background-image: url(../img/character/Chara_Card_Base.png);
  background-position: top 8px left 8px;
  background-size: calc(100% - 16px) auto;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 980px) {
  .chara__box {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    height: auto;
    border: 1px solid #ffe4c9;
    background-image: url(../img/character/frame_sp.png);
    background-position: top 8px left 8px;
    background-size: calc(100% - 16px) auto;
  }
}

.chara__txt {
  position: relative;
  z-index: 1;
  width: 37.7200335289%;
}
@media only screen and (max-width: 980px) {
  .chara__txt {
    margin-top: -340px;
    padding-bottom: 40px;
    width: 100%;
  }
  .chara__txt p {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
}

.chara__Vbtn {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-left: auto;
  width: 160px;
}
@media only screen and (max-width: 980px) {
  .chara__Vbtn {
    margin-top: 10px;
    width: 100px;
  }
}

.on.chara__Vbtn::before {
  position: absolute;
  top: -100%;
  left: 50%;
  display: block;
  width: 218.94px;
  height: 49.59px;
  background-image: url(../img/character/cs.png);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  transform: translateX(-50%);
}
@media only screen and (max-width: 980px) {
  .on.chara__Vbtn::before {
    width: 148.235px;
    height: 31.235px;
  }
}

.chara__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75.0209555742%;
  opacity: 0;
  animation: popup 0.6s 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
@media screen and (max-width: 980px) {
  .chara__img {
    position: relative;
    width: 100%;
  }
  .chara__img img {
    margin-top: -30px;
    width: 100%;
  }
}
.chara__imgover {
  position: absolute;
  right: 25px;
  bottom: 330px;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes smooth {
  0% {
    opacity: 0;
  }
  100% {
    clip-path: inset(0);
  }
}
.smooth {
  transition-property: clip-path;
  animation: smooth 1.4s 1s cubic-bezier(0.37, 0, 0.63, 1) forwards;
  clip-path: inset(0 100% 0 0);
}

.chara__lead {
  position: absolute;
  right: 70px;
  bottom: 30px;
  font-weight: 700;
  font-size: 41px;
  font-family: "kozuka-mincho-pro", serif;
  line-height: 1.6;
}
@media only screen and (max-width: 980px) {
  .chara__lead {
    position: relative;
    right: inherit;
    bottom: inherit;
    margin-top: 25px;
    font-size: 27px;
  }
}
.chara__lead .chara__lead-b {
  font-size: 54px;
}
@media only screen and (max-width: 980px) {
  .chara__lead .chara__lead-b {
    font-size: 38px;
  }
}
.chara__lead .chara__lead-s {
  font-size: 43px;
}
@media only screen and (max-width: 980px) {
  .chara__lead .chara__lead-s {
    font-size: 25px;
  }
}

.chara__emb {
  margin: 0 auto;
  width: 166px;
}
@media only screen and (max-width: 980px) {
  .chara__emb {
    width: 80px;
  }
}

.chara__name {
  border-bottom: 1px solid #b59f5c;
  text-align: center;
  font-weight: 700;
  font-size: 43px;
  font-family: "kozuka-mincho-pro", serif;
}
@media only screen and (max-width: 980px) {
  .chara__name {
    position: relative;
    width: 100% !important;
    text-shadow: 0 0 5px #555;
    font-size: 9.5vw;
  }
}

.chara__en {
  margin-top: 10px;
  color: #abae8f;
  text-align: center;
  font-weight: 300;
  font-size: 25px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}

.chara__cv {
  margin-top: 10px;
  text-align: center;
  font-weight: 300;
  font-size: 20px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}

.chara__dsp {
  margin-top: 45px;
  font-weight: 700;
  font-size: 15px;
  font-family: "kozuka-mincho-pro", serif;
}
@media only screen and (max-width: 980px) {
  .chara__dsp {
    margin-top: 20px;
  }
  .chara__dsp br {
    display: none;
  }
}

.chara__data {
  margin-top: 30px;
  color: #abae8f;
  font-size: 15px;
}

.chara__link a {
  position: absolute;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 69px;
}
@media only screen and (max-width: 980px) {
  .chara__link a {
    top: auto;
    bottom: -20px;
    display: block;
    width: 40px;
    height: 40px;
  }
  .chara__link a img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.chara__link a:hover {
  opacity: 1;
}
.chara__link .chara__linkPrev {
  left: -34.5px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 980px) {
  .chara__link .chara__linkPrev {
    left: -20px;
    transform: translateY(0);
  }
}
.chara__link .chara__linkNext {
  right: -34.5px;
  transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (max-width: 980px) {
  .chara__link .chara__linkNext {
    right: -20px;
    transform: translateY(0) rotate(-180deg);
  }
}

@media only screen and (max-width: 980px) {
  .en .chara__lead br {
    display: none;
  }
}

.other__ttl {
  margin: 120px auto 70px;
}
@media only screen and (max-width: 980px) {
  .other__ttl {
    margin: 40px auto;
  }
}

.other__subttl {
  margin-bottom: 20px;
  color: #ede6d8;
  font-weight: normal;
  font-size: 26px;
  font-family: "kozuka-mincho-pro", serif;
}
@media screen and (max-width: 767.98px) {
  .other__subttl {
    font-size: 12px;
  }
}

.other__chara {
  display: flex;
  margin-bottom: 30px;
}
.other__chara a {
  width: 200px;
}
@media only screen and (max-width: 980px) {
  .other__chara a {
    width: 25%;
  }
}
.other__chara a + a {
  margin-left: 25px;
}
@media only screen and (max-width: 980px) {
  .other__chara a + a {
    margin-left: 0;
  }
}

.other__dorm {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .other__dorm {
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.other__dorm a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 230px;
}
@media only screen and (max-width: 980px) {
  .other__dorm a {
    width: 25%;
    height: auto;
  }
  .other__dorm a img {
    max-height: 100px;
  }
}
.other__dorm img {
  max-height: 100%;
}

.characters {
  position: relative;
  padding-bottom: 290px;
  background-color: #1b1421;
  background-image: url(../img/characters/Chara_Main_BGBottom.png), url(../img/characters/bg_top.png);
  background-position: bottom, top;
  background-size: 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat;
}
@media screen and (max-width: 767.98px) {
  .characters::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
  }
}
.characters h2 {
  margin: 20px auto 0;
  width: 1284px;
}
@media only screen and (max-width: 980px) {
  .characters h2 {
    width: 100%;
    height: 100px;
  }
}

.dorm {
  margin-top: 80px;
}
.dorm h3 {
  margin: 0 auto;
  width: 600px;
}
@media only screen and (max-width: 980px) {
  .dorm h3 {
    margin-left: -10%;
    width: 120%;
  }
}

.dorm_1 {
  margin-top: 60px;
}

.dorm__list {
  display: flex;
  justify-content: center;
  margin: 40px auto 0;
  width: 1000px;
}
@media only screen and (max-width: 980px) {
  .dorm__list {
    width: 90%;
  }
}
.dorm__list a + a {
  margin-left: 25px;
}
.dorm__list a {
  max-width: 260px;
}
@media only screen and (max-width: 980px) {
  .dorm__list a {
    margin: 0 1% !important;
    width: 30%;
  }
}

.dorm_1 .dorm__list {
  width: 1100px;
}
@media only screen and (max-width: 980px) {
  .dorm_1 .dorm__list {
    flex-wrap: wrap;
    padding-top: 20%;
    width: 90%;
  }
}
@media only screen and (max-width: 980px) {
  .dorm_1 .dorm__list a:nth-child(1) {
    order: 2;
    margin-top: calc(-20% - 10px) !important;
  }
  .dorm_1 .dorm__list a:nth-child(2) {
    order: 1;
  }
  .dorm_1 .dorm__list a:nth-child(3) {
    order: 3;
  }
  .dorm_1 .dorm__list a:nth-child(4) {
    order: 4;
    margin-top: -20% !important;
  }
}
@media only screen and (max-width: 980px) {
  .dorm_1 .dorm__list a {
    margin: 0 1%;
    width: 30%;
  }
}

.dorm_8 .dorm__list {
  width: 1100px;
}
@media only screen and (max-width: 980px) {
  .dorm_8 .dorm__list {
    flex-wrap: wrap;
    padding-top: 20%;
    width: 90%;
  }
}
@media only screen and (max-width: 980px) {
  .dorm_8 .dorm__list a:nth-child(1) {
    order: 2;
    margin-top: calc(-20% - 10px) !important;
  }
  .dorm_8 .dorm__list a:nth-child(2) {
    order: 1;
  }
  .dorm_8 .dorm__list a:nth-child(3) {
    order: 3;
  }
  .dorm_8 .dorm__list a:nth-child(4) {
    order: 4;
    margin-top: -20% !important;
  }
}
@media only screen and (max-width: 980px) {
  .dorm_8 .dorm__list a {
    margin: 0 1%;
    width: 30%;
  }
}

.dorm_cs a {
  pointer-events: none;
}

.register {
  position: relative;
  padding-bottom: 120px;
  background-color: #1b1421;
  background-image: url(../img/characters/bg_top.png);
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
  .register {
    padding-top: 60px;
  }
  .register::after:not(.complete) {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
  }
}

.register__slider {
  margin-top: 70px;
}
@media only screen and (max-width: 980px) {
  .register__slider {
    margin-top: 0;
  }
}
.register__slider .slick-list img {
  width: 100%;
  height: auto;
}
.register__slider .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 980px) {
  .register__slider .slide-arrow {
    top: -1px;
    transform: translate(0);
  }
}
.register__slider .prev-arrow {
  left: calc(20% - 22px);
  z-index: 1;
}
@media only screen and (max-width: 980px) {
  .register__slider .prev-arrow {
    left: 0;
    width: 34px;
  }
}
.register__slider .next-arrow {
  right: calc(20% - 22px);
}
@media only screen and (max-width: 980px) {
  .register__slider .next-arrow {
    top: -1.5px;
    left: 34px;
    width: 34px;
  }
}
.register__slider .slick-slide {
  margin-right: 80px;
  margin-left: 80px;
}
@media only screen and (max-width: 980px) {
  .register__slider .slick-slide {
    margin: 0;
  }
}

.register_content {
  margin-top: 35px;
  color: #ede6d8;
  text-align: center;
}
.register_content h2 {
  font-size: 32px;
}
@media only screen and (max-width: 980px) {
  .register_content h2 {
    font-size: 20px;
  }
}
.register_content p {
  margin: 0 auto;
  max-width: 1060px;
  font-size: 20px;
}
@media only screen and (max-width: 980px) {
  .register_content p {
    font-size: 15px;
  }
}

.country-name {
  color: initial !important;
}

.register_box {
  margin: 70px auto;
  padding: 50px 80px;
  max-width: 840px;
  width: 90%;
  background-color: #fff;
  color: #000;
}
@media only screen and (max-width: 980px) {
  .register_box {
    margin: 30px auto;
    padding: 20px;
  }
}
.register_box .register_box__pp {
  font-size: 16px;
}
.register_box__inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 1280px), print {
  .register_box__inner {
    flex-wrap: wrap;
  }
}
.register_box__inner p {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .register_box__ttl-group {
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 768px) {
  .register_box__ttl-group {
    width: calc(100% - 80px);
    max-width: 284px;
    max-width: 36.9791666667vw;
  }
}
@media screen and (min-width: 980.8px) {
  .register_box__ttl-group {
    width: calc(100% - 180px);
    max-width: 448px;
  }
}
.register_box__ttl {
  font-size: 42px;
  font-family: "adorn-serif", sans-serif;
  text-align: left;
}
@media only screen and (max-width: 980px) {
  .register_box__ttl {
    font-size: 17px;
  }
}
.register_box__sub-ttl {
  font-weight: bold;
  font-size: 25px;
  text-align: left;
}
@media only screen and (max-width: 980px) {
  .register_box__sub-ttl {
    font-size: 10px;
  }
}
.register_box__read {
  font-size: 17px !important;
  text-align: left;
  line-height: 1.6;
}
@media only screen and (max-width: 980px) {
  .register_box__read {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 980px) {
  .register_box__img {
    width: 70px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 980.8px) {
  .register_box__img {
    width: 160px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1280px), print {
  .register_box__img {
    width: 160px;
    margin-right: 20px;
  }
}
.register_box__app {
  flex: 1;
}
@media only screen and (max-width: 980px) {
  .register_box__app {
    padding-left: 10px;
  }
}
.register_box__txt {
  font-size: 15px !important;
  margin-top: 5px !important;
}
.register_box__pp {
  margin-top: 30px !important;
}
@media only screen and (max-width: 980px) {
  .register_box__pp {
    margin-top: 20px !important;
    font-size: 12px !important;
  }
}
.register_box__pp a {
  color: blue;
}

.register_tel h3 {
  margin-top: 30px;
  font-size: 21px;
}
@media screen and (max-width: 767.98px) {
  .register_tel .btn_wrap > p {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.register_tel .tel__wrap {
  position: relative;
}
.register_tel .wpcf7-spinner {
  position: absolute;
}

@media only screen and (max-width: 980px) {
  .register_tel {
    margin: 0 auto;
    text-align: center;
  }
}
.register_tel__ttl {
  font-size: 20px;
}
.register_tel input[type=tel],
.register_tel input[type=text],
.register_tel input[type=button],
.register_tel input[type=email],
.register_tel input[type=submit],
.register_tel textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.register_tel input[type=tel],
.register_tel input[type=text] {
  padding: 0 5px;
  width: 180px;
  height: 40px;
  border: none;
  border-bottom: 1px solid #777771;
  background-color: #dddddb;
  line-height: 40px;
}
.register_tel .icon {
  display: block;
  width: 38px;
  height: 40px;
  border-bottom: 1px solid #777771;
  background-color: #f1f1f1;
  background-image: url(../img/register/JP-flag.png);
  background-position: center;
  background-repeat: no-repeat;
}
.register_tel .wpcf7-not-valid-tip {
  display: none !important;
}
.register_tel .tel__wrap p {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.register_tel .tel__wrap + div {
  margin-top: 10px;
  color: #7f7f7f;
  font-size: 12px;
}
.register_tel input[type=submit] {
  margin-top: 20px;
  min-width: 100px;
  height: 50px;
  border-radius: 3px;
  background-color: #00b050;
  color: #fff;
  font-size: 14px;
  line-height: 50px;
}
@media only screen and (max-width: 980px) {
  .register_tel input[type=submit] {
    margin-left: 0;
  }
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0 0 !important;
  padding: 0 !important;
  border: none !important;
  font-size: 12px;
}

.content__txt {
  width: 90%;
}

.en .tel__wrap .icon {
  display: none;
}
.en .register_tel select,
.en .register_tel input {
  width: 240px;
}

.complete {
  padding-bottom: 10px;
}
.complete .register_box__inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}

.register_comp .sns_link {
  display: inline-block;
  color: inherit;
  text-align: center;
  text-decoration: underline;
  font-weight: bold;
  font-size: 18px;
}

.mw_wp_form_complete p {
  font-size: 12px;
}

.news_content {
  position: relative;
  padding: 60px 0 120px;
  background-color: #0d090e;
  background-image: url(../img/home/Desktop_HomeTwitterBG.png);
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .news_content::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
  }
}
@media only screen and (max-width: 1550px) {
  .news_content {
    padding: 40px 0 60px;
    background-image: url(../img/home/Mobile_HomeTwitterBG.png);
    background-position: top;
    background-size: cover;
  }
}
@media screen and (max-width: 767.98px) {
  .news_content .ttl_1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 65px;
  }
}
@media screen and (max-width: 767.98px) {
  .news_content .ttl_1 img {
    max-width: 500px;
    width: 150%;
    transform: translate(-50%, -75%);
  }
}

.home_tw__box {
  position: relative;
}

.tw_loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.tw_loading__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top: 4px solid #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.privacypolicy {
  position: relative;
  margin: 0 auto;
  padding: 120px 0 100px;
  max-width: 800px;
  width: 90%;
}
@media screen and (max-width: 767.98px) {
  .privacypolicy::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
  }
}

.privacypolicy__txtBox {
  margin-top: 40px;
  font-size: 1.4rem;
}
.privacypolicy__txtBox h3 {
  margin: 30px 0 5px;
  font-weight: bold;
  font-size: 120%;
}
.privacypolicy__txtBox h4 {
  display: inline-block;
  margin: 10px 0 5px;
  padding: 0 0 5px;
  border-bottom: 1px solid;
  font-weight: bold;
}
.privacypolicy__txtBox ul {
  padding-left: 0;
  padding-left: 1em;
  list-style: disc;
}
.privacypolicy__txtBox ul + h4,
.privacypolicy__txtBox p + h4 {
  margin-top: 30px !important;
}
.privacypolicy__txtBox a {
  color: #4c3a63;
  text-decoration: underline;
  word-break: break-all;
}
.privacypolicy__txtBox .box1 {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #4b4945;
}

.pc-area {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-area {
    display: block;
  }
}

.sp-area {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-area {
    display: none;
  }
}

.sp-area--ib {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp-area--ib {
    display: none;
  }
}

.new-line--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .new-line--sp {
    display: none;
  }
}
.new-line--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .new-line--pc {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
