@charset "UTF-8";
/* ============================================================
   高橋工業株式会社 採用サイト
   Figma: hJRRp9tsyfNi1gZey2fTb6「デザインC」準拠
   PC基準幅 1440px / SP基準幅 375px、ブレークポイント 768px
   ============================================================ */

/* ---- フォント ---- */
@font-face {
  font-family: 'D-DIN';
  src: url('../fonts/D-DIN.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'D-DIN';
  src: url('../fonts/D-DIN-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ---- カスタムプロパティ ---- */
:root {
  --gold: #D2A511;
  --gold-light: #CDB977;
  --text: #2E140A;
  --dark: #382E2B;
  --bg-soft: #F5F3EE;
  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'D-DIN', 'Noto Sans JP', sans-serif;
  /* PCの左余白ゾーン（縦書き見出し領域）。1440px未満ではフルードに縮小 */
  --side-left: clamp(180px, 25vw, 360px);
  --side-right: clamp(40px, 8.3vw, 120px);
}

/* ---- リセット・共通 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  font-weight: 400;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.en { font-family: var(--font-en); }
.sp-only { display: none; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  background: #fff;
  position: relative;
  z-index: 100;
}

/* スクロール連動ヘッダー（上スクロールでスティック表示）。
   スライドの動きはJS（Web Animations API）側で駆動する */
.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand__mark { width: 64px; height: 64px; }
.brand__type { width: 376px; height: 40px; }

.gnav { display: flex; gap: 40px; }
.gnav__item { display: flex; flex-direction: column; gap: 3px; }
.gnav__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  color: var(--gold);
  line-height: 1.2;
}
.gnav__ja {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  line-height: 1.2;
  transition: color .2s;
}
.gnav__item:hover .gnav__ja,
.gnav__item.is-current .gnav__ja { color: var(--gold); }

/* SPヘッダー＋ドロワー */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}
.menu-btn img { width: 30px; height: 16px; }

/* SPヘッダーの操作群（電話＋メニュー）。PCでは非表示 */
.header-actions { display: none; }
.header-call { display: inline-flex; align-items: center; padding: 8px 0; }
.header-call img { width: 24px; height: 24px; display: block; }

.sp-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--gold-light);
  box-shadow: 0 8px 16px rgba(0,0,0,.08);
}
.sp-menu.is-open { display: block; }
.sp-menu a {
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gold-light);
  font-weight: 700;
  font-size: 16px;
}
.sp-menu a .gnav__en { display: block; font-size: 10px; }

@media (max-width: 767px) {
  .site-header__inner { height: 64px; padding: 16px 20px; }
  .brand { gap: 10px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__type { width: 188px; height: 20px; }
  .gnav { display: none; }
  .menu-btn { display: block; }
  .header-actions { display: flex; align-items: center; gap: 20px; }
}

/* 中間幅（タブレット〜小型PC）: ロゴとメニューの重なりを防ぐため両者を縮小 */
@media (min-width: 768px) and (max-width: 1180px) {
  .site-header__inner { padding: 32px clamp(20px, 4vw, 60px); }
  .brand { gap: 12px; }
  .brand__mark { width: clamp(40px, 5vw, 64px); height: clamp(40px, 5vw, 64px); }
  .brand__type { width: clamp(180px, 23vw, 376px); height: auto; }
  .gnav { gap: clamp(12px, 2vw, 40px); }
  .gnav__ja { font-size: clamp(12px, 1.5vw, 20px); }
  .gnav__en { font-size: clamp(9px, 1vw, 11px); }
  .site-footer { padding: 80px clamp(20px, 4vw, 60px) 60px; }
}

/* ============================================================
   ヒーロー（メインページ）
   ============================================================ */
.hero {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  aspect-ratio: 1440 / 810;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ヒーロースライドショー（クロスフェード） */
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* 円形CTA（白二重スクエア＋星形バッジ） */
.cta-circle {
  position: absolute;
  right: 60px;
  bottom: 60px;
  width: clamp(150px, 20.8vw, 300px);
  height: clamp(150px, 20.8vw, 300px);
  background: rgba(255,255,255,.3);
  display: grid;
  place-items: center;
}
.cta-circle__inner {
  position: relative;
  width: 80%;
  height: 80%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  font-size: clamp(14px, 1.66vw, 24px);
  line-height: 1.2;
  transition: opacity .2s;
}
.cta-circle:hover .cta-circle__inner { opacity: .85; }
.cta-circle__arrow {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: clamp(14px, 1.66vw, 24px);
  height: auto;
}
.badge-star {
  position: absolute;
  left: clamp(-20px, -1.4vw, -10px);
  top: clamp(-20px, -1.4vw, -10px);
  width: clamp(80px, 8.3vw, 120px);
  height: clamp(80px, 8.3vw, 120px);
  background: url('../img/star.svg') no-repeat center / contain;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 22px);
  line-height: 1.2;
  text-align: center;
}

/* ヒーロー装飾（Figma書き出しSVGを画像のコーナーに固定） */
.hero__deco {
  position: absolute;
  pointer-events: none;
  width: clamp(110px, 22.2vw, 320px);
  height: auto;
}
.hero__deco--tr { top: 0; right: 0; }
.hero__deco--bl { bottom: 0; left: 0; }

@media (max-width: 767px) {
  .hero { aspect-ratio: 375 / 480; }
  .cta-circle { right: 20px; bottom: 20px; top: auto; width: 150px; height: 150px; }
  .cta-circle__inner { font-size: 16px; }
  .cta-circle__arrow { width: 18px; }
  .badge-star { width: 80px; height: 80px; font-size: 14px; left: -20px; top: -20px; }
}

/* ============================================================
   セクション共通（縦書き英字見出し＋本文カラム）
   ============================================================ */
.section {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px var(--side-right) 120px var(--side-left);
}
.section__inner { max-width: 960px; }

/* 縦書き見出しゾーン（PC） */
.v-head {
  position: absolute;
  left: clamp(8px, 2.4vw, 35px);
  top: 120px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.v-head__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(56px, 8.33vw, 120px);
  color: var(--gold);
  line-height: 1;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.v-head__en--sub {
  font-weight: 400;
  font-size: clamp(40px, 5.55vw, 80px);
}
.v-head__en--tight { letter-spacing: -.02em; }
.v-head__ja {
  font-size: clamp(16px, 1.66vw, 24px);
  color: var(--text);
  writing-mode: vertical-rl;
  line-height: 1.25;
  align-self: flex-end;
  margin-top: clamp(120px, 16vw, 240px);
}

.section-title {
  font-weight: 700;
  font-size: clamp(28px, 3.33vw, 48px);
  letter-spacing: .04em;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .section { padding: 80px 20px; }
  .v-head {
    position: static;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .v-head__en {
    writing-mode: horizontal-tb;
    font-size: 48px;
  }
  .v-head__en--sub { font-size: 28px; margin-top: -8px; }
  .v-head__ja {
    writing-mode: horizontal-tb;
    font-size: 14px;
    margin-top: 0;
    align-self: flex-start;
  }
  .section-title { font-size: 28px; letter-spacing: .04em; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.services {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 40px;
}
.service {
  display: flex;
  gap: 30px;
  border-left: 1px solid var(--gold-light);
  padding-left: 30px;
}
.service__body { flex: 1; }
.service__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  color: var(--gold);
}
.service__name {
  font-weight: 700;
  font-size: 24px;
  margin-top: 24px;
}
.service__desc {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 10px;
}

.client { margin-top: 60px; }
.client__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--gold);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-light);
}
.client__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 36px clamp(20px, 4vw, 60px);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--gold-light);
}
.client__list li { max-width: 200px; margin: 0 auto; }
.client__list img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}
.client__note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--dark);
}

@media (max-width: 767px) {
  .services { grid-template-columns: 1fr; row-gap: 20px; margin-top: 40px; }
  .service { gap: 20px; padding-left: 20px; }
  .service__num { font-size: 40px; }
  .service__name { font-size: 18px; margin-top: 16px; }
  .service__desc { font-size: 14px; }
  .client { margin-top: 60px; }
  .client__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
    padding: 30px 0;
  }
  .client__list li { max-width: 140px; }
  .client__list img { height: 44px; }
}

/* ============================================================
   WORK ENVIRONMENT
   ============================================================ */
.work__visual {
  position: relative;
  margin-bottom: 80px;
}
.work__visual > img {
  width: 100%;
  aspect-ratio: 960/560;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.work__visual .badge-star { left: -20px; top: -20px; }
/* コーナー飾り(deco_tr/deco_blを200/960幅で共用。Figma waku1=200x100/waku2=200x170)
   .work__visual > img のwidth/aspect-ratio/borderに勝つよう詳細度を上げて打ち消す。SPのsp-bandも同飾り */
.work__visual .work__deco,
.sp-band .work__deco {
  position: absolute;
  width: 20.83%;
  aspect-ratio: auto;
  border: none;
  pointer-events: none;
}
.work__visual .work__deco--tr,
.sp-band .work__deco--tr { top: -1px; right: -1px; }
.work__visual .work__deco--bl,
.sp-band .work__deco--bl { bottom: -1px; left: -1px; }

.work__lead { margin-top: 40px; font-size: 18px; }

.benefits { margin-top: 120px; }
.benefit { padding: 40px 0; }
.benefit + .benefit { border-top: 1px solid var(--gold-light); }
/* 画像行: 3枚並び(1枚のセットも同グリッドで1セル分の幅) */
.benefit__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.benefit__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 310/180;
  border: 1px solid var(--gold);
}
.benefit__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* コーナー飾り(ヒーローのdeco_tr/deco_blを1/4相当サイズで共用) */
.benefit__deco {
  position: absolute;
  width: 25.8%;
  pointer-events: none;
}
.benefit__deco--tr { top: -1px; right: -1px; }
.benefit__deco--bl { bottom: -1px; left: -1px; }
.benefit__body { margin-top: 25px; }
.benefit__title {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .04em;
  line-height: 1.5;
}
.benefit__desc { font-size: 18px; margin-top: 12px; }

/* ゴールドCTAバー */
.cta-bar {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 120px;
  height: 160px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  transition: opacity .2s;
}
.cta-bar:hover { opacity: .85; }
.cta-bar__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 24px;
}

/* SP限定ビジュアルバンド（PCのwork__visualと同比率・同飾り） */
.sp-band { position: relative; }
.sp-band .sp-band__img {
  width: 100%;
  aspect-ratio: 960/560;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .work__lead { margin-top: 20px; font-size: 14px; }
  .benefits { margin-top: 40px; }
  .benefit { padding: 20px 0; }
  .benefit__row { grid-template-columns: 1fr; gap: 12px; }
  .benefit__body { margin-top: 16px; }
  .benefit__title { font-size: 22px; }
  .benefit__desc { font-size: 14px; margin-top: 8px; }
  .cta-bar { margin-top: 40px; height: 80px; font-size: 16px; }
  .cta-bar__arrow { width: 18px; right: 10px; bottom: 10px; }
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.insta__grid a { display: block; }
.insta__grid img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.insta__link {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .04em;
  width: fit-content;
  transition: opacity .2s;
}
.insta__link:hover { opacity: .7; }
.insta__link-tk { width: 240px; height: 240px; }
.insta__link-label { display: flex; align-items: center; gap: 20px; }
.insta__link-glyph { width: 48px; height: 48px; }
.insta__link-arrow { width: 36px; height: 36px; }

@media (max-width: 767px) {
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .insta__link {
    flex-direction: column;
    gap: 12px;
    margin: 40px auto 0;
    font-size: 16px;
  }
  .insta__link-tk { width: 160px; height: 160px; }
  .insta__link-label { gap: 14px; }
  .insta__link-glyph { width: 36px; height: 36px; }
  .insta__link-arrow { width: 28px; height: 28px; }
}

/* ============================================================
   COMPANY ／ 定義テーブル共通
   ============================================================ */
.company__block + .company__block { margin-top: 120px; }
.company__block--offset { margin-top: 120px; }
.block-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 60px;
}

.def-table { width: 100%; }
.def-table__row {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-light);
}
.def-table__row:first-child { border-top: 1px solid var(--gold-light); }
.def-table__row.no-line { border-bottom: none; padding-bottom: 0; }
.def-table__label {
  flex: 0 0 120px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}
.def-table__label.is-ghost { visibility: hidden; }
.def-table__value {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
}
.def-table__value .sub { font-size: 16px; }

/* RECRUIT 画像ギャラリー（4枚・縦型・比率固定・レスポンシブ） */
.recruit-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.recruit-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 234 / 300;
  object-fit: cover;
}
/* 募集要項はラベルが長いため列幅を広げる */
.recruit .def-table__label { flex: 0 0 168px; }
.history__event { font-weight: 700; font-size: 18px; }
.history__desc { font-size: 16px; margin-top: 10px; }

/* WORK見出しの差し色（安心・楽しく・長く） */
.section-title .em { color: #b9c929; }

/* 2カラム仕様テーブル（車両および機械・主な資格・従業員数） */
.spec-table { width: 100%; }
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-light);
}
.spec-row:last-child { border-bottom: none; }
.spec-cell {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 18px;
  line-height: 1.7;
}
.spec-cell__count { flex: none; font-weight: 700; white-space: nowrap; }
.qual-group + .qual-group { margin-top: 48px; }
.qual-group__title { font-weight: 700; font-size: 18px; margin-bottom: 16px; }

/* COMPANYの定義テーブルもFigma同様、罫線は行間のみ（上端・下端は引かない） */
.company .def-table__row:first-child { border-top: none; }
.company .def-table__row:last-child { border-bottom: none; }

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 60px;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
  .company__block + .company__block { margin-top: 40px; }
  .block-title { font-size: 18px; margin-bottom: 24px; }
  .def-table__row { gap: 20px; padding: 14px 0; }
  .def-table__label { flex: 0 0 72px; font-size: 14px; }
  .recruit .def-table__label { flex: 0 0 96px; }
  .recruit-gallery { grid-template-columns: repeat(2, 1fr); }
  .def-table__value { font-size: 14px; }
  .def-table__value .sub { font-size: 14px; }
  .history__event { font-size: 14px; }
  .history__desc { font-size: 14px; margin-top: 6px; }
  /* SPでは2カラムを縦積みにし、各項目ごとに罫線を引く */
  .spec-row { display: block; padding: 0; border-bottom: none; }
  .spec-cell { font-size: 14px; padding: 12px 0; border-bottom: 1px solid var(--gold-light); }
  .spec-table .spec-row:last-child .spec-cell:last-child { border-bottom: none; }
  .qual-group + .qual-group { margin-top: 28px; }
  .qual-group__title { font-size: 14px; margin-bottom: 10px; }
  .map-placeholder { height: 400px; margin-bottom: 24px; }
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 60px 60px;
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer__rule {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 54px 0;
}
.site-footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
}
.site-footer__links a:hover { color: var(--gold); }
.site-footer__copy {
  margin-top: 54px;
  text-align: right;
  font-family: var(--font-en);
  font-size: 12px;
}

@media (max-width: 767px) {
  .site-footer { padding: 60px 20px; }
  .site-footer__top { justify-content: center; }
  .site-footer__top .gnav { display: none; }
  .site-footer__rule { margin: 40px 0; }
  .site-footer__links { justify-content: center; }
  .site-footer__copy { margin-top: 40px; text-align: center; font-size: 10px; }
}

/* ============================================================
   採用ページ（recruit）
   ============================================================ */
.hero--sub {
  aspect-ratio: 1440 / 600;
  height: auto;
}

.section--form { background: var(--bg-soft); }
.form-note {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
}
.entry-form { margin-top: 60px; }
.entry-form__field + .entry-form__field { margin-top: 20px; }
.entry-form__label {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.entry-form__input {
  width: 600px;
  max-width: 100%;
  height: 60px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  color: var(--text);
}
.entry-form__input:focus {
  outline: none;
  border-color: var(--gold);
}
/* ハニーポット（スパム対策、視覚的に隠す） */
.entry-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.entry-form__submit {
  display: block;
  width: 600px;
  max-width: 100%;
  height: 80px;
  margin-top: 120px;
  background: var(--gold);
  border: none;
  border-radius: 0;
  color: #fff;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  transition: opacity .2s;
}
.entry-form__submit:hover { opacity: .85; }
.form-status {
  margin-top: 24px;
  font-weight: 700;
  display: none;
}
.form-status.is-error { display: block; color: #B0321E; }
.form-status.is-success { display: block; color: var(--gold); }

@media (max-width: 767px) {
  .hero--sub { aspect-ratio: 1 / 1; height: auto; }
  .form-note { font-size: 18px; }
  .entry-form { margin-top: 40px; }
  .entry-form__input { width: 100%; }
  .entry-form__submit { width: 100%; margin-top: 40px; font-size: 16px; }
}

/* ============================================================
   プライバシーポリシー
   ============================================================ */
.privacy-body { padding-top: 60px; }
.privacy-body__lead { margin-top: 24px; }
.privacy-body__date { margin-top: 32px; }
.privacy-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 16px;
}
.privacy-body p, .privacy-body li { font-size: 16px; }
.privacy-body ul { padding-left: 1.5em; }
.privacy-body ul li { list-style: disc; }

@media (max-width: 767px) {
  .privacy-body h2 { font-size: 18px; margin: 36px 0 12px; }
  .privacy-body p, .privacy-body li { font-size: 14px; }
}
