:root {
  --ink: #171511;
  --soft-ink: rgba(23, 21, 17, .72);
  --paper: #f7f3ea;
  --paper-2: #eee7d8;
  --line: rgba(23, 21, 17, .14);
  --dark: #111615;
  --dark-2: #1d2421;
  --white: #fffdf8;
  --clay: #9c6235;
  --gold: #c7a35f;
  --green: #59685e;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  letter-spacing: 0;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.065 0 0 0 0 0.055 0 0 0 .42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

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

.wrap {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, .9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  white-space: nowrap;
}

.hero {
  padding: clamp(52px, 7vw, 96px) 0 clamp(74px, 8vw, 112px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 440px) 1fr;
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper-2);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}

.vertical-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(255, 253, 248, .9);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .34em;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .28em;
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: 1.14;
  letter-spacing: .06em;
}

h1 span,
h2 span,
.lead span,
.intro-body span,
.section-head p span,
.work-main p span,
.recruit-grid p span,
.company-grid p span {
  display: block;
}

h1 span,
h2 span {
  white-space: nowrap;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 span:nth-child(3) {
  font-size: .86em;
}

.lead {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.1;
  letter-spacing: .1em;
}

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

.button {
  min-width: 170px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button.light {
  background: rgba(255, 253, 248, .45);
}

section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.band-light {
  background: var(--paper-2);
}

.intro-grid,
.recruit-grid,
.company-grid {
  display: grid;
  grid-template-columns: minmax(360px, 520px) 1fr;
  gap: clamp(42px, 6vw, 86px);
}

.intro h2,
.recruit h2,
.company h2 {
  margin: 0;
  font-size: clamp(36px, 4.7vw, 62px);
  line-height: 1.2;
  letter-spacing: .11em;
}

.intro h2,
.recruit h2 {
  max-width: 100%;
}

.intro h2 span:nth-child(2),
.recruit h2 span {
  font-size: .88em;
}

.intro-body {
  display: grid;
  gap: 28px;
}

.intro-body p,
.section-head p,
.work-main p,
.work-side p,
.recruit-grid p,
.facility-grid p,
.company-grid p,
.company-list dd {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .08em;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 330px) 1fr;
  align-items: end;
  gap: clamp(34px, 6vw, 72px);
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.18;
  letter-spacing: .1em;
  white-space: nowrap;
}

.services,
.company {
  position: relative;
  background: var(--dark);
  color: var(--paper);
}

.services::before,
.company::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background-image:
    linear-gradient(rgba(255, 253, 248, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, .055) 1px, transparent 1px);
  background-size: 48px 48px;
}

.services > .wrap,
.company > .wrap {
  position: relative;
}

.services .section-head p,
.company .section-head p,
.company-grid p,
.company-list dd {
  color: rgba(247, 243, 234, .72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(247, 243, 234, .16);
  border-left: 1px solid rgba(247, 243, 234, .16);
}

.service-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid rgba(247, 243, 234, .16);
  border-bottom: 1px solid rgba(247, 243, 234, .16);
  background: rgba(29, 36, 33, .7);
}

.service-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 30px;
}

.service-grid h3 {
  margin: 22px 0 14px;
  font-size: 23px;
  letter-spacing: .14em;
}

.service-grid p {
  margin: 0;
  color: rgba(247, 243, 234, .7);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .07em;
}

.light-grid {
  border-color: var(--line);
}

.light-grid article {
  background: rgba(255, 253, 248, .42);
  border-color: var(--line);
}

.light-grid h3,
.light-grid p {
  color: var(--ink);
}

.light-grid p {
  color: var(--soft-ink);
}

.section-more {
  margin-top: 34px;
}

.on-dark,
.on-dark-more .button {
  border-color: rgba(247, 243, 234, .35);
  color: var(--paper);
  background: rgba(247, 243, 234, .08);
}

.works-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
}

.work-main,
.work-side article,
.recruit-panel,
.facility-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
}

.work-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.work-main div {
  padding: 30px 32px 36px;
}

.work-tag {
  margin-bottom: 10px;
  color: var(--clay);
  font-family: Georgia, serif;
  font-style: italic;
  letter-spacing: .18em;
}

.work-main h3,
.work-side h3,
.facility-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: .12em;
}

.work-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.work-side article {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.work-side img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.work-side div {
  padding: 20px;
}

.work-side h3 {
  font-size: 20px;
}

.work-side p {
  font-size: 13px;
}

.recruit {
  background: var(--white);
}

.recruit .button {
  margin-top: 26px;
}

.recruit-panel {
  padding: 34px;
}

.recruit-panel dl,
.company-list {
  margin: 0;
}

.recruit-panel div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.recruit-panel div:first-child {
  padding-top: 0;
}

.recruit-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dt {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

dd {
  margin: 0;
}

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

.facility-grid article {
  overflow: hidden;
}

.facility-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.facility-grid h3,
.facility-grid p {
  padding-inline: 24px;
}

.facility-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 28px;
  align-items: start;
}

.facility-showcase article {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
  overflow: hidden;
}

.facility-showcase > article div {
  padding: 28px 32px 34px;
}

.facility-photo-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: rgba(255, 253, 248, .72);
}

.facility-photo-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  background-image: var(--photo);
  background-size: cover;
  background-position: center center;
  filter: blur(16px) saturate(.82);
  opacity: .22;
  transform: scale(1.06);
}

.facility-photo-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.facility-showcase h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.facility-showcase p {
  color: var(--soft-ink);
}

.facility-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.facility-mini-grid article {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.facility-mini-grid img {
  width: 100%;
}

.facility-mini-grid .facility-photo-frame {
  aspect-ratio: 4 / 3;
}

.facility-mini-grid h3 {
  margin: 0;
  padding: 16px 18px 8px;
  font-size: 18px;
}

.facility-mini-grid p {
  margin: 0;
  padding: 0 18px 20px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--soft-ink);
}

.fishing-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) 1fr;
  gap: 28px;
  margin-top: 28px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
}

.fishing-showcase h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: .1em;
}

.fishing-showcase p {
  color: var(--soft-ink);
  line-height: 2;
  letter-spacing: .08em;
}

.fishing-photo-grid {
  display: grid;
  grid-template-columns: 1.05fr .86fr .86fr;
  gap: 16px;
}

.fishing-photo-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: rgba(255, 253, 248, .58);
}

.fishing-photo-grid img:first-child {
  object-position: center center;
}

.fishing-photo-grid img:nth-child(2),
.fishing-photo-grid img:nth-child(3) {
  object-position: center top;
}

.facility-grid img[src*="facility-"] {
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 253, 248, .58);
}

.facility-grid img[src*="fishing-boat-full"] {
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 253, 248, .58);
}

.facility-grid h3 {
  margin-top: 24px;
}

.facility-grid p {
  margin-bottom: 28px;
}

.text-link {
  display: inline-block;
  margin: 0 24px 28px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.company-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(247, 243, 234, .17);
  border-left: 1px solid rgba(247, 243, 234, .17);
}

.company-list div {
  padding: 24px;
  border-right: 1px solid rgba(247, 243, 234, .17);
  border-bottom: 1px solid rgba(247, 243, 234, .17);
}

.company-list dt {
  color: var(--gold);
  margin-bottom: 10px;
}

.company-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section,
.map-section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.access-compact {
  padding: clamp(62px, 7vw, 92px) 0;
}

.contact-grid,
.map-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) 1fr;
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.contact-grid h2,
.map-grid h2 {
  margin: 0 0 24px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.2;
  letter-spacing: .11em;
}

.contact-grid p,
.map-grid p {
  color: var(--soft-ink);
  line-height: 2.05;
  letter-spacing: .1em;
}

.contact-grid p span,
.map-grid p span {
  display: block;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-list div {
  min-height: 136px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
}

.contact-list dt {
  color: var(--clay);
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

.contact-list dd {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.map-frame {
  min-height: 360px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 253, 248, .38);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(.15) contrast(.96);
}

.footer {
  padding: 34px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 110px;
}

.footer p {
  margin: 0;
  color: var(--soft-ink);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .18em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--paper);
}

.page-hero-dark {
  position: relative;
  background: var(--dark);
  color: var(--paper);
}

.page-hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 253, 248, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, .055) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .7fr) 1fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: end;
  min-width: 0;
}

.page-hero-grid > * {
  min-width: 0;
}

.page-hero h1 {
  grid-column: 1 / 2;
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
}

.page-hero .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.page-hero .lead {
  grid-column: 2 / 3;
  margin: 0;
}

.page-hero-dark .lead {
  color: rgba(247, 243, 234, .72);
}

.service-hero .page-hero-grid {
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.service-hero h1 {
  font-size: clamp(40px, 4.8vw, 66px);
}

.service-hero .lead {
  grid-column: auto;
  max-width: 920px;
}

.works-hero .page-hero-grid {
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.works-hero h1 {
  max-width: 820px;
}

.works-hero .lead {
  grid-column: auto;
  max-width: 920px;
}

.detail-section,
.gallery-section,
.recruit-page,
.company-page {
  padding: clamp(76px, 9vw, 126px) 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-card {
  min-height: 280px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
}

.detail-card span {
  color: var(--clay);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 30px;
}

.detail-card h2,
.gallery-grid h2,
.recruit-page h2 {
  margin: 20px 0 14px;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: .1em;
}

.detail-card p,
.gallery-grid p,
.recruit-page p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .08em;
}

.service-detail-section {
  padding: clamp(76px, 9vw, 126px) 0;
  background: var(--paper);
}

.service-detail {
  display: grid;
  gap: 34px;
}

.service-lead-card {
  max-width: 920px;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .45);
}

.service-lead-card h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.25;
  letter-spacing: .1em;
}

.service-lead-card h2 span {
  display: block;
}

.service-lead-card p,
.service-feature-grid p,
.service-sub-grid p,
.service-flow p {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .08em;
}

.service-feature-grid {
  display: grid;
  gap: 24px;
}

.service-feature-grid article {
  display: grid;
  grid-template-columns: minmax(300px, .62fr) 1fr;
  border: 1px solid var(--line);
  background: #f7f3ea;
  overflow: hidden;
}

.service-feature-grid article:nth-child(even) {
  grid-template-columns: 1fr minmax(300px, .62fr);
}

.service-feature-grid article:nth-child(even) .service-photo-frame {
  order: 2;
}

.service-photo-frame {
  position: relative;
  margin: 0;
  min-height: 330px;
  overflow: hidden;
  background: rgba(255, 253, 248, .72);
}

.service-photo-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  background-image: var(--photo);
  background-size: cover;
  background-position: center center;
  filter: blur(16px) saturate(.82);
  opacity: .2;
  transform: scale(1.06);
}

.service-photo-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  object-position: center center;
}

.service-feature-grid div {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4.5vw, 52px);
  align-self: center;
  background: #f7f3ea;
}

.service-feature-grid span {
  color: var(--clay);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 30px;
}

.service-feature-grid h2,
.service-sub-grid h2,
.service-flow h2 {
  margin: 14px 0 14px;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: .1em;
}

.service-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-sub-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
}

.service-flow {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) 1fr auto;
  gap: 26px;
  align-items: start;
  padding: clamp(30px, 4.5vw, 48px);
  border: 1px solid var(--line);
  background: var(--dark);
  color: var(--paper);
}

.service-flow h2 {
  margin-top: 0;
}

.service-flow ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow li {
  display: grid;
  grid-template-columns: 48px 150px 1fr;
  gap: 16px;
  align-items: baseline;
}

.service-flow span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
}

.service-flow strong {
  letter-spacing: .1em;
}

.service-flow p {
  margin: 0;
  color: rgba(247, 243, 234, .72);
}

.service-flow .button {
  border-color: rgba(247, 243, 234, .35);
  background: var(--paper);
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.gallery-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
  overflow: hidden;
}

.gallery-grid article:not(.gallery-main) {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
}

.gallery-main {
  grid-row: span 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.gallery-main img {
  height: 540px;
}

.gallery-grid div,
.gallery-grid article:not(.gallery-main) h2,
.gallery-grid article:not(.gallery-main) p {
  padding-inline: 24px;
}

.gallery-main div {
  padding: 30px 32px 36px;
}

.gallery-grid article:not(.gallery-main) h2 {
  margin-top: 24px;
}

.gallery-grid article:not(.gallery-main) p {
  margin-bottom: 24px;
}

.works-page {
  display: grid;
  gap: 34px;
}

.works-feature {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) 1fr;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .38);
}

.works-feature-copy {
  padding: clamp(32px, 5vw, 58px);
  align-self: center;
}

.works-feature h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.25;
  letter-spacing: .1em;
}

.works-feature h2 span {
  display: block;
}

.works-feature p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: .08em;
}

.works-feature img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.process-grid,
.field-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid article,
.field-gallery article {
  border: 1px solid var(--line);
  background: #f7f3ea;
  overflow: hidden;
}

.process-grid img,
.field-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-grid article {
  position: relative;
}

.process-grid span {
  display: inline-block;
  margin: 26px 26px 0;
  color: var(--clay);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 28px;
  letter-spacing: .08em;
}

.process-grid h2,
.field-gallery h2 {
  margin: 12px 26px 12px;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: .1em;
}

.process-grid p,
.field-gallery p {
  margin: 0 26px 30px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .08em;
}

.recruit-page-grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}

.recruit-page h2 {
  margin-top: 0;
  font-size: clamp(36px, 4.5vw, 58px);
}

.company-page {
  padding-top: clamp(76px, 9vw, 126px);
}

@media (max-width: 980px) {
  .wrap {
    width: min(100% - 32px, 720px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 96px;
  }

  .nav {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .section-head,
  .works-layout,
  .recruit-grid,
  .company-grid,
  .page-hero-grid,
  .contact-grid,
  .map-grid,
  .detail-grid,
  .gallery-grid,
  .works-feature,
  .process-grid,
  .field-gallery,
  .service-feature-grid article,
  .service-feature-grid article:nth-child(even),
  .service-sub-grid,
  .service-flow,
  .fishing-showcase,
  .recruit-page-grid,
  .service-grid,
  .facility-showcase,
  .facility-grid,
  .company-list {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .page-hero .eyebrow,
  .page-hero .lead {
    grid-column: auto;
  }

  .service-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    align-items: start;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 54px);
    line-height: 1.12;
  }

  .page-hero h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .section-head h2 {
    white-space: normal;
  }

  .work-main img {
    height: 320px;
  }

  .work-side {
    grid-template-columns: 1fr 1fr;
  }

  .work-side article {
    grid-template-columns: 1fr;
  }

  .work-side img {
    height: 170px;
  }

  .facility-showcase > article .facility-photo-frame {
    aspect-ratio: 4 / 3;
  }

  .fishing-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fishing-photo-grid img {
    height: 260px;
  }

  .gallery-grid article:not(.gallery-main) {
    grid-template-columns: 150px 1fr;
  }

  .gallery-main img {
    height: 360px;
  }

  .works-feature img {
    min-height: 360px;
  }

  .works-feature h2 span {
    white-space: normal;
  }

  .service-feature-grid article:nth-child(even) .service-photo-frame {
    order: 0;
  }

  .service-flow li {
    grid-template-columns: 42px 1fr;
  }

  .service-flow li p {
    grid-column: 2;
  }

  .recruit-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 480px);
  }

  section {
    padding: 66px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: .22em;
  }

  .page-hero h1 {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .page-hero-grid {
    display: block;
  }

  .page-hero .lead {
    margin-top: 24px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .work-side article {
    grid-template-columns: 1fr;
  }

  .facility-mini-grid {
    grid-template-columns: 1fr;
  }

  .fishing-photo-grid {
    grid-template-columns: 1fr;
  }

  .fishing-photo-grid img {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .gallery-grid article:not(.gallery-main) {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-main img {
    height: 250px;
    min-height: 250px;
  }

  .works-feature img {
    min-height: 260px;
  }

  .process-grid {
    gap: 30px;
  }

  .process-grid img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: rgba(255, 253, 248, .58);
  }

  .works-feature-copy {
    padding: 32px;
  }

  .works-feature h2 {
    font-size: 31px;
    line-height: 1.32;
  }

  .service-lead-card,
  .service-feature-grid div,
  .service-sub-grid article,
  .service-flow {
    padding: 28px;
  }

  .service-lead-card h2 span {
    white-space: normal;
  }

  .service-lead-card h2 {
    font-size: 31px;
  }

  .service-photo-frame,
  .service-photo-frame img {
    min-height: 230px;
  }

  .service-flow li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-flow li p {
    grid-column: auto;
  }

  .work-side img {
    height: 220px;
  }
}
