body, h1, h2, h3, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "pretendard", sans-serif;
  background-color: #000;
  color: #6b6b6b;
  line-height: 1.6;
}

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

a {
  display: inline-block;
  overflow: visible;
  padding: 0;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}

a,
a:link {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {}


.section {
  padding-top: 3%;
  max-width: 70%;
  margin: 0 auto;
}

#main img.title.main {
  width: 70%;
  height: auto;
  margin: auto;
  display: block;
}

.section-title {
  margin-top: 5%;
}

.section-title img.schedule {
  width: 60%;
  margin: 0 auto;
  display: block;
  padding-bottom: 5%;
}

 .section-title img.schedulem {display: none;}


.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1vw;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}




.schedule-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1% 0;
  flex-wrap: wrap;
  border-top: none;
  border-bottom: 1px solid #222;
  transition: border-color 0.3s ease;
}

.schedule-item:hover {
  border-bottom: 1px solid #fff;
}

.schedule-item .city {
  flex: 0 0 15%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.schedule-item .city img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  image-rendering: auto;
  display: block;
}

.schedule-item .city .citymo {display: none;}

.schedule-item .place {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5vw;
  margin: 1.3% 0 0 0;
}
.place .venue {
  font-size: 1.7vw;
  font-weight: 500;
}
.place .date {
  font-size: 1vw;
  margin-top: -2%;
  font-weight: 300;
}

.schedule-item .more {
  margin-right: 1vw;
}

.schedule-item .more,
.schedule-item .ticket {
  align-self: center;
}

.schedule-item .more a,
.schedule-item .ticket a {
  text-align: center;
}


img.tba {
    display: block;
    margin: 0 auto;
    padding: 8% 0 4% 0;
    width: 15vw;
}



.btn span,
.btn-buy span,
.coming-soon span,
.sold-out span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 13vw;
  height: 3.5vw;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-buy {
  position: relative;
  display: inline-block;
  border: 1px solid #8f2222;
  overflow: hidden;
}

.btn-buy span {
  color: #8f2222;
  z-index: 1;
}

.btn-buy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #8f2222;
  transition: left 0.4s ease;
  z-index: 0;
}

.btn-buy:hover::before {
  left: 0;
}

.btn-buy:hover span {
  color: #000;
}

.coming-soon {
  display: inline-block;
  border: 1px solid #6b6b6b;
  pointer-events: none;
  cursor: default;
}

.coming-soon span {
  color: #6b6b6b;
}

#sponsor {
  text-align: center;
  padding: 8% 0 6% 0;
}

#sponsor h3 {
  margin-bottom: 1%;
}

img.sponsor {
  width: 40%;
  margin: 0 auto;
}

#sponsor .mail {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 1.1vw;
}

#sponsor .mail:hover {
  text-decoration: underline;
}

#maintxt {
  text-align: center;
  font-size: 0.7vw;
  color: #9a9a9a;
  padding: 1% 0 5% 0;
}





@media (max-width: 969px) {
  .section {
    max-width: 90%;
    margin: 0 auto;
  }

  .section-title {
    margin-top: 8%;
  }

  #main img.title.main {
    width: 100% !important;
    margin-top: 5%;
  }


  .section-title img.schedule {display: none;}

  .section-title img.schedulem {
    display: block;
    width: 85vw;
    margin: 0 auto;
    padding-bottom: 5%;
  }

  .schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5% 0 10% 0;
    }

  .schedule-item .place,
  .schedule-item .city,
  .schedule-item .more,
  .schedule-item .ticket {
    flex: 1 0 100%;
    margin: 0 auto;
    text-align: center;
  }

    .schedule-item .placem {
      padding: 0 0 4% 0;
    }


  .schedule-item .city .citymo {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .schedule-item .city .citypc {display: none;}

  .place .venue {
    font-size: 4.5vw;
    font-weight: 500;
  }

  .place .date {
    font-size: 3vw;
    margin-top: -2%;
    font-weight: 300;
    margin-bottom: 10%;
  }

  .schedule-list2 .schedule-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5% 0 10% 0;
  }

  img.tba {
    display: block;
    margin: 0 auto;
    padding: 13% 0 8% 0;
    width: 45vw;
}



  .btn span,
  .btn-buy span,
  .coming-soon span,
  .sold-out span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5vw;
    width: 65vw;
    height: 12vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  #sponsor {
    padding: 12% 0 8% 0;
  }

  img.sponsor {
    width: 90%;
    margin: 0 auto;
  }

  #sponsor .mail {
    font-size: 3vw;
  }

  #maintxt {
    font-size: 1.8vw;
    padding: 5% 0;
  }
}

