@charset "UTF-8";
/*==============

    GENERAL

==============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "MS PGothic", sans-serif;
  color: #020615;
  line-height: 1.8;
  overflow: hidden;
  font-feature-settings: "palt";
}

html {
  font-size: 16px;
  font-size: 1rem;
}

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

.ScAct.FI {
  opacity: 0;
  transition: all 2s cubic-bezier(0.34, 0.84, 0.36, 0.85);
}
.ScAct.FI.Ef {
  opacity: 1;
}
.ScAct.FIT {
  opacity: 0;
  transform: translateY(20px);
  transition: all 2s cubic-bezier(0.34, 0.84, 0.36, 0.85);
}
.ScAct.FIT.Ef {
  transform: translateY(0);
  opacity: 1;
}
.ScAct.FIL {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 2s cubic-bezier(0.34, 0.84, 0.36, 0.85);
}
.ScAct.FIL.Ef {
  transform: translateX(0);
  opacity: 1;
}
.ScAct.FIR {
  opacity: 0;
  transform: translateX(30px);
  transition: all 2s cubic-bezier(0.34, 0.84, 0.36, 0.85);
}
.ScAct.FIR.Ef {
  transform: translateX(0);
  opacity: 1;
}

.ScAct.SerialFIR > :nth-child(1) {
  transition-delay: 0.3s;
}

.ScAct.SerialFIR > :nth-child(2) {
  transition-delay: 0.6s;
}

.ScAct.SerialFIR > :nth-child(3) {
  transition-delay: 0.9s;
}

.ScAct.SerialFIR > :nth-child(4) {
  transition-delay: 1.2s;
}

.ScAct.SerialFIR > :nth-child(5) {
  transition-delay: 1.5s;
}

.ScAct.SerialFIR > * {
  opacity: 0;
  transform: translateX(20px);
  transition: all 2s cubic-bezier(0.34, 0.84, 0.36, 0.85);
}
.ScAct.SerialFIR.Ef > * {
  transform: translateX(0px);
  opacity: 1;
}

#MV .text .catch {
  opacity: 0;
  transform: translateX(30px);
}

#MV .text.In .catch {
  opacity: 1;
  transform: translateX(0px);
  transition: all 2s cubic-bezier(0.34, 0.84, 0.36, 0.85) 0s;
}

#MV .text .name {
  opacity: 0;
  transform: translateX(30px);
}

#MV .text.In .name {
  opacity: 1;
  transform: translateX(0px);
  transition: all 2s cubic-bezier(0.34, 0.84, 0.36, 0.85) 0.6s;
}

/*========= Loading ===============*/
html {
  overflow: hidden;
}

/* Loading背景画面設定　*/
#splash {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #020615;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}

@keyframes anim-circle {
  0% {
    opacity: 1;
    -webkit-clip-path: circle(0% at 50% 50%);
            clip-path: circle(0% at 50% 50%);
  }
  25% {
    -webkit-clip-path: circle(22% at 50% 50%);
            clip-path: circle(22% at 50% 50%);
  }
  50% {
    -webkit-clip-path: circle(15% at 50% 50%);
            clip-path: circle(15% at 50% 50%);
  }
  75% {
    -webkit-clip-path: circle(23% at 50% 50%);
            clip-path: circle(23% at 50% 50%);
  }
  90% {
    filter: blur(0px);
  }
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    filter: blur(22px);
  }
}
#firstview {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#firstview .bgimg {
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  width: 130vmin;
  height: 130vmin;
}
#firstview .bgimg.Act {
  animation: anim-circle 1.5s ease-in 0.3s 1 normal forwards;
}

#maincontent {
  position: relative;
  background: #ffdb00;
  z-index: 0;
}

#MV {
  pointer-events: none;
  position: relative;
  z-index: 0;
  padding: 0;
  overflow: hidden;
  height: 84vmax;
  min-height: 90vh;
  background: no-repeat top right url(images/jacket-bg.png);
  background-size: cover;
}
#MV .inner {
  position: relative;
  width: 100%;
  height: 100dvh;
  z-index: 0;
}
#MV .bg {
  position: absolute;
  width: 100vmax;
  height: 100vmax;
  top: 8%;
  left: -80px;
  opacity: 0;
  transition: all 1s ease-in-out;
  z-index: -1;
}
#MV .bg.Act {
  left: -8vw;
  opacity: 1;
}
#MV .text .name {
  position: absolute;
  right: 10%;
  top: 60%;
}
#MV .text .name h1 {
  max-width: 800px;
  width: 44vw;
  height: auto;
  filter: drop-shadow(2px 2px 3px rgba(20, 20, 20, 0.1764705882));
}
#MV .text .catch {
  position: absolute;
  max-width: 760px;
  right: 10%;
  top: 20%;
  text-align: right;
}
#MV .text .catch p {
  color: white;
  font-weight: bold;
  font-size: min(5vw, 60px);
  text-shadow: 3px 3px 5px #000000;
}
#MV .bg img {
  width: 100%;
}

#info {
  position: relative;
  padding: 200px 0px;
  background: #020615;
  color: #fff;
  z-index: 2;
  transform: skewY(-8deg);
  transform-origin: left;
  overflow: hidden;
}
#info::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 14vw;
  background: #ffdb00;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
          clip-path: polygon(0 0, 0 100%, 100% 100%);
  transform: skewY(8deg);
  transform-origin: left;
}
#info .sec_inner {
  transform: skewY(8deg);
}
#info .content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}
#info .day {
  font-weight: bold;
}
#info .day .t1 {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
}
#info .day .t2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}
#info .day .t2 span {
  font-size: 90px;
  font-size: 5.625rem;
}
#info .place {
  font-weight: bold;
  text-align: right;
  font-size: 50px;
  font-size: 3.125rem;
  padding: 0.2em 0 0.4em;
}
#info .text {
  font-size: 20px;
  font-size: 1.25rem;
}
#info .price {
  font-size: 30px;
  font-size: 1.875rem;
  display: block;
  color: #000;
  background: #fff;
  letter-spacing: 0;
  max-width: 330px;
  text-align: center;
  font-weight: bold;
  padding: 5px 10px;
  line-height: 1.4;
  margin: 1rem 0 0 auto;
}

#movie {
  position: relative;
  z-index: 1;
  background: no-repeat center center url("images/jacket02.png");
  background-size: cover;
  padding: 250px 0 100px;
  margin: -300px 0 0;
}
#movie::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.8;
  z-index: 3;
}
#movie .sec_inner {
  position: relative;
  text-align: center;
  padding: 50px 20px 50px;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
}
#movie .ttl {
  color: #fff;
  font-size: 200px;
  line-height: 0.9;
  text-align: right;
  letter-spacing: 0;
}
#movie .ttl span {
  opacity: 0.5;
}
#movie .youtube {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
#movie .youtube iframe {
  width: 100%;
  height: 100%;
}
#movie .btn a {
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  padding: 0 10px;
  margin: 50px auto 0;
  border: 3px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 30px;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}
#movie .btn a span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
#movie .btn a::after {
  position: absolute;
  content: "";
  left: -10%;
  transform: skewX(22deg);
  background: #ffffff;
  z-index: 0;
  height: 100%;
  left: -10%;
  width: 0;
  transition: all 0.3s ease-in-out;
}
#movie .btn a:hover span {
  color: #020615;
}
#movie .btn a:hover::after {
  position: absolute;
  content: "";
  width: 120%;
}

#songlist {
  position: relative;
  background: #020615;
  color: #fff;
  z-index: 2;
}
#songlist::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 14vw;
  background: #020615;
  -webkit-clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
          clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
  left: 0;
  bottom: calc(100% - 1px);
  z-index: 2;
}
#songlist::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 14vw;
  background: #ffdb00;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  left: 0;
  top: -8vw;
  z-index: 1;
}
#songlist .sec_inner {
  position: relative;
  background: #020615;
  z-index: 2;
}
#songlist .ttl {
  position: absolute;
  color: #fff;
  font-size: 60px;
  writing-mode: tb;
  font-size: 200px;
  line-height: 0.9;
  height: 10em;
  opacity: 0.5;
  letter-spacing: 0.1em;
}
#songlist .track {
  position: relative;
  padding: 100px 0;
}
#songlist .track ol {
  display: block;
}
#songlist .track .track_list {
  max-width: 1400px;
  width: 100%;
  padding: 0 20px 0 170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  list-style: none;
}
#songlist .track .track_list .list_item {
  position: relative;
  display: inline-block;
  padding-bottom: 80px;
}
#songlist .track .track_list .list_item:nth-child(even) {
  margin: 0 0 0 auto;
}
#songlist .track .track_list .list_item .genre {
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 32px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #ffdb00;
  padding-left: 2.5rem;
  line-height: 1.6;
}
#songlist .track .track_list .list_item li {
  font-weight: 600;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6;
  margin: -10px 0 0px;
}
#songlist .track .track_list .list_item li::marker {
  font-size: 20px;
}
#songlist .track .track_list .list_item li .m {
  font-size: 14px;
  font-size: 0.875rem;
}
#songlist .track .track_list .list_item .artist {
  font-size: 20px;
  font-size: 1.25rem;
  padding-left: 2.5rem;
}
#songlist .track .track_list .list_item .artist span {
  padding-right: 10px;
}
#songlist .track .track_list .list_item .event {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  margin-left: 2.5rem;
  padding-right: 1em;
  display: flex;
  align-items: center;
}
#songlist .track .track_list .list_item .event::before {
  position: relative;
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-right: 0.5em;
  background: #fff;
  background: #fff;
  opacity: 0.6;
}

#credit {
  position: relative;
  background: no-repeat url("images/jacket02.png");
  background-position: center;
  background-size: cover;
  padding: 200px 0 0;
  margin: 0 0 -300px;
  z-index: 1;
}
#credit a {
  position: relative;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  color: #020615;
  overflow: hidden;
  padding: 0 0 0.2em;
}
#credit a:hover {
  opacity: 0.3;
}
#credit a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: -100%;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
#credit a:hover::after {
  left: 100%;
}
#credit::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.7;
  z-index: 2;
}
#credit .ttl {
  position: absolute;
  color: #fff;
  font-size: 60px;
  writing-mode: tb;
  font-size: 200px;
  line-height: 0.9;
  height: 10em;
  opacity: 0.5;
  letter-spacing: 0;
  line-height: 0.65;
  right: 0;
  z-index: 3;
}
#credit .staff {
  position: relative;
  padding: 100px 20px;
  z-index: 3;
}
#credit .staff .staff_list .shop.list_item p {
  max-width: 580px;
}
#credit .staff .shop {
  margin-bottom: 50px;
}
#credit .staff .shop a {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  padding: 5px 5px;
  border: 3px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 28px;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}
#credit .staff .shop a span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
#credit .staff .shop a::after {
  position: absolute;
  content: "";
  left: -10%;
  transform: skewX(22deg);
  background: #ffffff;
  z-index: 0;
  height: 100%;
  left: -10%;
  width: 0;
  transition: all 0.3s ease-in-out;
}
#credit .staff .shop a:hover {
  opacity: 1;
}
#credit .staff .shop a:hover span {
  color: #020615;
}
#credit .staff .shop a:hover::after {
  position: absolute;
  content: "";
  width: 120%;
}
#credit .staff .staff_list {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px 0;
  text-align: left;
}
#credit .staff .staff_list .list_item {
  padding-bottom: 50px;
}
#credit .staff .staff_list .list_item h4 {
  position: relative;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 400;
}
#credit .staff .staff_list .list_item p {
  display: flex;
  flex-wrap: wrap;
  font-size: 28px;
  font-size: 1.75rem;
  max-width: 510px;
  width: 100%;
  line-height: 1;
}
#credit .staff .staff_list .list_item p a {
  color: #fff;
  display: inline-block;
  margin-top: 5px;
  margin-right: 0.5em;
}
#credit .credit {
  padding: 200px 0 20px;
  text-align: right;
  max-width: 120px;
  margin: 0 0 0 auto;
}
#credit .credit a:after {
  display: none;
}
#credit .credit .c {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0;
}

/*=====================
responsive
======================*/
@media screen and (max-width: 960px) {
  #MV .text .catch {
    max-width: 48vw;
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #MV .text .name h1 {
    max-width: 520px;
    width: 100%;
  }
  #movie .ttl, #songlist .ttl, #credit .ttl {
    font-size: 18vw;
  }
  #songlist .track .track_list {
    padding: 0 20px 0 18vw;
  }
  #movie {
    padding: 40vw 0 0px;
    margin: -40vw 0 0;
  }
}
@media screen and (max-width: 920px) {
  #songlist .track .track_list .list_item:nth-child(even) {
    margin: 0;
  }
  #songlist .track .track_list .list_item {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 650px) {
  #MV .text .catch {
    max-width: 90vw;
    top: 44%;
  }
  #MV .bg.Act {
    left: -20vw;
  }
  #MV .text .catch, #MV .text .name {
    right: 0;
    padding: 0 30px;
  }
  #info {
    padding: 100px 0px;
  }
  #info .day .t1 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #info .day .t2 span {
    font-size: 40px;
    font-size: 2.5rem;
  }
  #info .day .t2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #info .place {
    font-size: 30px;
    font-size: 1.875rem;
    padding: 0.6em 0;
    text-align: left;
    line-height: 1.2;
  }
  #info .place span {
    display: block;
  }
  #info .text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #info .price {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #songlist .track .track_list .list_item .genre {
    font-size: 12px;
    font-size: 0.75rem;
    padding-bottom: 0.5em;
  }
  #songlist .track .track_list .list_item li {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #songlist .track .track_list .list_item .artist {
    font-size: 16px;
    font-size: 1rem;
  }
  #songlist .track .track_list .list_item .genre, #songlist .track .track_list .list_item .artist {
    padding-left: 2.2rem;
  }
  #songlist .track .track_list .list_item .event {
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.2;
  }
  #songlist .track .track_list .list_item .event::before {
    width: 30px;
    margin-right: 0.2em;
  }
  #credit .staff .staff_list .list_item h4 {
    font-size: 16px;
    font-size: 1rem;
  }
  #credit .staff {
    padding: 0px 0px 100PX;
  }
  #credit .staff .staff_list .list_item p {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #credit .credit {
    padding: 60px 10px 80px;
  }
  #credit .staff .staff_list .list_item {
    padding-bottom: 30px;
  }
  #credit .credit img {
    max-width: 80px;
  }
  #credit .credit .c {
    font-size: 8px;
  }
}
@media screen and (max-width: 400px) {
  #MV .bg.Act {
    left: -35vw;
  }
}/*# sourceMappingURL=style.css.map */