body {
  margin: 0;
  background-color: #f6f6f6;
  /* background: url('./bg-pc.webp') no-repeat;
  background-size: cover;
  background-attachment: fixed; */
}
img {
  max-width: 100%;
  max-height: 145px;
}
.flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.flex * {
  width: auto !important;
}
.flex.gap-0 {
  gap: 0px !important;
}
.bg-overlay {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./bg-pc-overlay.webp') no-repeat;
  background-size: cover;
  display: none;
}
.container {
  background-color: #fff;
  max-width: 500px;
  min-height: calc(100vh - 50px);
  min-height: calc(100dvh - 50px);
  padding-bottom: 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.container .footer {
  background: linear-gradient(to right,#ffaa6b,#ff6076);
  width: 100%;
  height: 50px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 0;
}
.container .footer a {
  color: #fff;
  font-weight: bold;
}
.container .footer .flex {
  width: auto !important;
}
.container .heading {
  display: flex;
}
.container a {
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  outline: none;
}
.container a img {
  flex-grow: 1;
}
.container a .btn {
  width: 100%;
  color: #fd4c5d;
  padding: 4px 8px;
  font-size: 10px;
  border: 1px solid #fd4c5d;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.container .cols-2 {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.container .cols-2 a {
  gap: 6px;
}
.container .cols-5 {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.container .cols-5 a {
  font-size: 12px;
  gap: 2px;
  overflow: hidden;
}
.container .cols-5 a img {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}
.container .cols-5 a span {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}