:root {
  --bg: #fbfaf5;
  --bg-soft: #f3f0df;
  --bg-white: #ffffff;
  --text: #30342d;
  --muted: #6b6d62;
  --green: #5f7f32;
  --green-dark: #35531f;
  --green-pale: #d6dfc6;
  --gold: #a87835;
  --line: #e2e5d8;
  --shadow: 0 16px 40px rgba(53, 83, 31, 0.14);
  --font-serif: "Shippori Mincho B1", "Yu Mincho", serif;
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1, h2, h3, p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(168, 120, 53, 0.45);
  outline-offset: 4px;
}

.nowrap {
  display: inline-block;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 12px;
  z-index: 1000;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(95, 127, 50, 0.14);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 28px));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__lead {
  color: var(--muted);
  font-size: 12px;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4.2vw, 34px);
  font-weight: 600;
  color: var(--text);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  padding: 8px 0;
}

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

.header-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  border: 1px solid var(--green-pale);
  font-size: 13px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-button em {
  font-style: normal;
  font-size: 10px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  background: linear-gradient(90deg, #fbfaf5 0%, #fbfaf5 44%, rgba(251, 250, 245, 0.8) 57%, rgba(251, 250, 245, 0) 74%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(42px, 8vw, 92px) 24px clamp(52px, 8vw, 96px) max(24px, calc((100vw - 1120px) / 2));
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(243, 240, 223, 0.95);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.38;
  font-weight: 700;
}

.hero__text {
  width: min(500px, 100%);
  margin-top: 24px;
  color: #3e4239;
  font-size: clamp(15px, 1.5vw, 17px);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 58px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(53, 83, 31, 0.24);
}

.button--ghost {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid var(--green);
}

.hero__media {
  position: relative;
  height: 100%;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 42%;
  background: linear-gradient(90deg, #fbfaf5 0%, rgba(251, 250, 245, 0.72) 48%, rgba(251, 250, 245, 0) 100%);
}

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

.section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.section--cream {
  background: var(--bg-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: 22px;
  width: min(820px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading span {
  height: 1px;
  background: var(--green-pale);
}

.section__title {
  font-family: var(--font-serif);
  color: var(--green-dark);
  font-size: clamp(25px, 4.4vw, 38px);
  line-height: 1.45;
}

.problem-grid,
.service-grid,
.reason-grid,
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.photo-card,
.service-card,
.knowledge-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(95, 127, 50, 0.1);
  box-shadow: var(--shadow);
}

.photo-card > img,
.service-card > img {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  object-fit: cover;
}

.photo-card__body {
  position: relative;
  padding: 42px 22px 28px;
  text-align: center;
}

.round-icon {
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}

.photo-card h3,
.service-card h3,
.reason-item h3,
.knowledge-card h3 {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.photo-card p,
.service-card p,
.reason-item p,
.knowledge-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card {
  display: grid;
}

.service-card div {
  padding: 20px 22px 24px;
}

.section--reason {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.reason-grid {
  align-items: start;
}

.reason-item {
  text-align: center;
  padding: 8px 18px;
}

.line-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flow-list li {
  position: relative;
  min-height: 172px;
  padding: 30px 16px 20px;
  border: 1px solid var(--green-pale);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.flow-list b {
  position: absolute;
  top: -15px;
  left: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}

.flow-list h3 {
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.flow-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.knowledge-card {
  padding: 20px;
}

.knowledge-card div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.knowledge-card img {
  width: 110px;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 6px;
}

.commitment {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  min-height: 340px;
  background: #fff;
}

.commitment__copy {
  align-self: center;
  padding: clamp(48px, 7vw, 84px) 24px clamp(48px, 7vw, 84px) max(24px, calc((100vw - 1120px) / 2));
}

.commitment h2 {
  font-family: var(--font-serif);
  color: var(--green);
  font-size: clamp(28px, 4.8vw, 46px);
  line-height: 1.55;
}

.commitment p {
  max-width: 440px;
  margin-top: 18px;
  color: var(--text);
}

.commitment > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  padding: clamp(48px, 8vw, 86px) 20px;
  background: var(--bg-soft);
}

.contact-card {
  width: min(1120px, 100%);
  margin-inline: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  background: #fff;
  border: 1px solid rgba(95, 127, 50, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card__body {
  padding: clamp(30px, 5vw, 56px);
}

.contact-card__lead {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.55;
}

.contact-phone {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-dark);
  font-size: clamp(38px, 7vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow-wrap: normal;
}

.contact-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.contact-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 44px 0 96px;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 8px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.privacy-body {
  max-width: 860px;
}

.privacy-body h2 {
  margin-top: 34px;
  color: var(--green-dark);
  font-size: 20px;
}

.privacy-body p {
  margin-top: 12px;
  color: var(--muted);
}

.privacy-date {
  text-align: right;
  font-size: 14px;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(53, 83, 31, 0.28);
}

.mobile-cta a {
  flex: 1;
  min-height: 54px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}

.mobile-cta a + a {
  background: #fff;
  color: var(--green-dark);
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .global-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--green-pale);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .global-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid #edf0e4;
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .header-pill {
    display: none;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__copy {
    padding: 42px 22px 24px;
  }

  .hero__media {
    min-height: 310px;
    height: 44vh;
  }

  .problem-grid,
  .service-grid,
  .reason-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .commitment > img,
  .contact-card > img {
    max-height: 320px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .brand__lead {
    font-size: 10px;
  }

  .brand__name {
    font-size: 24px;
  }

  .global-nav {
    top: 66px;
  }

  .hero__badges span {
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero__actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .section-heading {
    gap: 12px;
  }

  .knowledge-card div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .knowledge-card img {
    width: 92px;
  }

  .contact-phone {
    font-size: clamp(32px, 10vw, 42px);
  }

  .mobile-cta {
    display: flex;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
