:root {
  --happou-wellness-bg: #fbfaf7;
  --happou-wellness-text: #2f2a25;
  --happou-wellness-muted: #6f685f;
  --happou-wellness-accent: #8f936d;
  --happou-wellness-line: rgba(87, 82, 70, 0.14);
  --happou-wellness-inner: min(1180px, calc(100vw - 48px));
  --happou-wellness-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --happou-wellness-sans: "Inter", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.happou-wellness,
.happou-wellness *,
.happou-wellness *::before,
.happou-wellness *::after {
  box-sizing: border-box;
}

.happou-wellness {
  padding: clamp(88px, 10vw, 150px) 0;
  background: var(--happou-wellness-bg);
  color: var(--happou-wellness-text);
}

.happou-wellness__inner {
  width: var(--happou-wellness-inner);
  margin: 0 auto;
}

.happou-wellness__top {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
}

.happou-wellness__copy {
  max-width: 440px;
}

.happou-wellness__section {
  margin: 0;
  color: var(--happou-wellness-accent);
  font-family: var(--happou-wellness-sans);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}

.happou-wellness__eyebrow {
  margin: 18px 0 0;
  color: var(--happou-wellness-accent);
  font-family: var(--happou-wellness-sans);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.32em;
}

.happou-wellness__title {
  margin: 34px 0 0;
  font-family: var(--happou-wellness-serif);
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.08em;
}

.happou-wellness__subhead {
  margin: 28px 0 0;
  color: var(--happou-wellness-accent);
  font-family: var(--happou-wellness-serif);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.happou-wellness__text {
  margin-top: 30px;
  color: var(--happou-wellness-muted);
  font-family: var(--happou-wellness-serif);
  font-size: 0.98rem;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.happou-wellness__text p {
  margin: 0;
}

.happou-wellness__hero {
  margin: 0;
  overflow: hidden;
  background: #ece9e1;
}

.happou-wellness__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.happou-wellness__bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 5vw, 74px);
  align-items: stretch;
  margin-top: clamp(58px, 7vw, 96px);
}

.happou-wellness__subimage {
  margin: 0;
  overflow: hidden;
  background: #ece9e1;
}

.happou-wellness__subimage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.happou-wellness__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--happou-wellness-line);
  border-bottom: 1px solid var(--happou-wellness-line);
}

.happou-wellness__feature {
  padding: 36px 26px 34px;
  text-align: center;
}

.happou-wellness__feature + .happou-wellness__feature {
  border-left: 1px solid var(--happou-wellness-line);
}

.happou-wellness__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  color: var(--happou-wellness-accent);
}

.happou-wellness__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.happou-wellness__feature h3 {
  margin: 0;
  font-family: var(--happou-wellness-serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.happou-wellness__feature p {
  margin: 18px 0 0;
  color: var(--happou-wellness-muted);
  font-family: var(--happou-wellness-serif);
  font-size: 0.86rem;
  line-height: 1.95;
  letter-spacing: 0.025em;
}

.happou-wellness__closing {
  margin: clamp(58px, 7vw, 96px) auto 0;
  text-align: center;
  color: #6f7778;
  font-family: var(--happou-wellness-serif);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.8;
  letter-spacing: 0.14em;
}

.happou-wellness__closing::after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--happou-wellness-accent) 18%,
    var(--happou-wellness-accent) 82%,
    transparent
  );
  opacity: 0.45;
}

@media (max-width: 1023px) {
  .happou-wellness__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .happou-wellness__copy {
    max-width: 680px;
  }

  .happou-wellness__bottom {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .happou-wellness__subimage {
    max-width: 720px;
  }

  .happou-wellness__subimage img {
    min-height: 0;
    aspect-ratio: 1.4 / 1;
  }
}

@media (max-width: 767px) {
  :root {
    --happou-wellness-inner: min(100vw - 24px, 720px);
  }

  .happou-wellness {
    padding: 72px 0 82px;
  }

  .happou-wellness__title {
    margin-top: 28px;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.5;
  }

  .happou-wellness__subhead {
    margin-top: 22px;
  }

  .happou-wellness__text {
    margin-top: 24px;
    font-size: 0.94rem;
    line-height: 1.95;
  }

  .happou-wellness__hero img {
    aspect-ratio: 4 / 3;
  }

  .happou-wellness__features {
    grid-template-columns: 1fr;
  }

  .happou-wellness__feature {
    padding: 30px 22px;
  }

  .happou-wellness__feature + .happou-wellness__feature {
    border-left: 0;
    border-top: 1px solid var(--happou-wellness-line);
  }

  .happou-wellness__closing {
    margin-top: 56px;
    font-size: 1.05rem;
    line-height: 1.85;
    letter-spacing: 0.09em;
  }
}
