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

body {
  font-family: "pretendard", sans-serif;
  background-color: #ededed;
  color: #313131;
  line-height: 1.6;
}

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

a {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}



/* 공통 섹션 */

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

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

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

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

/* 스케줄 리스트 */

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

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

.schedule-item:hover,
.schedule-item2:hover {
  border-bottom: 1px solid #8f2222;
}

/* 도시 */
.schedule-item .city {
  flex: 0 0 19%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.schedule-item2 .city {
  flex: 0 0 17%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.schedule-item .city img,
.schedule-item2 .city img {
  height: 1.5vw;
  display: block;
}

/* 장소 */
.schedule-item .place {
  flex: 0 0 59%;
  display: flex;
  flex-direction: column;
  gap: 0.4vw;
}

.schedule-item2 .place {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 0.4vw;
}

.place .venue {
  font-size: 1.5vw;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.6vw;
}

.place .date {
  font-size: 1.1vw;
  font-weight: 400;
  color: #777;
  line-height: 1vw;
}

/* more 버튼 */
.schedule-item2 .more {
  flex: 0 0 13%;
  color: #999;
  font-size: 0.9vw;
  text-align: center;
}

.schedule-item2 .more:hover {
  text-decoration: underline;
  color: #444;
}

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

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

/* 버튼 */
.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;
  width: 13vw;
  height: 3.5vw;
  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;
}

.btn-buy:hover::before { left: 0; }
.btn-buy:hover span { 
  color: #fff; 
}

.btn-buy:hover,
.btn-buy:hover a {
  text-decoration: none;
}

.coming-soon {
  border: 1px solid #6b6b6b;
  pointer-events: none;
}

.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;
  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: 100%;
  }

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

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

  .schedule-item,
  .schedule-item2 {
    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,
  .schedule-item2 .place,
  .schedule-item2 .city,
  .schedule-item2 .ticket {
    flex: 1 0 100%;
    margin: 0 auto;
    align-items: center;
  }

  .schedule-item .place,
  .schedule-item2 .place{
    margin: 2% 0 6%;
    gap: 1.5vw;
  }

  .schedule-item2 .more {
    font-size: 3vw;
    flex: 1 0 100%;
    padding: 0 0 6%;
  }

  .schedule-item .city,
  .schedule-item2 .city {
    display: block;
    margin: 0 auto;
  }

  .schedule-item .city img,
  .schedule-item2 .city img {
    height: 5vw;
    margin: 2vw 0;
  }


  .place .venue {
    font-size: 4.5vw;
    line-height: 4.5vw;
  }

  .place .date {
    font-size: 3vw;
    line-height: 3vw;
  }

  img.tba {
    padding: 13% 0 8% 0;
    width: 42vw;
  }

  .btn span,
  .btn-buy span,
  .coming-soon span,
  .sold-out span {
    font-size: 3.5vw;
    width: 65vw;
    height: 12vw;
    letter-spacing: 0.05em;
  }

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

  img.sponsor {
    width: 90%;
  }

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

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

