@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-blue: #5f89de;
  --color-text: #00408f;
  --color-gray: #b5b8bf;
  --color-red: #e7313b;
  --color-yellow: #ffe328;
  --color-white: #fff;
  --color-item: #f0f0f0;
  --color-gold: #b08a3e;
}

@keyframes dot-pulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fuyofuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fuyofuyo2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes cloud1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes cloud2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pyon {
  0% {
    transform: translate(0, 0) scaleY(1);
  }
  25% {
    transform: translate(0, 0) scaleY(0.95);
  }
  50% {
    transform: translate(0, -30px) scaleY(1);
  }
  75% {
    transform: translate(0, 0) scaleY(0.95);
  }
  100% {
    transform: translate(0, 0) scaleY(1);
  }
}
body {
  color: var(--color-text);
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
}

.l-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.l-wrap::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pc/bg.png) repeat center 0;
  background-size: 120px;
  pointer-events: none;
}
.l-wrap__main {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 64, 143, 0.2);
  margin: 0 auto;
}
.l-wrap__main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(../img/bg.jpg) repeat center 0;
  background-size: 60px;
}
@media screen and (min-width: 768px) {
  .l-wrap__main::before {
    width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .l-wrap__main {
    width: 500px;
    min-height: 100vh;
    background-color: rgb(227, 227, 227);
  }
}

.l-content {
  position: relative;
  background: url(../img/bg_main.jpg) repeat center 0;
  background-size: 24px;
  margin-top: 39px;
  padding: 46px 3.7% 40px;
}
@media screen and (min-width: 768px) {
  .l-content {
    margin-top: 52.65px;
    padding: 62.1px 3.7% 54px;
    background-size: 32.4px;
  }
}
.--in .l-content {
  margin-top: 24px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .--in .l-content {
    margin-top: 32.4px;
  }
}
.l-content__ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-42%);
  width: 100%;
  text-align: center;
}
.l-content__ttl img {
  transform: scaleX(0.8);
  opacity: 0;
}
.is-load .l-content__ttl img {
  opacity: 1;
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.25s;
}

.l-pc_frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .l-pc_frame {
    display: none !important;
  }
}
.l-pc_frame__deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.l-pc_frame__deco img {
  width: 100%;
}
.l-pc_frame__chara {
  position: absolute;
  top: 0;
  width: calc(50% - 250px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5%;
}
.l-pc_frame__chara.--sou {
  left: 0;
}
.l-pc_frame__chara.--ao {
  right: 0;
}
.l-pc_frame__chara-list {
  margin: 0 auto;
  position: relative;
  width: 85%;
  max-width: 500px;
  transform-origin: bottom center;
}
.is-change .l-pc_frame__chara-list {
  animation: pyon 0.7s linear forwards;
}
.l-pc_frame__chara-list-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.l-pc_frame__chara-list-item.is-current {
  opacity: 1;
}
.l-pc_frame__chara-list-item:first-child {
  position: relative;
}
.l-pc_frame__logo {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 150px;
}
.l-pc_frame__sitelogo {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 156px;
}
.l-pc_frame__sitelogo a {
  display: block;
}
@media (hover: hover) {
  .l-pc_frame__sitelogo a {
    transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-pc_frame__sitelogo a:hover {
    transform: scale(0.98);
    opacity: 0.8;
  }
}

.l-load {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-load .l-load {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.l-load .dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-load .dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background-color: var(--color-blue);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .l-load .dots .dot {
    width: 8px;
    height: 8px;
    margin: 0 6px;
  }
}
.l-load .dots .dot:nth-child(1) {
  animation-delay: 0s;
}
.l-load .dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.l-load .dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.l-footer {
  position: relative;
}
.l-footer__inner {
  position: relative;
  padding: 23px 5.5% 38px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding: 31.05px 5.5% 51.3px;
  }
}
.l-footer__logo {
  margin: 0 auto;
  width: 195px;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 263.25px;
  }
}
.l-footer__logo a {
  display: block;
}
@media (hover: hover) {
  .l-footer__logo a {
    transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-footer__logo a:hover {
    transform: scale(0.98);
    opacity: 0.8;
  }
}
.l-footer__anilink {
  margin-top: 14px;
  display: flex;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__anilink {
    margin-top: 18.9px;
  }
}
.l-footer__anilink-item {
  width: 31.6%;
}
.l-footer__anilink-item + .l-footer__anilink-item {
  margin-left: 2.5%;
}
.l-footer__anilink-item a {
  border-radius: 100px;
  font-size: 10px;
  padding: 7px 0 8px;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: block;
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--color-blue);
  will-change: transform;
}
@media (hover: hover) {
  .l-footer__anilink-item a {
    transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .l-footer__anilink-item a:hover {
    transform: scale(0.97);
  }
}
@media screen and (min-width: 768px) {
  .l-footer__anilink-item a {
    font-size: 13.5px;
    padding: 9.45px 0 10.8px;
  }
}
.l-footer__text {
  margin-top: 22px;
  line-height: 1.5;
  font-size: 9.5px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-footer__text {
    margin-top: 29.7px;
    font-size: 12.825px;
  }
}
.l-footer__copy {
  margin-top: 17px;
  line-height: 1.5;
  font-size: 9.5px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    margin-top: 22.95px;
    font-size: 12.825px;
  }
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}