/* 目次とh2の間の余白 */
.menu-h2-spacer {
  height: 24px;
}


/* 記事内の囲み枠：明るめデザイン＋文字を縦中央に配置 */
.blog-info-box {
  border: 1px solid #f3d28b;
  border-left: 6px solid #f6b73c;
  background: #fffaf0;
  padding: 18px 20px;
  margin: 22px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(246, 183, 60, 0.12);

  display: flex;
  align-items: center;
}

/* 囲み枠内の余白調整 */
.blog-info-box p {
  margin: 0;
}

/* 参照文の文字サイズ調整 */
.reference-small {
  font-size: 0.9em;
  color: #666;
}


/* 記事内の囲み枠：明るめデザイン＋中央寄せ */
.blog-info-box {
  border: 1px solid #f3d28b;
  border-left: 6px solid #f6b73c;
  background: #fffaf0;
  padding: 18px 20px;
  margin: 22px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(246, 183, 60, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 囲み枠内の余白調整 */
.blog-info-box p {
  margin: 0;
  width: 100%;
}


/* 通常の囲み枠：箇条書き向け */
.blog-info-box {
  border: 1px solid #f3d28b;
  border-left: 6px solid #f6b73c;
  background: #fffaf0;
  padding: 34px 20px 18px 20px;
  margin: 22px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(246, 183, 60, 0.12);
}

/* 中央寄せしたい囲み枠 */
.blog-info-box.center {
  text-align: center;
}

/* 囲み枠内の余白調整 */
.blog-info-box p {
  margin: 0;
}

.marker{
  background: linear-gradient(transparent 60%, #cdecc3 60%);
  padding: 0 .2em;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 通常の囲み枠：箇条書き向け */
.blog-info-box {
  border: 1px solid #f3d28b;
  border-left: 6px solid #f6b73c;
  background: #fffaf0;
  padding: 34px 8px 18px 12px;
  margin: 22px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(246, 183, 60, 0.12);
}

/* 中央寄せしたい囲み枠 */
.blog-info-box.center {
  text-align: center;
}


/* 囲み枠内の余白調整 */
.blog-info-box p {
  margin: 0;
  line-height: 2;
}


/* コスト確認ステップ用カード */
.cost-step-box {
  background: #fffaf0;
  border: 1px solid #f3d28b;
  border-left: 6px solid #f6b73c;
  border-radius: 10px;
  padding: 22px 22px 24px 22px;
  margin: 26px 0;
  box-shadow: 0 2px 8px rgba(246, 183, 60, 0.12);
}

/* ステップ見出し */
.cost-step-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #f3d28b;
  font-size: 1.08em;
  line-height: 1.5;
  color: #333;
}

/* 丸数字 */
.cost-step-box .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #f6b73c;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.95em;
}

/* 本文 */
.cost-step-box p {
  margin: 0;
  line-height: 2;
}


/* コスト確認ステップ用カード：ブルー系 */
.cost-step-box {
  background: #f3f9ff;
  border: 1px solid #b9d8f2;
  border-left: 6px solid #4a90c2;
  border-radius: 10px;
  padding: 22px 22px 24px 22px;
  margin: 26px 0;
  box-shadow: 0 2px 8px rgba(74, 144, 194, 0.12);
}

/* ステップ見出し */
.cost-step-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #b9d8f2;
  font-size: 1.08em;
  line-height: 1.5;
  color: #333;
}

/* 丸数字 */
.cost-step-box .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #4a90c2;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.95em;
}

/* 本文 */
.cost-step-box p {
  margin: 0;
  line-height: 2;
}


/* お問い合わせボタン */
.contact-button-area {
  text-align: center;
  margin: 28px 0;
}

.contact-button {
  display: inline-block;
  background: #4a90c2;
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.5;
  box-shadow: 0 3px 8px rgba(74, 144, 194, 0.25);
  transition: 0.2s ease;
}

.contact-button:hover {
  background: #3578a8;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}