@charset "UTF-8";
/* --------------------------------------------------
-------------------------------------------------- 関数 */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../img/parts/bg_shine.webp") no-repeat center center;
  background-size: 130vw auto;
  z-index: 99;
  transform: scale(1.2);
  transition: all 1s 0.5s ease;
  display: none;
}
@media only screen and (max-width: 768px) {
  #intro {
    background-size: cover;
  }
}
#intro .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35vw;
  transition: all 0.8s 0.5s ease;
}
@media only screen and (max-width: 768px) {
  #intro .logo {
    width: 62.5vw;
  }
}
#intro.off {
  opacity: 0;
  visibility: hidden;
  transform: scale(1);
}
#intro.off .logo {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.2);
}

#keyvisual {
  position: relative;
  height: 77.4vw;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #keyvisual {
    height: 185vw;
  }
}
#keyvisual .illust {
  opacity: 0;
  transform: scale(1.03);
  transition: all 1s 0.3s ease;
}
#keyvisual .illust img {
  filter: blur(10px) brightness(2);
  transition: all 0.5s 0s ease;
}
#keyvisual h1 {
  position: absolute;
  bottom: 14.5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 53.35vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual h1 {
    bottom: 42.1875vw;
    width: 105.9375vw;
  }
}
#keyvisual h1 img {
  filter: brightness(10);
  transform: scale(0.9);
  opacity: 0;
  transition: all 1s 0.3s ease;
}
#keyvisual h1 .shine {
  position: absolute;
  width: 3.3vw;
  top: 9vw;
  left: 15.5vw;
  opacity: 0;
  transform: scale(1.4);
  transition: all 0.4s 1.05s ease;
}
@media only screen and (max-width: 768px) {
  #keyvisual h1 .shine {
    width: 6.25vw;
    top: 17.96875vw;
    left: 30.9375vw;
  }
}
#keyvisual h1 .shine svg {
  width: 100%;
  height: auto;
  -webkit-animation: rotateWait2 4s ease infinite;
          animation: rotateWait2 4s ease infinite;
}
#keyvisual h1 .kira {
  position: absolute;
  width: 1.55vw;
  top: 8.05vw;
  left: 16.4vw;
  opacity: 0;
  transform: scale(1.4);
  transition: all 0.6s 1s ease;
}
@media only screen and (max-width: 768px) {
  #keyvisual h1 .kira {
    width: 2.96875vw;
    top: 16.25vw;
    left: 32.65625vw;
  }
}
#keyvisual h1 .kira svg {
  width: 100%;
  height: auto;
  -webkit-animation: rotateWait 4s ease infinite;
          animation: rotateWait 4s ease infinite;
}
#keyvisual .txt {
  position: absolute;
  bottom: -0.25vw;
  left: 50%;
  transform: translateX(-50%);
  width: 37.25vw;
  opacity: 0;
  transition: all 0.6s 1.2s ease;
}
@media only screen and (max-width: 768px) {
  #keyvisual .txt {
    width: 78.125vw;
    bottom: 7.03125vw;
  }
}
@media only screen and (max-width: 768px) {
  #keyvisual .txt img {
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    will-change: transform;
    image-rendering: -moz-crisp-edges;
    image-rendering: pixelated;
  }
}
#keyvisual.move-on .illust {
  opacity: 1;
  transform: scale(1);
}
#keyvisual.move-on .illust img {
  filter: blur(0px) brightness(1);
}
#keyvisual.move-on h1 img {
  transform: scale(1);
  filter: brightness(1);
  opacity: 1;
}
#keyvisual.move-on h1 .shine {
  transform: scale(1);
  opacity: 1;
}
#keyvisual.move-on h1 .kira {
  transform: scale(1);
  opacity: 1;
}
#keyvisual.move-on .txt {
  opacity: 1;
}

#content .inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1250px) {
  #content .inner {
    width: 96vw;
  }
}
@media only screen and (max-width: 768px) {
  #content .inner {
    width: 90.625vw;
  }
}

@-webkit-keyframes rotateWait {
  0%, 50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateWait {
  0%, 50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateWait2 {
  0%, 50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotateWait2 {
  0%, 50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
section .sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100.4vw;
  transform-origin: left top;
  z-index: 2;
}
section .line span {
  position: absolute;
  width: calc(50.2vw - 50px);
  height: 2px;
  background-color: #7D2D99;
  -webkit-clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 95%);
          clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 95%);
}
@media only screen and (max-width: 1250px) {
  section .line span {
    height: 0.16vw;
    width: 46.2vw;
  }
}
@media only screen and (max-width: 768px) {
  section .line span {
    height: 0.3125vw;
    width: 42.6875vw;
  }
}
section .line span:nth-child(1) {
  top: 0;
  left: 0;
}
section .line span:nth-child(2) {
  top: 0;
  right: 0;
}
section .line svg {
  width: 100%;
  height: auto;
}
section .line .shine {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67px;
}
@media only screen and (max-width: 768px) {
  section .line .shine {
    width: 10.46875vw;
  }
}
section .line .shine svg {
  -webkit-animation: rotateWait2 4s ease infinite;
          animation: rotateWait2 4s ease infinite;
}
section .line .kira {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  section .line .kira {
    width: 5.15625vw;
  }
}
section .line .kira svg {
  -webkit-animation: rotateWait 4s ease infinite;
          animation: rotateWait 4s ease infinite;
}
section .ttl-box {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1250px) {
  section .ttl-box {
    margin-bottom: 3.84vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box {
    margin-bottom: 7.5vw;
  }
}
section .ttl-box .jp {
  font-size: 30px;
  line-height: 1.2;
}
@media only screen and (max-width: 1250px) {
  section .ttl-box .jp {
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box .jp {
    font-size: 4.6875vw;
  }
}
section .ttl-box h2 {
  position: relative;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 1250px) {
  section .ttl-box h2 {
    margin: 0 auto 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box h2 {
    margin: 0 auto 3.125vw;
  }
}
section .ttl-box h2 svg {
  width: 100%;
}
section .ttl-box h2 .deco-left {
  position: absolute;
  top: -30px;
  left: -110px;
  width: 118px;
}
@media only screen and (max-width: 1250px) {
  section .ttl-box h2 .deco-left {
    width: 9.44vw;
    top: -2.4vw;
    left: -8.8vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box h2 .deco-left {
    width: 18.4375vw;
    top: -4.6875vw;
    left: -17.1875vw;
  }
}
section .ttl-box h2 .deco-right {
  position: absolute;
  top: -70px;
  right: -108px;
  width: 163px;
}
@media only screen and (max-width: 1250px) {
  section .ttl-box h2 .deco-right {
    width: 13.04vw;
    top: -5.6vw;
    right: -8.64vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box h2 .deco-right {
    width: 25.46875vw;
    top: -9.375vw;
    right: -16.875vw;
  }
}
section .ttl-box h2 .txt svg {
  height: auto;
}
section .ttl-box h2 .ttl-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
section .ttl-box h2 .ttl-shine span {
  display: block;
  transition: all 6s ease;
}
section .ttl-box .shine {
  width: 455px;
  height: 42px;
  margin: 0 auto;
  background: url("../img/parts/shine_wh.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  section .ttl-box .shine {
    width: 36.4vw;
    height: 3.36vw;
  }
}
@media only screen and (max-width: 768px) {
  section .ttl-box .shine {
    width: 71.09375vw;
    height: 6.5625vw;
  }
}
section .ttl-box__wh .jp {
  color: #fff;
}
section .ttl-box__wh .shine {
  background-image: url("../img/parts/shine_wh.svg");
}
section .ttl-box__wh h2 .deco-left svg path, section .ttl-box__wh h2 .deco-right svg path {
  fill: #fff;
}
section .ttl-box__pl .jp {
  color: #7D2D99;
}
section .ttl-box__pl .shine {
  background-image: url("../img/parts/shine_pl.svg");
}
section .ttl-box__pl h2 .deco-left svg path, section .ttl-box__pl h2 .deco-right svg path {
  fill: #7D2D99;
}
section .ttl-box .jp {
  opacity: 0;
  transition: all 0.3s 1.2s ease;
}
section .ttl-box h2 .deco-left {
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom right;
  transition: all 0.3s 0.5s ease;
}
section .ttl-box h2 .deco-right {
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom left;
  transition: all 0.3s 0.5s ease;
}
section .ttl-box h2 .txt svg {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s 0.4s ease;
}
section .ttl-box h2 .ttl-shine {
  opacity: 0;
  transition: all 0.4s 1.1s ease;
}
section .ttl-box .shine {
  opacity: 0;
  transform: scaleY(-1);
  transform-origin: top center;
  transition: all 0.5s 1s ease;
}
@-webkit-keyframes scalePop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scalePop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
section .line span {
  width: 0;
  transition: all 0.5s ease;
}
section .line .shine, section .line .kira {
  opacity: 0;
  transform: scale(0) translate(-50%, -50%);
  transform-origin: 0% 0%;
  transition: all 0.5s 0.4s ease;
}
section .line .kira {
  transform: scale(1.4) translate(-50%, -50%);
  transition-delay: 0.5s;
  filter: blur(2px);
}
section .line.move-on span {
  width: calc(50.2vw - 50px);
}
@media only screen and (max-width: 768px) {
  section .line.move-on span {
    width: 42.6875vw;
  }
}
section .line.move-on .shine, section .line.move-on .kira {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translate(-50%, -50%);
}
section.move-on .ttl-box .jp {
  opacity: 1;
}
section.move-on .ttl-box h2 .deco-left {
  opacity: 1;
  -webkit-animation: scalePop 0.6s 0.8s ease-out forwards;
          animation: scalePop 0.6s 0.8s ease-out forwards;
}
section.move-on .ttl-box h2 .deco-right {
  opacity: 1;
  -webkit-animation: scalePop 0.6s 0.8s ease-out forwards;
          animation: scalePop 0.6s 0.8s ease-out forwards;
}
section.move-on .ttl-box h2 .txt svg {
  opacity: 1;
  transform: translateY(0px);
}
section.move-on .ttl-box h2 .ttl-shine {
  opacity: 1;
}
section.move-on .ttl-box .shine {
  opacity: 1;
  transform: scaleY(1);
}

#news {
  padding: 210px 0 262px;
}
@media only screen and (max-width: 1250px) {
  #news {
    padding: 16.8vw 0 20.96vw;
  }
}
@media only screen and (max-width: 768px) {
  #news {
    padding: 22.65625vw 0 34.375vw;
  }
}
#news .sec-bg {
  overflow: hidden;
  width: 110vw;
  left: -5vw;
}
#news .sec-bg .bg {
  position: absolute;
  left: 0;
  bottom: 42px;
  display: block;
  width: 100%;
  height: 110%;
  background: url("../img/parts/bg_color.webp") no-repeat bottom center;
  background-size: cover;
  transform: skewY(-2.5deg);
  transform-origin: bottom left;
}
@media only screen and (max-width: 768px) {
  #news .sec-bg .bg {
    transform: skewY(-5deg);
  }
}
#news .sec-bg .line {
  top: inherit;
  left: 0;
  bottom: 2px;
  width: 100%;
}
#news .sec-bg .line.move-on span {
  width: calc(50% - 50px);
}
@media only screen and (max-width: 768px) {
  #news .sec-bg .line.move-on span {
    width: calc(50% - 7.8125vw);
  }
}
#news .ttl-box h2 {
  width: 278px;
}
@media only screen and (max-width: 1250px) {
  #news .ttl-box h2 {
    width: 22.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .ttl-box h2 {
    width: 43.4375vw;
  }
}
#news .ttl-box h2 .ttl-shine {
  -webkit-mask-image: url("../img/news/title.svg");
          mask-image: url("../img/news/title.svg");
}
#news .ttl-box h2 .ttl-shine span {
  position: absolute;
  bottom: -60px;
  left: -50px;
  width: 100px;
  height: 100px;
  background-color: #F0D6E5;
  filter: blur(20px);
}
#news .news__list {
  margin-bottom: 82px;
}
@media only screen and (max-width: 1250px) {
  #news .news__list {
    margin-bottom: 6.56vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list {
    margin-bottom: 7.8125vw;
  }
}
#news .news__list ul li {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #7D2D99;
}
@media only screen and (max-width: 1250px) {
  #news .news__list ul li {
    margin-bottom: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li {
    margin-bottom: 3.125vw;
    border-radius: 1.5625vw;
  }
}
#news .news__list ul li a {
  position: relative;
  top: -6px;
  display: grid;
  align-items: center;
  grid-template-columns: 297px 1fr;
  border-radius: 10px;
  color: #363636;
  overflow: hidden;
  text-decoration: none;
  background-color: #7D2D99;
  border: 1px solid #7D2D99;
  background-image: linear-gradient(90deg, rgb(234, 242, 245), rgb(255, 255, 255));
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1250px) {
  #news .news__list ul li a {
    grid-template-columns: 23.76vw 1fr;
    border: 0.08vw solid #7D2D99;
    border-bottom-width: 0.48vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a {
    display: block;
    top: -0.625vw;
    border-radius: 1.5625vw;
  }
}
#news .news__list ul li a .date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 101%;
  background-color: #7D2D99;
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a .date {
    position: absolute;
    top: 0;
    left: 0;
    width: 41.5625vw;
    height: 10.3125vw;
  }
}
#news .news__list ul li a .date p {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  margin-left: -1em;
}
@media only screen and (max-width: 1250px) {
  #news .news__list ul li a .date p {
    font-size: 1.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a .date p {
    font-size: 3.75vw;
  }
}
#news .news__list ul li a .date p span {
  display: block;
  font-size: 48px;
}
@media only screen and (max-width: 1250px) {
  #news .news__list ul li a .date p span {
    font-size: 3.84vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a .date p span {
    display: inline;
    font-size: 7.5vw;
  }
}
#news .news__list ul li a .txt {
  padding: 42px 38px;
  padding-right: 105px;
}
@media only screen and (max-width: 1250px) {
  #news .news__list ul li a .txt {
    padding: 3.36vw 3.04vw;
    padding-right: 8.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a .txt {
    padding: 13.28125vw 4.0625vw 6.25vw;
    padding-right: 14.0625vw;
  }
}
#news .news__list ul li a .txt p {
  font-size: 24px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1250px) {
  #news .news__list ul li a .txt p {
    font-size: 1.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a .txt p {
    font-size: 3.75vw;
    line-height: 1.5;
  }
}
#news .news__list ul li a .arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 38px;
  height: 45px;
  background: url("../img/parts/arrow_pl.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  #news .news__list ul li a .arrow {
    right: 2.24vw;
    width: 3.04vw;
    height: 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a .arrow {
    right: 4.375vw;
    width: 5.9375vw;
    height: 7.03125vw;
  }
}
#news .news__list ul li a:hover {
  top: 0;
}
@media only screen and (max-width: 768px) {
  #news .news__list ul li a:hover {
    top: -0.625vw;
  }
}
#news .news__list ul li a:hover .txt p {
  color: #7D2D99;
}
#news .news__list ul li a:hover .arrow {
  -webkit-animation: slideLoop 1.5s ease infinite;
          animation: slideLoop 1.5s ease infinite;
}
#news .news__list ul li {
  opacity: 0;
  filter: brightness(5);
  transition: all 0.6s 1.3s ease;
}
#news .news__list ul li:nth-child(2) {
  transition-delay: 1.4s;
}
#news .news__list ul li:nth-child(3) {
  transition-delay: 1.5s;
}
#news .btn {
  opacity: 0;
  transition: all 0.4s 1.7s ease;
}
#news.move-on .news__list ul li {
  opacity: 1;
  filter: brightness(1);
}
#news.move-on .news__list ul li .txt {
  color: #363636;
  text-shadow: none;
}
#news.move-on .btn {
  opacity: 1;
}

@-webkit-keyframes slideLoop {
  0% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) translateX(10px); /* 画面右端へ */
    opacity: 0;
  }
  41% {
    transform: translateY(-50%) translateX(-10px); /* 一気に左へ移動 */
    opacity: 0;
  }
  60% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}

@keyframes slideLoop {
  0% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) translateX(10px); /* 画面右端へ */
    opacity: 0;
  }
  41% {
    transform: translateY(-50%) translateX(-10px); /* 一気に左へ移動 */
    opacity: 0;
  }
  60% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
#merch {
  padding: 100px 0;
}
@media only screen and (max-width: 1250px) {
  #merch {
    padding: 8vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #merch {
    padding: 10.9375vw 0 15.3125vw;
  }
}
#merch .line {
  top: -43px;
}
@media only screen and (max-width: 768px) {
  #merch .line {
    top: -5.9375vw;
  }
}
#merch .ttl-box h2 {
  width: 351px;
}
@media only screen and (max-width: 1250px) {
  #merch .ttl-box h2 {
    width: 28.08vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .ttl-box h2 {
    width: 54.84375vw;
  }
}
#merch .ttl-box h2 .ttl-shine {
  -webkit-mask-image: url("../img/merch/title.svg");
          mask-image: url("../img/merch/title.svg");
}
#merch .ttl-box h2 .ttl-shine span {
  position: absolute;
  bottom: -60px;
  left: -50px;
  width: 100px;
  height: 100px;
  background-color: #B9D62F;
  filter: blur(20px);
}
#merch .image {
  margin-bottom: 72px;
  border: 1px solid #707070;
}
@media only screen and (max-width: 1250px) {
  #merch .image {
    margin-bottom: 5.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .image {
    margin-bottom: 11.25vw;
  }
}
#merch .image {
  opacity: 0;
  filter: blur(5px) brightness(5);
  transform: scale(0.95);
  transition: all 0.5s 1.4s ease;
}
#merch .btn {
  opacity: 0;
  transition: all 0.3s 1.6s ease;
}
#merch.move-on .image {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) brightness(1);
}
#merch.move-on .btn {
  opacity: 1;
}
#merch.move-on .btn.off {
  opacity: 0.6;
}

#message {
  padding: 200px 0 112px;
}
@media only screen and (max-width: 1250px) {
  #message {
    padding: 16vw 0 8.96vw;
  }
}
@media only screen and (max-width: 768px) {
  #message {
    padding: 25vw 0 21.875vw;
    margin-bottom: -8.4375vw;
  }
}
#message .sec-bg {
  width: 110vw;
  top: -5px;
  left: -5vw;
  background-color: rgba(240, 214, 229, 0.4);
  transform: rotate(3.5deg);
  transform-origin: left;
}
@media only screen and (max-width: 1250px) {
  #message .sec-bg {
    top: -0.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .sec-bg {
    top: 0;
  }
}
#message .line {
  transform: rotate(3.5deg);
}
#message .ttl-box h2 {
  width: 836px;
}
@media only screen and (max-width: 1250px) {
  #message .ttl-box h2 {
    width: 66.88vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .ttl-box h2 {
    width: 64.0625vw;
  }
}
#message .ttl-box h2 .deco-left {
  top: -35px;
  left: 105px;
}
@media only screen and (max-width: 1250px) {
  #message .ttl-box h2 .deco-left {
    top: -2.8vw;
    left: 8.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .ttl-box h2 .deco-left {
    width: 18.59375vw;
    top: 6.25vw;
    left: -14.0625vw;
  }
}
#message .ttl-box h2 .deco-right {
  width: 345px;
}
@media only screen and (max-width: 1250px) {
  #message .ttl-box h2 .deco-right {
    width: 27.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .ttl-box h2 .deco-right {
    width: 15vw;
    top: -2.5vw;
    right: -10.625vw;
  }
}
#message .ttl-box h2 .ttl-shine {
  -webkit-mask-image: url("../img/message/title.svg");
          mask-image: url("../img/message/title.svg");
}
@media only screen and (max-width: 768px) {
  #message .ttl-box h2 .ttl-shine {
    -webkit-mask-image: url("../img/message/title-sp.svg");
            mask-image: url("../img/message/title-sp.svg");
  }
}
#message .ttl-box h2 .ttl-shine span {
  position: absolute;
  bottom: -60px;
  left: -50px;
  width: 100px;
  height: 100px;
  background-color: #B9D62F;
  filter: blur(20px);
}
#message .ttl-box h2 .ttl-shine span:nth-child(1) {
  bottom: 80px;
  left: 150px;
}
#message .ttl-box h2 .ttl-shine span:nth-child(3) {
  bottom: -50px;
  left: 400px;
}
#message .image {
  margin-bottom: 72px;
}
@media only screen and (max-width: 1250px) {
  #message .image {
    margin-bottom: 5.76vw;
  }
}
#message .image {
  opacity: 0;
  filter: blur(5px) brightness(5);
  transform: scale(0.95);
  transition: all 0.5s 1.4s ease;
}
#message .btn {
  opacity: 0;
  transition: all 0.3s 1.6s ease;
}
#message.move-on .image {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) brightness(1);
}
#message.move-on .btn {
  opacity: 1;
}

#album {
  position: relative;
  padding: 210px 0 262px;
}
@media only screen and (max-width: 1250px) {
  #album {
    padding: 16.8vw 0 20.96vw;
  }
}
@media only screen and (max-width: 768px) {
  #album {
    padding: 20.3125vw 0 19.6875vw;
  }
}
#album .sec-bg {
  height: 100%;
  background: url("../img/top/album/bg.webp") no-repeat top left;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #album .sec-bg {
    background-image: url("../img/top/album/bg-sp.webp");
  }
}
#album .line {
  transform: rotate(3.5deg);
}
@media only screen and (max-width: 768px) {
  #album .line {
    transform: rotate(3.3deg);
  }
}
#album .ttl-box {
  margin-bottom: -64px;
}
@media only screen and (max-width: 1250px) {
  #album .ttl-box {
    margin-bottom: -5.12vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .ttl-box {
    margin-bottom: 3.125vw;
  }
}
#album .ttl-box h2 {
  width: 334px;
}
@media only screen and (max-width: 1250px) {
  #album .ttl-box h2 {
    width: 26.72vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .ttl-box h2 {
    width: 52.1875vw;
  }
}
#album .ttl-box h2 .ttl-shine {
  -webkit-mask-image: url("../img/album/title.svg");
          mask-image: url("../img/album/title.svg");
}
#album .ttl-box h2 .ttl-shine span {
  position: absolute;
  bottom: -60px;
  left: -50px;
  width: 100px;
  height: 100px;
  background-color: #F0D6E5;
  filter: blur(20px);
}
#album .box {
  display: grid;
  align-items: center;
  grid-template-columns: 553px 1fr;
  margin-bottom: -42px;
}
@media only screen and (max-width: 1250px) {
  #album .box {
    grid-template-columns: 44.24vw 1fr;
    margin-bottom: -3.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .box {
    display: block;
    margin-bottom: -18.90625vw;
  }
}
#album .box .cover {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #album .box .cover {
    margin-bottom: -27.34375vw;
  }
}
#album .box .detail {
  position: relative;
  width: 742px;
  height: 742px;
  padding: 115px 90px 0;
  margin-left: -50px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1250px) {
  #album .box .detail {
    width: 59.36vw;
    height: 59.36vw;
    padding: 9.2vw 7.2vw 0;
    margin-left: -4vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .box .detail {
    width: 116.71875vw;
    height: 130.625vw;
    margin: 0 -12.96875vw;
    padding: 33.90625vw 12.96875vw 25vw;
  }
}
#album .box .detail .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/top/album/bg_detail.png") no-repeat top center;
  background-size: contain;
  -webkit-animation: rotate 120s 0s infinite linear;
          animation: rotate 120s 0s infinite linear;
}
@media only screen and (max-width: 768px) {
  #album .box .detail .bg {
    background-size: cover;
  }
}
#album .box .detail .logo {
  width: 450px;
  margin-bottom: 35px;
  margin-left: 25px;
}
@media only screen and (max-width: 1250px) {
  #album .box .detail .logo {
    width: 36vw;
    margin-bottom: 2.8vw;
    margin-left: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .box .detail .logo {
    width: 58.125vw;
    margin: 0 auto 3.75vw;
  }
}
#album .box .detail .txt {
  font-size: 18px;
  line-height: 1.8;
  color: #7D2D99;
}
@media only screen and (max-width: 1250px) {
  #album .box .detail .txt {
    font-size: 1.44vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .box .detail .txt {
    font-size: 2.8125vw;
  }
}
#album .box .cover {
  opacity: 0;
  transform: translateX(100px) translateY(50px);
  transition: all 0.5s 1.4s ease;
}
#album .box .detail {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.5s 1.45s ease;
}
#album .box .detail .logo, #album .box .detail .txt {
  opacity: 0;
  filter: blur(3px);
  transition: all 0.8s 1.8s ease;
}
#album .btn {
  opacity: 0;
  transition: all 0.3s 1.9s ease;
}
#album.move-on .box .cover {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
#album.move-on .box .detail {
  opacity: 1;
  transform: translateX(0);
}
#album.move-on .box .detail .logo, #album.move-on .box .detail .txt {
  filter: blur(0px);
  opacity: 1;
}
#album.move-on .btn {
  opacity: 1;
}

#video {
  padding: 116px 0 90px;
}
@media only screen and (max-width: 1250px) {
  #video {
    padding: 9.28vw 0 7.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #video {
    padding: 14.0625vw 0 14.0625vw;
  }
}
#video .line {
  top: -1px;
  transform: rotate(-3.4deg);
}
#video .bg-deco {
  position: absolute;
  top: 138px;
  left: 50%;
  transform: translateX(-50%);
  width: 1407px;
}
@media only screen and (max-width: 2000px) {
  #video .bg-deco {
    top: 6.9vw;
    width: 70.35vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .bg-deco {
    top: 45.3125vw;
    width: 124.53125vw;
  }
}
#video .ttl-box {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1250px) {
  #video .ttl-box {
    margin-bottom: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .ttl-box {
    margin-bottom: 8.59375vw;
  }
}
#video .ttl-box h2 {
  width: 327px;
}
@media only screen and (max-width: 1250px) {
  #video .ttl-box h2 {
    width: 26.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .ttl-box h2 {
    width: 51.09375vw;
  }
}
#video .ttl-box h2 .ttl-shine {
  -webkit-mask-image: url("../img/video/title.svg");
          mask-image: url("../img/video/title.svg");
}
#video .ttl-box h2 .ttl-shine span {
  position: absolute;
  bottom: -60px;
  left: -50px;
  width: 100px;
  height: 100px;
  background-color: #B9D62F;
  filter: blur(20px);
}
#video .video__list {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding-bottom: 144px;
  padding-top: 48px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 2000px) {
  #video .video__list {
    padding-bottom: 7.2vw;
    padding-top: 2.4vw;
    margin-bottom: 3vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list {
    padding: 15.3125vw 4.6875vw;
    margin-bottom: 9.375vw;
  }
}
#video .video__list .swiper-wrapper {
  width: 100%;
  height: 447px;
  padding: 52px 0;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-wrapper {
    height: 22.35vw;
    padding: 2.6vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper {
    height: 50.9375vw;
    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;
}
@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%;
  filter: blur(3px);
  transition: all 0.5s ease;
}
#video .video__list .swiper-wrapper .swiper-slide a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0.5) translate(-50%, -50%);
  width: 128px;
  height: 146px;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  transition: all 0.25s ease;
  opacity: 0;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-wrapper .swiper-slide a::after {
    width: 6.4vw;
    height: 7.3vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide a::after {
    width: 12.8125vw;
    height: 14.84375vw;
  }
}
#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.25s ease;
}
#video .video__list .swiper-wrapper .swiper-slide a .deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 514px;
  height: 514px;
  transform-origin: 0 0;
  transition: all 0.25s 0.3s ease;
  -webkit-animation: rotateCenter 100s infinite linear;
          animation: rotateCenter 100s infinite linear;
  opacity: 0;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-wrapper .swiper-slide a .deco {
    width: 25.7vw;
    height: 25.7vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide a .deco {
    width: 82.34375vw;
    height: 82.34375vw;
  }
}
#video .video__list .swiper-wrapper .swiper-slide a .deco span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/top/video/deco.png") no-repeat top center;
  background-size: contain;
  transform: scale(0.4);
  transition: all 0.25s ease;
}
#video .video__list .swiper-wrapper .swiper-slide a:hover::after {
  transform: translate(-50%, -50%) scale(0.8);
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.26);
}
@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 .deco {
  opacity: 1;
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a .deco span {
  transform: scale(1);
}
#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);
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover .deco {
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  mix-blend-mode: color-dodge;
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover .deco span {
  transform: scale(0.9);
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::after {
  transform: translate(-50%, -50%) scale(0.8);
  mix-blend-mode: hard-light;
}
#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: 0;
}
#video .video__list .swiper-pagination .swiper-pagination-bullet {
  width: 19px;
  height: 44px;
  background: url("../img/top/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: 0.95vw;
    height: 2.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-pagination .swiper-pagination-bullet {
    width: 2.96875vw;
    height: 6.875vw;
    margin: 0 1.40625vw;
  }
}
#video .video__list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url("../img/top/video/pagination_on.svg");
}
#video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
  transform: translateY(-57.5%);
  width: 47px;
  height: 182px;
  background: url("../img/parts/arrow_simple_pl.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
    width: 2.35vw;
    height: 9.1vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
    width: 3.125vw;
    height: 12.1875vw;
  }
}
#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);
  transform: rotate(180deg) translateY(10%);
  transform-origin: 50% 26%;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev1 {
    left: calc(50% - 30vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1 {
    left: 0;
  }
}
#video .video__list .swiper-button-prev1:hover {
  transform: rotate(180deg) scaleY(0.8) scaleX(1.2) translateY(18%) translateX(20px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1:hover {
    transform: rotate(180deg) scaleY(1) scaleX(1) translateY(10%) translateX(0);
  }
}
#video .video__list .swiper-button-next1 {
  right: calc(50% - 600px);
  transform-origin: 100% -50%;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-next1 {
    right: calc(50% - 30vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next1 {
    right: 0;
  }
}
#video .video__list .swiper-button-next1:hover {
  transform: scaleY(0.8) scaleX(1.2) translateY(-47.5%) translateX(20px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next1:hover {
    transform: scaleY(1) scaleX(1) translateY(-57.5%) translateX(0);
  }
}
#video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
  display: block;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #7D2D99;
  top: inherit;
  bottom: 8px;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
    font-size: 1.5vw;
    bottom: 0.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
    font-size: 4.6875vw;
  }
}
#video .video__list .swiper-button-prev2::after,
#video .video__list .swiper-button-next2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 48px;
  height: 10px;
  background-color: #7D2D99;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 2000px) {
  #video .video__list .swiper-button-prev2::after,
#video .video__list .swiper-button-next2::after {
    width: 2.4vw;
    height: 0.5vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2::after,
#video .video__list .swiper-button-next2::after {
    width: 7.5vw;
    height: 1.5625vw;
  }
}
#video .video__list .swiper-button-prev2 {
  left: calc(50% - 220px);
  padding-left: 35px;
}
@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: 768px) {
  #video .video__list .swiper-button-prev2 {
    left: 16.5625vw;
    padding-left: 4.6875vw;
  }
}
#video .video__list .swiper-button-prev2::after {
  right: 80%;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
#video .video__list .swiper-button-prev2:hover::after {
  transform: translateY(-50%) translateX(-10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2:hover::after {
    transform: translateY(-50%) translateX(0);
  }
}
#video .video__list .swiper-button-next2 {
  right: calc(50% - 220px);
  padding-right: 35px;
}
@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: 768px) {
  #video .video__list .swiper-button-next2 {
    right: 16.5625vw;
    padding-right: 4.6875vw;
  }
}
#video .video__list .swiper-button-next2::after {
  left: 80%;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
#video .video__list .swiper-button-next2:hover::after {
  transform: translateY(-50%) translateX(10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next2:hover::after {
    transform: translateY(-50%) translateX(0);
  }
}
#video .bg-deco {
  opacity: 0;
  transform: scale(0.3) translateX(-50%);
  transform-origin: 0% 50%;
  transition: all 0.3s 1.4s ease-out;
}
#video .video__list {
  opacity: 0;
  transform: scale(0.9) translateX(-50%);
  transform-origin: 0% 50%;
  transition: all 0.4s 1.5s ease-out;
}
#video .btn {
  opacity: 0;
  transition: all 0.3s 1.9s ease;
}
#video.move-on .bg-deco {
  opacity: 1;
  transform: rotate(0deg) scale(1) translateX(-50%);
}
#video.move-on .video__list {
  opacity: 1;
  transform: scale(1) translateX(-50%);
}
#video.move-on .btn {
  opacity: 1;
}

#profile {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #profile {
    height: 330.9375vw;
  }
}
#profile .sec-bg {
  height: 100%;
  background: url("../img/top/profile/bg.webp") no-repeat top left;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #profile .sec-bg {
    background-image: url("../img/top/profile/bg-sp.webp");
  }
}
#profile .line {
  transform: rotate(3.5deg);
}
@media only screen and (max-width: 768px) {
  #profile .line {
    transform: rotate(3.2deg);
  }
}
#profile .inner {
  padding: 120px 0 70px;
}
@media only screen and (max-width: 1250px) {
  #profile .inner {
    padding: 9.6vw 0 5.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .inner {
    height: 100%;
    padding: 7.8125vw 0 0;
  }
}
#profile .illust {
  position: relative;
  left: calc(50% - 668px);
  width: 624px;
  pointer-events: none;
}
@media only screen and (max-width: 1250px) {
  #profile .illust {
    width: 49.92vw;
    left: calc(50% - 53.44vw);
  }
}
@media only screen and (max-width: 768px) {
  #profile .illust {
    width: 88.75vw;
    top: 17.1875vw;
    left: -4.6875vw;
  }
}
#profile h2 {
  position: absolute;
  top: 410px;
  right: calc(50% - 840px);
  width: 911px;
}
@media only screen and (max-width: 1250px) {
  #profile h2 {
    top: 32.8vw;
    right: calc(50% - 67.2vw);
    width: 72.88vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile h2 {
    width: 79.21875vw;
    top: 172.65625vw;
    left: 3.75vw;
  }
}
#profile .txt-deco1 {
  position: absolute;
  top: 140px;
  left: calc(50% - 828px);
  width: 1828px;
}
@media only screen and (max-width: 1250px) {
  #profile .txt-deco1 {
    top: 11.2vw;
    left: calc(50% - 66.24vw);
    width: 146.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .txt-deco1 {
    width: 110.3125vw;
    top: -3.125vw;
    left: -4.6875vw;
  }
}
#profile .txt-deco2 {
  position: absolute;
  bottom: -20px;
  left: calc(50% - 991px);
  width: 1266px;
}
@media only screen and (max-width: 1250px) {
  #profile .txt-deco2 {
    bottom: -1.6vw;
    left: calc(50% - 79.28vw);
    width: 101.28vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .txt-deco2 {
    width: 126.25vw;
    bottom: inherit;
    top: 123.4375vw;
    left: -30vw;
  }
}
#profile .profile__box {
  position: absolute;
  bottom: 3vw;
  right: calc(50% - 900px);
  width: 1128px;
  height: 1042px;
  z-index: 2;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box {
    right: calc(50% - 72vw);
    width: 90.24vw;
    height: 83.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box {
    width: 176.25vw;
    height: 162.8125vw;
    bottom: 0;
    right: inherit;
    left: -49.375vw;
  }
}
#profile .profile__box__base {
  position: absolute;
  bottom: 3vw;
  right: calc(50% - 900px);
  width: 1128px;
  height: 1042px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__base {
    right: calc(50% - 72vw);
    width: 90.24vw;
    height: 83.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__base {
    width: 176.25vw;
    height: 162.8125vw;
    bottom: 0;
    right: inherit;
    left: -49.375vw;
  }
}
#profile .profile__box__base::before {
  content: "";
  position: absolute;
  top: 297px;
  left: 230px;
  width: 613px;
  height: 3px;
  background-image: radial-gradient(circle, #7D2D99 1.5px, transparent 1.5px);
  background-position: 0 0;
  background-size: 12px 3px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__base::before {
    top: 23.76vw;
    left: 18.4vw;
    width: 49.04vw;
    height: 0.24vw;
    background-size: 0.96vw 0.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__base::before {
    top: 34.6875vw;
    left: 50.78125vw;
    width: 74.0625vw;
    height: 0.46875vw;
    background-size: 1.875vw 0.46875vw;
  }
}
#profile .profile__box .kira {
  position: absolute;
}
#profile .profile__box .kira.kira1 {
  width: 137px;
  top: 240px;
  right: 172px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box .kira.kira1 {
    width: 10.96vw;
    top: 19.2vw;
    right: 13.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box .kira.kira1 {
    width: 21.40625vw;
    top: 25vw;
    right: 36.25vw;
  }
}
#profile .profile__box .kira.kira2 {
  width: 183px;
  top: 176px;
  right: 107px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box .kira.kira2 {
    width: 14.64vw;
    top: 14.08vw;
    right: 8.56vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box .kira.kira2 {
    width: 28.59375vw;
    top: 15.3125vw;
    right: 25vw;
  }
}
#profile .profile__box .kira.kira3 {
  width: 137px;
  top: 895px;
  left: 111px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box .kira.kira3 {
    width: 10.96vw;
    top: 71.6vw;
    left: 8.88vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box .kira.kira3 {
    width: 21.40625vw;
    top: 135.3125vw;
    left: 49.375vw;
  }
}
#profile .profile__box__link {
  position: absolute;
  top: 344px;
  left: 230px;
  z-index: 2;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__link {
    top: 27.52vw;
    left: 18.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__link {
    top: 40.3125vw;
    left: 51.5625vw;
  }
}
#profile .profile__box__link ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 90px;
  width: 427px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__link ul {
    width: 34.16vw;
    gap: 0 7.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__link ul {
    width: 66.875vw;
    gap: 0 15.3125vw;
  }
}
#profile .profile__box__link ul li {
  width: 167px;
  height: 45px;
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__link ul li {
    width: 31.875vw;
    height: 7.03125vw;
  }
}
#profile .profile__box__link ul li a {
  font-size: 24px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__link ul li a {
    font-size: 1.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__link ul li a {
    font-size: 3.75vw;
  }
}
#profile .profile__box__link ul li a::after {
  display: none;
}
#profile .profile__box__detail {
  position: absolute;
  top: 426px;
  left: 228px;
  width: 760px;
  color: #7D2D99;
  z-index: 2;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__detail {
    top: 34.08vw;
    left: 18.24vw;
    width: 60.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__detail {
    width: 90.625vw;
    top: 54.0625vw;
    left: 49.375vw;
  }
}
#profile .profile__box__detail .catch {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__detail .catch {
    font-size: 2.72vw;
    margin-bottom: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__detail .catch {
    font-size: 5.3125vw;
    line-height: 1.8;
    margin-bottom: 4.6875vw;
  }
}
#profile .profile__box__detail .txt {
  font-size: 20px;
  line-height: 2.2;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__detail .txt {
    font-size: 1.6vw;
    margin-bottom: 2.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__detail .txt {
    font-size: 3.125vw;
    line-height: 1.8;
    margin-bottom: 3.90625vw;
  }
}
#profile .profile__box__detail dl {
  display: grid;
  grid-template-columns: 308px 1fr;
  background-image: radial-gradient(circle, #7D2D99 1px, transparent 1px);
  background-size: 10px 49px;
  background-position: 0px -26px;
  padding-bottom: 4px;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__detail dl {
    grid-template-columns: 24.64vw 1fr;
    background-size: 0.8vw 3.92vw;
    background-position: 0vw -2.08vw;
    padding-bottom: 0.32vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__detail dl {
    grid-template-columns: 48.125vw 1fr;
    background-size: 1.5625vw 7.65625vw;
    background-position: 0 -4.0625vw;
    padding-bottom: 0.625vw;
  }
}
#profile .profile__box__detail dl dt {
  font-size: 20px;
  line-height: 2.4;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__detail dl dt {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__detail dl dt {
    font-size: 3.125vw;
  }
}
#profile .profile__box__detail dl dd {
  font-size: 20px;
  line-height: 2.4;
}
@media only screen and (max-width: 1250px) {
  #profile .profile__box__detail dl dd {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #profile .profile__box__detail dl dd {
    font-size: 3.125vw;
  }
}
#profile .txt-deco1 {
  opacity: 0;
  transform: translateX(-200px);
  transition: all 1.3s ease;
}
#profile .txt-deco2 {
  opacity: 0;
  transform: translateX(200px);
  transition: all 1.3s ease;
}
#profile .illust {
  opacity: 0;
  filter: blur(3px) brightness(3);
  transform: translateX(100px) translateY(60px);
  transition: all 0.6s 1s ease;
}
#profile .profile__box {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s 1.1s ease;
}
#profile .profile__box__base {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s 1.1s ease;
}
#profile .profile__box__base::before {
  opacity: 0;
  transition: all 0.6s 1.5s ease;
}
#profile .profile__box .kira {
  opacity: 0;
  transform: scale(0.3) skewX(3deg) translateX(-50px) translateY(50px);
  mix-blend-mode: hard-light;
  transition: all 0.2s 1.5s ease;
}
#profile .profile__box .kira.kira2 {
  transition-delay: 1.6s;
}
#profile .profile__box .kira.kira3 {
  transition-delay: 1.6s;
}
#profile .profile__box__link {
  opacity: 0;
  transition: all 0.6s 1.5s ease;
}
#profile .profile__box__detail {
  opacity: 0;
  transition: all 0.6s 1.5s ease;
}
#profile h2 {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s 1.3s ease;
}
#profile.move-on .txt-deco1, #profile.move-on .txt-deco2 {
  opacity: 1;
  transform: translateX(0px);
}
#profile.move-on .illust {
  opacity: 1;
  filter: blur(0px) brightness(1);
  transform: translateX(0) translateY(0);
}
#profile.move-on .profile__box {
  opacity: 1;
  transform: translateX(0);
}
#profile.move-on .profile__box__base {
  opacity: 1;
  transform: translateX(0);
}
#profile.move-on .profile__box__base::before {
  opacity: 1;
}
#profile.move-on .profile__box .kira {
  opacity: 1;
  transform: scale(1) skewX(0deg) translateX(0px) translateY(0px);
  mix-blend-mode: normal;
}
#profile.move-on .profile__box__link {
  opacity: 1;
}
#profile.move-on .profile__box__detail {
  opacity: 1;
}
#profile.move-on h2 {
  opacity: 1;
  transform: translateX(0);
}

#poem {
  padding: 100px 0;
  height: 2430px;
  margin-top: -3vw;
}
@media only screen and (max-width: 1250px) {
  #poem {
    padding: 8vw 0;
    height: 194.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem {
    margin-top: -3.59375vw;
    height: 206.5625vw;
  }
}
#poem .sec-bg {
  top: inherit;
  bottom: 0;
  height: 103%;
  overflow: hidden;
}
#poem .sec-bg .bg {
  position: absolute;
  left: 0;
  top: 3%;
  display: block;
  width: 100%;
  height: 110%;
  transform: skewY(-3.35deg);
  background-image: linear-gradient(180deg, rgba(240, 214, 229, 0.1), rgba(255, 193, 224, 0.8) 21%, rgba(125, 45, 153, 0.8) 60%);
}
@media only screen and (max-width: 768px) {
  #poem .sec-bg .bg {
    transform: skewY(-4deg);
  }
}
#poem .line {
  top: 2.9vw;
  transform: rotate(-3.35deg);
}
@media only screen and (max-width: 768px) {
  #poem .line {
    top: 3.28125vw;
    transform: rotate(-4deg);
  }
}
#poem .deco1 {
  position: absolute;
  bottom: 530px;
  right: calc(50% - 290px);
  width: 642px;
}
@media only screen and (max-width: 1250px) {
  #poem .deco1 {
    width: 51.36vw;
    bottom: 42.4vw;
    right: calc(50% - 23.2vw);
  }
}
@media only screen and (max-width: 768px) {
  #poem .deco1 {
    width: 33.59375vw;
    bottom: 70.3125vw;
    right: calc(50% - 18.59375vw);
  }
}
#poem .deco1 img {
  -webkit-animation: rotate 100s 0s infinite linear;
          animation: rotate 100s 0s infinite linear;
}
#poem .deco2, #poem .deco3 {
  position: absolute;
  bottom: -230px;
  left: 50%;
  transform: translateX(-50%);
  width: 2716px;
  mix-blend-mode: screen;
}
@media only screen and (max-width: 1250px) {
  #poem .deco2, #poem .deco3 {
    width: 217.28vw;
    bottom: -18.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .deco2, #poem .deco3 {
    width: 202.96875vw;
    bottom: 5vw;
  }
}
#poem .deco3 img {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
@-webkit-keyframes zoomFade {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes zoomFade {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
#poem .text {
  position: absolute;
  top: 550px;
  left: 51%;
  transform: translateX(-50%);
  width: 1200px;
}
@media only screen and (max-width: 1250px) {
  #poem .text {
    top: 44vw;
    width: 96vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text {
    width: 89.6875vw;
    top: 37.5vw;
  }
}
#poem .text .shadow {
  position: absolute;
  top: -90px;
  right: calc(50% - 699px);
  width: 1445px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .shadow {
    width: 115.6vw;
    top: -7.2vw;
    right: calc(50% - 55.92vw);
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .shadow {
    width: 108.125vw;
    top: -6.5625vw;
    left: -10.9375vw;
  }
}
#poem .text .txt-box {
  text-align: center;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
#poem .text .txt-box.move-on {
  opacity: 1;
  transform: translateY(0px);
}
#poem .text .txt-box.txt1 {
  width: 332px;
  margin-bottom: 58px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt1 {
    width: 26.56vw;
    margin-bottom: 4.64vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt1 {
    width: 24.84375vw;
    margin-bottom: 4.375vw;
  }
}
#poem .text .txt-box.txt2 {
  width: 475px;
  margin-bottom: 116px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt2 {
    width: 38vw;
    margin-bottom: 9.28vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt2 {
    width: 35.46875vw;
    margin-bottom: 8.59375vw;
  }
}
#poem .text .txt-box.txt3 {
  width: 533px;
  margin-bottom: 52px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt3 {
    width: 42.64vw;
    margin-bottom: 4.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt3 {
    width: 39.84375vw;
    margin-bottom: 3.90625vw;
  }
}
#poem .text .txt-box.txt4 {
  width: 615px;
  margin-bottom: 147px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt4 {
    width: 49.2vw;
    margin-bottom: 11.76vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt4 {
    width: 46.09375vw;
    margin-bottom: 10.9375vw;
  }
}
#poem .text .txt-box.txt5 {
  width: 637px;
  margin-bottom: 49px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt5 {
    width: 50.96vw;
    margin-bottom: 3.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt5 {
    width: 46.25vw;
    margin-bottom: 3.75vw;
  }
}
#poem .text .txt-box.txt6 {
  width: 819px;
  margin-bottom: 135px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt6 {
    width: 65.52vw;
    margin-bottom: 10.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt6 {
    width: 61.25vw;
    margin-bottom: 10vw;
  }
}
#poem .text .txt-box.txt7 {
  width: 547px;
  margin-bottom: 54px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt7 {
    width: 43.76vw;
    margin-bottom: 4.32vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt7 {
    width: 40.9375vw;
    margin-bottom: 4.0625vw;
  }
}
#poem .text .txt-box.txt8 {
  width: 582px;
  margin-bottom: 65px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt8 {
    width: 46.56vw;
    margin-bottom: 5.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt8 {
    width: 43.59375vw;
    margin-bottom: 4.84375vw;
  }
}
#poem .text .txt-box.txt9 {
  width: 871px;
  margin-bottom: 123px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt9 {
    width: 69.68vw;
    margin-bottom: 9.84vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt9 {
    width: 65.15625vw;
    margin-bottom: 9.21875vw;
  }
}
#poem .text .txt-box.txt10 {
  width: 215px;
  margin-bottom: 26px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt10 {
    width: 17.2vw;
    margin-bottom: 2.08vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt10 {
    width: 16.09375vw;
    margin-bottom: 1.875vw;
  }
}
#poem .text .txt-box.txt11 {
  width: 1200px;
}
@media only screen and (max-width: 1250px) {
  #poem .text .txt-box.txt11 {
    width: 96vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .text .txt-box.txt11 {
    width: 89.84375vw;
  }
}