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

/* 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 {
  font-size: 18px;
  color: #FDFDFD;
  background-color: #000;
  font-family: "Noto Serif JP", serif;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

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

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

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

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

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

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

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

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

h2 {
  max-width: 600px;
  width: 100%;
  text-align: center;
  display: block;
  margin: 0 auto 40px;
}
h2 span {
  margin-top: 20px;
  display: block;
  text-align: center;
  font-size: 1.2em;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}
@media screen and (max-width: 768px) {
  h2 span {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    max-width: 295px;
  }
  h2 span {
    font-size: 1em;
  }
}

/* 背景の黒いオーバーレイ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.85);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.modal-overlay.active {
  display: block;
  opacity: 1;
}
.modal-overlay video {
  opacity: 0.1;
}

/* モーダル本体（16:9のアスペクト比を維持 & 最大幅1000px） */
.modal-movie {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  width: 80vw; /* デフォルトでは画面幅の80% */
  max-width: 1500px; /* 最大幅を1000pxに制限 */
  height: calc(min(80vw, 1500px) * 9 / 16); /* widthの16:9の比率で計算 */
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scaleY(0);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  border-radius: 10px;
  opacity: 0;
  border-radius: 10px;
  border: 2px solid #00E6FF;
  filter: drop-shadow(0px 0px 5px #C0ECFF);
}
@media screen and (max-width: 768px) {
  .modal-movie {
    border: 1px solid #00E6FF;
    width: 100%;
    height: 56.25vw; /* widthの16:9の比率で計算 */
    border-radius: 0px;
    top: 45%;
  }
}

/* モーダルが表示されるときのクラス */
.modal-movie.active {
  transform: translate(-50%, -50%) scaleY(1);
  opacity: 1;
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: -3px;
  right: -60px;
  width: 50px;
  height: 50px;
  background-image: url(img/close_btn.svg);
  background-size: 50px;
  cursor: pointer;
  z-index: 10;
  transition: filter 0.2s;
  filter: drop-shadow(0px 0px 5px #C0ECFF);
}
@media screen and (max-width: 768px) {
  .close {
    top: unset;
    bottom: -60px;
    right: 50%;
    transform: translateX(50%);
    filter: drop-shadow(0px 0px 0px #C0ECFF);
  }
}
.close:hover {
  filter: brightness(200%) grayscale(100%);
}

/* 動画をモーダルいっぱいに広げる */
.videoFrame {
  width: 100%;
  height: 100%;
  border: none;
}

/* オーバーレイが有効になったとき */
.modal-overlay.active {
  display: block;
  opacity: 1;
}

/* モーダル本体（黒背景・白文字） */
.modal {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  width: 80vw;
  max-width: 900px;
  height: auto;
  color: #FDFDFD; /* 白文字 */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translate(-50%, -50%) scaleY(0);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  border-radius: 10px;
  opacity: 0;
  border: 2px solid #00E6FF;
  box-shadow: 0px 0px 24px 0px #C0ECFF;
  overflow-y: auto;
  background: rgba(18, 39, 41, 0.9);
}
@media screen and (max-width: 768px) {
  .modal {
    width: calc(100% - 40px);
  }
}
.modal .close {
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .modal .close {
    right: 40px;
  }
}
.modal .comment {
  width: 100%;
}
.modal .comment p {
  line-height: 1.6;
  margin-bottom: 1em;
}
.modal .comment p:last-of-type {
  margin-bottom: 0;
}
.modal .names .role {
  margin-bottom: 0.7em;
  font-size: 0.9em;
  text-align: center;
}
.modal .names .name {
  font-size: 1.8em;
  font-weight: 700;
  text-align: center;
}
.modal .illu {
  width: 80%;
  margin: 0 auto;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .modal .illu {
    width: 100%;
  }
}
.modal hr {
  border: 0;
  height: 1px;
  width: 100%;
  background-color: #00E6FF;
  filter: drop-shadow(0px 0px 5px #C0ECFF);
  margin-bottom: 20px;
  margin-top: 20px;
}
.modal .cast_comment {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.modal .cast_comment .cast_img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .modal .cast_comment .cast_img {
    width: 80%;
    max-width: 250px;
    margin: 0 auto 20px;
  }
}
.modal .cast_comment .cast_texts {
  width: calc(100% - 240px);
}
@media screen and (max-width: 768px) {
  .modal .cast_comment .cast_texts {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .modal .cast_comment .cast_texts .cast_names {
    text-align: center;
  }
}
.modal .cast_comment .cast_texts .cast_names .role {
  margin-bottom: 0.5em;
  font-size: 0.9em;
}
.modal .cast_comment .cast_texts .cast_names .name {
  font-size: 1.8em;
  font-weight: 700;
}
.modal .cast_comment .cast_texts .cast_body p {
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.modal .cast_comment .cast_texts .cast_body p:last-of-type {
  margin-bottom: 0;
}

/* モーダルが表示されるとき */
.modal.active {
  transform: translate(-50%, -50%) scaleY(1);
  opacity: 1;
}

/* モーダル内のコンテンツ */
.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

/* モーダル内のコンテンツ */
.modal-movie .modal-content {
  width: 100%;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .modal-movie .modal-content {
    border-radius: 0px;
  }
}

/* モーダル内のコンテンツ */
.modal .modal-content {
  width: 100%;
  text-align: left;
  padding: 40px 50px;
  flex-wrap: wrap;
  flex-wrap: wrap;
  max-height: 90vh;
  max-height: 90lvh;
}
@media screen and (max-width: 768px) {
  .modal .modal-content {
    padding: 70px 20px 40px;
  }
}

.modal-content {
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.side-left, .side-right {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  height: 100lvh;
  width: 40px;
  background-image: url(img/sides.svg);
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .side-left, .side-right {
    width: 25px;
    left: -10px;
  }
}

.side-right {
  left: unset;
  right: 0;
}
@media screen and (max-width: 768px) {
  .side-right {
    right: -10px;
  }
}

.btn_p1 {
  display: block;
  padding: 10px 20px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #AC9F83;
  margin-top: 20px;
  transition: 0.4s;
}
.btn_p1:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .btn_p1:hover {
    background-color: transparent;
  }
}

.decoline {
  width: 100%;
  height: 21px;
  background-image: url(img/deco1.svg), linear-gradient(to bottom, transparent 0%, transparent 10px, #AC9F83 10px, #AC9F83 11px, transparent 11px, transparent 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: 50% 50%, center center;
  background-size: 100px 20px, 100%;
}
@media screen and (max-width: 768px) {
  .decoline {
    height: 10px;
    background-image: url(img/deco1.svg), linear-gradient(to bottom, transparent 0%, transparent 5px, #AC9F83 5px, #AC9F83 6px, transparent 6px, transparent 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: 50% 50%, center center;
    background-size: 48px 10px, 100%;
  }
}
.decoline.top {
  margin-bottom: 20px;
}
.decoline.bottom {
  margin-top: 20px;
}

.decoline2.top {
  margin-bottom: 20px;
}
.decoline2.bottom {
  transform: rotate(180deg);
  margin-top: 20px;
}

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

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

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

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

/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-size: cover;
}
.fixed_bg.bg_info {
  background-image: url(img/kv_el-bg.jpg);
  background-size: 90%;
  background-position: top 7% right 0%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .fixed_bg.bg_info {
    background-size: 230%;
    background-position: top 0% right 35%;
  }
}
.fixed_bg.bg_intro {
  background-image: url(img/kv_lu-bg.jpg);
  background-size: 85%;
  background-position: top 7% left 0%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .fixed_bg.bg_intro {
    background-size: 230%;
    background-position: top 0% left 22%;
  }
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdfdfd;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner .loader {
  animation: flash 1.5s infinite;
  width: 80%;
  max-width: 600px;
}

/*-------------------------------*/
/*nav----------------------------*/
.nav_btn {
  z-index: 110;
  position: fixed;
  top: 20px;
  right: 60px;
  width: 120px;
  height: 120px;
  background-image: url(img/icon_frame.svg);
  background-size: 120px 120px;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    top: 10px;
    right: 20px;
  }
}
.nav_btn::before {
  content: "";
  background-image: url(img/icon_bar.svg);
  position: absolute;
  width: 60px;
  height: 20px;
  background-size: 60px 20px;
  bottom: 29%;
  left: 30px;
  transition: transform 0.4s;
  transform-origin: bottom left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .nav_btn::before {
    left: 15px;
    background-size: 50px 14.29px;
    width: 50px;
    height: 14.29px;
  }
}
.nav_btn::after {
  content: "";
  background-image: url(img/icon_bar.svg);
  position: absolute;
  width: 60px;
  height: 20px;
  background-size: 60px 20px;
  top: 29%;
  left: 30px;
  transition: transform 0.4s;
  transform-origin: top right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .nav_btn::after {
    left: 15px;
    height: 14.29px;
    background-size: 50px 14.29px;
    width: 50px;
  }
}
.nav_btn:hover::before {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .nav_btn:hover::before {
    transform: none;
  }
}
.nav_btn:hover::after {
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .nav_btn:hover::after {
    transform: none;
  }
}
.nav_btn.show::before {
  transform: rotate(-45deg) translate(9px, 12px);
}
@media screen and (max-width: 768px) {
  .nav_btn.show::before {
    transform: rotate(-45deg) translate(6px, 13px);
  }
}
.nav_btn.show::after {
  transform: rotate(45deg) translate(25px, 28px);
}
@media screen and (max-width: 768px) {
  .nav_btn.show::after {
    transform: rotate(45deg) translate(19px, 22px);
  }
}
.nav_btn.active {
  opacity: 1;
}

.gnav {
  background-color: #000;
  background-image: url(img/bg_menu.jpg);
  background-size: cover;
  z-index: 101;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: -100%;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
}
.gnav.show {
  left: 0;
  top: 0;
  opacity: 1;
}
.gnav .gnav_list {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    max-width: 370px;
  }
}
.gnav .gnav_list li a {
  display: block;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
}

.x_btn {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 70px;
  height: 70px;
  z-index: 110;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .x_btn {
    width: 50px;
    height: 50px;
    top: 10px;
    left: 20px;
  }
}
.x_btn img:first-of-type {
  position: relative;
}
.x_btn img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: scale(1);
  transition: 0.4s;
}
.x_btn.active {
  opacity: 1;
}
.x_btn:hover img:last-of-type {
  transform: scale(0.8);
}

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

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

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

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

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

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

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

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
#top {
  z-index: 99;
  width: 100%;
  height: 60vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top {
    height: calc(220vw + 60px);
    padding-bottom: 60px;
    overflow: hidden;
  }
}
#top .section_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/marble.jpg);
  background-size: 100%;
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 120px), 0% calc(100% - 420px), 0 0);
}
@media screen and (max-width: 768px) {
  #top .section_bg {
    background-size: 200%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% calc(100% - 120px), 0 0);
  }
}
#top .main_imgs {
  position: absolute;
  width: 40%;
  left: 6.25%;
  top: 3.5%;
}
@media screen and (max-width: 768px) {
  #top .main_imgs {
    width: 110%;
    left: -5%;
    top: 0px;
  }
}
#top .main_imgs .main_base, #top .main_imgs .main_ml, #top .main_imgs .main_lu, #top .main_imgs .main_el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(2);
  transition: 0.3s;
}
#top .main_imgs .main_base {
  transform: translateY(50px) scale(1);
  position: relative;
  filter: blur(100px);
  transition: 1s;
  width: 100%;
}
#top .main_imgs .main_base.active {
  filter: blur(0px);
  opacity: 1;
  transform: translateY(0px) scale(1);
}
#top .main_imgs .main_base .main_base_inner {
  width: 67.62%;
  position: absolute;
  top: 0;
  left: 16.19%;
}
#top .main_imgs .main_ml.active {
  opacity: 1;
  transform: translateY(0px) scale(1);
}
#top .main_imgs .main_lu.active {
  opacity: 1;
  transform: translateY(0px) scale(1);
}
#top .main_imgs .main_el.active {
  opacity: 1;
  transform: translateY(0px) scale(1);
}
#top .copy {
  position: absolute;
  width: 44%;
  top: 13.8%;
  left: 49.3%;
  opacity: 0;
  transform: translateY(50px) scale(2);
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 90%;
    top: calc(40px - 1%);
    left: 5%;
  }
}
#top .copy.active {
  opacity: 1;
  transform: translateY(0px) scale(1);
}
#top .title {
  position: absolute;
  width: 50.5%;
  left: 46%;
  top: 17%;
  opacity: 0;
  transition: 2s;
  transform: translateY(20px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 100%;
    left: 0%;
    top: 55%;
  }
}
#top .title.active {
  transform: translateY(0px);
  opacity: 1;
}
#top .release {
  position: absolute;
  top: 56%;
  right: 8%;
  width: 40%;
  opacity: 0;
  transition: 2s;
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  #top .release {
    top: 74%;
    left: 6%;
    width: 88%;
  }
}
#top .release.active {
  transform: translateY(0px);
  opacity: 1;
}

.bnr_comic-pc {
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 7%;
  bottom: 3%;
  max-width: 450px;
  width: 24%;
  transition: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .bnr_comic-pc {
    display: none;
  }
}
.bnr_comic-pc.active {
  opacity: 1;
}
.bnr_comic-pc a {
  transition: 0.4s;
  border-radius: 3px;
  border: solid 1px #AC9F83;
  display: block;
}
.bnr_comic-pc a:hover {
  filter: brightness(120%);
  transform: translateY(2px);
}

.bnr_comic-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .bnr_comic-sp {
    width: calc(100% - 60px);
    max-width: 350px;
    margin: 0 auto 60px;
    opacity: 0;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .bnr_comic-sp.active {
    opacity: 1;
  }
}
.bnr_comic-sp a {
  display: block;
  border: solid 1px #AC9F83;
  border-radius: 3px;
}

/* メイン画像 */
.swiperTop {
  width: 100%;
}

.swiperTop .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiperTop .swiper-wrapper .swiper-slide.slide1 img {
  transform: scale(1.1);
  transition: 2s;
  opacity: 0;
  filter: blur(5px);
}
.swiperTop .swiper-wrapper .swiper-slide.slide1.swiper-slide-active img {
  filter: blur(0px);
  transform: scale(1);
  opacity: 1;
}
.swiperTop .swiper-wrapper .swiper-slide.slide2 {
  overflow: hidden;
}
.swiperTop .swiper-wrapper .swiper-slide.slide2 img {
  transform: scale(1.1);
  transition: 2s;
  opacity: 0;
}
.swiperTop .swiper-wrapper .swiper-slide.slide2.swiper-slide-active img {
  transform: scale(1);
  opacity: 1;
}

.swiperTop {
  opacity: 0;
  transform: scale(1.1);
  transition: 1s;
  filter: blur(10px) brightness(200%);
}
.swiperTop.active {
  opacity: 1;
  transform: translateY(0px) scale(1);
  filter: blur(0) brightness(100%);
}

/* サムネ */
.main_imgs_thumbs {
  width: 100%;
  position: absolute;
  bottom: 2.5%;
  left: 48%;
}
@media screen and (max-width: 768px) {
  .main_imgs_thumbs {
    top: 80.5%;
    bottom: unset;
    left: 0;
  }
}
.main_imgs_thumbs .swiper-wrapper {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .main_imgs_thumbs .swiper-wrapper {
    flex-direction: row;
  }
}
.main_imgs_thumbs .swiper-wrapper {
  opacity: 0;
  transition: 2s;
  transform: translateY(20px);
}
.main_imgs_thumbs .swiper-wrapper.active {
  opacity: 1;
  transform: translateY(0px);
}

.swiperTopThumbs .swiper-slide {
  width: auto;
  opacity: 0.5;
  cursor: pointer;
  width: 7%;
}
@media screen and (max-width: 768px) {
  .swiperTopThumbs .swiper-slide {
    width: 20%;
  }
}
.swiperTopThumbs .swiper-slide {
  transition: 0.4s;
}
.swiperTopThumbs .swiper-slide:hover {
  transform: scale(0.9);
}

.swiperTopThumbs .swiper-slide-thumb-active {
  opacity: 1;
}

#info {
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  #info {
    z-index: 100;
    overflow-x: visible;
    margin-top: -60px;
  }
}
#info .section_inner {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #info .section_inner {
    padding: 10px 0 80px;
  }
}
#info .section_inner .section_main {
  margin-bottom: 120px;
}
#info .section_inner .section_main:last-of-type {
  margin-bottom: 0;
}
#info .news_wrapper {
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #info .news_wrapper {
    padding: 0 35px;
    max-width: 600px;
  }
}
#info .news_wrapper ul li a {
  padding: 20px 30px;
  margin-bottom: 20px;
  background-color: rgba(217, 217, 217, 0.1);
  border: solid 1px rgba(255, 255, 255, 0.2);
  display: flex;
  color: #FDFDFD;
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.1em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #info .news_wrapper ul li a {
    flex-wrap: wrap;
    padding: 20px 15px;
    margin-bottom: 10px;
  }
}
#info .news_wrapper ul li a:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  #info .news_wrapper ul li a:hover {
    background-color: rgba(217, 217, 217, 0.1);
  }
}
#info .news_wrapper ul li a .news_date {
  color: #AFD7FF;
  width: 10em;
}
@media screen and (max-width: 768px) {
  #info .news_wrapper ul li a .news_date {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
#info .news_wrapper ul li a .news_title {
  width: calc(100% - 10em);
}
@media screen and (max-width: 768px) {
  #info .news_wrapper ul li a .news_title {
    width: 100%;
  }
}
#info .x_wrapper {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  padding: 0 35px;
}
@media screen and (max-width: 768px) {
  #info .x_wrapper {
    max-width: 600px;
  }
}
#info .x_wrapper .x_tl {
  background-color: rgba(217, 217, 217, 0.1);
  border: solid 1px rgba(255, 255, 255, 0.2);
}
#info .btn_p1 .btn_p1-newslist {
  width: 171px;
}
#info .btn_p1 .btn_p1-follow {
  width: 131px;
}

#movie {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#movie h2 span {
  color: #000;
}
#movie .section_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/marble.jpg);
  background-size: 100%;
  clip-path: polygon(0 80px, 100% 0%, 100% 100%, 0% calc(100% - 80px), 0 0);
}
@media screen and (max-width: 768px) {
  #movie .section_bg {
    clip-path: polygon(0 40px, 100% 0%, 100% 100%, 0% calc(100% - 40px), 0 0);
  }
}
#movie .section_inner {
  position: relative;
  width: 100%;
  padding: 160px 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #movie .section_inner {
    padding: 80px 30px;
  }
}
#movie .section_inner .swiper1 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
#movie .section_inner .swiper1 .swiper-slide {
  color: #333;
  font-weight: 900;
  text-align: center;
  width: 50%;
}
#movie .section_inner .swiper1 .swiper-slide .thumb_img {
  border: solid 3px #AC9F83;
  position: relative;
  cursor: pointer;
  padding: 1px;
}
#movie .section_inner .swiper1 .swiper-slide .thumb_img .thumb_img_inner {
  overflow: hidden;
  background-color: #AC9F83;
  border: solid 2px #AC9F83;
}
#movie .section_inner .swiper1 .swiper-slide .thumb_img img.thumb {
  transition: 0.2s;
}
#movie .section_inner .swiper1 .swiper-slide .thumb_img .play_btn {
  transition: 0.2s;
  width: 15%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
#movie .section_inner .swiper1 .swiper-slide p {
  padding: 0.5em 0 0.25em;
}
#movie .section_inner .swiper1 .swiper-slide:hover img.thumb {
  opacity: 0.8;
}
#movie .section_inner .swiper1 .swiper-slide:hover .play_btn {
  transform: translate(-50%, -50%) scale(1.2);
}

.swiper-button-prev1,
.swiper-button-next1 {
  position: absolute;
  top: -40px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev1 {
  left: 8px;
}

.swiper-button-next1 {
  right: 8px;
}

.swiper-button-prev1.swiper-button-disabled,
.swiper-button-next1.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.swiper-button-prev1 img,
.swiper-button-next1 img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .swiper-button-prev1,
  .swiper-button-next1 {
    display: none;
  }
}
#intro .section_inner {
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner {
    padding: 40px 35px;
  }
}
#intro .section_body {
  text-align: center;
  font-size: 1.11em;
  line-height: 2.5;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #intro .section_body {
    font-size: 1em;
  }
}
#intro .section_body p {
  margin-bottom: 1.5em;
}
#intro .section_body p:last-child {
  margin-bottom: 0;
}
#intro .section_body p span.big {
  font-size: 1.1em;
}

#stacas {
  position: relative;
  line-height: 2;
  text-align: center;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  #stacas {
    margin-top: -40px;
  }
}
#stacas .section_bg {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/diamond.jpg);
  background-size: 100px;
  clip-path: polygon(100% 80px, 0% 0%, 0% 100%, 100% 100%, 100% 0);
}
@media screen and (max-width: 768px) {
  #stacas .section_bg {
    clip-path: polygon(100% 40px, 0% 0%, 0% 100%, 100% 100%, 100% 0);
  }
}
#stacas .section_inner {
  position: relative;
  padding: 160px 50px 240px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #stacas .section_inner {
    padding: 80px 30px 80px;
  }
}
#stacas .section_inner #staff {
  margin-bottom: 40px;
}
#stacas .section_inner .section_body {
  margin-top: 40px;
}
#stacas .section_inner .section_body {
  max-width: 1100px;
  margin: 0 auto;
}
#stacas .section_inner .section_body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
#stacas .section_inner .section_body ul:last-of-type {
  margin-bottom: 0;
}
#stacas .section_inner .section_body ul li {
  width: 33.33%;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #stacas .section_inner .section_body ul li {
    width: 100%;
  }
}
#stacas .section_inner .section_body ul li .role {
  font-weight: 500;
  color: #00E6FF;
  font-size: 0.9em;
  opacity: 0.9;
}
#stacas .section_inner .section_body ul li .name {
  font-weight: 700;
  font-size: 1.35em;
  opacity: 0.9;
}
#stacas .section_inner .section_body ul li .name span::after {
  content: "";
  width: 26px;
  height: 26px;
  background-size: 26px;
  display: inline-block;
  transform: translateY(3px);
  margin-left: 7px;
  transition: 0.2s;
  cursor: pointer;
}
#stacas .section_inner .section_body ul li .name span:hover::after {
  filter: grayscale(100%) brightness(200%);
  transform: scale(1.1);
}
#stacas .section_inner .section_body ul li .name span.btn_com::after {
  background-image: url(img/icon_com.svg);
}
#stacas .section_inner .section_body ul li .name span.btn_pict::after {
  background-image: url(img/icon_pict.svg);
}
#stacas h3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
#stacas h3 .title-line {
  background-color: #AC9F83;
  height: 1px;
  width: calc(50% - 100px);
}
@media screen and (max-width: 768px) {
  #stacas h3 .title-line {
    width: calc(50% - 55px);
  }
}
#stacas h3 .sub_title {
  display: block;
  white-space: nowrap;
  width: 160px;
}
@media screen and (max-width: 768px) {
  #stacas h3 .sub_title {
    width: 110px;
  }
}

#chara {
  position: relative;
}
#chara .section_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_chara.jpg);
  background-size: cover;
  clip-path: polygon(0 80px, 100% 0%, 100% 100%, 0% calc(100% - 80px), 0 0);
  filter: brightness(50%);
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #chara .section_bg {
    clip-path: polygon(0 40px, 100% 0%, 100% 100%, 0% calc(100% - 40px), 0 0);
  }
}
#chara .section_inner {
  position: relative;
  width: 100%;
  padding: 160px 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #chara .section_inner {
    padding: 80px 0px;
  }
}
#chara .thumbnails {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #chara .thumbnails {
    gap: 10px;
  }
}
#chara .thumbnails .thumbnail {
  width: 160px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  #chara .thumbnails .thumbnail {
    width: 90px;
  }
}
#chara .thumbnails .thumbnail .frame {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.2s;
  filter: drop-shadow(0px 0px 5px #00E6FF) drop-shadow(0px 0px 10px #00E6FF);
}
#chara .thumbnails .thumbnail .chara_thumb {
  position: relative;
  transition: 0.2s;
}
#chara .thumbnails .thumbnail.current .frame {
  filter: drop-shadow(0px 0px 2px #00E6FF);
}
#chara .thumbnails .thumbnail.current .chara_thumb {
  filter: grayscale(100%);
}
#chara .swiper2 {
  margin: 0 auto;
  max-width: 900px;
  position: relative;
}
#chara .swiper-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#chara .swiper-bg .square1 {
  position: absolute;
  width: 65%;
  transform: rotate(-20deg);
  bottom: 10%;
  left: 0;
  filter: drop-shadow(0px 0px 2px #00E6FF);
  box-shadow: inset 0px 0px 3px #00E6FF, inset 0px 0px 7px #00E6FF;
  animation: infiniteRotate 240s linear infinite;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  #chara .swiper-bg .square1 {
    animation: infiniteRotate 120s linear infinite;
    left: 10%;
  }
}
#chara .swiper-bg .square2 {
  position: absolute;
  width: 50%;
  transform: rotate(20deg);
  top: 10%;
  right: 0;
  filter: drop-shadow(0px 0px 2px #00E6FF);
  box-shadow: inset 0px 0px 3px #00E6FF, inset 0px 0px 7px #00E6FF;
  animation: infiniteRotate 240s linear infinite reverse;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  #chara .swiper-bg .square2 {
    animation: infiniteRotate 120s linear infinite reverse;
    right: 10%;
  }
}
#chara .swiper-bg .arrow-line {
  position: absolute;
  width: calc(100% - 80px);
  height: 1px;
  top: calc(50% - 0.5px);
  left: 40px;
  background-color: #FFF;
  box-shadow: 1px 0px 4px 0px #00E6FF, -1px 1px 4px 0px #00E6FF, -1px -1px 4px 0px #00E6FF, 1px 1px 4px 0px #00E6FF;
  opacity: 0.4;
}
#chara .swiper-wrapper {
  position: relative;
}
#chara .swiper-slide .char-content {
  position: relative;
}
#chara .char-img {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  filter: drop-shadow(0px 0px 50px rgba(0, 255, 242, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
@media screen and (max-width: 768px) {
  #chara .char-img {
    max-width: unset;
    width: 120%;
    margin-left: -10%;
  }
}
#chara .char-name {
  position: absolute;
  width: 12%;
  top: 0%;
  right: 10%;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease-out 0.2s, transform 0.2s ease-out 0.2s;
  will-change: opacity, transform; /* 事前レンダリング */
}
@media screen and (max-width: 768px) {
  #chara .char-name {
    width: 16%;
  }
}
#chara .char-name .name_frame {
  position: relative;
  filter: drop-shadow(0px 0px 3px #00E6FF) drop-shadow(0px 0px 5px #00E6FF);
}
#chara .char-name .name_name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  filter: drop-shadow(0px 0px 2px #00E6FF);
}
#chara .char-desc {
  width: 40%;
  position: absolute;
  bottom: 30%;
  padding: 30px 40px;
  left: 10%;
  border-radius: 10px;
  border: 1px solid #FFF;
  background: rgba(0, 0, 0, 0.9);
  filter: drop-shadow(0px 0px 2px #00E6FF) drop-shadow(0px 0px 4px #00E6FF);
  box-shadow: inset 0px 0px 2px #00E6FF, inset 0px 0px 4px #00E6FF;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease-out 0.2s, transform 0.2s ease-out 0.2s;
  will-change: opacity, transform; /* 事前レンダリング */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.1em;
}
#chara .char-desc span {
  font-weight: inherit;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #chara .char-desc {
    padding: 20px;
    width: calc(80% - 92px);
    left: 46px;
    bottom: 5%;
  }
}

/* 表示状態（スライドがアクティブ時） */
.swiper2 .swiper-slide-active .char-img,
.swiper2 .swiper-slide-active .char-name {
  opacity: 1;
  transform: translateY(1);
}

.swiper2 .swiper-slide-active .char-desc {
  opacity: 0.8;
  transform: translateY(1);
}

/* Swiper のデフォルト矢印を非表示 */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* カスタム矢印のスタイル */
.swiper-button-prev,
.swiper-button-next {
  width: 30px; /* 画像サイズ調整 */
  height: 30px;
  position: absolute;
  top: calc(50% + 7px);
  z-index: 10;
}
.swiper-button-prev img,
.swiper-button-next img {
  width: 30px; /* 画像サイズ調整 */
  height: 30px;
}

/* 左矢印 */
.swiper-button-prev {
  left: 0px;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 20px;
  }
}

/* 右矢印 */
.swiper-button-next {
  right: 0px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 20px;
  }
}

/* 矢印画像の調整 */
.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0px 0px 2px #00E6FF) drop-shadow(0px 0px 5px #00E6FF);
}

/* ホバー時のエフェクト */
.swiper-button-prev:hover img,
.swiper-button-next:hover img {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */