:root {
  --bg: #f7f4ef;
  --bg-soft: #fcfaf6;
  --surface: #ffffff;
  --text: #2f312d;
  --muted: #646861;
  --line: #e7e0d6;
  --primary: #7bae7f;
  --primary-deep: #5f8d63;
  --accent: #e89a8d;
  --accent-deep: #d57f71;
  --shadow: 0 12px 30px rgba(72, 67, 58, 0.08);
  --radius: 18px;
  --radius-small: 12px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p, ul, ol { margin: 0; }
ul { padding-left: 1.2rem; }
h1, h2, h3 { margin: 0; line-height: 1.4; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--text);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 32px), 820px); margin: 0 auto; }
.narrow-wide { align-items: start; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 224, 214, 0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.site-logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef6ee;
}
.site-logo__text {
  font-size: 0.92rem;
  line-height: 1.45;
}
.global-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.global-nav a { color: var(--muted); font-weight: 500; }
.global-nav a[aria-current="page"] { color: var(--text); font-weight: 700; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
}

.hero,
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #f4efe6 0%, #fcfaf6 100%);
}
.page-hero--soft { background: linear-gradient(180deg, #f7f4ef 0%, #fcfaf6 100%); }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-deep);
  background: rgba(123, 174, 127, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero__lead,
.page-hero p { color: var(--muted); font-size: 1.03rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__card {
  padding: 28px;
  border: 1px solid rgba(123, 174, 127, 0.18);
}
.hero__card-title {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.hero__card-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section { padding: 84px 0; }
.section--tint { background: var(--bg); }
.section--compact { padding-top: 64px; padding-bottom: 64px; }
.section-heading {
  text-align: center;
  margin-bottom: 34px;
}
.section-heading--left { text-align: left; }
.section-heading h2 { font-size: clamp(1.65rem, 2.8vw, 2.4rem); }
.section-heading p + h2 { margin-top: 2px; }

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

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  border: 1px solid rgba(231, 224, 214, 0.8);
}
.card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.card p, .card li { color: var(--muted); }
.card-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-link span { margin-top: auto; color: var(--primary-deep); font-weight: 700; }
.card-link:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(72, 67, 58, 0.1); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--accent);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { background: #fff; }
.btn--small { min-height: 42px; padding: 0 18px; font-size: 0.95rem; }

.check-list { display: grid; gap: 10px; }
.check-list li::marker { color: var(--primary-deep); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.step { position: relative; padding-top: 48px; }
.step__number {
  position: absolute;
  left: 26px;
  top: 22px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: 0.08em;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
}
.highlight-list h3 { margin-bottom: 12px; }

.cta-band {
  background: linear-gradient(135deg, rgba(123, 174, 127, 0.18), rgba(232, 154, 141, 0.15));
}
.cta-band__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band__stack { text-align: center; }
.cta-band__stack .hero__actions { justify-content: center; }

.timeline {
  display: grid;
  gap: 18px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(123, 174, 127, 0.28);
}
.timeline-item {
  position: relative;
  margin-left: 24px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #edf5ed;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list--spacious { gap: 16px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 18px 20px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary-deep);
  font-size: 1.2rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 12px; color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
}
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.form-note { color: var(--muted); font-size: 0.92rem; }
.contact-side { display: grid; gap: 20px; }
.link-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.link-list a { color: var(--primary-deep); font-weight: 700; }
.prose-card p { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 36px 0 40px;
  text-align: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
  text-align: center;
}
.site-footer__title { font-weight: 800; margin-bottom: 8px; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer-links a {
  color: var(--muted);
  display: inline-block;
}
.footer-links a:hover { color: var(--primary-deep); }

.soft-panel { background: rgba(255,255,255,0.92); }

@media (max-width: 940px) {
  .hero__inner,
  .steps,
  .grid--3,
  .split-block,
  .day-grid,
  .footer-grid,
  .contact-layout,
  .grid--2,
  .cta-band__inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .cta-band__inner { align-items: start; }
  .global-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: none;
  }
  .global-nav.is-open { display: block; }
  .global-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section { padding-top: 56px; padding-bottom: 56px; }
  .header-inner { gap: 12px; }
  .site-logo__text { font-size: 0.82rem; }
  .hero h1,
  .page-hero h1 { font-size: 1.9rem; }
  .card, .hero__card { padding: 22px; }
  .hero__actions,
  .cta-band__actions { flex-direction: column; }
  .btn, .btn--ghost { width: 100%; }
}


.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-link--accent {
  background: linear-gradient(180deg, #fff7f4 0%, #ffffff 100%);
  border-color: rgba(232, 154, 141, 0.35);
}
.page-hero--kids {
  background: linear-gradient(180deg, #fff4ef 0%, #fcfaf6 100%);
}
.eyebrow--kids {
  color: #9a5f56;
  background: rgba(232, 154, 141, 0.16);
}

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



/* Blog */
.blog-list {
  display: grid;
  gap: 22px;
}
.blog-card {
  display: grid;
  gap: 14px;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(123, 174, 127, 0.12);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.88rem;
}
.blog-card h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}
.blog-card p {
  color: var(--muted);
}
.blog-link {
  color: var(--primary-deep);
  font-weight: 700;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 28px;
  align-items: start;
}
.blog-article {
  padding: 30px;
}
.blog-article__header {
  margin-bottom: 26px;
}
.blog-article__header h1 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin: 10px 0 12px;
}
.blog-article__lead {
  color: var(--muted);
  font-size: 1.02rem;
}
.blog-body {
  display: grid;
  gap: 18px;
}
.blog-body h2,
.blog-body h3 {
  scroll-margin-top: 100px;
}
.blog-body h2 {
  margin-top: 16px;
  font-size: 1.45rem;
}
.blog-body h3 {
  margin-top: 8px;
  font-size: 1.1rem;
}
.blog-body p + h2,
.blog-body ul + h2,
.blog-body ol + h2 {
  margin-top: 22px;
}
.blog-body ul,
.blog-body ol {
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.blog-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.toc {
  display: grid;
  gap: 10px;
}
.toc h2,
.contact-side h2 {
  margin-bottom: 14px;
}
.toc ol,
.toc ul,
.contact-side ul {
  margin-top: 0;
}
.toc-list {
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}
.toc-list a {
  color: var(--primary-deep);
}
.notice-box {
  background: #fff8f5;
  border: 1px solid rgba(232, 154, 141, 0.3);
  border-radius: var(--radius-small);
  padding: 16px 18px;
}
.latest-posts {
  display: grid;
  gap: 18px;
}
.latest-posts .card {
  height: 100%;
}

@media (max-width: 940px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
  }
  .footer-links a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
  }
}


.pagination-wrap { margin-top: 28px; }
.nav-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.nav-links .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; min-height: 42px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.nav-links .current { background: var(--accent); border-color: var(--accent); color: #fff; }
.toc-list__child { margin-left: 0.8rem; }
.blog-card h2 { margin: 0; font-size: 1.28rem; }
.blog-article__header .notice-box { margin-bottom: 0; }


/* Contact Form 7 styling to preserve the static-site appearance */
.contact-form-wrap {
  margin-top: 18px;
}
.contact-form-wrap .wpcf7 {
  width: 100%;
}
.contact-form-wrap .wpcf7 form {
  display: grid;
  gap: 16px;
}
.contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.contact-form-wrap label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-wrap textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(123, 174, 127, 0.12);
}
.contact-form-wrap .wpcf7-submit,
.contact-form-wrap input[type="submit"] {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 14px 22px;
  min-width: 180px;
  cursor: pointer;
  justify-self: start;
  box-shadow: 0 10px 24px rgba(232, 154, 141, 0.25);
}
.contact-form-wrap .wpcf7-submit:hover,
.contact-form-wrap input[type="submit"]:hover {
  transform: translateY(-1px);
}
.contact-form-wrap .wpcf7-spinner {
  margin: 10px 0 0 10px;
}
.contact-form-wrap .wpcf7-not-valid-tip {
  color: #b42318;
  font-size: 0.92rem;
  font-weight: 500;
}
.contact-form-wrap .wpcf7 form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.contact-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-wrap .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form-wrap .wpcf7 form.payment-required .wpcf7-response-output {
  background: #fff5f5;
  border-color: #f3b4b4;
}
.contact-form-wrap .wpcf7 form.sent .wpcf7-response-output {
  background: #f2fbf3;
  border-color: #a8d5ad;
}
.btn-line {
  display: inline-block;
  padding: 12px 16px;
  background: #06C755;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}
.btn-tel {
  display: inline-block;
  padding: 12px 16px;
  background: #7BAE7F;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}
/* ロゴ全体（横並び） */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ロゴ画像 */
.logo-image {
  height: 40px;
  width: auto;
}

/* サブタイトル */
.logo-sub {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* スマホ調整 */
@media (max-width: 480px) {
  .site-logo {
    gap: 8px;
  }

  .logo-image {
    height: 32px;
  }

  .logo-sub {
    font-size: 10px;
    line-height: 1.3;
  }
}
.btn--line {
  background: #06C755;
  color: #fff;
}

.btn--line:hover,
.btn--line:focus {
  background: #05b44d;
  color: #fff;
}

.btn--tel {
  background: #7BAE7F;
  color: #fff;
}

.btn--tel:hover,
.btn--tel:focus {
  background: #689a6c;
  color: #fff;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-lead {
  margin-bottom: 16px;
  font-size: 14px;
  color: #444;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: #777;
}

.contact-side-lead {
  font-size: 13px;
  margin-bottom: 10px;
  color: #666;
}