:root {
  color-scheme: light;
  --font-color: #000;
  --accent-color: #6690a9;
  --fanclub-red: #f53434;

  --header-height: 60px;
  --max-content-width: 1200px;
  --content-gutter: 16px;

  --swiper-theme-color: #000 !important;
}

:where(:focus-visible) {
  outline: none;
}

a.underline {
  position: relative;
  color: #000;
  text-decoration: none;
}

a.underline:hover {
  color: #000;
}

a.underline:hover::before {
  transform: scaleX(1);
}

a.underline::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.1s ease;
}

p.two-lines {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-width {
  max-width: var(--max-content-width);
  padding: 60px var(--content-gutter);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.content-width.no-padding {
  padding: 0;
}

.grid-pc4-sp1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.grid-pc4-sp2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.cards .card {
  position: relative;
}

.card .card-link {
  position: absolute;
  inset: 0;
}

.card .card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card .post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 4px 0;
  margin-bottom: 4px;
}

.text-white {
  color: #fff;
}
