@charset "UTF-8";
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/
html {
  overflow-y: scroll;
}

body {
  overflow: hidden;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: medium;
}

body {
  font-size: 62.5%; /* 16px -> 10px */
}

div {
  line-height: 0;
  box-sizing: border-box;
}

dt, dd, li,
caption, th, td,
input, button, textarea, select,
h1, h2, h3, h4, h5, h6, address {
  line-height: 0;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
p input, p button, p select,
li h1, li h2, li h3, li h4, li h5, li h6, li p, li dt, li dd, li li, li th, li td, li input, li button, li textarea, li select,
dd h1, dd h2, dd h3, dd h4, dd h5, dd h6, dd p, dd dt, dd dd, dd li, dd th, dd td, dd input, dd button, dd textarea, dd select,
tr h1, tr h2, tr h3, tr h4, tr h5, tr h6, tr p, tr dt, tr dd, tr li, tr input, tr button, tr textarea, tr select {
  font-size: 100%;
}

input, button, select, option, textarea {
  font-size: 14px;
}

figure {
  margin: 0;
}

a,
a:link,
a:visited {
  color: #1d99c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  position: relative;
  box-sizing: border-box;
}

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

/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}
@media only screen and (max-width: 768px) {
  .hover :hover {
    animation: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
  }
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@keyframes spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@-webkit-keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@-webkit-keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-center {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-center {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes load-shine {
  0% {
    transform: rotateY(0deg);
  }
  30% {
    transform: rotateY(360deg);
  }
  70% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes load-shine {
  0% {
    transform: rotateY(0deg);
  }
  30% {
    transform: rotateY(360deg);
  }
  70% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
/*=============================================================
 01_base
=============================================================*/
/*=============================================================
 tools
=============================================================*/
#head-logo, #btn-nav, #bnr-ticket {
  display: none;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: #0B0B0B;
  transition: all 1s 3.5s ease;
}
#loading .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
#loading .wrap .sun {
  position: absolute;
  top: 50%;
  left: -600px;
  transform: translateY(-50%);
  width: 1200px;
  opacity: 0.5;
}
@media only screen and (max-width: 2000px) {
  #loading .wrap .sun {
    left: -30vw;
    width: 60vw;
  }
}
@media only screen and (max-width: 1250px) {
  #loading .wrap .sun {
    left: -48vw;
    width: 96vw;
  }
}
@media only screen and (max-width: 768px) {
  #loading .wrap .sun {
    width: 142.1875vw;
    left: -95.3125vw;
  }
}
#loading .wrap .sun img {
  -webkit-animation: spin-left 80s infinite linear;
          animation: spin-left 80s infinite linear;
}
#loading .wrap .moon {
  position: absolute;
  top: 50%;
  right: -570px;
  transform: translateY(-50%);
  width: 1140px;
  opacity: 0.7;
}
@media only screen and (max-width: 2000px) {
  #loading .wrap .moon {
    right: -28.5vw;
    width: 57vw;
  }
}
@media only screen and (max-width: 1250px) {
  #loading .wrap .moon {
    right: -45.6vw;
    width: 91.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #loading .wrap .moon {
    width: 137.96875vw;
    right: -93.75vw;
  }
}
#loading .wrap .moon img {
  -webkit-animation: spin-right 80s infinite linear;
          animation: spin-right 80s infinite linear;
}
#loading .wrap .logo {
  position: relative;
  width: 800px;
  z-index: 3;
}
@media only screen and (max-width: 2000px) {
  #loading .wrap .logo {
    width: 40vw;
  }
}
@media only screen and (max-width: 1250px) {
  #loading .wrap .logo {
    width: 64vw;
  }
}
@media only screen and (max-width: 768px) {
  #loading .wrap .logo {
    width: 70.3125vw;
  }
}
#loading .wrap .deco-box {
  display: flex;
  justify-content: center;
  gap: 0 35px;
  z-index: 3;
  margin-top: 20px;
}
@media only screen and (max-width: 2000px) {
  #loading .wrap .deco-box {
    gap: 0 1.75vw;
    margin-top: 1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #loading .wrap .deco-box {
    gap: 0 2.8vw;
    margin-top: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #loading .wrap .deco-box {
    gap: 0 3.90625vw;
    margin-top: 2.34375vw;
  }
}
#loading .wrap .deco-box .deco {
  width: 35px;
}
@media only screen and (max-width: 2000px) {
  #loading .wrap .deco-box .deco {
    width: 1.75vw;
  }
}
@media only screen and (max-width: 1250px) {
  #loading .wrap .deco-box .deco {
    width: 2.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #loading .wrap .deco-box .deco {
    width: 3.90625vw;
  }
}
#loading .wrap .logo {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s 0.6s ease;
}
@media only screen and (max-width: 2000px) {
  #loading .wrap .logo {
    transform: translateY(4vw);
  }
}
@media only screen and (max-width: 1250px) {
  #loading .wrap .logo {
    transform: translateY(6.4vw);
  }
}
@media only screen and (max-width: 768px) {
  #loading .wrap .logo {
    transform: translateY(12.5vw);
  }
}
#loading .wrap .logo img {
  transition: all 0.6s 3s ease;
}
#loading .wrap .deco-box {
  transition: all 0.6s 3s ease;
}
#loading .wrap .deco-box .deco {
  -webkit-animation: load-shine 4s ease infinite;
          animation: load-shine 4s ease infinite;
}
#loading .wrap .deco-box .deco img {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 1s ease;
}
@media only screen and (max-width: 2000px) {
  #loading .wrap .deco-box .deco img {
    transform: translateY(-2.5vw);
  }
}
@media only screen and (max-width: 1250px) {
  #loading .wrap .deco-box .deco img {
    transform: translateY(-4vw);
  }
}
@media only screen and (max-width: 768px) {
  #loading .wrap .deco-box .deco img {
    transform: translateY(7.8125vw);
  }
}
#loading .wrap .deco-box .deco:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#loading .wrap .deco-box .deco:nth-child(2) img {
  transition-delay: 1.2s;
}
#loading .wrap .deco-box .deco:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#loading .wrap .deco-box .deco:nth-child(3) img {
  transition-delay: 1.4s;
}
#loading.on .wrap .logo {
  opacity: 1;
  transform: translateY(0px);
}
#loading.on .wrap .deco-box .deco img {
  opacity: 1;
  transform: translateY(0px);
}
#loading.off {
  opacity: 0;
  visibility: hidden;
}
#loading.off .wrap .logo img {
  opacity: 0;
  transform: translateY(50px);
}
@media only screen and (max-width: 2000px) {
  #loading.off .wrap .logo img {
    transform: translateY(2.5vw);
  }
}
@media only screen and (max-width: 1250px) {
  #loading.off .wrap .logo img {
    transform: translateY(4vw);
  }
}
@media only screen and (max-width: 768px) {
  #loading.off .wrap .logo img {
    transform: translateY(7.8125vw);
  }
}
#loading.off .wrap .deco-box {
  opacity: 0;
  transform: translateY(-50px);
}
@media only screen and (max-width: 2000px) {
  #loading.off .wrap .deco-box {
    transform: translateY(-2.5vw);
  }
}
@media only screen and (max-width: 1250px) {
  #loading.off .wrap .deco-box {
    transform: translateY(-4vw);
  }
}
@media only screen and (max-width: 768px) {
  #loading.off .wrap .deco-box {
    transform: translateY(-7.8125vw);
  }
}

#keyvisual {
  background-color: #0B0B0B;
}
#keyvisual .flex-wrap {
  position: relative;
  height: 60vw;
  border-radius: 128px;
  border-radius: 6.4vw;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #keyvisual .flex-wrap {
    flex-direction: column;
    height: auto;
    border-radius: 12.5vw;
  }
}
#keyvisual h1 {
  position: absolute;
  bottom: 9.2vw;
  left: 49.7%;
  transform: translateX(-50%);
  width: 61vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual h1 {
    width: 97.1875vw;
    bottom: 72.5vw;
  }
}
#keyvisual .catch {
  width: 45.05vw;
  margin: 0 auto;
  padding: 2.2vw 0;
}
@media only screen and (max-width: 768px) {
  #keyvisual .catch {
    width: 90.3125vw;
    padding: 4.375vw 0;
  }
}
#keyvisual .main {
  position: relative;
  overflow: hidden;
}
#keyvisual .main::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#keyvisual .main .bg {
  position: relative;
}
#keyvisual .main .ill {
  position: absolute;
  top: 0;
  left: 0;
}
#keyvisual .main .deco {
  position: absolute;
  top: 0;
  left: 0;
}
#keyvisual .main.main1::before {
  top: 0;
  background-image: linear-gradient(0deg, #ff895d, #f46d3b);
}
#keyvisual .main.main2::before {
  bottom: 0;
  background-image: linear-gradient(0deg, #2a2350, #31359f);
}
#keyvisual h1 {
  opacity: 0;
  transform: translateX(-50%) scale(1.2);
  transition: all 1s 2.2s ease;
}
#keyvisual h1 img {
  filter: blur(10px);
  transition: all 1s 2.4s ease;
}
#keyvisual .main::before {
  height: 0;
  transition: all 0.8s 0.5s ease;
}
#keyvisual .main .bg {
  opacity: 0;
  transform: scale(1.2);
  transition: all 1.5s 1.2s ease;
}
#keyvisual .main .ill {
  opacity: 0;
  transition: all 1s 1.5s ease;
}
#keyvisual .main .ill img {
  filter: blur(10px);
  transition: all 1s 1.6s ease;
}
#keyvisual .main .deco {
  opacity: 0;
  filter: blur(10px);
  transition: all 1s 1.8s ease;
}
#keyvisual .main .deco img {
  filter: brightness(5);
  transition: all 1s 1.8s ease;
}
#keyvisual .main.main1::before {
  transform: translateY(-100px);
  transform-origin: bottom center;
}
#keyvisual .main.main1 .ill {
  transform: translateY(50px) translateX(50px);
}
#keyvisual .main.main1 .deco {
  transform: scale(0.8);
}
#keyvisual .main.main2::before {
  transform: translateY(100px);
  transform-origin: top center;
}
#keyvisual .main.main2 .ill {
  transform: translateY(50px) translateX(-50px);
}
#keyvisual .main.main2 .deco {
  transform: scale(1.2);
}
#keyvisual.move-on h1 {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
#keyvisual.move-on h1 img {
  filter: blur(0px);
}
#keyvisual.move-on .main::before {
  height: 100%;
  transform: translateY(0);
}
#keyvisual.move-on .main .bg {
  opacity: 1;
  transform: scale(1);
}
#keyvisual.move-on .main .ill {
  opacity: 1;
  transform: translate(0, 0);
}
#keyvisual.move-on .main .ill img {
  filter: blur(0px);
}
#keyvisual.move-on .main .deco {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
#keyvisual.move-on .main .deco img {
  filter: brightness(1);
}

#content::before {
  content: "";
  position: relative;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 57px;
  height: 28px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #0B0B0B;
}
@media only screen and (max-width: 768px) {
  #content::before {
    width: 5.78125vw;
    height: 2.8125vw;
  }
}

section .ttl-box svg {
  width: 100%;
  height: auto;
}
section .ttl-box .deco {
  position: relative;
  width: 140px;
  margin: 0 auto 26px;
}
@media only screen and (max-width: 2000px) {
  section .ttl-box .deco {
    width: 7vw;
    margin-bottom: 1.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  section .ttl-box .deco {
    width: 11.2vw;
    margin-bottom: 2.08vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box .deco {
    width: 14.21875vw;
    margin-bottom: 2.8125vw;
  }
}
section .ttl-box .deco span {
  display: block;
}
section .ttl-box .deco .star {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 31px;
}
@media only screen and (max-width: 2000px) {
  section .ttl-box .deco .star {
    bottom: -0.4vw;
    width: 1.55vw;
  }
}
@media only screen and (max-width: 1250px) {
  section .ttl-box .deco .star {
    bottom: -0.64vw;
    width: 2.48vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box .deco .star {
    width: 14.21875vw;
    margin-bottom: 2.8125vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box .deco .star {
    width: 3.28125vw;
    bottom: -3.75vw;
    margin-bottom: 2.8125vw;
  }
}
section .ttl-box h2 {
  position: relative;
  margin: 0 auto;
  margin-bottom: -30px;
  z-index: 2;
}
@media only screen and (max-width: 2000px) {
  section .ttl-box h2 {
    margin-bottom: -1.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  section .ttl-box h2 {
    margin-bottom: -2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box h2 {
    margin-bottom: -1.5625vw;
  }
}
section .ttl-box .line {
  width: 282px;
  margin: 0 auto;
}
@media only screen and (max-width: 2000px) {
  section .ttl-box .line {
    width: 14.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  section .ttl-box .line {
    width: 22.56vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box .line {
    width: 29.6875vw;
  }
}
section .ttl-box.yl svg path {
  fill: #FFC529;
}
section .ttl-box.bl svg path {
  fill: #3D319F;
}
section .ttl-box.gl svg path {
  fill: #A37941;
}
section .ttl-box .deco .star-line {
  transform: scale(0);
  opacity: 0;
  transform-origin: bottom center;
  transition: all 0.6s ease;
}
section .ttl-box .deco .star {
  opacity: 0;
  transition: all 0.4s 0.4s ease;
}
section .ttl-box h2 {
  transform-origin: 50% 180%;
  transform: rotate(50deg);
  opacity: 0;
  transition: all 1s 0.7s ease;
}
section .ttl-box .line {
  transform-origin: 65% 180%;
  transform: rotate(-50deg);
  opacity: 0;
  transition: all 1s 0.5s ease;
}
section .btn {
  opacity: 0;
  transition: all 0.6s ease;
}
section.move-on .deco .star-line {
  opacity: 1;
  transform: scale(1);
}
section.move-on .deco .star {
  opacity: 1;
}
section.move-on .deco .star svg {
  -webkit-animation: spinStarPop 1.5s ease 0.4s forwards;
          animation: spinStarPop 1.5s ease 0.4s forwards;
}
section.move-on .ttl-box h2, section.move-on .ttl-box .line {
  opacity: 1;
  transform: rotate(0deg);
}
section.move-on .btn {
  opacity: 1;
}
section.move-on .btn.off {
  opacity: 0.5;
}

#news {
  margin-bottom: 154px;
}
@media only screen and (max-width: 2000px) {
  #news {
    margin-bottom: 7.7vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news {
    margin-bottom: 12.32vw;
  }
}
@media only screen and (max-width: 768px) {
  #news {
    margin-bottom: 10.3125vw;
  }
}
#news .hanabira {
  position: absolute;
  top: 115px;
  left: calc(50% - 330px);
  width: 92px;
}
@media only screen and (max-width: 2000px) {
  #news .hanabira {
    top: 5.75vw;
    left: calc(50% - 16.5vw);
    width: 4.6vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .hanabira {
    top: 9.2vw;
    left: calc(50% - 26.4vw);
    width: 7.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .hanabira {
    top: 17.1875vw;
    left: calc(50% - 37.1875vw);
    width: 12.03125vw;
  }
}
#news .ttl-box {
  margin-bottom: -80px;
}
@media only screen and (max-width: 2000px) {
  #news .ttl-box {
    margin-bottom: -4vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .ttl-box {
    margin-bottom: -6.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .ttl-box {
    margin-bottom: -12.5vw;
  }
}
#news .ttl-box h2 {
  width: 385px;
  left: -5px;
}
@media only screen and (max-width: 2000px) {
  #news .ttl-box h2 {
    width: 19.25vw;
    left: -0.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .ttl-box h2 {
    width: 30.8vw;
    left: -0.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .ttl-box h2 {
    width: 40.625vw;
  }
}
#news .list {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 6px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 2000px) {
  #news .list {
    width: 60vw;
    padding: 4vw 0 0.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .list {
    width: 96vw;
    padding: 6.4vw 0 0.48vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list {
    width: 93.75vw;
    padding: 12.5vw 0 2.8125vw;
    border-radius: 7.8125vw;
  }
}
#news .list ul {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 2000px) {
  #news .list ul {
    width: 50vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .list ul {
    width: 80vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul {
    width: 89.0625vw;
    margin-bottom: -1.5625vw;
  }
}
#news .list ul li {
  position: relative;
  min-height: 150px;
  margin-bottom: 32px;
  box-sizing: border-box;
}
@media only screen and (max-width: 2000px) {
  #news .list ul li {
    min-height: 7.5vw;
    margin-bottom: 1.6vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .list ul li {
    min-height: 12vw;
    margin-bottom: 1.76vw;
  }
}
#news .list ul li a {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  height: 100%;
  padding: 40px 30px;
  gap: 0 22px;
  color: #0B0B0B;
  text-decoration: none;
}
@media only screen and (max-width: 2000px) {
  #news .list ul li a {
    grid-template-columns: 12vw 1fr;
    padding: 2vw 1.5vw;
    gap: 0 1.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a {
    grid-template-columns: 19.2vw 1fr;
    padding: 3.2vw 2.4vw;
    gap: 0 1.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.125vw 0;
    padding: 4.6875vw 3.90625vw;
  }
}
#news .list ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/news/frame_btm-pc.png") no-repeat bottom center, url("../img/news/frame_top-pc.png") no-repeat top center;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #news .list ul li a::before {
    background: url("../img/news/frame_btm-sp.png") no-repeat bottom center, url("../img/news/frame_top-sp.png") no-repeat top center;
    background-size: 100% auto;
  }
}
#news .list ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 70px);
  background: url("../img/news/frame_rp-pc.png") repeat-y center center;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 2000px) {
  #news .list ul li a::after {
    height: calc(100% - 3.5vw);
  }
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a::after {
    height: calc(100% - 5.6vw);
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a::after {
    height: calc(100% - 7.8125vw);
    background-image: url("../img/news/frame_rp-sp.png");
  }
}
#news .list ul li a .date {
  position: relative;
  padding: 0.6em;
  background-color: #A37941;
  z-index: 2;
}
#news .list ul li a .date p {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-family: "Red Rose", serif;
}
@media only screen and (max-width: 2000px) {
  #news .list ul li a .date p {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a .date p {
    font-weight: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a .date p {
    font-size: 4.6875vw;
  }
}
#news .list ul li a .txt {
  position: relative;
  z-index: 2;
}
#news .list ul li a .txt p {
  font-size: 20px;
}
@media only screen and (max-width: 2000px) {
  #news .list ul li a .txt p {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #news .list ul li a .txt p {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li a .txt p {
    font-size: 3.75vw;
  }
}
#news .list ul li:hover a::before {
  background: url("../img/news/frame_btm_on-pc.png") no-repeat bottom center, url("../img/news/frame_top_on-pc.png") no-repeat top center;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  #news .list ul li:hover a::before {
    background: url("../img/news/frame_btm-sp.png") no-repeat bottom center, url("../img/news/frame_top-sp.png") no-repeat top center;
    background-size: 100% auto;
  }
}
#news .list ul li:hover a::after {
  background-image: url("../img/news/frame_rp_on-pc.png");
}
@media only screen and (max-width: 768px) {
  #news .list ul li:hover a::after {
    background-image: url("../img/news/frame_rp-sp.png");
  }
}
#news .list ul li {
  opacity: 0;
  transition: all 0.8s 1.3s ease;
}
#news .list ul li:nth-child(2) {
  transition-delay: 1.4s;
}
#news .list ul li:nth-child(3) {
  transition-delay: 1.5s;
}
#news .btn {
  transition-delay: 1.4s;
}
#news.move-on .list ul li {
  opacity: 1;
}

#merch {
  margin-bottom: 156px;
}
@media only screen and (max-width: 2000px) {
  #merch {
    margin-bottom: 7.8vw;
  }
}
@media only screen and (max-width: 1250px) {
  #merch {
    margin-bottom: 12.48vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch {
    margin-bottom: 11.875vw;
  }
}
#merch .bg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 2621px;
}
@media only screen and (max-width: 2000px) {
  #merch .bg {
    width: 131.05vw;
  }
}
@media only screen and (max-width: 1250px) {
  #merch .bg {
    width: 209.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .bg {
    width: 222.96875vw;
  }
}
#merch .deco-star {
  position: absolute;
  top: 145px;
  right: calc(50% - 300px);
  width: 72px;
}
@media only screen and (max-width: 2000px) {
  #merch .deco-star {
    top: 7.25vw;
    right: calc(50% - 15vw);
    width: 3.6vw;
  }
}
@media only screen and (max-width: 1250px) {
  #merch .deco-star {
    top: 11.6vw;
    right: calc(50% - 24vw);
    width: 5.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .deco-star {
    top: 14.0625vw;
    right: calc(50% - 32.5vw);
    width: 8.4375vw;
  }
}
#merch .wrap {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 2000px) {
  #merch .wrap {
    top: 2.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #merch .wrap {
    top: 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .wrap {
    top: 4.6875vw;
  }
}
#merch .ttl-box {
  margin-bottom: 34px;
}
@media only screen and (max-width: 2000px) {
  #merch .ttl-box {
    margin-bottom: 1.7vw;
  }
}
@media only screen and (max-width: 1250px) {
  #merch .ttl-box {
    margin-bottom: 2.72vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .ttl-box {
    margin-bottom: 1.875vw;
  }
}
#merch .ttl-box h2 {
  width: 412px;
  left: -10px;
  margin-bottom: -40px;
}
@media only screen and (max-width: 2000px) {
  #merch .ttl-box h2 {
    width: 20.6vw;
    margin-bottom: -2vw;
  }
}
@media only screen and (max-width: 1250px) {
  #merch .ttl-box h2 {
    width: 32.96vw;
    margin-bottom: -3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .ttl-box h2 {
    width: 42.65625vw;
    left: -1.5625vw;
    margin-bottom: -4.375vw;
  }
}
#merch .image {
  width: 1200px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 2000px) {
  #merch .image {
    width: 60vw;
    margin-bottom: 1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #merch .image {
    width: 96vw;
    margin-bottom: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .image {
    width: 93.75vw;
    margin-bottom: 1.25vw;
  }
}
#merch .image {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.9);
  transition: all 0.8s 1.2s ease;
}
#merch .btn {
  transition-delay: 1.6s;
}
#merch.move-on .image {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

@media only screen and (max-width: 768px) {
  #message {
    margin-bottom: 6.25vw;
  }
}
#message .feather1 {
  position: absolute;
  top: 205px;
  left: calc(50% - 240px);
  width: 93px;
}
@media only screen and (max-width: 2000px) {
  #message .feather1 {
    top: 11vw;
    left: calc(50% - 16.5vw);
    width: 4.65vw;
  }
}
@media only screen and (max-width: 1250px) {
  #message .feather1 {
    top: 17.6vw;
    left: calc(50% - 26.4vw);
    width: 7.44vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .feather1 {
    top: 21.40625vw;
    left: calc(50% - 34.0625vw);
    width: 10.625vw;
  }
}
#message .feather2 {
  position: absolute;
  top: 115px;
  left: calc(50% - 350px);
  width: 113px;
}
@media only screen and (max-width: 2000px) {
  #message .feather2 {
    top: 5.75vw;
    left: calc(50% - 17.5vw);
    width: 5.65vw;
  }
}
@media only screen and (max-width: 1250px) {
  #message .feather2 {
    top: 9.2vw;
    left: calc(50% - 28vw);
    width: 9.04vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .feather2 {
    top: 10.15625vw;
    left: calc(50% - 34.84375vw);
    width: 12.5vw;
  }
}
#message .ttl-box {
  position: relative;
  margin-bottom: 25px;
}
@media only screen and (max-width: 2000px) {
  #message .ttl-box {
    margin-bottom: 1.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #message .ttl-box {
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .ttl-box {
    margin-bottom: 3.125vw;
  }
}
#message .ttl-box h2 {
  position: relative;
  width: 951px;
  margin-bottom: 0;
}
@media only screen and (max-width: 2000px) {
  #message .ttl-box h2 {
    width: 47.55vw;
  }
}
@media only screen and (max-width: 1250px) {
  #message .ttl-box h2 {
    width: 76.08vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .ttl-box h2 {
    width: 93.75vw;
  }
}
#message .ttl-box .line {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 2000px) {
  #message .ttl-box .line {
    bottom: 4vw;
  }
}
@media only screen and (max-width: 1250px) {
  #message .ttl-box .line {
    bottom: 6.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .ttl-box .line {
    bottom: 7.8125vw;
  }
}
#message .image {
  width: 1200px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 2000px) {
  #message .image {
    width: 60vw;
  }
}
@media only screen and (max-width: 1250px) {
  #message .image {
    width: 96vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .image {
    width: 93.75vw;
  }
}
#message .ttl-box h2 {
  transform: translateY(-60px);
  transform-origin: 0 0;
}
#message .ttl-box .line {
  transform: translateY(60px) translateX(-50%);
  transform-origin: 0 0;
}
#message .image {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.1);
  transition: all 0.8s 1.2s ease;
}
#message .btn {
  transition-delay: 1.4s;
}
#message.move-on .ttl-box h2 {
  transform: translateY(0px);
}
#message.move-on .ttl-box .line {
  transform: translateY(0px) translateX(-50%);
}
#message.move-on .image {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

#music {
  margin-bottom: 200px;
}
@media only screen and (max-width: 2000px) {
  #music {
    margin-bottom: 10vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music {
    margin-bottom: 16vw;
  }
}
@media only screen and (max-width: 768px) {
  #music {
    margin-bottom: 10.15625vw;
  }
}
#music .bg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1900px;
}
@media only screen and (max-width: 2000px) {
  #music .bg {
    width: 95vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .bg {
    width: 144vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .bg {
    width: 93.75vw;
  }
}
#music .bg::before {
  content: "";
  position: absolute;
  top: 335px;
  left: -262px;
  display: block;
  width: 1070px;
  height: 1071px;
  background: url("../img/music/bg_top_deco01.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #music .bg::before {
    top: 16.75vw;
    left: -13.1vw;
    width: 53.5vw;
    height: 53.55vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .bg::before {
    top: 26.8vw;
    left: -20.96vw;
    width: 77.6vw;
    height: 85.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .bg::before {
    top: 48.125vw;
    left: -47.8125vw;
    width: 119.375vw;
    height: 119.375vw;
  }
}
#music .bg::after {
  content: "";
  position: absolute;
  top: 335px;
  right: -30px;
  display: block;
  width: 872px;
  height: 1071px;
  background: url("../img/music/bg_top_deco02.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #music .bg::after {
    top: 16.75vw;
    right: -1.5vw;
    width: 43.6vw;
    height: 53.55vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .bg::after {
    top: 26.8vw;
    right: -2.4vw;
    width: 61.76vw;
    height: 85.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .bg::after {
    top: 210.3125vw;
    right: -19.6875vw;
    width: 87.8125vw;
    height: 107.65625vw;
  }
}
#music .deco-moon {
  position: absolute;
  top: 113px;
  left: calc(50% - 277px);
  width: 73px;
}
@media only screen and (max-width: 2000px) {
  #music .deco-moon {
    top: 5.65vw;
    left: calc(50% - 13.85vw);
    width: 3.65vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .deco-moon {
    top: 9.04vw;
    left: calc(50% - 22.16vw);
    width: 5.84vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .deco-moon {
    top: 13.125vw;
    left: calc(50% - 30vw);
    width: 8.90625vw;
  }
}
#music .deco-star {
  position: absolute;
  top: 90px;
  left: calc(50% - 204px);
  width: 44px;
}
@media only screen and (max-width: 2000px) {
  #music .deco-star {
    top: 4.5vw;
    left: calc(50% - 10.2vw);
    width: 2.2vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .deco-star {
    top: 7.2vw;
    left: calc(50% - 16.32vw);
    width: 3.52vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .deco-star {
    top: 10.15625vw;
    left: calc(50% - 21.25vw);
    width: 5.46875vw;
  }
}
#music .wrap {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 2000px) {
  #music .wrap {
    top: 3.7vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .wrap {
    top: 5.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .wrap {
    height: 6.25vw;
  }
}
#music .ttl-box {
  margin-bottom: 45px;
}
@media only screen and (max-width: 2000px) {
  #music .ttl-box {
    margin-bottom: 2.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .ttl-box {
    margin-bottom: 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .ttl-box {
    margin-bottom: 15.625vw;
  }
}
#music .ttl-box h2 {
  width: 385px;
}
@media only screen and (max-width: 2000px) {
  #music .ttl-box h2 {
    width: 19.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .ttl-box h2 {
    width: 30.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .ttl-box h2 {
    width: 37.96875vw;
  }
}
#music .grid-wrap {
  align-items: center;
  grid-template-columns: 556px 1fr;
  gap: 0 408px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 2000px) {
  #music .grid-wrap {
    grid-template-columns: 27.8vw 1fr;
    gap: 0 20.4vw;
    margin-bottom: 1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .grid-wrap {
    grid-template-columns: 36.48vw 1fr;
    gap: 0 16.64vw;
    margin-bottom: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .grid-wrap {
    grid-template-columns: 86.875vw;
    gap: 15.625vw 0;
  }
}
#music .box {
  position: relative;
  display: flex;
  flex-direction: column;
}
#music .box .jacket {
  position: relative;
  margin-bottom: 25px;
}
@media only screen and (max-width: 2000px) {
  #music .box .jacket {
    margin-bottom: 1.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .box .jacket {
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .box .jacket {
    margin-bottom: 4.0625vw;
  }
}
#music .box .jacket img {
  position: relative;
}
#music .box .txt-box {
  position: relative;
  margin-bottom: 25px;
}
@media only screen and (max-width: 2000px) {
  #music .box .txt-box {
    margin-bottom: 1.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .box .txt-box {
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .box .txt-box {
    margin-bottom: 2.34375vw;
  }
}
#music .box .txt-box .logo {
  width: 554px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 2000px) {
  #music .box .txt-box .logo {
    width: 27.7vw;
    margin: 0 auto 1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .box .txt-box .logo {
    width: 36.32vw;
    margin: 0 auto 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .box .txt-box .logo {
    margin-bottom: 2.1875vw;
  }
}
#music .box .txt-box .logo svg {
  width: 100%;
  height: auto;
}
#music .box .txt-box p {
  font-size: 20px;
}
@media only screen and (max-width: 2000px) {
  #music .box .txt-box p {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .box .txt-box p {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .box .txt-box p {
    font-size: 3.75vw;
  }
}
#music .box1 .jacket::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -105px;
  display: block;
  width: 493px;
  height: 526px;
  background: url("../img/music/deco_sun.png") no-repeat top center;
  background-size: contain;
  -webkit-animation: spin-right 80s infinite linear;
          animation: spin-right 80s infinite linear;
}
@media only screen and (max-width: 2000px) {
  #music .box1 .jacket::before {
    top: -5vw;
    right: -5.25vw;
    width: 24.65vw;
    height: 26.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .box1 .jacket::before {
    top: -8vw;
    right: -8.4vw;
    width: 31.44vw;
    height: 34.08vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .box1 .jacket::before {
    top: -15.625vw;
    right: inherit;
    left: 50%;
    transform: translateX(50%);
    width: 77.03125vw;
    height: 82.1875vw;
    -webkit-animation: spin-right-Xcenter 80s infinite linear;
            animation: spin-right-Xcenter 80s infinite linear;
  }
}
@media only screen and (max-width: 768px) {
  #music .box1 .txt-box .logo {
    width: 62.1875vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .box2 {
    margin-bottom: -0.78125vw;
  }
}
#music .box2 .jacket {
  order: 2;
}
@media only screen and (max-width: 768px) {
  #music .box2 .jacket {
    order: 0;
  }
}
#music .box2 .jacket::before {
  content: "";
  position: absolute;
  bottom: -84px;
  left: -105px;
  display: block;
  width: 483px;
  height: 503px;
  background: url("../img/music/deco_moon.png") no-repeat top center;
  background-size: contain;
  -webkit-animation: spin-left 80s infinite linear;
          animation: spin-left 80s infinite linear;
}
@media only screen and (max-width: 2000px) {
  #music .box2 .jacket::before {
    bottom: -4.2vw;
    left: -5.25vw;
    width: 24.15vw;
    height: 25.15vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .box2 .jacket::before {
    bottom: -6.72vw;
    left: -8.4vw;
    width: 30.64vw;
    height: 32.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .box2 .jacket::before {
    bottom: inherit;
    top: -15.625vw;
    left: 50%;
    transform: translateX(-50%);
    width: 75.625vw;
    height: 78.59375vw;
    -webkit-animation: spin-left-Xcenter 80s infinite linear;
            animation: spin-left-Xcenter 80s infinite linear;
  }
}
@media only screen and (max-width: 768px) {
  #music .box2 .txt-box .logo {
    width: 55.9375vw;
  }
}
#music .box1 .jacket {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s 1.4s ease;
}
#music .box1 .txt-box {
  transform: translateY(-50px);
  transition: all 0.8s 1.4s ease;
}
#music .box1 .txt-box .logo {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 1.5s ease;
}
#music .box1 .txt-box p {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s 1.5s ease;
}
#music .box2 .jacket {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 1.4s ease;
}
#music .box2 .txt-box {
  transform: translateY(50px);
  transition: all 0.8s 1.4s ease;
}
#music .box2 .txt-box .logo {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 1.5s ease;
}
#music .box2 .txt-box p {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s 1.5s ease;
}
#music .btn {
  margin-top: -50px;
  transition-delay: 1.8s;
}
@media only screen and (max-width: 2000px) {
  #music .btn {
    margin-top: -2.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #music .btn {
    margin-top: -4vw;
  }
}
@media only screen and (max-width: 768px) {
  #music .btn {
    margin-top: 0;
  }
}
#music.move-on .jacket {
  opacity: 1;
  transform: translateY(0px);
}
#music.move-on .txt-box {
  transform: translateY(0px);
}
#music.move-on .txt-box .logo, #music.move-on .txt-box p {
  opacity: 1;
  transform: translateY(0px);
}

#video {
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  #video {
    margin-bottom: 10.9375vw;
  }
}
#video .hanabira {
  position: absolute;
  top: -22px;
  right: calc(50% - 208px);
  width: 106px;
}
@media only screen and (max-width: 2000px) {
  #video .hanabira {
    top: -1.1vw;
    right: calc(50% - 10.4vw);
    width: 5.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .hanabira {
    top: -1.76vw;
    right: calc(50% - 16.64vw);
    width: 8.48vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .hanabira {
    top: -2.1875vw;
    right: calc(50% - 27.03125vw);
    width: 12.96875vw;
  }
}
#video .bg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 2621px;
}
@media only screen and (max-width: 2000px) {
  #video .bg {
    width: 131.05vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .bg {
    width: 209.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .bg {
    width: 259.53125vw;
  }
}
#video .deco1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1102px;
}
@media only screen and (max-width: 2000px) {
  #video .deco1 {
    width: 55.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .deco1 {
    width: 88.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .deco1 {
    width: 100.3125vw;
  }
}
#video .deco2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1141px;
}
@media only screen and (max-width: 2000px) {
  #video .deco2 {
    width: 57.05vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .deco2 {
    width: 91.28vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .deco2 {
    width: 104.21875vw;
  }
}
#video .wrap {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 2000px) {
  #video .wrap {
    top: 2.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .wrap {
    top: 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .wrap {
    top: 3.90625vw;
  }
}
#video .ttl-box {
  margin-bottom: 60px;
}
@media only screen and (max-width: 2000px) {
  #video .ttl-box {
    margin-bottom: 3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .ttl-box {
    margin-bottom: 4.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .ttl-box {
    margin-bottom: 6.25vw;
  }
}
#video .ttl-box .deco {
  margin-bottom: 8px;
}
@media only screen and (max-width: 2000px) {
  #video .ttl-box .deco {
    margin-bottom: 0.4vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .ttl-box .deco {
    margin-bottom: 0.64vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .ttl-box .deco {
    margin-bottom: 1.25vw;
  }
}
#video .ttl-box h2 {
  position: relative;
  width: 380px;
  left: -14px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 2000px) {
  #video .ttl-box h2 {
    width: 19vw;
    left: -0.7vw;
    margin-bottom: -0.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .ttl-box h2 {
    width: 30.4vw;
    left: -1.12vw;
    margin-bottom: -0.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .ttl-box h2 {
    width: 38.125vw;
    left: -1.5625vw;
    margin-bottom: -0.78125vw;
  }
}
#video .ttl-box .line svg path {
  fill: #fff;
}
#video .video__list {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding-bottom: 75px;
  padding-top: 12px;
  margin-bottom: 30px;
  z-index: 2;
}
@media only screen and (max-width: 2000px) {
  #video .video__list {
    padding-bottom: 3.75vw;
    padding-top: 0.6vw;
    margin-bottom: 1.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list {
    padding-bottom: 6vw;
    padding-top: 0.96vw;
    margin-bottom: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list {
    padding: 1.71875vw 6.875vw 0;
    margin-bottom: 1.5625vw;
  }
}
#video .video__list .wrap {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 946px;
  z-index: 2;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .wrap {
    top: 0vw;
    width: 47.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .wrap {
    top: 0vw;
    width: 75.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .wrap {
    width: 86.5625vw;
  }
}
#video .video__list .swiper-wrapper {
  width: 100%;
  height: 440px;
  padding: 60px 0 112px;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-wrapper {
    height: 22vw;
    padding: 3vw 0 5.6vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-wrapper {
    height: 35.2vw;
    padding: 4.8vw 0 8.96vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper {
    height: 49.6875vw;
    padding: 0 0 10.625vw;
  }
}
#video .video__list .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s 0.2s ease;
  filter: blur(6px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide {
    opacity: 0;
  }
}
#video .video__list .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 54, 54, 0.7);
}
#video .video__list .swiper-wrapper .swiper-slide a {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
#video .video__list .swiper-wrapper .swiper-slide a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 202px;
  height: 202px;
  background: url("../img/video/play.png") no-repeat top center;
  background-size: contain;
  transform-origin: center;
  transition: all 0.35s ease;
  opacity: 0;
  z-index: 2;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-wrapper .swiper-slide a::before {
    width: 10.1vw;
    height: 10.1vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide a::before {
    width: 20.625vw;
    height: 20.625vw;
  }
}
#video .video__list .swiper-wrapper .swiper-slide a .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#video .video__list .swiper-wrapper .swiper-slide a .image img {
  transition: all 0.38s ease-out;
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.285);
  filter: blur(0px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a {
  filter: blur(0);
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a::before, #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a::after {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover .image img {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover .image img {
    transform: scale(1);
  }
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::before, #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::after {
  transform: translate(-50%, -50%) scale(0.9);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::before, #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::after {
    transform: translate(-50%, -50%) scale(1);
  }
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active::after {
  opacity: 0;
  visibility: hidden;
}
#video .video__list .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#video .video__list .swiper-pagination {
  bottom: 7px;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-pagination {
    bottom: 0.35vw;
  }
}
#video .video__list .swiper-pagination .swiper-pagination-bullet {
  width: 23px;
  height: 25px;
  opacity: 1;
  background: url("../img/video/pagination_off.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-pagination .swiper-pagination-bullet {
    width: 1.15vw;
    height: 1.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-pagination .swiper-pagination-bullet {
    width: 1.84vw;
    height: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-pagination .swiper-pagination-bullet {
    width: 3.59375vw;
    height: 3.90625vw;
  }
}
#video .video__list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url("../img/video/pagination_on.svg");
}
#video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
  top: 268px;
  transform: unset;
  width: 67px;
  margin: 0;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
    top: 13.4vw;
    width: 3.35vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
    top: 21.44vw;
    width: 5.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
    top: 23.125vw;
    width: 7.1875vw;
  }
}
#video .video__list .swiper-button-prev1 svg,
#video .video__list .swiper-button-next1 svg {
  width: 100%;
  height: auto;
}
#video .video__list .swiper-button-prev1::after,
#video .video__list .swiper-button-next1::after {
  display: none;
}
#video .video__list .swiper-button-prev1 {
  left: calc(50% - 600px);
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev1 {
    left: calc(50% - 30vw);
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-button-prev1 {
    left: calc(50% - 31.6vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1 {
    left: -5.46875vw;
  }
}
#video .video__list .swiper-button-prev1:hover {
  transform: translateX(-10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1:hover {
    transform: translateX(0);
  }
}
#video .video__list .swiper-button-next1 {
  right: calc(50% - 600px);
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-next1 {
    right: calc(50% - 30vw);
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-button-next1 {
    right: calc(50% - 31.6vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next1 {
    right: -5.46875vw;
  }
}
#video .video__list .swiper-button-next1:hover {
  transform: translateX(10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next1:hover {
    transform: translateX(0);
  }
}
#video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
  display: block;
  width: 133px;
  height: 40px;
  top: inherit;
  bottom: 0;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
    width: 6.65vw;
    height: 2vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
    width: 10.64vw;
    height: 3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
    width: 21.40625vw;
    height: 5.625vw;
  }
}
#video .video__list .swiper-button-prev2::after,
#video .video__list .swiper-button-next2::after {
  display: none;
}
#video .video__list .swiper-button-prev2 {
  left: calc(50% - 226px);
  background: url("../img/video/prev.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev2 {
    left: calc(50% - 11vw);
    padding-left: 1.75vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-button-prev2 {
    left: calc(50% - 17.6vw);
    padding-left: 2.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2 {
    left: 18.4375vw;
  }
}
#video .video__list .swiper-button-prev2:hover {
  transform: translateX(-10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2:hover {
    transform: translateX(0);
  }
}
#video .video__list .swiper-button-next2 {
  right: calc(50% - 226px);
  background: url("../img/video/next.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-next2 {
    right: calc(50% - 11vw);
    padding-right: 1.75vw;
  }
}
@media only screen and (max-width: 1250px) {
  #video .video__list .swiper-button-next2 {
    right: calc(50% - 17.6vw);
    padding-right: 2.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next2 {
    right: 18.4375vw;
  }
}
#video .video__list .swiper-button-next2:hover {
  transform: translateX(10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next2:hover {
    transform: translateX(0);
  }
}
#video .deco1 {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.6s 1s ease;
}
#video .deco1 img {
  -webkit-animation: spin-right 80s infinite linear;
          animation: spin-right 80s infinite linear;
}
#video .deco2 {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.6s 1.1s ease;
}
#video .deco2 img {
  -webkit-animation: spin-left 80s infinite linear;
          animation: spin-left 80s infinite linear;
}
#video .video__list {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.8s 1.4s ease;
}
#video .btn {
  transition-delay: 1.7s;
}
#video.move-on .deco1 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#video.move-on .deco2 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#video.move-on .video__list {
  filter: blur(0px);
  opacity: 1;
}

#talent {
  margin-bottom: 105px;
}
@media only screen and (max-width: 2000px) {
  #talent {
    margin-bottom: 5.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #talent {
    margin-bottom: 8.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #talent {
    margin-bottom: 11.71875vw;
  }
}
@media only screen and (max-width: 768px) {
  #talent .ttl-box {
    margin-bottom: -1.5625vw;
  }
}
#talent .ttl-box h2 {
  position: relative;
  left: -12px;
  width: 405px;
}
@media only screen and (max-width: 2000px) {
  #talent .ttl-box h2 {
    left: -0.6vw;
    width: 20.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #talent .ttl-box h2 {
    left: -0.96vw;
    width: 32.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #talent .ttl-box h2 {
    width: 50.9375vw;
    left: -1.5625vw;
    margin-bottom: -4.375vw;
  }
}
#talent .flex-wrap {
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
@media only screen and (max-width: 768px) {
  #talent .flex-wrap {
    gap: 0 0vw;
  }
}
#talent .box {
  position: relative;
  width: 611px;
}
@media only screen and (max-width: 2000px) {
  #talent .box {
    width: 30.55vw;
  }
}
@media only screen and (max-width: 1250px) {
  #talent .box {
    width: 48.88vw;
  }
}
@media only screen and (max-width: 768px) {
  #talent .box {
    width: 95.46875vw;
    margin: 0 auto;
  }
}
#talent .box a {
  position: absolute;
  bottom: 31px;
  left: 30px;
  width: 550px;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 2000px) {
  #talent .box a {
    bottom: 1.55vw;
    left: 1.5vw;
    width: 27.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #talent .box a {
    bottom: 2.48vw;
    left: 2.4vw;
    width: 44vw;
  }
}
@media only screen and (max-width: 768px) {
  #talent .box a {
    bottom: 2.5vw;
    left: 2.5vw;
    width: 45vw;
  }
}
#talent .box a .ill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#talent .box a .name {
  position: absolute;
  bottom: 28px;
  left: 0;
}
@media only screen and (max-width: 2000px) {
  #talent .box a .name {
    bottom: 1.4vw;
  }
}
@media only screen and (max-width: 1250px) {
  #talent .box a .name {
    bottom: 2.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #talent .box a .name {
    bottom: 4.375vw;
  }
}
#talent .box {
  opacity: 0;
}
#talent .box.kiara {
  transform: translateY(-50px);
  transition: all 1s 1s ease;
}
#talent .box.kiara a {
  opacity: 0;
  filter: blur(5px) brightness(5);
  transition: all 0.6s 1.5s ease;
}
#talent .box.inanis {
  transform: translateY(50px);
  transition: all 1s 1s ease;
}
#talent .box.inanis a {
  opacity: 0;
  filter: blur(5px) brightness(5);
  transition: all 0.6s 1.5s ease;
}
#talent.move-on .box.kiara, #talent.move-on .box.inanis {
  opacity: 1;
  transform: translateY(0px);
}
#talent.move-on .box.kiara a, #talent.move-on .box.inanis a {
  opacity: 1;
  filter: blur(0px) brightness(1);
}

#poem .poem__box {
  position: relative;
  display: flex;
  padding: 100px 0;
  overflow: hidden;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box {
    padding: 5vw 0;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box {
    width: 121.76vw;
    padding: 8vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box {
    width: 100%;
    padding: 18.125vw 0;
  }
}
#poem .poem__box .wrap {
  width: 1522px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box .wrap {
    width: 76.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box .wrap {
    width: 121.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box .wrap {
    width: 100%;
  }
}
#poem .poem__box .txt-box {
  position: relative;
  width: 702px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  text-align: center;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box .txt-box {
    width: 35.1vw;
    gap: 2vw 0;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box .txt-box {
    width: 56.16vw;
    gap: 3.2vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box .txt-box {
    width: 100%;
    gap: 8.59375vw 0;
  }
}
#poem .poem__box .txt-box p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 36px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box .txt-box p {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box .txt-box p {
    font-size: 2.88vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box .txt-box p {
    font-size: 5.625vw;
  }
}
#poem .poem__box.box__left {
  right: calc(50% - 760px);
  justify-content: right;
  border-radius: 0 500px 500px 0;
  background-color: #FF895D;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__left {
    right: calc(50% - 38vw);
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__left {
    left: calc(50% - 60.8vw);
    right: inherit;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__left {
    left: 0;
    border-radius: 0 78.125vw 78.125vw 0;
  }
}
#poem .poem__box.box__left .deco1 {
  position: absolute;
  bottom: -25px;
  right: 40px;
  width: 352px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__left .deco1 {
    bottom: -1.25vw;
    right: 2vw;
    width: 17.6vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__left .deco1 {
    bottom: -2vw;
    right: 3.2vw;
    width: 28.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__left .deco1 {
    bottom: 3.4375vw;
    right: 7.8125vw;
    width: 40.625vw;
  }
}
#poem .poem__box.box__left .deco2 {
  position: absolute;
  top: 50%;
  right: 1040px;
  transform: translateY(-50%);
  width: 585px;
  filter: blur(16px);
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__left .deco2 {
    right: 52vw;
    width: 29.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__left .deco2 {
    right: 83.2vw;
    width: 46.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__left .deco2 {
    top: 1.875vw;
    transform: unset;
    right: 28.4vw;
    width: 33.28vw;
  }
}
#poem .poem__box.box__right {
  left: calc(50% - 760px);
  justify-content: left;
  border-radius: 500px 0 0 500px;
  background-color: #2A2350;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__right {
    left: calc(50% - 38vw);
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__right {
    left: calc(50% - 60.8vw);
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__right {
    left: 0;
    padding-top: 18.125vw;
  }
}
#poem .poem__box.box__right .deco1 {
  position: absolute;
  bottom: 38px;
  left: 299px;
  width: 922px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__right .deco1 {
    bottom: 1.9vw;
    left: 14.95vw;
    width: 46.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__right .deco1 {
    bottom: 3.04vw;
    left: 23.92vw;
    width: 73.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__right .deco1 {
    bottom: 9.0625vw;
    left: 20.3125vw;
    width: 45.46875vw;
  }
}
#poem .poem__box.box__right .deco2 {
  position: absolute;
  top: 50%;
  left: 995px;
  transform: translateY(-50%);
  width: 595px;
  filter: blur(16px);
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__right .deco2 {
    left: 49.75vw;
    width: 29.75vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__right .deco2 {
    left: 79.6vw;
    width: 47.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__right .deco2 {
    top: -2.5vw;
    transform: unset;
    width: 65.3125vw;
    left: 46.875vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__right .txt-box {
    padding-left: 0.625vw;
  }
}
#poem .poem__box.box__right .txt-box p {
  color: #fff;
}
#poem .poem__box.box__center {
  padding: 0;
  margin-top: -54px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center {
    margin-top: -2.7vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center {
    width: 121.6vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -4.32vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center {
    width: 179.375vw;
  }
}
#poem .poem__box.box__center .bg {
  width: 1520px;
  margin: 0 auto;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .bg {
    width: 76vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .bg {
    width: 121.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .bg {
    width: 179.375vw;
  }
}
#poem .poem__box.box__center .deco {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 259px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .deco {
    top: 5vw;
    width: 12.95vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .deco {
    top: 8vw;
    width: 20.72vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .deco {
    top: 18.125vw;
    width: 32.03125vw;
  }
}
#poem .poem__box.box__center .wrap {
  position: absolute;
  top: 45.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .wrap {
    top: 54%;
    width: 100%;
  }
}
#poem .poem__box.box__center .txt-box {
  width: auto;
  gap: 12px 0;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .txt-box {
    gap: 0.6vw 0;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .txt-box {
    gap: 0.96vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .txt-box {
    gap: 2.8125vw 0;
  }
}
#poem .poem__box.box__center .txt-box p {
  line-height: 1.3;
  color: #A37941;
}
#poem .poem__box.box__center .txt-box .txt1 p {
  font-size: 42px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .txt-box .txt1 p {
    font-size: 2.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .txt-box .txt1 p {
    font-size: 3.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .txt-box .txt1 p {
    font-size: 6.5625vw;
  }
}
#poem .poem__box.box__center .txt-box .txt2 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .txt-box .txt2 {
    margin-bottom: 1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .txt-box .txt2 {
    margin-bottom: 1.6vw;
  }
}
#poem .poem__box.box__center .txt-box .txt2 p {
  font-size: 66px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .txt-box .txt2 p {
    font-size: 3.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .txt-box .txt2 p {
    font-size: 5.28vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .txt-box .txt2 p {
    font-size: 10.3125vw;
    line-height: 1.2;
  }
}
#poem .poem__box.box__center .txt-box .txt3 p {
  font-size: 66px;
  line-height: 1.2;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .txt-box .txt3 p {
    font-size: 3.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .txt-box .txt3 p {
    font-size: 5.28vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .txt-box .txt3 p {
    font-size: 10.3125vw;
  }
}
#poem .poem__box.box__center .txt-box .txt3 p:last-child {
  font-size: 128px;
  line-height: 1;
  margin-top: -30px;
}
@media only screen and (max-width: 2000px) {
  #poem .poem__box.box__center .txt-box .txt3 p:last-child {
    font-size: 6.4vw;
    margin-top: -1.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #poem .poem__box.box__center .txt-box .txt3 p:last-child {
    font-size: 10.24vw;
    margin-top: -2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box.box__center .txt-box .txt3 p:last-child {
    font-size: 20vw;
    margin-top: -2.8125vw;
  }
}
#poem .poem__box .txt-box .txt p span {
  opacity: 0;
  filter: blur(5px);
  display: inline-block;
  transform: scale(1.3);
  transition: all 0.8s ease-in-out;
}
#poem .poem__box .txt-box.move-on .txt p span {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(1) span:nth-child(2) {
  transition-delay: 0.2s;
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(1) span:nth-child(3) {
  transition-delay: 0.4s;
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(1) span:nth-child(4) {
  transition-delay: 0.6s;
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(1) span:nth-child(5) {
  transition-delay: 0.8s;
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(2) span:nth-child(1) {
  transition-delay: 1s;
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(2) span:nth-child(2) {
  transition-delay: 1.2s;
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(2) span:nth-child(3) {
  transition-delay: 1.4s;
}
#poem .poem__box.box__left .txt-box .txt1 p:nth-child(2) span:nth-child(4) {
  transition-delay: 1.6s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(1) span:nth-child(1) {
  transition-delay: 1.8s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(1) span:nth-child(2) {
  transition-delay: 2s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(1) span:nth-child(3) {
  transition-delay: 2.2s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(1) span:nth-child(4) {
  transition-delay: 2.4s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(1) {
  transition-delay: 2.6s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(2) {
  transition-delay: 2.8s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(3) {
  transition-delay: 3s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(4) {
  transition-delay: 3.2s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(5) {
  transition-delay: 3.4s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(6) {
  transition-delay: 3.6s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(7) {
  transition-delay: 3.8s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(8) {
  transition-delay: 4s;
}
#poem .poem__box.box__left .txt-box .txt2 p:nth-child(2) span:nth-child(9) {
  transition-delay: 4.2s;
}
#poem .poem__box.box__left .txt-box .txt3 p:nth-child(1) span:nth-child(1) {
  transition-delay: 4.4s;
}
#poem .poem__box.box__left .txt-box .txt3 p:nth-child(1) span:nth-child(2) {
  transition-delay: 4.6s;
}
#poem .poem__box.box__left .txt-box .txt3 p:nth-child(2) span:nth-child(1) {
  transition-delay: 4.8s;
}
#poem .poem__box.box__left .txt-box .txt3 p:nth-child(2) span:nth-child(2) {
  transition-delay: 5s;
}
#poem .poem__box.box__left .txt-box .txt3 p:nth-child(2) span:nth-child(3) {
  transition-delay: 5.2s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(1) span:nth-child(2) {
  transition-delay: 0.2s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(1) span:nth-child(3) {
  transition-delay: 0.4s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(1) span:nth-child(4) {
  transition-delay: 0.6s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(1) span:nth-child(5) {
  transition-delay: 0.8s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(2) span:nth-child(1) {
  transition-delay: 1s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(2) span:nth-child(2) {
  transition-delay: 1.2s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(2) span:nth-child(3) {
  transition-delay: 1.4s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(2) span:nth-child(4) {
  transition-delay: 1.6s;
}
#poem .poem__box.box__right .txt-box .txt1 p:nth-child(2) span:nth-child(5) {
  transition-delay: 1.8s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(1) span:nth-child(1) {
  transition-delay: 2s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(1) span:nth-child(2) {
  transition-delay: 2.2s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(1) span:nth-child(3) {
  transition-delay: 2.4s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(1) span:nth-child(4) {
  transition-delay: 2.6s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(2) span:nth-child(1) {
  transition-delay: 2.8s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(2) span:nth-child(2) {
  transition-delay: 3s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(2) span:nth-child(3) {
  transition-delay: 3.2s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(2) span:nth-child(4) {
  transition-delay: 3.4s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(2) span:nth-child(5) {
  transition-delay: 3.6s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(2) span:nth-child(6) {
  transition-delay: 3.8s;
}
#poem .poem__box.box__right .txt-box .txt2 p:nth-child(2) span:nth-child(7) {
  transition-delay: 4s;
}
#poem .poem__box.box__right .txt-box .txt3 p:nth-child(1) span:nth-child(1) {
  transition-delay: 4.2s;
}
#poem .poem__box.box__right .txt-box .txt3 p:nth-child(1) span:nth-child(2) {
  transition-delay: 4.4s;
}
#poem .poem__box.box__right .txt-box .txt3 p:nth-child(2) span:nth-child(1) {
  transition-delay: 4.6s;
}
#poem .poem__box.box__right .txt-box .txt3 p:nth-child(2) span:nth-child(2) {
  transition-delay: 4.8s;
}
#poem .poem__box.box__right .txt-box .txt3 p:nth-child(2) span:nth-child(3) {
  transition-delay: 5s;
}
#poem .poem__box.box__right .txt-box .txt3 p:nth-child(2) span:nth-child(4) {
  transition-delay: 5.2s;
}
#poem .poem__box.box__right .txt-box .txt3 p:nth-child(2) span:nth-child(5) {
  transition-delay: 5.4s;
}
#poem .poem__box.box__center .txt-box .txt1 p:nth-child(1) span:nth-child(2) {
  transition-delay: 0.2s;
}
#poem .poem__box.box__center .txt-box .txt1 p:nth-child(1) span:nth-child(3) {
  transition-delay: 0.4s;
}
#poem .poem__box.box__center .txt-box .txt1 p:nth-child(1) span:nth-child(4) {
  transition-delay: 0.6s;
}
#poem .poem__box.box__center .txt-box .txt1 p:nth-child(1) span:nth-child(5) {
  transition-delay: 0.8s;
}
#poem .poem__box.box__center .txt-box .txt1 p:nth-child(2) span:nth-child(1) {
  transition-delay: 1s;
}
#poem .poem__box.box__center .txt-box .txt1 p:nth-child(2) span:nth-child(2) {
  transition-delay: 1.2s;
}
#poem .poem__box.box__center .txt-box .txt1 p:nth-child(2) span:nth-child(3) {
  transition-delay: 1.4s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(1) {
  transition-delay: 1.6s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(2) {
  transition-delay: 1.8s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(3) {
  transition-delay: 2s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(4) {
  transition-delay: 2.2s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(5) {
  transition-delay: 2.4s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(6) {
  transition-delay: 2.6s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(7) {
  transition-delay: 2.8s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(8) {
  transition-delay: 3s;
}
#poem .poem__box.box__center .txt-box .txt2 p:nth-child(1) span:nth-child(9) {
  transition-delay: 3.2s;
}
#poem .poem__box.box__center .txt-box .txt3 p:nth-child(1) span:nth-child(1) {
  transition-delay: 3.4s;
}
#poem .poem__box.box__center .txt-box .txt3 p:nth-child(1) span:nth-child(2) {
  transition-delay: 3.6s;
}
#poem .poem__box.box__center .txt-box .txt3 p:nth-child(1) span:nth-child(3) {
  transition-delay: 3.8s;
}
#poem .poem__box.box__center .txt-box .txt3 p:nth-child(1) span:nth-child(4) {
  transition-delay: 4s;
}
#poem .poem__box.box__center .txt-box .txt3 p:nth-child(2) span:nth-child(1) {
  transition-delay: 4.2s;
}
#poem .poem__box.box__center .txt-box .txt3 p:nth-child(3) span:nth-child(1) {
  transition-delay: 4.4s;
}
#poem .poem__box.box__center .txt-box .txt3 p:nth-child(3) span:nth-child(2) {
  transition-delay: 4.6s;
}

#modal-block .talent-modal {
  width: 100vw;
  min-height: 100vh;
  background-color: #eee;
  margin: 0 auto;
  padding: 100px 120px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal {
    padding: 5vw 6vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal {
    padding: 6.875vw 0;
  }
}
#modal-block .talent-modal .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1760px;
  min-height: 1290px;
  margin: 0 auto;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .wrap {
    min-width: 88vw;
    min-height: 64.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .wrap {
    padding: 7.2vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .wrap {
    display: block;
    padding: 0;
    width: 100%;
    min-width: unset;
    min-height: 290.625vw;
    padding-bottom: 12.8125vw;
    overflow: hidden;
  }
}
#modal-block .talent-modal .wrap .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
}
#modal-block .talent-modal .name-sp {
  position: relative;
  display: none;
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .name-sp {
    display: block;
    position: absolute;
    top: 6.25vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .name-sp .small {
    position: absolute;
    z-index: 3;
    bottom: -0.46875vw;
  }
}
#modal-block .talent-modal .illust {
  position: absolute;
  top: -52px;
  z-index: 2;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .illust {
    top: -2.6vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .illust {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .illust {
    position: relative;
    top: 0;
    margin: 0 auto 5.625vw;
    transform: unset;
  }
}
#modal-block .talent-modal .detail {
  position: relative;
  width: 660px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail {
    width: 33vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail {
    width: 93.75vw;
    margin: 0 auto;
  }
}
#modal-block .talent-modal .detail .name {
  position: relative;
  margin-bottom: 45px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .name {
    margin-bottom: 2.25vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .name {
    display: none;
    position: absolute;
    top: -141.25vw;
  }
}
#modal-block .talent-modal .detail .name .small {
  position: absolute;
  bottom: 32px;
  z-index: 3;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .name .small {
    bottom: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .name .small {
    bottom: -0.46875vw;
  }
}
#modal-block .talent-modal .detail .deco-line {
  width: 659px;
  margin: 0 auto 35px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .deco-line {
    width: 32.95vw;
    margin-bottom: 1.75vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .deco-line {
    width: 93.75vw;
    margin-bottom: 5vw;
  }
}
#modal-block .talent-modal .detail .deco-line svg {
  width: 100%;
  height: auto;
}
#modal-block .talent-modal .detail .link {
  display: flex;
  justify-content: center;
  gap: 0 45px;
  margin-bottom: 36px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .link {
    gap: 0 2.25vw;
    margin-bottom: 1.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .link {
    gap: 0 7.03125vw;
    margin-bottom: 6.25vw;
  }
}
#modal-block .talent-modal .detail .link li {
  width: 169px;
  height: 46px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .link li {
    width: 8.45vw;
    height: 2.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .detail .link li {
    width: 13.52vw;
    height: 3.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .link li {
    width: 26.40625vw;
    height: 7.1875vw;
  }
}
#modal-block .talent-modal .detail .link li svg {
  width: 100%;
  height: auto;
}
#modal-block .talent-modal .detail .link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#modal-block .talent-modal .detail .link li a span {
  display: block;
}
#modal-block .talent-modal .detail .link li:nth-child(1) span {
  width: 110px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .link li:nth-child(1) span {
    width: 5.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .detail .link li:nth-child(1) span {
    width: 8.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .link li:nth-child(1) span {
    width: 17.1875vw;
  }
}
#modal-block .talent-modal .detail .link li:nth-child(2) span {
  width: 17px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .link li:nth-child(2) span {
    width: 0.85vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .detail .link li:nth-child(2) span {
    width: 1.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .link li:nth-child(2) span {
    width: 2.65625vw;
  }
}
#modal-block .talent-modal .detail .catch {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  font-family: "Red Rose", serif;
  margin-bottom: 45px;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .catch {
    font-size: 1.2vw;
    margin-bottom: 2.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .detail .catch {
    font-size: 1.92vw;
    margin-bottom: 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .catch {
    font-size: 4.375vw;
    margin-bottom: 6.25vw;
  }
}
#modal-block .talent-modal .detail .txt {
  font-size: 16px;
  padding: 35px 38px;
  border-radius: 50px;
  margin-bottom: 22px;
  background-color: #FF895D;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail .txt {
    font-size: 0.8vw;
    padding: 1.75vw 1.9vw;
    margin-bottom: 1.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .detail .txt {
    font-size: 1.28vw;
    padding: 2.8vw 3.04vw;
    margin-bottom: 1.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail .txt {
    padding: 5vw 6.25vw;
    font-size: 3.125vw;
  }
}
#modal-block .talent-modal .detail dl {
  display: grid;
  align-items: center;
  grid-template-columns: 174px 1fr;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail dl {
    grid-template-columns: 8.7vw 1fr;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail dl {
    grid-template-columns: 26.875vw 1fr;
  }
}
#modal-block .talent-modal .detail dl dt {
  font-size: 16px;
  line-height: 46px;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail dl dt {
    font-size: 0.8vw;
    line-height: 2.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .detail dl dt {
    font-size: 1.28vw;
    line-height: 3.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail dl dt {
    font-size: 3.125vw;
    line-height: 7.1875vw;
  }
}
#modal-block .talent-modal .detail dl dd {
  font-size: 20px;
  font-weight: bold;
  line-height: 46px;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 2000px) {
  #modal-block .talent-modal .detail dl dd {
    font-size: 1vw;
    line-height: 2.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block .talent-modal .detail dl dd {
    font-size: 1.6vw;
    line-height: 3.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .talent-modal .detail dl dd {
    font-size: 3.75vw;
    line-height: 7.1875vw;
  }
}
#modal-block #kiara {
  background-image: linear-gradient(90deg, #f46d3b, #ff895d);
}
#modal-block #kiara .wrap {
  justify-content: left;
  padding-left: 240px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #kiara .wrap {
    padding-left: 12vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap {
    padding-left: 0;
    padding-top: 34.0625vw;
  }
}
#modal-block #kiara .wrap .bg {
  overflow: hidden;
  border-radius: 0 200px 200px 0;
  background-image: linear-gradient(90deg, rgb(255, 137, 93), rgb(245, 231, 214));
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .bg {
    border-radius: 0 12.5vw 12.5vw 0;
  }
}
#modal-block #kiara .wrap .bg::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -368px;
  transform: translateY(-50%);
  display: block;
  width: 1156px;
  height: 1156px;
  background: url("../img/talent/deco_sun.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #modal-block #kiara .wrap .bg::before {
    right: -18.4vw;
    width: 57.8vw;
    height: 57.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .bg::before {
    top: 47.8125vw;
    transform: unset;
    right: -57.34375vw;
    width: 114.6875vw;
    height: 114.6875vw;
  }
}
#modal-block #kiara .wrap .bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -600px;
  transform: translateY(-50%);
  display: block;
  width: 1200px;
  height: 1200px;
  background: url("../img/talent/deco_sun_circle.webp") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #modal-block #kiara .wrap .bg::after {
    left: -30vw;
    width: 60vw;
    height: 60vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .bg::after {
    top: 8.125vw;
    transform: unset;
    left: -73.4375vw;
    width: 142.03125vw;
    height: 146.875vw;
  }
}
#modal-block #kiara .wrap .illust {
  top: 134px;
  right: -180px;
  width: 1055px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #kiara .wrap .illust {
    top: 6.7vw;
    right: -9vw;
    width: 52.75vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block #kiara .wrap .illust {
    top: 50%;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .illust {
    width: 106.40625vw;
    left: 0;
    right: inherit;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .name-sp {
    width: 92.03125vw;
    left: 3.90625vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .name-sp .small {
    width: 30.625vw;
    right: 3.125vw;
  }
}
#modal-block #kiara .wrap .detail .name {
  width: 906px;
  left: 0px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #kiara .wrap .detail .name {
    width: 45.3vw;
    left: 0px;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .detail .name {
    width: 92.03125vw;
    left: -1.25vw;
  }
}
#modal-block #kiara .wrap .detail .name .small {
  width: 196px;
  right: 120px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #kiara .wrap .detail .name .small {
    width: 9.8vw;
    right: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #kiara .wrap .detail .name .small {
    width: 30.625vw;
    right: 3.125vw;
  }
}
#modal-block #kiara .wrap .detail .link li {
  background: url("../img/talent/bg_link_bl.png") no-repeat top center;
  background-size: contain;
}
#modal-block #inanis {
  background-image: linear-gradient(90deg, #2a2350, #31359f);
}
#modal-block #inanis .wrap {
  justify-content: right;
  padding-right: 240px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #inanis .wrap {
    padding-right: 12vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap {
    padding-right: 0;
    padding-top: 27.8125vw;
  }
}
#modal-block #inanis .wrap .bg {
  border-radius: 200px 0 0 200px;
  background-image: linear-gradient(90deg, #4642a5, #eb4861);
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .bg {
    border-radius: 12.5vw 0 0 12.5vw;
  }
}
#modal-block #inanis .wrap .bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  display: block;
  width: 872px;
  height: 1071px;
  background: url("../img/talent/deco_moon.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #modal-block #inanis .wrap .bg::before {
    left: 2vw;
    width: 43.6vw;
    height: 53.55vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .bg::before {
    top: 60.9375vw;
    left: -14.6875vw;
    transform: unset;
    width: 69.21875vw;
    height: 85vw;
  }
}
#modal-block #inanis .wrap .bg::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -600px;
  transform: translateY(-50%);
  display: block;
  width: 1140px;
  height: 1165px;
  background: url("../img/talent/deco_moon_circle.webp") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  #modal-block #inanis .wrap .bg::after {
    right: -30vw;
    width: 57vw;
    height: 58.25vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .bg::after {
    top: 8.90625vw;
    right: -71.875vw;
    transform: unset;
    width: 142.65625vw;
    height: 145.78125vw;
  }
}
#modal-block #inanis .wrap .illust {
  top: -53px;
  left: 30px;
  width: 898px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #inanis .wrap .illust {
    top: -2.65vw;
    left: 1.5vw;
    width: 44.9vw;
  }
}
@media only screen and (max-width: 1250px) {
  #modal-block #inanis .wrap .illust {
    top: 50%;
    left: -3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .illust {
    width: 96.09375vw;
    left: 6.5625vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .name {
    width: 85.9375vw;
    left: 9.375vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .name .small {
    width: 25.9375vw;
    left: -4.6875vw;
  }
}
#modal-block #inanis .wrap .detail .name {
  width: 846px;
  left: -205px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #inanis .wrap .detail .name {
    width: 42.3vw;
    left: -10.25vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .detail .name {
    width: 85.9375vw;
    left: 6.71875vw;
  }
}
#modal-block #inanis .wrap .detail .name .small {
  width: 166px;
  left: 66px;
}
@media only screen and (max-width: 2000px) {
  #modal-block #inanis .wrap .detail .name .small {
    width: 8.3vw;
    left: 3.3vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block #inanis .wrap .detail .name .small {
    width: 25.9375vw;
    left: -4.6875vw;
  }
}
#modal-block #inanis .wrap .detail .link li {
  background: url("../img/talent/bg_link_yl.png") no-repeat top center;
  background-size: contain;
}
#modal-block #inanis .wrap .detail .catch {
  color: #fff;
}
#modal-block #inanis .wrap .detail .txt {
  background-color: rgba(42, 35, 80, 0.9);
  color: #fff;
}
#modal-block #inanis .wrap .detail dl dt, #modal-block #inanis .wrap .detail dl dd {
  color: #fff;
}