@charset "UTF-8";
:root {
  --mainC: #e6559e;
  --bg: #f3f5f9;
  --red: #e33811;
  --pcW: 1200px;
  --spW: 85%;
  --ja-f: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --ja-sans-f: "游ゴシック体", "YuGothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  --en-f: "Cormorant Garamond", serif;
}

/*
Reset Stylesheet
v1.0
Author: And Arc
*/
html {
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style-type: none;
}

body {
  line-height: 1;
  font-family: sans-serif;
}

main {
  display: block;
}

nav ul {
  list-style: none;
}

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

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

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

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  body {
    display: none !important;
  }
}
html {
  font-size: 62.5%;
}

@media screen and (min-width: 0px) and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 64%;
  }
}
body {
  font-size: 1.3rem;
  color: #fff;
  background-color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-family: var(--ja-f);
  font-weight: 400;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body img {
  pointer-events: none;
}

@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-fixed {
  position: fixed;
  height: 100%;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  }
}
body.is-fixed {
  /*position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;*/
  overflow: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

._pc {
  display: block;
}

img._pc {
  display: inline;
}

._sp {
  display: none;
}

img._sp {
  display: none;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none;
  }
  img._pc {
    display: none;
  }
  ._sp {
    display: block;
  }
  img._sp {
    display: inline;
  }
}
/**************************\
  Basic Modal Styles
\**************************/
.modal {
  display: none;
  position: fixed;
  z-index: 111;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
}

.modal.is-open {
  display: block;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__close button {
  cursor: pointer;
  color: #fff;
  display: inline-block;
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.2rem;
  background: url(../img/ic_close.svg) no-repeat center right/1.2rem auto;
  padding-right: 2rem;
}

@media print, screen and (min-width: 769px) {
  .modal__close button {
    right: 5rem;
    top: 5rem;
    font-size: 1.5rem;
  }
}
/**
  open animation
 */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] {
  -webkit-animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
}

.modal-common iframe {
  width: 70%;
  height: 40vw;
}

/**
  profile
 */
.modal-profile {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/profile_pict_sp.jpg) no-repeat center center/cover;
}

@media print, screen and (min-width: 769px) {
  .modal-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 50%;
    background-image: url(../img/profile_pict.jpg);
  }
}
.modal-profile-content .content-title {
  position: relative;
  font-size: 3.6rem;
}

.modal-profile-content .content-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(60%, rgb(255, 255, 255)), color-stop(90%, rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0) 90%);
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(60%, rgb(255, 255, 255)), color-stop(90%, rgba(255, 255, 255, 0)));
  mask-image: linear-gradient(90deg, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0) 90%);
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .modal-profile-content .content-text1 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.7rem;
  }
  .modal-profile-content .content-wrap {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 93vw;
  }
  .modal-profile-content .content-title {
    position: relative;
    font-size: 2.2rem;
    line-height: 1.5;
    padding-bottom: 1rem;
  }
  .modal-profile-content .content-title > small {
    display: block;
    font-size: 0.5em;
  }
  .modal-profile-content .content-text2 {
    background-color: #0f0f0f;
    margin: 93vw 1.5rem;
    padding: 2rem;
    font-size: 1.3rem;
    line-height: 2;
  }
}
@media print, screen and (min-width: 769px) {
  .modal-profile-content {
    width: 60rem;
  }
  .modal-profile-content .content-text1 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .modal-profile-content .content-text2 {
    line-height: 2;
    font-size: 1.6rem;
  }
  .modal-profile-content .content-title {
    position: relative;
    font-size: 3.6rem;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
  .modal-profile-content .content-title > small {
    font-size: 0.4em;
    margin-left: 2em;
  }
}
@-webkit-keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modal-video-inner {
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes modal-video-inner {
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: modal-video;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-effect-exit {
  opacity: 0;
}

.modal-video-effect-exit .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}

.modal-video-body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal-video-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: modal-video-inner;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  width: 90vw;
  height: 50vw;
}

@media print, screen and (min-width: 769px) {
  .modal-video-movie-wrap iframe {
    width: 70vw;
    height: 40vw;
  }
}
.modal-video-close-btn {
  position: absolute;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  z-index: 3;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.2rem;
  background: url(../img/ic_close.svg) no-repeat center right/1.2rem auto;
  padding-right: 2rem;
}

.modal-video-close-btn::before {
  content: "CLOSE";
}

@media print, screen and (min-width: 769px) {
  .modal-video-close-btn {
    right: 5rem;
    top: 5rem;
    font-size: 1.5rem;
  }
}
.modal__graphic {
  width: 92vw;
}

@media print, screen and (min-width: 769px) {
  .modal__graphic {
    width: 70vw;
  }
}
/* --------------------------------------------------------------------
  #ヘッダ
 */
.header {
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header {
    -webkit-transition: 0.3s -webkit-transform;
    transition: 0.3s -webkit-transform;
    transition: 0.3s transform;
    transition: 0.3s transform, 0.3s -webkit-transform;
  }
  .header.is-hidden {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  .header-inner {
    height: 8rem;
  }
  .header-inner::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 8rem;
    left: 0;
    top: 0;
  }
}
/**
  SP時の固定ヘッダ要素
 */
.header-wrap {
  position: relative;
  width: 100%;
  z-index: 110;
}

/**
  メニュートリガーボタン
 */
.header__trigger {
  position: fixed;
  z-index: 111;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  top: 4rem;
  right: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}

.header__trigger .line1,
.header__trigger .line2,
.header__trigger .line3 {
  display: block;
  width: 4rem;
  height: 1px;
  background-color: #000;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.header__trigger.is-active .line1,
.header__trigger.is-active .line2,
.header__trigger.is-active .line3 {
  background-color: #fff;
}

.header__trigger .line1 {
  -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
}

.header__trigger .line3 {
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
}

.header__trigger.is-active {
  background: none;
}

.header__trigger.is-active .line1,
.header__trigger.is-active .line2,
.header__trigger.is-active .line3 {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.header__trigger.is-active .line1 {
  -webkit-transform: translate3d(0, 1px, 0) rotate(45deg);
          transform: translate3d(0, 1px, 0) rotate(45deg);
}

.header__trigger.is-active .line2 {
  opacity: 0;
}

.header__trigger.is-active .line3 {
  -webkit-transform: translate3d(0, -2px, 0) rotate(-45deg);
          transform: translate3d(0, -2px, 0) rotate(-45deg);
}

@media (hover: hover) {
  .header__trigger:hover .line1,
  .header__trigger:hover .line2,
  .header__trigger:hover .line3 {
    background-color: #e6559e;
  }
}
@media screen and (max-width: 768px) {
  .header__trigger {
    top: 1rem;
    right: 1.2rem;
  }
  .header__trigger .line1 {
    -webkit-transform: translate3d(0, -6px, 0);
            transform: translate3d(0, -6px, 0);
  }
  .header__trigger .line3 {
    -webkit-transform: translate3d(0, 6px, 0);
            transform: translate3d(0, 6px, 0);
  }
  .header__trigger .line1,
  .header__trigger .line2,
  .header__trigger .line3 {
    width: 2.6rem;
  }
}
.header__ci {
  position: absolute;
  z-index: 111;
  width: 11.5rem;
  top: 4rem;
  left: 4rem;
}
.header__ci a {
  display: block;
}
.header__ci a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .header__ci {
    left: 1.5rem;
    top: 1.5rem;
    width: 21.6vw;
  }
}

header.is-active .header__ci a img {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(19deg) brightness(101%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(19deg) brightness(101%) contrast(102%);
}
header.is-active .header__trigger .line1,
header.is-active .header__trigger .line2,
header.is-active .header__trigger .line3 {
  background-color: #fff;
}

body.nav-open .header__nav-bg,
body.nav-open #header__nav {
  visibility: visible;
  opacity: 1;
}
body.nav-open #header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
body.nav-open #header__nav .nav-menulist-wrap .nav-menulist a span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.header__nav-bg {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 98;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#header__nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 99;
  right: 0;
  top: 0;
  width: 480px;
  height: 100%;
  background-color: #000;
  scrollbar-width: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  overflow: auto;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  #header__nav {
    width: 100%;
  }
}
#header__nav .btn-menuclose {
  position: absolute;
  z-index: 3;
  right: 25px;
  top: 14px;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#header__nav .btn-menuclose img {
  width: 46px;
  height: 34px;
}
@media (hover: hover) {
  #header__nav .btn-menuclose:hover {
    opacity: 0.4;
  }
}
#header__nav .nav-content {
  width: 100%;
  height: 100%;
}
#header__nav .nav-menulist-wrap {
  width: 100%;
  padding: 150px 40px 80px;
}
#header__nav .nav-menulist-wrap .nav-menulist {
  font-size: clamp(40px, 40px + (100vw - 768px) * (40 - 40) / (1100 - 768), 40px);
}
#header__nav .nav-menulist-wrap .nav-menulist a {
  position: relative;
  display: block;
  font-family: var(--en-f);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  padding: 40px 0 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#header__nav .nav-menulist-wrap .nav-menulist a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}
@media (hover: hover) {
  #header__nav .nav-menulist-wrap .nav-menulist a:hover {
    color: var(--mainC);
  }
}
#header__nav .nav-menulist-wrap .nav-menulist a span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
  -webkit-transition: -webkit-transform 0.5s 0.1s;
  transition: -webkit-transform 0.5s 0.1s;
  transition: transform 0.5s 0.1s;
  transition: transform 0.5s 0.1s, -webkit-transform 0.5s 0.1s;
}
@media screen and (max-width: 768px) {
  #header__nav .nav-menulist-wrap {
    padding: 80px 30px;
  }
  #header__nav .nav-menulist-wrap .nav-menulist a {
    font-size: 2.75rem;
    padding: 3rem 0 1.5rem;
  }
}
#header__nav .nav-snslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 55px;
}
#header__nav .nav-snslist .nav-snslist__item {
  width: 52px;
}
#header__nav .nav-snslist .nav-snslist__item a {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (hover: hover) {
  #header__nav .nav-snslist .nav-snslist__item a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #header__nav .nav-snslist {
    margin-top: 4rem;
  }
  #header__nav .nav-snslist .nav-snslist__item {
    width: 4rem;
  }
}

/* ====================================================================

  #フッタ

 */
.footer {
  position: relative;
  padding-top: 50rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 29.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
}

.footer-container {
  position: relative;
  z-index: 10;
}

.footer__ci {
  margin-left: auto;
  margin-right: auto;
  width: 18.2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .footer__ci {
    width: 10.2rem;
    margin-bottom: 8vw;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 1rem;
  }
}

.footer__pagetop {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  width: 1.3rem;
  right: 6rem;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer__pagetop {
    width: 2.5333333333vw;
    right: 3.4666666667vw;
    bottom: 10.6666666667vw;
  }
}

#main__monster {
  overflow-x: clip;
}
#main__monster .section__title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8.5rem;
}
@media screen and (max-width: 768px) {
  #main__monster .section__title {
    margin-bottom: 10.6666666667vw;
  }
}
#main__monster .ic_campaign {
  position: absolute;
  z-index: 5;
  right: 10rem;
  top: 39vw;
  width: 24.7rem;
}
#main__monster .ic_campaign a {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (hover: hover) {
  #main__monster .ic_campaign a:hover {
    -webkit-filter: brightness(2);
            filter: brightness(2);
  }
}
@media screen and (max-width: 768px) {
  #main__monster .ic_campaign {
    width: 33.3333333333vw;
    right: 1.3333333333vw;
    top: 120vw;
  }
}
#main__monster .mv {
  position: relative;
}
#main__monster .mv .mv__title,
#main__monster .mv .mv__copy {
  position: absolute;
}
#main__monster .mv .mv__title {
  width: 45.625vw;
  bottom: 1.5vw;
  left: 0;
  right: 0;
  margin: auto;
}
#main__monster .mv .mv__copy {
  width: 12.5vw;
  /*top: 8.125vw; ←変更前 2025 11月更新 担当：very */
  /*left: 16.875vw; ←変更前 2025 11月更新 担当：very */
  top: 6vw; 
  right: 22vw;
}
@media screen and (max-width: 768px) {
  #main__monster .mv .mv__title {
    width: 88.2666666667vw;
    bottom: 8.6666666667vw;
  }
  #main__monster .mv .mv__copy {
    width: 26.6666666667vw;
    top: 14vw;
    /*left: 3.3333333333vw; ←変更前 2025 11月更新 担当：very */
    right: 3.3333333333vw; 
  }
}
#main__monster .lineup {
  position: relative;
  padding-top: 20rem;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup {
    padding-top: 33.3333333333vw;
  }
}
#main__monster .lineup .lineup__bg {
  position: absolute;
  z-index: -1;
  top: -6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
  width: 307.5rem;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__bg {
    /*top: 0; ←変更前　2025 11月更新 担当：very*/
    top: -65px;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
  }
}
#main__monster .lineup .lineup__title {
  width: 48.5rem;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__title {
    width: 62.6666666667vw;
  }
}
#main__monster .lineup .lineup__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*width: 130rem; ←変更点 2025 11月更新 担当：very*/
  width: 74rem;
  margin: auto;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 8vw;
    font-size: 1.4rem;
  }
}
#main__monster .lineup .lineup__box {
  position: relative;
  z-index: 2;
  padding-bottom: 14rem;
}
#main__monster .lineup .lineup__box--w915 .lineup__product {
  aspect-ratio: 576/743;
  top: 10rem;
}
#main__monster .lineup .lineup__box--w995 {
  padding-bottom: 6rem;
}
#main__monster .lineup .lineup__box--w995 .lineup__product {
  aspect-ratio: 572/970;
}

/*start 2025 11月更新 担当：very*/
#main__monster .lineup .lineup__box--w995 .lineup__product-name,#main__monster .lineup .lineup__box--w805 .lineup__product-name  {
  right: 3rem;
  font-size: 3rem;
}
/*end 2025 11月更新 担当：very*/

#main__monster .lineup .lineup__box--w825 .lineup__product {
  aspect-ratio: 542/710;
  top: 11rem;
}
#main__monster .lineup .lineup__box--w825 .lineup__product-name {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__box {
    padding-bottom: 0;
  }
  #main__monster .lineup .lineup__box--w915 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #main__monster .lineup .lineup__box--w915 .lineup__product {
    width: 53.3333333333vw;
    top: 0;
  }
  #main__monster .lineup .lineup__box--w995 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-bottom: 0;
  }
    
/*start 2025 11月更新 担当：very*/
    #main__monster .lineup .lineup__box--w805 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
    
  #main__monster .lineup .lineup__box--w995 .lineup__product,#main__monster .lineup .lineup__box--w805 .lineup__product {
    width: 49.3333333333vw;
  }
    
  #main__monster .lineup .lineup__box--w995 .lineup__product-name,#main__monster .lineup .lineup__box--w805 .lineup__product-name {
    right: auto;
    font-size: inherit;
  }
/*end 2025 11月更新 担当：very*/
    
  #main__monster .lineup .lineup__box--w825 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    top: -2.6666666667vw;
  }
  #main__monster .lineup .lineup__box--w825 .lineup__product {
    width: 52vw;
    top: 0;
  }
  #main__monster .lineup .lineup__box--w825 .lineup__product-name {
    font-size: inherit;
  }
}
#main__monster .lineup .lineup__product {
  position: relative;
  width: 27.3rem;
  margin: auto;
}
#main__monster .lineup .lineup__product .lineup__product-image {
  position: absolute;
  inset: 0;
  margin: auto;
}
#main__monster .lineup .lineup__product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__product-name {
    right: auto;
    bottom: auto;
    top: calc(57.3333333333vw + 18px);
    left: 65.3333333333vw;
  }
}
#main__monster .lineup .lineup__product .slick-prev {
  display: none !important;
}
#main__monster .lineup .lineup__product .slick-next {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 0px;
  font-size: 0px;
  cursor: default;
  padding: 0;
  border: none;
  outline: none;
}
#main__monster .lineup .lineup__product-dots {
  position: absolute;
  z-index: 4;
  top: 45rem;
  left: 18.5rem;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__product-dots {
    top: 52vw;
    left: 62.6666666667vw;
  }
}
#main__monster .lineup .lineup__product-dots .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
#main__monster .lineup .lineup__product-dots .slick-dots > li {
  cursor: pointer;
  position: relative;
  display: block !important;
  width: 5rem;
  height: 2rem;
  margin-right: 10px !important;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__product-dots .slick-dots > li {
    width: 10.9333333333vw;
    margin-right: 8px !important;
  }
}
#main__monster .lineup .lineup__product-dots .slick-dots > li:last-child {
  margin-right: 0 !important;
}
#main__monster .lineup .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  width: 100%;
  height: 100%;
}
#main__monster .lineup .slick-dots li button::before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  content: "";
  width: 5rem !important;
  height: 1rem !important;
  border-radius: 0 !important;
  background-color: #000 !important;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .slick-dots li button::before {
    width: 10.9333333333vw !important;
    height: 10px !important;
  }
}
#main__monster .lineup .lineup__box .lineup__product-dots li.slick-active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2rem;
  margin: auto;
  background: #676767;
  width: 10px;
  height: 8px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__box .lineup__product-dots li.slick-active::before {
    width: 8px;
    height: 6px;
    top: 18px;
  }
}
#main__monster .lineup .lineup__box .lineup__product-dots li.slick-active button::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(1rem + 8px);
  border: 1px solid #737373;
}
@media screen and (max-width: 768px) {
  #main__monster .lineup .lineup__box .lineup__product-dots li.slick-active button::after {
    top: -3px;
    left: -3px;
    width: calc(10.9333333333vw + 6px);
    height: 16px;
  }
}
#main__monster .lineup .lineup__box--w995 .lineup__product-dots li:nth-child(1) button::before {
  background-color: #5b5b5b !important;
}
#main__monster .lineup .lineup__box--w995 .lineup__product-dots li:nth-child(2) button::before {
  background-color: #dcdcdc !important;
}
#main__monster .lineup .lineup__box--w915 .lineup__product-dots li:nth-child(1) button::before {
  background-color: #e83f45 !important;
}
#main__monster .lineup .lineup__box--w915 .lineup__product-dots li:nth-child(2) button::before {
  background-color: #5b5b5b !important;
}
#main__monster .lineup .lineup__box--w825 .lineup__product-dots li:nth-child(1) button::before {
  background-color: #5b5b5b !important;
}
#main__monster .lineup .lineup__box--w825 .lineup__product-dots li:nth-child(2) button::before {
  background-color: #ffecc2 !important;
}

/*start 2025 11月更新 担当：very*/
#main__monster .lineup .lineup__box--w805 .lineup__product-dots li:nth-child(1) button::before {
  background-color: #b7212e !important;
}
#main__monster .lineup .lineup__box--w805 .lineup__product-dots li:nth-child(2) button::before {
  background-color: #3e4e88 !important;
}
/*end 2025 11月更新 担当：very*/

#main__monster .feature {
  margin-top: 15rem;
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  #main__monster .feature {
    margin-top: 16vw;
    padding-top: 13.3333333333vw;
  }
}
#main__monster .feature .feature__title {
  width: 65rem;
}
@media screen and (max-width: 768px) {
  #main__monster .feature .feature__title {
    width: 84.4vw;
  }
}
#main__monster .feature .feature-copy {
  margin-left: auto;
  margin-right: auto;
}
#main__monster .feature .feature-copy.--premiummonster {
  width: 74.1rem;
}
#main__monster .feature .feature-copy.--wfan {
  width: 74.1rem;
  margin-top: 17rem;
}
@media screen and (max-width: 768px) {
  #main__monster .feature .feature-copy.--premiummonster, #main__monster .feature .feature-copy.--wfan {
    width: 100%;
  }
  #main__monster .feature .feature-copy.--wfan {
    margin-top: 26.6666666667vw;
  }
}
#main__monster .feature .feature-content {
  margin-top: 5rem;
}
#main__monster .feature .feature-content.--w995 .feature-content__image {
  left: 66.4rem;
  top: 7rem;
  width: 86rem;
  aspect-ratio: 860/1018;
}
#main__monster .feature .feature-content.--w915 .feature-content__image {
  left: 68.4rem;
  top: 3rem;
  width: 86rem;
  aspect-ratio: 860/960;
}
#main__monster .feature .feature-content.--w825 {
  margin-top: 13rem;
}
#main__monster .feature .feature-content.--w825 .feature-content__image {
  left: 68.4rem;
  top: 1rem;
  width: 86rem;
  aspect-ratio: 1/1;
}

/*start 2025 11月更新 担当：very*/
#main__monster .feature .feature-content.--m805 .feature-content__image {
  left: 68.4rem;
  top: 1rem;
  width: 86rem;
  aspect-ratio: 1/1;
}
/*end 2025 11月更新 担当：very*/

#main__monster .feature .feature-content .feature-content-inner {
  position: relative;
  width: 130rem;
  margin-left: auto;
  margin-right: auto;
}
#main__monster .feature .feature-content .feature-content__text {
  width: 65.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
#main__monster .feature .feature-content .feature-content__image {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #main__monster .feature .feature-content {
    margin-top: 9.3333333333vw;
  }
  #main__monster .feature .feature-content.--w825 {
    margin-top: 18.6666666667vw;
  }
  #main__monster .feature .feature-content .feature-content__image {
    width: 100% !important;
    position: static;
    aspect-ratio: auto !important;
  }
  #main__monster .feature .feature-content .feature-content-inner {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #main__monster .feature .feature-content .feature-content__text {
    width: 100%;
    gap: 5.3333333333vw;
  }
  #main__monster .feature .feature-content .feature-content__image {
    position: block;
  }
}
#main__monster .feature .feature-content__nav {
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 86rem;
  margin-left: auto;
  margin-right: auto;
}
#main__monster .feature .feature-content__nav .btn-a {
  width: 40rem;
  font-family: var(--ja-sans-f);
}
#main__monster .feature .feature-content__nav .btn-a .btn-inner {
  position: relative;
  display: block;
  color: #fff;
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid #fff;
  font-size: 2rem;
  text-decoration: none;
}
#main__monster .feature .feature-content__nav .btn-a .btn-inner .point {
  position: absolute;
  right: 0.8rem;
  top: calc(50% - 0.3rem);
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
}
#main__monster .feature .feature-content__nav .btn-a .btn-inner .point > span {
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  left: -0.8rem;
  top: -0.8rem;
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
#main__monster .feature .feature-content__nav .btn-a .btn-inner .point::before, #main__monster .feature .feature-content__nav .btn-a .btn-inner .point::after {
  content: "";
  display: block;
  position: absolute;
}
#main__monster .feature .feature-content__nav .btn-a .btn-inner .point::before {
  width: 3.5rem;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
  right: 0.2rem;
  top: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
#main__monster .feature .feature-content__nav .btn-a .btn-inner .point::after {
  width: 1.9rem;
  height: 1.9rem;
  left: -0.7rem;
  top: -0.7rem;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media (hover: hover) {
  #main__monster .feature .feature-content__nav .btn-a .btn-inner:hover .point > span {
    -webkit-transform: scale3d(2, 2, 1);
            transform: scale3d(2, 2, 1);
    opacity: 0;
  }
  #main__monster .feature .feature-content__nav .btn-a .btn-inner:hover .point::before {
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
  }
  #main__monster .feature .feature-content__nav .btn-a .btn-inner:hover .point::after {
    -webkit-transform: scale3d(1.5, 1.5, 1);
            transform: scale3d(1.5, 1.5, 1);
  }
}
@media screen and (max-width: 768px) {
  #main__monster .feature .feature-content__nav {
    margin-top: 9.3333333333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.3333333333vw;
    width: 92vw;
  }
  #main__monster .feature .feature-content__nav .btn-a {
    width: 100%;
  }
  #main__monster .feature .feature-content__nav .btn-a .btn-inner {
    padding: 2.6666666667vw 0 4.6666666667vw;
    font-size: 1.5rem;
  }
}
#main__monster .profile {
  margin-top: 5rem;
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  #main__monster .profile {
    margin-top: 6.6666666667vw;
    padding-top: 13.3333333333vw;
  }
}
#main__monster .profile .profile-bnr {
  position: relative;
  width: 120rem;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #main__monster .profile .profile-bnr {
    width: 100%;
    margin: 0 auto;
  }
}
#main__monster .profile .profile-bnr .profile-text {
  position: absolute;
  left: calc(50% + 6.5rem);
  top: 0;
}
#main__monster .profile .profile-bnr .profile-text .profile-name {
  position: absolute;
  left: 0;
  top: 22rem;
  width: 26.8rem;
}
#main__monster .profile .profile-bnr .profile-text .profile-link {
  position: absolute;
  left: 0.25rem;
  top: 34rem;
  width: 15rem;
}
#main__monster .profile .profile-bnr .profile-text .profile-link .point {
  position: absolute;
  right: -5rem;
  top: calc(50% - 0.3rem);
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #000;
}
#main__monster .profile .profile-bnr .profile-text .profile-link .point > span {
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #000;
  border-radius: 50%;
  left: -0.8rem;
  top: -0.8rem;
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
#main__monster .profile .profile-bnr .profile-text .profile-link .point::before, #main__monster .profile .profile-bnr .profile-text .profile-link .point::after {
  content: "";
  display: block;
  position: absolute;
}
#main__monster .profile .profile-bnr .profile-text .profile-link .point::before {
  width: 3.5rem;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgb(0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%);
  right: 0.2rem;
  top: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
#main__monster .profile .profile-bnr .profile-text .profile-link .point::after {
  width: 1.9rem;
  height: 1.9rem;
  left: -0.7rem;
  top: -0.7rem;
  border-radius: 50%;
  border: 1px solid #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  #main__monster .profile .profile-bnr .profile-text {
    left: 56vw;
  }
  #main__monster .profile .profile-bnr .profile-text .profile-name {
    top: 20vw;
    width: 35.7333333333vw;
  }
  #main__monster .profile .profile-bnr .profile-text .profile-link {
    position: absolute;
    left: 0.25rem;
    top: 36vw;
    width: 24vw;
  }
  #main__monster .profile .profile-bnr .profile-text .profile-link .point {
    right: -7.3333333333vw;
    top: calc(50% - 0.6666666667vw);
    width: 1.2vw;
    height: 1.2vw;
  }
  #main__monster .profile .profile-bnr .profile-text .profile-link .point::before {
    width: 4.6666666667vw;
    right: 0.6666666667vw;
    top: 0.5333333333vw;
  }
  #main__monster .profile .profile-bnr .profile-text .profile-link .point::after {
    width: 3.2vw;
    height: 3.2vw;
    left: -0.9333333333vw;
    top: -0.9333333333vw;
  }
}
@media (hover: hover) {
  #main__monster .profile .profile-bnr:hover .profile-link .point > span {
    -webkit-transform: scale3d(2, 2, 1);
            transform: scale3d(2, 2, 1);
    opacity: 0;
  }
  #main__monster .profile .profile-bnr:hover .profile-link .point::before {
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
  }
  #main__monster .profile .profile-bnr:hover .profile-link .point::after {
    -webkit-transform: scale3d(1.5, 1.5, 1);
            transform: scale3d(1.5, 1.5, 1);
  }
}
#main__monster .gallery {
  padding-top: 18rem;
}
@media screen and (max-width: 768px) {
  #main__monster .gallery {
    padding-top: 20vw;
  }
}
#main__monster .gallery .gallery__title {
  width: 58.9rem;
}
@media screen and (max-width: 768px) {
  #main__monster .gallery .gallery__title {
    width: 77.6vw;
  }
}
#main__monster .gallery .gallery-inner {
  width: 120rem;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #main__monster .gallery .gallery-inner {
    width: 92vw;
  }
}
#main__monster .gallery .gallery__subtitle {
  position: relative;
  display: inline-block;
  margin-bottom: 5rem;
  text-align: center;
  font-size: 3.5rem;
  font-family: var(--en-f);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2em;
  padding: 0.75em 1.75em 0.5em;
}
#main__monster .gallery .gallery__subtitle:not(:first-of-type) {
  margin-top: 7rem;
}
#main__monster .gallery .gallery__subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 7em;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  #main__monster .gallery .gallery__subtitle {
    display: block;
    margin-bottom: 4.6666666667vw;
    font-size: 1.9rem;
    padding: 0.75em 1.75em;
  }
  #main__monster .gallery .gallery__subtitle:not(:first-of-type) {
    margin-top: 13.3333333333vw;
  }
  #main__monster .gallery .gallery__subtitle span {
    position: relative;
    z-index: 2;
    background: #000;
    padding: 0 1em;
  }
  #main__monster .gallery .gallery__subtitle::after {
    width: 100%;
    top: 0;
  }
}
#main__monster .gallery .gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
#main__monster .gallery .gallery-list.--movielist {
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #main__monster .gallery .gallery-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7.3333333333vw;
  }
  #main__monster .gallery .gallery-list.--movielist {
    gap: 7.3333333333vw;
  }
}
#main__monster .gallery .gallery-list__item {
  position: relative;
  text-align: left;
}
#main__monster .gallery .gallery-list__item .gallery-list-trigger {
  position: relative;
  cursor: pointer;
  color: #fff;
}
@media (hover: hover) {
  #main__monster .gallery .gallery-list__item .gallery-list-trigger:hover .gallery-list__pict img {
    -webkit-transform: scale3d(1.05, 1.05, 1);
            transform: scale3d(1.05, 1.05, 1);
  }
}
#main__monster .gallery .gallery-list__item .gallery-list__pict {
  overflow: hidden;
  border: 1px solid #4d4d4d;
}
#main__monster .gallery .gallery-list__item .gallery-list__pict.nobd {
  border: none;
}
#main__monster .gallery .gallery-list__item .gallery-list__pict img {
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
}
#main__monster .gallery .gallery-list__item .gallery-list__caption {
  font-family: var(--ja-sans-f);
  font-size: clamp(11px, 11px + (100vw - 768px) * (14 - 11) / (1100 - 768), 14px);
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  #main__monster .gallery .gallery-list__item .gallery-list__caption {
    font-size: 1.2rem;
  }
}
#main__monster .gallery .gallery-list__item.--movie .gallery-list__pict {
  overflow: hidden;
}
#main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::before, #main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  -webkit-transform: translateY(-1.3rem);
          transform: translateY(-1.3rem);
}
#main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 19px;
  border-color: transparent transparent transparent #ffffff;
  left: calc(50% - 7px);
  top: calc(50% - 13px);
}
#main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::after {
  width: 6.8rem;
  height: 6.8rem;
  border: 1px solid #fff;
  border-radius: 50%;
  left: calc(50% - 3.4rem);
  top: calc(50% - 3.4rem);
}
@media screen and (max-width: 768px) {
  #main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::before, #main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::after {
    -webkit-transform: translateY(-4vw);
            transform: translateY(-4vw);
  }
  #main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.1333333333vw 0 2.1333333333vw 3.0666666667vw;
    left: calc(50% - 1.0666666667vw);
    top: calc(50% - 2vw);
  }
  #main__monster .gallery .gallery-list__item.--movie .gallery-list__pict::after {
    width: 10.4vw;
    height: 10.4vw;
    left: calc(50% - 5.2vw);
    top: calc(50% - 5.2vw);
  }
}
#main__monster .campaign {
  margin-top: 25rem;
}
#main__monster .campaign .campaign__title {
  width: 71.2rem;
}
#main__monster .campaign .campaign__text {
  text-align: center;
  font-size: clamp(12px, 12px + (100vw - 768px) * (18 - 12) / (1100 - 768), 18px);
  font-family: var(--ja-sans-f);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #main__monster .campaign {
    margin-top: 26.6666666667vw;
  }
  #main__monster .campaign .campaign__title {
    width: 94vw;
  }
  #main__monster .campaign .campaign__text {
    font-size: 1.2rem;
  }
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  display: none;
  position: fixed;
  z-index: 111;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
}

.modal.is-open {
  display: block;
}

.modal {
  font-family: var(--ja-sans-f);
}

.modal__close button {
  cursor: pointer;
  color: #fff;
  display: inline-block;
  position: absolute;
  z-index: 3;
  right: 5rem;
  top: 5rem;
  font-size: clamp(10px, 10px + (100vw - 768px) * (15 - 10) / (1100 - 768), 15px);
  background: url(../images/common/ic_close.svg) no-repeat center right/1em auto;
  padding-right: 1.75em;
}

#modal-profile .modal__close button {
  color: #000;
}

@media screen and (max-width: 768px) {
  .modal__close button {
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.2rem;
  }
}
/**
  open animation
 */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] {
  -webkit-animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
}

.modal-common iframe {
  width: 70%;
  height: 40vw;
}

/**
  profile
 */
.modal-profile {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding-left: 50%;
  background: url(../images/profile/profile_pict.png) no-repeat center center/cover;
}
@media only screen and (min-width: 650px) and (max-width: 768px) {
  .modal-profile {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }
}
@media screen and (max-width: 768px) {
  .modal-profile {
    display: block;
    padding-left: 0;
    background-color: #fff;
    background-image: url(../images/profile/profile_pict_bg_sp.png);
  }
}

.modal-profile-content {
  color: #000;
}

.modal-profile-content .content-title {
  position: relative;
  font-size: clamp(22px, 22px + (100vw - 768px) * (36 - 22) / (1100 - 768), 36px);
}

.modal-profile-content .content-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #000;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(60%, rgb(0, 0, 0)), color-stop(90%, rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 90%);
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(60%, rgb(0, 0, 0)), color-stop(90%, rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(90deg, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 90%);
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .modal-profile-content .content-wrap {
    position: absolute;
    left: 0;
    top: -0.6666666667vw;
    width: 100%;
    padding-left: 52.2666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 76vw;
  }
  .modal-profile-content .content-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.6666666667vw;
    width: 53.3333333333vw;
    aspect-ratio: 40/53;
    background: url(../images/profile/profile_pict_sp.png) no-repeat center center;
    background-size: 100% auto;
  }
  .modal-profile-content .content-text1 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.7rem;
  }
  .modal-profile-content .content-text1 span {
    display: block;
  }
  .modal-profile-content .content-title {
    position: relative;
    font-size: 2.2rem;
    line-height: 1.5;
    padding-bottom: 1rem;
  }
  .modal-profile-content .content-title > small {
    display: block;
    font-size: 0.5em;
  }
  .modal-profile-content .content-text2 {
    background-color: rgba(255, 255, 255, 0.4);
    margin: 76vw 1.5rem 6.6666666667vw;
    padding: 2rem;
    font-size: 1.3rem;
    line-height: 2;
  }
}
@media print, screen and (min-width: 769px) {
  .modal-profile-content {
    width: 60rem;
  }
  .modal-profile-content .content-text1 {
    font-size: clamp(13px, 13px + (100vw - 768px) * (16 - 13) / (1100 - 768), 16px);
    margin-bottom: 1.5rem;
  }
  .modal-profile-content .content-text2 {
    line-height: 2;
    font-size: clamp(13px, 13px + (100vw - 768px) * (16 - 13) / (1100 - 768), 16px);
    letter-spacing: 0.1em;
  }
  .modal-profile-content .content-title {
    position: relative;
    font-size: clamp(22px, 22px + (100vw - 768px) * (36 - 22) / (1100 - 768), 36px);
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
  .modal-profile-content .content-title > small {
    font-size: 0.4em;
    margin-left: 2em;
  }
}
@-webkit-keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modal-video-inner {
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes modal-video-inner {
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: modal-video;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-effect-exit {
  opacity: 0;
}

.modal-video-effect-exit .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}

.modal-video-body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal-video-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: modal-video-inner;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  width: 70vw;
  height: 40vw;
}

@media screen and (max-width: 768px) {
  .modal-video-movie-wrap iframe {
    width: 90vw;
    height: 50vw;
  }
}
.modal-video-close-btn {
  position: absolute;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  z-index: 3;
  right: 5rem;
  top: 5rem;
  font-size: 1.5rem;
  background: url(../images/common/ic_close.svg) no-repeat center right/1.2rem auto;
  padding-right: 2rem;
}

.modal-video-close-btn::before {
  content: "CLOSE";
}

@media screen and (max-width: 768px) {
  .modal-video-close-btn {
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.2rem;
  }
}
.modal__graphic {
  width: 70vw;
}

@media screen and (max-width: 768px) {
  .modal__graphic {
    width: 92vw;
  }
}
#main__monster .mv__title {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
#main__monster .mv__title.mv__anim {
  -webkit-animation: fadeInBlur 1s 0.5s forwards;
          animation: fadeInBlur 1s 0.5s forwards; /* アニメーションを適用 */
}
@-webkit-keyframes fadeInBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  40% {
    opacity: 0.8;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  40% {
    opacity: 0.8;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
#main__monster .fadeIn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#main__monster .fadeIn.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}
#main__monster .ttlAnim {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}
#main__monster .ttlAnim.is-active {
  opacity: 1;
  webkit-clip-path: inset(0);
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#main__monster .fadeIn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#main__monster .fadeIn.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}


@media screen and (min-width: 768px) {
    .gallery-list.one-col{
        justify-content: center !important;
    }
    .gallery-list.one-col li{
        width: 50%;
    }
}
