
@charset "UTF-8";

:root {
  --color-ccc: #ccc;
  --color-e8447e: #e8447e;
  --font-jost: 'Jost', sans-serif;
}
.text-e8447e { color: var(--color-e8447e); }
.calendar-header {
  border: 1px solid var(--color-ccc);
}
.calendar-weekdays {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #e7eaea;
}
.calendar-h-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 7);
  height: 40px;
  padding: 4px;
  text-align: center;
  box-sizing: border-box;
  font-family: var(--font-jost);
  font-weight: 500;
}
.calendar-days {
  border-left: 1px solid var(--color-ccc);
  border-bottom: 1px solid var(--color-ccc);
  border-right: 1px solid var(--color-ccc);
}
.calendar-week {
  display: flex;
  justify-content: center;
}
.calendar-week:nth-of-type(n+2) {
  border-top: 1px solid var(--color-ccc);
}
.calendar-day {
  width: calc(100% / 7);
  height: 60px;
  padding: 4px;
  box-sizing: border-box;
}
.calendar-h-col:nth-of-type(n+2),
.calendar-day:nth-of-type(n+2) {
  border-left: 1px solid var(--color-ccc);
}
.calendar-number {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: .875rem;
  line-height: 1.25rem;
}
.price-tag {
  font-family: var(--font-jost);
  font-size: 10px;
  line-height: 1rem;
  letter-spacing: normal;
}
.current-month {
  color: #000;
}
.prev-month,
.next-month {
  color: #888;
  background: #f7f8f8;
}
.saturday {
  color: #49b4e2;
}
.sunday,
.holiday {
  color: #e8457e;
}
.store-holiday {
  background: #f7f8f8;
}
.text-holiday {
  text-align: center;
  font-size: 12px;
  color: #949494;
}
.calendar-month {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 4px;
  background: #cfcece;
}
.month-title {
  color: #3e3e3e;
  font-family: var(--font-jost);
  font-weight: 500;
}
.price-rank-1 { background: #B2A8D2; }
.price-rank-2 { background: #D7D3E7; }
.price-rank-5 { background: #DCE9D4; }
.price-rank-3 { background: #F1CCA2; }
.price-rank-4 { background: #EFCCCD; }
.price-rank-6 { background: #D2E2F1; }
.price-rank-7 { background: #FDF2D0; }
@media screen and (max-width: 767px) {
  .sp\:ml-screen { margin-left: calc(50% - 50vw); }
}
@media screen and (min-width: 768px) {
  .price-tag {
    font-size: 12px;
  }
}

