@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--------------------------*/
/*fontsize-----------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
/*mixin--------------------------*/
/*-------------------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: "Yuji Syuku", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  font-size: clamp(14px, 0.8199541284rem + 0.2752293578vw, 20px);
  color: #000;
  min-height: 100vh;
}

body.fixed {
  overflow: hidden;
  touch-action: none;
  height: 100vh;
}

body.body_sub .page-wrapper {
  padding-top: 120px;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
}

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

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

.js-fade, .js-fadeUp {
  opacity: 0;
  will-change: opacity, transform;
}

/* 共通の見た目・最適化だけ */
.reveal-clip {
  will-change: clip-path, opacity;
}

.reveal-clip img, .reveal-clip video {
  display: block;
  width: 100%;
  height: auto;
}

.h2-default {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}
.h2-default .title_frame-top, .h2-default .title_frame-bottom {
  width: 80px;
}
.h2-default p {
  font-size: 2em;
}
.h2-default.h2-white {
  color: #FEFEFE;
}

.section-default {
  background-image: url(../img/bg_w.jpg);
  background-size: 100%;
  width: calc(100% - 50px);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  margin: 0 auto 80px 0;
  filter: drop-shadow(0pc 2px 3px #000);
}
@media screen and (max-width: 768px) {
  .section-default {
    width: calc(100% - 20px);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-bottom: 60px;
    background-size: 1500px;
  }
}
.section-default.section-right {
  margin: 0 0 80px auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
@media screen and (max-width: 768px) {
  .section-default.section-right {
    margin: 0 0 60px auto;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
.section-default .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .section-default .section_inner .section_main {
    padding: 60px 20px;
    max-width: 500px;
  }
}

.btn-kazari {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #765600;
  border: solid 1px #523F00;
  color: #fff;
  text-decoration: none;
  min-width: 12em;
  padding: 0.6em 0px;
  height: 2.5em;
  margin: 0 auto;
  overflow: hidden;
  transition: 0.2s;
  letter-spacing: 0.1em;
}
.btn-kazari::before, .btn-kazari::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  background: url("../img/btn-circle.svg") no-repeat center/contain;
  pointer-events: none;
  transform: translateY(-50%);
  transition: 0.4s;
  transform-origin: center center;
  opacity: 0.5;
}
.btn-kazari::before {
  left: -23px;
}
.btn-kazari::after {
  right: -23px;
}
.btn-kazari:hover {
  filter: brightness(1.2);
}
.btn-kazari:hover::before {
  transform: translateY(-50%) rotate(90deg);
}
.btn-kazari:hover::after {
  transform: translateY(-50%) rotate(-90deg);
}

.f-small {
  font-size: 0.9em;
}

.f-smaller {
  font-size: 0.8em;
}

.f-bigger {
  font-size: 1.2em;
}

span.no-br {
  display: inline-block;
}

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

@media screen and (max-width: 768px) {
  span.no-br-sp {
    display: inline-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;
  }
}

#credit {
  margin-bottom: 80px;
  text-align: center;
  color: #FEFEFE;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #credit {
    margin-bottom: 60px;
  }
}
#credit .block {
  margin-bottom: 1em;
}
#credit .block .caption {
  opacity: 0.7;
  text-transform: uppercase;
}
/* 正方向（0→180度） */
@keyframes spin180 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
/* 逆方向（180→0度） */
@keyframes spin180Reverse {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.page-wrapper {
  max-width: calc(100% - 200px);
  min-width: calc(100% - 300px);
  width: 87%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .page-wrapper {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
}

.gnav {
  z-index: 100;
  padding: 20px;
  min-width: 200px;
  max-width: 300px;
  width: 13%;
  position: fixed;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  background-image: url(../img/bg_nav.jpg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .gnav {
    background-size: 350%;
    background-position: left top;
    padding: 10px 20px 20px;
    z-index: 1001;
    min-width: unset;
    max-width: unset;
    width: 100%;
    opacity: 0;
    pointer-events: none;
  }
  .gnav.active {
    pointer-events: all;
    opacity: 1;
  }
}
.gnav .gnav_logo {
  width: 100%;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_logo {
    width: 100%;
    max-width: 320px;
    padding: 0 80px;
  }
}
.gnav .gnav_logo a {
  display: block;
}
.gnav .gnav_inner {
  margin: 0 auto 30px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.gnav .gnav_inner .gnav_item {
  width: calc(20% - 4px);
  /* 初期状態 */
  animation: spin180Reverse 0.6s ease forwards;
  /* hover中は正方向再生 */
}
@media screen and (max-width: 768px) {
  .gnav .gnav_inner .gnav_item {
    animation: none;
  }
}
.gnav .gnav_inner .gnav_item:hover {
  animation: spin180 0.6s ease forwards;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_inner .gnav_item:hover {
    animation: none;
  }
}
@media screen and (max-width: 768px) {
  .gnav .gnav_inner .gnav_item {
    width: 40px;
  }
}
.gnav .gnav_inner .gnav_item a {
  width: 100%;
  display: block;
  margin-bottom: 0 10px;
  transition: 0.2s;
}
.gnav .gnav_inner .gnav_item a:hover {
  transform: translateZ(-1);
}

.sns-nav-pc {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.sns-nav-pc li {
  width: 40px;
}
.sns-nav-pc li a {
  width: 40px;
  display: block;
  transition: 0.2s;
}
.sns-nav-pc li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .sns-nav-pc {
    display: none;
  }
}

.sns-nav-sp {
  display: none;
  justify-content: center;
  margin-bottom: 16px;
  z-index: 1012;
}
.sns-nav-sp li {
  width: 40px;
  padding: 10px;
}
.sns-nav-sp li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-nav-sp li a img {
  width: 40px;
}
@media screen and (max-width: 768px) {
  .sns-nav-sp {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
  }
}

.movie_btn-menu {
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 84%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .movie_btn-menu {
    width: 84%;
    max-width: 220px;
    margin: 0 auto;
  }
}
.movie_btn-menu .movie_btn-base {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 55%;
}
.movie_btn-menu .movie_btn-base video, .movie_btn-menu .movie_btn-base img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.movie_btn-menu .play-circle {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.movie_btn-menu .play-circle .play-circle-base {
  position: relative;
  transition: 0.4s;
}
.movie_btn-menu .play-circle .play-circle-arrow {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.movie_btn-menu:hover .play-circle .play-circle-base {
  transform: rotate(90deg);
}
.movie_btn-menu:hover .movie_btn-base video, .movie_btn-menu:hover .movie_btn-base img {
  transform: scale(1.1);
  filter: brightness(120%);
}

.nav_bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #000;
  background-image: url(../img/bg_nav.jpg);
  background-size: cover;
  background-size: 350%;
  background-position: left top;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    display: block;
  }
}

.nav_btn {
  z-index: 1011;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: none;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: block;
    box-shadow: none;
    background-image: none;
  }
}
.nav_btn .bar {
  position: absolute;
  background-color: #FEFEFE;
  transition: 0.2s;
  height: 3px;
  width: 28px;
  left: 16px;
}
.nav_btn .bar.bar1 {
  top: 19px;
}
.nav_btn .bar.bar2 {
  transition-delay: 0.05s;
  top: 29px;
}
.nav_btn .bar.bar3 {
  transition-delay: 0.1s;
  top: 39px;
}
.nav_btn .bar.bar4 {
  width: 0;
  transition-delay: 0.2s;
  transform-origin: left top;
  transform: rotate(45deg);
  top: 19px;
  left: 21px;
}
.nav_btn .bar.bar5 {
  width: 0;
  transition-delay: 0.15s;
  transform-origin: right top;
  transform: rotate(-45deg);
  top: 19px;
  left: unset;
  right: 21px;
}
.nav_btn.active {
  background-image: none;
}
.nav_btn.active .bar.bar1, .nav_btn.active .bar.bar2, .nav_btn.active .bar.bar3 {
  width: 0;
}
.nav_btn.active .bar.bar4, .nav_btn.active .bar.bar5 {
  width: 28px;
}

/* SPメニュー開時に本体スクロール止める */
body.nav-open {
  overflow: hidden;
}

/* アニメ前の見た目を少しだけ調整（transform原点） */
.gnav_logo img {
  transform-origin: center;
}

.gnav_inner .gnav_item {
  transform-origin: center;
}

.movie_btn-menu {
  transform-origin: center;
}

:root {
  --split: 1220ms;
}

.loading {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.loading::before, .loading::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  background: #000;
  z-index: 10;
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.2s ease-out;
  transition-delay: 1220ms;
}
.loading::before {
  top: 0;
  height: 51%;
}
.loading::after {
  bottom: 0;
  height: 51%;
}
.loading .loader {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading .loader img {
  display: block;
  height: auto;
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease-out 0.6s;
  will-change: opacity;
}
.loading .loader-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%; /* ← 100vwだとスクロール幅分ズレることがあるので%に */
  height: 1px;
  background: rgba(80, 80, 80, 0.95);
  transform: translate(-101%, -50%); /* ← 初期は左外へ。-100%だと1px見えることがある */
  opacity: 0; /* ← 初期は見せない */
  visibility: hidden; /* ← 初期は見せない（ちらつき防止） */
  z-index: 19; /* ← パネル(10)の上・ロゴ(20)の下にしたい場合は19に */
  will-change: transform, opacity;
}
.loading.is-started .loader img {
  opacity: 0;
  z-index: 2;
  position: relative;
}
.loading.is-started .loader-line {
  visibility: visible;
  animation: runLine 0.5s ease-out 0.5s forwards;
}
.loading.is-started::before {
  transform: translateY(-100%);
}
.loading.is-started::after {
  transform: translateY(100%);
}

@keyframes runLine {
  0% {
    transform: translate(-100%, -50%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translate(100%, -50%);
    opacity: 0.6;
  }
}
/* ========== #top アニメ ========== */
#top .base {
  transform: scale(1.03);
  transition: transform 3s ease-out;
}
#top .copy_tate {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition-delay: calc(var(--split) + 300ms);
}
#top .title,
#top .release {
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
#top .title {
  transition-delay: calc(var(--split) + 450ms);
}
#top .release {
  transition-delay: calc(var(--split) + 650ms);
}
#top .hash,
#top .kvcre {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
#top .hash {
  transition-delay: calc(var(--split) + 740ms);
}
#top .kvcre {
  transition-delay: calc(var(--split) + 820ms);
}
#top.stage-start .base {
  transform: scale(1);
}
#top.stage-start .copy_tate {
  opacity: 1;
  transform: translateY(0);
}
#top.stage-start .title,
#top.stage-start .release {
  opacity: 1;
  transform: scale(1);
}
#top.stage-start .hash,
#top.stage-start .kvcre {
  opacity: 1;
  transform: translateX(0);
}

/* ローディング共通ロゴサイズ */
.loader img {
  max-width: 340px;
  min-width: 160px;
  width: 50%;
  width: clamp(160px, 28vw, 340px);
  height: auto;
  display: block;
}

/* ========== サブページ簡易ローダー ========== */
.body_sub .loading-sub {
  position: fixed;
  background-color: #000;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.body_sub .loading-sub .loader {
  opacity: 0.32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-image: url(../img/bg.jpg);
  background-size: 1000px;
  z-index: -10;
}

.hibana {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  mix-blend-mode: screen;
}
.hibana video {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  -o-object-fit: cover;
     object-fit: cover;
}

#footer {
  position: relative;
  padding: 50px 50px 50px;
  background-color: #000;
  color: #FEFEFE;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #footer {
    font-size: 12px;
    padding: 40px 20px 60px;
  }
}
#footer a {
  color: #FEFEFE;
}
#footer .to_top {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #footer .to_top {
    width: 45px;
    height: 45px;
  }
}
#footer .to_top .to_top-base {
  position: relative;
  transition: 0.4s;
}
#footer .to_top .to_top-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.2s;
}
#footer .to_top:hover .to_top-arrow {
  transform: translateY(-3px);
}
#footer .to_top:hover .to_top-base {
  transform: rotate(90deg);
}
#footer ul.share-texts {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 32px;
}
#footer ul.share-texts .icon-share {
  width: 16px;
}
#footer ul.share-texts a, #footer ul.share-texts #copy-button {
  cursor: pointer;
  transition: 0.1s;
}
#footer ul.share-texts a:hover, #footer ul.share-texts #copy-button:hover {
  opacity: 0.5;
}
#footer .wb_logo {
  width: 80px;
  margin: 0 auto 20px;
}
#footer ul.wb_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  #footer ul.wb_sns {
    gap: 14px;
  }
}
#footer ul.wb_sns li a {
  transition: 0.1s;
}
#footer ul.wb_sns li a:hover {
  opacity: 0.5;
}
#footer ul.wb_sns li a img {
  height: 40px;
  width: auto;
}
#footer ul.policies {
  display: flex;
  justify-content: center;
  gap: 1.4em;
  margin: 0 auto 20px;
  margin-left: -1em;
}
#footer ul.policies a {
  transition: 0.1s;
}
#footer ul.policies a:hover {
  opacity: 0.5;
}
#footer .copyright-footer {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #footer .copyright-footer {
    max-width: 260px;
  }
}

.content img {
  width: auto;
}
.content p {
  font-weight: 500;
  text-align: justify;
}
.content p.has-text-align-center {
  text-align: center;
}
.content p.has-text-align-right {
  text-align: right;
}
.content p.has-text-align-left {
  text-align: left;
}
.content strong {
  font-weight: 800;
}
.content .embed-youtube,
.content .wp-embed-aspect-16-9,
.content .wp-block-embed.is-type-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.content .embed-youtube iframe,
.content .wp-embed-aspect-16-9 iframe,
.content .wp-block-embed.is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content .wp-block-embed-x iframe,
.content .wp-block-embed-twitter iframe,
.content .wp-block-embed-instagram iframe,
.content .wp-block-embed-wordpress iframe,
.content .wp-block-embed-spotify iframe,
.content .wp-block-embed-facebook iframe {
  width: 100%;
  height: auto;
}
.content blockquote.twitter-tweet {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0;
  margin: 2em auto;
}
.content blockquote.twitter-tweet iframe {
  width: 100% !important;
  height: auto !important;
}
.content .has-text-color:not([class*=-color]) {
  color: inherit !important;
}
.content .has-background:not([class*=-background-color]) {
  background-color: inherit !important;
}
.content .has-text-color.has-white-color {
  color: #fff !important;
}
.content .has-text-color.has-black-color {
  color: #000 !important;
}
.content .has-text-color.has-red-color {
  color: red !important;
}
.content .has-black-color {
  color: #000000 !important;
}
.content .has-white-color {
  color: #ffffff !important;
}
.content .has-pale-pink-color {
  color: #f78da7 !important;
}
.content .has-vivid-red-color {
  color: #cf2e2e !important;
}
.content .has-luminous-vivid-orange-color {
  color: #ff6900 !important;
}
.content .has-luminous-vivid-amber-color {
  color: #fcb900 !important;
}
.content .has-light-green-cyan-color {
  color: #7bdcb5 !important;
}
.content .has-vivid-green-cyan-color {
  color: #00d084 !important;
}
.content .has-pale-cyan-blue-color {
  color: #8ed1fc !important;
}
.content .has-vivid-cyan-blue-color {
  color: #0693e3 !important;
}
.content .has-very-light-gray-color {
  color: #eeeeee !important;
}
.content .has-cyan-bluish-gray-color {
  color: #abb8c3 !important;
}
.content .has-very-dark-gray-color {
  color: #313131 !important;
}
.content .has-vivid-purple-color {
  color: #9b51e0 !important;
}
.content .has-black-background-color {
  background-color: #000000 !important;
}
.content .has-white-background-color {
  background-color: #ffffff !important;
}
.content .has-pale-pink-background-color {
  background-color: #f78da7 !important;
}
.content .has-vivid-red-background-color {
  background-color: #cf2e2e !important;
}
.content .has-luminous-vivid-orange-background-color {
  background-color: #ff6900 !important;
}
.content .has-luminous-vivid-amber-background-color {
  background-color: #fcb900 !important;
}
.content .has-light-green-cyan-background-color {
  background-color: #7bdcb5 !important;
}
.content .has-vivid-green-cyan-background-color {
  background-color: #00d084 !important;
}
.content .has-pale-cyan-blue-background-color {
  background-color: #8ed1fc !important;
}
.content .has-vivid-cyan-blue-background-color {
  background-color: #0693e3 !important;
}
.content .has-very-light-gray-background-color {
  background-color: #eeeeee !important;
}
.content .has-cyan-bluish-gray-background-color {
  background-color: #abb8c3 !important;
}
.content .has-very-dark-gray-background-color {
  background-color: #313131 !important;
}
.content .has-vivid-purple-background-color {
  background-color: #9b51e0 !important;
}
.content .has-background {
  padding: 20px;
}
.content .has-small-font-size {
  font-size: 0.8em;
}
.content .has-medium-font-size {
  font-size: 1em;
}
.content .has-large-font-size {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .content .has-large-font-size {
    font-size: 1.2em;
  }
}
.content .has-huge-font-size {
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  .content .has-huge-font-size {
    font-size: 1.3em;
  }
}
.content .has-x-large-font-size {
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  .content .has-x-large-font-size {
    font-size: 1.5em;
  }
}
.content .aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content .alignleft {
  float: left;
}
.content .alignright {
  float: right;
}
.content .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.content .wp-block-image.alignfull img,
.content .wp-block-image.alignwide img,
.content .size-large img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
.content a {
  color: #0693e3;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.content a:hover {
  opacity: 0.7;
}
.content em {
  font-style: italic;
}
.content p, .content figure {
  min-height: 1.5em;
  margin: 1em 0;
}
.content p:empty::before {
  content: " ";
}
.content .twitter-tweet {
  margin: 0 auto;
}
.content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1em;
  margin-right: -1em;
  margin-bottom: 2em;
}
.content .wp-block-columns .wp-block-column {
  flex: 0 0 auto;
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;
}
.content .wp-block-columns .wp-block-column[style*="50%"] {
  max-width: calc(50% - 0em);
}
.content .wp-block-columns .wp-block-column[style*="33.33%"], .content .wp-block-columns .wp-block-column[style*="33.34%"] {
  max-width: calc(33.333% - 0em);
}
@media screen and (max-width: 768px) {
  .content .wp-block-columns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content .wp-block-columns.columns-2up .wp-block-column {
    width: 50% !important;
    max-width: 50% !important;
  }
  .content .wp-block-columns:not(.columns-2up) .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.content .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.content .wp-block-gallery .blocks-gallery-item {
  margin: 0;
  padding: 0;
  width: 100%;
}
.content .wp-block-gallery .blocks-gallery-item figure {
  margin: 0;
}
.content .wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.content .wp-block-gallery.columns-2 .blocks-gallery-item {
  width: calc(50% - 0.5em);
}
.content .wp-block-gallery.columns-3 .blocks-gallery-item {
  width: calc(33.333% - 0.67em);
}
.content .wp-block-gallery.columns-4 .blocks-gallery-item {
  width: calc(25% - 0.75em);
}
@media screen and (max-width: 768px) {
  .content .wp-block-gallery .blocks-gallery-item {
    width: 100% !important;
  }
}
.content .wp-block-quote {
  border-left: 3px solid #000;
  padding-left: 20px;
}
.content sup {
  font-size: 0.75em;
  vertical-align: super;
}
.content sub {
  font-size: 0.75em;
  vertical-align: sub;
}
.content s, .content del {
  text-decoration: line-through;
}
.content code {
  font-family: monospace;
  background-color: #f4f4f4;
  padding: 2px 4px;
  border-radius: 3px;
}

#top {
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .spacer {
    width: 100%;
    height: 60px;
  }
}
#top .top_inner {
  position: relative;
}
#top .top_inner .base {
  position: relative;
}
#top .top_inner h1.title {
  position: absolute;
  top: 11%;
  left: 8%;
  width: 46%;
}
@media screen and (max-width: 768px) {
  #top .top_inner h1.title {
    width: 90%;
    left: 5%;
    top: 51%;
  }
}
#top .top_inner .release {
  position: absolute;
  top: 70%;
  left: 19%;
  width: 32%;
}
@media screen and (max-width: 768px) {
  #top .top_inner .release {
    width: 58%;
    top: 87.5%;
    left: 29%;
  }
}
#top .top_inner .copy_tate {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
}
@media screen and (max-width: 768px) {
  #top .top_inner .copy_tate {
    width: 23%;
  }
}
#top .top_inner .hash {
  position: absolute;
  width: 18%;
  bottom: 4%;
  right: 1%;
  filter: drop-shadow(0 0 1px #FFF) drop-shadow(0 0 4px #FFF) drop-shadow(0 0 8px #FFF);
}
@media screen and (max-width: 768px) {
  #top .top_inner .hash {
    width: 40%;
    bottom: 0%;
    right: unset;
    left: 2%;
    filter: none;
  }
}
#top .top_inner .kvcre {
  position: absolute;
  width: 28%;
  bottom: 1.5%;
  right: 1%;
  filter: drop-shadow(0 0 1px #FFF) drop-shadow(0 0 2px #FFF) drop-shadow(0 0 4px #FFF);
}
@media screen and (max-width: 768px) {
  #top .top_inner .kvcre {
    width: 45%;
    bottom: 0%;
    right: 2%;
    filter: none;
  }
}

#top {
  position: relative;
}

#top .base {
  position: relative;
  z-index: 0;
  opacity: 1; /* ←最初から見せる */
  transform: scale(1.1); /* 炎上ぽい導入の“開始ポーズ” */
  transform-origin: 50% 50%;
  will-change: transform;
}

/* ほかは後で出す */
#top .copy_tate {
  z-index: 3;
  opacity: 0;
  will-change: clip-path, transform, opacity;
  transform: translateZ(0);
}

#top .title, #top .release, #top .hash, #top .kvcre {
  z-index: 2;
  opacity: 0;
  will-change: transform, opacity, filter;
}

#info {
  padding: 40px 0 20px;
  margin-bottom: 80px;
  background-color: #000;
  /* ブレット */
  /* 共通 bullet スタイル */
  /* アクティブ bullet */
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 0;
    margin-bottom: 60px;
  }
}
#info .swiper-bnrs {
  width: calc(100% - 0px);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
#info .swiper-bnrs .swiper-slide {
  width: calc(33.33% - 20px);
}
@media screen and (max-width: 768px) {
  #info .swiper-bnrs .swiper-slide {
    width: 280px; /* 固定幅 */
  }
}
#info .swiper-bnrs img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.2s;
}
#info .swiper-bnrs img:hover {
  opacity: 0.7;
}
#info .swiper-bnrs .swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
#info .swiper-bnrs .swiper-pagination-bullet {
  background: #666;
  opacity: 0.4;
}
#info .swiper-bnrs .swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}
#info .swiper-bnrs .swiper-pagination-bullet {
  width: 18px; /* 画像の大きさに合わせる */
  height: 18px;
  background: url("../img/bullet.svg") no-repeat center/contain;
  margin: 0 2px !important; /* bullet 間の余白 */
  opacity: 1;
}
#info .swiper-bnrs .swiper-pagination-bullet-active {
  opacity: 0.5; /* アクティブ時は濃く */
}

ul#news-list li.news-item, #top-news-list li.news-item {
  width: 100%;
  will-change: transform, opacity;
}
ul#news-list li.news-item a, #top-news-list li.news-item a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: solid 1px #765600;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  ul#news-list li.news-item a, #top-news-list li.news-item a {
    padding: 10px 0 16px;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
ul#news-list li.news-item a:hover, #top-news-list li.news-item a:hover {
  transform: translateX(5px);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  ul#news-list li.news-item a:hover, #top-news-list li.news-item a:hover {
    transform: translateX(0px);
  }
}
ul#news-list li.news-item a .date, #top-news-list li.news-item a .date {
  width: 10em;
}
@media screen and (max-width: 768px) {
  ul#news-list li.news-item a .date, #top-news-list li.news-item a .date {
    width: 100%;
    line-height: 1.4;
    margin-bottom: 0.25em;
  }
}
ul#news-list li.news-item a .date span, #top-news-list li.news-item a .date span {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  ul#news-list li.news-item a .date span, #top-news-list li.news-item a .date span {
    font-size: 1.5em;
  }
}
ul#news-list li.news-item a .post-title, #top-news-list li.news-item a .post-title {
  width: calc(100% - 9em);
  font-size: 1.125em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  ul#news-list li.news-item a .post-title, #top-news-list li.news-item a .post-title {
    width: 100%;
  }
}

#news-pager {
  margin-top: 40px;
}
#news-pager .pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#news-pager .pager a {
  background-color: #765600;
  color: #FEFEFE;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #news-pager .pager a {
    font-size: 14px;
  }
}
#news-pager .pager a.is-current {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(100%);
}
#news-pager .pager a:hover {
  filter: brightness(1.2);
}

#post-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#post-nav .nav-link-prev, #post-nav .nav-link-next, #post-nav .invalid {
  width: 2.5em;
  height: 2.5em;
  padding: 12px 0;
  background-color: #765600;
  color: #FEFEFE;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
#post-nav .nav-link-prev:hover, #post-nav .nav-link-next:hover, #post-nav .invalid:hover {
  filter: brightness(1.2);
}
#post-nav .btn-kazari {
  margin: 0;
}
#post-nav .invalid {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(100%);
}

#news-top .section_inner .section_main {
  text-align: center;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main {
    padding: 30px 20px;
  }
}
#news-top .section_inner .section_main h2 {
  margin-bottom: 20px;
}
#news-top .section_inner .section_main ul {
  text-align: left;
  margin-bottom: 40px;
}

#news-index .section_inner .section_main h2 {
  margin-bottom: 20px;
}

#news-article .section_inner .section_main h2 {
  margin-bottom: 40px;
}
#news-article .section_inner .section_main #post-detail .news-titles {
  display: flex;
  align-items: flex-end;
  line-height: 1.4;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #news-article .section_inner .section_main #post-detail .news-titles {
    flex-wrap: wrap;
  }
}
#news-article .section_inner .section_main #post-detail .news-titles .news-date {
  width: 10em;
}
#news-article .section_inner .section_main #post-detail .news-titles .news-date span {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  #news-article .section_inner .section_main #post-detail .news-titles .news-date {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
#news-article .section_inner .section_main #post-detail .news-titles .post-title {
  width: calc(100% - 6.5em);
  font-size: 1.5em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #news-article .section_inner .section_main #post-detail .news-titles .post-title {
    width: 100%;
    font-size: 1.35em;
  }
}
#news-article .section_inner .section_main .content {
  border-top: solid 1px #765600;
  border-bottom: solid 1px #765600;
  margin: 1em 0;
  padding: 1.5em 0;
  line-height: 2;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

#movie {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #movie {
    margin-bottom: 60px;
  }
}
#movie h2 {
  margin-bottom: 20px;
}
#movie .movie_btn {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
#movie .movie_btn .movie_btn-base {
  position: relative;
  padding-top: 32%;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 768px) {
  #movie .movie_btn .movie_btn-base {
    padding-top: 50%;
  }
}
#movie .movie_btn .movie_btn-base video, #movie .movie_btn .movie_btn-base img {
  transition: 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
#movie .movie_btn .play-circle {
  position: absolute;
  width: 10%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.32;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  #movie .movie_btn .play-circle {
    width: 25%;
  }
}
#movie .movie_btn .play-circle .play-circle-base {
  position: relative;
  transition: 0.2s;
}
#movie .movie_btn .play-circle .play-circle-arrow {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#movie .movie_btn:hover .play-circle .play-circle-base {
  transform: rotate(90deg);
}
#movie .movie_btn:hover .movie_btn-base video, #movie .movie_btn:hover .movie_btn-base img {
  transform: scale(1.05);
  filter: brightness(120%);
}

#movie-window .youtube_outer {
  display: none;
  z-index: 9997;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #movie-window .youtube_outer {
    margin-bottom: 0px;
    max-width: unset;
  }
}
#movie-window .youtube_outer .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#movie-window .youtube_outer .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-movie {
  display: none;
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  cursor: pointer;
  z-index: 9995;
}

.close_btn-movie {
  cursor: pointer;
  display: none;
  z-index: 9996;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
}

.close_btn-movie::before,
.close_btn-movie::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%; /* ボタンサイズに応じて長さ調整 */
  height: 3px;
  background: #fff; /* 色はお好みで */
  transform-origin: center;
}

.close_btn-movie::before {
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.2s;
}

.close_btn-movie::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: 0.2s;
}

.close_btn-movie:hover::before {
  transform: translate(-50%, -50%) rotate(35deg);
}
.close_btn-movie:hover::after {
  transform: translate(-50%, -50%) rotate(-35deg);
}

/* SPサイズ（768px以下） */
@media (max-width: 768px) {
  .close_btn-movie {
    width: 60px;
    height: 60px;
  }
  .close_btn-movie::before,
  .close_btn-movie::after {
    width: 70%;
    height: 3px;
  }
}
#intro .section_inner {
  position: relative;
}
#intro .section_inner .mon-top {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 370px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .mon-top {
    top: 10px;
    left: 10px;
    width: 200px;
  }
}
#intro .section_inner .mon-bottom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 370px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .mon-bottom {
    width: 200px;
    bottom: 10px;
    right: 10px;
  }
}
#intro .section_inner .section_main {
  position: relative;
  text-align: center;
}
#intro .section_inner .section_main h2 {
  margin-bottom: 20px;
}
#intro .section_inner .section_main h3 {
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h3 {
    width: 50%;
    margin: 0 auto 20px;
  }
}
#intro .section_inner .section_main h4 {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
  width: 84%;
  max-width: 532px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h4 {
    width: 100%;
    margin: 0 auto 20px;
  }
}
#intro .section_inner .section_main .text_body .block {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body .block {
    margin-bottom: 1em;
  }
}
#intro .section_inner .section_main .text_body p {
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body p {
    line-height: 2;
    margin-bottom: 0.5em;
  }
}
#intro .section_inner .section_main .text_body p.lead {
  line-height: 1.6;
  font-size: 1.8em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body p.lead {
    font-size: 1.3em;
    line-height: 2;
  }
}
#intro .section_inner .section_main .text_body p.lead-last {
  line-height: 1.6;
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body p.lead-last {
    font-size: 1.2em;
    line-height: 2;
  }
}
#intro .section_inner .section_main .text_body span {
  display: inline-block;
}

#intro .text_body span {
  will-change: transform, opacity;
}/*# sourceMappingURL=style.css.map */