@charset "UTF-8";
/* =========================================================
   theme.css － mitsukin.info 風リデザイン（app.css への上書き）
   既存マークアップ・クラスを活かしつつ配色/余白/装飾を刷新
   ========================================================= */

:root {
  --c-primary: #25453a;       /* 深いフォレストグリーン（信頼・自然） */
  --c-primary-dark: #1a3329;
  --c-accent: #b08d4f;        /* 真鍮ゴールド（上質なアクセント） */
  --c-text: #2c2c2c;
  --c-muted: #6f6f6f;
  --c-bg: #ffffff;
  --c-bg-soft: #f5f2ec;       /* 温かみのあるオフホワイト */
  --c-line: #e2ddd3;
}

/* ---------- ベース ---------- */
body {
  color: var(--c-text);
  letter-spacing: 0.04em;
}

/* ---------- 見出し（EN ラベル + JA タイトル） ---------- */
.heading-style2 .heading__title--en {
  display: inline-block;
  color: var(--c-accent);
  font-size: 1.4rem;
  letter-spacing: 0.34em;
  font-weight: 700;
  margin-bottom: 1.4rem;
  padding-left: 0.34em;
}
.heading-style2 .heading__title--en::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: var(--c-accent);
  vertical-align: middle;
  margin-right: 1rem;
  transform: translateY(-0.2rem);
}
.heading-style2 .heading__title--ja {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: var(--c-primary);
}
/* 既存の中央の縦線装飾は非表示にしてスッキリ */
.heading-style2::after { display: none !important; }

@media (max-width: 767px) {
  .heading-style2 .heading__title--ja { font-size: 2.4rem; }
}

/* ---------- ボタン ---------- */
.button-primary {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
  letter-spacing: 0.1em;
  padding: 1.4rem 2.6rem;
  border-radius: 2px;
}
.button-primary:hover {
  background-color: var(--c-primary-dark);
}
.button-large { font-size: 1.6rem; }
/* 矢印付きの「VIEW MORE」風 */
.button-primary::after {
  content: " →";
  letter-spacing: 0;
}

/* ---------- ヒーロー ---------- */
/* 上部画像をブラウザ画面の高さにぴったり固定（mitsukin風フルスクリーン） */
.hero {
  height: 100vh;
  height: 100dvh; /* モバイルのアドレスバー高さに追従（対応ブラウザ） */
  grid-template-rows: 1fr;   /* 行を画面高いっぱいに（下寄せを効かせる） */
  align-items: stretch;
}
.hero__background { align-self: stretch; } /* 背景画像はフル表示 */
.hero__content {
  align-self: end;           /* テキストを下寄せ（左下） */
  padding-top: 10rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  /* 文字をできるだけ下へ（下余白を詰める）＋左右の外側paddingを広げる */
  .hero__content {
    padding-top: 8rem;
    padding-bottom: 2.4rem;
    padding-left: 3.6rem;
    padding-right: 3.6rem;
  }
  .hero__wrap { padding: 1rem 0; }
}
@media (min-width: 768px) {
  /* PCではコンテナ枠に縛られず、左端寄り・少し下に配置 */
  .hero__content {
    max-width: none;
    padding-left: 4rem;
    padding-bottom: 5rem;
  }
}
.hero__wrap {
  padding: 2.4rem 0;
  background-color: transparent;
  /* 英単語が途中で折れないように（body の word-break:break-all を打ち消す） */
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}
.hero__headline {
  font-family: "Jura", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero__headline .hero__headline-sub {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .hero__headline .hero__headline-sub { font-size: 1.5rem; margin-top: 0.8rem; }
}
.hero__description {
  font-size: 1.7rem;
  margin-top: 1.6rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
  text-wrap: balance; /* 行の長さを均等化して見栄えを整える */
}
@media (max-width: 767px) {
  .hero__description { font-size: 1.4rem; line-height: 1.6; margin-top: 1.2rem; } /* 行間を狭く */
}
.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}
/* スライダーの全要素を画面全高に（slickのインライン上書きに勝つため !important） */
.hero .js-slide-hero,
.hero .slick-list,
.hero .slick-track,
.hero .slick-slide,
.hero .slick-slide > div,
.hero .slick-slide picture {
  height: 100% !important;
}
.hero .slick-slide > div,
.hero .slick-slide picture { display: block; }
/* 画像はheroいっぱいにcoverで表示。上揃えにして上部（看板）が切れないようにする */
.hero__background img,
.hero .slick-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* スライドごとの寄せ位置指定（既定:中央上）。<img>にクラスを付けて切替 */
.hero__background img.hero__img--left,
.hero .slick-slide img.hero__img--left {
  object-position: left top;
}
.hero__background img.hero__img--right,
.hero .slick-slide img.hero__img--right {
  object-position: right top;
}
@media (max-width: 767px) {
  .hero__headline { font-size: 2.2rem; line-height: 1.2; }
  /* スマホでは画像を左寄せ表示に調整（PCは既定の center top のまま） */
  .hero__background img.hero__img--sp-pos1,
  .hero .slick-slide img.hero__img--sp-pos1 { object-position: -30px top; }
  .hero__background img.hero__img--sp-pos2,
  .hero .slick-slide img.hero__img--sp-pos2 { object-position: -200px top; }
}

/* ---------- セクション共通の背景トーン ---------- */
.background-modest {
  background-color: var(--c-bg-soft) !important;
}

/* ---------- ABOUT ---------- */
.about__h2 {
  color: var(--c-primary);
  font-weight: 600;
}
.about__catch {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-primary);
}
.about__description p { color: var(--c-muted); }
.about__sign {
  margin-top: 2.4rem;
  text-align: right;
  color: var(--c-primary) !important;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}
/* 社長写真は大きくなりすぎないよう上限を設定。下端を文章の下端に揃える */
.about__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.about__image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 4px;
}
.about__name-sp { display: none; }
@media (min-width: 768px) {
  /* 代表挨拶：本文と写真を中央寄せにし、中央に空きすぎる余白を詰める */
  .about__container { justify-content: center; gap: 5rem; }
  .about__image { width: auto; } /* 枠を写真幅に合わせ、左右の余白で間延びしないように */
}
@media (max-width: 767px) {
  /* スマホでは代表写真を小さめに（少し大きめに調整）。被写体が右寄りのため少し左へ寄せて本文の中心に合わせる */
  .about__image img { max-width: 240px; transform: translateX(-18px); }
  /* スマホでは写真の下に代表者名を表示し、本文側の署名は隠す */
  .about__image { flex-direction: column; align-items: center; }
  .about__name-sp {
    display: block;
    margin-top: 1.4rem;
    text-align: center;
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: 0.06em;
  }
  .about__sign { display: none; }
}

/* ---------- PHILOSOPHY（白背景） ---------- */
.philosophy {
  background: #fff;
}
.philosophy__lead {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  margin: 0 auto 5rem;
  max-width: 84rem;
}
.philosophy__lead span { color: var(--c-accent); }
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.value {
  flex: 1 1 26rem;
  text-align: center;
  background: var(--c-bg-soft);
  border-radius: 4px;
  overflow: hidden;
}
.value__media {
  margin-bottom: 2.4rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.value__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.value:hover .value__media img { transform: scale(1.05); }
.value > :not(.value__media) {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.value > .value__text { padding-bottom: 3rem; }
.value__num {
  font-family: "Jura", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  display: block;
  margin-bottom: 1.2rem;
}
.value__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 1.6rem;
}
.value__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3rem;
  height: 1px;
  background: var(--c-accent);
}
.value__text {
  font-size: 1.4rem;
  line-height: 1.95;
  color: var(--c-muted);
  text-align: left;
}

/* ---------- 事業紹介カード ---------- */
.business-card__title,
.card__body h3 {
  color: var(--c-primary);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.business-card__title {
  position: relative;
  padding-left: 1.6rem;
}
.business-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--c-accent);
}
.card__body p { color: var(--c-muted); }
.card__media img { border-radius: 3px; }

/* ---------- 取扱商品スライダー（自動ループ） ---------- */
.items-slider-section {
  padding: 5rem 0;
  background: var(--c-bg-soft);
  overflow: hidden;
}
/* スライダー上のリード文（明朝体） */
.items-lead {
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  text-align: center;
  color: #6b4f37; /* ブラウン系 */
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .items-lead { font-size: 1.7rem; }
}
.items-slider {
  /* slick初期化前のちらつき防止：1枚だけ表示しておく */
}
.items-slider:not(.slick-initialized) .items-slider__item:nth-child(n+2) {
  display: none;
}
.items-slider .slick-track {
  display: flex;
  align-items: center;
}
/* 正方形画像をトリミングせず、画像どうしを隙間なく並べる */
.items-slider__item {
  padding: 0;
}
.items-slider__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- ブランド紹介カード ---------- */
#products .card {
  background: #fff;
  padding: 1.6rem;
  height: 100%;
  box-shadow: 0 6px 24px rgba(37,69,58,.07);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  transition: transform .25s ease, box-shadow .25s ease;
}
#products .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(37,69,58,.14);
}
#products .card__body h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}
/* ---------- 下層ページのヒーロー（画像の下部50%を表示） ---------- */
/* aspect-ratio = 2 × (画像幅 / 画像高さ) を各ページのインラインstyleで指定。
   background-size:100% auto で画像を横幅いっぱいに描画し、
   background-position:bottom で下半分のみを見せる。 */
.page-hero {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
/* ヒーロー画像の下側を白へグラデーションさせ、白い本文へ自然に繋ぐ */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%);
  pointer-events: none;
}

/* ---------- ブランドフィーチャー（左右分割・交互配置） ---------- */
#products .heading { margin-bottom: 4rem; }
.brand-feature {
  display: flex;
  align-items: stretch;
}
.brand-feature--reverse { flex-direction: row-reverse; }

/* 左：ビジュアル（写真を切らずに全体表示。上下の余白はブランドカラーでマット） */
.brand-feature__visual {
  position: relative;
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary); /* 写真の上下に出る余白＝右パネルと同色のマット */
  text-decoration: none;
  overflow: hidden;
}
.brand-feature__frame {
  position: relative;
  display: block;
  width: 100%;
}
.brand-feature__img {
  display: block;
  width: 100%;
  height: auto; /* 画像本来の比率で全体を表示（トリミングなし） */
}
.brand-feature__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 28%, rgba(0,0,0,0) 55%);
  transition: background .4s ease;
}
.brand-feature__visual:hover .brand-feature__frame::after {
  background: linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,.28) 34%, rgba(0,0,0,.05) 62%);
}
.brand-feature__catch {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  z-index: 1;
  margin: 0;
  display: block;
  color: #fff;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Shippori Mincho", "MS PMincho", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}

/* 右：カラーパネル */
.brand-feature__panel {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 5rem;
  background: var(--c-primary);
  color: #fff;
}
.brand-feature__head {
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.brand-feature__en {
  display: block;
  font-family: "Jura", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
.brand-feature__ja {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.brand-feature__desc {
  margin: 0 0 2.6rem;
  font-size: 1.4rem;
  line-height: 2;
}
.brand-feature__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 20rem;
  padding: 1.4rem 2.4rem;
  background: #fff;
  color: var(--c-primary);
  font-family: "Jura", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 2px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-feature__more::after { content: "→"; font-size: 1.6rem; }
.brand-feature__more:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  color: var(--c-primary);
}

/* 交互配色：サンドベージュ + ダークテキスト */
.brand-feature--alt .brand-feature__panel {
  background: var(--c-bg-soft);
  color: var(--c-text);
}
.brand-feature--alt .brand-feature__visual { background: var(--c-bg-soft); } /* マットもパネルと同色に */
.brand-feature--alt .brand-feature__head { border-bottom-color: var(--c-line); }
.brand-feature--alt .brand-feature__en { color: var(--c-primary); }
.brand-feature--alt .brand-feature__ja { color: var(--c-muted); opacity: 1; }
.brand-feature--alt .brand-feature__more { background: var(--c-primary); color: #fff; }
.brand-feature--alt .brand-feature__more:hover { color: #fff; }

@media (max-width: 767px) {
  .brand-feature,
  .brand-feature--reverse { flex-direction: column; }
  .brand-feature__visual { flex-basis: auto; width: 100%; }
  .brand-feature__panel { flex-basis: auto; width: 100%; padding: 3.2rem 2rem; }
  .brand-feature__catch { font-size: 1.8rem; }
  .brand-feature__en { font-size: 2.4rem; }
}

/* ブランド詳細ページ */
.brand-detail .card {
  background: #fff;
  padding: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,69,58,.07);
  border: 1px solid var(--c-line);
  border-radius: 4px;
}

/* ---------- ブランド紹介ページ ---------- */
/* ヒーロー（フルワイド画像バナー） */
.brand-hero {
  width: 100%;
  height: 46vh;
  min-height: 30rem;
  max-height: 50rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ブランド紹介（中央寄せ） */
.brand-intro {
  max-width: 78rem;
  margin: 0 auto 1rem;
  text-align: center;
}
.brand-intro__en {
  font-family: "Jura", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  color: var(--c-primary);
}
.brand-intro__ja {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  color: var(--c-muted);
}
.brand-intro__catch {
  margin: 3.2rem 0;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--c-primary);
}
.brand-intro__lead { font-size: 1.55rem; line-height: 2; color: var(--c-text); }

/* 取扱商品見出し */
.brand-products__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin: 5rem 0 3rem;
  padding-bottom: 1.2rem;
  position: relative;
}
.brand-products__heading::after {
  content: "";
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 4.4rem; height: 3px; background: var(--c-accent); border-radius: 2px;
}

/* 商品ビューア（メイン画像 + サムネイル切替） */
.brand-viewer {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.4rem;
  align-items: start;
}
.brand-viewer__stage {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 10px;
}
.brand-viewer__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-viewer__name {
  font-size: 2.4rem; font-weight: 700; color: var(--c-primary);
  padding-bottom: 1.2rem; margin-bottom: 1.4rem;
  border-bottom: 2px solid var(--c-accent);
}
.brand-viewer__desc { font-size: 1.55rem; line-height: 1.95; color: var(--c-text); min-height: 6rem; }
.brand-viewer__link {
  display: inline-block; margin-top: 1.4rem;
  font-family: "Jura", sans-serif; font-weight: 700; letter-spacing: 0.08em;
  color: var(--c-accent); text-decoration: none;
}
.brand-viewer__link:hover { text-decoration: underline; }
.brand-viewer__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.6rem;
}
.brand-viewer__thumb {
  padding: 0; cursor: pointer; overflow: hidden;
  aspect-ratio: 1 / 1; background: #fff;
  border: 2px solid var(--c-line); border-radius: 6px;
  transition: transform .2s ease, border-color .2s ease;
}
.brand-viewer__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-viewer__thumb:hover { transform: translateY(-2px); }
.brand-viewer__thumb.is-active { border-color: var(--c-accent); box-shadow: 0 0 0 1px var(--c-accent); }

@media (max-width: 767px) {
  .brand-hero { height: 32vh; min-height: 22rem; }
  .brand-intro__en { font-size: 2.8rem; }
  .brand-intro__catch { font-size: 2rem; margin: 2.4rem 0; }
  .brand-viewer { grid-template-columns: 1fr; gap: 2rem; }
  .brand-viewer__name { font-size: 2rem; }
}

/* ---------- フッター上部 ナビバナー（会社案内 / 採用） ---------- */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;                       /* 2枚の間に細い区切り */
  background: var(--c-primary-dark); /* 区切り・隙間の色＝フッターと連続 */
}
.footer-nav__item {
  position: relative;
  flex: 1 1 calc(50% - 2px);
  display: block;
  overflow: hidden;
  height: 400px;
  text-decoration: none;
}
.footer-nav__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.footer-nav__item:hover img { transform: scale(1.08); }

/* グラデーションのオーバーレイ（下ほど濃く、上は写真を活かす） */
.footer-nav__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,32,.82) 0%, rgba(20,40,32,.4) 45%, rgba(20,40,32,.12) 100%);
  transition: background .4s ease;
}
.footer-nav__item:hover::after {
  background: linear-gradient(to top, rgba(20,40,32,.88) 0%, rgba(20,40,32,.5) 55%, rgba(20,40,32,.22) 100%);
}

/* 内側の細い枠（額装風） */
.footer-nav__item::before {
  content: "";
  position: absolute;
  inset: 2.2rem;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
  transition: inset .45s ease, border-color .45s ease;
}
.footer-nav__item:hover::before {
  inset: 1.5rem;
  border-color: var(--c-accent);
}

/* ラベル（中央配置） */
.footer-nav__label {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.footer-nav__en {
  font-family: "Jura", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-indent: 0.3em;        /* letter-spacingの右余白を相殺して光学的に中央へ */
  line-height: 1.2;
}
.footer-nav__ja {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  font-weight: 500;
  opacity: 0.92;
}
.footer-nav__ja::before {     /* JAの上にゴールドの短い区切り線 */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.2rem;
  height: 1px;
  background: var(--c-accent);
  transition: width .4s ease;
}
.footer-nav__item:hover .footer-nav__ja::before { width: 5.2rem; }

/* ホバーで現れる VIEW MORE */
.footer-nav__more {
  margin-top: 1.8rem;
  font-family: "Jura", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity .4s ease, transform .4s ease;
}
.footer-nav__more::after { content: " →"; }
.footer-nav__item:hover .footer-nav__more {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .footer-nav { gap: 3px; }
  .footer-nav__item { flex-basis: 100%; height: 24rem; } /* スマホは縦積み */
  .footer-nav__item::before { inset: 1.6rem; }
  .footer-nav__en { font-size: 2.4rem; }
  .footer-nav__more { opacity: 1; transform: none; } /* スマホは常時表示 */
}

/* ---------- COMPANY テーブル ---------- */
.table th { color: var(--c-primary); font-weight: 700; }
.table-border th,
.table-border td { border-color: var(--c-line); }

/* ---------- RECRUIT（白背景・明るいテーマ） ---------- */
.recruit__catch { color: var(--c-primary); font-weight: 700; }
.recruit__table {
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
  background-color: #fff;
}
.recruit__table th,
.recruit__table td {
  border-bottom: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
}
.recruit__table th {
  color: var(--c-primary);
  background: var(--c-bg-soft);
}

/* ---------- 採用ページ：中央寄せイントロ + 写真ギャラリー ---------- */
.recruit-intro {
  max-width: 86rem;
  margin: 0 auto;
  text-align: center;
}
.recruit-intro__catch {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #a7a7a7;
  margin-bottom: 3.2rem;
}
.recruit-intro p:not(.recruit-intro__catch) {
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--c-text);
  margin-bottom: 1.6rem;
  /* 中央寄せの和文を不自然な位置で折り返さず、行を均等に整える */
  text-wrap: balance;
  line-break: strict;
}
.recruit-intro__catch { text-wrap: balance; }
/* 採用要項テーブル：中央寄せ */
.recruit-info {
  max-width: 80rem;
  margin: 0 auto;
}
.recruit-info + .recruit-info { margin-top: 2.4rem; }
.recruit-jobs + .recruit-info { margin-top: 3.2rem; } /* 募集カードと応募方法の間に余白 */
.recruit__table { width: 100%; }
/* 募集1 / 募集2 を分けたカード */
.recruit-jobs {
  margin-top: 2.4rem;
}
.recruit-job {
  height: 100%;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 2.4rem;
}
.recruit-job__title {
  color: var(--c-primary);
  font-size: 1.9rem;
  font-weight: 700;
  border-bottom: 2px solid var(--c-accent);
  padding-bottom: 1rem;
  margin-bottom: 1.6rem;
}
.recruit-job__title span {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.3rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  background: var(--c-bg-soft);
  color: var(--c-text);
  border-radius: 3px;
  vertical-align: middle;
}
.recruit-job p { line-height: 1.9; }
.recruit-job__detail { margin: 1.4rem 0 0; }
.recruit-job__detail dt {
  margin-top: 1rem;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.3rem;
}
.recruit-job__detail dd { margin: 0.2rem 0 0; line-height: 1.8; }

.recruit-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 5rem;
}
.recruit-gallery__item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
}
.recruit-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.recruit-gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 767px) {
  .recruit-intro__catch { font-size: 2.4rem; }
  .recruit-gallery { grid-template-columns: 1fr; }
}

/* ---------- エントリーシート（採用フォーム） ---------- */
.entry-form { max-width: 72rem; margin: 0 auto; }
.entry-form__row { margin-bottom: 2rem; }
.entry-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.entry-form label {
  display: block;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.entry-form .req {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.1rem 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: #c0392b;
  border-radius: 3px;
  vertical-align: middle;
}
.entry-form input[type="text"],
.entry-form input[type="email"],
.entry-form input[type="tel"],
.entry-form input[type="date"],
.entry-form select,
.entry-form textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: var(--c-text);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;
}
.entry-form textarea { resize: vertical; min-height: 12rem; }
.entry-form input:focus,
.entry-form select:focus,
.entry-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(176,141,79,.15);
}
.entry-form__error { color: #c0392b; font-size: 1.3rem; margin: 0.5rem 0 0; }
.entry-req-note { font-size: 1.3rem; color: var(--c-muted); }
.form-alert {
  max-width: 72rem;
  margin: 0 auto 2.4rem;
  padding: 1.4rem 1.8rem;
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #a3342b;
  border-radius: 4px;
  font-size: 1.4rem;
}
.entry-thanks { text-align: center; max-width: 64rem; margin: 0 auto; }
.entry-thanks__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 1.4rem;
}
/* 添付ファイル：ドラッグ＆ドロップ */
.entry-files {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.entry-file { position: relative; }
.entry-file__input {
  position: absolute;
  width: .1px; height: .1px;
  opacity: 0; overflow: hidden; z-index: -1;
}
.entry-form .entry-file__drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 0;
  min-height: 11rem;
  padding: 1.6rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px dashed var(--c-line);
  border-radius: 6px;
  transition: border-color .2s ease, background .2s ease;
}
.entry-file__drop:hover { border-color: var(--c-accent); }
.entry-file.is-drag .entry-file__drop { border-color: var(--c-accent); background: var(--c-bg-soft); }
.entry-file.is-filled .entry-file__drop { border-style: solid; border-color: var(--c-primary); background: rgba(37,69,58,.03); }
.entry-file__input:focus + .entry-file__drop { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(176,141,79,.15); }
.entry-file__label { font-weight: 700; color: var(--c-primary); font-size: 1.5rem; }
.entry-file__text { font-size: 1.2rem; color: var(--c-muted); line-height: 1.6; }
.entry-file__name { font-size: 1.3rem; font-weight: 700; color: var(--c-primary); word-break: break-all; }
.entry-file.is-filled .entry-file__text { display: none; }
@media (max-width: 767px) {
  .entry-form__grid { grid-template-columns: 1fr; gap: 0; }
  .entry-files { grid-template-columns: 1fr; }
}

/* ---------- 輸入楽市 + EC物流 案内ページ ---------- */
.lp-lead {
  max-width: 82rem;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--c-muted);
}
.lp-tagline {
  text-align: center;
  color: var(--c-accent);
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 2.4rem 0 0;
}
.lp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.lp-chips span {
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-primary);
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
}
.lp-msg {
  background: var(--c-bg-soft);
  border-left: 4px solid var(--c-accent);
  padding: 2.4rem 2.8rem;
  font-size: 1.6rem;
  line-height: 2;
}
.lp-msg .lp-msg__sign {
  display: block;
  margin-top: 1.2rem;
  text-align: right;
  color: var(--c-primary);
  font-weight: 700;
}
.lp-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-flow li {
  flex: 1 1 11rem;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
}
.lp-flow li .lp-flow__no {
  display: block;
  font-family: "Jura", sans-serif;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.mark-o { color: #2e8b57; font-weight: 700; }
.mark-x { color: #c0392b; font-weight: 700; }
.mark-t { color: var(--c-accent); font-weight: 700; }
.table-compare th.is-own,
.table-compare td.is-own { background: rgba(176,141,79,.10); }
.table-compare td { text-align: center; }
.table-compare td:first-child { text-align: left; }
.lp-core {
  border: 1px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  background: #fff;
}
.lp-core__head {
  padding: 1.6rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lp-core--rakuichi .lp-core__head { background: var(--c-accent); }
.lp-core--ec .lp-core__head { background: var(--c-primary); }
.lp-core__body { padding: 2.4rem; }
.lp-core__body dl { margin: 0; }
.lp-core__body dt {
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.lp-core__body dd {
  margin: 0.3rem 0 1.4rem;
  font-size: 1.5rem;
}
.lp-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  border-top: 1px solid var(--c-line);
  padding-top: 1.4rem;
  margin-top: 0.6rem;
}
.lp-tags span {
  font-size: 1.2rem; background: var(--c-bg-soft);
  border-radius: 3px; padding: 0.5rem 1rem; color: var(--c-text);
}
.lp-figure img { width: 100%; height: auto; border-radius: 6px; display: block; }
.lp-note__title { color: var(--c-primary); font-weight: 700; margin-bottom: 0.4rem; }

/* ---------- CONTACT ---------- */
.contact .button {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  font-size: 1.8rem;
  padding: 1.8rem;
  border-radius: 2px;
}
.contact .button:hover { background: var(--c-primary-dark); }

/* ---------- ヘッダー / ナビ ---------- */
.header { border-bottom: 1px solid var(--c-line); }
.nav a {
  font-family: "Jura", sans-serif;
  letter-spacing: 0.12em;
  font-weight: 600;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--c-accent);
  transition: width .25s ease;
}
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after { width: 100%; }

/* ヒーロー(.hero / 下層の .page-hero)のあるページは body の上余白(80px)を解除し、画像を最上部から見せる */
body:has(.hero),
body:has(.page-hero) {
  padding-top: 0 !important;
}
/* ヒーローのあるページはヘッダーを画像に重ねて最上部から見せる（トップと同じグラデーション帯） */
body:has(.hero) .header,
body:has(.page-hero) .header {
  background-color: transparent !important;
  background-image: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0));
  border-bottom: none;
}
body:has(.hero) .header .nav a,
body:has(.page-hero) .header .nav a { color: #fff; }
body:has(.hero) .header .nav a:hover,
body:has(.page-hero) .header .nav a:hover { color: #fff; }
body:has(.hero) .header .navbar__logo img,
body:has(.page-hero) .header .navbar__logo img {
  filter: brightness(0) invert(1); /* 暗いロゴを白へ */
}
/* ---------- ハンバーガー：3本の水平バー（斜め解除） ---------- */
.drawer-button__line {
  width: 24px;
  height: 2px;
  background-color: #323232;
  -webkit-transform: none;
          transform: none; /* skewX(-30deg) を解除 */
  border-radius: 1px;
}
.drawer-button__line::before,
.drawer-button__line::after {
  width: 24px;
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.drawer-button__line::before { top: -7px; margin-top: 0; }
.drawer-button__line::after  { top: 7px;  margin-top: 0; }
/* メニューを開いたとき：中央バーを消し、×（2本）を白で表示（ドロワーが濃色のため） */
.menu-open .drawer-button__line { background-color: transparent !important; }
.menu-open .drawer-button__line::before,
.menu-open .drawer-button__line::after { background-color: #fff; }
.menu-open .drawer-button__line::before {
  top: 0;
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-open .drawer-button__line::after {
  top: 0;
  margin-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ヒーローのあるページは3本とも白に */
body:has(.hero) .drawer-button__line,
body:has(.hero) .drawer-button__line::before,
body:has(.hero) .drawer-button__line::after,
body:has(.page-hero) .drawer-button__line,
body:has(.page-hero) .drawer-button__line::before,
body:has(.page-hero) .drawer-button__line::after {
  background-color: #fff;
}
/* ---------- スマホメニュー（ドロワー）：幅確保＋途中改行を防ぐ ---------- */
.drawer-content { width: 250px; right: -250px; }
.menu-open .drawer-content { right: 0; }
.drawer-content .nav-vertical a,
.drawer-content .nav-vertical .nav__header {
  white-space: nowrap;
  word-break: keep-all;
}
/* PC横並び用の左マージン（2rem）を縦メニューでは解除して左端を揃える */
.drawer-content .nav-vertical li { margin-left: 0; }

/* ---------- フッター ---------- */
.footer {
  background: var(--c-primary-dark);
  color: rgba(255,255,255,.85);
  padding: 5rem 0 4rem;
}
.footer p { color: rgba(255,255,255,.6); }

/* =========================================================
   輸入楽市 + EC物流 案内ページ：インフォグラフィック調の強化
   ========================================================= */

/* 見出しの装飾を中央寄せ＋アンダーライン強調 */
.page-rakuichi .heading-style2 { text-align: center; }
.page-rakuichi .heading-style2 .heading__title--ja { position: relative; display: block; padding-bottom: 1.6rem; }
.page-rakuichi .heading-style2 .heading__title--ja::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 5rem; height: 3px; background: var(--c-accent); border-radius: 2px;
}

/* リード文 */
.page-rakuichi .lp-lead { font-size: 1.65rem; }

/* 全セクション白背景にし、セクション間を薄い罫線で区切る */
.page-rakuichi .background-modest { background-color: #fff !important; }
.page-rakuichi .section + .section { border-top: 1px solid var(--c-line); }

/* セクション下部の補足説明（全国どこでも… 等）は2列→1列・中央揃えに */
.page-rakuichi .margin-medium-top .width-1-2--pc { width: 100% !important; text-align: center; }
.page-rakuichi .margin-medium-top .width-1-2--pc + .width-1-2--pc { margin-top: 1.6rem; }

/* ---- 統計バンド ---- */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 4rem;
}
.lp-stat {
  text-align: center;
  padding: 2.6rem 1.2rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(37,69,58,.06);
}
.lp-stat__num {
  display: block;
  font-family: "Jura", sans-serif;
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--c-primary);
  letter-spacing: 0.02em;
}
.lp-stat__num small { font-size: 1.8rem; margin-left: .2rem; color: var(--c-accent); }
.lp-stat__label { display: block; margin-top: 1rem; font-size: 1.3rem; color: var(--c-muted); }

/* ---- フロー（矢印つきパイプライン） ---- */
.lp-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem 2.6rem;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.lp-flow li {
  position: relative;
  flex: 0 1 13rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-primary);
  border-radius: 6px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(37,69,58,.06);
}
.lp-flow li .lp-flow__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.2rem; height: 3.2rem; margin: 0 auto .8rem;
  font-family: "Jura", sans-serif; font-weight: 700; font-size: 1.4rem;
  color: #fff; background: var(--c-primary); border-radius: 50%;
}
/* 項目間の矢印 */
.lp-flow li:not(:last-child)::after {
  content: "›";
  position: absolute; top: 50%; right: -1.9rem; transform: translateY(-50%);
  font-size: 2.6rem; line-height: 1; color: var(--c-accent); font-weight: 700;
}
@media (max-width: 767px) {
  .lp-flow li:not(:last-child)::after { content: "›"; top: auto; bottom: -1.8rem; right: 50%; transform: translateX(50%) rotate(90deg); }
}

/* ---- 理由カード（番号つき） ---- */
.lp-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.lp-reason {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 2.4rem 2.2rem 2.2rem;
  box-shadow: 0 8px 24px rgba(37,69,58,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-reason:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(37,69,58,.14); }
.lp-reason__no {
  position: absolute; top: -1rem; right: .4rem;
  font-family: "Jura", sans-serif; font-weight: 700; font-size: 7rem; line-height: 1;
  color: rgba(176,141,79,.16);
}
.lp-reason__title {
  position: relative;
  font-size: 1.8rem; font-weight: 700; color: var(--c-primary);
  padding-left: 1.2rem; margin-bottom: 1rem;
}
.lp-reason__title::before {
  content: ""; position: absolute; left: 0; top: .3rem; bottom: .3rem;
  width: 4px; background: var(--c-accent); border-radius: 2px;
}
.lp-reason__point { font-size: 1.45rem; color: var(--c-text); line-height: 1.8; }

/* ---- 拠点カード ---- */
.lp-locs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.lp-loc {
  background: #fff; border: 1px solid var(--c-line); border-radius: 8px;
  padding: 2.4rem 1.8rem; text-align: center;
  box-shadow: 0 8px 24px rgba(37,69,58,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-loc:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(37,69,58,.14); }
.lp-loc__name { font-size: 1.7rem; font-weight: 700; color: var(--c-primary); margin-bottom: 1.2rem; }
.lp-loc__area {
  display: block; font-family: "Jura", sans-serif; font-weight: 700;
  font-size: 2.8rem; line-height: 1; color: var(--c-accent); margin-bottom: 1.4rem;
}
.lp-loc__area small { font-size: 1.4rem; color: var(--c-muted); margin-left: .2rem; }
.lp-loc__merit { font-size: 1.3rem; color: var(--c-muted); line-height: 1.8; text-align: left; }

/* ---- カテゴリカード（取扱商材） ---- */
.lp-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.lp-cat {
  background: #fff; border: 1px solid var(--c-line); border-radius: 8px;
  border-left: 4px solid var(--c-primary); padding: 2rem 2.2rem;
  box-shadow: 0 6px 18px rgba(37,69,58,.05);
}
.lp-cat__title { font-size: 1.7rem; font-weight: 700; color: var(--c-primary); margin-bottom: .8rem; }
.lp-cat__ex { font-size: 1.4rem; color: var(--c-text); line-height: 1.8; }

/* ---- お悩みチップ ---- */
.lp-problems { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1.4rem; }
.lp-problem {
  background: var(--c-bg-soft); border: 1px solid var(--c-line); border-radius: 8px;
  padding: 1.8rem 1.4rem; text-align: center; font-size: 1.4rem; font-weight: 600; color: var(--c-primary);
}
.lp-problem::before {
  content: "？"; display: block; width: 3.4rem; height: 3.4rem; margin: 0 auto 1rem;
  line-height: 3.4rem; font-family: "Jura", sans-serif; font-weight: 700;
  color: #fff; background: var(--c-accent); border-radius: 50%;
}

/* ---- コアサービスカード強化 ---- */
.lp-core { box-shadow: 0 10px 30px rgba(37,69,58,.08); border: none; }
.lp-core__head { font-size: 2.2rem; letter-spacing: .12em; }

/* ---- 比較表：自社列を強調 ---- */
.table-compare { border-collapse: separate; border-spacing: 0; }
.table-compare th.is-own,
.table-compare td.is-own { background: rgba(176,141,79,.12); }
.table-compare thead th.is-own {
  background: var(--c-primary); color: #fff;
  border-top: 3px solid var(--c-accent);
}
.table-compare .mark-o { font-size: 1.8rem; }

/* ---- 概要図版 ---- */
.lp-figure img { box-shadow: 0 12px 30px rgba(37,69,58,.12); }

/* ---- PDF由来のインフォグラフィック画像 ---- */
.rk-img {
  display: block;
  width: 100%;
  max-width: 84rem;       /* 横幅を少し抑えて中央表示 */
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-reasons { grid-template-columns: repeat(2, 1fr); }
  .lp-locs { grid-template-columns: repeat(2, 1fr); }
  .lp-cats { grid-template-columns: repeat(2, 1fr); }
  .lp-problems { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .lp-stats, .lp-reasons, .lp-locs, .lp-cats, .lp-problems { grid-template-columns: 1fr; }
  .lp-stat__num { font-size: 3.6rem; }
}
