@charset "UTF-8";
.btn_lin {
    text-align: center;
}

/*.btn_link a {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #323232;
    text-align: center;
    padding: 23px 15px;
    width: 40%;
    box-sizing: border-box;
}

.btn_lin a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
    text-decoration: none;
}*/


/* 全体コンテナ */
.special-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  line-height: 1.8;
}

/* セクションタイトル（h3） */
/*.special-content h3 {
  background: #ffed00;
  padding: 12px 16px;
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 24px;
}*/

/* リード文・太字見出し */
.special-content p,
.special-content strong {
  margin-bottom: 24px;
  text-align: left;
}

/* 中の段落を中央寄せにしたい場合 */
.special-content .text-center {
  text-align: center;
}

/* 箇条書き（ul） */
.special-content ul {
  margin: 0 0 32px;
  padding: 0 16px;            /* 左右余白 */
  list-style: none;
}
.special-content ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 12px;
}
.special-content ul li:before {
  content: "•";               /* 黒丸 */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: 1;
  color: #333;
}

/* 小見出し（h4,h5） */
.special-content h4 {
  margin: 32px 0 16px;
  font-size: 18px;
  font-weight: bold;
}
.special-content h5 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: bold;
}

/* 申込ボタン */
.special-content .btn_link {
  text-align: center;
  margin: 48px 0;
}
.special-content .btn_link a {
  display: inline-block;
  padding: 12px 30px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}
.special-content .btn_link a:hover {
  background: #555;
  color: #fff;
}

/* ───────────────────────
   h3：黄色帯＋左黒ライン
   ─────────────────────── */
.h3--yellow-band {
  background-color: #ffed00;    /* バックをイエロー */
  color: #333;                  /* 文字色を濃いグレー */
  padding: 12px 16px;
  margin: 40px 0 24px;
  font-size: 20px;
  font-weight: bold;
  border-left: 6px solid #333;  /* 左に黒いライン */
}

/* ───────────────────────
   h3：グレー帯＋左黄ライン
   ─────────────────────── */
.h3--gray-band {
  background-color: #4a4a4a;    /* 濃いグレー背景 */
  color: #ffed00;               /* 文字色をイエロー */
  padding: 12px 16px;
  margin: 40px 0 24px;
  font-size: 20px;
  font-weight: bold;
  border-left: 6px solid #ffed00; /* 左に黄色いライン */
}

/* レスポンシブ例：小さい画面ではパディングをコンパクトに */
@media screen and (max-width: 600px) {
  .h3--yellow-band,
  .h3--gray-band {
    padding: 8px 12px;
    font-size: 18px;
    border-left-width: 4px;
  }
}
