@charset "UTF-8";
/* =========================================================
   Clinic LP  (page-clinic-website.php)
   このファイルは clinic-website ページでのみ読み込まれる
   すべて .clp 名前空間にスコープ
   ========================================================= */
/* ---------- root / base ---------- */
.clp {
  --navy: #1f3563;
  --navy2: #34508a;
  --blue: #3f74d6;
  --sky: #6497db;
  --sky-l: #c7dfff;
  --mint: #16b3a4;
  --ink: #1d2742;
  --muted: #5d6c89;
  --bg: #f4f8fe;
  --line: #e3ebf7;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 50px -24px rgba(31, 53, 99, 0.35);
  --shadow-sm: 0 12px 28px -16px rgba(31, 53, 99, 0.3);
  --grad-cta: linear-gradient(118deg, #1f8bff 0%, #16b3a4 100%);
  --grad-navy: linear-gradient(135deg, #1b2e57 0%, #2d4a86 60%, #3f74d6 130%);
  color: var(--ink);
  background: var(--bg);
  overflow: hidden;
  font-feature-settings: "palt";
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
.clp *,
.clp *::before,
.clp *::after {
  box-sizing: border-box;
}
.clp img {
  max-width: 100%;
  height: auto;
  display: block;
}
.clp .mincho {
  font-family: "Noto Serif JP", serif;
}
.clp .en {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.14em;
}
.clp .inr {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .clp .inr {
    padding: 0 14px;
  }
}
.clp section {
  position: relative;
}
.clp .sp-only {
  display: none;
}
@media (max-width: 768px) {
  .clp .pc-only {
    display: none;
  }
  .clp .sp-only {
    display: block;
  }
}

/* ---------- section label ---------- */
.clp-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.clp-label__num {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--blue);
  background: rgba(63, 116, 214, 0.1);
  border: 1px solid rgba(63, 116, 214, 0.22);
  padding: 5px 12px;
  border-radius: 999px;
}
.clp-label__en {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
}

.clp-ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(25px, 3.6vw, 40px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}
.clp-ttl .hl {
  background: linear-gradient(transparent 62%, rgba(22, 179, 164, 0.28) 62%);
  padding: 0 0.1em;
}

.clp-lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 760px;
}

/* ---------- generic section ---------- */
.clp-sec {
  padding: clamp(64px, 9vw, 120px) 0;
}
.clp-sec--tint {
  background: linear-gradient(180deg, #eef4fd 0%, #f4f8fe 100%);
}

.clp-center {
  text-align: center;
}
.clp-center .clp-label {
  justify-content: center;
}
.clp-center .clp-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- decorative dots / blobs ---------- */
.clp-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(63, 116, 214, 0.16) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.clp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* ---------- buttons ---------- */
.clp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: #fff !important;
  text-decoration: none;
  padding: 19px 42px;
  border-radius: 999px;
  background: var(--grad-cta);
  box-shadow: 0 16px 34px -12px rgba(22, 140, 200, 0.65);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.clp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
}
.clp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px -12px rgba(22, 140, 200, 0.75);
}
.clp-btn:hover::after {
  left: 130%;
  transition: left 0.8s ease;
}
.clp-btn i {
  font-size: 15px;
}
.clp-btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
  padding: 18px 34px;
}
.clp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.clp-btn--lg {
  font-size: 19px;
  padding: 22px 56px;
}
.clp-btn__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.9;
  display: block;
  margin-bottom: 2px;
}

/* =========================================================
   HERO
   ========================================================= */
.clp-hero {
  background: var(--grad-navy);
  color: #fff;
  padding: clamp(90px, 15vw, 100px) 0 clamp(20px, 11vw, 100px);
}
.clp-hero .clp-dots {
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1.3px, transparent 1.3px);
}
.clp-hero__blob1 {
  width: 520px;
  height: 520px;
  background: #2f7bff;
  top: -160px;
  right: -120px;
  opacity: 0.45;
}
.clp-hero__blob2 {
  width: 420px;
  height: 420px;
  background: #16b3a4;
  bottom: -180px;
  left: -120px;
  opacity: 0.4;
}
.clp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .clp-hero__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.clp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.clp-hero__badge i {
  color: #7af0e3;
}
.clp-hero h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 42px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
}
.clp-hero h1 .accent {
  background: linear-gradient(118deg, #8fd9ff, #7af0e3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.clp-hero__lead {
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 30px;
  line-height: 1.9;
}
.clp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .clp-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
}
.clp-hero__mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
}
.clp-hero__mini span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
}
.clp-hero__mini i {
  color: #7af0e3;
  font-size: 14px;
}
.clp-hero {
  /* scattered glass cards */
}
.clp-hero__visual {
  position: relative;
  height: 440px;
}
.clp-hero__visual:hover .clp-hcard {
  transform: rotate(0) translateY(-2px);
}
@media (max-width: 880px) {
  .clp-hero__visual {
    height: 360px;
    max-width: 440px;
    margin: 10px auto 0;
  }
}
@media (max-width: 560px) {
  .clp-hero__visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.clp-hcard {
  position: absolute;
  width: 200px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s ease;
}
.clp-hcard img {
  margin: 0 auto 12px;
}
.clp-hcard__t {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  text-align: center;
  line-height: 1.5;
}
.clp-hcard__tag {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-align: center;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.clp-hcard:nth-child(1) {
  top: -32px;
  left: -30px;
  transform: rotate(-4deg);
}
.clp-hcard:nth-child(2) {
  top: -40px;
  right: 116px;
  transform: rotate(3deg);
  z-index: 10;
}
.clp-hcard:nth-child(3) {
  bottom: -64px;
  left: 124px;
  transform: rotate(-2.5deg);
}
.clp-hcard:nth-child(4) {
  bottom: -76px;
  right: -30px;
  transform: rotate(3deg);
  z-index: 10;
}
@media (max-width: 560px) {
  .clp-hcard {
    position: static;
    width: auto;
    transform: none !important;
  }
}

.clp-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.clp-trust {
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.clp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .clp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.clp-trust__item {
  padding: 30px 18px;
  text-align: center;
  position: relative;
}
.clp-trust__item + .clp-trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  height: 52%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}
@media (max-width: 768px) {
  .clp-trust__item:nth-child(odd)::before {
    content: none;
  }
}
.clp-trust__num {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--navy);
  line-height: 1.2;
}
.clp-trust__num b {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.clp-trust__cap {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.clp-prob__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}
@media (max-width: 768px) {
  .clp-prob__grid {
    grid-template-columns: 1fr;
  }
}
.clp-prob__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clp-prob__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.clp-prob__card p {
  margin: 0;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
}
.clp-prob__ic {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eaf1fd, #dbe8fb);
  color: var(--blue);
  font-size: 30px;
  margin: 0 auto 16px;
}
.clp-prob__bridge {
  margin: 46px auto 0;
  max-width: 840px;
  text-align: center;
  background: var(--grad-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.clp-prob__bridge .clp-dots {
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1.2px, transparent 1.2px);
}
.clp-prob__bridge .ar {
  font-size: 26px;
  color: #7af0e3;
  margin-bottom: 6px;
}
.clp-prob__bridge p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(19px, 2.5vw, 27px);
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.clp-prob__bridge b {
  color: #7af0e3;
}

/* =========================================================
   REASON (numbered)
   ========================================================= */
.clp-reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .clp-reason__list {
    grid-template-columns: 1fr;
  }
}
.clp-reason__item {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 560px) {
  .clp-reason__item {
    display: grid;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 8px;
    align-items: center;
    padding: 20px;
  }
}
.clp-reason__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--grad-cta);
}
.clp-reason__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.clp-reason__item--wide {
  grid-column: 1/-1;
}
@media (max-width: 880px) {
  .clp-reason__item--wide {
    grid-column: auto;
  }
}
.clp-reason__no {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex: 0 0 auto;
}
@media (max-width: 560px) {
  .clp-reason__no {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (max-width: 560px) {
  .clp-reason__body {
    display: contents;
  }
}
.clp-reason__body h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 19px;
  margin: 2px 0 10px;
  color: var(--navy);
}
@media (max-width: 560px) {
  .clp-reason__body h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
}
.clp-reason__body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
}
@media (max-width: 560px) {
  .clp-reason__body p {
    grid-column: 1/-1;
    grid-row: 2;
  }
}

/* =========================================================
   SERVICE (icon grid)
   ========================================================= */
.clp-serv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 1000px) {
  .clp-serv__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .clp-serv__grid {
    grid-template-columns: 1fr;
  }
}
.clp-serv__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.clp-serv__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(63, 116, 214, 0.4);
}
.clp-serv__card p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}
.clp-serv__ic {
  width: 150px;
  height: 150px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #eef5ff, #dde9fb);
  display: grid;
  place-items: center;
}
.clp-serv__ic img {
  width: 116px;
  height: 116px;
}

/* =========================================================
   WORKS
   ========================================================= */
.clp-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .clp-works__grid {
    grid-template-columns: 1fr;
  }
}
.clp-works__more {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.clp-work {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clp-work:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.clp-work__img {
  overflow: hidden;
}
.clp-work__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1.6/1;
  transition: transform 0.6s ease;
}
.clp-work:hover .clp-work__img img {
  transform: scale(1.07);
}
.clp-work__cap {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clp-work__cap p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
}
.clp-work__cap i {
  color: var(--sky);
}

.clp-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.clp-link:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
}
.clp-link i {
  color: var(--mint);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.clp-band {
  background: var(--grad-navy);
  color: #fff;
  padding: clamp(56px, 8vw, 86px) 0;
  text-align: center;
}
.clp-band__blob {
  width: 460px;
  height: 460px;
  background: #16b3a4;
  top: -180px;
  left: -120px;
  opacity: 0.4;
}
.clp-band__blob2 {
  width: 420px;
  height: 420px;
  background: #2f7bff;
  bottom: -200px;
  right: -120px;
  opacity: 0.4;
}
.clp-band h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 33px);
  line-height: 1.55;
  margin: 0 0 14px;
}
.clp-band p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 30px;
  font-size: 15.5px;
}
.clp-band__free {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(122, 240, 227, 0.16);
  border: 1px solid rgba(122, 240, 227, 0.4);
  color: #bff7ef;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* =========================================================
   PRICE
   ========================================================= */
.clp-price__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .clp-price__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .clp-price__grid {
    grid-template-columns: 1fr;
  }
}
.clp-price__note {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 26px;
}

.clp-plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clp-plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.clp-plan--best {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--grad-cta) border-box;
  box-shadow: var(--shadow);
}
.clp-plan__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cta);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px -10px rgba(22, 140, 200, 0.7);
  white-space: nowrap;
}
.clp-plan__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--navy);
  min-height: 48px;
  line-height: 1.5;
  text-align: center;
}
.clp-plan__price {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: var(--ink);
  margin: 14px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
  text-align: center;
}
.clp-plan__price small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.clp-plan__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.clp-plan__list li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 13.8px;
  color: var(--ink);
  border-bottom: 1px solid #f1f5fb;
  line-height: 1.6;
}
.clp-plan__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--mint);
  font-size: 12px;
}
.clp-plan .clp-plan__btn {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(63, 116, 214, 0.08);
  color: var(--navy);
  transition: background 0.25s ease, color 0.25s ease;
}
.clp-plan--best .clp-plan__btn {
  background: var(--grad-cta);
  color: #fff;
}
.clp-plan__btn:hover {
  background: var(--navy);
  color: #fff;
}

/* =========================================================
   FLOW (timeline)
   ========================================================= */
.clp-flow__wrap {
  max-width: 760px;
  margin: 54px auto 0;
  position: relative;
}
.clp-flow__wrap::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--sky), var(--mint));
}

.clp-step {
  position: relative;
  padding: 0 0 34px 78px;
}
.clp-step:last-child {
  padding-bottom: 0;
}
.clp-step__no {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky);
  display: grid;
  place-items: center;
  z-index: 2;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: var(--blue);
  box-shadow: 0 10px 22px -12px rgba(63, 116, 214, 0.5);
}
.clp-step__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.clp-step__card h3 {
  margin: 0 0 6px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}
.clp-step__card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
@media (max-width: 560px) {
  .clp-step {
    padding-left: 66px;
  }
}

/* =========================================================
   FAQ (static list)
   ========================================================= */
.clp-faq__wrap {
  max-width: 840px;
  margin: 48px auto 0;
}
.clp-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.clp-faq__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px 14px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
}
.clp-faq__q {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--grad-cta);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.clp-faq__a {
  padding: 0 26px 24px 72px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.9;
}
.clp-faq__a a {
  color: var(--blue);
  text-decoration: underline;
}
@media (max-width: 560px) {
  .clp-faq__a {
    padding-left: 26px;
  }
}

/* =========================================================
   CONTACT (embedded form)
   ========================================================= */
.clp-contact {
  background: var(--grad-navy);
  color: #fff;
  padding: clamp(70px, 10vw, 120px) 0;
}
.clp-contact .clp-dots {
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1.3px, transparent 1.3px);
}
.clp-contact__blob {
  width: 520px;
  height: 520px;
  background: #2f7bff;
  top: -200px;
  right: -160px;
  opacity: 0.4;
}
.clp-contact__head {
  text-align: center;
  margin-bottom: 40px;
}
.clp-contact__head .clp-label {
  justify-content: center;
}
.clp-contact__head .clp-label__num {
  color: #bdf3ec;
  background: rgba(122, 240, 227, 0.14);
  border-color: rgba(122, 240, 227, 0.35);
}
.clp-contact__head .clp-label__en {
  color: rgba(255, 255, 255, 0.7);
}
.clp-contact__head h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 0 0 14px;
}
.clp-contact__head p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
  margin: 0;
}
.clp-contact__free {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(122, 240, 227, 0.16);
  border: 1px solid rgba(122, 240, 227, 0.4);
  color: #bff7ef;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.cmn_content02 .contact_wrap .container03 {
  padding: 0;
  padding-bottom: 20px;
}

.clp-form-box {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border-radius: 26px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
  color: var(--ink);
}
@media (max-width: 880px) {
  .clp-form-box {
    padding: 0;
  }
}
.clp-form-box {
  /* フォームは page-contact.php と同じ other.css のスタイルをそのまま流用する。
     ここではフィールドのスタイルは一切上書きせず、カード内の余白だけを整える。 */
}
.clp-form-box .contact_form {
  padding-top: 0;
}
.clp-form-box .cmn_content02 .contact_wrap {
  padding-bottom: 0;
}

.clp-form-alt {
  text-align: center;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.clp-form-alt a {
  color: #7af0e3;
  font-weight: 600;
  text-decoration: underline;
}

.clp-anchor {
  scroll-margin-top: 96px;
}

/* =========================================================
   ABOUT (代表紹介)
   ========================================================= */
.clp-about {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 52px);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 880px) {
  .clp-about {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}
.clp-about__media {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clp-about__photo {
  width: 100%;
  max-width: 240px;
  border-radius: 22px;
  padding: 8px;
  background: var(--grad-cta);
  box-shadow: var(--shadow-sm);
}
.clp-about__photo img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.clp-about__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}
.clp-about__role {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.clp-about__person {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.clp-about__cred {
  font-size: 12.5px;
  color: var(--blue);
  background: rgba(63, 116, 214, 0.1);
  border: 1px solid rgba(63, 116, 214, 0.22);
  padding: 3px 12px;
  border-radius: 999px;
  margin-top: 8px;
}
.clp-about__x {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 14px;
  color: var(--navy);
  border: 1.5px solid var(--line);
  background: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.clp-about__x:hover {
  transform: translateY(-2px);
  border-color: var(--sky);
  color: var(--blue);
}
.clp-about__body p {
  margin: 0 0 16px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.95;
}
.clp-about__body p:last-child {
  margin-bottom: 0;
}
.clp-about__pts {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (max-width: 880px) {
  .clp-about__pts {
    margin-left: 0 !important;
  }
}
.clp-about__pts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.7;
  text-align: left;
}
.clp-about__pts i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  margin-top: 2px;
}
.clp-about__cta {
  margin-top: 26px;
}
@media (max-width: 880px) {
  .clp-about__cta {
    text-align: center;
  }
}

.clp-mark {
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(transparent 60%, rgba(22, 179, 164, 0.28) 60%);
  padding: 0 0.1em;
}/*# sourceMappingURL=clinic-website.css.map */