

/* =======================================
   Heroセクション全体
======================================= */
.hero-section {
  background-color: var(--color-secondary); /* 明るいミントグリーン */
  padding: 6rem 1.5rem;
  overflow: hidden; /* 高さ崩れ＆背景色消失を防止 */
}

/* 内部コンテナ：左右2カラム構成 */
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  min-height: 480px; /* 明示的な高さ指定で背景色が見える */
}

/* カラム共通 */
.hero-col {
  flex: 1 1 45%;
  box-sizing: border-box;
}

/* 左カラム：イラスト画像 */
.hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 右カラム：テキスト */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  color: var(--color-text); /* 濃紺テキスト */
}

/* 見出し1行目 */
.hero-line1 {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.4;
}

/* 見出し2行目 */
.hero-line2 {
  font-size: 1.85rem;
  font-weight: bold;
  line-height: 1.4;
}

/* 強調マーカー：共通スタイル（背景：ネイビー／文字：白） */
.marker-hr,
.marker-tech,
.marker-honest,
.marker-satisfied {
  background-color: var(--color-primary); /* 濃紺 */
  color: #fff;
  padding: 0.2em 0.5em;
  border-radius: 4px;
}

/* CTAボタン */
.btn-product-outline {
  display: inline-block;
  padding: 0.75em 2em;
  background-color: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-product-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* =======================================
   レスポンシブ対応（スマホ）
======================================= */
@media screen and (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    min-height: auto; /* スマホ時は高さ制限を解除 */
  }

  .hero-col {
    flex: 1 1 100%;
  }

  .hero-text {
    align-items: center;
  }

  .hero-line1 {
    font-size: 1.75rem;
  }

  .hero-line2 {
    font-size: 1.5rem;
  }

  .btn-product-outline {
    margin-top: 1rem;
  }
}

.hero-section {
  background-color: red !important;
  min-height: 300px;
}

.hero-section {
  background: linear-gradient(135deg, #B5FFE1 0%, #65B891 100%);
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.marker-hr {
  background-color: #4E878C; /* support2（濃い青緑） */
  color: #fff;
}

.marker-tech {
  background-color: #332C54; /* primary（濃紺） */
  color: #fff;
}

.marker-honest {
  background-color: #93E5AB; /* support1（明るめセラドン） */
  color: #333;
}

.marker-satisfied {
  background-color: #B5FFE1; /* accent（アクア） */
  color: #333;
}
