:root {
  --cream: #fbf3ea;
  --cream-deep: #f8efe3;
  --paper: #fffaf4;
  --mint: #a8d5ba;
  --mint-soft: #dceee3;
  --salmon: #e89b8b;
  --salmon-deep: #c56f61;
  --ink: #332d2b;
  --muted: #6f625d;
  --line: #ead8ca;
  --white: #fffdf9;
  --shadow: 0 22px 50px rgba(102, 78, 61, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(168, 213, 186, 0.28), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(232, 155, 139, 0.22), transparent 22%),
    var(--cream);
  color: var(--ink);
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
.brand-main,
.footer-brand {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(31px, 4.6vw, 54px);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
}

p {
  margin-bottom: 20px;
}

rt {
  font-size: 0.48em;
}

:focus-visible {
  outline: 3px solid rgba(197, 111, 97, 0.42);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(251, 243, 234, 0.9);
  border-bottom: 1px solid rgba(234, 216, 202, 0.72);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 12px 30px rgba(102, 78, 61, 0.1);
}

.brand {
  color: var(--ink);
  display: grid;
  min-width: max-content;
  text-decoration: none;
}

.brand-main {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.1;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 5px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 7px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--salmon-deep);
  text-decoration: underline;
  text-decoration-color: var(--salmon);
  text-decoration-style: dotted;
  text-decoration-thickness: 3px;
}

.nav-contact {
  background: var(--salmon);
  border-radius: 999px;
  color: #fff !important;
  padding: 10px 18px;
  text-decoration: none !important;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--salmon-deep);
}

.menu-button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  background: var(--salmon-deep);
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 20px;
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  left: 0;
  position: absolute;
}

.menu-button i::before {
  top: -6px;
}

.menu-button i::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] i {
  background: transparent;
}

.menu-button[aria-expanded="true"] i::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 7vw, 94px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  margin: 0 auto;
  max-width: calc(var(--content) + 96px);
  min-height: min(760px, calc(100vh - 82px));
  padding: clamp(40px, 6vw, 76px) clamp(20px, 5vw, 48px) clamp(42px, 6vw, 74px);
}

.hero-text p {
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 2;
  max-width: 720px;
}

.hero-text h1::after,
.section-heading h2::after,
.page-hero h1::after {
  background:
    radial-gradient(circle, var(--salmon) 1.8px, transparent 2.5px) repeat-x left bottom / 10px 6px;
  content: "";
  display: block;
  height: 8px;
  margin-top: 12px;
  width: min(100%, 320px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 700;
  justify-content: center;
  min-height: 56px;
  padding: 12px 24px;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--salmon);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--salmon-deep);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--salmon-deep);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--salmon);
}

.hero-illustration {
  align-self: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.74), transparent 60%),
    var(--mint-soft);
  border: 1px solid rgba(168, 213, 186, 0.7);
  border-radius: 48% 52% 45% 55% / 53% 43% 57% 47%;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 42px);
}

.section,
.news-band,
.cta-band {
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(58px, 8vw, 106px) clamp(20px, 5vw, 42px);
}

.section-label {
  color: var(--salmon-deep);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-heading {
  max-width: 820px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.news-band {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: 210px 1fr;
  margin-bottom: clamp(18px, 4vw, 34px);
  padding-top: 34px;
  padding-bottom: 34px;
}

.news-band h2 {
  font-size: clamp(25px, 3vw, 36px);
  margin: 0;
}

.news-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 118px 1fr;
  padding-bottom: 14px;
}

.news-list time {
  color: var(--salmon-deep);
  font-weight: 700;
}

.intro-section,
.service-preview,
.care-section,
.access-preview,
.flow-section,
.faq-section,
.visit-note,
.no-form-section {
  border-top: 1px solid rgba(234, 216, 202, 0.75);
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 20px;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 780px;
}

.text-link {
  color: var(--salmon-deep);
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  text-decoration: underline;
  text-decoration-color: var(--salmon);
  text-decoration-style: dotted;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.soft-card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.soft-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.soft-card {
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(102, 78, 61, 0.08);
  min-height: 250px;
  padding: clamp(24px, 3vw, 32px);
}

.soft-card img {
  height: 86px;
  margin-bottom: 24px;
  width: 86px;
}

.soft-card p,
.access-card p,
.care-panel p,
.service-detail p,
.message-box p,
.philosophy-list p,
.contact-note p,
.no-form-section p {
  color: var(--muted);
}

.policy-section {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
}

.policy-lead {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
}

.policy-lead p {
  color: var(--muted);
}

.policy-date {
  color: var(--ink) !important;
  font-weight: 700;
  margin-bottom: 0;
}

.policy-list {
  display: grid;
  gap: 22px;
}

.policy-list article {
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 34px);
}

.policy-list h2 {
  font-size: clamp(23px, 2.7vw, 32px);
  margin-bottom: 14px;
}

.policy-list p {
  color: var(--muted);
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.care-panel,
.access-card,
.cta-band,
.info-panel,
.contact-main,
.contact-note,
.message-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.care-panel {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(30px, 5vw, 54px);
}

.access-card {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 26px;
  padding: clamp(28px, 4vw, 42px);
}

.address {
  color: var(--ink) !important;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
}

.page-hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  margin: 0 auto;
  max-width: calc(var(--content) + 84px);
  padding: clamp(58px, 9vw, 118px) clamp(20px, 5vw, 42px) clamp(46px, 7vw, 86px);
}

.page-hero p {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  max-width: 760px;
}

.page-hero img {
  background: rgba(255, 253, 249, 0.64);
  border: 1px solid rgba(234, 216, 202, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px);
}

.two-column {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 90px);
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
}

.message-box {
  padding: clamp(28px, 4vw, 46px);
}

.signature {
  color: var(--ink) !important;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: right;
}

.philosophy-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.philosophy-list article {
  border-left: 5px dotted var(--mint);
  padding-left: 24px;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail {
  align-items: start;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 24px;
  grid-template-columns: 86px 1fr;
  padding: clamp(26px, 4vw, 42px);
}

.service-number {
  align-items: center;
  background: var(--mint-soft);
  border: 1px solid var(--mint);
  border-radius: 50%;
  color: #3f7660;
  display: inline-flex;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.flow-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 36px 0 0;
  max-width: 920px;
  padding: 0;
}

.flow-list li {
  align-items: start;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 58px 1fr;
  padding: 26px 0;
}

.flow-list li:last-child {
  border-bottom: 1px dashed var(--line);
}

.flow-list span {
  align-items: center;
  background: var(--salmon);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.check-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 30px 0 0;
  max-width: 860px;
  padding: 0;
}

.check-list li {
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px 16px 52px;
  position: relative;
}

.check-list li::before {
  background: var(--mint);
  border-radius: 50%;
  color: #fff;
  content: "";
  height: 18px;
  left: 20px;
  position: absolute;
  top: 24px;
  width: 18px;
}

.check-list li::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  height: 5px;
  left: 24px;
  position: absolute;
  top: 29px;
  transform: rotate(-45deg);
  width: 9px;
}

.check-list.compact {
  gap: 10px;
  margin-top: 18px;
}

.check-list.compact li {
  background: transparent;
  padding-top: 12px;
  padding-bottom: 12px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.faq-list p {
  color: var(--muted);
  margin: 18px 0 0;
}

.access-layout,
.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.info-panel,
.contact-main,
.contact-note {
  padding: clamp(26px, 4vw, 42px);
}

.info-list,
.contact-list {
  display: grid;
  gap: 0;
  margin-bottom: 0;
}

.info-list div,
.contact-list div {
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 116px 1fr;
  padding: 18px 0;
}

.info-list div:last-child,
.contact-list div:last-child {
  border-bottom: 1px dashed var(--line);
}

.info-list dt,
.contact-list dt {
  color: var(--muted);
  font-weight: 700;
}

.info-list dd,
.contact-list dd {
  font-weight: 700;
  margin-left: 0;
}

.contact-list a {
  color: var(--salmon-deep);
  overflow-wrap: anywhere;
}

.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 460px;
  overflow: hidden;
}

.map-panel iframe {
  border: 0;
  display: block;
  height: 460px;
  width: 100%;
}

.contact-main .button {
  margin-top: 28px;
}

.contact-note {
  background: var(--cream-deep);
}

.cta-band {
  align-items: center;
  background: var(--mint-soft);
  border: 1px solid var(--mint);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(58px, 8vw, 96px);
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

.cta-band h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0;
}

.site-footer {
  align-items: start;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.8fr) minmax(220px, 0.7fr) minmax(280px, 1fr);
  padding: 42px clamp(20px, 5vw, 70px);
}

.footer-brand {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  text-decoration: none;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 6px;
}

.footer-note {
  justify-self: end;
  max-width: 460px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    padding: 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-size: 16px;
    min-height: 42px;
  }

  .hero,
  .page-hero,
  .intro-grid,
  .care-panel,
  .access-card,
  .two-column,
  .access-layout,
  .contact-layout,
  .policy-section,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-illustration,
  .page-hero img {
    justify-self: center;
    max-width: 520px;
  }

  .news-band {
    grid-template-columns: 1fr;
  }

  .soft-card-grid,
  .soft-card-grid.two,
  .philosophy-list {
    grid-template-columns: 1fr;
  }

  .cta-band .button,
  .care-panel .button {
    justify-self: start;
  }

  .footer-note {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .hero,
  .page-hero,
  .section,
  .news-band,
  .cta-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-illustration {
    display: none;
  }

  .button {
    width: 100%;
  }

  .news-list li,
  .service-detail,
  .flow-list li,
  .info-list div,
  .contact-list div {
    grid-template-columns: 1fr;
  }

  .service-number {
    height: 58px;
    width: 58px;
  }

  .soft-card,
  .care-panel,
  .access-card,
  .info-panel,
  .contact-main,
  .contact-note,
  .message-box {
    border-radius: 22px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
