.section-day .container {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .section-day .container {
    padding: 25px 0;
  }
}
.section-day .container .section-day__toggle {
  max-width: 350px;
  width: 100%;
  display: flex;
  background-color: #606060;
  color: #fff;
  margin: auto;
  border-radius: 10px;
  padding: 0px;
  height: 65px;
}
	
@media only screen and (max-width: 1199px) {
  .section-day .container .section-day__toggle {
    max-width: 200px;
    height: auto;
  }
}
.section-day .container .section-day__toggle .section-day__day {
  font-size: 32px;
  font-weight: 400;
  width: 50%;
  text-align: center;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .section-day .container .section-day__toggle .section-day__day {
    font-size: 24px;
  }
}
.section-day .container .section-day__toggle .section-day__day:hover {
  padding: 2px 5px;
  color: #fff;
  border-radius: 10px;
  opacity: 0.9;
  animation: wave 1s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.section-day .container .section-day__toggle .section-day__day--active {
  background-color: #EB4626;
  box-shadow: 5px 3px 2px 1px #303030;
  border-radius: 10px;
  opacity: 1;
  animation: wave 1s ease-in-out infinite;
}

	.section-day .container .section-day__toggle .section-day__day--active.section-day__day:last-child {
		background-color: #E131A1;
	}

.section-day .container .section-day__caption {
  color: #000;
  text-align: center;
  margin: 20px auto;
  font-size: 28px;
}
.section-day .container .section-day__box {
/*  background-color: #fff;*/
  border-radius: 15px;
  max-width: 950px;
  padding: 50px 10px;
  margin: auto;
  font-size: 40px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .section-day .container .section-day__box {
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .section-day .container .section-day__box {
    max-width: 100%;
    margin: 0 20px;
    padding: 0px 10px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 399px) {
  .section-day .container .section-day__box {
    max-width: 100%;
    margin: 0 20px;
  }
}
.section-day .container .section-day__box .section-day__row {
  max-width: calc(100% - 10px);
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .section-day .container .section-day__box .section-day__row {
    display: block;
  }
}
.section-day .container .section-day__box .section-day__row .section-day__list {
  width: calc(33% - 20px);
  margin: 25px 30px;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .section-day .container .section-day__box .section-day__row .section-day__list {
    margin: 25px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section-day .container .section-day__box .section-day__row .section-day__list {
    margin: 50px 0;
    width: 100%;
    margin: 25px 10px;
    height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .section-day .container .section-day__box .section-day__row .section-day__list {
    height: 100%;
    margin: 10px 0 30px;
  }
}
.section-day .container .section-day__box .section-day__row .section-day__list div {
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .section-day .container .section-day__box .section-day__row .section-day__list div {
    height: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .section-day .container .section-day__box .section-day__row .section-day__list div {
    height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .section-day .container .section-day__box .section-day__row .section-day__list div {
    height: 100%;
  }
}
.section-day .container .section-day__box .section-day__row .section-day__list div img {
  width: 100%;
}
.section-day .container .section-day__box .section-day__row .section-day__list p {
  margin: 10px auto;
  font-size: 36px;
}
@media only screen and (max-width: 1199px) {
  .section-day .container .section-day__box .section-day__row .section-day__list p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .section-day .container .section-day__box .section-day__row .section-day__list p {
    font-size: 18px;
  }
}

.section-ready {
  background-image: url(../images/section-ready-bg.png);
  background-size: 100% 500px;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  color: #fff;
  margin: 100px 0;
  height: 600px;
}
@media only screen and (max-width: 991px) {
  .section-ready {
    background-size: cover;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-ready {
    margin: 50px 0;
  }
}
.section-ready .container {
  min-height: 100px;
  padding: 100px 0;
  text-align: center;
}
.section-ready .container h2 {
  font-size: 64px;
  font-weight: 400;
  line-height: normal;
  margin: 30px;
  padding: 64px 0 0;
}
@media only screen and (max-width: 1199px) {
  .section-ready .container h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .section-ready .container h2 {
    font-size: 40px;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-ready .container h2 {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .section-ready .container h2 {
    font-size: 20px;
  }
}
.section-ready .container .btn {
  padding: 15px 0;
  margin: auto;
  width: 200px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  display: block;
  text-align: center;
  font-size: 42px;
}
@media only screen and (max-width: 767px) {
  .section-ready .container .btn {
    font-size: 24px;
    width: 120px;
    padding: 10px 0;
  }
}
@media (max-width: 320px) {
  .section-ready .container .btn {
    font-size: 16px;
    width: 80px;
  }
}

.section-day__ticket {
	display: table;
    width: 100%;
    height: 550px;
    color: #fff;
    background: url(/images/lineup/background.png) no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 180px 0px 0px;
}

	.section-day__ticket h1 {
		font-size: 58px;
		margin-bottom: 40px;
	}

  .section-day__ticket .btn__get-ticket {
    background: #c027a6;
    color: #fff;
    font-family: 'Lato';
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    padding: 10px 115px;
    text-decoration: none;
    border-radius: 15px;
    display: table;
    margin: 20px auto 0px;
  }

  @media only screen and (max-width: 1199px) {
    .section-day__ticket {
      margin-bottom: 40px;
      height: 350px;
    }

    .section-day__ticket h1 {
      font-size: 38px;
      margin-bottom: 40px;
    }

    .section-day__ticket .btn__get-ticket {
      font-size: 24px;
      padding: 15px 30px;
    }
  }

  @media only screen and (max-width: 767px) {
    .section-day__ticket h1 {
      font-size: 28px;
      margin-bottom: 40px;
      max-width: 80%;
      margin: 0px auto;
    }
  }

  @media only screen and (max-width: 475px) {
    .section-day__ticket .btn__get-ticket {
      font-size: 16px;
    }
  }