@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

html,
body,
a,
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}


@font-face {
  font-family: 'glitch';
  src: url(../font/glitch.ttf);

}



body {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #fff;
  text-align: center;
  background: #000;
  overflow-x: hidden;
  -webkit-touch-callout: none;                
}

body:after {
  content: "";
  display: block;
  width: 100%;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/back.svg);
  background-size: 280px auto;
  opacity: 0.5;
  animation: back-anime 8s linear infinite;
}

@keyframes back-anime {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 280px -245px;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  pointer-events: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style-type: none;
}

.youtube {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.youtube iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
}

.sp {
  display: none;
}

.nav-btn {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  box-shadow: inset 0 0 20px rgba(225, 255, 255, .8);
  clip-path: polygon(10px 0%, 100% 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 100%, 0% 10px);
}

.nav-btn p {
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(0 0 2px #00e0e3) drop-shadow(0 0 4px #00e0e3);
}

.nav-btn span {
  width: 40px;
  height: 2px;
  position: absolute;
  left: 10px;
  background: #fff;
  transition-duration: 0.2s;
}

.nav-btn span:nth-of-type(1) {
  top: 20px;
}

.nav-btn.close span:nth-of-type(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.nav-btn span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}

.nav-btn.close span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(-20%);
}

.nav-btn span:nth-of-type(3) {
  bottom: 20px;
}

.nav-btn.close span:nth-of-type(3) {
  bottom: calc(50% - 1px);
  transform: translateY(0) rotate(-45deg);
}

nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: 'glitch';
  font-size: 32px;
  text-shadow: 0 0 1px #00e0e3, 0 0 3px #00e0e3, 0 0 6px #00e0e3, 0 0 10px #00e0e3, 0 0 20px #00e0e3, 0 0 30px #00e0e3;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  animation: flash 0.04s ease-in-out infinite alternate-reverse;
  transform: translateY(-101%);
  transition-duration: 0.6s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

nav.open {
  opacity: 1;
  transform: translateY(0%);
}

nav::-webkit-scrollbar {
  display: none;
}

.nav-inner {
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

nav li {
  margin: 28px 0;
}

nav a.hover {}

#top {
  display: flex;
  width: 100%;
  height: 100dvh;
    min-height: 600px;
  position: relative;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

#top h1 {
 width: 100%;
  height: 100%;
    padding:180px 40px;
  opacity: 0;
}
#top h1 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#top.fadein h1 {
  animation: h1-anime 1s forwards ease-out;
}

@keyframes h1-anime {
  0% {
    opacity: 0;
    transform: scale(1.4);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
}

#top .copyright {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
}

#top .scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
}

#top .scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 0 2px #00e0e3) drop-shadow(0 0 4px #00e0e3) drop-shadow(0 0 10px #00e0e3);
  margin: 0 auto;
}

#top .scroll-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: scroll-anime 1s ease-in infinite
}

@keyframes scroll-anime {
  from {
    transform: translateY(-100%)
  }

  to {
    transform: translateY(100%)
  }
}


section:not(#top) {
  padding-top: 160px;
}

h2 {
  width: 100%;
  position: relative;
  font-family: 'glitch';
  font-size: 60px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 1px #00e0e3, 0 0 3px #00e0e3, 0 0 6px #00e0e3, 0 0 10px #00e0e3, 0 0 20px #00e0e3, 0 0 40px #00e0e3;
  animation: flash 0.04s ease-in-out infinite alternate-reverse;
  margin-bottom: 40px;
}

@keyframes flash {
  from {
    filter: brightness(0.95)
  }

  to {
    filter: brightness(1.05)
  }
}

#event .event-copy {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}

#event .event-info {
  font-size: 36px;
}

#event .event-info span {
  display: block;
}

#event .event-info span:nth-child(1) {
  font-family: "Noto Serif JP", serif;
  font-size: 180%;
  font-weight: 700;
  margin-bottom: 0.4em;
}

#event .event-info span:nth-child(2) {
  font-size: 240%;
  font-weight: 300;
}

#event .event-info span:nth-child(3) {
  font-size: 80%;
}

#event .event-info span:nth-child(4) {
  font-size: 60%;
  margin-top: 0.8em;
}

#event .event-info span:nth-child(5) {
  font-size: 42%;
  margin-top: 0.4em;
}

#event .event-info span small {
  font-size: 60%;
}


#event .achive{
    width: 90%;
    max-width: 720px;
    margin: 80px auto 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3));
    clip-path: polygon(30px 0%, 100% 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 100%, 0% 30px);
    padding: 40px 40px;
}

.archive-intro{
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
}
.archive-price{
    margin-bottom: 16px;
}
.archive-price strong{
    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.archive-price small{
    font-size: 60%;
}

.archive-price span{
    font-size: 12px;
}

.archive-term{
    font-size: 24px;
    border: solid 1px #666;
    margin-bottom: 40px;
    padding: 20px 0;
}
.archive-term span{
    font-size: 70%;
}
.archive-term small{
    font-size: 12px;
}
 .enquete{
       width: 90%;
    max-width: 720px;
    margin: 60px auto 60px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3));
    clip-path: polygon(30px 0%, 100% 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 100%, 0% 30px);
    padding: 40px 40px;

    }
.enquete a{
    margin: 28px auto 28px;
}
.enquete p{
   
    line-height: 1.6;
}
#lineup p {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 42px;
}

#lineup p small{
    font-size: 60%;
}

.beatnation{
     width: 90%;
    max-width: 720px;
    margin: 0 auto;
}
.beatnation span{
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.beatnation span:before{
    content: "";
    display: block;
    position: absolute;
    top:0;
    left:0;
    width:10px;
    height:100%;
   border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
}
.beatnation span:after{
    content: "";
    display: block;
    position: absolute;
    top:0;
    right:0;
    width:10px;
    height:100%;
   border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
}
#lineup p:last-child {
  margin-bottom: 0;
}
#lineup p.dancer{
    padding-top: 80px;
    position: relative;
      width: 90%;
    max-width: 720px;
    margin: 80px auto 0;
}

#lineup p.dancer:after{
    content: "";
    display: block;
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
   background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .6), rgba(255, 255, 255, .6), rgba(255, 255, 255, 0));
}
#lineup p img {
  
  margin: 0 auto 16px;
}

#lineup h3{
    width: 72%;
    max-width: 480px;
    margin: 0 auto;
    font-family: "Noto Serif JP", serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #ffe100;
}
#lineup .timetable{
     width: 90%;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border: solid 1px;
    font-weight: bold;

}
#lineup .timetable span{
    display: block;
    border-bottom: solid 1px #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#lineup .timetable span:last-child{
    border-bottom: none;
}
#lineup .timetable span:nth-child(1){
     font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 18px !important;
    background: #fff !important;
    color: #000;
    height: 48px !important;
}
#lineup .timetable .time span:nth-child(1){
     border-right: solid 1px rgba(0,0,0,1) !important;
}

#lineup .timetable .time{
    width: 120px;
    border-bottom: solid 1px rgba(255,255,255,.4);
    border-right: solid 1px #fff;
    background: #000;


}
#lineup .timetable .time span{
    height: 240px;
    
}

#lineup .timetable .artist span:nth-child(odd){
   background: rgba(255,255,255,.1);
}
#lineup .timetable .artist{
    width: calc(100% - 120px);
    background: rgba(0,0,0,.2);
}
#lineup .timetable .artist span{
   
}
#lineup .timetable .artist span.length13{
    height: 260px;
    color: #ffe100;
    background: rgba(0, 60, 140, .5);
}
#lineup .timetable .artist span.length4{
    height: 80px;
}
#lineup .timetable .artist span.length3{
    height: 60px;
}
#lineup .timetable .artist span.length2{
    height: 40px;
}
#ticket .ticekt-notice {
  margin-bottom: 40px;
}

    


#ticket h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3));
  margin-bottom: 40px;
  padding: 16px 0;
  clip-path: polygon(30px 0%, 100% 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 100%, 0% 30px);
}
#ticket h3 small{
    display: block;
    font-size: 50%;
    margin-top: 0.4em;
}
#ticket .ticket-contents {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 40px;
}

#ticket .ticket-contents img {
  width: 200px;
  margin: 0 auto 20px;
}

#ticket .ticket-contents small {
  font-size: 14px;
}

#ticket ul {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}

#ticket li:not(:last-child) {
  margin-bottom: 100px;
}

#ticket .term {
  font-size: 24px;
  border: solid 1px #666;
  margin-bottom: 40px;
  padding: 20px 0;
}

#ticket .term span {
  font-size: 70%;
}

#ticket .term small {
  font-size: 14px;
}

#ticket .price {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

#ticket .price small {
  font-size: 60%;
}

.common-btn {
  display: flex;
  width: 280px;
  height: 48px;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 1px #00e0e3, 0 0 3px #00e0e3, 0 0 6px #00e0e3, 0 0 10px #00e0e3, 0 0 20px #00e0e3, 0 0 40px #00e0e3;
  transform: skewX(-12deg);
  transition-duration: 0.2s;
  margin: 0 auto;
  box-shadow: 0 0 1px #00e0e3, 0 0 3px #00e0e3, 0 0 6px #00e0e3, 0 0 10px #00e0e3, 0 0 20px #00e0e3, 0 0 40px #00e0e3;
    position: relative;
}
#ticket .soldout{
    position: relative;
}
#ticket .soldout:after{
    content: "SOLD OUT!";
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #f00;
    transform: translate(-50%,-50%) rotate(-10deg);
     
}
.common-btn.hover {
  color: #00e0e3;
  text-shadow: 0 0 0px #fff;
  background: rgba(255, 255, 255, 1);
}

.common-btn span {
  width: 100%;
  height: 100%;
  clip-path: polygon(20% 0%, 100% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 100%, 0% 20%);
}



#access h3 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
}

#access .access-info {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

#access .map {
  height: 540px;
  margin-bottom: 40px;
}

#access .map iframe {
  width: 100%;
  height: 100%;
}

#access .guudeline {
  margin-top: 100px;
}

#access .guudeline h4 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

#access .guudeline p {
  width: 90%;
  max-width: 720px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
  margin: 0 auto;
}

footer {
  font-size: 12px;
  padding: 100px 0 60px;
}



@media screen and (max-width: 896px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  body:after {
    background-size: 140px auto;

  }

  .nav-btn {
    width: 48px;
    height: 48px;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .nav-btn span {
    width: 36px;
    left: 6px;
  }

  .nav-btn span:nth-of-type(1) {
    top: 16px;
  }

  .nav-btn span:nth-of-type(3) {
    bottom: 16px;
  }

  nav {

    font-size: 28px;
  }

  nav li {
    margin: 24px 0;
  }

  nav a.hover {}

  #top .copyright {
    font-size: 8px;
  }

  #top .scroll-line {
    height: 60px;
  }



  section:not(#top) {
    padding-top: 100px;
  }

  h2 {
    font-size: 40px;
    margin-bottom: 28px;
  }


  #event .event-copy {
    font-size: 20px;
    margin-bottom: 28px;
  }

  #event .event-info {
    font-size: 24px;
  }

  #event .event-info span:nth-child(2) {
    font-size: 200%;
  }

  #event .event-info span:nth-child(3) {
    font-size: 90%;
  }

  #event .event-info span:nth-child(4) {
    font-size: 70%;
  }

  #event .event-info span:nth-child(5) {
    font-size: 50%;
  }

  #event .event-info span small {
    font-size: 60%;
  }
    
    #event .achive{
   
    margin: 60px auto 0;
    
    padding: 40px 16px;
}

.archive-intro{
    font-size: 16px;
    margin-bottom: 28px;
}
.archive-price{
    margin-bottom: 16px;
}
.archive-price strong{
    font-size: 22px;
    margin-bottom: 40px;
}

.archive-price small{
    font-size: 60%;
}

.archive-price span{
    font-size: 12px;
}

.archive-term{
    font-size: 18px;
    border: solid 1px #666;
    margin-bottom: 40px;
    padding: 16px 0;
}
.archive-term span{
    font-size: 70%;
}
.archive-term small{
    font-size: 10px;
    display: block;
    line-height: 1.4;
    margin-top: 1em;
}
    
   .enquete{
    margin: 40px auto 40px;
    padding: 40px 16px;

    }
.enquete a{
    margin: 28px auto 28px;
}
.enquete p{
   font-size: 14px;
}
    .enquete small{
        font-size: 11px;
    }
  #lineup p {
    font-size: 20px;
    margin-bottom: 28px;
  }
    #lineup h3{
        font-size: 32px;
    }
    #lineup p.dancer{
        margin-top: 40px;
        padding-top: 40px;
    }
    #lineup .timetable{
        font-size: 14px;
    }
    #lineup .timetable span:first-child{
        font-size: 16px !important;
    }
#lineup .timetable .time{
    width: 80px;
    
}
#lineup .timetable .artist{
    width: calc(100% - 80px);
   
}
    
    
  #ticket .ticekt-notice {
    font-size: 12px;
    margin-bottom: 28px;
  }

  #ticket h3 {
    font-size: 20px;
    margin-bottom: 28px;
    padding: 14px 0;
    clip-path: polygon(20px 0%, 100% 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 100%, 0% 20px);
  }

  #ticket .ticket-contents {
    font-size: 14px;
    margin-bottom: 28px;
  }

  #ticket .ticket-contents img {
    width: 160px;
    margin: 0 auto 20px;
  }

  #ticket .ticket-contents small {
    font-size: 10px;
  }

  #ticket li:not(:last-child) {
    margin-bottom: 60px;
  }

  #ticket .term {
    font-size: 18px;
    margin-bottom: 28px;
    padding: 16px 0;
    line-height: 1.4;
  }

  #ticket .term span {
    font-size: 70%;
  }

  #ticket .term small {
    font-size: 10px;
    margin-top: 8px;
    display: block;
  }

  #ticket .price {
    font-size: 22px;
    margin-bottom: 28px;
  }

  #ticket .price small {
    font-size: 60%;
  }

  .common-btn {
    width: 240px;
    height: 40px;
    font-size: 14px;
  }
#ticket .soldout:after{
    font-size: 24px;
     
}
  #goods p {
    font-size: 18px;
  }

  #access h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 28px;
  }

  #access .access-info {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  #access .access-info small {
    display: block;
    margin-top: 12px;
    line-height: 1.4;

  }

  #access .map {
    height: 280px;
    margin-bottom: 28px;
  }

  #access .map iframe {
    width: 100%;
    height: 100%;
  }

  #access .guudeline {
    margin-top: 60px;
  }

  #access .guudeline h4 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  #access .guudeline p {
    font-size: 12px;
  }

  footer {
    font-size: 10px;
    padding: 60px 0 40px;
  }

}


section#goods-page{
    padding-top: 80px;
}
h2 img{
    width: 50%;
    max-width: 400px;
    margin: 0 auto 28px;
}
.same-day{
    line-height: 1.6;
}
.goods-list{
    max-width: 720px;
    width: 90%;
    margin: 60px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap:40px;
    margin-bottom: 80px;
    justify-content: space-between;
}

.goods-list li{
    width: calc(50% - 20px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3));
    clip-path: polygon(20px 0%, 100% 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 100%, 0% 20px);
    padding: 40px 20px;
}
.goods-list figure{
    aspect-ratio: 1 / 1;
    background: #666;
    margin-bottom: 20px;
}
.goods-list h3{
    margin-bottom: 8px;
}
.goods-list h3 small{
    display: block;
    margin-top: 0.2em;
}
.goods-list p.price{
    font-family: "Noto Serif JP", serif;
    
    font-weight: 700;
    font-size: 18px;
}
.goods-list p.price small{
    font-size: 60%;
}
.goods-list aside{
    font-size: 10px;
    line-height: 1.4;
    margin-top: 12px;
}
.goods-notice{
     max-width: 720px;
    width: 90%;
    margin: 0 auto 60px;
    text-align: left;
    line-height: 1.6;
}

.goods-notice h4{
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 24px;
}


@media screen and (max-width: 896px){
    
    .goods-list{
    margin: 60px auto 0;
    gap:16px;
    margin-bottom: 60px;
}

    .same-day{
        font-size: 12px;
    }
.goods-list li{
    width: calc(50% - 8px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3));
    clip-path: polygon(12px 0%, 100% 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 100%, 0% 12px);
    padding: 20px 8px;
}
.goods-list figure{
    
   
    margin-bottom: 20px;
}
.goods-list h3{
    margin-bottom: 8px;
    font-size: 12px;
}
.goods-list h3 small{
    display: block;
    margin-top: 0.2em;
}
.goods-list p.price{
    font-family: "Noto Serif JP", serif;
    
    font-weight: 700;
    font-size: 14px;
}
.goods-list p.price small{
    font-size: 60%;
}
.goods-list aside{
    font-size: 8px;
}
.goods-notice{
   font-size: 12px;
}

.goods-notice h4{

    font-size: 16px;
}
    
    
}

.setlist{
     max-width: 720px;
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    
}
.setlist{
    border: solid 1px #fff;
}
.setlist li{
    display: flex;
    border-bottom: solid 1px #fff;
}
.setlist li:nth-child(odd){
   background: rgba(255,255,255,.1);
}

.setlist li.popn{
    color: #ffe100;
    background: rgba(0, 60, 140, .5);
}
.setlist li.popn p{
    width: 100%;
}
.setlist li:first-child{
    background: #fff;
    color: #000;
    font-weight: 700;
}
.setlist li p{
    padding: 20px 12px;
    border-right: solid 1px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    
}

.setlist li:first-child p{
    border-right: solid 1px #000;
}
.setlist li p:last-child{
    border-right: none !important;
}
.number{
    width: 10%;
    font-size: 12px;
}

.song{
    width: 32%
}

.artist{
    width: 32%;
}

.machine{
    width: 26%;
    font-size: 12px;
}
.machine span:not(:last-child){
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: dotted 1px rgba(255,255,255,.3);
    display: block;
    width: 100%;
}
.dj{
    width: 90%;
}


@media screen and (max-width: 896px){
    .setlist li p{
    padding: 16px 8px;
   
    
}

    .number{
    font-size: 9px;
}
    .setlist{
        font-size: 10px;
    }
   .machine{
    width: 26%;
    font-size: 8px;
       word-break: break-all;
} 
}