:root {
  --yellow: #f6c94c;
  --cream: #fff6e5;
  --green: #7fbb77;
  --green-dark: #5b9853;
  --green-soft: #eaf4ea;
  --orange: #f2994a;
  --text: #333333;
  --muted: #777777;
  --line: rgba(246, 201, 76, 0.42);
  --shadow: 0 22px 54px rgba(84, 74, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.85;
  background:
    radial-gradient(circle at 8% 9%, rgba(246, 201, 76, 0.16), transparent 22rem),
    radial-gradient(circle at 91% 31%, rgba(127, 187, 119, 0.14), transparent 28rem),
    #fffdf8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid rgba(246, 201, 76, 0.24);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(84, 74, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 15vw, 238px);
  min-width: 150px;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 24px);
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.nav-contact,
.primary-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #3c351c;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(246, 201, 76, 0.24);
}

.nav-contact {
  padding: 0 22px;
}

.menu-button {
  display: none;
}

.firstview-shot {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.firstview-shot img {
  width: 100%;
  height: auto;
}

.firstview-shot picture {
  display: block;
}

.firstview-contact {
  position: absolute;
  left: 7.65%;
  top: 86.45%;
  display: block;
  width: 18.55%;
  height: 7.1%;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  padding: clamp(28px, 4vw, 58px) clamp(20px, 5vw, 72px) clamp(62px, 7vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: clamp(22px, 3vw, 44px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 74px);
  z-index: -2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) brightness(1.03);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 36%, rgba(255, 253, 248, 0.22) 64%, rgba(255, 253, 248, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0) 70%, #fffdf8 100%);
}

.hero-copy {
  width: min(680px, 100%);
  align-self: center;
  padding: clamp(56px, 8vw, 120px) 0 0;
}

.eyebrow,
.section-heading p,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
}

.section-kicker-large {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.45;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.36;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-lead {
  margin: 22px 0 34px;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 700;
}

.hero-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  width: min(100%, 470px);
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(246, 201, 76, 0.4);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(10px);
}

.hero-logo {
  color: var(--yellow);
}

.hero-card p,
.hero-card span {
  display: block;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.hero-card strong {
  display: block;
  margin: 2px 0 6px;
  font-size: 38px;
  line-height: 1.2;
}

.primary-button {
  padding: 0 30px;
  border: 1px solid rgba(246, 201, 76, 0.9);
  background: #fffdf8;
  color: #c99700;
}

.section {
  padding: clamp(74px, 9vw, 132px) clamp(22px, 7vw, 104px);
  scroll-margin-top: 92px;
}

.reveal-block {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 820ms ease,
    transform 820ms ease;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.intro-section {
  padding-top: clamp(68px, 8vw, 108px);
}

.narrow-copy,
.single-copy {
  width: min(820px, 100%);
  margin: 0 auto;
}

.narrow-copy {
  text-align: center;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.55;
}

h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 22px;
}

.section-soft {
  background: linear-gradient(180deg, #fff6e5, #fffdf8);
}

.section-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.heading-chick {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.features-creative {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(84, 74, 40, 0.08);
}

.features-picture {
  display: block;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.feature-card h3,
.feature-card p {
  grid-column: 2;
}

.feature-card p {
  margin: 0 0 8px;
}

.feature-card .icon-circle {
  grid-row: 1 / span 2;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 34px;
  font-weight: 800;
}

.icon-circle svg {
  width: 44px;
  height: 44px;
}

.statement-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: #fffdf8;
}

.statement-copy {
  max-width: 560px;
}

.future-section {
  background:
    linear-gradient(180deg, rgba(234, 244, 234, 0.82), rgba(255, 253, 248, 0.96)),
    #fffdf8;
}

.business-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background: var(--green-soft);
}

.business-copy {
  max-width: 570px;
}

.business-copy .section-kicker-large {
  margin-bottom: 18px;
}

.accent-text {
  color: var(--orange);
  font-weight: 800;
}

.business-band img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(84, 74, 40, 0.1);
}

.gallery-grid figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.single-section {
  position: relative;
}

.message-section,
.company-section {
  background: #fffdf8;
}

.message-section .single-copy,
.company-section .single-copy,
.contact-section .single-copy {
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.signature-image {
  display: block;
  width: min(280px, 72%);
  margin: 28px 0 0 auto;
}

.access-section {
  background: linear-gradient(180deg, rgba(255, 246, 229, 0.72), rgba(255, 253, 248, 0.96));
}

.access-section .single-copy {
  margin-bottom: 28px;
  text-align: center;
}

.access-address {
  margin: 10px 0 0;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.8;
}

.map-wrap {
  overflow: hidden;
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2ea;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

dl {
  margin: 12px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(119, 119, 119, 0.18);
}

dt {
  font-weight: 800;
}

dd {
  margin: 0;
}

.contact-section {
  background: linear-gradient(180deg, #fffdf8, #fff6e5);
}

.contact-lead {
  max-width: 640px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.sns-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(720px, 100%);
  margin-top: 22px;
  margin-inline: auto;
}

.sns-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.sns-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  width: 100%;
  max-width: 260px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.line-link {
  background: #06c755;
}

.instagram-link {
  background: var(--orange);
}

.sns-zone {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(119, 119, 119, 0.16);
}

.sns-zone h3 {
  margin-bottom: 6px;
  color: var(--text);
}

.sns-zone p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.sns-icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.instagram-icon {
  background: linear-gradient(135deg, #833ab4, #e1306c 50%, #f77737);
}

.sns-icon svg {
  width: 22px;
  height: 22px;
}

.qr-image {
  width: min(220px, 100%);
  height: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(84, 74, 40, 0.1);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(119, 119, 119, 0.22);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 10px 12px;
}

.submit-button {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(260px, 100%);
  margin-top: 10px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(127, 187, 119, 0.28);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(22px, 7vw, 96px);
  border-top: 1px solid rgba(246, 201, 76, 0.28);
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.page-top {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 119, 119, 0.18);
  border-radius: 50%;
  color: var(--muted);
  font-weight: 800;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(32px, 8vw, 96px) 22px;
  background:
    radial-gradient(circle at 12% 14%, rgba(246, 201, 76, 0.18), transparent 20rem),
    radial-gradient(circle at 88% 74%, rgba(127, 187, 119, 0.16), transparent 26rem),
    #fffdf8;
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-logo {
  width: min(260px, 70%);
  margin: 0 auto 28px;
}

.thanks-card h1 {
  margin: 0 0 22px;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.5;
}

.thanks-card p {
  margin: 0 auto 16px;
  max-width: 560px;
  color: var(--text);
  font-weight: 700;
}

.thanks-button {
  margin-top: 22px;
  padding: 0 30px;
}

@media (max-width: 1160px) {
  .site-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  .menu-button {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: 2;
    height: clamp(300px, 56vw, 500px);
    margin-top: 26px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.7));
  }

  .hero-copy {
    padding-top: 34px;
  }

  .feature-grid,
  .statement-section,
  .business-band {
    grid-template-columns: 1fr;
  }

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

  .sns-cards {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand {
    width: 150px;
  }

  .site-nav {
    top: 70px;
  }

  .firstview-contact {
    left: 4.6%;
    top: 73.7%;
    width: 37.8%;
    height: 6.7%;
  }

  .hero-card,
  .feature-card,
  .contact-form,
  dl div {
    grid-template-columns: 1fr;
  }

  .feature-card h3,
  .feature-card p {
    grid-column: auto;
  }

  .feature-card .icon-circle {
    grid-row: auto;
  }

  .hero-card {
    gap: 8px;
  }

  .hero-logo {
    width: 74px;
  }

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

  .map-wrap iframe {
    min-height: 340px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
