/* ===== treatment-shiwa.css : treatment-shiwa.html 固有スタイル（共通は sub.css）===== */
.concern-check {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
.concern-check li {
  position: relative;
  padding-left: 32px;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
}
.concern-check li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
@media (max-width: 600px) {
  .concern-check {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.feat-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 60px;
}
.feat-col {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feat-h {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 12px;
}
.feat-col p {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.95;
}
.feat-plus {
  align-self: center;
  font-family: var(--serif-en);
  font-size: 30px;
  color: var(--green);
  font-weight: 600;
}
@media (max-width: 760px) {
  .feat-cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feat-plus {
    text-align: center;
    font-size: 22px;
  }
}

/* 施術内容の写真（横長スマスアップNEO写真用）*/
.media.wide {
  aspect-ratio: 16 / 11;
}

/* CHECK：お悩みチェックをカード化（ABOUTと一体のセクションに）*/
.concern-card {
  max-width: 660px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow-sm);
}
.concern-card-ttl {
  text-align: center;
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.concern-card-ttl::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: var(--green);
  margin: 16px auto 26px;
}


/* 治療ページはヒーロー写真を表示（teatment_top） */
.page-hero .hero-art .ph { display: block; }

/* ヒーローのveilを少しだけ弱める（画像を見せる） */
.page-hero .hero-veil {
  background: linear-gradient(
    180deg,
    rgba(245, 240, 230, 0.34) 0%,
    rgba(245, 240, 230, 0.22) 42%,
    rgba(238, 231, 213, 0.60) 100%
  );
}
