@charset "UTF-8";

/* ===== root (根管治療) page ===== */

/* s01 sub sections: image + text rows */
.root__sub {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: center;
  margin: 24px 0 0;
}
.root__sub .root__sub__media {
  order: 2;
}
.root__sub__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.root__sub__title {
  color: #1c4a5a;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #6cc6e0;
}
.root__sub__body p {
  margin: 0;
  line-height: 1.85;
}
@media (max-width: 767px) {
  .root__sub {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .root__sub .root__sub__media { order: 0; }
  .root__sub__title { font-size: 18px; }
}

/* お願い list (no images) */
.root__notes {
  display: grid;
  gap: 20px;
  margin: 24px 0 0;
}
.root__notes__item {
  background: #f3fbfd;
  border: 1px solid #d6ecf2;
  border-radius: 10px;
  padding: 20px 24px;
}
.root__notes__title {
  color: #1c4a5a;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  padding-left: 14px;
  position: relative;
}
.root__notes__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: #6cc6e0;
  border-radius: 3px;
}
.root__notes__item p {
  margin: 0;
  line-height: 1.85;
}
@media (max-width: 767px) {
  .root__notes__item { padding: 16px 18px; }
  .root__notes__title { font-size: 16px; }
}

/* equipment cards (マイクロスコープ / ラバーダム) */
.root__equip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0 0;
}
.root__equip__item {
  background: #fff;
  border: 1px solid #d6e8ee;
  border-radius: 10px;
  padding: 24px;
}
.root__equip__media {
  margin: 0 0 16px;
}
.root__equip__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.root__equip__title {
  color: #1c4a5a;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #6cc6e0;
}
.root__equip__item p {
  margin: 0;
  line-height: 1.85;
}
@media (max-width: 767px) {
  .root__equip { grid-template-columns: 1fr; gap: 20px; }
  .root__equip__item { padding: 20px; }
  .root__equip__title { font-size: 18px; }
}
