/*
Theme Name: v3
Author: Keita Sekimoto
Version: 1.0
*/

:root {
  --green: #1B4332;
  --green-deep: #122E22;
  --green-700: #245742;
  --green-tint: #EAEFE9;
  /* very light green wash on offwhite */
  --orange: #E07B39;
  --orange-deep: #C9652A;
  --offwhite: #F7F5F0;
  --offwhite-2: #FFFFFF;
  --charcoal: #2C2C2A;
  --charcoal-60: #6B6B66;
  --charcoal-40: #9A9A93;
  --line: #E2DED4;
  --line-dark: rgba(247, 245, 240, 0.18);

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Oswald", "Arial Narrow", sans-serif;

  --pad-x: clamp(22px, 5vw, 96px);
  --maxw: 1340px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--offwhite);
  color: var(--charcoal);
  font-family: var(--font-jp);
  font-weight: 400;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

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

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

/* ============================================================
   TYPE HELPERS
   ============================================================ */
.kicker {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.kicker.center {
  justify-content: center;
}

.kicker.on-green {
  color: var(--orange);
}

.h-xl {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}

.h-lg {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}

.h-md {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  margin: 0;
}

.lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2;
  color: var(--charcoal-60);
  margin: 0;
  max-width: 54ch;
}

.num-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.hl {
  color: var(--orange-deep);
}

.hl-mark {
  background: linear-gradient(transparent 62%, rgba(224, 123, 57, 0.32) 62%);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn .arr {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.btn .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--offwhite);
}

.btn-green:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 26px;
}

.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 14px 26px;
}

.btn-ghost-dark:hover {
  background: var(--green);
  color: var(--offwhite);
}

.btn-lg {
  font-size: 16px;
  padding: 19px 36px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav.on-hero {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--green);
  color: var(--offwhite);
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  border-radius: 3px;
}

.on-hero .brand-mark {
  background: var(--orange);
  color: #fff;
}

.brand-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--green);
}

.on-hero .brand-text {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}

.on-hero .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover {
  color: var(--orange);
}

.on-hero .nav-links a:hover {
  color: var(--orange);
}

.nav-links a.current {
  color: var(--orange);
}

.nav-links a.current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
}

.nav-cta {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  background: var(--orange);
  color: #fff;
  padding: 11px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.18s ease;
}

.nav-cta:hover {
  background: var(--orange-deep);
}

.nav-burger {
  display: none;
}

/* mobile menu hidden by default at all widths; shown only when toggled on small screens */
.nav-mobile {
  display: none;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .nav-burger span {
    width: 26px;
    height: 2px;
    background: var(--green);
    display: block;
  }

  .on-hero .nav-burger span {
    background: #fff;
  }

  /* mobile menu */
  .nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--green);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px;
  }

  .nav-mobile.open {
    display: flex;
  }

  .nav-mobile a {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--offwhite);
    padding: 10px 0;
  }

  .nav-mobile a:hover {
    color: var(--orange);
  }

  .nav-mobile .close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--offwhite);
    font-size: 34px;
    cursor: pointer;
    line-height: 1;
  }

  .nav-mobile .m-cta {
    margin-top: 16px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0;
    padding: 14px 32px;
    border-radius: 2px;
  }
}

/* ============================================================
   MEDIA (image-slot wrapper + overlay + text)
   ============================================================ */
.media {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  isolation: isolate;
}

.media image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ============================================================
   MEDIA img (WordPress アイキャッチ対応)
   ============================================================ */
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 100;
}

.media-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.media-overlay.green {
  background: linear-gradient(180deg, rgba(18, 46, 34, 0.35) 0%, rgba(18, 46, 34, 0.72) 100%);
}

.media-overlay.green-flat {
  background: rgba(18, 46, 34, 0.55);
}

.media-overlay.charcoal {
  background: linear-gradient(180deg, rgba(44, 44, 42, 0.25) 0%, rgba(44, 44, 42, 0.78) 100%);
}

.media-text {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.media-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.25);
  padding: 5px 12px;
  border-radius: 2px;
  pointer-events: none;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec {
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
}

.sec-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.sec-green {
  background: var(--green);
  color: var(--offwhite);
}

.sec-green .lead {
  color: rgba(247, 245, 240, 0.78);
}

.sec-tint {
  background: var(--green-tint);
}

.sec-head {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.sec-head .h-lg {
  margin-top: 18px;
}

.sec-head .lead {
  margin-top: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-deep);
  color: rgba(247, 245, 240, 0.8);
}

.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand-text {
  color: var(--offwhite);
}

.footer-tag {
  margin: 20px 0 28px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(247, 245, 240, 0.6);
  max-width: 32ch;
}

.footer-cta {}

.footer h4 {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 12px;
}

.footer li a {
  font-size: 14px;
  color: rgba(247, 245, 240, 0.8);
  transition: color 0.18s ease;
}

.footer li a:hover {
  color: var(--orange);
}

.footer li.muted {
  color: rgba(247, 245, 240, 0.5);
  font-size: 13px;
}

.footer-bar {
  border-top: 1px solid var(--line-dark);
}

.footer-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(247, 245, 240, 0.5);
}

.footer-bar-inner .num-en {
  letter-spacing: 0.1em;
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   TOP — HERO (full screen)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero .media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #206144 0%, #0a0a0a 100%);
}

.hero-inner {
  position: relative;
  bottom: 8rem;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(72px, 12vh, 140px);
}

.hero-kicker {
  color: var(--orange);
  margin-bottom: 26px;
}

.hero-title {
  color: #fff;
  font-weight: 900;
  font-size: clamp(40px, 8vw, 104px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.95;
  max-width: 46ch;
  margin: 0 0 40px;
}

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

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(72px, 12vh, 140px);
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--orange), transparent);
  animation: hpulse 2s ease-in-out infinite;
}

@keyframes hpulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 640px) {
  .hero-scroll {
    display: none;
  }
	
	.hero-inner {
		bottom: 5rem;
		padding: 0px 20px;
	}
}

/* ============================================================
   TOP — HUB NAV CARDS
   ============================================================ */
.hub {
  padding: clamp(64px, 8vw, 110px) var(--pad-x) clamp(72px, 10vw, 130px);
}

.hub-intro {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.hub-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* layout rhythm: 3 big on top, 3 smaller below */
.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 26px;
  border-radius: 3px;
  overflow: hidden;
  isolation: isolate;
  grid-column: span 2;
  color: #fff;
  transition: transform 0.25s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
}

.media-solid {
  background: #0b3d27;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.hub-card .media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b3d27;
  aspect-ratio: 4 / 3;
}

.hub-card .media img,
.hub-card .media-overlay {
/*   display: none; */
}

.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;  /* 100 → 0 */
}

.media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;  /* 50 → 1 */
  pointer-events: none;
}

.hub-card-no {
  position: absolute;
  top: 0px;
  right: 16px;
  z-index: 3;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 7rem;
  letter-spacing: 0em;
  color: rgba(255, 255, 255, 0.75);
}

.hub-card-body {
  position: relative;
  z-index: 3;
}

.hub-card-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.hub-card-jp {
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-card-jp .arr {
  width: 16px;
  height: 2px;
  background: var(--orange);
  position: relative;
}

.hub-card-jp .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-card {
    grid-column: span 1;
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hub-card-no {
    font-size: 4rem;
  }
}

/* ============================================================
   SUBPAGE HEADER (non-TOP pages)
   ============================================================ */
/* .page-head {
  position: relative;
  background: var(--green);
  color: var(--offwhite);
  padding: clamp(130px, 18vh, 200px) var(--pad-x) clamp(56px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
} */

.page-head {
  position: relative;
  background: var(--green);
  color: var(--offwhite);
  padding: clamp(88px, 12vh, 140px) var(--pad-x) clamp(40px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 640px) {
  .page-head {
    padding: 80px var(--pad-x) 36px;
  }
}

.page-head .media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-head-inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
}

.page-head .kicker {
  color: var(--orange);
  margin-bottom: 22px;
}

.page-head-title {
  font-weight: 900;
  font-size: clamp(36px, 6.5vw, 84px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: #fff;
}

.page-head-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.6);
  margin-top: 20px;
}

.page-head-lead {
  margin-top: 26px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2;
  color: rgba(247, 245, 240, 0.82);
  max-width: 52ch;
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.svc:last-child {
  border-bottom: 1px solid var(--line);
}

.svc-head .svc-no {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

.svc-name-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.svc-name-jp {
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 6px 0 16px;
  line-height: 1.4;
}

.svc-price {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-tint);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 2px;
  line-height: 1.5;
}

.svc-price b {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  color: var(--orange-deep);
  margin: 0 3px;
}

.svc-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--charcoal-60);
  margin: 0 0 28px;
}

.svc-desc .note {
  display: block;
  font-size: 13px;
  color: var(--charcoal-40);
  margin-top: 8px;
}

/* 3-step flow: 現状 → CREW → こう変わる */
.flow {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  align-items: stretch;
}

.flow-step {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  background: var(--offwhite-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-step.before {
  background: #fff;
}

.flow-step.after {
  background: var(--green);
  color: var(--offwhite);
  border-color: var(--green);
}

.flow-label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-40);
}

.flow-step.after .flow-label {
  color: var(--orange);
}

.flow-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.flow-step.after .flow-icon {
  color: var(--orange);
}

.flow-step h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.flow-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--charcoal-60);
}

.flow-step.after p {
  color: rgba(247, 245, 240, 0.85);
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--orange);
}

.flow-arrow svg {
  width: 26px;
  height: 26px;
}

.svc-tasks {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tasks li {
  font-size: 13px;
  font-weight: 500;
  background: var(--green-tint);
  color: var(--green);
  padding: 7px 14px;
  border-radius: 100px;
}

@media (max-width: 820px) {
  .svc {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.ba-card {}

.ba-card .media {
  aspect-ratio: 4/3;
  border-radius: 4px;
}

.ba-card .media-tag.before {
  background: var(--charcoal);
}

.ba-card .media-tag.after {
  background: var(--orange);
}

.ba-cap {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.ba-cap span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--charcoal-60);
  margin-top: 4px;
}

.ba-arrow {
  color: var(--orange);
}

.ba-arrow svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 720px) {
  .ba {
    grid-template-columns: 1fr;
  }

  .ba-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

/* ============================================================
   WORKS — case cards
   ============================================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}

.case .media {
  aspect-ratio: 16/10;
}

/* no-image card */
.case.no-img {
  border-top: 4px solid var(--orange);
}

.case.no-img .case-body {
  gap: 14px;
  padding: clamp(24px, 2.6vw, 32px);
}

.case-tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-tint);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 100px;
}

.case-tool svg {
  width: 15px;
  height: 15px;
  color: var(--orange-deep);
}

.case-tool .lbl {
  color: var(--charcoal-40);
  font-weight: 500;
  font-size: 11px;
}

.case-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--charcoal-60);
  margin: 0;
}

.case-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 900;
  font-size: 14px;
  color: var(--orange-deep);
}

.case-result::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
}

/* before -> after single stat */
.ba-stat {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.ba-stat-label {
  background: var(--green);
  color: var(--offwhite);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ba-cut {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.ba-stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.ba-val {
  padding: 18px 14px;
  text-align: center;
}

.ba-val .t {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.ba-val .v {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1;
}

.ba-val .v i {
  font-style: normal;
  font-size: 0.42em;
  margin-left: 2px;
}

.ba-val.before {
  color: var(--charcoal-40);
}

.ba-val.before .v {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--charcoal-40);
}

.ba-val.after {
  color: var(--green);
}

.ba-val.after .t {
  color: var(--orange);
}

.ba-arrow-mid {
  color: var(--orange);
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.ba-arrow-mid svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 980px) {
  .works-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}

.case {
  background: var(--offwhite-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case .media {
  aspect-ratio: 16/9;
}

.case-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.case-chip {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 2px;
  background: var(--green-tint);
  color: var(--green);
}

.case-chip.industry {
  background: var(--green);
  color: var(--offwhite);
}

.case-title {
  font-weight: 900;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
  margin: 0;
}

.case-problem {
  font-size: 14px;
  line-height: 1.9;
  color: var(--charcoal-60);
  margin: 0;
}

.case-problem b {
  color: var(--charcoal);
  font-weight: 700;
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}

.stat {
  background: var(--offwhite-2);
  padding: 20px 18px;
}

.stat-label {
  font-size: 12px;
  color: var(--charcoal-60);
  margin-bottom: 8px;
}

.stat-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.01em;
}

.stat-num .unit {
  font-size: 0.4em;
  color: var(--orange-deep);
  margin-left: 4px;
}

.stat-num.down {
  color: var(--orange-deep);
}

.stat-bar {
  margin-top: 12px;
  height: 6px;
  background: var(--green-tint);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar i {
  display: block;
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
}

@media (max-width: 760px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}
/* 
/* ============================================================
   BLOG
   ============================================================ */
/* ============================================================
   BLOG
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.blog-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.blog-side {
  position: sticky;
  top: 96px;
}

.blog-side h4 {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  margin: 0 0 16px;
}

.filter-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.filter-list li {
  margin-bottom: 4px;
}

.filter-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease;
}

.filter-btn:hover { color: var(--orange); }
.filter-btn.active { color: var(--orange); }

.filter-btn .ct {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--charcoal-40);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud button {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 500;
  background: var(--offwhite-2);
  border: 1px solid var(--line);
  color: var(--charcoal-60);
  padding: 7px 13px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.tag-cloud button:hover { border-color: var(--orange); color: var(--orange-deep); }
.tag-cloud button.active { background: var(--green); color: var(--offwhite); border-color: var(--green); }

.post {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--offwhite-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}

.post .media { aspect-ratio: 16/10; }

.post-body {
  padding: 0 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.post-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-deep);
  background: rgba(224, 123, 57, 0.12);
  padding: 5px 11px;
  border-radius: 2px;
}

.post-date { font-family: var(--font-en); font-size: 13px; color: var(--charcoal-40); }

.post-title {
  font-weight: 900;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  margin: 0;
  transition: color 0.18s ease;
}

.post:hover .post-title { color: var(--orange-deep); }

.post-excerpt { font-size: 14px; line-height: 1.9; color: var(--charcoal-60); margin: 0; }

.post-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.post-tags span { font-size: 11px; color: var(--charcoal-40); }
.post-tags span::before { content: "#"; }

.blog-empty { padding: 60px 0; text-align: center; color: var(--charcoal-40); font-weight: 700; }

/* TOP page: latest blog = 3 across */
#topBlog { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-side { position: static; }
  .filter-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .filter-list li { margin: 0; }
  .filter-btn {
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px 16px;
    width: auto;
    display: inline-flex;
  }
  .filter-btn .ct { display: none; }
  /* blog-grid はここで変更しない → 3列維持 */
}

@media (max-width: 860px) {
  #topBlog { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  #topBlog { grid-template-columns: 1fr; }
}

/* ============================================================
   NEWS
   ============================================================ */
.news-list {
  max-width: 920px;
  margin: 0 auto;
}

.news-row {
  display: grid;
  grid-template-columns: 140px 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease, padding-left 0.2s ease;
}

.news-row:first-child {
  border-top: 1px solid var(--line);
}

.news-row:hover {
  background: var(--offwhite-2);
  padding-left: 18px;
}

.news-date {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal-60);
  letter-spacing: 0.06em;
}

.news-cat {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  border-radius: 2px;
  background: var(--green-tint);
  color: var(--green);
}

.news-cat.important {
  background: var(--orange);
  color: #fff;
}

.news-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}

.news-arr {
  color: var(--orange);
}

.news-arr svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 720px) {
  .news-row {
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
  }

  .news-arr {
    display: none;
  }

  .news-title {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-portrait .media {
  aspect-ratio: 4/5;
  border-radius: 5px;
}

.about-portrait .media img {
  object-position: top center;
}

.about-q {
  font-weight: 900;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.4;
  margin: 0 0 28px;
}

.story {
  max-width: 760px;
  margin: 0 auto;
}

.story p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.1;
  margin: 0 0 28px;
}

.story .big {
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.7;
  color: var(--green);
  margin: 40px 0;
  padding-left: 22px;
  border-left: 4px solid var(--orange);
}

.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-band .media {
  aspect-ratio: 1/1;
}

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

.value {
  padding: 28px;
  background: var(--offwhite-2);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.value-no {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
}

.value h4 {
  margin: 14px 0 10px;
  font-weight: 900;
  font-size: 19px;
}

.value p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--charcoal-60);
}

@media (max-width: 860px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .about-band {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   COMPANY TABLE
   ============================================================ */

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table-inner {
  max-width: 800px;
  margin: 0 auto;
}

.company-table th,
.company-table td {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 140px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.company-table td {
  padding-left: 32px;
  color: var(--charcoal);
  line-height: 2;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 720px) {

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .company-table th {
    padding: 0 0 8px;
    border-bottom: none;
  }

  .company-table td {
    padding: 0;
    line-height: 1.8;
  }

  .company-table tr:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-note {
  background: var(--green);
  color: var(--offwhite);
  padding: 28px;
  border-radius: 5px;
  margin-bottom: 28px;
}

.contact-note .free {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.contact-note p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(247, 245, 240, 0.85);
}

.contact-info {
  margin-top: 28px;
}

.contact-info .row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info .lbl {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  width: 80px;
  flex-shrink: 0;
}

.contact-info .val {
  font-weight: 700;
}

.form {
  background: var(--offwhite-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 9px;
}

.field label .req {
  color: var(--orange);
  font-size: 12px;
  margin-left: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--offwhite);
  color: var(--charcoal);
  transition: border-color 0.18s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-privacy {
  font-size: 12px;
  color: var(--charcoal-40);
  margin-top: 14px;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ARTICLE / DETAIL (blog post + news single)
   ============================================================ */
.article {
  max-width: 760px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.75);
  margin-bottom: 24px;
}

.article-back:hover {
  color: var(--orange);
}

.article-back .bk {
  width: 16px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.article-back .bk::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.article-meta .post-date {
  color: rgba(247, 245, 240, 0.65);
}

.article-meta .read {
  font-family: var(--font-en);
  font-size: 13px;
  color: rgba(247, 245, 240, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-title {
  font-weight: 900;
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  text-wrap: pretty;
}

.article-hero .media {
  aspect-ratio: 16/9;
  border-radius: 5px;
}

.article-body {
  padding-top: clamp(40px, 5vw, 64px);
}

.article-body p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.1;
  margin: 0 0 26px;
}

.article-body h2 {
  font-weight: 900;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.5;
  margin: 48px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--orange);
}

.article-body .a-quote {
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.7;
  color: var(--green);
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--green-tint);
  border-radius: 5px;
}

.article-body figure {
  margin: 32px 0;
}

.article-body figure .media {
  aspect-ratio: 16/9;
  border-radius: 5px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-tags a {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-60);
  background: var(--offwhite-2);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 100px;
  transition: all 0.18s ease;
}

.article-tags a:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

/* related / prev-next */
.article-nav {
  max-width: 760px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.article-nav a {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 22px 24px;
  background: var(--offwhite-2);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.article-nav a:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.article-nav .dir {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  margin-bottom: 8px;
}

.article-nav .nt {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
}

.article-nav a.next {
  text-align: right;
}

.article-nav a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 560px) {
  .article-nav {
    grid-template-columns: 1fr;
  }
}

/* news single specific */
.news-single {
  max-width: 760px;
  margin: 0 auto;
}

.news-single .ns-cat {
  display: inline-block;
  margin-bottom: 16px;
}

.news-single p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.1;
  margin: 0 0 26px;
}

/* related block */
.related {
  background: var(--green-tint);
}

.related .sec-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

@media (max-width: 820px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.related-news {
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

.pager button,
.pager span.dots {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 16px;
  background: var(--offwhite-2);
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.16s ease;
}

.pager button:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.pager button.active {
  background: var(--green);
  color: var(--offwhite);
  border-color: var(--green);
  cursor: default;
}

.pager button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pager .nav-arrow {
  font-size: 18px;
}

.pager span.dots {
  border: none;
  background: none;
  cursor: default;
  min-width: 28px;
  color: var(--charcoal-40);
}

@media (max-width: 540px) {

  .pager button,
  .pager span.dots {
    min-width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

/* paginate_links() 対応 */
.pager .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pager .page-numbers li a,
.pager .page-numbers li span {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 16px;
  background: var(--offwhite-2);
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all 0.16s ease;
}
.pager .page-numbers li a:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}
.pager .page-numbers li span.current {
  background: var(--green);
  color: var(--offwhite);
  border-color: var(--green);
}
.pager .page-numbers li .dots {
  border: none;
  background: none;
  color: var(--charcoal-40);
}