/* ============================================
   mula Corporate Site — built from Figma design
   ============================================ */

:root {
  --ink: #090c02;
  --accent: #37718e;
  --bg-gray: #f3f3f3;
  --muted: #9d9e9a;
  --text-gray: #837979;
  --card-navy: #2b3d4b;
  --orange: #f3752b;
  --placeholder: #c2c2c2;
  --divider: #dfe2df;

  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-ja-antique: "Zen Kaku Gothic Antique", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-num: "DIN Alternate", "Oswald", sans-serif;
  --font-logo: "Hiragino Kaku Gothic Std", "Hiragino Kaku Gothic StdN", "Hiragino Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- common: section heading ---------- */
.sec-head { display: flex; flex-direction: column; gap: 8px; }
.sec-head__en {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-en); font-weight: 700;
  font-size: 20px; color: var(--accent);
}
.sec-head__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.sec-head__ja { font-size: 32px; font-weight: 700; line-height: 1; }
.sec-head--light .sec-head__en,
.sec-head--light .sec-head__ja { color: #fff; }
.sec-head--light .sec-head__dot { background: #fff; }

/* ---------- common: dark pill button ---------- */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink); border: 1px solid var(--ink); border-radius: 60px;
  color: #fff; font-family: var(--font-ja); font-weight: 500;
  font-size: 16px; padding: 16px 40px; cursor: pointer;
  transition: background-color .3s, border-color .3s;
}
.btn-dark:hover { background: #262b1c; border-color: #262b1c; }
.btn-dark__arrow { display: inline-flex; width: 24px; height: 24px; }
.btn-dark__arrow img {
  width: 100%; height: 100%;
  transform: rotate(180deg);
  transition: transform .3s cubic-bezier(.25,.1,.25,1);
}
.btn-dark:hover .btn-dark__arrow img { transform: rotate(180deg) translateX(-4px); }
.btn-dark__arrow--sm { width: 16px; height: 16px; }

/* ============================================
   Animations
   ============================================ */

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .8s cubic-bezier(.25, .1, .25, 1),
    transform .8s cubic-bezier(.25, .1, .25, 1);
  transition-delay: calc(var(--reveal-delay, 0) * .12s);
}
[data-reveal="scale"] { transform: translateY(12px) scale(1.02); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- hero entrance (ページロード時) ---------- */
@keyframes anim-fade-down {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes anim-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes anim-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes anim-img-settle {
  from { transform: scale(1.04); }
  to   { transform: none; }
}
.header__logo-box { animation: anim-fade-down .6s cubic-bezier(.25,.1,.25,1) both; }
.fv__title { animation: anim-fade-up .8s cubic-bezier(.25,.1,.25,1) .2s both; }
.fv__sub   { animation: anim-fade-up .8s cubic-bezier(.25,.1,.25,1) .4s both; }
.fv__image     { animation: anim-fade-in 1s ease .3s both; }
.fv__image img { animation: anim-img-settle 1.6s cubic-bezier(.25,.1,.25,1) .3s both; }
@media (min-width: 769px) {
  /* モバイルではgnavがオーバーレイメニューになるためデスクトップのみ */
  .gnav { animation: anim-fade-down .6s cubic-bezier(.25,.1,.25,1) .15s both; }
}

/* ---------- wave: 静かな水平ドリフト ---------- */
@keyframes anim-wave-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-36px); }
}
.business__wave img { animation: anim-wave-drift 40s linear infinite alternate; }

/* ---------- reduced motion: 全演出を無効化 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================
   FV (Hero)
   ============================================ */
.fv {
  position: relative;
  background: var(--bg-gray);
  padding-bottom: 20px;
}

.header {
  position: relative;
  display: flex; justify-content: space-between; align-items: flex-start;
  min-height: 114px;
}
.header__logo-box {
  background: #fff;
  width: 233px; height: 114px;
  border-radius: 0 0 30px 0;
  display: flex; align-items: center;
  padding-left: 60px;
  flex-shrink: 0;
}
.header__logo {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 40px;
  color: var(--ink);
  line-height: 1.2;
}

.gnav {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 60px;
  padding: 10px 15px;
  margin: 29px 40px 0 0;
}
.gnav__list { display: flex; align-items: center; gap: 15px; }
.gnav__item {
  display: flex; flex-direction: column; align-items: center;
  width: 100px; text-align: center;
}
.gnav__item::after {
  content: '';
  width: 100%; height: 2px;
  margin-top: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.25,.1,.25,1);
}
.gnav__item:hover::after { transform: scaleX(1); }
.gnav__item--footer::after { background: #fff; }
.gnav__en {
  font-family: var(--font-en); font-weight: 600;
  font-size: 12px; color: var(--muted);
  margin-bottom: -2px;
}
.gnav__ja {
  font-family: var(--font-ja-antique); font-weight: 700;
  font-size: 16px; color: var(--ink);
}
.gnav__cta {
  background: var(--ink); border: 1px solid var(--ink);
  border-radius: 60px; padding: 8px 20px;
  color: #fff; font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: background-color .3s, border-color .3s;
}
.gnav__cta:hover { background: #262b1c; border-color: #262b1c; }

.header__menu-btn { display: none; }

.fv__heading {
  display: flex; align-items: baseline; gap: 24px;
  padding: 0 20px;
  margin-top: 114px;
  flex-wrap: wrap;
}
.fv__title {
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  white-space: nowrap;
}
.fv__sub {
  font-family: var(--font-en); font-weight: 500;
  font-size: 14px; letter-spacing: 0.07em;
  line-height: 27px;
  color: #000;
}
.fv__image {
  margin: 24px 20px 0;
  border-radius: 10px;
  overflow: hidden;
  height: 543px;
}
.fv__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Privacy Policy (subpage)
   ============================================ */
.fv--subpage { padding-bottom: 0; }

.policy { background: var(--bg-gray); padding: 80px 0 120px; }
.policy__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.policy .sec-head__ja { font-size: 32px; }
.policy__intro {
  margin-top: 40px;
  font-size: 16px; font-weight: 500; line-height: 2;
}
.policy__section { margin-top: 48px; }
.policy__section h2 {
  font-size: 20px; font-weight: 700;
  color: var(--accent);
  padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}
.policy__section p {
  font-size: 16px; font-weight: 400; line-height: 2;
}
.policy__section p + p { margin-top: 1em; }
.policy__section ol {
  margin-top: 12px;
  padding-left: 1.5em;
  list-style: decimal;
}
.policy__section ol li {
  font-size: 16px; line-height: 2;
}
.policy__contact { margin-top: 16px; }
.policy__date {
  margin-top: 56px;
  font-size: 14px; color: var(--text-gray);
  text-align: right;
}
.policy__back { margin-top: 56px; }

/* ============================================
   Business
   ============================================ */
.business {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
}
.business__inner {
  max-width: 1128px;
  margin: 0 auto;
  padding: 0 24px;
}

.business__lead { margin-top: 104px; }
.business__catch {
  font-size: 28px; font-weight: 700; line-height: 1.4;
}
.business__text {
  margin-top: 24px;
  font-weight: 500; font-size: 16px; line-height: 2.4;
}
.business__text p + p { margin-top: 2.4em; }

.business__visual { position: relative; margin-top: 80px; }
.business__wave {
  position: absolute;
  left: -95px; right: -95px;
  top: 50%; transform: translateY(-50%) scaleY(-1);
  opacity: .6;
  pointer-events: none;
}
.business__wave img { width: 100%; }
.business__photo {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: max(calc((100% - 1080px) / 2), 24px);
  border-radius: 8px; overflow: hidden;
  height: 406px;
}
.business__photo img { width: 100%; height: 100%; object-fit: cover; }

.business__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1128px;
  margin: 95px auto 0;
  padding: 0 24px;
}
.service-card {
  background: var(--bg-gray);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex; flex-direction: column; gap: 16px;
  transition:
    translate .35s cubic-bezier(.25,.1,.25,1),
    box-shadow .35s cubic-bezier(.25,.1,.25,1);
}
.service-card:hover {
  translate: 0 -6px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.13);
}
.service-card__img {
  height: 120px;
  border-radius: 4px; overflow: hidden;
}
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__title {
  color: var(--accent);
  font-size: 32px; font-weight: 700; line-height: 1.5;
  margin-top: 8px;
}
.service-card__body {
  font-size: 16px; font-weight: 400; line-height: 1.9;
  max-width: 500px;
}

/* ============================================
   Flow
   ============================================ */
.flow { background: var(--bg-gray); padding: 120px 0; }
.flow__inner {
  display: flex; gap: 84px;
  padding: 0 180px;
  max-width: 1440px;
  margin: 0 auto;
}
.flow__left { flex: 0 0 436px; }
.flow__lead {
  margin-top: 40px;
  font-weight: 500; font-size: 16px; line-height: 1.8;
}
.flow__btn { margin-top: 47px; }

.flow__steps {
  flex: 1;
  display: flex; flex-direction: column; gap: 34px;
  max-width: 560px;
}
.step { display: flex; align-items: center; gap: 24px; }
.step__icon {
  flex-shrink: 0;
  width: 100px; height: 100px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step__icon span {
  width: 53px; height: 53px;
  background: var(--card-navy);
  -webkit-mask: var(--icon) no-repeat center / contain;
  mask: var(--icon) no-repeat center / contain;
}
.step__body { max-width: 436px; }
.step__num {
  font-family: var(--font-en); font-weight: 700;
  font-size: 16px; color: var(--accent);
}
.step__title { font-size: 20px; font-weight: 700; line-height: 1.8; }
.step__desc {
  margin-top: 8px;
  color: var(--text-gray);
  font-weight: 500; font-size: 16px; line-height: 1.8;
}

/* ============================================
   Achievements
   ============================================ */
.achievements { background: var(--accent); padding: 120px 0; }
.achievements__inner {
  position: relative;
  max-width: 1440px; margin: 0 auto;
  padding: 0 180px;
  min-height: 621px;
}
.achievements__map {
  position: absolute;
  left: 319px; top: 144px;
  width: 802px;
  pointer-events: none;
}

.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  color: var(--card-navy);
  padding: 24px;
  overflow: hidden;
}
.stat-card__head {
  display: flex; align-items: baseline; gap: 4px;
}
.stat-card__title { font-size: 20px; font-weight: 700; line-height: 1; }
.stat-card__note { font-size: 14px; font-weight: 500; line-height: 1; }
.stat-card__value {
  display: flex; align-items: baseline; gap: 9px;
  margin-top: 10px;
  line-height: 1;
}
.stat-card__prefix, .stat-card__unit { font-size: 20px; font-weight: 500; }
.stat-card__num {
  font-family: var(--font-num); font-weight: 700;
  font-size: 64px; line-height: 1;
}
.stat-card__num--xl { font-size: 84px; }
.stat-card__unit-en { font-family: var(--font-ja); font-size: 24px; font-weight: 500; }

.stat-card--sales { left: 180px; top: 104px; width: 338px; height: 176px; }
.stat-card--sales .stat-card__illust {
  position: absolute; right: 24px; bottom: 25px;
  width: 144px; height: 96px;
}

.stat-card--seafood   { left: 681px; top: 192px; width: 262px; height: 142px; }
.stat-card--livestock { left: 989px; top: 270px; width: 262px; height: 142px; }
.stat-card--processed { left: 815px; top: 475px; width: 262px; height: 142px; }
.stat-card__thumb {
  position: absolute; right: 24px; top: 48px;
  width: 70px; height: 70px;
}

.stat-card--countries { left: 314px; top: 414px; width: 338px; height: 176px; }
.stat-card__list {
  margin-top: 16px;
  font-size: 14px; font-weight: 500; line-height: 1.65;
}
.stat-card__illust--globe {
  position: absolute; right: 24px; top: 44px;
  width: 104px; height: 102px;
}

/* ============================================
   Mission
   ============================================ */
.mission { background: #fff; padding: 80px 0 134px; }
.mission__inner { padding: 0 120px; max-width: 1440px; margin: 0 auto; }

.mission__content {
  display: flex; gap: 80px;
  margin-top: 50px;
}
.mission__catch {
  flex-shrink: 0;
  font-size: 36px; font-weight: 700; line-height: 1.6;
}
.mission__text {
  font-weight: 500; font-size: 14px; line-height: 2.7;
  max-width: 672px;
}

.mission__photo {
  margin-top: 96px;
  border-radius: 8px; overflow: hidden;
  height: 279px;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
}
.mission__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Contact
   ============================================ */
.contact { background: var(--bg-gray); padding: 120px 0; }
.contact__inner {
  display: flex; gap: 100px;
  padding: 0 180px;
  max-width: 1440px; margin: 0 auto;
}
.contact .sec-head { flex: 0 0 280px; }

.contact-form {
  flex: 1; max-width: 700px;
  display: flex; flex-direction: column; gap: 33px;
  margin-top: -15px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.contact-form__label { font-size: 15px; font-weight: 500; }
.contact-form__req { color: var(--orange); font-weight: 700; margin-left: 2px; }
.contact-form__input {
  background: #fff; border: none; outline: none;
  padding: 16px; width: 100%;
  font-family: var(--font-ja); font-size: 15px; color: var(--ink);
}
.contact-form__input::placeholder {
  font-family: "DM Sans", sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.03em;
  color: var(--placeholder); opacity: .5;
}
.contact-form__input { transition: box-shadow .3s; }
.contact-form__input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--accent);
}
.contact-form__textarea { height: 180px; resize: vertical; }

.contact-form__agree {
  display: flex; align-items: center; gap: 11px;
  font-size: 15px; font-weight: 500;
}
.contact-form__agree input[type="checkbox"] {
  width: 14px; height: 14px;
  accent-color: var(--ink);
  border: 1px solid #8f8f8f; border-radius: 2px;
}
.contact-form__link { color: var(--accent); text-decoration: underline; }

.contact-form__submit {
  width: 100%;
  border-radius: 40px;
  padding: 20px 37px;
  font-size: 18px;
}

/* ---------- contact: honeypot(画面外に退避) ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- contact: 確認・完了・エラーページ ---------- */
.form-errors {
  margin-top: 40px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--orange);
  border-radius: 8px;
  list-style: disc;
}
.form-errors li {
  margin-left: 1.2em;
  font-size: 16px; line-height: 2;
  color: var(--ink);
}

.confirm-table { margin-top: 40px; }
.confirm-table__row {
  display: flex; gap: 12px;
  padding: 24px 0 25px 24px;
  background: #fff;
  border-bottom: 1px solid var(--divider);
}
.confirm-table__row:first-child { border-radius: 8px 8px 0 0; }
.confirm-table__row:last-child { border-radius: 0 0 8px 8px; border-bottom: none; }
.confirm-table__row dt {
  flex: 0 0 160px;
  color: var(--accent);
  font-size: 16px; font-weight: 700; line-height: 1.7;
}
.confirm-table__row dd {
  font-size: 16px; font-weight: 500; line-height: 1.7;
  padding-right: 24px;
  overflow-wrap: anywhere;
}
.confirm-table__message { white-space: pre-wrap; }

.confirm-actions {
  display: flex; align-items: center; gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--ink); border-radius: 60px;
  color: var(--ink); font-family: var(--font-ja); font-weight: 500;
  font-size: 16px; padding: 16px 40px; cursor: pointer;
  transition: opacity .25s;
}
.btn-outline:hover { opacity: .6; }

@media (max-width: 768px) {
  .confirm-table__row { flex-direction: column; gap: 4px; padding-left: 16px; }
  .confirm-table__row dt { flex: none; }
  .confirm-actions { flex-direction: column-reverse; align-items: stretch; }
  .confirm-actions .btn-dark, .confirm-actions .btn-outline { width: 100%; }
  .confirm-actions__send { display: contents; }
}

/* ============================================
   Company
   ============================================ */
.company { background: #fff; padding: 120px 0 140px; }
.company__inner {
  display: flex; gap: 100px;
  padding: 0 180px;
  max-width: 1440px; margin: 0 auto;
}
.company .sec-head { flex: 0 0 273px; }

.company__table { flex: 1; max-width: 707px; }
.company__row {
  display: flex; gap: 12px;
  padding: 24px 0 25px 24px;
  border-bottom: 1px solid var(--divider);
  transition: background-color .3s;
}
.company__row:hover { background: #fafafa; }
.company__row dt {
  flex: 0 0 160px;
  color: var(--accent);
  font-size: 16px; font-weight: 700; line-height: 1.7;
}
.company__row dd {
  font-size: 16px; font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--ink); color: #fff; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 60px; flex-wrap: wrap;
  max-width: 1440px; margin: 0 auto;
  padding: 80px 160px 100px;
}
.footer__logo {
  font-family: var(--font-logo); font-weight: 800;
  font-size: 40px; line-height: 1.2;
}
.footer__address {
  margin-top: 15px;
  font-size: 14px; font-weight: 500; line-height: 2;
}
.footer__policy { margin-top: 16px; }
.footer__policy a {
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  text-decoration: underline;
  transition: opacity .25s;
}
.footer__policy a:hover { opacity: .7; }
.footer__nav {
  display: flex; gap: 24px;
  margin-top: 79px;
}
.gnav__item--footer { width: auto; align-items: flex-start; text-align: left; }
.gnav__item--footer .gnav__ja { color: #fff; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1280px) {
  .flow__inner, .contact__inner, .company__inner, .achievements__inner { padding-left: 60px; padding-right: 60px; }
  .mission__inner { padding-left: 60px; padding-right: 60px; }
  .footer__inner { padding-left: 60px; padding-right: 60px; }
  .achievements__map { left: 50%; transform: translateX(-50%); }
  .stat-card--sales { left: 60px; }
  .stat-card--countries { left: 194px; }
  .stat-card--seafood { left: 561px; }
  .stat-card--livestock { left: auto; right: 60px; }
  .stat-card--processed { left: 695px; }
}

@media (max-width: 1024px) {
  .gnav__list { display: none; }

  /* achievements: switch to flow layout */
  .achievements__inner { min-height: 0; }
  .achievements__map {
    position: relative; left: auto; top: auto; transform: none;
    width: 100%; max-width: 640px;
    margin: 40px auto 0;
  }
  .stat-card { position: relative; left: auto !important; right: auto !important; top: auto !important; width: 100% !important; height: auto !important; min-height: 142px; }
  .achievements__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .achievements__inner .sec-head,
  .achievements__map { grid-column: 1 / -1; }

  .flow__inner { flex-direction: column; gap: 60px; }
  .flow__left { flex: none; }
  .contact__inner, .company__inner { flex-direction: column; gap: 48px; }
  .contact .sec-head, .company .sec-head { flex: none; }

  .mission__content { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .header__logo-box { width: 180px; height: 90px; padding-left: 36px; }
  .header__logo { font-size: 32px; }

  /* mobile menu */
  .header__menu-btn {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    position: fixed; top: 20px; right: 20px; z-index: 1001;
    width: 48px; height: 48px;
    background: var(--ink); border: none; border-radius: 50%;
    padding: 14px 12px; cursor: pointer;
  }
  .header__menu-btn span {
    display: block; height: 2px; width: 100%;
    background: #fff; transition: transform .3s, opacity .3s;
  }
  .header__menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .header__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header__menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .gnav {
    position: fixed; inset: 0; z-index: 1000;
    flex-direction: column; justify-content: center; gap: 32px;
    border-radius: 0; margin: 0;
    background: rgba(255, 255, 255, 0.97);
    visibility: hidden; opacity: 0;
    transition: opacity .3s, visibility .3s;
  }
  .gnav.is-open { visibility: visible; opacity: 1; }
  .gnav__list { display: flex; flex-direction: column; gap: 28px; }

  .fv__heading { margin-top: 40px; }
  /* nowrapのタイトルが320px幅でも収まるよう画面幅に追従させる */
  .fv__title { font-size: clamp(22px, 8vw, 48px); }
  .fv__image { height: 320px; }

  .business { padding: 80px 0 100px; }
  .business__lead { margin-top: 64px; }
  .business__catch { font-size: 22px; }
  .business__text { font-size: 15px; line-height: 2; }
  .business__visual { margin-top: 48px; }
  .business__photo { margin: 0 24px; height: 240px; }
  .business__cards { grid-template-columns: 1fr; margin-top: 56px; }
  .service-card { padding: 24px; }
  .service-card__title { font-size: 26px; }

  .flow { padding: 80px 0; }
  .flow__inner { padding: 0 24px; }
  .step { align-items: flex-start; }
  .step__icon { width: 72px; height: 72px; }
  .step__icon span { width: 38px; height: 38px; }

  .achievements { padding: 80px 0; }
  .achievements__inner { padding: 0 24px; grid-template-columns: 1fr; }

  .mission { padding: 64px 0 80px; }
  .mission__inner { padding: 0 24px; }
  .mission__catch { font-size: 26px; }
  .mission__photo { margin-top: 48px; height: 200px; }

  .contact, .company { padding: 80px 0; }
  .contact__inner, .company__inner { padding: 0 24px; }
  .company__row { padding-left: 8px; flex-direction: column; gap: 4px; }
  .company__row dt { flex: none; }

  .footer__inner { padding: 56px 24px 72px; flex-direction: column; gap: 40px; }
  .footer__nav { margin-top: 0; flex-wrap: wrap; }
}
