.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stamp-rally-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}


.period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--cabaret);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 12px;
  letter-spacing: 1px;
}

.date-text {
  font-size: 20px;
  letter-spacing: 4px;
}

.dash-text {
  font-size: 16px;
  padding-left: 3px;
}

.caution-text {
  color: var(--cabaret);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: normal;
  text-align: center;
}

.step-rectangle {
  width: 100px;
  height: 30px;
  padding-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--cabaret);
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 14px;
  letter-spacing: 3px;
  line-height: normal;
}

.step-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cabaret);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 14px;
  letter-spacing: 6px;
  margin: 10px 0;
}

.step-underline {
  background: linear-gradient(rgba(255, 192, 203, 0.5), rgba(255, 192, 203, 0.5)) bottom;
  background-size: 100% 4px;
  background-repeat: no-repeat;
  /* ここの数値で高さ調整できる！ */
  background-position: 0 100%;
}

.slash-emphasis {
  width: 14px;
  height: 16px;
  /* margin: 0 5px; */
}

.slash-emphasis-right {
  /* 右は反転 */
  transform: scaleX(-1);
}

.goods-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.goods-name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  line-height: normal;
}

.goods-name {
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 16px;
  letter-spacing: 2px;
}

.goods-caption {
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 10px;
  letter-spacing: 2px;
}

.goods-comingsoon {
  width: 350px;
  height: 200px;
  padding-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #d9d9d9;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 20px;
  letter-spacing: 6.5px;
  line-height: normal;
}

.goods-spec-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 12px;
  letter-spacing: 0px;
  line-height: 16px;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cabaret);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  line-height: normal;
}

.price {
  font-size: 16px;
  letter-spacing: 5px;
}

.yen {
  font-size: 12px;
  margin-left: -10px;
}

.tax {
  font-size: 10px;
  letter-spacing: 2px;
}

.stamp-sheet-image {
  width: 350px;
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 20px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.stamp-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stamp-grid-item:last-child {
  /* 最後の要素を両方のカラムにまたがせる */
  grid-column: 1 / -1;
  /* その中で中央寄せ */
  justify-self: center;
}

.stamp-grid-member-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stamp-grid-member-image {
  width: 85px;
  height: 85px;
}

.stamp-grid-member-name {
  width: 160px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 12px;
  line-height: normal;
  margin-top: -15px;
  z-index: 1000;
}

.stamp-grid-stamp {
  width: 140px;
  height: 140px;
}

.stamp-grid-facility {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 16px;
  line-height: normal;
}

.stamp-grid-address {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 8px;
  line-height: normal;
}

.stamp-grid-member-name-chika {
  background-color: var(--chika);
}

.stamp-grid-member-name-riko {
  background-color: var(--riko);
}

.stamp-grid-member-name-kanan {
  background-color: var(--kanan);
}

.stamp-grid-member-name-dia {
  background-color: var(--dia);
}

.stamp-grid-member-name-you {
  background-color: var(--you);
}

.stamp-grid-member-name-yoshiko {
  background-color: var(--yoshiko);
}

.stamp-grid-member-name-hanamaru {
  background-color: var(--hanamaru);
}

.stamp-grid-member-name-mari {
  background-color: var(--mari);
}

.stamp-grid-member-name-ruby {
  background-color: var(--ruby);
}

.achieve-rectangle {
  width: 300px;
  height: 40px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--moonstone);
  color: var(--white);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: normal;
}

.achieve-rectangle-arrow {
  margin-top: -1px;
}

.step-rectangle.exchange {
  width: 200px;
}

.clearfile-image {
  width: 250px;
  margin: 10px 0;
}

.keyholder-image {
  width: 250px;
  margin: 15px 0;
}

.acrylstand-image {
  width: 350px;
  margin: 10px 0;
}

.sale-clearfile-image {
  width: 350px;
  margin: 15px 0;
}

.exchange-place {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: normal;
}

.period-text {
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 12px;
  letter-spacing: 0px;
  line-height: normal;
  text-align: center;
}

.period-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}