/* ============================================
   Beauty & Health Page
   ============================================ */

/* --------------------------------------------
   Section heading (shared pattern)
   -------------------------------------------- */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-heading__en {
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-navy);
  font-style: normal;
}

.section-heading__en em {
  color: var(--color-pink);
  font-style: normal;
}

.section-heading__ja {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
}

/* --------------------------------------------
   Shared utilities
   -------------------------------------------- */
.bh-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

.bh-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

.bh-highlight {
  font-weight: 700;
  color: var(--color-pink);
}

.bh-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-pink);
}

/* --------------------------------------------
   BH Divider (dotted pink line)
   -------------------------------------------- */
.bh-divider {
  border: none;
  border-top: 2px dashed var(--color-pink);
  margin: 0;
}

/* --------------------------------------------
   BH Feature Box (bullet list)
   -------------------------------------------- */
.bh-feature-box {
  background: var(--color-white);
  border: 1px solid #cce8fe;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bh-feature-box__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

.bh-feature-box__item--pink {
  font-weight: 700;
  color: var(--color-pink);
}

.bh-feature-box__dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-pink);
  border-radius: 50%;
}

.bh-feature-box__line {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #fedbde, #cce8fe);
  margin: 0;
}

/* --------------------------------------------
   BH Section (h2 content block)
   -------------------------------------------- */
.bh-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bh-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --------------------------------------------
   BH Subsection (h3 block)
   -------------------------------------------- */
.bh-subsection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bh-subsection__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
}

.bh-subsection__diamond {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-pink);
  transform: rotate(45deg);
}

/* --------------------------------------------
   BH Card Box (h4 block)
   -------------------------------------------- */
.bh-card-box {
  background: var(--color-white);
  border: 1px solid #cce8fe;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bh-card-box__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-pink);
}

.bh-card-box__diamond {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-pink);
  transform: rotate(45deg);
}

.bh-card-box__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

.bh-card-box__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --------------------------------------------
   BH Message Section (hero text-left + photo-right)
   -------------------------------------------- */
.bh-message {
  padding: 40px 40px 0;
}

.bh-message__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.bh-message__hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bh-message__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bh-message__photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto;
}

.bh-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .bh-message {
    padding: 60px 120px 0;
  }

  .bh-message__hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .bh-message__text {
    flex: 1;
    min-width: 0;
  }

  .bh-message__photo {
    width: min(400px, 45%);
    flex-shrink: 0;
    margin: 0;
  }
}

/* --------------------------------------------
   BH HIFU Section (gradient)
   -------------------------------------------- */
.bh-hifu {
  padding: 80px 40px 0;
  --section-bg: linear-gradient(to bottom, #fff 0%, var(--color-pink-bg) 20%, var(--color-pink-bg) 80%, #fff 100%);
}

.bh-hifu__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.bh-hifu__poster {
  width: 100%;
  max-width: 500px;
}

.bh-hifu__poster img {
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .bh-hifu {
    padding: 100px 120px 0;
  }
}

/* --------------------------------------------
   BH Placenta Section
   -------------------------------------------- */
.bh-placenta {
  position: relative;
  padding: 80px 40px 0;
}

.deco-circle-bh-placenta {
  position: absolute;
  top: -28px;
  right: -60px;
  width: 502px;
  height: 748px;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-bh-placenta img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .deco-circle-bh-placenta {
    width: 251px;
    height: 374px;
    top: -14px;
    right: -30px;
  }
}

.bh-placenta__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .bh-placenta {
    padding: 100px 120px 0;
  }
}

/* --------------------------------------------
   BH Vitamin Section (gradient)
   -------------------------------------------- */
.bh-vitamin {
  position: relative;
  padding: 80px 40px 80px;
  --section-bg: linear-gradient(to bottom, #fff 0%, var(--color-pink-bg) 40%, var(--color-pink-bg) 60%, #fff 100%);
}

.deco-circle-bh-vitamin {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-bh-vitamin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .deco-circle-bh-vitamin {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
  }
}

.bh-vitamin__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .bh-vitamin {
    padding: 100px 120px 100px;
  }
}

/* --------------------------------------------
   BH Consult Section (photo-left + text-right)
   -------------------------------------------- */
.bh-consult {
  position: relative;
  padding: 80px 40px 80px;
  --section-bg: linear-gradient(to bottom, #fff 0%, var(--color-pink-bg) 50%, #fff 100%);
}

.deco-circle-bh-consult {
  position: absolute;
  top: -30px;
  right: -60px;
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-bh-consult img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .deco-circle-bh-consult {
    width: 200px;
    height: 200px;
    top: -20px;
    right: -40px;
  }
}

.bh-consult__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

.bh-consult__hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bh-consult__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bh-consult__photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto;
}

.bh-consult__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .bh-consult {
    padding: 100px 120px 100px;
  }

  .bh-consult__hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .bh-consult__photo {
    width: min(400px, 45%);
    flex-shrink: 0;
    margin: 0;
  }

  .bh-consult__text {
    flex: 1;
    min-width: 0;
  }
}
