﻿@charset "UTF-8";

:root {
  --cc-lp-navy: #36574f;
  --cc-lp-navy-deep: #293f3a;
  --cc-lp-teal: #5b7c70;
  --cc-lp-teal-dark: #426359;
  --cc-lp-ink: #303733;
  --cc-lp-muted: #626b65;
  --cc-lp-ivory: #fbf8f0;
  --cc-lp-beige: #f2e8dc;
  --cc-lp-blue-gray: #eaf0eb;
  --cc-lp-coral: #c97f68;
  --cc-lp-coral-soft: #f3ddd4;
  --cc-lp-white: #ffffff;
  --cc-lp-border: #d7ded8;
  --cc-lp-header-height: 64px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--cc-lp-header-height) + 20px);
}

body.cc-lp-page {
  margin: 0;
  background: var(--cc-lp-ivory);
  color: var(--cc-lp-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.cc-lp-root,
.cc-lp-root *,
.cc-lp-root *::before,
.cc-lp-root *::after {
  box-sizing: border-box;
}

.cc-lp-root {
  min-width: 0;
  padding-top: var(--cc-lp-header-height);
  background: var(--cc-lp-ivory);
  color: var(--cc-lp-ink);
}

.cc-lp-root img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cc-lp-root a {
  color: inherit;
}

.cc-lp-root p,
.cc-lp-root h1,
.cc-lp-root h2,
.cc-lp-root h3,
.cc-lp-root ul,
.cc-lp-root ol,
.cc-lp-root dl,
.cc-lp-root dd {
  margin-top: 0;
}

.cc-lp-root h1,
.cc-lp-root h2,
.cc-lp-root h3 {
  color: var(--cc-lp-navy-deep);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.cc-lp-root h1 {
  margin-bottom: 24px;
  max-width: 790px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.cc-lp-root h2 {
  margin-bottom: 28px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.cc-lp-root h3 {
  font-size: 1.15rem;
}

.cc-lp-container {
  width: min(calc(100% - 48px), 1120px);
  margin-inline: auto;
}

.cc-lp-narrow {
  max-width: 900px;
}

.cc-lp-skip-link {
  position: fixed;
  z-index: 10010;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--cc-lp-navy-deep);
  color: var(--cc-lp-white);
  font-weight: 700;
}

.cc-lp-skip-link:focus {
  transform: translateY(0);
}

.cc-lp-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--cc-lp-header-height);
  border-bottom: 1px solid rgba(23, 50, 77, 0.1);
  background: rgba(251, 250, 246, 0.98);
}

body.admin-bar .cc-lp-header {
  top: 32px;
}

.cc-lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.cc-lp-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 10px;
  color: var(--cc-lp-navy-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.cc-lp-brand__image {
  display: block;
  width: auto;
  max-width: min(180px, 48vw);
  max-height: 30px;
  object-fit: contain;
}

.cc-lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid var(--cc-lp-teal);
  border-radius: 5px;
  background: var(--cc-lp-teal);
  color: var(--cc-lp-white) !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.cc-lp-button:hover {
  border-color: var(--cc-lp-teal-dark);
  background: var(--cc-lp-teal-dark);
}

.cc-lp-button:focus-visible,
.cc-lp-text-link:focus-visible,
.cc-lp-brand:focus-visible,
.cc-lp-skip-link:focus-visible {
  outline: 3px solid #e5a84b;
  outline-offset: 3px;
}

.cc-lp-button--small {
  min-height: 38px;
  padding: 7px 15px;
  font-size: 0.9rem;
}

.cc-lp-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 50, 77, 0.08);
}

.cc-lp-hero::after {
  position: absolute;
  z-index: 0;
  right: -80px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(39, 125, 120, 0.055);
  border-radius: 50%;
  content: "";
}

.cc-lp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  align-items: center;
  min-height: 620px;
  padding-block: 78px;
  gap: clamp(40px, 5vw, 64px);
}

.cc-lp-eyebrow,
.cc-lp-section-label {
  margin-bottom: 18px;
  color: var(--cc-lp-teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cc-lp-hero__lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: #3f4d57;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 2;
}

.cc-lp-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.cc-lp-text-link {
  color: var(--cc-lp-navy) !important;
  font-weight: 700;
  text-underline-offset: 5px;
}

.cc-lp-hero__notes {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 0;
  color: var(--cc-lp-muted);
  font-size: 0.92rem;
  gap: 8px 22px;
}

.cc-lp-hero__notes span::before {
  margin-right: 7px;
  color: var(--cc-lp-teal);
  content: "✓";
  font-weight: 700;
}

.cc-lp-hero__aside {
  padding: 34px 30px;
  border: 1px solid rgba(39, 125, 120, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(23, 50, 77, 0.05);
}

.cc-lp-hero__aside-label {
  margin-bottom: 10px;
  color: var(--cc-lp-teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.cc-lp-hero__aside-copy {
  margin-bottom: 25px;
  color: var(--cc-lp-navy-deep);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.6;
}

.cc-lp-hero__aside ul {
  margin-bottom: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--cc-lp-border);
  list-style: none;
}

.cc-lp-hero__aside li {
  position: relative;
  padding: 7px 0 7px 20px;
}

.cc-lp-hero__aside li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-lp-teal);
  content: "";
}

.cc-lp-section {
  padding-block: clamp(66px, 7vw, 96px);
}

.cc-lp-section--compact {
  padding-block: clamp(60px, 6.5vw, 94px);
}

.cc-lp-section--tight {
  padding-block: clamp(48px, 5vw, 70px);
}

.cc-lp-section--soft {
  background: var(--cc-lp-blue-gray);
}

.cc-lp-section--blue {
  background: #f3f7f8;
}

.cc-lp-section--beige {
  background: var(--cc-lp-beige);
}

.cc-lp-section-closing {
  margin: 36px 0 0;
  color: var(--cc-lp-navy);
  font-weight: 700;
  text-align: center;
}

.cc-lp-concerns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid #cbd8db;
  list-style: none;
  column-gap: 42px;
}

.cc-lp-concerns li {
  position: relative;
  padding: 19px 4px 19px 31px;
  border-bottom: 1px solid #cbd8db;
}

.cc-lp-concerns li::before {
  position: absolute;
  top: 20px;
  left: 3px;
  color: var(--cc-lp-teal-dark);
  content: "✓";
  font-weight: 800;
}

.cc-lp-prose {
  max-width: 760px;
  color: #3f4d57;
  font-size: 1.05rem;
}

.cc-lp-prose p {
  margin-bottom: 16px;
}

.cc-lp-role-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid var(--cc-lp-border);
  border-bottom: 1px solid var(--cc-lp-border);
  list-style: none;
}

.cc-lp-role-flow li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px 26px;
}

.cc-lp-role-flow li + li {
  border-left: 1px solid var(--cc-lp-border);
}

.cc-lp-role-flow span {
  margin-bottom: 7px;
  color: var(--cc-lp-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.cc-lp-role-flow strong {
  color: var(--cc-lp-navy-deep);
  font-size: 1.3rem;
}

.cc-lp-role-flow small {
  margin-top: 5px;
  color: var(--cc-lp-muted);
  font-size: 0.9rem;
}

.cc-lp-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 40px;
}

.cc-lp-section-heading > p {
  margin-bottom: 28px;
  color: var(--cc-lp-muted);
}

.cc-lp-service-list {
  margin-top: 30px;
  border-top: 1px solid #cad9dc;
}

.cc-lp-service-list article {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  padding: 25px 0;
  border-bottom: 1px solid #cad9dc;
  gap: 28px;
}

.cc-lp-service-list h3,
.cc-lp-service-list p {
  margin-bottom: 0;
}

.cc-lp-service-list p {
  color: #46565f;
}

.cc-lp-examples {
  margin-top: 56px;
  padding: 36px 40px;
  border-left: 4px solid var(--cc-lp-teal);
  background: rgba(255, 255, 255, 0.7);
}

.cc-lp-examples h3 {
  margin-bottom: 22px;
}

.cc-lp-examples ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  padding-left: 1.3em;
  gap: 8px 40px;
}

.cc-lp-process {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.cc-lp-process li {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  min-width: 0;
  padding-bottom: 27px;
  gap: 22px;
}

.cc-lp-process li:not(:last-child)::before {
  position: absolute;
  top: 51px;
  bottom: 6px;
  left: 27px;
  width: 1px;
  background: #bfd0d3;
  content: "";
}

.cc-lp-process__number {
  display: grid;
  width: 56px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--cc-lp-teal);
  border-radius: 5px;
  background: var(--cc-lp-white);
  color: var(--cc-lp-teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.cc-lp-process h3 {
  margin: 0 0 7px;
}

.cc-lp-process p {
  margin-bottom: 0;
  color: var(--cc-lp-muted);
}

.cc-lp-intro {
  max-width: 720px;
  margin-bottom: 36px;
  color: #46535c;
}

.cc-lp-pricing {
  border-top: 1px solid #d5cdbd;
}

.cc-lp-pricing > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #d5cdbd;
  gap: 30px;
}

.cc-lp-pricing strong {
  color: var(--cc-lp-navy-deep);
  text-align: right;
}

.cc-lp-pricing small {
  display: inline-block;
  margin-left: 7px;
  padding: 1px 7px;
  border: 1px solid #b8aa91;
  border-radius: 3px;
  color: #756951;
  font-size: 0.72rem;
  font-weight: 600;
  vertical-align: middle;
}

.cc-lp-caption {
  margin: 18px 0 0;
  color: #6a655d;
  font-size: 0.9rem;
}

#cc-lp-pricing-title {
  max-width: 780px;
  text-wrap: balance;
}

.cc-lp-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 100px);
}

.cc-lp-trust-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--cc-lp-border);
  list-style: none;
}

.cc-lp-trust-list li {
  position: relative;
  padding: 15px 4px 15px 34px;
  border-bottom: 1px solid var(--cc-lp-border);
}

.cc-lp-trust-list li::before {
  position: absolute;
  top: 15px;
  left: 4px;
  color: var(--cc-lp-teal-dark);
  content: "✓";
  font-weight: 800;
}

.cc-lp-area {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
}

.cc-lp-area p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.cc-lp-profile {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 8vw, 90px);
}

.cc-lp-profile__photo {
  display: grid;
  width: min(100%, 250px);
  aspect-ratio: 4 / 5;
  place-items: center;
  border: 1px solid #ccd8da;
  border-radius: 6px;
  background: var(--cc-lp-blue-gray);
  color: #718087;
  text-align: center;
}

.cc-lp-profile__content > p:not(.cc-lp-section-label) {
  max-width: 680px;
  color: #46535c;
}

.cc-lp-profile__details {
  margin: 34px 0 0;
  border-top: 1px solid var(--cc-lp-border);
}

.cc-lp-profile__details > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 13px 0;
  border-bottom: 1px solid var(--cc-lp-border);
  gap: 20px;
}

.cc-lp-profile__details dt {
  color: var(--cc-lp-navy);
  font-weight: 700;
}

.cc-lp-profile__details dd {
  margin-bottom: 0;
  color: var(--cc-lp-muted);
}

.cc-lp-faq {
  margin: 42px 0 0;
}

.cc-lp-faq > div {
  padding: 22px 0;
  border-top: 1px solid #cad9dc;
}

.cc-lp-faq > div:last-child {
  border-bottom: 1px solid #cad9dc;
}

.cc-lp-faq dt {
  position: relative;
  margin-bottom: 10px;
  padding-left: 38px;
  color: var(--cc-lp-navy-deep);
  font-size: 1.05rem;
  font-weight: 700;
}

.cc-lp-faq dt::before {
  position: absolute;
  left: 0;
  color: var(--cc-lp-teal-dark);
  content: "Q.";
}

.cc-lp-faq dd {
  padding-left: 38px;
  color: #4d5b64;
}

.cc-lp-contact {
  padding-block: clamp(82px, 10vw, 132px);
  background: var(--cc-lp-navy);
  color: var(--cc-lp-white);
  text-align: center;
}

.cc-lp-contact .cc-lp-section-label {
  color: #8fd3cd;
}

.cc-lp-contact h2 {
  color: var(--cc-lp-white);
}

.cc-lp-contact__inner > p:not(.cc-lp-section-label):not(.cc-lp-contact__assurance) {
  font-size: 1.05rem;
}

.cc-lp-contact__placeholder {
  display: grid;
  max-width: 680px;
  margin: 36px auto 0;
  padding: 28px 32px;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  gap: 5px;
}

.cc-lp-contact__placeholder strong {
  font-size: 1.05rem;
}

.cc-lp-contact__placeholder span {
  color: #d9e5e9;
  overflow-wrap: anywhere;
}

.cc-lp-contact__assurance {
  margin: 24px 0 0;
  color: #cfdde3;
  font-size: 0.9rem;
}

.cc-lp-footer {
  padding-block: 34px;
  background: var(--cc-lp-navy-deep);
  color: #d8e2e6;
}

.cc-lp-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.cc-lp-footer__inner > div,
.cc-lp-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cc-lp-footer strong {
  color: var(--cc-lp-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
}

.cc-lp-footer span,
.cc-lp-footer small {
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.cc-lp-footer__meta {
  align-items: flex-end;
  text-align: right;
}

@media (max-width: 1024px) {
  .cc-lp-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 280px);
    min-height: 580px;
    gap: 36px;
  }

  .cc-lp-section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cc-lp-section-heading > p {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  :root {
    --cc-lp-header-height: 58px;
  }

  body.admin-bar .cc-lp-header {
    top: 46px;
  }

  .cc-lp-container {
    width: min(calc(100% - 36px), 1120px);
  }

  .cc-lp-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 70px;
    gap: 42px;
  }

  .cc-lp-hero__aside {
    max-width: 520px;
  }

  .cc-lp-concerns,
  .cc-lp-role-flow,
  .cc-lp-two-column,
  .cc-lp-area,
  .cc-lp-profile {
    grid-template-columns: 1fr;
  }

  .cc-lp-role-flow li + li {
    border-top: 1px solid var(--cc-lp-border);
    border-left: 0;
  }

  .cc-lp-service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cc-lp-examples ul {
    grid-template-columns: 1fr;
  }

  .cc-lp-two-column,
  .cc-lp-area,
  .cc-lp-profile {
    gap: 34px;
  }

  .cc-lp-profile__photo {
    width: min(65%, 240px);
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .cc-lp-container {
    width: min(calc(100% - 28px), 1120px);
  }

  .cc-lp-brand {
    font-size: 1.02rem;
  }

  .cc-lp-button--small {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .cc-lp-hero__inner {
    padding-block: 58px 64px;
  }

  .cc-lp-root h1 {
    margin-bottom: 20px;
    font-size: 1.86rem;
  }

  .cc-lp-root h2 {
    font-size: 1.55rem;
  }

  .cc-lp-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cc-lp-actions .cc-lp-button {
    width: 100%;
  }

  .cc-lp-text-link {
    align-self: center;
  }

  .cc-lp-hero__notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .cc-lp-hero__aside,
  .cc-lp-examples,
  .cc-lp-contact__placeholder {
    padding: 24px 20px;
  }

  .cc-lp-concerns {
    column-gap: 0;
  }

  .cc-lp-role-flow li {
    padding: 24px 20px;
  }

  .cc-lp-pricing > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cc-lp-pricing strong {
    text-align: left;
  }

  .cc-lp-profile__photo {
    width: 100%;
  }

  .cc-lp-profile__details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .cc-lp-footer__inner {
    flex-direction: column;
  }

  .cc-lp-footer__meta {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cc-lp-button {
    transition: none;
  }
}

@media print {
  .cc-lp-root {
    padding-top: 0;
  }

  .cc-lp-header {
    position: static;
  }
}

/* Warm, approachable Clinic Craft visual system. */
.cc-lp-section--soft {
  background: #edf2ed;
}

.cc-lp-section--blue {
  background: #f3f5ef;
}

.cc-lp-button {
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(66, 99, 89, 0.12);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.cc-lp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(66, 99, 89, 0.18);
}

.cc-lp-hero {
  background: linear-gradient(135deg, #fbf8f0 0%, #f7f2e7 55%, #e9f0ea 100%);
}

.cc-lp-hero::after {
  border-color: rgba(91, 124, 112, 0.07);
}

.cc-lp-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  min-height: 660px;
}

.cc-lp-root h1 {
  font-size: clamp(2rem, 3.1vw, 2.3rem);
}

.cc-lp-hero__lead {
  color: #48514c;
}

.cc-lp-hero__aside {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cc-lp-hero__visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 124, 112, 0.22);
  border-radius: 18px 18px 6px 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 54px rgba(41, 63, 58, 0.1);
}

.cc-lp-hero__visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.cc-lp-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cc-lp-hero__visual figcaption {
  padding: 12px 18px 15px;
  color: var(--cc-lp-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.cc-lp-visual-fill {
  fill: #f5eee2;
}

.cc-lp-visual-line,
.cc-lp-visual-person {
  fill: none;
  stroke: #779187;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.cc-lp-visual-person--accent {
  stroke: var(--cc-lp-coral);
}

.cc-lp-visual-table {
  fill: #d9e5dd;
  stroke: #779187;
  stroke-linejoin: round;
  stroke-width: 4;
}

.cc-lp-hero__promise {
  position: relative;
  width: min(92%, 330px);
  margin: -24px 0 0 auto;
  padding: 22px 25px;
  border-left: 4px solid var(--cc-lp-coral);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(41, 63, 58, 0.1);
}

.cc-lp-hero__aside-copy {
  margin-bottom: 0;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.cc-lp-context {
  padding-block: 38px;
  border-bottom: 1px solid var(--cc-lp-border);
  background: #fffdf8;
}

.cc-lp-context__inner {
  padding-left: 24px;
  border-left: 3px solid var(--cc-lp-coral);
}

.cc-lp-context__inner p {
  margin-bottom: 10px;
  color: #4e5751;
  font-size: 1.05rem;
  line-height: 1.85;
}

.cc-lp-context__inner p:last-child {
  margin-bottom: 0;
  color: var(--cc-lp-navy-deep);
  font-weight: 700;
}

.cc-lp-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  min-height: 34px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  padding: 5px 18px;
  border-radius: 999px;
  background: rgba(91, 124, 112, 0.1);
  line-height: 1.45;
  text-align: center;
}

.cc-lp-section h2 {
  width: min(100%, 760px);
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  text-align: center;
  text-wrap: balance;
}

.cc-lp-section-heading {
  display: block;
  text-align: center;
}

.cc-lp-section-heading > p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.cc-lp-concerns {
  gap: 0 42px;
}

.cc-lp-concerns li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  padding: 19px 4px;
  gap: 12px;
}

.cc-lp-concerns li::before {
  display: none;
}

.cc-lp-line-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1.5px solid var(--cc-lp-teal);
  border-radius: 9px;
  color: var(--cc-lp-teal-dark);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.cc-lp-concerns strong,
.cc-lp-concerns small {
  display: block;
}

.cc-lp-concerns small {
  margin-top: 4px;
  color: var(--cc-lp-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.cc-lp-relationship {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(78px, 0.45fr) minmax(170px, 1fr) minmax(78px, 0.45fr) minmax(150px, 1fr);
  align-items: center;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid var(--cc-lp-border);
  border-radius: 10px;
  background: #fffdf8;
}

.cc-lp-relationship > div {
  display: grid;
  min-height: 94px;
  padding: 16px;
  place-content: center;
  border: 1px solid #cfd9d2;
  border-radius: 8px;
  text-align: center;
}

.cc-lp-relationship__center {
  border-color: var(--cc-lp-teal) !important;
  background: #eaf1ec;
}

.cc-lp-relationship span {
  color: var(--cc-lp-navy-deep);
  font-size: 1rem;
  font-weight: 700;
}

.cc-lp-relationship small {
  margin-top: 4px;
  color: var(--cc-lp-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cc-lp-relationship__line {
  position: relative;
  font-size: 0.84rem;
  text-align: center;
}

.cc-lp-relationship__line::after {
  display: block;
  height: 1px;
  margin: 8px 8px 0;
  background: var(--cc-lp-coral);
  content: "";
}

.cc-lp-system-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 34px 0 22px;
  padding: 0;
  border-top: 1px solid var(--cc-lp-border);
  border-bottom: 1px solid var(--cc-lp-border);
  list-style: none;
}

.cc-lp-system-icons li {
  display: grid;
  min-width: 0;
  padding: 20px 8px;
  place-items: center;
  gap: 7px;
  text-align: center;
}

.cc-lp-system-icons li + li {
  border-left: 1px solid var(--cc-lp-border);
}

.cc-lp-system-icons span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1.5px solid var(--cc-lp-teal);
  border-radius: 10px;
  color: var(--cc-lp-teal-dark);
  font-size: 1.08rem;
  line-height: 1;
}

.cc-lp-system-icons strong {
  color: var(--cc-lp-navy-deep);
  font-size: 0.9rem;
}

.cc-lp-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  gap: 18px;
}

.cc-lp-process li {
  display: block;
  padding: 0;
}

.cc-lp-process li:not(:last-child)::before {
  top: 24px;
  right: -18px;
  bottom: auto;
  left: 56px;
  width: calc(100% - 38px);
  height: 1px;
  background: #b9ccc0;
}

.cc-lp-process__number {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  border-color: var(--cc-lp-teal);
  border-radius: 10px;
  background: #fffdf8;
}

.cc-lp-process h3 {
  font-size: 1.02rem;
}

.cc-lp-process p {
  font-size: 0.94rem;
  line-height: 1.7;
}

.cc-lp-profile__photo {
  overflow: hidden;
  border-radius: 18px 18px 6px 18px;
  background: linear-gradient(145deg, #e8eee9, #f4e8df);
}

.cc-lp-profile__photo span::before {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border: 2px solid #8da197;
  border-radius: 50%;
  content: "";
}

.cc-lp-hero__lead {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.16rem);
  line-height: 1.85;
}

.cc-lp-actions {
  margin-top: 38px;
  gap: 24px 34px;
}

.cc-lp-actions .cc-lp-button {
  min-height: 58px;
  padding: 15px 30px;
}

.cc-lp-root .cc-lp-hero__notes {
  margin-top: 30px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.cc-lp-service-list p,
.cc-lp-examples li {
  font-size: 1rem;
  line-height: 1.8;
}

.cc-lp-profile__content > p:not(.cc-lp-section-label) {
  font-size: 1.05rem;
  line-height: 1.85;
}

.cc-lp-faq dd {
  font-size: 1rem;
  line-height: 1.8;
}

.cc-lp-js .cc-lp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.cc-lp-js .cc-lp-reveal.cc-lp-is-visible,
.cc-lp-no-observer .cc-lp-reveal {
  opacity: 1;
  transform: none;
}

.cc-lp-js .cc-lp-process li:nth-child(2) {
  transition-delay: 80ms;
}

.cc-lp-js .cc-lp-process li:nth-child(3) {
  transition-delay: 160ms;
}

.cc-lp-js .cc-lp-process li:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 1024px) {
  .cc-lp-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 300px);
    min-height: 620px;
  }

  .cc-lp-system-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cc-lp-system-icons li:nth-child(4) {
    border-left: 0;
  }

  .cc-lp-system-icons li:nth-child(n+4) {
    border-top: 1px solid var(--cc-lp-border);
  }
}

@media (max-width: 768px) {
  .cc-lp-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cc-lp-hero__aside {
    width: min(100%, 560px);
    max-width: none;
    margin-inline: auto;
  }

  .cc-lp-desktop-break {
    display: none;
  }

  .cc-lp-context {
    padding-block: 32px;
  }

  .cc-lp-relationship {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 10px;
  }

  .cc-lp-relationship__line::after {
    width: 1px;
    height: 22px;
    margin: 6px auto 0;
  }

  .cc-lp-process {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cc-lp-process li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    padding-bottom: 24px;
    gap: 20px;
  }

  .cc-lp-process li:not(:last-child)::before {
    top: 51px;
    right: auto;
    bottom: 5px;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .cc-lp-process__number {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .cc-lp-section-label {
    width: 100%;
    max-width: 240px;
  }

  .cc-lp-hero__promise {
    width: calc(100% - 16px);
    margin-top: -14px;
    padding: 19px 20px;
  }

  .cc-lp-actions {
    margin-top: 32px;
    gap: 20px;
  }

  .cc-lp-actions .cc-lp-button {
    min-height: 56px;
    padding: 14px 22px;
  }

  .cc-lp-root .cc-lp-hero__notes {
    margin-top: 26px;
    font-size: 0.9rem;
  }

  .cc-lp-context__inner p,
  .cc-lp-profile__content > p:not(.cc-lp-section-label),
  .cc-lp-service-list p,
  .cc-lp-examples li,
  .cc-lp-faq dd {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .cc-lp-context__inner {
    padding-left: 17px;
  }

  .cc-lp-concerns li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .cc-lp-line-icon {
    width: 32px;
    height: 32px;
  }

  .cc-lp-system-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-lp-system-icons li:nth-child(3),
  .cc-lp-system-icons li:nth-child(5) {
    border-left: 0;
  }

  .cc-lp-system-icons li:nth-child(n+3) {
    border-top: 1px solid var(--cc-lp-border);
  }

  .cc-lp-system-icons li:nth-child(4) {
    border-left: 1px solid var(--cc-lp-border);
  }

  .cc-lp-profile__photo {
    width: min(78%, 230px);
    margin-inline: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc-lp-button,
  .cc-lp-js .cc-lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* WordPress管理画面から選択した運営者写真 */
.cc-lp-profile__photo--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 管理体制説明文のエディターで指定した太字 */
.cc-lp-context__inner strong {
  color: var(--cc-lp-navy-deep);
  font-weight: 800;
}


/* 支援対象を中央でつなぐClinic Craftハブ図 */
.cc-lp-service-hub {
  position: relative;
  display: grid;
  max-width: 900px;
  margin: 42px auto 28px;
  gap: 26px;
}

.cc-lp-service-hub__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cc-lp-service-hub__item {
  position: relative;
  display: grid;
  min-height: 78px;
  padding: 16px 18px;
  place-items: center;
  border: 1px solid var(--cc-lp-border);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 8px 24px rgba(41, 63, 58, 0.05);
  color: var(--cc-lp-navy-deep);
  font-weight: 700;
  text-align: center;
}

.cc-lp-service-hub__row--top .cc-lp-service-hub__item::after,
.cc-lp-service-hub__row--bottom .cc-lp-service-hub__item::before {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 27px;
  background: rgba(201, 127, 104, 0.7);
  content: "";
}

.cc-lp-service-hub__row--top .cc-lp-service-hub__item::after {
  top: 100%;
}

.cc-lp-service-hub__row--bottom .cc-lp-service-hub__item::before {
  bottom: 100%;
}

.cc-lp-service-hub__center {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 520px);
  min-height: 110px;
  margin-inline: auto;
  padding: 22px 28px;
  place-content: center;
  border: 2px solid var(--cc-lp-teal);
  border-radius: 16px;
  background: #eaf1ec;
  box-shadow: 0 14px 34px rgba(41, 63, 58, 0.1);
  text-align: center;
}

.cc-lp-service-hub__center strong {
  color: var(--cc-lp-navy-deep);
  font-size: 1.35rem;
}

.cc-lp-service-hub__center small {
  margin-top: 5px;
  color: var(--cc-lp-teal-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .cc-lp-service-hub {
    gap: 20px;
  }

  .cc-lp-service-hub__row {
    gap: 12px;
  }

  .cc-lp-service-hub__item {
    min-height: 70px;
    padding: 13px 10px;
    font-size: 0.92rem;
  }

  .cc-lp-service-hub__row--top .cc-lp-service-hub__item::after,
  .cc-lp-service-hub__row--bottom .cc-lp-service-hub__item::before {
    height: 21px;
  }
}

@media (max-width: 480px) {
  .cc-lp-service-hub__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cc-lp-service-hub__item {
    min-height: 56px;
  }

  .cc-lp-service-hub__row--top .cc-lp-service-hub__item::after,
  .cc-lp-service-hub__row--bottom .cc-lp-service-hub__item::before {
    display: none;
  }

  .cc-lp-service-hub__center {
    min-height: 96px;
    padding: 20px;
  }
}

/* 支援図の見やすさ改善：中央支援帯＋6項目カード */
.cc-lp-service-hub {
  max-width: 900px;
  margin: 38px auto 30px;
  gap: 18px;
}

.cc-lp-service-hub__center {
  order: -1;
  width: 100%;
  min-height: auto;
  padding: 20px 28px;
  border-width: 1px;
  border-radius: 12px;
  background: #eaf1ec;
  box-shadow: none;
}

.cc-lp-service-hub__center strong {
  font-size: 1.22rem;
}

.cc-lp-service-hub__center small {
  margin-top: 3px;
  font-size: 0.92rem;
}

.cc-lp-service-hub__row {
  gap: 14px;
}

.cc-lp-service-hub__item {
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 9px;
  box-shadow: none;
}

.cc-lp-service-hub__row--top .cc-lp-service-hub__item::after,
.cc-lp-service-hub__row--bottom .cc-lp-service-hub__item::before {
  display: none;
}

@media (max-width: 768px) {
  .cc-lp-service-hub {
    gap: 14px;
  }

  .cc-lp-service-hub__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cc-lp-service-hub__item {
    min-height: 58px;
  }
}

@media (max-width: 480px) {
  .cc-lp-service-hub__row {
    grid-template-columns: 1fr;
  }

  .cc-lp-service-hub__center {
    padding: 18px 16px;
  }
}


/* Contact Form 7: Clinic Craft LP */
.cc-lp-contact__form {
  width: min(100%, 760px);
  margin: 38px auto 0;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--cc-lp-ink);
  text-align: left;
  box-shadow: 0 18px 45px rgba(25, 48, 42, 0.16);
}

.cc-lp-contact__form .wpcf7-form > p {
  margin-bottom: 20px;
}

.cc-lp-contact__form label {
  display: block;
  color: var(--cc-lp-navy-deep);
  font-weight: 700;
}

.cc-lp-contact__form input[type="text"],
.cc-lp-contact__form input[type="email"],
.cc-lp-contact__form input[type="tel"],
.cc-lp-contact__form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid #c9d4cd;
  border-radius: 7px;
  background: #fff;
  color: var(--cc-lp-ink);
  font: inherit;
}

.cc-lp-contact__form textarea {
  min-height: 160px;
  resize: vertical;
}

.cc-lp-contact__form input:focus,
.cc-lp-contact__form textarea:focus {
  border-color: var(--cc-lp-teal);
  outline: 3px solid rgba(91, 124, 112, 0.16);
  outline-offset: 1px;
}

.cc-lp-contact__form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 500;
}

.cc-lp-contact__form input[type="submit"] {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid var(--cc-lp-coral);
  border-radius: 8px;
  background: var(--cc-lp-coral);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cc-lp-contact__form input[type="submit"]:hover {
  filter: brightness(0.94);
}

.cc-lp-contact__form .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #a53b2f;
  font-size: 0.88rem;
}

.cc-lp-contact__form .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 7px;
  color: var(--cc-lp-ink);
}

.cc-lp-contact__fallback {
  margin: 0;
  color: var(--cc-lp-ink);
  text-align: center;
}

.cc-lp-contact__fallback a {
  color: var(--cc-lp-teal-dark);
  font-weight: 700;
}

.cc-required,
.cc-optional {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1.5;
  vertical-align: 0.08em;
}

.cc-required {
  background: var(--cc-lp-coral-soft);
  color: #8d4435;
}

.cc-optional {
  background: #e7ece8;
  color: var(--cc-lp-muted);
}

/* 運営者写真が未設定のとき */
.cc-lp-profile--no-photo {
  grid-template-columns: minmax(0, 1fr);
}

.cc-lp-profile--no-photo .cc-lp-profile__content {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

/* note紹介欄 */
.cc-lp-note {
  padding-block: clamp(58px, 7vw, 86px);
  border-top: 1px solid var(--cc-lp-border);
  background: #fffdf8;
}

.cc-lp-note__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.cc-lp-note .cc-lp-section-label {
  justify-content: flex-start;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
  border-radius: 0;
  text-align: left;
}

.cc-lp-note h2 {
  width: auto;
  margin: 0 0 14px;
  text-align: left;
}

.cc-lp-note p:last-child {
  margin-bottom: 0;
  color: var(--cc-lp-muted);
}

.cc-lp-button--note {
  min-width: 190px;
}

@media (max-width: 768px) {
  .cc-lp-note__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cc-lp-button--note {
    width: 100%;
  }
}

/* note紹介画像 */
.cc-lp-note__inner--with-image {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
}

.cc-lp-note__content {
  min-width: 0;
}

.cc-lp-note__image {
  display: block;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  border: 1px solid var(--cc-lp-border);
  border-radius: 14px;
  background: var(--cc-lp-blue-gray);
  box-shadow: 0 14px 34px rgba(41, 63, 58, 0.09);
}

.cc-lp-note__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cc-lp-note__inner--with-image .cc-lp-note__content {
  grid-column: 1;
  grid-row: 1;
}

.cc-lp-note__content .cc-lp-button--note {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .cc-lp-note__inner--with-image {
    grid-template-columns: 1fr;
  }

  .cc-lp-note__image,
  .cc-lp-note__inner--with-image .cc-lp-note__content {
    grid-column: 1;
  }

  .cc-lp-note__image {
    grid-row: 1;
  }

  .cc-lp-note__inner--with-image .cc-lp-note__content {
    grid-row: 2;
  }
}

/* 問い合わせ増加施策：30分相談の流れ */
.cc-lp-contact__steps {
  display: grid;
  width: min(100%, 760px);
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  gap: 10px;
  text-align: left;
}

.cc-lp-contact__steps li {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  gap: 12px;
}

.cc-lp-contact__steps li span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: #fffdf8;
  color: var(--cc-lp-navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Contact Form 7：選択肢を押しやすく */
.cc-lp-contact__form .wpcf7-checkbox {
  display: grid;
  gap: 10px;
}

.cc-lp-contact__form .wpcf7-list-item {
  margin: 0;
}

.cc-lp-contact__form .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid #d5ded8;
  border-radius: 7px;
  background: #fff;
  gap: 9px;
  font-weight: 500;
}

.cc-lp-contact__form input[type="checkbox"] {
  flex: 0 0 auto;
  margin: 0.28em 0 0 !important;
}

.cc-lp-contact__form .cc-form-note {
  margin: -8px 0 18px;
  color: var(--cc-lp-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cc-lp-contact__form .cc-form-reassurance {
  margin: 24px 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--cc-lp-teal);
  border-radius: 6px;
  background: #edf3ef;
  color: var(--cc-lp-navy-deep);
  font-size: 0.92rem;
  line-height: 1.8;
}

@media (max-width: 480px) {
  .cc-lp-contact__steps li {
    padding: 11px 13px;
    font-size: 0.94rem;
  }
}

