@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/noto-serif-jp-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --forest: #176b3a;
  --forest-dark: #0f512b;
  --leaf: #3f9a5f;
  --mist: #eef6f0;
  --paper: #fbfcfa;
  --white: #fff;
  --ink: #202a24;
  --muted: #68716b;
  --line: #d9e1db;
  --shadow: 0 16px 45px rgb(23 62 39 / 10%);
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --shell: 1180px;
  --article: 780px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

.alignleft {
  float: left;
  margin: 0 28px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 28px;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text,
.gallery-caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.sticky,
.bypostauthor {
  position: relative;
}

.is-style-suzuki-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  background: var(--mist);
}

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

figure,
p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.45;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--forest);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-dark);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.shell--wide {
  --shell: 1320px;
}

.shell--article {
  --shell: var(--article);
}

.section {
  padding-block: clamp(52px, 5vw, 76px);
}

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

.section-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.section-heading::before,
.section-heading::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  text-align: center;
}

.section-heading__eyebrow {
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading .section-heading__eyebrow {
  display: none;
}

.section-action {
  margin: 28px 0 0;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.button--primary:hover {
  color: var(--white);
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.button--outline {
  color: var(--forest);
  background: var(--white);
  border-color: var(--forest);
}

.button--outline:hover {
  color: var(--white);
  background: var(--forest);
}

.button--large {
  min-height: 60px;
  padding-inline: 34px;
}

.button--compact {
  min-height: 42px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.site-branding {
  flex: 0 0 auto;
}

.site-branding__link,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.site-branding__logo {
  width: auto;
  max-width: 260px;
  height: 45px;
  object-fit: contain;
}

.site-branding__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.site-header__navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 26px;
}

.primary-nav__list,
.footer-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  display: block;
  padding-block: 26px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 52px;
  height: 52px;
  padding: 4px 2px;
  overflow: hidden;
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--line);
  line-height: 1;
}

.menu-toggle i {
  font-size: 1.5rem;
  line-height: 1;
}

.menu-toggle span {
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.front-hero {
  overflow: hidden;
  background: var(--white);
}

.front-hero__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  height: clamp(520px, 44vw, 600px);
}

.front-hero:not(.front-hero--with-image) .front-hero__grid {
  grid-template-columns: minmax(0, 760px);
  align-items: center;
}

.front-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 54px 30px 54px 0;
}

.front-hero__eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.front-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  letter-spacing: 0.02em;
}

.front-hero__lead {
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 700;
}

.front-hero__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.front-hero__media {
  position: relative;
  margin: 0;
}

.front-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-grid-section {
  position: relative;
  z-index: 4;
  padding-block: 16px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

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

.cta-card {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  min-height: 86px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--forest);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cta-card:hover {
  color: var(--forest);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cta-card > .ph:first-child {
  color: var(--forest);
  font-size: 2.35rem;
}

.cta-card__copy {
  display: flex;
  flex-direction: column;
}

.cta-card__copy strong {
  font-family: var(--serif);
  font-size: 1.06rem;
}

.cta-card__copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.cta-card--featured {
  color: var(--white);
  background: var(--forest);
}

.cta-card--featured:hover {
  color: var(--white);
  background: var(--forest-dark);
}

.cta-card--featured > .ph:first-child,
.cta-card--featured .cta-card__copy small {
  color: var(--white);
}

.featured-case {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.3fr);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgb(23 62 39 / 6%);
}

.featured-case__media {
  min-height: 380px;
  margin: 0;
}

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

.featured-case__content {
  padding: clamp(28px, 4vw, 56px);
}

.featured-case__category,
.case-card__category {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 15px;
  color: var(--forest);
  background: var(--mist);
  font-size: 0.74rem;
  font-weight: 700;
}

.featured-case h3 {
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.featured-case__story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 26px;
}

.featured-case__story > div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.featured-case__story span {
  color: var(--forest);
  font-weight: 700;
}

.featured-case__story p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.benefit-list li,
.tag-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  color: var(--forest);
  background: var(--mist);
  font-size: 0.78rem;
  font-weight: 700;
}

.case-grid,
.post-grid,
.guide-grid,
.strength-grid,
.value-grid,
.equipment-grid {
  display: grid;
  gap: 18px;
}

.case-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.case-grid--three,
.post-grid,
.strength-grid,
.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card,
.post-card,
.guide-card,
.strength-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.case-card:hover,
.post-card:hover,
.guide-card:hover,
.strength-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.case-card__link,
.post-card__link,
.guide-card {
  display: flex;
  height: 100%;
  color: var(--ink);
  flex-direction: column;
  text-decoration: none;
}

.case-card__media,
.post-card__media,
.guide-card figure,
.strength-card figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.case-card__media img,
.post-card__media img,
.guide-card figure img,
.strength-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.case-card:hover img,
.post-card:hover img,
.guide-card:hover img {
  transform: scale(1.025);
}

.case-card__body,
.post-card__body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 17px;
}

.case-card h3,
.post-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.case-card p,
.post-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.case-card .tag-list {
  margin-top: auto;
  margin-bottom: 0;
}

.post-card time {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
}

.post-card .text-link {
  margin-top: auto;
}

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

.guide-card {
  position: relative;
  padding: 20px;
}

.guide-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.guide-card__title i {
  color: var(--forest);
  font-size: 1.8rem;
}

.guide-card h3 {
  margin: 0;
  font-size: 1rem;
}

.guide-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.guide-card > .text-link {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 12px;
}

.strength-card {
  padding: 20px;
}

.strength-card header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 78px;
}

.strength-card header > i {
  color: var(--forest);
  font-size: 2.1rem;
}

.strength-card h3 {
  margin-bottom: 3px;
  font-size: 1.1rem;
}

.strength-card header strong {
  font-size: 0.8rem;
}

.strength-card figure {
  aspect-ratio: 16 / 10;
  margin: 0 -20px 18px;
}

.strength-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.strength-card__direct {
  color: var(--forest) !important;
  font-weight: 700;
}

.d2c-banner {
  background: var(--mist);
  border-block: 1px solid var(--line);
}

.d2c-banner__grid,
.d2c-lead {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.9fr 1.1fr;
}

.d2c-banner__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px) clamp(30px, 5vw, 72px) clamp(36px, 5vw, 64px) 0;
}

.d2c-banner__copy h2 {
  margin-bottom: 6px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.d2c-banner__copy h3 {
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.d2c-banner figure,
.d2c-lead figure {
  margin: 0;
}

.d2c-banner figure img,
.d2c-lead figure img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

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

.company-teaser {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.company-teaser h2 {
  font-size: 1.45rem;
}

.company-teaser p:not(.section-heading__eyebrow) {
  color: var(--muted);
  font-size: 0.88rem;
}

.company-teaser figure {
  aspect-ratio: 1 / 1;
  margin: 0;
}

.company-teaser figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-teasers > .section-action {
  grid-column: 1 / -1;
}

.editor-note {
  padding: 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
}

.editor-note--admin {
  display: none;
}

.logged-in.admin-bar .editor-note--admin {
  display: block;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 300px;
  color: var(--ink);
  background: var(--mist);
  place-items: center;
  overflow: hidden;
}

.page-hero--with-image {
  min-height: 390px;
  color: var(--white);
  background: var(--ink);
}

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

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: rgb(16 33 23 / 62%);
  content: "";
}

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

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 70px;
}

.page-hero__eyebrow {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-hero--with-image .page-hero__eyebrow {
  color: #c9efd6;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.breadcrumbs {
  padding-block: 15px;
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: var(--muted);
  content: "/";
}

.archive-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.archive-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

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

.filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-nav a {
  padding: 8px 18px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.filter-nav a.is-active,
.filter-nav a:hover {
  color: var(--white);
  background: var(--forest);
}

.case-hero {
  padding-block: clamp(54px, 7vw, 92px);
  background: var(--white);
}

.case-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 6vw, 88px);
}

.case-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.case-hero__client {
  color: var(--muted);
}

.case-hero__media {
  aspect-ratio: 4 / 3;
  margin: 0;
}

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

.case-story {
  display: grid;
  gap: 44px;
}

.case-story article {
  display: grid;
  grid-template-columns: 60px 130px 1fr;
  gap: 18px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.case-story article > span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.case-story h2 {
  font-size: 1.3rem;
}

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

.benefit-list--large {
  justify-content: center;
  margin-block: 44px;
}

.benefit-list--large li {
  padding: 12px 18px;
  font-size: 0.9rem;
}

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

.case-gallery figure {
  margin: 0;
}

.case-gallery img {
  width: 100%;
}

.gallery-title {
  margin-bottom: 30px;
  text-align: center;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content > * + * {
  margin-top: 1.5em;
}

.entry-content h2 {
  padding-bottom: 12px;
  margin-top: 2.4em;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  border-bottom: 2px solid var(--forest);
}

.entry-content h3 {
  padding-left: 14px;
  margin-top: 2em;
  font-size: 1.3rem;
  border-left: 3px solid var(--forest);
}

.entry-content img {
  height: auto;
}

.entry-content a:not(.wp-element-button) {
  color: var(--forest);
}

.entry-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.85rem;
}

.post-navigation {
  padding-top: 32px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav-links a {
  color: var(--forest);
  font-weight: 700;
}

.knowledge-section__grid,
.strength-intro__grid,
.company-story,
.d2c-lead {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 96px);
}

.knowledge-section:nth-of-type(even) .knowledge-section__copy,
.company-story--reverse > div {
  order: 2;
}

.knowledge-section__number,
.strength-detail__heading > span {
  margin-bottom: 5px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
}

.knowledge-section h2,
.company-story h2,
.d2c-lead h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.knowledge-section h3 {
  font-size: 1.2rem;
}

.knowledge-section p:not(.knowledge-section__number),
.company-story p:not(.section-heading__eyebrow),
.d2c-lead p {
  color: var(--muted);
}

.knowledge-section figure,
.strength-intro figure,
.company-story figure {
  margin: 0;
}

.knowledge-section figure img,
.strength-intro figure img,
.company-story figure img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.strength-intro h2 {
  color: var(--forest);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  white-space: pre-line;
}

.strength-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(30px, 6vw, 80px);
}

.strength-detail__heading h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.strength-detail__heading strong {
  font-size: 0.86rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article,
.value-grid article,
.equipment-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-grid i,
.value-grid i,
.equipment-grid > article > i {
  color: var(--forest);
  font-size: 2.4rem;
}

.process-grid h3,
.value-grid h2,
.equipment-grid h3 {
  margin: 8px 0;
  font-size: 1.15rem;
}

.process-grid p,
.value-grid p,
.equipment-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}

.flow-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  color: var(--forest);
  font-weight: 700;
  text-align: center;
}

.flow-list i {
  display: grid;
  width: 68px;
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 2rem;
  place-items: center;
}

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

.equipment-grid figure {
  margin: 18px -28px -28px;
}

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

.d2c-lead > div {
  padding-block: 40px;
}

.value-grid article {
  text-align: center;
}

.company-story--reverse figure {
  order: 1;
}

.contact-intro {
  margin-bottom: 42px;
  text-align: center;
}

.contact-intro > i {
  color: var(--forest);
  font-size: 3rem;
}

.contact-form-wrap {
  padding: clamp(24px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
}

.wpcf7-form label {
  display: block;
  font-weight: 700;
}

.wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.wpcf7 input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #b8c4bc;
  border-radius: 0;
}

.wpcf7 input[type="submit"] {
  min-width: 220px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  font-weight: 700;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  color: #a32626;
  font-size: 0.8rem;
}

.wpcf7 form .wpcf7-response-output {
  padding: 14px;
  margin: 24px 0 0;
}

.contact-phone {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  padding: 30px;
  margin-top: 30px;
  background: var(--mist);
  text-align: center;
}

.contact-phone p {
  margin: 0;
  font-weight: 700;
}

.contact-phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
}

.document-download-success {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100% - 48px));
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--forest);
  box-shadow: var(--shadow);
}

.search-result {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.search-result__type {
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
}

.search-result h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.search-form {
  display: flex;
  gap: 8px;
  max-width: 560px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  height: 48px;
  padding-inline: 14px;
  border: 1px solid var(--line);
}

.empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.empty-state > i {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 4rem;
}

.nav-links,
.page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-numbers {
  display: inline-grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  text-decoration: none;
  place-items: center;
}

.page-numbers.current {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer .cta-grid-section {
  background: var(--paper);
}

.site-footer__main {
  padding-block: 54px;
}

.site-footer__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.1fr) max-content minmax(280px, 0.85fr);
  gap: clamp(28px, 3vw, 48px);
}

.site-footer__brand img {
  width: auto;
  max-width: 250px;
  height: 42px;
  object-fit: contain;
}

.site-footer__company p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-nav__list {
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.45vw, 22px);
}

.footer-nav__list a {
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__contact {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.site-footer__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--forest);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__contact small {
  color: var(--muted);
}

.site-footer__bottom {
  padding-block: 15px;
  color: var(--muted);
  background: #f3f6f3;
  font-size: 0.72rem;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 16px;
  }

  .primary-nav__list {
    gap: 13px;
  }

  .primary-nav a,
  .header-contact__phone {
    font-size: 0.8rem;
  }

  .header-contact .button {
    display: none;
  }

  .case-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 52px;
  }

  .site-header__navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    width: min(420px, 100%);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    padding: 24px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -12px 20px 40px rgb(20 40 28 / 18%);
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    overscroll-behavior: contain;
    transition: opacity 180ms ease;
    pointer-events: none;
    visibility: hidden;
  }

  .site-header__navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .primary-nav,
  .header-contact {
    width: 100%;
  }

  .primary-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
  }

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

  .header-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .header-contact .button {
    display: inline-flex;
  }

  .header-contact__phone {
    justify-content: center;
    padding-block: 12px;
    font-size: 1.05rem;
  }

  .front-hero__grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .front-hero__copy {
    padding-right: 30px;
  }

  .featured-case,
  .case-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .front-hero--with-image .front-hero__grid {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 72svh, 620px);
  }

  .front-hero--with-image .front-hero__copy {
    min-height: clamp(520px, 72svh, 620px);
    padding: 58px max(24px, 6vw);
    color: var(--white);
    text-shadow: 0 2px 18px rgb(0 0 0 / 34%);
  }

  .front-hero--with-image .front-hero__eyebrow,
  .front-hero--with-image .front-hero__note {
    color: var(--white);
  }

  .front-hero--with-image .front-hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    min-height: 0;
  }

  .front-hero--with-image .front-hero__media::after {
    position: absolute;
    inset: 0;
    background: rgb(8 31 19 / 58%);
    content: "";
  }

  .front-hero--with-image .front-hero__image {
    height: 100%;
    object-position: center;
  }

  .front-hero__grid,
  .front-hero:not(.front-hero--with-image) .front-hero__grid,
  .featured-case,
  .d2c-banner__grid,
  .d2c-lead,
  .knowledge-section__grid,
  .strength-intro__grid,
  .company-story,
  .case-hero__grid {
    grid-template-columns: 1fr;
  }

  .front-hero__grid {
    height: auto;
  }

  .front-hero__copy {
    min-height: 440px;
    padding: 54px 0 44px;
  }

  .front-hero__media {
    min-height: 380px;
  }

  .featured-case__media {
    min-height: 380px;
  }

  .case-grid--five,
  .case-grid--three,
  .post-grid,
  .strength-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .company-teasers {
    grid-template-columns: 1fr;
  }

  .company-teaser {
    grid-template-columns: 1fr 0.8fr;
  }

  .strength-detail {
    grid-template-columns: 1fr;
  }

  .knowledge-section:nth-of-type(even) .knowledge-section__copy,
  .company-story--reverse > div,
  .company-story--reverse figure {
    order: initial;
  }

  .d2c-banner__copy {
    padding: 54px 0;
  }

  .case-story article {
    grid-template-columns: 50px 100px 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__contact {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding-block: 58px;
  }

  .site-branding__logo {
    max-width: 210px;
    height: 38px;
  }

  .front-hero__grid {
    min-height: auto;
  }

  .front-hero__copy {
    min-height: 455px;
  }

  .front-hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .front-hero__media {
    min-height: 340px;
  }

  .cta-grid,
  .guide-grid,
  .case-grid--five,
  .case-grid--three,
  .post-grid,
  .strength-grid,
  .value-grid,
  .equipment-grid,
  .process-grid,
  .case-gallery {
    grid-template-columns: 1fr;
  }

  .cta-card {
    min-height: 82px;
  }

  .section-heading {
    gap: 12px;
  }

  .featured-case__story {
    grid-template-columns: 1fr;
  }

  .featured-case__media {
    min-height: 300px;
  }

  .company-teaser {
    grid-template-columns: 1fr;
  }

  .flow-list {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-list li {
    flex-direction: row;
    text-align: left;
  }

  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .case-story article {
    grid-template-columns: 44px 1fr;
  }

  .case-story article p {
    grid-column: 1 / -1;
  }

  .page-hero,
  .page-hero--with-image {
    min-height: 260px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .wpcf7 input[type="file"] {
    max-width: 100%;
  }

  .entry-content table,
  .entry-content tbody {
    display: block;
    width: 100%;
  }

  .entry-content tr {
    display: grid;
    grid-template-columns: minmax(78px, 0.34fr) minmax(0, 1fr);
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
  }

  .entry-content th,
  .entry-content td {
    padding-inline: 4px;
    overflow-wrap: anywhere;
    text-align: left;
    vertical-align: top;
  }

  .entry-content th {
    word-break: keep-all;
  }

  .contact-phone a {
    font-size: 1.35rem;
  }

  .site-footer__main {
    padding-block: 42px;
  }

  .footer-nav__list {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
