@charset "UTF-8";

/* countdown */
.pg-countdown {
  display: flex;
  width: 100%;
  height: 110px;
  margin: -4px 0 28px;
  border-radius: 8px;
  overflow: hidden;
}

.pg-countdown__banner {
  flex: 1 1 auto;
  min-width: 0;
  background: #000;
}

.pg-countdown__banner a {
  display: block;
  width: 100%;
  height: 100%;
}

.pg-countdown__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-countdown__timer {
  width: 195px;
  background: #ebc105;
  color: #23203a;
  border-left: 2px solid #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.pg-countdown__label {
  margin-top: 6px;
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .02em;
}

.pg-countdown__days {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.pg-countdown__num {
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;

  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: .92;
}

.pg-countdown__unit {
  margin-left: 4px;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
}



.tight-comma {
  margin-left: -0.18em;
}



@media (max-width: 900px) {

  .pg-countdown {
    height: auto;
    flex-direction: column;
    border-radius: 10px;
    margin-bottom: 22px;
  }

  .pg-countdown__banner {
    height: auto;
  }

  .pg-countdown__banner img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .pg-countdown__timer {
    width: 100%;
    min-height: 92px;
    border-left: 0;
    border-top: 2px solid #fff;
  }

  .pg-countdown__label {
    font-size: 16px;
  }

  .pg-countdown__num {
    font-size: 58px;
  }

  .pg-countdown__unit {
    font-size: 24px;
    margin-bottom: 5px;
  }
}