@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Sawarabi+Mincho&family=Zen+Old+Mincho:wght@400;900&display=swap");

html {
  font-size: 62.5%;
}

body {
  margin: 0;
}

#limited {
  background-color: #fff7df;
}

#limited * {
  box-sizing: border-box;
}

#limited img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

#limited p {
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 1rem 0;
}

#limited h2 {
  margin-bottom: 2rem;
}

#limited h3 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-color: #3c3c3c;
  color: #fff;
  margin: 4rem 2rem 2rem;
  padding: 1rem 1.5rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#limited h4 {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #3c3c3c;
  margin: 0.5rem auto;
  padding: 0 1rem;
  width: fit-content;
  position: relative;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#limited h4::before {
  content: "";
  display: block;
  width: 1px;
  height: 90%;
  position: absolute;
  top: 0.5rem;
  left: -0.5rem;
  background-color: #3c3c3c;
  transform: rotate(-25deg);
}

#limited h4::after {
  content: "";
  display: block;
  width: 1px;
  height: 90%;
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  background-color: #3c3c3c;
  transform: rotate(25deg);
}

#limited .item {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1rem;
  justify-content: space-around;
  margin: 0 2rem;
}

@media screen and (max-width: 768px) {
  #limited .item {
    gap: 3rem 2rem;
  }
}

#limited .item > a {
  display: block;
  width: 46%;
  color: #3c3c3c;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  #limited .item > a {
    width: 80%;
  }
}

#limited .item > a span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  background-color: #a81b4b;
  color: #fff;
  text-align: center;
  padding: 0.8rem 4rem 0.8rem 2rem;
  border-radius: 5px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #limited .item > a span {
    font-size: 1.4rem;
  }
}

#limited .item > a span::after {
  content: "▼";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1rem;
  right: 4rem;
  transform: rotate(-90deg);
}

#limited .review {
  background-color: #e1f5f6;
  margin-top: 3rem;
  padding: 3rem 3rem 2rem;
}

#limited .review p {
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}
