@charset "UTF-8";
/* ==========================================
   縦読みページ専用の追加スタイル
========================================== */
#placenta-main-content {
  max-width: 900px; /* 中央寄せで読みやすい幅に設定 */
  margin: 0 auto;
  padding: 40px 20px;
}

#placenta-main-content .content-section {
  margin-bottom: 60px;
}

#placenta-main-content .content-section p {
  line-height: 1.8em;
}

/* --- 2カラムレイアウト設定 --- */
#placenta-main-content .content-section__inner {
  display: flex;
  flex-direction: column; /* スマホデフォルト：縦並び */
  gap: 20px;
  align-items: center;
}

#placenta-main-content .content-section__img {
  width: 100%;
}

#placenta-main-content .content-section__img img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* 好みに応じて角丸を付与（不要なら削除） */
  object-fit: cover;
}

#placenta-main-content .content-section__body {
  width: 100%;
}

/* PCサイズ（768px以上）の表示 */
@media screen and (min-width: 768px) {
  #placenta-main-content .content-section__inner {
    flex-direction: row; /* 横並び */
    gap: 30px; /* 画像とテキストの間隔 */
    align-items: flex-start; /* 上揃え */
  }
  #placenta-main-content .content-section__img {
    width: 40%; /* 画像の幅（お好みで35〜45%で調整） */
    flex-shrink: 0;
  }
  #placenta-main-content .content-section__body {
    width: 60%; /* テキストエリアの幅 */
  }
}
/* チェックリスト風ボックス */
#placenta-main-content .check-box-list {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 15px;
  margin-top: 20px;
}

#placenta-main-content .check-box-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#placenta-main-content .check-box-list ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.6;
}

#placenta-main-content .check-box-list ul li:last-child {
  margin-bottom: 0;
}

#placenta-main-content .check-box-list ul li::before {
  content: "☑";
  position: absolute;
  left: 0;
  top: 0;
  color: #e59d28; /* メインカラー（必要に応じて変更してください） */
  font-size: 18px;
}

/* POINT01, POINT02 バッジ */
#placenta-main-content .point-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  margin-top: 25px;
}

#placenta-main-content .point-item .point-badge {
  display: inline-block;
  background-color: #e59d28; /* メインカラー */
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

#placenta-main-content .point-item .point-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

#placenta-main-content .point-item p {
  margin: 0;
  color: #666;
}

/* オレンジの弾丸ドット（ネストを解除して平坦化） */
.side-effect-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5em 0;
}

.side-effect-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.6;
}

.side-effect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #d96828; /* 見出しの下線カラーに合わせたオレンジ */
  border-radius: 50%;
}

/* 注意喚起枠（献血の説明など） */
#placenta-main-content .alert-box {
  background-color: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 20px 25px;
  margin-top: 25px;
}

#placenta-main-content .alert-box .alert-title {
  color: #dc2626;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}

#placenta-main-content .alert-box p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* よくある質問 */
#placenta-main-content .faq-item {
  margin-top: 35px;
}

/* ==========================================
   料金テーブルのスタイル
========================================== */
.price-table-wrap {
  margin-top: 20px;
  margin-bottom: 30px;
}

.price-table-wrap .price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dcdcdc;
  background-color: #fff;
}

.price-table-wrap .price-table th,
.price-table-wrap .price-table td {
  padding: 15px 20px;
  font-size: 15px;
  text-align: center;
  border: 1px solid #dcdcdc;
}

/* テーブルヘッダー（背景色） */
.price-table-wrap .price-table thead tr {
  background-color: #6b5141;
  color: #fff;
}

.price-table-wrap .price-table thead th {
  font-weight: bold;
  border-color: rgba(255, 255, 255, 0.3);
}

.price-table-wrap .price-table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

.price-table-wrap .price-table tbody td.category-name {
  text-align: left;
  font-weight: bold;
  color: #333;
}

/* 注意書き（※印） */
.price-table-wrap .price-notes {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.price-table-wrap .price-notes li {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.price-table-wrap .price-notes li::before {
  display: none;
}

/* ==========================================
   小見出し（h4）の余白調整
========================================== */
#sub_medicalcare .heading-title03,
#sub_medicalcare .heading-title04 {
  text-align: left;
  margin-top: 40px;
}

/* スマホ表示対応 */
@media screen and (max-width: 767px) {
  .price-table-wrap .price-table th,
  .price-table-wrap .price-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  .price-table-wrap .price-table tbody td.category-name {
    text-align: center;
  }
}/*# sourceMappingURL=placenta.css.map */