:root {
  --base: #f7f4ec;
  --paper: #fffdf8;
  --ink: #2f332b;
  --muted: #74796d;
  --green: #7cbb4f;
  --green-dark: #4f8e35;
  --brown: #8d765b;
  --line: #e7decf;
  --shadow: 0 22px 50px rgba(70, 55, 34, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--base);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0;
  line-height: 1.9;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 222, 207, .75);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4b3d32;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .24);
}

.brand-mark:after {
  content: "";
  position: absolute;
}

.deer {
  position: relative;
  width: 25px;
  height: 29px;
  background: #cfa46a;
  border-radius: 13px 13px 10px 10px;
}

.deer:before,
.deer:after {
  content: "";
  position: absolute;
  top: 4px;
  width: 9px;
  height: 9px;
  background: #d8b982;
  border-radius: 50%;
}

.deer:before {
  left: -5px;
}

.deer:after {
  right: -5px;
}

.cross {
  position: absolute;
  right: -10px;
  top: 2px;
  width: 18px;
  height: 18px;
}

.cross:before,
.cross:after {
  content: "";
  position: absolute;
  background: #2fa45d;
}

.cross:before {
  width: 18px;
  height: 6px;
  top: 6px;
}

.cross:after {
  width: 6px;
  height: 18px;
  left: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  color: var(--brown);
  letter-spacing: .18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #6f5a43;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a.active:after,
.nav a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(124, 187, 79, .28);
}

.btn.secondary {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid #cfe5bf;
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(40px, 1fr) minmax(0, 1120px) minmax(40px, 1fr);
  align-items: center;
  padding: 64px 0;
}

.hero-inner {
  grid-column: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--brown);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1,
.page-title h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.16;
  font-weight: 500;
  color: #3a3f34;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-card {
  margin-top: 42px;
  padding: 22px 24px;
  background: rgba(255, 253, 248, .75);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-card strong {
  display: block;
  font-size: 18px;
  color: var(--green-dark);
}

.hero-card span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.photo-main {
  width: 78%;
  margin-left: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-main img {
  height: 520px;
  object-fit: cover;
}

.photo-float {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 46%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid var(--paper);
}

.photo-float img {
  height: 270px;
  object-fit: cover;
}

.round-message {
  position: absolute;
  right: 3%;
  bottom: 4%;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: rgba(124, 187, 79, .92);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-size: 15px;
  line-height: 1.7;
  box-shadow: 0 16px 36px rgba(124, 187, 79, .28);
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: var(--paper);
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.25;
  font-weight: 500;
}

.section-head p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(70, 55, 34, .06);
}

.feature-card img {
  height: 230px;
  object-fit: cover;
}

.feature-card div {
  padding: 24px;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.photo-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 210px 210px;
  gap: 14px;
}

.story-grid img {
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 34px rgba(70, 55, 34, .08);
}

.story-grid img:first-child {
  grid-row: span 2;
}

.story-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.story-list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.story-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.split h2 {
  margin: 12px 0 22px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.34;
  font-weight: 500;
}

.split p {
  color: var(--muted);
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 18px;
  align-items: end;
}

.image-pair img {
  border-radius: 4px;
  height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-pair img:last-child {
  height: 280px;
}

.recruit-band {
  background: #edf6e9;
  padding: 72px 0;
}

.recruit-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-gallery {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.mini-gallery img {
  height: 118px;
  object-fit: cover;
  border-radius: 4px;
}

.condition {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--base);
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
}

.condition strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.page-hero {
  padding: 86px 0 56px;
}

.page-title {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.breadcrumb {
  margin-bottom: 32px;
  color: var(--brown);
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.info-table th,
.info-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 220px;
  color: var(--brown);
  background: #faf6ed;
  font-weight: 600;
}

.small-note {
  margin-top: 34px;
  padding: 26px;
  background: #fbf8f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #777268;
  font-size: 12px;
  line-height: 2;
}

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

.gallery img {
  height: 190px;
  object-fit: cover;
}

.entry-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 40px;
  align-items: start;
}

.work-scenes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.work-scene {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.work-scene img {
  height: 170px;
  object-fit: cover;
}

.work-scene p {
  margin: 0;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
}

.entry-summary,
.form-card {
  background: #fff;
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 12px 34px rgba(70, 55, 34, .06);
}

.entry-summary h2,
.form-card h2 {
  margin-top: 0;
  font-size: 28px;
  color: var(--green-dark);
}

.job-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.job-list strong {
  display: inline-block;
  width: 110px;
  color: var(--brown);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--brown);
  font-size: 13px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: #fffdf8;
  font: inherit;
  min-height: 46px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 56px 0 24px;
  background: #5b4d3a;
  color: #fff;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
}

.footer h3,
.footer h4 {
  margin-top: 0;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.footer-bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .62);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

@media (max-width: 880px) {
  .header-inner {
    height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 4px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 64px;
    grid-template-columns: 20px 1fr 20px;
  }

  .hero-inner,
  .split,
  .recruit-box,
  .entry-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .photo-main {
    width: 86%;
  }

  .photo-main img {
    height: 350px;
  }

  .photo-float {
    width: 52%;
  }

  .photo-float img {
    height: 190px;
  }

  .round-message {
    width: 132px;
    height: 132px;
    font-size: 12px;
  }

  .hero-card,
  .cards,
  .conditions,
  .gallery,
  .photo-story,
  .story-grid,
  .work-scenes,
  .mini-gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-rows: auto;
  }

  .story-grid img,
  .story-grid img:first-child,
  .mini-gallery img,
  .work-scene img {
    height: 220px;
    grid-row: auto;
  }

  .section-head {
    display: block;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img,
  .image-pair img:last-child {
    height: 280px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
}
