@charset "UTF-8";

:root {
  --color-text: #2f3d44;
  --color-muted: #66757c;
  --color-main: #77bddc;
  --color-main-deep: #3f91b9;
  --color-main-soft: #e9f7fc;
  --color-yellow: #ffe69b;
  --color-yellow-soft: #fff8db;
  --color-green: #8bbf85;
  --color-white: #ffffff;
  --color-bg: #fbfdfe;
  --color-line: #dbeaf0;
  --color-card-line: #d8edf4;
  --shadow-card: 0 18px 45px rgba(88, 137, 153, 0.14);
  --shadow-soft: 0 10px 30px rgba(80, 132, 149, 0.12);
  --font-sans: "Noto Sans JP", sans-serif;
  --container: 1120px;
  --container-wide: 1240px;
  --radius-card: 18px;
  --radius-small: 10px;
  --header-height: 86px;
  --section-space: 96px;
}

body {
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
}

body.is-menu-open {
  overflow: hidden;
}

.site-shell {
  overflow: hidden;
}

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

.container--wide {
  width: min(100% - 48px, var(--container-wide));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section--soft {
  background: #f5f4f0;
}

.section--soft-blue {
  background: #eef9fd;
}

.section--warm {
  background: #fdf8f0;
}

.section--warm + .section--soft {
  padding-top: 52px;
}

.section--warm {
  padding-bottom: 52px;
}

.section__head {
  margin-bottom: 36px;
}

.section__head--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section__head--center .section__label {
  justify-content: center;
}

.section__head--center .section__label::before {
  display: none;
}

.section__head--center .section__label::after {
  width: 28px;
  height: 1px;
  background: var(--color-main);
  content: "";
}

.section__head--center .section__lead {
  margin-inline: auto;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--color-main-deep);
  font-size: 13px;
  font-weight: 700;
}

.section__label::before {
  width: 28px;
  height: 1px;
  background: var(--color-main);
  content: "";
}

.section__title {
  font-size: 42px;
  line-height: 1.35;
  color: #1f2d35;
}

.section__title::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: #eec251;
  content: "";
}

.section__lead {
  max-width: 660px;
  margin-top: 16px;
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(219, 234, 240, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 700;
}

.site-logo__mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--color-main);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 8px 18px rgba(102, 175, 204, 0.18);
}

.site-logo__mark::before,
.site-logo__mark::after {
  position: absolute;
  width: 17px;
  height: 25px;
  border: 2px solid var(--color-green);
  border-radius: 999px 999px 0 999px;
  content: "";
  transform: rotate(-35deg);
}

.site-logo__mark::after {
  width: 14px;
  height: 21px;
  border-color: var(--color-yellow);
  transform: translate(8px, 5px) rotate(36deg);
}

.site-logo__name {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.site-logo__sub {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.global-nav__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #42525a;
  font-size: 14px;
  font-weight: 700;
}

.global-nav__link:hover,
.global-nav__link.is-active {
  color: var(--color-main-deep);
  background: var(--color-main-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-nav .header-actions {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-white);
}

.nav-toggle__line {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-main-deep);
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-main-deep);
  content: "";
}

.nav-toggle__line::before {
  top: -7px;
}

.nav-toggle__line::after {
  top: 7px;
}

.button {
  display: inline-flex;
  width: 180px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--color-white);
  background: var(--color-main-deep);
  box-shadow: 0 10px 22px rgba(63, 145, 185, 0.22);
}

.button--primary:hover {
  background: #327fa4;
}

.button--secondary {
  color: #5a4a17;
  background: var(--color-yellow);
  box-shadow: 0 10px 22px rgba(240, 190, 69, 0.2);
}

.button--outline {
  border: 2px solid var(--color-main-deep);
  color: var(--color-main-deep);
  background: var(--color-white);
  padding: 12px 32px;
  font-weight: 700;
}

.button__icon {
  font-size: 17px;
}

.hero-home {
  position: relative;
  min-height: 580px;
  padding: 58px 0 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.72) 47%, rgba(255, 255, 255, 0.12) 74%),
    url("../images/hero/hero-main.png") center / cover no-repeat;
}

.hero-home::after {
  position: absolute;
  right: 7%;
  bottom: -58px;
  width: 280px;
  height: 210px;
  background: url("../images/decorative/leaf-set.png") center / cover no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.hero-home__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 470px;
  align-items: center;
}

.hero-home__content {
  max-width: 660px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 18px;
  border: 1px solid rgba(119, 189, 220, 0.38);
  border-radius: 999px;
  color: var(--color-main-deep);
  background: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.hero-home__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-home__lead {
  max-width: 660px;
  margin-top: 18px;
  color: #4b5d65;
  font-size: 17px;
  font-weight: 700;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-home__actions .button {
  min-width: 178px;
}

.hero-home__button--contact {
  color: var(--color-white);
  background: var(--color-main-deep);
  box-shadow: 0 10px 22px rgba(63, 145, 185, 0.22);
}

.hero-home__button--contact:hover {
  background: #327fa4;
}

.hero-home__button--service {
  color: #4d3a08;
  background: #eec251;
  box-shadow: 0 10px 22px rgba(238, 194, 81, 0.24);
}

.hero-home__button--service:hover {
  background: #dfb33f;
}

.sub-hero {
  position: relative;
  min-height: 580px;
  padding: 58px 0 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.72) 47%, rgba(255, 255, 255, 0.12) 74%),
    url("../images/hero/hero-main.png") center / cover no-repeat;
}

.sub-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 470px;
  align-items: center;
}

.sub-hero__content {
  max-width: 640px;
}

.sub-hero__label {
  color: var(--color-main-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sub-hero__title {
  margin-top: 10px;
  color: var(--color-text);
  font-size: 54px;
  line-height: 1.25;
}

.sub-hero__text {
  max-width: 560px;
  margin-top: 18px;
  color: var(--color-muted);
}

.sub-hero__visual {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(171, 139, 77, 0.13);
  aspect-ratio: 4 / 3;
  background: var(--color-white);
}

.sub-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero__visual--placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  border: none;
  box-shadow: 0 18px 45px rgba(171, 139, 77, 0.1);
  color: var(--color-main-deep);
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 230, 155, 0.72), transparent 38%),
    linear-gradient(135deg, #fffdf7, #fff8e8);
  font-weight: 700;
  text-align: center;
}

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

.card {
  overflow: hidden;
  border: 1px solid rgba(226, 200, 127, 0.3);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(171, 139, 77, 0.1);
}

.card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  padding: 28px;
}

.card__title {
  font-size: 20px;
  line-height: 1.45;
}

.card__text {
  margin-top: 12px;
  color: var(--color-muted);
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.office-info__row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
}

.office-info__row:first-child {
  border-top: 1px solid var(--color-line);
}

.office-info__label {
  flex-shrink: 0;
  width: 120px;
  font-weight: 500;
  color: var(--color-text);
}

.office-info__value {
  color: var(--color-muted);
}

.home-service {
  position: relative;
  padding: 104px 0 96px;
}

.home-service::before {
  position: absolute;
  top: 36px;
  left: max(18px, calc((100vw - var(--container-wide)) / 2));
  width: 180px;
  height: 132px;
  background: url("../images/decorative/leaf-set.png") center / cover no-repeat;
  content: "";
  opacity: 0.07;
  pointer-events: none;
}

.home-service::after {
  position: absolute;
  right: max(18px, calc((100vw - var(--container-wide)) / 2));
  bottom: 26px;
  width: 150px;
  height: 110px;
  background: url("../images/decorative/leaf-set.png") center / cover no-repeat;
  content: "";
  opacity: 0.06;
  pointer-events: none;
}

.home-service .section__head {
  margin-bottom: 52px;
}

.home-service .section__label {
  color: var(--color-main-deep);
}

.home-service .section__title {
  color: var(--color-text);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

.home-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.home-service-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 286px;
  padding: 34px 30px 32px;
  border: 1px solid rgba(119, 189, 220, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.home-service-card__icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #f3fbfe;
}

.home-service-card__icon img {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
  object-position: center;
}

.home-service-card__icon--care img {
  width: 70px;
  height: 70px;
  transform: translate(1px, 1px);
}

.home-service-card__icon--life img {
  width: 72px;
  height: 72px;
  transform: translate(0, -1px);
}

.home-service-card__icon--consultation img {
  width: 68px;
  height: 68px;
  transform: translate(0, 1px);
}

.home-service-card .card__title {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.home-service-card .card__text {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

.home-reason {
  position: relative;
  padding: 76px 0 82px;
  background:
    linear-gradient(180deg, #fffaf0 0%, #fff7e2 100%);
}

.home-reason::after {
  position: absolute;
  right: max(18px, calc((100vw - var(--container-wide)) / 2));
  top: 74px;
  width: 210px;
  height: 150px;
  background: url("../images/decorative/leaf-set.png") center / cover no-repeat;
  content: "";
  opacity: 0.09;
  pointer-events: none;
}

.home-reason .section__head {
  max-width: 760px;
  margin-bottom: 38px;
}

.home-reason .section__label {
  margin-bottom: 8px;
  color: var(--color-main-deep);
  font-size: 13px;
}

.home-reason .section__title {
  color: #314650;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.home-reason .section__title::after {
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #eec251;
  content: "";
}

.home-reason .section__lead {
  max-width: 620px;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
}

.reason-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reason-card {
  min-height: 178px;
  padding: 26px 28px;
  border: 1px solid rgba(226, 200, 127, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(171, 139, 77, 0.08);
}

.reason-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff1bf;
}

.reason-card__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  object-position: center;
}

.reason-card__title {
  color: #314650;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.reason-card__text {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.85;
}

.home-staff {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.home-staff::after {
  position: absolute;
  right: max(22px, calc((100vw - var(--container-wide)) / 2));
  top: 56px;
  width: 170px;
  height: 212px;
  background: url("../images/decorative/leaf02-transparent.png") center / contain no-repeat;
  content: "";
  opacity: 0.36;
  pointer-events: none;
}

.home-staff__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(320px, 1fr);
  align-items: center;
  gap: 58px;
}

.home-staff__visual {
  position: relative;
}

.home-staff__visual::before {
  position: absolute;
  inset: 24px -18px -18px 24px;
  border-radius: 30px;
  background: var(--color-main-soft);
  content: "";
}

.home-staff__visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 8px solid var(--color-white);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.home-staff__content .button {
  margin-top: 30px;
}

.cta {
  position: relative;
  padding: 76px 0;
  background: #eaf4f8;
}

.cta--home {
  overflow: hidden;
  padding: 86px 0 92px;
  background: #eaf4f8;
}

.cta--home::before {
  display: none;
}

.cta-home__head {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  text-align: center;
}

.cta-home__head .cta__label {
  justify-content: center;
}

.cta-home__head .cta__title::after {
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #eec251;
  content: "";
}

.cta-home__card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 620px);
  margin-inline: auto;
  padding: 34px 38px;
  border: 1px solid rgba(119, 189, 220, 0.2);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(88, 137, 153, 0.11);
  text-align: center;
}

.cta-home__icon {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #eec251;
  box-shadow: 0 10px 22px rgba(238, 194, 81, 0.2);
}

.cta-home__icon::before,
.cta-home__icon::after {
  position: absolute;
  content: "";
}

.cta-home__icon::before {
  top: 21px;
  left: 18px;
  width: 32px;
  height: 24px;
  border: 3px solid var(--color-white);
  border-radius: 7px;
}

.cta-home__icon::after {
  top: 26px;
  left: 21px;
  width: 26px;
  height: 14px;
  border-right: 3px solid var(--color-white);
  border-bottom: 3px solid var(--color-white);
  transform: rotate(45deg) skew(-10deg, -10deg);
  transform-origin: center;
}

.cta-home__card-title {
  color: #40545d;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}

.cta-home__body {
  margin-top: 18px;
}

.cta-home__text {
  max-width: 430px;
  margin: 8px auto 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.cta-home__button {
  min-width: 190px;
  min-height: 46px;
  margin-top: 18px;
  color: #4d3a08;
  background: #eec251;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(238, 194, 81, 0.24);
}

.cta-home__button:hover {
  background: #dfb33f;
}

.cta::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(226, 200, 127, 0.32);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.cta__label {
  color: var(--color-main-deep);
  font-size: 14px;
  font-weight: 700;
}

.cta__title {
  margin-top: 8px;
  font-size: 42px;
  line-height: 1.35;
  color: #314650;
}

.cta__title::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: #eec251;
  content: "";
}

.cta__text {
  max-width: 620px;
  margin-top: 12px;
  color: var(--color-muted);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.home-service .section__head,
.home-reason .section__head,
.cta-home__head {
  margin-bottom: 40px;
}

.home-service .section__label,
.home-reason .section__label,
.home-staff__content .section__label,
.cta-home__head .cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--color-main-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.cta-home__head .cta__label::after {
  width: 28px;
  height: 1px;
  background: var(--color-main);
  content: "";
}

.home-service .section__title,
.home-reason .section__title,
.home-staff__content .section__title,
.cta-home__head .cta__title {
  margin-top: 0;
  color: #314650;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.home-service .section__title::after,
.home-reason .section__title::after,
.home-staff__content .section__title::after,
.cta-home__head .cta__title::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: #eec251;
  content: "";
}

.home-service .section__title::after,
.home-reason .section__title::after,
.cta-home__head .cta__title::after {
  margin-right: auto;
  margin-left: auto;
}

.home-service .section__lead,
.home-reason .section__lead,
.home-staff__content .section__lead {
  margin-top: 18px;
}

.home-service .section__lead,
.home-reason .section__lead,
.home-staff__content .section__lead {
  max-width: 660px;
  font-size: 15px;
  line-height: 1.9;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(226, 200, 127, 0.3);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 8px 22px rgba(171, 139, 77, 0.08);
}

.faq-item__question {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  color: var(--color-text);
  font-weight: 700;
  text-align: left;
}

.faq-item__question::before {
  flex: 0 0 auto;
  color: var(--color-main-deep);
  content: "Q";
  font-size: 18px;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff1bf;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-main-deep);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer p {
  padding: 0 24px 22px 58px;
  color: var(--color-muted);
}

.site-footer {
  padding: 64px 0 28px;
  color: #49606a;
  background: #f3fbfe;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.5fr;
  gap: 52px;
}

.site-footer__info {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 14px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #42525a;
  font-weight: 700;
}

.site-footer__link::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
  content: "";
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 13px;
}

.placeholder-note {
  color: var(--color-muted);
  font-size: 14px;
}

.staff-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.staff-preview__image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.staff-preview__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ─── Centered section title underline ─── */
.section__head--center .section__title::after {
  margin-right: auto;
  margin-left: auto;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  padding: 13px 0;
  border-bottom: 1px solid rgba(219, 234, 240, 0.6);
  background: var(--color-bg);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 13px;
}

.breadcrumb__link {
  color: var(--color-main-deep);
  font-weight: 500;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__sep {
  color: var(--color-muted);
}

.breadcrumb__current {
  color: var(--color-muted);
}

/* ─── Service intro (leaf decoration) ─── */
.service-intro {
  position: relative;
  overflow: hidden;
  background: #eef9fd;
}

.service-intro::after {
  position: absolute;
  right: max(18px, calc((100vw - var(--container-wide)) / 2));
  top: 36px;
  width: 164px;
  height: 184px;
  background: url("../images/decorative/leaf01.png") center / contain no-repeat;
  content: "";
  opacity: 0.07;
  pointer-events: none;
}

/* ─── Service card list (bullet list inside home-service-card) ─── */
.service-card__list {
  margin-top: 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card__list li {
  position: relative;
  padding-left: 14px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.service-card__list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-yellow);
  content: "";
}

/* ─── Flow section ─── */
.service-flow {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.service-flow::before {
  position: absolute;
  left: max(18px, calc((100vw - var(--container-wide)) / 2));
  bottom: 32px;
  width: 148px;
  height: 168px;
  background: url("../images/decorative/leaf02.png") center / contain no-repeat;
  content: "";
  opacity: 0.06;
  pointer-events: none;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.flow-card {
  padding: 36px 28px 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(80, 132, 149, 0.08);
  text-align: center;
}

.flow-card__step {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 18px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #eef9fd;
  color: var(--color-main-deep);
}

.flow-card__step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.flow-card__step-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.flow-card__title {
  color: #1f2d35;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.flow-card__text {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.85;
}

/* ─── Service cards section background (overrides section--warm) ─── */
.service-cards-section {
  background: #fffaf0;
}

.service-cards-section .home-service-card {
  border: 1px solid rgba(226, 200, 127, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(171, 139, 77, 0.08);
}

/* ─── Service examples section ─── */
.service-examples-section {
  background: #eef9fd;
}

/* ─── Service examples grid ─── */
.service-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
}

.service-example-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(80, 132, 149, 0.08);
  font-size: 15px;
  font-weight: 500;
}

.service-example-item::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 230, 155, 0.38);
  content: "";
}

/* ─── Service FAQ section ─── */
.service-faq-section {
  background: #fffaf0;
}

/* ─── Service CTA (white, overrides cta--home #eaf4f8) ─── */
.service-cta {
  background: #ffffff;
}

/* ─── Service page padding tightening ─── */
.service-intro,
.service-cards-section,
.service-flow,
.service-examples-section,
.service-faq-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

@media (max-width: 1024px) {
  :root {
    --section-space: 78px;
  }

  .service-intro,
  .service-cards-section,
  .service-flow,
  .service-examples-section,
  .service-faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section__title,
  .cta__title {
    font-size: 36px;
  }

  .home-service .section__title,
  .home-reason .section__title,
  .home-staff__content .section__title,
  .cta-home__head .cta__title {
    font-size: 30px;
  }

  .hero-home__title {
    font-size: 44px;
  }

  .sub-hero__title {
    font-size: 44px;
  }

  .global-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    padding: 24px;
    border-bottom: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  body.is-menu-open .global-nav {
    display: block;
  }

  .global-nav__list {
    display: grid;
    gap: 8px;
  }

  .global-nav__link {
    width: 100%;
    justify-content: center;
  }

  .global-nav .header-actions {
    display: flex;
    margin-top: 16px;
    justify-content: center;
  }

  .site-header > .site-header__inner > .header-actions .button {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .sub-hero__inner,
  .cta__inner,
  .site-footer__inner,
  .staff-preview {
    grid-template-columns: 1fr;
  }

  .cta__actions {
    justify-content: flex-start;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-card-grid,
  .reason-list {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .reason-card {
    min-height: auto;
  }

  .home-staff__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .service-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 72px;
    --section-space: 62px;
  }

  .service-intro,
  .service-cards-section,
  .service-flow,
  .service-examples-section,
  .service-faq-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .container,
  .container--wide {
    width: min(100% - 32px, var(--container));
  }

  .site-logo__mark {
    width: 40px;
    height: 40px;
  }

  .site-logo__name {
    font-size: 16px;
  }

  .site-logo__sub {
    font-size: 11px;
  }

  .section__title,
  .cta__title {
    font-size: 30px;
  }

  .home-service .section__title,
  .home-reason .section__title,
  .home-staff__content .section__title,
  .cta-home__head .cta__title {
    font-size: 26px;
  }

  .hero-home__title {
    font-size: 34px;
  }

  .sub-hero__title {
    font-size: 34px;
  }

  .site-header > .site-header__inner > .header-actions .button {
    display: none;
  }

  .hero-home {
    min-height: auto;
    padding: 50px 0 48px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
      url("../images/hero/hero-main.png") center / cover no-repeat;
  }

  .hero-home__inner {
    min-height: 420px;
  }

  .hero-home__lead {
    font-size: 16px;
  }

  .home-service {
    padding: 58px 0 62px;
  }

  .home-service::before {
    top: 22px;
    left: -42px;
    width: 160px;
    height: 120px;
    opacity: 0.11;
  }

  .home-service::after {
    right: -44px;
    bottom: 30px;
    width: 140px;
    height: 104px;
    opacity: 0.09;
  }

  .home-service-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .home-service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
  }

  .home-service-card__icon img {
    width: 62px;
    height: 62px;
  }

  .home-service-card__icon--care img {
    width: 59px;
    height: 59px;
  }

  .home-service-card__icon--life img {
    width: 60px;
    height: 60px;
  }

  .home-service-card__icon--consultation img {
    width: 57px;
    height: 57px;
  }

  .reason-card {
    padding: 24px;
    border-radius: 10px;
  }

  .home-staff__inner {
    gap: 32px;
  }

  .home-staff::after {
    right: -34px;
    top: 28px;
    width: 118px;
    height: 148px;
    opacity: 0.22;
  }

  .home-staff__visual::before {
    inset: 16px -10px -10px 16px;
    border-radius: 24px;
  }

  .home-staff__visual img {
    border-width: 6px;
    border-radius: 24px;
  }

  .sub-hero {
    min-height: 420px;
    padding: 54px 0 48px;
  }

  .sub-hero__inner {
    min-height: 300px;
  }

  .sub-hero__visual {
    border-width: 6px;
    border-radius: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card__body {
    padding: 24px;
  }

  .cta {
    padding: 58px 0;
  }

  .cta::before {
    inset: 12px;
    border-radius: 22px;
  }

  .cta--home {
    padding: 62px 0 68px;
  }

  .cta-home__head {
    margin-bottom: 26px;
  }

  .cta-home__card {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 22px;
    border-radius: 14px;
    text-align: center;
  }

  .cta-home__body {
    margin-top: 18px;
  }

  .cta-home__card-title {
    font-size: 20px;
  }

  .cta-home__button {
    width: 100%;
    min-width: 0;
  }

  .cta__actions,
  .hero-home__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 160px;
    min-height: 48px;
    font-size: 15px;
  }

  .faq-item__question {
    padding: 18px;
  }

  .faq-item__answer p {
    padding: 0 18px 20px 48px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }

  .service-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-card {
    padding: 28px 22px 26px;
  }
}

@media (max-width: 480px) {
  .button {
    width: 100%;
    min-height: 44px;
    border-radius: 22px;
    font-size: 15px;
  }
}
