:root {
      --green-900:#0c5a49;
      --green-800:#116d58;
      --green-700:#198669;
      --green-500:#47a887;
      --green-300:#9fd8c2;
      --green-100:#eaf8f2;
      --cream:#fffdf9;
      --line:#d9ebe3;
      --text:#1b2b27;
      --muted:#5f6f6a;
      --notice-bg:#f8ecd9;
      --notice-text:#7a5426;
      --shadow:0 20px 45px rgba(12, 90, 73, 0.08);
      --radius-xl:28px;
      --radius-lg:20px;
      --radius-md:14px;
      --container:1120px;
      --content:820px;
    }

    * { box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      margin:0;
      font-family:'Noto Sans JP', sans-serif;
      color:var(--text);
      background:
        linear-gradient(180deg, #f8fcfa 0%, #f8fcfa 44%, #f4faf7 100%);
      line-height:1.8;
    }
    img { max-width:100%; display:block; }
    a { color:inherit; }

    .container {
      width:min(calc(100% - 32px), var(--container));
      margin-inline:auto;
    }
    .content {
      width:min(calc(100% - 32px), var(--content));
      margin-inline:auto;
    }

    .site-header {
      position:sticky;
      top:0;
      z-index:40;
      background:rgba(255,255,255,0.9);
      backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(17,109,88,0.08);
    }
    .site-header__inner {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      min-height:72px;
    }
    .brand {
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      min-width:0;
    }
    .brand img {
      width:42px;
      height:42px;
      border-radius:50%;
      object-fit:cover;
      box-shadow:0 6px 20px rgba(25,134,105,0.18);
      background:#fff;
    }
    .brand__text {
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand__name {
      font-size:15px;
      font-weight:700;
      color:var(--green-900);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand__sub {
      font-size:11px;
      color:var(--green-700);
      letter-spacing:0.08em;
    }

    .nav-toggle {
      display:none;
      width:46px;
      height:46px;
      border:none;
      border-radius:999px;
      background:var(--green-100);
      color:var(--green-900);
      cursor:pointer;
    }
    .nav-toggle span,
    .nav-toggle::before,
    .nav-toggle::after {
      content:"";
      display:block;
      width:20px;
      height:2px;
      margin:0 auto;
      background:currentColor;
      transition:0.25s ease;
    }
    .nav-toggle span { margin:5px auto; }
    .nav-toggle[aria-expanded="true"] span { opacity:0; }
    .nav-toggle[aria-expanded="true"]::before { transform:translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"]::after { transform:translateY(-7px) rotate(-45deg); }

    .site-nav {
      display:flex;
      align-items:center;
      gap:24px;
    }
    .site-nav a {
      text-decoration:none;
      color:var(--muted);
      font-size:13px;
      font-weight:500;
    }
    .site-nav a:hover { color:var(--green-900); }
    .site-nav__cta {
      padding:10px 18px;
      border-radius:999px;
      background:var(--green-800);
      color:#fff !important;
      box-shadow:0 10px 20px rgba(17,109,88,0.18);
    }

    .hero {
      padding:35px 0 32px;
      background:linear-gradient(180deg, #edf9f3 0%, #effaf5 70%, rgba(239,250,245,0) 100%);
      border-bottom:none;
    }
    .hero__panel {
      background:rgba(255,255,255,0.58);
      border:1px solid rgba(255,255,255,0.78);
      border-radius:36px;
      padding:34px 24px 30px;
      text-align:center;
      box-shadow:0 18px 50px rgba(43, 105, 86, 0.08);
    }
    .hero__image-wrap {
      display:flex;
      justify-content:center;
      margin-bottom:18px;
    }
    .hero__image {
      width:min(100%, 620px);
      border-radius:18px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    .hero__line {
      width:min(340px, 70%);
      height:2px;
      margin:0 auto 18px;
      background:linear-gradient(90deg, transparent, var(--green-300), transparent);
    }
    .hero__lead {
      margin:0 auto;
      max-width:650px;
      font-size:15px;
      color:var(--green-900);
    }
    .hero__badges {
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .hero__badge {
      padding:8px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(17,109,88,0.1);
      color:var(--green-800);
      font-size:12px;
      font-weight:700;
      box-shadow:0 8px 18px rgba(20, 110, 88, 0.06);
    }

    main {
      padding:0 0 0;
    }

    .section {
      padding:34px 0;
    }
    .section-card {
      background:#fff;
      border:1px solid rgba(17,109,88,0.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:34px 34px 30px;
    }
    .section-heading {
      display:flex;
      align-items:center;
      gap:12px;
      margin:0 0 20px;
      font-size:24px;
      line-height:1.4;
      color:var(--green-900);
      font-weight:800;
    }
    .section-heading::before {
      content:"";
      width:5px;
      height:24px;
      border-radius:999px;
      background:linear-gradient(180deg, var(--green-700), var(--green-300));
      flex:none;
    }
    .section-intro {
      margin:0 0 18px;
      font-size:14px;
      color:var(--muted);
    }

    .care-grid {
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:12px;
    }
    .care-item {
      background:linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
      border:1px solid #e6f2ed;
      border-radius:16px;
      padding:14px 16px;
      font-size:14px;
      display:flex;
      align-items:center;
      gap:10px;
      min-height:64px;
    }
    .care-item::before {
      content:"";
      width:10px;
      height:10px;
      border-radius:50%;
      background:linear-gradient(180deg, var(--green-500), var(--green-300));
      flex:none;
      box-shadow:0 0 0 5px rgba(159,216,194,0.18);
    }
    .soft-note {
      margin-top:16px;
      padding:13px 16px;
      border-radius:14px;
      background:var(--green-100);
      color:var(--green-800);
      font-size:13px;
    }

    .price-table {
      width:100%;
      border-collapse:collapse;
      overflow:hidden;
      border-radius:18px;
      border:1px solid #dfeee7;
    }
    .price-table thead th {
      background:var(--green-800);
      color:#fff;
      font-size:13px;
      text-align:left;
      padding:14px 18px;
      letter-spacing:0.02em;
    }
    .price-table tbody td {
      background:#fff;
      padding:14px 18px;
      border-top:1px solid #edf5f1;
      font-size:14px;
      vertical-align:top;
    }
    .price-table tbody td:last-child {
      text-align:right;
      font-weight:800;
      color:var(--green-900);
      white-space:nowrap;
    }
    .price-subnote {
      margin-top:12px;
      color:var(--muted);
      font-size:13px;
    }

    .schedule-pills {
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:16px;
    }
    .pill {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:86px;
      padding:10px 18px;
      border-radius:999px;
      background:linear-gradient(180deg, var(--green-800), var(--green-700));
      color:#fff;
      font-weight:800;
      font-size:13px;
      box-shadow:0 10px 20px rgba(17,109,88,0.14);
    }
    .schedule-time {
      font-size:16px;
      color:var(--green-900);
      font-weight:700;
    }
    .schedule-time small {
      font-size:13px;
      color:var(--muted);
      font-weight:500;
      margin-left:8px;
    }

    .area-table {
      width:100%;
      border-collapse:collapse;
      overflow:hidden;
      border-radius:18px;
      border:1px solid #dfeee7;
    }
    .area-table th {
      background:var(--green-800);
      color:#fff;
      font-size:13px;
      text-align:left;
      padding:14px 18px;
    }
    .area-table td {
      padding:14px 18px;
      border-top:1px solid #edf5f1;
      font-size:14px;
      background:#fff;
    }
    .area-table td:last-child {
      text-align:right;
      color:var(--green-900);
      font-weight:800;
      white-space:nowrap;
    }

    .notice-list {
      display:grid;
      gap:10px;
    }
    .notice-item {
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 16px;
      border-radius:14px;
      background:var(--notice-bg);
      color:var(--notice-text);
      font-size:13px;
      line-height:1.7;
    }
    .notice-item::before {
      content:"";
      width:11px;
      height:11px;
      border-radius:50%;
      margin-top:6px;
      background:#f4c564;
      box-shadow:0 0 0 6px rgba(244,197,100,0.14);
      flex:none;
    }

    .profile-box {
      display:grid;
      grid-template-columns:120px 1fr;
      gap:24px;
      align-items:center;
      background:linear-gradient(180deg, #ffffff 0%, #fcfffd 100%);
      border:1px solid #e7f1ec;
      border-radius:20px;
      padding:22px;
    }
    .profile-box__logo {
      width:120px;
      aspect-ratio:1;
      object-fit:cover;
      border-radius:24px;
      background:#fff;
      box-shadow:0 16px 34px rgba(28,117,95,0.10);
    }
    .profile-box p {
      margin:0;
      font-size:14px;
      color:var(--muted);
    }
    .profile-box strong { color:var(--green-900); }

    .faq-list {
      display:grid;
      gap:16px;
    }
    .faq-item {
      border:1px solid #e7f1ec;
      border-radius:18px;
      padding:18px 20px;
      background:#fff;
    }
    .faq-item dt {
      font-weight:800;
      color:var(--green-900);
      margin-bottom:8px;
      font-size:15px;
    }
    .faq-item dd {
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .cta {
      margin-top:42px;
      background:linear-gradient(180deg, var(--green-800) 0%, var(--green-900) 100%);
      color:#fff;
      padding:70px 0 52px;
      position:relative;
      overflow:hidden;
    }
    .cta::before,
    .cta::after {
      content:"";
      position:absolute;
      width:340px;
      height:340px;
      border-radius:50%;
      background:rgba(255,255,255,0.06);
      filter:blur(4px);
    }
    .cta::before { top:-120px; left:-80px; }
    .cta::after { right:-120px; bottom:-160px; }
    .cta__inner {
      position:relative;
      text-align:center;
    }
    .cta__title {
      margin:0 0 10px;
      font-size:30px;
      line-height:1.4;
      font-weight:800;
    }
    .cta__text {
      margin:0 auto 24px;
      max-width:520px;
      color:rgba(255,255,255,0.82);
      font-size:14px;
    }
    .cta__button {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:14px 30px;
      border-radius:999px;
      background:#fff;
      color:var(--green-900);
      text-decoration:none;
      font-weight:800;
      box-shadow:0 16px 36px rgba(0,0,0,0.12);
    }
    .cta__button:hover { transform:translateY(-1px); }
    .cta__note {
      margin-top:16px;
      font-size:12px;
      color:rgba(255,255,255,0.72);
    }

    .site-footer {
      background:#0b4f41;
      color:rgba(255,255,255,0.82);
      padding:28px 0 34px;
      text-align:center;
    }
    .site-footer__logo {
      width:58px;
      margin:0 auto 12px;
      border-radius:50%;
      background:#fff;
      box-shadow:0 10px 26px rgba(0,0,0,0.16);
    }
    .site-footer__name {
      margin:0 0 6px;
      color:#fff;
      font-weight:800;
      font-size:18px;
    }
    .site-footer__meta,
    .site-footer__copy {
      margin:0;
      font-size:12px;
    }
    .site-footer__links {
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:16px;
      margin-top:16px;
    }
    .site-footer__links a {
      font-size:12px;
      color:rgba(255,255,255,0.82);
      text-decoration:none;
    }

    @media (max-width: 960px) {
      .care-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 820px) {
      .nav-toggle { display:block; }
      .site-nav {
        position:absolute;
        left:16px;
        right:16px;
        top:calc(100% + 10px);
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:#fff;
        border:1px solid rgba(17,109,88,0.08);
        border-radius:20px;
        box-shadow:var(--shadow);
        padding:8px;
      }
      .site-nav.is-open { display:flex; }
      .site-nav a {
        padding:12px 14px;
        border-radius:12px;
      }
      .site-nav__cta { text-align:center; margin-top:4px; }
      .hero { padding-top:24px; }
      .hero__panel { border-radius:26px; padding:28px 16px 24px; }
      .section-card { padding:24px 18px 22px; }
      .profile-box { grid-template-columns:1fr; text-align:center; }
      .profile-box__logo { margin:0 auto; }
      .cta { padding:58px 0 46px; }
    }

    @media (max-width: 560px) {
      .brand__sub { display:none; }
      .site-header__inner { min-height:64px; }
      .hero__lead { font-size:14px; }
      .section-heading { font-size:20px; }
      .care-grid { grid-template-columns:1fr; }
      .price-table,
      .area-table,
      .price-table thead,
      .area-table thead,
      .price-table tbody,
      .area-table tbody,
      .price-table tr,
      .area-table tr,
      .price-table th,
      .area-table th,
      .price-table td,
      .area-table td { display:block; width:100%; }
      .price-table thead,
      .area-table thead { display:none; }
      .price-table tr,
      .area-table tr {
        border-top:1px solid #edf5f1;
      }
      .price-table tr:first-child,
      .area-table tr:first-child { border-top:none; }
      .price-table td,
      .area-table td {
        text-align:left !important;
        padding:12px 14px;
      }
      .price-table td:last-child,
      .area-table td:last-child { padding-top:0; }
      .schedule-time small {
        display:block;
        margin:6px 0 0;
      }
      .cta__title { font-size:24px; }
    }


    .entry-card {
      overflow-wrap:anywhere;
    }
    .entry-content {
      color:var(--text);
      font-size:15px;
    }
    .entry-content > *:first-child {
      margin-top:0;
    }
    .entry-content > *:last-child {
      margin-bottom:0;
    }
    .entry-content p,
    .entry-content ul,
    .entry-content ol,
    .entry-content blockquote,
    .entry-content table {
      margin:0 0 1.1em;
    }
    .entry-content h2,
    .entry-content h3,
    .entry-content h4 {
      color:var(--green-900);
      line-height:1.5;
      margin:1.8em 0 0.7em;
    }
    .entry-content h2 {
      font-size:1.5rem;
    }
    .entry-content h3 {
      font-size:1.2rem;
    }
    .entry-content ul,
    .entry-content ol {
      padding-left:1.4em;
    }
    .entry-content li + li {
      margin-top:0.35em;
    }
    .entry-content a {
      color:var(--green-800);
    }
    .entry-content img {
      height:auto;
      border-radius:16px;
    }

/* intro section */
.intro {
  padding-top: 0;
  margin-top: -10px;
}

.intro__card {
  max-width: 820px;
  margin: 0 auto;
}

.intro__lead {
  text-align: center;
}

.intro__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* intro */
.intro {
  margin-top: -10px;
}
.intro__lead {
  text-align: center;
  color: var(--green-900);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.intro__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.intro__badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17,109,88,0.1);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(20, 110, 88, 0.06);
}

.care-item {
  white-space: nowrap;
  font-size: 13px;
}

@media (max-width: 560px) {
  .care-item {
    white-space: normal;
    font-size: 14px;
  }
}