﻿:root {
  --green: #3f8a55;
  --green-dark: #2f6f44;
  --green-soft: #eaf5e5;
  --ink: #20241f;
  --muted: #5e675f;
  --line: #dfeada;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(45, 93, 56, 0.14);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf8;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(63, 138, 85, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-cross {
  position: relative;
  width: 2.05rem;
  height: 2.05rem;
  background: var(--green);
  border-radius: 2px;
}

.brand-cross::before,
.brand-cross::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.brand-cross::before {
  width: 62%;
  height: 22%;
}

.brand-cross::after {
  width: 22%;
  height: 62%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  color: var(--ink);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0.48);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.menu-button {
  display: none;
}

.lp-page {
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(234, 245, 229, 0.8), transparent 12%, transparent 88%, rgba(234, 245, 229, 0.7)),
    #fffdf8;
}

.lp-slice {
  position: relative;
  width: min(100%, 1680px);
  margin: 0 auto;
  background: var(--white);
  scroll-margin-top: var(--header-height);
}

.lp-slice + .lp-slice {
  margin-top: -1px;
}

.lp-slice > img,
.hero-image-frame img {
  width: 100%;
  height: auto;
  user-select: none;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 1536 / 894;
  overflow: hidden;
  background: var(--white);
}

.hero-image-frame img {
  transform: translateY(-12.7%);
}

.semantic-copy {
  display: none;
}

.hours-duty-link {
  position: absolute;
  left: 22.7%;
  bottom: 7.3%;
  z-index: 6;
  width: 9%;
  height: 4.8%;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
}

.map-link,
.phone-link {
  position: absolute;
  z-index: 6;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: transparent;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.map-link-heading {
  right: 14.7%;
  bottom: 25.8%;
  width: 4.6%;
  height: 4.8%;
}

.map-link-body {
  right: 16.7%;
  bottom: 17.2%;
  width: 4.3%;
  height: 4.1%;
}

.phone-link {
  left: 14.7%;
  bottom: 4.3%;
  width: 22%;
  height: 5.8%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 5vw, 5rem);
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 700;
}

.site-footer a {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(63, 138, 85, 0.42);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .menu-button {
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    place-content: center;
    gap: 0.27rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--green-dark);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 0.55rem;
  }

  .site-nav a::after {
    display: none;
  }

  .semantic-copy {
    display: block;
    padding: 1.35rem clamp(1rem, 5vw, 2rem) 2rem;
    background: linear-gradient(180deg, #ffffff, #fbfdf8);
  }

  .hours-duty-link,
  .map-link,
  .phone-link {
    display: none;
  }

  .text-phone-link {
    border: 0;
    padding: 0;
    color: var(--green-dark);
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
  }

  .semantic-copy h1,
  .semantic-copy h2 {
    margin: 0 0 0.7rem;
    color: var(--green-dark);
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    line-height: 1.32;
    letter-spacing: 0;
  }

  .semantic-copy p {
    margin: 0 0 0.9rem;
    color: var(--muted);
    font-weight: 600;
  }

  .semantic-copy ul,
  .hours-list {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding-left: 1.2rem;
  }

  .hours-list {
    padding-left: 0;
  }

  .hours-list div {
    display: grid;
    grid-template-columns: 6rem 1fr;
    border-bottom: 1px solid var(--line);
  }

  .hours-list dt,
  .hours-list dd {
    margin: 0;
    padding: 0.35rem 0;
  }

  .hours-list dt {
    color: var(--green-dark);
    font-weight: 800;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.35rem;
  }

  .brand-cross {
    width: 1.75rem;
    height: 1.75rem;
  }
}
