/* -------------------------------------------

layout

------------------------------------------- */
.kv,
main,
footer {
  width: 37.6rem;
  margin-left: auto;
  margin-right: auto;
  background: #000;
}

.kv {
  margin-top: 9rem;
}

@media screen and (max-width: 768px) {
  .kv,
  main,
  footer {
    width: 100%;
  }
  .kv {
    margin-top: 0;
  }
}
/* pagetop */
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}

#page-top a {
  background: #e4007f;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-left: 0.1rem;
}

/* -------------------------------------------

left

------------------------------------------- */
.left {
  position: fixed;
  left: 0;
  top: 0;
  width: calc((100% - 37.6rem) / 2);
  z-index: 10;
  padding: 6rem 0 0 4rem;
}

.left .logo {
  margin-bottom: 10rem;
  width: 26rem;
}

.left nav {
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
}

.left ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.left li:not(:last-child) {
  margin-bottom: 2rem;
}

.left li a {
  display: flex;
  align-items: center;
}

.left li a::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
}

.left li:nth-child(1) a::before {
  background: url(../img/ico-heart-pink.png) no-repeat center/contain;
}

.left li:nth-child(2) a::before {
  background: url(../img/ico-heart-green.png) no-repeat center/contain;
}

.left li:nth-child(3) a::before {
  background: url(../img/ico-heart-blue.png) no-repeat center/contain;
}

.left li:nth-child(4) a::before {
  background: url(../img/ico-heart-purple.png) no-repeat center/contain;
}

.left li:nth-child(5) a::before {
  background: url(../img/ico-heart-orange.png) no-repeat center/contain;
}

.left li:nth-child(6) a::before {
  background: url(../img/ico-heart-grey.png) no-repeat center/contain;
}

.left li:nth-child(7) a::before {
  background: url(../img/ico-heart-ygreen.png) no-repeat center/contain;
}

.left li:nth-child(8) a::before {
  background: url(../img/ico-heart-yellow.png) no-repeat center/contain;
}

/* -------------------------------------------

right

------------------------------------------- */
.right {
  position: fixed;
  right: 0;
  top: 0;
  width: calc((100% - 37.6rem) / 2);
  height: 100vh;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 7rem;
}

.right > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.right > div > div {
  width: 34rem;
  margin-top: 4rem;
}

.right ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 34rem;
}

.right ul li {
  width: calc((100% - 2rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.right ul li > img {
  width: 3rem;
}

.qr-bg {
  margin-top: 1rem;
  width: 7.2rem;
  height: 7.2rem;
  background: url(../img/qr-bg.png) no-repeat center/contain;
  padding: 0.25rem;
}

/* -------------------------------------------

kv

------------------------------------------- */
.kv {
  position: relative;
  padding-bottom: 3rem;
}
.kv > div {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translate(-50%, 0);
  width: calc(100% - 2rem);
}
.kv > div a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  line-height: 1;
  padding: 1.5rem 0;
}
.kv > div a > span {
  position: relative;
  z-index: 10;
  font-weight: 700;
}
.kv > div a > span:nth-child(1) {
  margin-bottom: 0.6rem;
}
.kv > div a > span:nth-child(2) {
  font-size: 2.6rem;
}
.kv > div a::before, .kv > div a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.kv > div a::after {
  background: url(../img/ico-ticket.png) no-repeat center right 1rem;
  background-size: auto 80%;
}
.kv > div a::before {
  background: linear-gradient(to right, #caaa47, #f6d58b, #caaa47);
  z-index: -1;
  border-radius: 2rem;
}

/* -------------------------------------------

about

------------------------------------------- */
.about {
  background: url(../img/line-2.png) no-repeat left top, url(../img/line-2.png) no-repeat left bottom;
  background-size: 100% auto;
  padding: 5rem 2rem;
}

.about p {
  margin: 2rem 0;
}
.about p strong {
  color: #e4007f;
  font-weight: 500;
}

.about > div {
  border-top: solid 0.2rem #fff;
  border-bottom: solid 0.2rem #fff;
  padding: 1.5rem 0;
  line-height: 1.6;
  font-weight: bold;
  white-space: nowrap;
}

/* -------------------------------------------

event

------------------------------------------- */
.event {
  padding: 5rem 0;
  background: url(../img/event-deco-6.png) no-repeat right 3rem bottom 2rem;
  background-size: 6rem auto;
}
.event h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.event h2 span {
  background: linear-gradient(to right, #e40281, #ff6cfd);
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.event h2 + p {
  padding: 0 3.5rem;
  margin-bottom: 4rem;
}
.event ul {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.event ul li {
  position: relative;
}
.event ul li > div {
  padding: 0 3.5rem;
  margin-top: -8.5rem;
}
.event ul li > div p {
  font-size: 1.5rem;
}
.event ul li:nth-child(odd) figure {
  padding-left: 7rem;
}
.event ul li:nth-child(even) figure {
  padding-right: 7rem;
}
.event ul li:nth-child(even) h3 {
  align-items: flex-end;
}
.event ul li:nth-child(1)::before {
  content: "";
  width: 7.5rem;
  height: 7.5rem;
  background: url(../img/event-deco-1.png) no-repeat left top;
  background-size: auto 100%;
  position: absolute;
  left: 2rem;
  top: -2rem;
  z-index: -1;
}
.event ul li:nth-child(1)::after {
  content: "";
  width: 6rem;
  height: 6rem;
  background: url(../img/event-deco-2.png) no-repeat right bottom;
  background-size: 100% auto;
  position: absolute;
  right: 3rem;
  bottom: -5.5rem;
  z-index: -1;
}
.event ul li:nth-child(2) {
  background: url(../img/event-deco-3.png) no-repeat left 2rem bottom 8.5rem;
  background-size: 3.5rem auto;
}
.event ul li:nth-child(2)::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/event-deco-4.png) no-repeat center/contain;
  position: absolute;
  right: 2.5rem;
  bottom: -2rem;
}
.event h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.event h3 > span:nth-child(2) {
  background: linear-gradient(to right, #e40281, #ff6cfd);
  padding: 1rem 1.5rem;
  transform: skewX(-10deg);
}
.event h3 > span:nth-child(2) > span {
  transform: skewX(10deg);
  display: block;
  line-height: 1.3;
  white-space: nowrap;
}
.event .num {
  font-family: "M PLUS 1", sans-serif;
  font-size: 6.4rem;
  margin-bottom: 0.5rem;
}

/* -------------------------------------------

feature

------------------------------------------- */
.feature {
  background: url(../img/line-2.png) no-repeat left top, url(../img/line-2.png) no-repeat left bottom, url(../img/bg-ptn.png) center top;
  background-size: 100% auto;
  padding: 6rem 2rem;
}
.feature h2 {
  text-align: center;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.2;
  background: url(../img/line-dot.png) no-repeat center bottom;
  background-size: 100% auto;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.feature ul {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}
.feature ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature ul figure {
  width: 60%;
  margin-bottom: 1.5rem;
}
.feature ul h3 {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.feature > p {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

/* -------------------------------------------

artist

------------------------------------------- */
.artist {
  padding: 5rem 2rem 7rem 2rem;
  background: url(../img/line-2.png) no-repeat left bottom;
  background-size: 100% auto;
}
.artist h2 {
  background: url(../img/line-dot.png) no-repeat center bottom;
  background-size: 100% auto;
  padding-bottom: 1.5rem;
  font-size: 3rem;
}
.artist figure {
  margin: 2rem 0;
}
.artist dt {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.artist p {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-top: 6rem;
  padding-bottom: 2rem;
}

/* -------------------------------------------

ticket

------------------------------------------- */
.ticket {
  padding: 5rem 2rem;
}

.ticket-price + p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.ticket-price {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ticket-price dl {
  line-height: 1;
}
.ticket-price dl dt {
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  padding: 1.5rem 0;
}
.ticket-price dl dd {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 0;
  font-weight: bold;
  text-align: center;
}
.ticket-price dl dd span:nth-child(2) {
  font-size: 2.4rem;
}
.ticket-price li:nth-child(1) dt {
  background: linear-gradient(to right, #cbb568, #e3d395, #cbb568);
}
.ticket-price li:nth-child(1) dd {
  border-left: solid 0.15rem #cbb568;
  border-right: solid 0.15rem #cbb568;
  border-bottom: solid 0.15rem #cbb568;
}
.ticket-price li:nth-child(2) dt {
  background: linear-gradient(to right, #f6f6f6, #bdbdbd, #cfd0d0, #bdbdbd, #f6f6f6);
}
.ticket-price li:nth-child(2) dd {
  border-left: solid 0.15rem #f6f6f6;
  border-right: solid 0.15rem #f6f6f6;
  border-bottom: solid 0.15rem #f6f6f6;
}
.ticket-price li:nth-child(3) dt {
  background: linear-gradient(to right, #73582e, #452715);
}
.ticket-price li:nth-child(3) dd {
  border-left: solid 0.15rem #73582e;
  border-right: solid 0.15rem #452715;
  border-bottom: 0.15rem solid;
  -o-border-image: linear-gradient(to right, #73582e, #452715) 1;
     border-image: linear-gradient(to right, #73582e, #452715) 1;
}

.ticket-seat {
  margin-bottom: 5rem;
}
.ticket-seat figure {
  padding: 0 2rem;
}

.ticket-seat h3,
.ticket-area h3 {
  color: #e40000;
  font-size: 2.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.ticket-seat h3 span,
.ticket-area h3 span {
  font-size: 2rem;
}

.ticket-cv {
  margin-bottom: 6rem;
}
.ticket-cv a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  line-height: 1;
  padding: 1.5rem 0;
}
.ticket-cv a > span {
  position: relative;
  z-index: 10;
  font-weight: 700;
}
.ticket-cv a > span:nth-child(1) {
  margin-bottom: 0.6rem;
}
.ticket-cv a > span:nth-child(2) {
  font-size: 2.6rem;
}
.ticket-cv a::before, .ticket-cv a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ticket-cv a::after {
  background: url(../img/ico-ticket.png) no-repeat center right 1rem;
  background-size: auto 80%;
}
.ticket-cv a::before {
  background: linear-gradient(to right, #caaa47, #f6d58b, #caaa47);
  z-index: -1;
  border-radius: 2rem;
}

/* -------------------------------------------

venue

------------------------------------------- */
.venue {
  padding: 6rem 2rem;
  background: url(../img/line-2.png) no-repeat left top, url(../img/line-2.png) no-repeat left bottom;
  background-size: 100% auto;
}
.venue ul {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.venue ul figure {
  margin-bottom: 2rem;
}
.venue ul li > dl > dt {
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.venue ul li > dl > dd > dl {
  margin-top: 2rem;
}
.venue ul li > dl > dd > dl > dd dl dd:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.venue ul li:nth-child(1) > dl > dt {
  color: #e40000;
}
.venue ul li:nth-child(1) figure {
  border: solid 0.15rem #e40000;
}
.venue ul li:nth-child(2) > dl > dt {
  color: #00c8b4;
}
.venue ul li:nth-child(2) figure {
  border: solid 0.15rem #00c8b4;
}

/* -------------------------------------------

announce

------------------------------------------- */
.announce {
  background: url(../img/line-2.png) no-repeat left bottom;
  background-size: 100% auto;
  padding-bottom: 7rem;
}

.announce p {
  width: calc(100% - 4rem);
  margin: 0 auto 3rem auto;
  border: 0.15rem solid;
  -o-border-image: linear-gradient(to right, #c98c00, #f6da3f, #c98c00) 1;
     border-image: linear-gradient(to right, #c98c00, #f6da3f, #c98c00) 1;
  line-height: 1.6;
  padding: 1.5rem;
}

.announce .more {
  width: calc(100% - 4rem);
  margin: 0 auto;
  color: #9d7a40;
  border: solid 0.15rem #9d7a40;
}

/* -------------------------------------------

news

------------------------------------------- */
.news {
  padding: 5rem 2rem;
  background: url(../img/line-2.png) no-repeat left bottom;
  background-size: 100% auto;
}

.news h2 {
  margin-bottom: 2rem;
}

.news .more-wrap {
  margin-top: 5rem;
}

.news-list li:not(:last-child) {
  border-bottom: solid 0.15rem #fff;
}

.news-list li a {
  display: flex;
  padding: 2.5rem 0;
  font-size: 1.4rem;
  pointer-events: none;
}
.news-list li a > span:nth-child(1) {
  width: 10rem;
}
.news-list li a > span:nth-child(2) {
  width: calc(100% - 10rem);
}

/* -------------------------------------------

access

------------------------------------------- */
.access {
  background: url(../img/access-bg.jpg) no-repeat center/cover;
  padding: 6rem 2rem;
}
.access ul {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.access h3 {
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.access address {
  font-size: 1.5rem;
}

.gmap {
  margin: 2.5rem 0;
}

.gmap iframe {
  width: 100%;
  height: 22rem;
}

/* -------------------------------------------

footer

------------------------------------------- */
footer {
  background: url(../img/line-2.png) no-repeat left top;
  background-size: 100% auto;
  background-color: #000;
  padding: 6rem 0 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .logo {
  width: 20rem;
  margin-bottom: 4rem;
}

footer nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
}

.sns li {
  width: 3rem;
}

small {
  font-size: 1rem;
  display: block;
  text-align: center;
}

/* -------------------------------------------

news low

------------------------------------------- */
.news-low {
  margin-top: 9rem;
  padding: 6rem 2rem;
}

@media screen and (max-width: 768px) {
  .news-low {
    margin-top: 0;
  }
}/*# sourceMappingURL=style.css.map */