@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  background-image: url(../../img/season2/bg01.jpg);
  background-size: cover;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ページ全体に適用するカスタムスクロールバーのスタイル */
html {
  scrollbar-width: thin; /* スクロールバーを細くする */
  scrollbar-color: #0056A7 #FBDA41; /* サムとトラックの色を指定 */
}

body::-webkit-scrollbar {
  width: 12px; /* スクロールバーの幅 */
}

body::-webkit-scrollbar-track {
  background-color: #FBDA41; /* トラックの背景色 */
  border-radius: 10px; /* 角を丸める */
}

body::-webkit-scrollbar-thumb {
  background-color: #0056A7; /* サム（スクロールする部分）の色 */
  border-radius: 10px; /* サムの角を丸める */
  border: 3px solid #FBDA41; /* サムの外側にトラックの色を使ったボーダーを追加 */
}

body::-webkit-scrollbar-thumb:hover {
  background-color: rgb(0, 59.7365269461, 116); /* ホバー時に少し暗くする */
}

.page404 {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .page404 {
    padding: 20px;
  }
}
.page404 .title {
  font-size: 2em;
}
.page404 p {
  line-height: 1.6;
}

.bg_vd {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: -10;
  opacity: 0.1;
  overflow: hidden;
}
.bg_vd video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100vh;
  height: 100lvh;
}

h2.h2-default {
  text-align: center;
  color: #0056A7;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  h2.h2-default {
    margin-bottom: 40px;
  }
}
h2.h2-default .title-jp {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  h2.h2-default .title-jp {
    margin-bottom: 12px;
  }
}
h2.h2-default .title-jp img {
  height: 32px;
  width: auto;
}
@media screen and (max-width: 768px) {
  h2.h2-default .title-jp img {
    height: 24px;
  }
}
h2.h2-default .title-en {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  h2.h2-default .title-en {
    font-size: 1.1em;
    margin-bottom: 0.25em;
  }
}

.line {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .line {
    width: 70%;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(212, 212, 221, 0.75);
  backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, backdrop-filter 0.6s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 共通閉じるボタン */
.modal-close {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 90px;
  height: 90px;
  background-image: url(../../img/season2/icon_close-b.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.35s ease-out 0.15s, filter 0.2s ease;
}
@media screen and (max-width: 768px) {
  .modal-close {
    width: 70px;
    height: 70px;
    top: 0px;
    right: 0px;
  }
}
.modal-close.active {
  display: block;
  opacity: 1;
}
.modal-close:hover {
  filter: brightness(200%) grayscale(100%);
}

/* 動画モーダル */
.modal-movie {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  width: min(80vw, 1200px);
  aspect-ratio: 16/9;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, visibility 0s linear 0.53s;
}
@media screen and (max-width: 768px) {
  .modal-movie {
    width: 100%;
    border-radius: 0;
    top: 45%;
  }
}
.modal-movie.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, visibility 0s linear 0s;
}

/* 通常モーダル */
.modal {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  width: 80vw;
  max-width: 900px;
  height: auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, visibility 0s linear 0.53s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .modal {
    width: calc(100% - 40px);
  }
}
.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, visibility 0s linear 0s;
}
.modal .modal-comment {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal .modal-comment .modal-img {
  max-width: 300px;
  margin: 0 auto;
  width: 60%;
}
.modal .modal-comment .names {
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.modal .modal-comment .names .role {
  font-size: 1.1em;
  font-weight: 900;
  color: #0056A7;
  margin-bottom: 0.5em;
}
.modal .modal-comment .names .role span {
  font-size: 0.8em;
}
.modal .modal-comment .names .name {
  font-size: 1.6em;
  font-weight: 900;
}
.modal .modal-comment .names .alfa {
  font-weight: 900;
  margin-top: 0.5em;
  font-size: 0.9em;
}
.modal .modal-comment .comment {
  line-height: 2;
}
.modal .modal-comment .comment p {
  margin-bottom: 0.5em;
  font-weight: 700;
}
.modal .modal-comment .comment p:last-of-type {
  margin-bottom: 0;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 動画 */
.modal-movie .modal-content {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .modal-movie .modal-content {
    border-radius: 0;
  }
}

.videoFrame {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* テキストモーダル */
.modal .modal-content {
  width: 100%;
  text-align: left;
  padding: 40px 50px;
  max-height: 90vh;
  max-height: 90lvh;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .modal .modal-content {
    padding: 70px 20px 40px;
  }
}

.footer {
  padding: 120px 50px;
  background-color: #fdfdfd;
  background-image: url(img/diamondw.png);
  background-size: 600px;
  color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 120px 24px;
  }
}
.footer .footer_bg {
  background-image: url(img/bg_ml-pc.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer .footer_bg {
    background-image: url(img/bg_ml-sp.jpg);
  }
}
.footer .title {
  width: 90%;
  max-width: 400px;
  margin: 0 auto 30px;
}
.footer .policy {
  text-align: center;
  display: inline-block;
  font-size: 12px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000;
}
.footer .policy:hover {
  text-decoration: none;
}

.top_btn {
  width: 100px;
  height: 65px;
  position: relative;
  margin: 0 auto 40px;
  cursor: pointer;
}
.top_btn .top_btn_base {
  position: relative;
}
.top_btn .top_btn_arrow {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}
.top_btn:hover .top_btn_arrow {
  transform: translateY(-4px);
}

.footer_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  flex-wrap: wrap;
  transition: 0.3s;
}
.footer_nav a {
  font-weight: 700;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  padding: 0.5em 0.5em;
  letter-spacing: 0.1em;
  display: block;
}
.footer_nav a:hover {
  opacity: 0.5;
}

.copyright {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}
.copyright p {
  margin-bottom: 0.5em;
}

/*-------------------------------*/
/*sharebtn-----------------------*/
.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
  color: #000;
  font-weight: 700;
  pointer-events: none;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}
.share_btns-square li:hover {
  opacity: 0.5;
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

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

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

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

@keyframes flash {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes infiniteRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes neonGlitch {
  0%, 100% {
    opacity: 1;
    filter: none;
  }
  2% {
    opacity: 0.8;
    filter: brightness(1.2);
  }
  4% {
    opacity: 1;
    filter: none;
  }
  6% {
    opacity: 1;
    filter: brightness(0.9);
  }
  8% {
    opacity: 1;
    filter: none;
    transform: translateX(1px);
  }
  30% {
    opacity: 1;
    filter: none;
  }
  31% {
    opacity: 0.9;
    filter: brightness(1.2) contrast(1.3);
  }
  32% {
    opacity: 1;
    filter: none;
    transform: translateY(1px);
  }
  50% {
    opacity: 1;
    filter: none;
  }
  51% {
    opacity: 0.95;
    filter: brightness(1.3) contrast(1.2);
  }
  52% {
    opacity: 1;
    filter: none;
    transform: translateY(1px);
  }
  70% {
    opacity: 1;
    filter: none;
    transform: translateX(1px);
  }
  71% {
    opacity: 1;
    filter: brightness(1.3);
  }
  72% {
    opacity: 1;
    filter: none;
  }
  90% {
    opacity: 1;
    filter: none;
    transform: translateX(1px);
  }
  91% {
    opacity: 0.9;
    filter: brightness(1.6) contrast(1.5);
  }
  92% {
    opacity: 1;
    filter: none;
  }
}
/* ランダムなタイミングでグリッチ発動 */
.glitch {
  animation: neonGlitch 12s infinite steps(2);
}

@keyframes yura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
/*-inview------------------------*/
.fadeInDown {
  opacity: 0;
  transition: 1s;
  transform: translateY(-10px);
}
.fadeInDown.is-inview {
  transform: translateY(0);
  opacity: 1;
}
.fadeInDown.d01 {
  transition-delay: 0.2s;
}
.fadeInDown.d02 {
  transition-delay: 0.4s;
}
.fadeInDown.d03 {
  transition-delay: 0.6s;
}

.fadeInUp {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
.nav_btn {
  z-index: 104;
  display: none;
  position: fixed;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: flex;
    top: 0px;
    right: 0px;
    background-image: url(../../img/season2/icon_menu.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    transition: 0.4s;
    opacity: 1;
  }
  .nav_btn.active {
    opacity: 0.8;
  }
  .nav_btn.show {
    background-image: url(../../img/season2/icon_close.svg);
    opacity: 1;
  }
}

.nav_bar {
  z-index: 100;
  background-color: #0056A7;
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .nav_bar {
    height: 70px;
    display: block;
  }
}

.nav_title {
  z-index: 105;
  width: 200px;
  position: fixed;
  left: 0px;
  top: 12.5px;
  transition: opacity 0.35s, transform 0.45s;
  transform: translateX(40px);
}
@media screen and (max-width: 768px) {
  .nav_title {
    width: 148px;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
  }
}
.nav_title a {
  display: block;
}

.main-navigation {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 80px 0 240px;
  box-shadow: 2px 2px 4px 0 rgba(139, 139, 139, 0.1);
  transition: padding-right 0.45s;
}
@media screen and (max-width: 768px) {
  .main-navigation {
    background-color: #0056A7;
    box-shadow: none;
    padding: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    justify-content: center;
    align-items: center;
    left: 100%;
    transition: 0.4s;
  }
}
.main-navigation ul.main-menu {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-navigation ul.main-menu {
    padding: 0 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
    width: auto;
  }
}
.main-navigation ul.main-menu li a {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 0 1em;
  letter-spacing: 0.1em;
  transition: 0.2s;
  color: #FBDA41;
}
.main-navigation ul.main-menu li a img {
  transition: 0.2s;
  height: 19px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .main-navigation ul.main-menu li a img {
    height: 22px;
    width: auto;
  }
}
.main-navigation ul.main-menu li a:hover img {
  transform: translateX(4px);
}
@media screen and (max-width: 768px) {
  .main-navigation ul.main-menu li a:hover img {
    transform: translateX(0px);
  }
}
@media screen and (max-width: 768px) {
  .main-navigation.show {
    left: 0%;
  }
}

.sns-navigation {
  z-index: 102;
  position: fixed;
  top: 60px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sns-navigation {
    top: 0;
    left: 0;
    right: unset;
  }
}
.sns-navigation ul {
  display: flex;
}
.sns-navigation ul li a {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  transition: 0.2s;
  transform: translateY(0px);
}
.sns-navigation ul li a:hover {
  transform: translateY(-5px);
}

body.is-navtitle .nav_title {
  opacity: 1;
  transform: translate(0, 0);
}
body.is-navtitle .main-navigation {
  padding-right: 160px;
}
@media screen and (max-width: 768px) {
  body.is-navtitle .main-navigation {
    padding-right: 0;
  }
}

body.is-sub .nav_title {
  opacity: 1;
  transform: translate(0, 0);
}
body.is-sub .main-navigation {
  padding-right: 160px;
}
@media screen and (max-width: 768px) {
  body.is-sub .main-navigation {
    padding-right: 0;
  }
}

.to_top {
  z-index: 98;
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: fixed;
  bottom: 0px;
  right: 0px;
  transition: 0.2s;
}
.to_top::before {
  content: "▲";
  color: #0056A7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 0.6);
}
.to_top:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .to_top {
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 0;
  }
}

.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 120vh;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../../img/season2/bg02.jpg);
  background-size: cover;
  background-position: top center;
}
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease;
  will-change: opacity;
}

.loading-home {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-home .loader {
  max-width: 440px;
  width: 90%;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.loading-sub {
  background: #fff;
}

.loading.is-hide {
  opacity: 0;
}

.loading-home.is-hide .loader {
  opacity: 0;
  transform: scale(1.5);
}

.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 120vh;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../../img/season2/bg02.jpg);
  background-size: cover;
  background-position: top center;
}
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease;
  will-change: opacity;
}

.loading-home {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-home .loader {
  max-width: 440px;
  width: 90%;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.loading-sub {
  background: #fff;
}

.loading.is-hide {
  opacity: 0;
}

.loading-home.is-hide .loader {
  opacity: 0;
  transform: scale(1.5);
}

footer {
  padding: 80px 50px;
  color: #FFF;
  background-image: url(../../img/season2/bg03.jpg);
  background-size: cover;
  text-align: center;
  display: block;
  font-size: 0.75em;
}
footer .footer-logo {
  max-width: 400px;
  margin: 0 auto 40px;
}
footer .sns-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  footer .sns-container {
    margin-bottom: 30px;
  }
}
footer .sns-container a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .sns-container a img {
  width: 40px;
}
footer .sns-container a {
  transition: 0.2s;
}
footer .sns-container a:hover {
  transform: scale(0.95);
}
footer .feather {
  margin: 0 auto 20px;
  max-width: 70px;
  transform-origin: top center;
  animation: yura 30s infinite;
}
@media screen and (max-width: 768px) {
  footer .feather {
    margin: 0 auto 30px;
  }
}
.spacer {
  height: 90px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .spacer {
    height: 70px;
  }
}

#top {
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
  position: relative;
  overflow: hidden;
  z-index: 2;
}
#top .kv {
  clip-path: polygon(0 0, 100% 0, 100% 97%, 94% 100%, 6% 100%, 0% 97%);
  position: relative;
  filter: brightness(200%);
  transition: 3s;
}
@media screen and (max-width: 768px) {
  #top .kv {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 90% 100%, 10% 100%, 0% 95%);
  }
}
#top .kv img {
  opacity: 0;
  transform: scale(1.05);
  transition: 1s;
}
#top h1 {
  margin-top: -41vw;
  z-index: 2;
  width: 94%;
  margin-left: 3%;
  position: relative;
  transition: 0.5s;
  opacity: 0;
  transform: scale(1.2);
  transition-delay: 1s;
}
@media screen and (max-width: 768px) {
  #top h1 {
    margin-left: -3%;
    width: 110%;
    margin-top: -38vw;
  }
}
#top .release {
  z-index: 3;
  position: relative;
  width: 72%;
  margin: -12vw auto 0;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 96%;
    margin: -15vw auto 0;
  }
}
#top .release .release-base {
  position: relative;
  transition: 0.5s;
  transition-delay: 1.5s;
  clip-path: inset(0 100% 0 0);
}
#top .release .release-text {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(10px);
  width: 100%;
  opacity: 0;
  transition: 1s;
  transition-delay: 2s;
}
#top .copy_tate {
  width: 3%;
  position: absolute;
  top: 15%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    width: 6%;
    top: 15%;
    left: 46%;
  }
}

.is-loaded-home #top .kv {
  filter: brightness(100%);
}
.is-loaded-home #top .kv img {
  opacity: 1;
  transform: scale(1);
}
.is-loaded-home #top .title {
  opacity: 1;
  transform: scale(1);
}
.is-loaded-home #top .release .release-text {
  opacity: 1;
  transform: translateY(0);
}
.is-loaded-home #top .release .release-base {
  opacity: 1;
  clip-path: inset(0);
}

#news-top {
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  #news-top {
    padding: 40px 20px;
  }
}

#news-archive, #news-single {
  position: relative;
}
#news-archive .section_inner, #news-single .section_inner {
  padding: 170px 50px 120px;
}
@media screen and (max-width: 768px) {
  #news-archive .section_inner, #news-single .section_inner {
    padding: 150px 20px 80px;
  }
}
#news-archive .section_inner .section_main, #news-single .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news-archive .section_inner .section_main, #news-single .section_inner .section_main {
    max-width: 500px;
  }
}
#news-archive .section-contents, #news-single .section-contents {
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
  background-color: #fff;
  padding: 60px 80px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #news-archive .section-contents, #news-single .section-contents {
    padding: 30px 20px;
  }
}
#news-archive .section-contents p.date, #news-single .section-contents p.date {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0056A7;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
#news-archive .section-contents p.title, #news-single .section-contents p.title {
  font-size: 1.5em;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: dotted 2px #0056A7;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #news-archive .section-contents p.title, #news-single .section-contents p.title {
    font-size: 1.3em;
  }
}
#news-archive .section-contents .article-text img, #news-single .section-contents .article-text img {
  width: unset;
}
#news-archive .section-contents .article-text P, #news-single .section-contents .article-text P {
  margin-bottom: 20px;
}
#news-archive .section-contents .article-text strong, #news-single .section-contents .article-text strong {
  font-weight: 900;
}
#news-archive .section-contents .article-text a, #news-single .section-contents .article-text a {
  word-break: break-all;
  line-height: 1.4;
}
#news-archive .section-contents .article-text .youtube-wrap, #news-single .section-contents .article-text .youtube-wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 0 56.25% 0;
  height: 0;
  overflow: hidden;
  z-index: 2;
  display: block;
}
#news-archive .section-contents .article-text .youtube-wrap iframe, #news-single .section-contents .article-text .youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#news-archive .section-contents .article-text h1, #news-single .section-contents .article-text h1 {
  color: #0056A7;
  font-size: 2em;
}
#news-archive .section-contents .article-text h2, #news-single .section-contents .article-text h2 {
  color: #0056A7;
  font-size: 1.5em;
}
#news-archive .section-contents .article-text h3, #news-single .section-contents .article-text h3 {
  color: #0056A7;
  font-size: 1.3em;
}
#news-archive .section-contents .article-text h4, #news-single .section-contents .article-text h4 {
  color: #0056A7;
  font-size: 1.2em;
}
#news-archive .section-contents .article-text h5, #news-single .section-contents .article-text h5 {
  color: #0056A7;
  font-size: 1.1em;
}
#news-archive .news-nav, #news-single .news-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
#news-archive .news-nav .news-nav-prev, #news-archive .news-nav .news-nav-list, #news-archive .news-nav .news-nav-next, #news-single .news-nav .news-nav-prev, #news-single .news-nav .news-nav-list, #news-single .news-nav .news-nav-next {
  height: 50px;
}
@media screen and (max-width: 768px) {
  #news-archive .news-nav .news-nav-prev, #news-archive .news-nav .news-nav-list, #news-archive .news-nav .news-nav-next, #news-single .news-nav .news-nav-prev, #news-single .news-nav .news-nav-list, #news-single .news-nav .news-nav-next {
    height: 40px;
  }
}
#news-archive .news-nav .news-nav-prev a, #news-archive .news-nav .news-nav-prev span, #news-archive .news-nav .news-nav-list a, #news-archive .news-nav .news-nav-list span, #news-archive .news-nav .news-nav-next a, #news-archive .news-nav .news-nav-next span, #news-single .news-nav .news-nav-prev a, #news-single .news-nav .news-nav-prev span, #news-single .news-nav .news-nav-list a, #news-single .news-nav .news-nav-list span, #news-single .news-nav .news-nav-next a, #news-single .news-nav .news-nav-next span {
  height: 50px;
  padding: 0 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.1em;
  background-color: #0056A7;
  color: #FBDA41;
  min-width: 50px;
}
@media screen and (max-width: 768px) {
  #news-archive .news-nav .news-nav-prev a, #news-archive .news-nav .news-nav-prev span, #news-archive .news-nav .news-nav-list a, #news-archive .news-nav .news-nav-list span, #news-archive .news-nav .news-nav-next a, #news-archive .news-nav .news-nav-next span, #news-single .news-nav .news-nav-prev a, #news-single .news-nav .news-nav-prev span, #news-single .news-nav .news-nav-list a, #news-single .news-nav .news-nav-list span, #news-single .news-nav .news-nav-next a, #news-single .news-nav .news-nav-next span {
    height: 40px;
  }
}
#news-archive .news-nav .news-nav-prev a, #news-archive .news-nav .news-nav-prev span, #news-archive .news-nav .news-nav-list a, #news-archive .news-nav .news-nav-list span, #news-archive .news-nav .news-nav-next a, #news-archive .news-nav .news-nav-next span, #news-single .news-nav .news-nav-prev a, #news-single .news-nav .news-nav-prev span, #news-single .news-nav .news-nav-list a, #news-single .news-nav .news-nav-list span, #news-single .news-nav .news-nav-next a, #news-single .news-nav .news-nav-next span {
  transition: 0.2s;
}
#news-archive .news-nav .news-nav-prev a:hover, #news-archive .news-nav .news-nav-prev span:hover, #news-archive .news-nav .news-nav-list a:hover, #news-archive .news-nav .news-nav-list span:hover, #news-archive .news-nav .news-nav-next a:hover, #news-archive .news-nav .news-nav-next span:hover, #news-single .news-nav .news-nav-prev a:hover, #news-single .news-nav .news-nav-prev span:hover, #news-single .news-nav .news-nav-list a:hover, #news-single .news-nav .news-nav-list span:hover, #news-single .news-nav .news-nav-next a:hover, #news-single .news-nav .news-nav-next span:hover {
  color: #FFF;
}
#news-archive .news-nav .news-nav-prev span.disabled, #news-archive .news-nav .news-nav-list span.disabled, #news-archive .news-nav .news-nav-next span.disabled, #news-single .news-nav .news-nav-prev span.disabled, #news-single .news-nav .news-nav-list span.disabled, #news-single .news-nav .news-nav-next span.disabled {
  color: #FFF;
  opacity: 0.5;
  pointer-events: none;
}
#news-archive .news-nav .news-nav-prev span, #news-archive .news-nav .news-nav-prev a, #news-archive .news-nav .news-nav-next span, #news-archive .news-nav .news-nav-next a, #news-single .news-nav .news-nav-prev span, #news-single .news-nav .news-nav-prev a, #news-single .news-nav .news-nav-next span, #news-single .news-nav .news-nav-next a {
  width: 50px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #news-archive .news-nav .news-nav-prev span, #news-archive .news-nav .news-nav-prev a, #news-archive .news-nav .news-nav-next span, #news-archive .news-nav .news-nav-next a, #news-single .news-nav .news-nav-prev span, #news-single .news-nav .news-nav-prev a, #news-single .news-nav .news-nav-next span, #news-single .news-nav .news-nav-next a {
    width: 40px;
  }
}
#news-archive .pagenation, #news-single .pagenation {
  margin-top: 40px;
}
#news-archive .pagenation .num-list, #news-single .pagenation .num-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#news-archive .pagenation .num-list .num-item, #news-single .pagenation .num-list .num-item {
  width: 50px;
  height: 50px;
  background-color: #0056A7;
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  #news-archive .pagenation .num-list .num-item, #news-single .pagenation .num-list .num-item {
    width: 40px;
    height: 40px;
  }
}
#news-archive .pagenation .num-list .num-item a, #news-single .pagenation .num-list .num-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #FBDA41;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #news-archive .pagenation .num-list .num-item a, #news-single .pagenation .num-list .num-item a {
    width: 40px;
    height: 40px;
  }
}
#news-archive .pagenation .num-list .num-item a, #news-single .pagenation .num-list .num-item a {
  transition: 0.2s;
}
#news-archive .pagenation .num-list .num-item a:hover, #news-single .pagenation .num-list .num-item a:hover {
  color: #FFF;
}
#news-archive .pagenation .num-list .num-item.active a, #news-single .pagenation .num-list .num-item.active a {
  color: #FFF;
}

.link-list {
  background-color: #0056A7;
  padding: 1em 2em;
  color: #FBDA41;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  display: flex;
  letter-spacing: 0.32em;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  align-items: center;
  text-indent: 0.32em;
}
@media screen and (max-width: 768px) {
  .link-list {
    height: 40px;
  }
}
.link-list {
  transition: 0.2s;
}
.link-list:hover {
  color: #FFF;
}

.news-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .news-list {
    max-width: 500px;
  }
}
.news-list li {
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
}
.news-list li a {
  padding: 1.5em 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  line-height: 1.5;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news-list li a {
    padding: 1em 1em;
    flex-direction: column;
    gap: 2px;
  }
}
.news-list li a span.date {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0056A7;
  letter-spacing: 0.1em;
  width: 8em;
  padding-top: 1px;
}
@media screen and (max-width: 768px) {
  .news-list li a span.date {
    padding-top: 0px;
    width: 100%;
    font-size: 1.1em;
  }
}
.news-list li a span.title {
  color: #000;
  flex: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .news-list li a span.title {
    width: 100%;
  }
}
.news-list li a {
  transition: 0.2s;
}
.news-list li a:hover {
  transform: translateX(4px);
}
@media screen and (max-width: 768px) {
  .news-list li a:hover {
    transform: translateX(0px);
  }
}

.fe01 {
  pointer-events: none;
  position: absolute;
  width: 15%;
  left: 0%;
  top: -6%;
  max-width: 166px;
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
}
.fe01 img {
  opacity: 0.8;
}

.fe02 {
  pointer-events: none;
  position: absolute;
  width: 15%;
  left: 8%;
  top: 6%;
  max-width: 228px;
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
}
.fe02 img {
  opacity: 0.8;
}

.fe03 {
  pointer-events: none;
  position: absolute;
  width: 13%;
  left: 2%;
  top: 47%;
  max-width: 98px;
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
}
.fe03 img {
  opacity: 0.8;
}

.fe04 {
  pointer-events: none;
  position: absolute;
  width: 15%;
  left: -7%;
  top: -6%;
  max-width: 240px;
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
}
.fe04 img {
  opacity: 0.8;
}

.fe05 {
  pointer-events: none;
  position: absolute;
  width: 26%;
  left: -1%;
  top: 88%;
  max-width: 257px;
  filter: drop-shadow(0 2px 2px rgba(223, 223, 223, 0.1));
}
.fe05 img {
  opacity: 0.8;
}

#movie {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../../img/season2/bg02.jpg);
  background-size: cover;
  box-shadow: inset 0px 0px 10px rgba(105, 105, 105, 0.1);
}
#movie .section_inner {
  position: relative;
  width: 100%;
  padding: 80px 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #movie .section_inner {
    padding: 80px 30px;
  }
}
#movie .section_inner .swiper1 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
#movie .section_inner .swiper1 .swiper-slide {
  color: #000;
  font-weight: 900;
  width: 50%;
}
#movie .section_inner .swiper1 .swiper-slide .thumb_img {
  background-color: #0056A7;
  border: solid 3px #0056A7;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
#movie .section_inner .swiper1 .swiper-slide .thumb_img img {
  transition: 0.2s;
}
#movie .section_inner .swiper1 .swiper-slide .thumb_img .play_btn {
  width: 10%;
  top: 10px;
  left: 10px;
  transition: 0.2s;
  position: absolute;
}
#movie .section_inner .swiper1 .swiper-slide p {
  margin-top: 10px;
  padding: 0.4em 0.5em;
  display: block;
  border-left: solid 7px #0056A7;
  font-size: 1.2em;
}
#movie .section_inner .swiper1 .swiper-slide:hover .thumb_img img {
  transform: scale(1.04);
  filter: brightness(110%);
}
#movie .section_inner .swiper1 .swiper-slide:hover .play_btn {
  transform: scale(0.9);
}

#credit-top .section_inner {
  padding: 80px 50px 120px;
}
@media screen and (max-width: 768px) {
  #credit-top .section_inner {
    padding: 60px 20px 80px;
  }
}
#credit-top .section_inner .section_main {
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#credit-top .section_inner .section_main .block h3 {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  font-size: 1.3em;
}
#credit-top .section_inner .section_main .block .staff_items, #credit-top .section_inner .section_main .block .cast_items {
  gap: 30px 40px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #credit-top .section_inner .section_main .block .staff_items, #credit-top .section_inner .section_main .block .cast_items {
    gap: 20px 30px;
    margin-bottom: 20px;
  }
}
#credit-top .section_inner .section_main .block .staff_items:last-of-type, #credit-top .section_inner .section_main .block .cast_items:last-of-type {
  margin-bottom: 0;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item, #credit-top .section_inner .section_main .block .staff_items .cast_item, #credit-top .section_inner .section_main .block .cast_items .staff_item, #credit-top .section_inner .section_main .block .cast_items .cast_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item .role, #credit-top .section_inner .section_main .block .staff_items .cast_item .role, #credit-top .section_inner .section_main .block .cast_items .staff_item .role, #credit-top .section_inner .section_main .block .cast_items .cast_item .role {
  color: #0056A7;
  font-size: 0.875em;
  font-weight: 900;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item .name, #credit-top .section_inner .section_main .block .staff_items .cast_item .name, #credit-top .section_inner .section_main .block .cast_items .staff_item .name, #credit-top .section_inner .section_main .block .cast_items .cast_item .name {
  font-size: 1.125em;
  font-weight: 900;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item .alfa, #credit-top .section_inner .section_main .block .staff_items .cast_item .alfa, #credit-top .section_inner .section_main .block .cast_items .staff_item .alfa, #credit-top .section_inner .section_main .block .cast_items .cast_item .alfa {
  font-size: 0.75em;
  font-weight: 900;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item.open-modal, #credit-top .section_inner .section_main .block .staff_items .cast_item.open-modal, #credit-top .section_inner .section_main .block .cast_items .staff_item.open-modal, #credit-top .section_inner .section_main .block .cast_items .cast_item.open-modal {
  cursor: pointer;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item.open-modal span.name, #credit-top .section_inner .section_main .block .staff_items .cast_item.open-modal span.name, #credit-top .section_inner .section_main .block .cast_items .staff_item.open-modal span.name, #credit-top .section_inner .section_main .block .cast_items .cast_item.open-modal span.name {
  border-bottom: solid 3px #0056A7;
  display: flex;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item.open-modal span.icon-comment, #credit-top .section_inner .section_main .block .staff_items .cast_item.open-modal span.icon-comment, #credit-top .section_inner .section_main .block .cast_items .staff_item.open-modal span.icon-comment, #credit-top .section_inner .section_main .block .cast_items .cast_item.open-modal span.icon-comment {
  background-color: #0056A7;
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item.open-modal span.icon-comment img, #credit-top .section_inner .section_main .block .staff_items .cast_item.open-modal span.icon-comment img, #credit-top .section_inner .section_main .block .cast_items .staff_item.open-modal span.icon-comment img, #credit-top .section_inner .section_main .block .cast_items .cast_item.open-modal span.icon-comment img {
  transition: 0.1s;
  transform-origin: bottom left;
}
#credit-top .section_inner .section_main .block .staff_items .staff_item.open-modal:hover img, #credit-top .section_inner .section_main .block .staff_items .cast_item.open-modal:hover img, #credit-top .section_inner .section_main .block .cast_items .staff_item.open-modal:hover img, #credit-top .section_inner .section_main .block .cast_items .cast_item.open-modal:hover img {
  transform: scale(1.5);
}
@media screen and (max-width: 768px) {
  #credit-top .section_inner .section_main .block .staff_items {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */