/* News Ticker */
.news-ticker {
  margin: auto;
  padding: 8px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  column-gap: 8px;
  width: 100%;
  max-width: var(--max-width);
  overflow: hidden;
}

.news-ticker__date-box {
  width: 50px;
  height: 52px;
  display: flex;
  row-gap: 4px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  background-image: url(../images/common/bg-calendar.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.news-ticker__date {
  color: #be907c;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.news-ticker__day {
  display: flex;
  align-items: center;
  line-height: 1;
}

.news-ticker__day > .eng {
  color: #be907c;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.news-ticker__day > .jpn {
  color: #be907c;
  font-size: 8px;
  font-weight: 400;
}

.news-ticker__posts-box {
  padding: 8px;
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 52px;
  min-width: 0;
  background-color: #dfc6be;
  border-radius: 8px;
  overflow: hidden;
}

.news-ticker__label {
  margin-right: auto;
  color: #f7f7f7;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  text-align: left;
  line-height: 100%;
  letter-spacing: 1.28px;
}

.news-ticker__track {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.news-ticker__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
}

.news-ticker__item {
  flex-shrink: 0;
  padding: 0 24px;
  line-height: 100%;
}

.news-ticker__link {
  color: #4f2422;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  text-decoration: none;
  letter-spacing: 0.65px;
}

.news-ticker__link:hover {
  opacity: 0.7;
  color: #4f2422;
}

/* Header Ticker (sticky above header) */
.header-ticker {
  position: sticky;
  top: 0;
  z-index: 11;
  display: flex;
  align-items: baseline;
  column-gap: 8px;
  width: 100%;
  height: 32px;
  padding: 0 12px;
  background-color: #dfc6be;
  overflow: hidden;
}

.header-ticker__date {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  column-gap: 4px;
  color: #4f2422;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: 0.04em;
}

.header-ticker__day {
  font-weight: 400;
  font-size: 10px;
}

.header-ticker__track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.header-ticker__list {
  display: flex;
  align-items: baseline;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  will-change: transform;
}

.header-ticker__item {
  flex-shrink: 0;
  padding: 0 24px;
}

.header-ticker__link {
  color: #4f2422;
  font-weight: 400;
  font-size: 12px;
  line-height: 32px;
  text-decoration: none;
  letter-spacing: 0.65px;
}

.header-ticker__link:hover {
  opacity: 0.7;
  color: #4f2422;
}
