:root {
  --bg: #F7F4EE;
  --surface: #FFFFFF;
  --green: #1B4A12;
  --green-deep: #0E2D0A;
  --text: #22261F;
  --muted: #6B6F63;
  --accent: #A8562E;
  --line: #DCD6C8;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

a { color: inherit; }

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

.sp-only { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,45,10,.72) 0%, rgba(14,45,10,.6) 45%, rgba(14,45,10,.86) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  text-align: center;
  color: #fff;
}

.hero__logo {
  width: 160px;
  margin: 0 auto 28px;
}

.hero__eyebrow {
  font-family: "Shippori Mincho", serif;
  letter-spacing: .28em;
  font-size: 13px;
  text-transform: uppercase;
  color: #CFE0C9;
  margin: 0 0 18px;
}

.hero__title {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.6;
  margin-bottom: 24px;
  color: #fff;
}

.hero__lead {
  font-size: 15px;
  color: #E7E9E2;
  margin: 0 0 36px;
}

.hero__cta {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  text-decoration: none;
  letter-spacing: .08em;
  font-size: 14px;
  transition: background .25s ease, color .25s ease;
}

.hero__cta:hover {
  background: #fff;
  color: var(--green-deep);
}

/* ---------- Section head ---------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}

.eyebrow {
  font-family: "Shippori Mincho", serif;
  letter-spacing: .28em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.section-head h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ---------- Services ---------- */
.services {
  padding: 110px 24px 100px;
  max-width: 1080px;
  margin: 0 auto;
}

.service--main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.service__media { height: 100%; min-height: 280px; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; }

.service__body { padding: 40px 44px 40px 0; }

.service__body h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service__body p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-card__media { aspect-ratio: 4/3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }

.service-card h3 {
  font-size: 18px;
  padding: 22px 22px 0;
}

.service-card p {
  color: var(--muted);
  font-size: 13.5px;
  padding: 12px 22px 24px;
  margin: 0;
}

.service-other {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.service-other h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.service-other p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 8px;
}

.service-other__note {
  color: var(--text);
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--green-deep);
  color: #fff;
  padding: 100px 24px 110px;
}

.contact .eyebrow { color: #9FCB93; }
.contact .section-head h2 { color: #fff; }
.contact .section-lead { color: #C9D3C4; }

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
}

.contact-info dl { margin: 0 0 40px; }
.contact-info dl > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.contact-info dt {
  font-size: 12px;
  letter-spacing: .1em;
  color: #9FCB93;
  margin-bottom: 6px;
}
.contact-info dd {
  margin: 0;
  font-size: 16px;
}
.contact-info a { text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.line-block {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.06);
  padding: 20px;
}

.line-block__label {
  font-size: 13px;
  color: #E7E9E2;
  margin: 0;
  flex: 1;
}

.line-block__qr {
  width: 120px;
  height: 120px;
  background: #fff;
  padding: 8px;
}

.contact-form {
  background: #fff;
  color: var(--text);
  padding: 40px;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--text);
}

.req {
  font-size: 11px;
  color: #fff;
  background: var(--accent);
  padding: 2px 8px;
  margin-left: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.contact-form button {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 15px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .25s ease;
}

.contact-form button:hover { background: var(--green-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: #B9BDB2;
  text-align: center;
  padding: 56px 24px 40px;
  font-size: 12.5px;
}

.site-footer__logo {
  width: 110px;
  margin: 0 auto 20px;
  opacity: .9;
}

.site-footer p { margin: 4px 0; }
.site-footer__copy { margin-top: 18px; color: #7A7E72; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .service--main { grid-template-columns: 1fr; }
  .service__media { min-height: 220px; }
  .service__body { padding: 32px 28px 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-only { display: inline; }
}

@media (max-width: 480px) {
  .hero__inner { padding: 110px 20px 80px; }
  .contact-form { padding: 28px 24px; }
  .line-block { flex-direction: column; text-align: center; }
}
