@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  line-height: 1.75;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  position: relative;
  color: #fff;
}
@media screen and (max-width: 840px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  width: 100%;
  height: auto;
}

p {
  text-align: justify;
  margin: 0 auto;
  position: relative;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 95%;
}

.df_row {
  display: flex;
  flex-flow: row wrap;
}

.df_col {
  display: flex;
  flex-flow: column;
}

.detail {
  font-size: 1rem;
  text-align: right;
}

main {
  overflow-x: hidden;
}

section {
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  section {
    padding: 50px 0;
  }
}

/*-------------------------*/
body {
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #fff;
}
body.no-scroll {
  overflow: hidden;
}

.yt {
  height: -moz-fit-content;
  height: fit-content;
}
.yt .youtube_link {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  width: 100%;
}
.yt .youtube_link iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 840px) {
  .yt {
    width: 80%;
    margin: 0 auto;
  }
}

.thumnail,
.ph {
  background-color: #ddd;
}

header,
footer {
  background-color: #021a47;
}

header {
  padding: 50px;
}
@media screen and (max-width: 840px) {
  header {
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 0;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
}

.menu {
  display: flex;
  flex-flow: row wrap;
  max-width: 95%;
  gap: 10px 0px;
  justify-content: center;
}
.menu a {
  font-size: 2rem;
  width: 160px;
  aspect-ratio: 1/0.3;
  background-image: url(images/menu_off.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.menu a:hover {
  background-image: url(images/menu_on.webp);
}
@media screen and (max-width: 600px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: initial;
    background-color: rgba(2, 26, 71, 0.8);
    display: flex;
    flex-flow: column;
    z-index: 101;
    height: 100vh;
    justify-content: space-evenly;
    opacity: 0;
    pointer-events: none;
    padding: 30px 0;
    transition: all 0.3s ease;
  }
  .menu a {
    background-image: none;
    width: 100%;
    padding: 5px;
    aspect-ratio: initial;
  }
  .menu a:hover {
    background-image: none;
    background-color: #3dbbf3;
  }
  .menu.open {
    opacity: 1;
    pointer-events: initial;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 600px) {
  .hamburger {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 70px;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
    z-index: 102;
  }
  .hamburger span {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
  }
}
.hamburger.open span:nth-of-type(1) {
  transform: translateY(30px) rotate(45deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
  transform: rotate(-45deg);
}

#mv {
  padding: 0;
  background-color: rgba(2, 26, 71, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#mv .inner {
  max-width: 1800px;
  width: 100%;
  height: auto;
}
#mv .left,
#mv .right {
  width: 50%;
}
@media screen and (max-width: 600px) {
  #mv .left,
  #mv .right {
    width: 100%;
  }
}
#mv .left {
  background-color: #021a47;
}
#mv .left img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: right;
     object-position: right;
}
#mv .right {
  background-image: url(images/right.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
#mv .main_logo {
  max-width: 85%;
}
@media screen and (max-width: 600px) {
  #mv .main_logo {
    display: none;
  }
}
#mv .txt_shugyou {
  width: 40%;
  max-width: 95%;
}
#mv .yt_cont {
  width: 90%;
  background-image: url(images/yt_cont.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  aspect-ratio: 1/0.681;
  background-position: center;
}
#mv .yt_cont .yt {
  width: 65%;
  position: absolute;
  top: 56.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
}
#mv .yt_title {
  font-size: 2rem;
  width: 90%;
  background-color: rgba(27, 113, 245, 0.7);
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 10%;
}
#mv .yt_btn {
  width: 188px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(30%, 30%);
}
@media screen and (max-width: 840px) {
  #mv .yt_btn {
    width: 148px;
    bottom: 20px;
  }
}
#mv .loadshow_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #3dbbf3, #3a8cf7, #d5559a);
  padding: 0 5%;
  width: 100%;
}
#mv .loadshow_wrap .loadshow {
  max-width: 50%;
}

.fix_back {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url(images/fix_back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}

#info .link_btn {
  margin-bottom: 100px;
}
#info .store {
  max-width: 800px;
  gap: 30px;
  margin: 100px auto;
}
#info .store .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 600px) {
  #info .store {
    margin: 20px auto;
  }
  #info .store .item {
    width: 100%;
  }
}
#info .trailer {
  width: 100%;
  max-width: 984px;
  aspect-ratio: 1/0.6;
  background-image: url(images/trailer.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  background-position: center;
  margin: 0 auto;
}
#info .trailer .yt {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
}

h2 {
  font-size: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  margin: 0 auto;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  padding: 0 30px;
  text-align: center;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.75));
}
h2 rt {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
h2 .en {
  font-family: "hansson-stencil-mn", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ff36b3;
  font-size: 2.5rem;
  display: block;
}
h2::before, h2::after {
  content: "";
  background-image: url(images/h2_arrow.webp);
  width: 70px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 15px;
}
h2::before {
  left: -70px;
  transform: rotate(180deg);
}
h2::after {
  right: -70px;
}
h2.ruby::before, h2.ruby::after {
  top: 30px;
}
h2.small {
  font-size: 3.8rem;
}
h2.small::before, h2.small::after {
  top: 7px;
}
@media screen and (max-width: 600px) {
  h2.small {
    font-size: 2rem;
    padding: 0 15px;
  }
  h2.small::before, h2.small::after {
    top: 2px;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 2.5rem;
  }
  h2 rt {
    font-size: 1rem;
  }
  h2 .en {
    font-size: 1.5rem;
  }
  h2::before, h2::after {
    width: 40px;
    height: 20px;
    top: 4px;
  }
  h2::before {
    left: -40px;
  }
  h2::after {
    right: -40px;
  }
  h2.ruby::before, h2.ruby::after {
    top: 18px;
  }
}

#news,
#story,
#staff,
#goods {
  background-color: #fff;
  background-image: url(images/dot.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#news h2,
#story h2,
#staff h2,
#goods h2 {
  color: #000;
}

#about,
#character,
#song {
  background-color: rgba(2, 26, 71, 0.5);
}

#news .thumnail {
  aspect-ratio: 1/0.75;
  background-color: #79d5fc;
}
#news .thumnail img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
#news .date {
  color: #1b71f5;
  font-size: 1.2rem;
}
#news .title {
  font-size: 2rem;
  color: #000;
}
@media screen and (max-width: 600px) {
  #news .title {
    font-size: 1.5rem;
  }
}

.link_btn {
  height: 71px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 0;
  display: block;
}
.link_btn img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 600px) {
  .link_btn {
    width: 100%;
    height: auto;
    max-width: 220px;
  }
  .link_btn img {
    width: 100%;
    height: auto;
  }
}

#about p {
  max-width: 800px;
}
#about p strong {
  font-size: 2.4rem;
}
#about p strong.txt_header {
  display: block;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #about p strong {
    font-size: 2.2rem;
  }
}
#about p span {
  font-size: 1.4rem;
}

#story p {
  color: #000;
  max-width: 800px;
}

.sceneSwiper .item {
  aspect-ratio: 1/0.419;
}
.sceneSwiper .item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}

.chara_inner {
  display: flex;
  flex-flow: row wrap;
  gap: 50px;
  margin: 0 auto;
  margin-bottom: 70px;
}
.chara_inner .item {
  width: calc((100% - 50px) / 2);
  background-image: url(images/chara_back.webp);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1.76;
  display: flex;
  flex-flow: column;
}
.chara_inner .item:hover .chara {
  animation: chara 0.5s forwards ease;
}
@keyframes chara {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: translateY(-30px);
  }
}
.chara_inner .chara {
  height: 73%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5%;
}
.chara_inner .chara img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
}
.chara_inner .name {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #3dbbf3, #3a8cf7, #d5559a);
  padding: 3px 5%;
  font-size: 4.8rem;
  width: 100%;
}
.chara_inner .name rt {
  font-size: 1.2rem;
}
@media screen and (max-width: 840px) {
  .chara_inner .name {
    font-size: 3.2rem;
  }
}
.chara_inner .cv {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 5px;
}
.chara_inner .cv rt {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .chara_inner {
    justify-content: center;
  }
  .chara_inner .item {
    width: 80%;
  }
  .chara_inner .name {
    font-size: 2.5rem;
  }
  .chara_inner .cv {
    font-size: 1.5rem;
  }
  .chara_inner .cv rt {
    font-size: 0.8rem;
  }
}
.chara_inner.small {
  max-width: 800px;
  gap: 30px;
}
@media screen and (max-width: 840px) {
  .chara_inner.small {
    max-width: 600px;
  }
}
.chara_inner.small .item {
  width: calc((100% - 30px) / 2);
}
.chara_inner.small .name {
  font-size: 3.6rem;
}
.chara_inner.small .chara {
  padding: 15%;
}
.chara_inner.small .cv {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .chara_inner.small {
    gap: 10px;
  }
  .chara_inner.small .item {
    width: calc((100% - 10px) / 2);
  }
  .chara_inner.small .name {
    font-size: 2rem;
  }
  .chara_inner.small .name rt {
    font-size: 0.6rem;
  }
  .chara_inner.small .chara {
    height: 68%;
  }
  .chara_inner.small .cv {
    font-size: 1.3rem;
  }
}

.character_list {
  background-image: url(images/character_list.webp);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/0.365;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .character_list {
    background-image: none;
  }
}

.character_list_inner {
  max-width: 660px;
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
.character_list_inner .item {
  font-size: 2.5rem;
  text-align: center;
  width: calc((100% - 16px) / 3);
}
.character_list_inner .item span {
  font-size: 1.5rem;
  display: block;
}
@media screen and (max-width: 840px) {
  .character_list_inner {
    max-width: 590px;
  }
  .character_list_inner .item {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .character_list_inner .item {
    font-size: 1.6rem;
  }
  .character_list_inner .item span {
    font-size: 1.1rem;
  }
}

.staff_list .item {
  color: #000;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}
.staff_list .item span {
  color: #1b71f5;
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .staff_list .item {
    font-size: 2rem;
    line-height: 1.5;
  }
  .staff_list .item span {
    font-size: 1.5rem;
  }
}

.song_wrap {
  gap: 50px;
  justify-content: center;
}
.song_wrap .ph {
  width: 450px;
  aspect-ratio: 1/1.1;
  background-color: #ddd;
}
.song_wrap .txt {
  width: 455px;
}
.song_wrap .txt h3 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 20px;
}
.song_wrap .txt h3 span {
  font-size: 2.7rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .song_wrap {
    gap: 30px;
  }
  .song_wrap .ph,
  .song_wrap .txt {
    width: 100%;
  }
  .song_wrap .ph h3,
  .song_wrap .txt h3 {
    font-size: 3rem;
  }
  .song_wrap .ph h3 span,
  .song_wrap .txt h3 span {
    font-size: 2rem;
  }
}

.goods_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.goods_wrap .item {
  width: calc((100% - 90px) / 4);
  padding: 15px;
  background-color: #79d5fc;
  border-radius: 15px;
}
.goods_wrap .item .ph {
  aspect-ratio: 1/1.253;
  background-color: #ddd;
}
.goods_wrap .item .txt {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 5px;
}
.goods_wrap .item .txt span {
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .goods_wrap {
    gap: 15px;
  }
  .goods_wrap .item {
    width: calc((100% - 15px) / 2);
  }
  .goods_wrap .item .txt {
    font-size: 2rem;
  }
  .goods_wrap .item .txt span {
    font-size: 1.5rem;
  }
}

footer {
  padding: 70px;
}
footer .logo_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 70px;
}
footer .logo_wrap .logo {
  width: 255px;
  aspect-ratio: 1/0.427;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
footer .logo_wrap .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
footer .sns {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
footer .sns .item {
  width: 33px;
  aspect-ratio: 1/1;
}
footer .sns .item.x {
  width: 28px;
}

.newsSwiper .swiper-wrapper {
  margin-bottom: 50px;
}

.fix_btn {
  width: 90px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}
.fix_btn .sns {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.fix_btn .sns a {
  filter: drop-shadow(0 0 18px #fbb03b);
}
@media screen and (max-width: 840px) {
  .fix_btn {
    top: 150px;
  }
}
@media screen and (max-width: 600px) {
  .fix_btn {
    width: 70%;
    top: initial;
    bottom: 10px;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
  .fix_btn .sns {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .fix_btn .sns a {
    width: calc((100% - 20px) / 3);
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
}

.copyright {
  text-align: center;
  margin-top: 60px;
}

.archive-news .news_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.archive-news .news_wrap .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 600px) {
  .archive-news .news_wrap .item {
    width: 100%;
  }
}

.single-news .title {
  font-size: 3rem;
}
.single-news .content {
  margin-top: 20px;
  color: #000;
}
.single-news #news .inner img {
  width: initial;
  height: auto;
}

.archive-news #news,
.single-news #news {
  min-height: 1000px;
}

.modal_layer {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.2s;
}
.modal_layer.is-active {
  opacity: 1;
  visibility: visible;
}
.modal_layer .modal_inner {
  max-width: 860px;
  background-image: url(images/modal.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1/0.804;
}
.modal_layer .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  position: relative;
  align-items: center;
  padding: 16px;
  padding-top: 70px;
}
.modal_layer .wrap .close {
  width: 110px;
  height: auto;
  position: absolute;
  top: 55px;
  right: 90px;
  cursor: pointer;
}
.modal_layer .wrap > .name {
  width: 100%;
  margin: 0 auto;
  padding: 3px 7% 3px 53%;
  font-size: 4rem;
}
.modal_layer .wrap .chara,
.modal_layer .wrap .txt {
  width: 50%;
}
.modal_layer .wrap .chara img {
  scale: 1.5;
  transform-origin: bottom;
}
.modal_layer .wrap .txt {
  align-self: start;
  margin-top: 20px;
}
.modal_layer .wrap .txt > p {
  width: 90%;
  margin: 0;
  font-size: 1.6rem;
}
.modal_layer .wrap .cv_name {
  font-size: 2.5rem !important;
  width: -moz-fit-content;
  width: fit-content !important;
  transform: translateY(50%);
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 0 !important;
  z-index: 1;
}
.modal_layer .wrap .cv_wrap {
  background-color: #021a47;
  position: relative;
  padding: 50px 30px 35px;
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  max-height: 190px;
  overflow-y: scroll;
}
.modal_layer .wrap .cv_wrap p {
  flex: 1;
  font-size: 1.5rem;
  height: 100%;
}
.modal_layer .wrap .cv_wrap .cv_img {
  width: 171px;
  height: 100%;
  background-color: #ddd;
}
.modal_layer .wrap .cv_wrap .cv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 840px) {
  .modal_layer .modal_inner {
    background-image: none;
    aspect-ratio: initial;
    height: 100%;
    overflow: scroll;
  }
  .modal_layer .wrap {
    flex-flow: column;
    padding-top: 110px;
    height: auto;
  }
  .modal_layer .wrap .txt {
    width: 100%;
  }
  .modal_layer .wrap .txt > p {
    width: 100%;
  }
  .modal_layer .wrap .name {
    padding: 3px 5%;
  }
  .modal_layer .wrap .chara {
    padding: 0;
  }
  .modal_layer .wrap .chara img {
    scale: initial;
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
  }
  .modal_layer .wrap .close {
    right: 20px;
  }
  .modal_layer .wrap .cv_wrap {
    max-height: initial;
  }
}
@media screen and (max-width: 600px) {
  .modal_layer .wrap {
    padding-top: 22px;
    padding-bottom: 110px;
  }
  .modal_layer .wrap .chara {
    width: 100%;
  }
  .modal_layer .wrap .close {
    top: initial;
    right: initial;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal_layer .wrap .txt > p {
    font-size: 1.5rem;
  }
  .modal_layer .wrap .cv_wrap {
    padding: 40px 20px 30px;
    flex-flow: column-reverse;
    align-items: center;
  }
  .modal_layer .wrap .cv_wrap p {
    font-size: 1.4rem;
    width: 100%;
    flex: initial;
  }
  .modal_layer .wrap .cv_wrap .name {
    font-size: 2.2rem;
  }
  .modal_layer .wrap .cv_wrap .name rt {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */