/* セクション見出し */
.section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #191970;
  margin: 10px auto 0;
}

/* お客様の声セクション */
.fathers-voice-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.voice-box {
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.75;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
}

.voice-box p {
  margin: 0;
}

/* 背景交互カラー */
.bg-white {
  background-color: #ffffff;
}
.bg-gray {
  background-color: #f9f9f9;
}

/* 左帯カラー（使い分け可） */
.border-darkblue       { border-left-color: #191970; }
.border-steelblue      { border-left-color: #4682b4; }
.border-dodgerblue     { border-left-color: #1e90ff; }
.border-skyblue        { border-left-color: #87cefa; }
.border-goldenrod      { border-left-color: #daa520; }
.border-seagreen       { border-left-color: #2e8b57; }
.border-saddlebrown    { border-left-color: #8b4513; }
.border-slateblue      { border-left-color: #6a5acd; }
.border-cadetblue      { border-left-color: #5f9ea0; }
.border-lightsteelblue { border-left-color: #b0c4de; }

/* CTAボタン */
.cta-button {
  display: inline-block;
  background-color: #191970;
  color: #fff;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #000080;
}

/* カード型商品ブロック（オプション） */
.product-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-card .product-name {
  font-weight: bold;
  margin: 8px 0 4px;
  font-size: 18px;
}

.product-card .product-desc {
  font-size: 14px;
  color: #666;
}

/* リンク強調 */
a.highlight-link {
  color: #191970;
  text-decoration: underline;
}
a.highlight-link:hover {
  color: #000080;
}

/* レスポンシブ調整 */
@media screen and (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .voice-box {
    font-size: 15px;
    padding: 12px;
  }

  .cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .product-card {
    padding: 12px;
  }
}

/* h1：ページのメイントピック（タイトル） */
h1 {
  font-size: 28px;
  font-weight: bold;
  color: #191970;
  text-align: center;
  margin: 40px 0 20px;
  line-height: 1.5;
  border-bottom: 2px solid #191970;
  padding-bottom: 8px;
}

/* h2：セクションタイトル（商品紹介・特集など） */
h2 {
  font-size: 24px;
  font-weight: bold;
  color: #2e4b83;
  margin: 36px 0 16px;
  position: relative;
  padding-left: 16px;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 24px;
  background-color: #2e4b83;
  border-radius: 3px;
}

/* h3：小見出し（補足説明や用途ガイドなど） */
.content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 28px 0 12px;
  border-left: 4px solid #87cefa;
  padding-left: 12px;
  background-color: #f7faff;
}


/*# sourceMappingURL=fathers-day.css.map */
