@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/bg01.jpg);
  background-size: 100%;
  font-size: 16px;
  color: #333;
  background-color: #FFF;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  body {
    background-size: 1920px;
    font-size: 14px;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

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;
}

.contents {
  flex: 1;
}

.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;
  }
}

/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 2.5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

/*-------------------------------*/
.imgs3 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .imgs3 {
    display: block;
    padding: 20px;
  }
  .imgs3 div:first-of-type {
    width: 70%;
    margin: 0 0 20px auto;
  }
  .imgs3 div:last-of-type {
    width: 70%;
    margin: 20px auto 0 0;
  }
}
@media screen and (max-width: 768px) {
  .imgs3 {
    max-width: 500px;
    margin: 0 auto;
  }
}

.imgs-bottom {
  display: flex;
  flex-wrap: wrap;
}
.imgs-bottom div {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .imgs-bottom div {
    width: 50%;
  }
  .imgs-bottom div:last-of-type {
    width: 100%;
  }
}

.imgs5 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 768px) {
  .imgs5 {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
  }
  .imgs5 div {
    width: 100%;
  }
  .imgs5 div:first-of-type, .imgs5 div:last-of-type {
    width: calc(40% - 10px);
  }
  .imgs5 div:first-of-type {
    margin: auto 0 0 0;
  }
  .imgs5 div:nth-of-type(2), .imgs5 div:nth-of-type(4) {
    width: calc(60% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .imgs5 {
    max-width: 500px;
    margin: 0 auto;
  }
}

.bg_hanabi-left {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-image: url(img/bg_hanabi-left.webp);
  background-size: 100%;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .bg_hanabi-left {
    width: 80%;
    left: 10%;
  }
}

.bg_hanabi-right {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background-image: url(img/bg_hanabi-right.webp);
  background-size: 100%;
  background-repeat: repeat-y;
  display: none;
}

.loading {
  background-color: #fff;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  background-image: url(img/bg01.jpg);
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loader {
  max-width: 200px;
  width: 32%;
}
.loading .loader img {
  opacity: 0.2;
}

.kv_kaku {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.kv_kaku img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .kv_kaku {
    display: none;
  }
}

.imgs_chara {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr;
}
.imgs_chara img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 768px) {
  .imgs_chara img {
    aspect-ratio: 6/5;
  }
}
.imgs_chara img.imgn12 {
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}

/* ---- カギカッコの位置調整用ユーティリティ ----
   例：<span class="kakko-r">「君と花火と約束と」</span>
   ※ お好みで rl 両方使い分けてください */
@media screen and (max-width: 768px) {
  .kakko-l {
    margin-left: -0.5em;
    display: inline-block;
  }
}

/* ---- ルビ（本文中で行間が崩れないように） ---- */
ruby {
  ruby-position: over;
}
ruby rt {
  font-size: 0.5em;
  font-weight: inherit;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/*nav----------------------------*/
.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    mix-blend-mode: exclusion;
    display: unset;
    top: 0px;
    right: 0px;
    transition: 1s;
    position: fixed;
    width: 60px;
    height: 60px;
  }
}
.nav_btn span {
  transition: 1s;
  width: 2px;
  height: 32px;
  background-color: #fff;
  position: absolute;
}
.nav_btn span:first-of-type {
  left: 16px;
  top: 14px;
  transform-origin: center center;
}
.nav_btn span:nth-of-type(2) {
  top: 14px;
  right: 29px;
}
.nav_btn span:last-of-type {
  top: 14px;
  right: 16px;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .nav_btn.active {
    opacity: 1;
  }
}
.nav_btn.show span:first-of-type {
  transform: rotate(-225deg);
  left: 29px;
}
.nav_btn.show span:nth-of-type(2) {
  opacity: 0;
}
.nav_btn.show span:last-of-type {
  transform: rotate(225deg);
  right: 29px;
}

.gnav {
  position: fixed;
  top: 0;
  right: 40px;
  z-index: 100;
  mix-blend-mode: difference;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
  padding: 0 1.6em 0 0.8em;
  transition: 0.8s;
  opacity: 0;
  filter: brightness(200%) blur(10px);
  transform: translateY(20px);
  transition: 2s;
  clip-path: circle(0%);
}
.gnav a {
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .gnav {
    transition: 0.8s;
    background-image: url(img/bg01.jpg);
    background-color: #fff;
    background-size: 1920px;
    mix-blend-mode: unset;
    right: 0%;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 0;
    transform: scale(0.95) translateY(40px);
    transform-origin: center bottom;
    pointer-events: none;
    clip-path: circle(0%);
    z-index: 103;
    opacity: 0;
  }
}
.gnav.active {
  opacity: 1;
  filter: brightness(100%) blur(0);
  transform: translateY(0px);
  clip-path: circle(100%);
}
@media screen and (max-width: 768px) {
  .gnav.active {
    transform: scale(0.95) translateY(40px);
    transform-origin: center bottom;
    opacity: 0;
    clip-path: circle(0%);
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .gnav.show {
    height: 100%;
    width: 100%;
    pointer-events: all;
    right: 0;
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(100%) blur(0);
    clip-path: circle(100%);
  }
}
.gnav .border-left, .gnav .border-right {
  position: absolute;
  top: 0;
  width: 1px;
  background: linear-gradient(to bottom, #FFF 0%, transparent 100%);
}
.gnav .border-left {
  height: 150px;
  left: 0;
}
.gnav .border-right {
  height: 250px;
  right: 0;
}
.gnav .title_nav {
  pointer-events: none;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .gnav .title_nav {
    display: block;
    opacity: 0.2;
  }
}
.gnav .hanabi_nav {
  pointer-events: none;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .gnav .hanabi_nav {
    display: block;
  }
}
.gnav .gnav_list {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    order: 2;
    justify-content: center;
    padding: 24px 0;
    margin-top: 0;
    width: 100%;
    border-top: 1px solid #333;
  }
  .gnav .gnav_list:last-of-type {
    border-bottom: 1px solid #333;
  }
}
.gnav .gnav_list li a {
  writing-mode: vertical-lr;
  letter-spacing: 0.5em;
  padding: 0 0.65em;
  color: #FFF;
  transition: 0.2s;
  display: block;
}
.gnav .gnav_list li a:hover {
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.125em;
    color: #333;
    font-weight: 800;
    min-width: 36px;
  }
}
.gnav .gnav_sns {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin-left: 0.8em;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_sns {
    order: 1;
    flex-direction: row;
    gap: 2em;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 24px;
  }
}
.gnav .gnav_sns li a {
  transition: 0.2s;
  display: block;
}
.gnav .gnav_sns li a:hover {
  transform: translateY(4px);
}
.gnav .gnav_sns li a img {
  width: 22px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_sns li a img {
    mix-blend-mode: difference;
  }
}

.top_btn {
  z-index: 99;
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 0px;
  right: 0px;
  cursor: pointer;
  mix-blend-mode: difference;
  opacity: 0;
  transition: 0.4s;
  transform: translateY(10px);
}
.top_btn::before {
  content: "▲";
  top: 50%;
  left: 50%;
  font-size: 0.8em;
  transform: scale(1, 0.6) translate(-50%, -90%);
  position: absolute;
  color: #FFF;
}
.top_btn.active {
  transform: translateY(0px);
  opacity: 1;
}
.top_btn:hover {
  transform: translateY(-2px);
}

/*-------------------------------*/
h2.h2-default {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  h2.h2-default {
    margin-bottom: 20px;
  }
}
h2.h2-default .title_jp img {
  height: 32px;
  width: auto;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  h2.h2-default .title_jp img {
    height: 22px;
    width: auto;
  }
}
h2.h2-default .title_en {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  opacity: 0.5;
  font-size: 0.9em;
  text-indent: 0.5em;
}

section.section-radious {
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.section-radious {
    padding: 20px;
  }
}
section.section-radious .section_inner {
  border-radius: 30px;
  padding: 80px 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  section.section-radious .section_inner {
    border-radius: 20px;
    padding: 60px 20px;
  }
}
section.section-radious .section_inner .section_main {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  section.section-radious .section_inner .section_main {
    max-width: 500px;
  }
}

section.section-default {
  position: relative;
}
section.section-default .section_inner {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner {
    padding: 60px 20px;
  }
}
section.section-default .section_inner .section_main {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    max-width: 500px;
  }
}

p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 1em;
}
p:last-of-type {
  margin-bottom: 0;
}

#top {
  position: relative;
  overflow: hidden;
}
#top .main {
  position: relative;
  transition: 1s;
  filter: brightness(200%);
  transition: transform 8s, filter 0.4s;
  transform: scale(1.2);
}
#top .main.in-view {
  filter: brightness(100%);
  transform: scale(1);
  opacity: 1;
}
#top .copy_tate {
  position: absolute;
  width: 2%;
  left: 2.5%;
  top: 5.5%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    display: block;
    width: 6.1%;
    top: 4%;
    left: 4%;
  }
}
#top .copy_tate img {
  filter: drop-shadow(0 0 2px rgba(243, 154, 0, 0.1)) drop-shadow(0 0 2px rgba(243, 154, 0, 0.6)) drop-shadow(0 0 2px rgb(243, 154, 0));
}
#top .copy_tate {
  transition: 1s;
  opacity: 0;
  transform: translateY(10px);
}
#top .copy_tate.in-view {
  transform: translateY(0px);
  opacity: 1;
}
#top .copy_tate2-1,
#top .copy_tate2-2 {
  position: absolute;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
#top .copy_tate2-1 img,
#top .copy_tate2-2 img {
  filter: drop-shadow(0 0 2px rgba(0, 40, 87, 0.9)) drop-shadow(0 0 6px rgba(0, 57, 143, 0.6)) drop-shadow(0 0 14px rgba(0, 39, 112, 0.45));
}
#top .copy_tate2-1.in-view,
#top .copy_tate2-2.in-view {
  transform: translateY(0);
  opacity: 1;
}
#top .copy_tate2-1 {
  width: 2.1%;
  left: 5%;
  top: 4.5%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate2-1 {
    display: block;
    width: 6.1%;
    top: 1%;
    left: unset;
    right: 1%;
  }
  #top .copy_tate2-1 img {
    filter: drop-shadow(0 0 2px rgba(94, 0, 0, 0.9)) drop-shadow(0 0 6px rgba(255, 0, 0, 0.6)) drop-shadow(0 0 14px rgba(182, 0, 0, 0.45));
  }
}
#top .copy_tate2-2 {
  width: 2.1%;
  left: 1.5%;
  top: 5%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate2-2 {
    display: block;
    width: 6.1%;
    top: 1%;
    left: 1%;
  }
}
#top .title {
  position: absolute;
  width: 23%;
  top: 8%;
  left: 74%;
}
@media screen and (max-width: 768px) {
  #top .title {
    left: unset;
    display: block;
    width: 40%;
    top: 6%;
    right: 30%;
  }
}
#top .title img {
  filter: drop-shadow(0px 0px 2px rgba(44, 6, 6, 0.5)) drop-shadow(0px 0px 2px rgba(59, 11, 11, 0.8)) drop-shadow(0px 0px 6px rgba(23, 28, 97, 0.5));
}
#top .title {
  transition: 2s;
  opacity: 0;
  transform: translateY(20px) scale(1);
}
#top .title.in-view {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 23%;
  bottom: 3.8%;
  left: 3%;
}
@media screen and (max-width: 768px) {
  #top .release {
    left: unset;
    display: block;
    width: 44%;
    bottom: 8%;
    right: 5%;
  }
}
#top .release img {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.486));
}
#top .release {
  transition: 1s;
  opacity: 0;
  transform: translateY(10px);
}
#top .release.in-view {
  transform: translateY(0px);
  opacity: 1;
}
#top .release2 {
  position: absolute;
  width: 15%;
  bottom: 9.5%;
  left: 78%;
}
@media screen and (max-width: 768px) {
  #top .release2 {
    left: unset;
    display: block;
    width: 36%;
    bottom: 4%;
    right: 32%;
  }
}
#top .release2 img {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.486));
}
#top .release2 {
  transition: 1s;
  opacity: 0;
  transform: translateY(10px);
}
#top .release2.in-view {
  transform: translateY(0px);
  opacity: 1;
}
#top .copy_yoko {
  position: absolute;
  width: 67.5%;
  right: 3%;
  bottom: 4%;
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    display: block;
    width: 90%;
    bottom: 3%;
    right: 5%;
  }
}
#top .copy_yoko img {
  filter: drop-shadow(0 0 2px rgba(243, 154, 0, 0.1)) drop-shadow(0 0 2px rgba(243, 154, 0, 0.6)) drop-shadow(0 0 2px rgb(243, 154, 0));
}
#top .copy_yoko {
  transition: 1s;
  opacity: 0;
  transform: translateY(10px);
}
#top .copy_yoko.in-view {
  transform: translateY(0px);
  opacity: 1;
}

.img_kv3 {
  position: relative;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 768px) {
  .img_kv3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.copy_yoko2 {
  position: relative;
  z-index: 1;
  width: 86%;
  margin: 0 auto;
  padding: 16px 20px 0;
}
@media screen and (max-width: 768px) {
  .copy_yoko2 {
    width: 90%;
    padding: 0;
  }
}

#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 20px;
}
#info .tkts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #info .tkts {
    margin-bottom: 30px;
    gap: 10px;
  }
}
#info .tkts .tkt {
  width: calc(50% - 5px);
  max-width: 405px;
}
@media screen and (max-width: 768px) {
  #info .tkts .tkt {
    width: 100%;
  }
}
#info .tkts .tkt a {
  display: block;
  transition: 0.2s;
}
#info .tkts .tkt a:hover {
  opacity: 0.7;
}
#info .section_inner {
  background-image: url(img/bg02.jpg);
  background-size: cover;
  padding: 60px 0px 40px;
}
@media screen and (max-width: 768px) {
  #info .section_inner {
    padding: 40px 0px 40px;
  }
}
#info .menu-area {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #info .menu-area {
    margin-bottom: 0;
  }
}
#info .menu-area__heading {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  text-align: center;
  margin-bottom: 1em;
}
#info .menu-list {
  display: flex;
  justify-content: center;
  gap: 18px;
  overflow: auto;
  padding: 0px 20px 30px;
}
@media screen and (max-width: 768px) {
  #info .menu-list {
    padding: 0px 20px 20px;
    justify-content: flex-start;
  }
}
#info .menu-list a {
  display: block;
  width: 60px;
  min-width: 60px;
  opacity: 0.9;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 768px) {
  #info .menu-list a {
    width: 70px;
  }
}
#info .menu-list a img {
  overflow: hidden;
  border-radius: 10px;
  transition: 0.4s;
}
#info .menu-list a img:hover {
  transform: translateY(6px);
}
#info .news-list__heading {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  text-align: center;
  margin-bottom: 1em;
}
#info .scroll-texts {
  display: none;
}
@media screen and (max-width: 768px) {
  #info .scroll-texts {
    display: block;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 1em;
    align-items: center;
    opacity: 1;
    transition: 1s ease;
    clip-path: inset(0);
  }
  #info .scroll-texts.is-hide {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
  }
  #info .scroll-texts .line {
    width: 100px;
    height: 1px;
    background-color: #333;
  }
}

#trailer {
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #trailer {
    padding: 40px 0;
  }
}
#trailer h2 {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #trailer h2 {
    margin-bottom: 30px;
    padding: 0 20px;
  }
}

.trailer-swiper-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .trailer-swiper-wrapper {
    padding: 0;
  }
}

.trailer-swiper {
  overflow: visible;
  width: 100%;
}
.trailer-swiper .swiper-slide {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .trailer-swiper .swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .trailer-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.35;
  }
}
.trailer-swiper__thumb {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.trailer-swiper__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trailer-swiper__thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  background-image: url(img/play-circle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  transition: 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .trailer-swiper__thumb::before {
    width: 20%;
  }
}
.trailer-swiper__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s;
}
.trailer-swiper__thumb:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
.trailer-swiper__thumb:hover::before {
  transform: translate(-50%, -50%) scale(1.08);
}
.trailer-swiper__prev, .trailer-swiper__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  z-index: 5;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .trailer-swiper__prev, .trailer-swiper__next {
    width: 40px;
    height: 40px;
  }
}
.trailer-swiper__prev img, .trailer-swiper__next img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.trailer-swiper__prev:hover, .trailer-swiper__next:hover {
  opacity: 0.7;
}
.trailer-swiper__prev.is-disabled, .trailer-swiper__next.is-disabled {
  opacity: 0.32;
  pointer-events: none;
}
.trailer-swiper__prev {
  left: -80px;
}
@media screen and (max-width: 768px) {
  .trailer-swiper__prev {
    left: 0;
  }
}
.trailer-swiper__next {
  right: -80px;
}
@media screen and (max-width: 768px) {
  .trailer-swiper__next {
    right: 0;
  }
}
.trailer-swiper__pagination {
  text-align: center;
  margin-top: 18px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .trailer-swiper__pagination {
    margin-top: 14px;
  }
}
.trailer-swiper__pagination .swiper-pagination-bullet {
  background: #0b2644;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: 0.2s;
}
.trailer-swiper__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #148cc5;
}

.trailer_tabs {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 5px;
  margin: 24px auto 0;
  padding: 0 50px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .trailer_tabs {
    gap: 0px;
    margin-top: 12px;
    padding: 0 20px;
  }
}
.trailer_tabs li {
  height: 40px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2644;
  border-radius: 5px;
  transition: 0.2s;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .trailer_tabs li {
    font-size: 12px;
    padding: 0 10px;
    height: 30px;
  }
}
.trailer_tabs li:hover {
  color: #148cc5;
}
.trailer_tabs li.active {
  color: #148cc5;
  cursor: default;
  pointer-events: none;
}

/* --- Trailer Modal --- */
.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.trailer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.trailer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.trailer-modal__inner {
  position: relative;
  width: min(100vw - 80px, (100svh - 160px) * 16 / 9);
  max-width: 1600px;
}
@media screen and (max-width: 768px) {
  .trailer-modal__inner {
    width: calc(100% - 0px);
  }
}
.trailer-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .trailer-modal__close {
    top: -36px;
    width: 28px;
    height: 28px;
  }
}
.trailer-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
}
.trailer-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.trailer-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.trailer-modal__close:hover {
  opacity: 0.7;
}
.trailer-modal__player {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.trailer-modal__player-frame {
  width: 100%;
  height: 100%;
}
.trailer-modal__player-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.trailer-modal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .trailer-modal__tabs {
    gap: 4px;
    margin-top: 12px;
  }
}
.trailer-modal__tab {
  height: 36px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: 0.2s;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .trailer-modal__tab {
    font-size: 12px;
    padding: 0 10px;
    height: 30px;
  }
}
.trailer-modal__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.trailer-modal__tab.active {
  color: #fff;
  background: #148cc5;
  cursor: default;
  pointer-events: none;
}

body.is-trailer-open {
  overflow: hidden;
}

#intro {
  position: relative;
}
#intro .hanabi-intro {
  position: absolute;
  width: 180px;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #intro .hanabi-intro {
    width: 70px;
  }
}
#intro .section_inner {
  background-color: #fff;
  position: relative;
  isolation: isolate;
}
#intro .section_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(img/bg_intro.jpg);
  background-size: cover;
  background-position: center bottom;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}
#intro .section_inner .section_main .text_body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#intro .section_inner .section_main .text_body p {
  font-weight: 600;
  text-align: center;
  line-height: 2;
  font-size: 0.95em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body p {
    text-align: justify;
  }
}

#story {
  position: relative;
}
#story .fixed_story {
  position: fixed;
  z-index: -1;
  background-image: url(img/head_story.jpg);
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  opacity: 0.1;
}
#story .section_inner {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #story .section_inner {
    padding: 60px 10px;
  }
}
#story .section_inner .section_main .text_body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#story .section_inner .section_main .text_body p {
  line-height: 2;
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body p {
    text-align: justify;
  }
}
#story .section_inner .section_main .text_body .story_lead {
  font-size: 1.15em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body .story_lead {
    margin-bottom: 0px;
    text-align: center;
  }
}

#chara {
  padding: 100px 0 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #chara {
    padding: 60px 0 60px;
  }
}
#chara .section_inner {
  padding: 0;
}
#chara .section_main {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #chara .section_main {
    max-width: 500px;
    padding: 0 20px;
  }
}

/* ---- サムネ列 ---- */
.chara-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .chara-thumbs {
    gap: 8px;
  }
}
.chara-thumbs li {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .chara-thumbs li {
    width: calc((100% - 24px) / 4);
  }
}

.chara-thumb {
  position: relative;
  display: block;
  width: 140px;
  height: 140px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.chara-thumb::after {
  content: "";
  background-image: linear-gradient(to bottom, #DDF4FF 0%, #f9f2ff 50%, #ffd4ee 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .chara-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
.chara-thumb.is-active {
  opacity: 1;
  cursor: default;
}
.chara-thumb.is-active::after {
  background-image: linear-gradient(160deg, #ffffff 0%, #c7c7c7 100%);
}
.chara-thumb.is-active .chara-thumb__deco {
  transform: rotate(45deg);
}
.chara-thumb:hover:not(.is-active) {
  opacity: 0.85;
}
.chara-thumb__deco {
  position: absolute;
  inset: 0;
  background-image: url(img/prof_btn-back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.6s ease;
}
.chara-thumb__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70.6%;
  height: 70.6%;
  transform: translate(-50%, -50%) rotate(45deg);
  overflow: hidden;
  z-index: 2;
}
.chara-thumb__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: rotate(-45deg) scale(1.42);
  transform-origin: center;
}

/* ---- 詳細スライダー ---- */
.chara-swiper-wrapper {
  position: relative;
  margin: 40px auto 0;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .chara-swiper-wrapper {
    margin-top: 0px;
  }
}
.chara-swiper-wrapper {
  /* 背景グラデ帯（PC: 両端50px余白で画面いっぱい、SP: コンテナ内） */
}
.chara-swiper-wrapper::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 100px);
  height: 400px;
  background: linear-gradient(to right, rgba(210, 240, 255, 0.6) 0%, #ffedf8 64.4%, rgba(224, 245, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .chara-swiper-wrapper::before {
    top: 30%;
    width: 100%;
    height: 320px;
  }
}

.chara-swiper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* 切替時のフェードイン
     - 画像：左から（img だけにアニメ。chara-card__img::before（花火）は動かさない）
     - テキスト（prof）：下から
     親（swiper-slide）のフェード後に同時発火
     ※ nav はアニメさせない（位置固定で見せたいので） */
}
.chara-swiper .swiper-slide .chara-card__img img {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}
.chara-swiper .swiper-slide .chara-card__prof {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}
.chara-swiper .swiper-slide.swiper-slide-active .chara-card__img img {
  opacity: 1;
  transform: translateX(0);
}
.chara-swiper .swiper-slide.swiper-slide-active .chara-card__prof {
  opacity: 1;
  transform: translateY(0);
}

.chara-card {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .chara-card {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding: 0px 0;
  }
}
.chara-card__img {
  flex: 0 0 30%;
  width: 30%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .chara-card__img {
    flex: 0 0 auto;
    width: 60%;
    max-width: 250px;
  }
}
.chara-card__img {
  /* 背景の花火（前後ボタン同様、各 card に置くが位置が同じなので見た目固定） */
}
.chara-card__img::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  background-image: url(img/hanabi02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5s;
}
.chara-card__img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.chara-card__body {
  flex: 1 1 auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .chara-card__body {
    max-width: 400px;
    width: 100%;
    gap: 20px;
    position: relative;
  }
}
.chara-card__nav {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .chara-card__nav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    gap: 20px;
  }
}
.chara-card__prof {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .chara-card__prof {
    gap: 10px;
  }
}
.chara-card__prof hr {
  width: 100%;
  height: 1px;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .chara-card__prof hr {
    display: none;
  }
  .chara-card__prof hr:last-of-type {
    display: block;
    margin-top: 6px;
  }
}
.chara-card__name {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .chara-card__name {
    font-size: 24px;
  }
}
.chara-card__romaji {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .chara-card__romaji {
    font-size: 12px;
  }
}
.chara-card__cv {
  display: inline-flex;
  align-items: baseline;
  background: #0b2644;
  color: #fff;
  border-radius: 10px;
  padding: 6px 14px;
  align-self: flex-start;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
.chara-card__cv span {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .chara-card__cv span {
    font-size: 16px;
  }
}
.chara-card__cv small {
  font-size: 14px;
  margin-left: 2px;
}
@media screen and (max-width: 768px) {
  .chara-card__cv small {
    font-size: 12px;
  }
}
.chara-card__desc {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .chara-card__desc {
    font-size: 14px;
  }
}

/* ---- 矢印（chara-card__body 内 .chara-card__nav に flex で並ぶ） ---- */
.chara-swiper__prev,
.chara-swiper__next {
  width: 70px;
  height: 70px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .chara-swiper__prev,
  .chara-swiper__next {
    width: 50px;
    height: 50px;
  }
}
.chara-swiper__prev img,
.chara-swiper__next img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.chara-swiper__prev:hover,
.chara-swiper__next:hover {
  opacity: 0.7;
}
.chara-swiper__prev.is-disabled,
.chara-swiper__next.is-disabled {
  opacity: 0.32;
  pointer-events: none;
}

.caststaff {
  background-image: url(img/bg_prono.webp);
  background-size: 1920px;
  background-repeat: no-repeat;
}

#cast .section_inner {
  padding: 120px 50px 80px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner {
    padding: 60px 30px 40px;
  }
}
#cast .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}

.cast_btns {
  width: 100%;
  border-bottom: 1px solid rgba(169, 0, 104, 0.2);
}

.cast_btn {
  width: 100%;
  border-top: 1px solid rgba(169, 0, 104, 0.2);
}
.cast_btn.is-open .cast_btn__icon {
  background-image: url(img/minus-circle.svg);
}
.cast_btn__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 40px 60px 40px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: inherit;
  font: inherit;
}
@media screen and (max-width: 768px) {
  .cast_btn__head {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }
}
.cast_btn__head:hover .cast_btn__icon {
  opacity: 0.7;
}
.cast_btn__role {
  color: #a90068;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  width: 6em;
}
@media screen and (max-width: 768px) {
  .cast_btn__role {
    font-size: 15px;
    width: auto;
  }
}
.cast_btn__actor {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cast_btn__actor {
    font-size: 22px;
    gap: 6px;
  }
}
.cast_btn__actor small {
  font-size: 17px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .cast_btn__actor small {
    font-size: 13px;
  }
}
.cast_btn__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(img/plus-circle.svg) no-repeat center/contain;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .cast_btn__icon {
    width: 24px;
    height: 24px;
    right: 10px;
  }
}
.cast_btn__body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
  transition: max-height 0.8s ease, opacity 0.8s ease, padding 0.8s ease;
}
@media screen and (max-width: 768px) {
  .cast_btn__body {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 10px;
  }
}
.cast_btn.is-open .cast_btn__body {
  max-height: 1200px;
  opacity: 1;
  padding: 0px 20px 60px;
}
@media screen and (max-width: 768px) {
  .cast_btn.is-open .cast_btn__body {
    padding: 0px 10px 40px;
  }
}
.cast_btn__photo {
  flex: 0 0 230px;
  width: 230px;
  height: 250px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cast_btn__photo {
    flex: 0 0 auto;
    width: 230px;
    height: 250px;
  }
}
.cast_btn__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}
.cast_btn__texts {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .cast_btn__texts {
    width: 100%;
    gap: 10px;
  }
}
.cast_btn__block {
  display: flex;
  flex-direction: column;
}
.cast_btn__label {
  color: #a90068;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 0.5em;
}
.cast_btn__label::after {
  content: "--------";
}
@media screen and (max-width: 768px) {
  .cast_btn__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    font-size: 12px;
  }
  .cast_btn__label::before, .cast_btn__label::after {
    content: "";
    flex: 1;
    border-top: 1px dashed currentColor;
  }
}
.cast_btn__txt {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .cast_btn__txt {
    font-size: 14px;
  }
}

#staff .section_inner {
  padding: 40px 50px 120px;
}
@media screen and (max-width: 768px) {
  #staff .section_inner {
    padding: 30px 30px 60px;
  }
}
#staff .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}

.staff_items {
  width: 100%;
  border-bottom: 1px solid rgba(169, 0, 104, 0.2);
}

.staff_item {
  width: 100%;
  border-top: 1px solid rgba(169, 0, 104, 0.2);
}
.staff_item.is-open .staff_item__icon {
  background-image: url(img/minus-circle.svg);
}
.staff_item__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 30px 60px 30px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  color: inherit;
  font: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .staff_item__head {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }
}
.staff_item--toggle .staff_item__head {
  cursor: pointer;
}
.staff_item--toggle .staff_item__head:hover .staff_item__icon {
  opacity: 0.7;
}
.staff_item__role {
  color: #a90068;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  width: 10em;
}
@media screen and (max-width: 768px) {
  .staff_item__role {
    font-size: 15px;
    width: auto;
  }
}
.staff_item__name {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .staff_item__name {
    font-size: 19px;
  }
  .staff_item__name .staff-gen {
    margin: -0.5em auto 0.25em;
    line-height: 1.5em;
  }
}
.staff_item__name small {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .staff_item__name small {
    font-size: 14px;
    width: 100%;
  }
}
.staff_item__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(img/plus-circle.svg) no-repeat center/contain;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .staff_item__icon {
    width: 24px;
    height: 24px;
    right: 10px;
  }
}
.staff_item__body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
  transition: max-height 0.8s ease, opacity 0.8s ease, padding 0.8s ease;
}
@media screen and (max-width: 768px) {
  .staff_item__body {
    padding: 0 10px;
  }
}
.staff_item.is-open .staff_item__body {
  max-height: 2000px;
  padding: 0 20px 30px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .staff_item.is-open .staff_item__body {
    padding: 0px 10px 20px;
  }
}
.staff_item__block {
  display: flex;
  flex-direction: column;
}
.staff_item__label {
  color: #a90068;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 0.5em;
}
.staff_item__label::after {
  content: "--------";
}
@media screen and (max-width: 768px) {
  .staff_item__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    font-size: 12px;
  }
  .staff_item__label::before, .staff_item__label::after {
    content: "";
    flex: 1;
    border-top: 1px dashed currentColor;
  }
}
.staff_item__txt {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .staff_item__txt {
    font-size: 14px;
  }
}

#theme-song {
  position: relative;
  overflow: hidden;
  background-color: rgba(173, 232, 255, 0.1);
}
#theme-song .section_inner {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #theme-song .section_inner {
    padding: 60px 20px;
  }
}
#theme-song .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #theme-song .section_inner .section_main {
    gap: 20px;
  }
}
#theme-song h2 {
  margin-bottom: 0;
}

.song_main {
  width: 100%;
  max-width: 1100px;
}
.song_main img {
  width: 100%;
  height: auto;
  display: block;
}

.song_texts {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: center;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.song_title {
  font-size: 24px;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .song_title {
    font-size: 20px;
  }
}

.song_artist {
  font-size: 18px;
  margin: 0 auto 10px;
  text-align: center;
  color: #148cc5;
}
@media screen and (max-width: 768px) {
  .song_artist {
    font-size: 16px;
  }
}

.song_comment {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 2;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .song_comment {
    font-size: 13px;
    gap: 8px;
  }
}
.song_comment p {
  text-align: center;
  margin: 0;
}

.song_signature {
  font-size: 18px;
  margin: 10px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .song_signature {
    font-size: 16px;
  }
}

.news-list_wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .news-list_wrapper {
    padding: 0 20px;
    max-width: 500px;
  }
}
.news-list_wrapper .news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-list_wrapper .news-list li a {
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-start;
  gap: 3%;
  line-height: 1.4;
  transition: 0.4s;
}
.news-list_wrapper .news-list li a:hover {
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  .news-list_wrapper .news-list li a {
    flex-direction: column;
    gap: 0.5em;
  }
}
.news-list_wrapper .news-list li a .news_date {
  margin-top: 1px;
  color: #333;
  width: 8%;
  min-width: 90px;
  font-weight: 800;
}
.news-list_wrapper .news-list li a .news_category {
  display: inline-block;
  background-color: #0B2644;
  text-transform: uppercase;
  width: 10%;
  min-width: 100px;
  font-size: 0.8em;
  padding: 0.2em;
  text-align: center;
}
.news-list_wrapper .news-list li a .news_title {
  flex: 1;
  font-weight: 700;
  color: #333;
}
.news-list_wrapper .link-news {
  text-align: center;
  display: block;
  color: #333;
  margin-top: 2em;
  font-weight: 700;
  transition: 0.2s;
}
.news-list_wrapper .link-news:hover {
  opacity: 0.5;
}

.page-nation {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  gap: 1em;
  width: 80%;
  margin: 40px auto 0;
}
.page-nation a {
  color: #333;
  transition: 0.2s;
}
.page-nation a:hover {
  opacity: 0.5;
}
.page-nation .is-disabled {
  opacity: 0.32;
}
.page-nation .current {
  opacity: 0.5;
}
.page-nation.number {
  justify-content: center;
}

.body_news .contents {
  position: relative;
}
.body_news .contents .hanabi-left, .body_news .contents .hanabi-right {
  position: absolute;
  width: 240px;
  position: fixed;
  opacity: 0.32;
}
@media screen and (max-width: 768px) {
  .body_news .contents .hanabi-left, .body_news .contents .hanabi-right {
    width: 120px;
  }
}
.body_news .contents .hanabi-left {
  top: 0;
  left: 0;
}
.body_news .contents .hanabi-right {
  bottom: 0;
  right: 0;
}

#news-archive .news-list_wrapper {
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  #news-archive .news-list_wrapper {
    max-width: 500px;
    padding: 0;
  }
}
#news-archive .news-list_wrapper .news-list {
  gap: 1em;
}

#news-single {
  overflow: hidden;
}
#news-single .section_inner .section_main {
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #news-single .section_inner .section_main {
    max-width: 500px;
  }
}
#news-single .section_inner .section_main .news-article_wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  padding: 50px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  #news-single .section_inner .section_main .news-article_wrapper {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
#news-single .section_inner .section_main .news-article_wrapper .news-article {
  width: 100%;
  gap: 1em;
  display: flex;
  flex-direction: column;
}
#news-single .section_inner .section_main .news-article_wrapper .news-article .news_date {
  margin-top: 1px;
  color: #333;
  width: 8%;
  font-weight: 800;
}
#news-single .section_inner .section_main .news-article_wrapper .news-article .news_category {
  display: inline-block;
  background-color: #0B2644;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8em;
  padding: 0.5em 1em;
  text-align: center;
  min-width: 100px;
}
#news-single .section_inner .section_main .news-article_wrapper .news-article .news_title {
  flex: 1;
  font-weight: 700;
  color: #333;
  font-size: 1.5em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #news-single .section_inner .section_main .news-article_wrapper .news-article .news_title {
    font-size: 1.3em;
  }
}
#news-single .section_inner .section_main .news-article_wrapper .news-article .news_content {
  width: 100%;
  line-height: 1.8;
  padding: 30px 0;
  margin: 10px auto 0;
  border-top: dashed 1px #333;
  border-bottom: dashed 1px #333;
}
#news-single .section_inner .section_main .news-article_wrapper .news-article .news_content p {
  margin-bottom: 0.5em;
}

.news_category.category-news {
  color: #C3FFF8;
}
.news_category.category-event {
  color: #FFE2F4;
}
.news_category.category-campaign {
  color: #F5FFD7;
}
.news_category.category-goods {
  color: #C3FFD3;
}
.news_category.category-tie-up {
  color: #C3C4FF;
}
.news_category.category-special {
  color: #FFF8C3;
}

.news_content .wp-embed-aspect-16-9, .news_content .embed-youtube {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.news_content .wp-embed-aspect-16-9 .wp-block-embed__wrapper, .news_content .wp-embed-aspect-16-9 .embed-youtube__inner, .news_content .embed-youtube .wp-block-embed__wrapper, .news_content .embed-youtube .embed-youtube__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news_content .wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe, .news_content .wp-embed-aspect-16-9 .embed-youtube__inner iframe, .news_content .embed-youtube .wp-block-embed__wrapper iframe, .news_content .embed-youtube .embed-youtube__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news_content img {
  max-width: 100%;
  width: auto;
}
.news_content figure:first-of-type, .news_content .wp-block-image:first-of-type {
  margin-bottom: 2em;
}
.news_content p.has-background {
  padding: 0.25em 0.5em;
}
.news_content a {
  word-break: break-all;
  text-decoration: underline;
  transition: 0.2s;
  color: unset;
}
.news_content a:hover {
  text-decoration: none;
}

/* 下層ページ（プロノ）：背景は最初から表示。H2 → コンテンツの順に続けてフェードイン */
.page-prono #prono .h2-default {
  opacity: 0;
  transform: translateY(20px);
  animation: pronoIn 0.9s ease 0.2s forwards;
}
.page-prono #prono .prono-items {
  opacity: 0;
  transform: translateY(20px);
  animation: pronoIn 0.9s ease 0.55s forwards;
}

@keyframes pronoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#prono {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
  color: #000;
}
#prono .section_inner {
  padding: 180px 50px 180px;
}
@media screen and (max-width: 768px) {
  #prono .section_inner {
    padding: 100px 20px 120px;
  }
}
#prono .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}

.fixed_prono {
  background-image: url(img/bg_prono.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 130vh;
  height: 130svh;
  z-index: -10;
  position: fixed;
}

.fixed_prono-grad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130vh;
  height: 130svh;
  z-index: -9;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 123, 255, 0.2) 100%);
  animation: pronoGrad 8s ease-in-out infinite alternate;
}

@keyframes pronoGrad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.prono-items {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .prono-items {
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
  }
}

.prono-item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .prono-item {
    border-top: 1px solid rgba(15, 109, 154, 0.2);
  }
  .prono-item:last-child {
    border-bottom: 1px solid rgba(15, 109, 154, 0.2);
  }
  .prono-item.is-open .prono-item__icon {
    background-image: url(img/minus-fukidashi.svg);
  }
}
.prono-item__head {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .prono-item__head {
    position: relative;
    gap: 0;
    padding: 20px 50px 20px 10px;
    cursor: pointer;
    pointer-events: auto;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .prono-item__head:hover .prono-item__icon {
    opacity: 0.7;
  }
}
.prono-item__title {
  color: #0f6d9a;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .prono-item__title {
    font-size: 16px;
    white-space: normal;
  }
}
.prono-item__title small {
  font-size: 18px;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .prono-item__title small {
    font-size: 14px;
  }
}
.prono-item__line {
  flex: 1 1 auto;
  display: block;
  height: 1px;
  background-color: rgba(15, 109, 154, 0.4);
}
@media screen and (max-width: 768px) {
  .prono-item__line {
    display: none;
  }
}
.prono-item__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .prono-item__icon {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: url(img/plus-fukidashi.svg) no-repeat center/contain;
    transition: opacity 0.2s;
  }
}
.prono-item__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .prono-item__body {
    gap: 15px;
    margin-top: 0;
    overflow: hidden;
    max-height: none;
    opacity: 1;
    padding: 0 10px 20px;
  }
}
.prono-item__body p {
  font-weight: 600;
  font-size: 15px;
  line-height: 2;
  color: #000;
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .prono-item__body p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .prono-item__body {
    max-height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .prono-item.is-open .prono-item__body {
    max-height: 5000px;
    opacity: 1;
    padding: 0 10px 30px;
  }
}

.footer {
  position: relative;
  background-color: #0B2643;
  padding: 80px 0px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 0px 0;
  }
}
.footer .footer_inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer .footer_inner {
    max-width: 400px;
    gap: 20px;
    padding: 0px 20px;
  }
}
.footer .title_footer {
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .footer .title_footer {
    max-width: 320px;
  }
}
.footer .billing_footer {
  width: 100%;
  max-width: 520px;
}
@media screen and (max-width: 768px) {
  .footer .billing_footer {
    max-width: 335px;
  }
}
.footer .release_footer {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 10px;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .footer .release_footer {
    max-width: 130px;
  }
}
.footer .shares {
  width: 100%;
}
.footer .shares .share_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: center;
  align-items: center;
}
.footer .shares .share_btns li {
  line-height: 0;
}
.footer .footer-bnrs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.footer .footer-bnrs a {
  display: block;
  width: 200px;
  transition: opacity 0.3s;
}
.footer .footer-bnrs a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */