/* ===================================================
   Blossom Blooms - Health & Wellness Page
   =================================================== */

/* ===== Hero ===== */
.hw-hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 80px;
  position: relative;
  overflow: hidden;
}

.hw-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.hw-hero__catch {
  font-family: var(--font-ja);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.hw-hero__sub {
  font-size: 20px;
  color: var(--color-text-light);
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.hw-hero__image {
  position: absolute;
  right: -20px;
  top: var(--header-height);
  width: 52%;
  height: calc(100% - var(--header-height));
  pointer-events: none;
}

.hw-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hw-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.8;
}

/* ===== Story (What's H&W) ===== */
.hw-story__body {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 300;
  line-height: 2.1;
  text-align: center;
}

.hw-story__subtitle {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  color: var(--color-primary);
}

.hw-story__keyword {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin: 8px 0;
}

.hw-story__emphasis {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ===== For You（common.cssに定義） ===== */

/* ===== Concept ===== */
.hw-concept__list-wrap {
  margin-bottom: 40px;
}

.hw-concept__list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hw-concept__list li {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  padding-left: 20px;
  position: relative;
  border-left: 2px solid var(--color-accent);
  padding-left: 20px;
}

.hw-concept__note {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 2;
}

/* ===== Event ===== */
.hw-event__body {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 2.1;
}

.hw-event__title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.hw-event__instagram-note {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 2;
}

/* ===== noticetime ===== */
.hw-noticetime__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.hw-noticetime__image img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 24px;
  margin: 0 auto;
}

.hw-noticetime__title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hw-noticetime__content {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.1;
}

.hw-noticetime__feature {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hw-noticetime__note {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-top: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hw-hero {
    grid-template-columns: 1fr;
    padding: calc(var(--header-height) + 48px) 24px 72px;
    min-height: 100svh;
  }

  .hw-hero__content {
    position: relative;
    z-index: 1;
    background-color: rgba(250, 247, 242, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 32px 24px;
  }

  .hw-hero__catch {
    font-size: 20px;
  }

.hw-hero__sub {
  font-size: 15px;
}

  .hw-hero__image {
    position: absolute;
    inset: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hw-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hw-hero__scroll {
    bottom: 20px;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(250, 247, 242, 0.9);
  }

  .hw-story__body {
  text-align: left;
}

.hw-story__subtitle,
.hw-story__keyword,
.hw-story__emphasis {
  text-align: center;
  font-size: 18px;
}

.hw-concept__list li {
  font-size: 15px;
}

.hw-concept__note {
  font-size: 15px;
  text-align: left;
}

.hw-event__body {
  font-size: 14px;
  text-align: left;
}

.hw-event__title {
  text-align: center;
}

.hw-event__title {
  font-size: 18px;
}

  .hw-noticetime__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hw-noticetime__image img {
    width: 120px;
    height: 120px;
  }

  .hw-noticetime__title {
  font-size: 18px;
}

.hw-noticetime__content {
  font-size: 14px;
}
}
