
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  color: #4c3a2f;
  background: #fff;
}

.logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 20px 0 20px 40px;
}

.hero {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 35%;
  left: 10%;
  transform: none;
  color: #4c3a2f;
  text-align: left;
  background: none;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
  max-width: 80%;
}

.hero-text h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.8em;
}

.hero-text p {
  font-size: 1.4rem;
  margin: 0.4em 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 60px 0 20px 0;
  text-align: center;
}

.product-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 40px;
}

.product-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-text {
  position: absolute;
  top: 25%;
  left: 8%;
  color: white;
  text-align: left;
  max-width: 85%;
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 300;
}

.product-text h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1em;
}

.product-text p {
  font-size: 1.3rem;
  margin: 0;
}

/* --- Feature Section --- */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #fff;
}
.feature-block {
  display: flex;
  flex-direction: row;
  max-width: 1000px;
  margin-bottom: 80px;
  align-items: flex-start;
  gap: 40px;
}
.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-block img {
  width: 45%;
  height: auto;
  border-radius: 8px;
}
.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  max-width: 480px;
}
.feature-text h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.feature-text p {
  font-size: 1rem;
  line-height: 1.9;
  margin: 0;
}

/* --- review Section --- */
.review-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.review-block img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.review-block p {
  font-size: 1rem;
  color: #4c3a2f;
  line-height: 1.8;
  margin: 0 0 10px;
  max-width: 500px;
}

.review-block .age {
  font-size: 0.9rem;
  color: #6a5d52;
}
.reviews {
  background-image: url("images/reviews_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  text-align: center;
}

/* ごほうびセクション */
.closing {
  background-color: #f5f5e9;
  padding: 60px 20px 40px; /* 下だけ少し減らして、次の余白にゆだねる */
  text-align: center;
  border-top: 1px solid #e0ddd2; /* フッターとの区切り線追加 */
}

.closing h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #3a2a1d;
}

.closing p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #4c3a2f;
}

.btn {
  display: inline-block;
  background-color: #d35d74;
  color: white;
  padding: 15px 40px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 40px; /* 👈ボタン下に余白追加 */
}


.footer {
  background-color: #d8eee5; /* ミントグリーン */
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #4c3a2f;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-left p,
.footer-right p {
  margin: 0;
  line-height: 1.6;
}
