/*
Theme Name: COOLS Corporate
Theme URI: https://cools-inc.jp/
Author: COOLS Inc.
Description: 株式会社Cools コーポレートサイト用 オリジナルテーマ。住設会社向けの爽やかなティールトーンと信頼感のあるレイアウト。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: cools
*/

/* ============================================
   Corporate redesign — teal primary
   ============================================ */
:root {
  /* Brand — bright, fresh, anchored on #01A3B2 (housing equipment vibe) */
  --teal-900: #0A4A52;   /* deepest only for type emphasis */
  --teal-800: #086977;
  --teal-700: #018A99;
  --teal-600: #019AA9;
  --teal-500: #01A3B2;   /* MAIN — buttons, links, accents */
  --teal-400: #4FC4CF;
  --teal-300: #8FDDE4;
  --teal-200: #BFE9ED;
  --teal-100: #DDF1F4;
  --teal-50:  #F0F9FB;
  --sky:      #E8F4F7;   /* fresh background tint */

  /* Neutrals — softer, warmer */
  --ink-900: #14272A;
  --ink-800: #243A3D;
  --ink-700: #4A5C5F;
  --ink-600: #6B7C7E;
  --ink-500: #94A2A4;
  --ink-400: #B6C0C1;
  --ink-300: #D8DEDF;
  --ink-200: #E9EDED;
  --ink-100: #F4F6F6;
  --paper:   #F8FBFB;
  --white:   #FFFFFF;

  /* Accents — restrained */
  --gold:    #B08A3E;
  --signal:  #D14A3A;

  /* Type */
  --jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Spacing & layout */
  --maxw: 1280px;
  --gutter: clamp(18px, 4vw, 32px);
  --section-y: clamp(64px, 10vw, 120px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--jp);
  font-weight: 400;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
input,
select,
textarea,
button {
  max-width: 100%;
}
table,
pre,
iframe,
video,
svg {
  max-width: 100%;
}
pre {
  overflow-x: auto;
}
.section h1,
.section h2,
.section h3,
.section p,
.section li,
.section dd,
.section a {
  overflow-wrap: anywhere;
}
/* =====================================================================
   Entry content (single post)
   ===================================================================== */
.entry-content p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* h2・h3 */
.entry-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--teal-500);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.entry-content h3 {
  font-size: 1rem;
  font-weight: 700;
  border-left: 4px solid var(--teal-500);
  padding: 4px 0 4px 12px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* リストのはみ出し修正 + チェックマーク */
.entry-content ul,
.entry-content .wp-block-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.entry-content ul li,
.entry-content .wp-block-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.3em;
  line-height: 1.7;
}
.entry-content ul li::before,
.entry-content .wp-block-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--teal-500);
  font-size: 0.9em;
  font-weight: 700;
  line-height: inherit;
}

/* 背景色つきリストブロックにパディングを追加 */
.entry-content .wp-block-list.has-background {
  padding: 16px 20px 16px 36px;
  border-radius: 6px;
}
.entry-content .wp-block-list.has-background li {
  padding-left: 1.6em;
}

/* テーマカラーパレット → CSS変数マッピング */
.has-teal-background-color       { background-color: #1a9dc8 !important; color: #fff; }
.has-teal-light-background-color { background-color: #e8f7fb !important; }
.has-ink-light-background-color  { background-color: #f4f4f5 !important; }
.has-white-background-color      { background-color: #ffffff !important; }
.has-ink-dark-background-color   { background-color: #1a1a2e !important; color: #fff; }
.has-teal-color                  { color: #1a9dc8 !important; }
.has-ink-dark-color              { color: #1a1a2e !important; }

.wp-block-table {
  overflow-x: auto;
}
.wp-block-table table {
  min-width: 640px;
}
.wp-block-image img,
.wp-block-video video,
.wp-block-embed iframe {
  width: 100%;
  height: auto;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   Utility bar (top, very thin)
   ============================================ */
.utility-bar {
  background: var(--teal-700);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  max-width: var(--maxw);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.utility-bar a {
  color: rgba(255,255,255,0.85);
  margin-left: 20px;
  transition: color 0.15s ease;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.utility-bar a:hover { color: var(--teal-400); }
.utility-bar .lang {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: 24px;
}
.utility-bar .lang a {
  margin-left: 0;
  color: rgba(255,255,255,0.55);
}
.utility-bar .lang span { opacity: 0.4; }
.utility-bar .lang .active { color: var(--white); font-weight: 500; }

/* ============================================
   Header / Main nav
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ink-200);
  min-height: 76px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  max-width: var(--maxw);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--teal-500);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--en);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--en);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink-900);
}
.brand-name .jp {
  font-family: var(--jp);
  font-size: 11px;
  display: block;
  color: var(--ink-600);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 2px;
}
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 70px;
  object-fit: contain;
}
.footer .brand-logo {
  max-width: 240px;
  max-height: 52px;
}

.nav-toggle { display: none; }

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  min-width: 0;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-800);
  position: relative;
  padding: 8px 0;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--teal-500); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--teal-500);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.15s ease;
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
}
.cta-button:hover { background: var(--teal-600); }
.cta-button.ghost {
  background: transparent;
  color: var(--teal-500);
  border: 1px solid var(--teal-500);
}
.cta-button.ghost:hover { background: var(--teal-50); }
.cta-button .arrow { font-family: var(--en); transition: transform 0.15s ease; }
.cta-button:hover .arrow { transform: translateX(3px); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--sky) 0%, var(--white) 60%, var(--teal-50) 100%);
  color: var(--ink-900);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-bg-image,
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}
.hero-bg-image {
  background-position: center;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,163,178,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,163,178,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,163,178,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero--media {
  color: var(--white);
  background: var(--ink-900);
  min-height: 640px;
  height: 640px;
}
.hero--media .hero-bg-image,
.hero--media .hero-bg-video {
  filter: blur(var(--hero-media-blur, 3px));
  transform: scale(1.015);
}
.hero--media::before {
  background: var(--hero-overlay-color, #062b35);
  opacity: var(--hero-overlay-opacity, 0.55);
}
.hero--media::after {
  display: none;
}
.hero--media .hero-eyebrow,
.hero--media .hero-sub {
  color: rgba(255,255,255,0.88);
}
.hero--media .hero h1,
.hero--media h1 {
  color: var(--white);
}
.hero--media .cta-button.ghost {
  color: var(--white);
  border-color: var(--white);
}
.hero--media .cta-button.ghost:hover {
  color: var(--teal-700);
  background: var(--white);
}
.hero--media .hero-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.68), rgba(255,255,255,0.42));
  border-color: rgba(255,255,255,0.62);
  color: var(--ink-900);
  backdrop-filter: blur(24px) saturate(1.28);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
  box-shadow:
    0 20px 56px rgba(0,36,48,0.2),
    inset 0 1px 0 rgba(255,255,255,0.76),
    inset 0 -1px 0 rgba(255,255,255,0.22);
}
.hero--media .hero-kpi {
  border-color: rgba(0,80,92,0.1);
}
.hero--media .hero-panel-label,
.hero--media .hero-kpi .num {
  color: var(--ink-900);
}
.hero--media .hero-kpi .num .unit {
  color: #333333;
}
.hero--media .hero-kpi .label {
  color: #111;
}
.hero--media .hero-inner {
  min-height: 640px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal-500);
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--teal-500);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-700);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .cta-button { background: var(--teal-500); color: var(--white); }
.hero .cta-button:hover { background: var(--teal-600); }
.hero .cta-button.ghost { background: transparent; color: var(--teal-700); border-color: var(--teal-500); }
.hero .cta-button.ghost:hover { background: var(--teal-50); }
html[lang^="en"] .hero-actions .cta-button {
  font-size: 13px;
  padding-left: 18px;
  padding-right: 18px;
  letter-spacing: 0.01em;
}
html[lang^="en"] .hero--media .hero-inner {
  padding-top: 46px;
  padding-bottom: 46px;
}
html[lang^="en"] .hero h1 {
  font-size: 48px;
  line-height: 1.24;
  margin-bottom: 22px;
}
html[lang^="en"] .hero-sub {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero.hero--media .cta-button.ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.hero.hero--media .cta-button.ghost:hover {
  color: var(--teal-700);
  background: var(--white);
  border-color: var(--white);
}

/* Hero side panel — KPI snapshot */
.hero-panel {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--teal-100);
  padding: 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(1,163,178,0.08);
}
.hero-panel-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.hero-kpi .num {
  font-family: var(--en);
  font-size: 36px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-kpi .num .unit {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-left: 4px;
}
.hero-kpi .label {
  font-size: 12px;
  color: var(--ink-800);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* News list section (under hero) */
.news-section {
  background: var(--white);
  border-top: 1px solid var(--teal-100);
  border-bottom: 1px solid var(--ink-200);
  padding: 20px 0;
}
.news-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-100);
}
.news-section-head .section-eyebrow {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  text-transform: uppercase;
  flex-shrink: 0;
}
.news-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin: 0;
}
.news-list-top {
  display: flex;
  flex-direction: column;
}
.news-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ink-100);
}
.news-row-date {
  font-family: var(--en);
  font-size: 12px;
  color: var(--ink-500);
  flex-shrink: 0;
  width: 78px;
}
.news-row-tag {
  font-size: 10px;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-100);
  padding: 2px 7px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}
.news-row-title {
  font-size: 13px;
  color: var(--ink-800);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.news-row-title:hover {
  color: var(--teal-500);
}
.news-section-footer {
  margin-top: 20px;
  text-align: center;
}
.btn-outline-teal {
  display: inline-block;
  padding: 10px 36px;
  border: 1.5px solid var(--teal-500);
  color: var(--teal-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-teal:hover {
  background: var(--teal-500);
  color: var(--white);
}

/* ============================================
   Section heading pattern
   ============================================ */
.section { padding: var(--section-y) 0; }
.section-light { background: var(--paper); }
.section-dark { background: var(--ink-900); color: var(--white); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.section-eyebrow {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--teal-500);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal-500);
}
.section-dark .section-eyebrow { color: var(--teal-400); }
.section-dark .section-eyebrow::before { background: var(--teal-400); }

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 16px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-700);
  max-width: 580px;
}
.section-dark .section-desc { color: var(--ink-300); }

/* ============================================
   Business cards (事業内容)
   ============================================ */
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-200);
  border: 1px solid var(--ink-200);
}
.business-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.business-card .num {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-400);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.business-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.business-card .icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
/* 写真ありカード */
.business-card .card-photo {
  margin: -40px -36px 28px;
  overflow: hidden;
}
.business-card .card-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.business-card:hover .card-photo img {
  transform: scale(1.04);
}
.business-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.business-card .en-title {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-500);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.business-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-700);
  margin-bottom: 0;
  flex: 1;
}

/* ============================================
   実績数値 — Stats (light, fresh)
   ============================================ */
.stats-section {
  background: linear-gradient(180deg, var(--sky) 0%, var(--teal-50) 100%);
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,163,178,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,163,178,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats-section .section-eyebrow { color: var(--teal-700); }
.stats-section .section-eyebrow::before { background: var(--teal-700); }
.stats-section .section-desc { color: var(--ink-700); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--teal-100);
  border: 1px solid var(--teal-100);
  position: relative;
  z-index: 2;
}
.stat-card {
  background: var(--white);
  padding: 48px 32px;
  position: relative;
}
.stat-card .label-en {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.stat-card .value {
  font-family: var(--en);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-900);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-card .value .unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-500);
}
.stat-card .value .plus {
  color: var(--teal-500);
  font-size: 32px;
}
.stat-card .label-jp {
  font-size: 13px;
  color: var(--ink-700);
  margin-top: 16px;
  line-height: 1.7;
}
.stat-note {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 11px;
  line-height: 1.5;
}
.stat-card .corner {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--en);
  font-size: 10px;
  color: var(--ink-400);
  letter-spacing: 0.1em;
}

/* ============================================
   Company info table (企業概要)
   ============================================ */
.company-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.company-info-table {
  border-top: 1px solid var(--ink-300);
}
.company-info-table .row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-200);
  font-size: 14px;
  line-height: 1.8;
}
.company-info-table .row dt {
  font-weight: 500;
  color: var(--ink-700);
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.company-info-table .row dt::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--teal-500);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}
.company-info-table .row dd { color: var(--ink-900); }
.company-info-table .row dd,
.business-card p,
.section-desc,
.recruit p,
.contact-aside dd {
  overflow-wrap: anywhere;
}
.company-info-table .row dd .small {
  font-size: 12px;
  color: var(--ink-600);
  display: block;
  margin-top: 4px;
}

.company-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.company-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.company-visual .placeholder {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 14px,
      rgba(11,110,110,0.08) 14px,
      rgba(11,110,110,0.08) 15px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal-500);
  letter-spacing: 0.1em;
}
.company-visual .label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  background: var(--white);
  padding: 6px 12px;
}
.company-visual .badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--teal-500);
  color: var(--white);
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.company-visual .badge .yr {
  font-family: var(--en);
  font-size: 28px;
  font-weight: 600;
  display: block;
  letter-spacing: -0.02em;
}

.mvv-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-200);
  border: 1px solid var(--ink-200);
}
.mvv-card {
  background: var(--white);
  padding: 40px 32px;
}
.mvv-en {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--teal-500);
  margin-bottom: 8px;
}
.mvv-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.mvv-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-700);
  overflow-wrap: anywhere;
}

/* ============================================
   Recruit section — fresh accent
   ============================================ */
.recruit {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.recruit::before {
  content: "RECRUIT";
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: var(--en);
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  letter-spacing: -0.05em;
  line-height: 1;
}
.recruit-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.recruit h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.recruit h2 .accent { color: var(--teal-100); }
.recruit p {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 480px;
}
.recruit-positions {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px;
  backdrop-filter: blur(8px);
}
.recruit-positions-title {
  margin: 0;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.recruit-language-note {
  margin: 0;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  line-height: 1.7;
}
.recruit-positions .pos {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  cursor: default;
}
a.pos {
  cursor: pointer;
  transition: background 0.15s ease;
}
.recruit-positions a.pos {
  cursor: pointer;
}
a.pos:hover {
  background: rgba(255,255,255,0.08);
}
.recruit-positions .pos:last-child { border-bottom: none; }
.recruit-positions .pos .num {
  font-family: var(--en);
  font-size: 11px;
  color: var(--teal-100);
  letter-spacing: 0.15em;
  width: 30px;
}
.recruit-positions .pos .info .title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.recruit-positions .pos .info .meta {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.55;
}
.recruit-positions .pos .arrow {
  font-family: var(--en);
  font-size: 20px;
  color: var(--white);
  transition: transform 0.2s ease;
}
.recruit-positions a.pos:hover .arrow { transform: translateX(4px); }
.recruit .cta-button { background: var(--white); color: var(--teal-700); }
.recruit .cta-button:hover { background: var(--teal-50); }

/* ============================================
   Footer — light, airy
   ============================================ */
.footer {
  background: var(--paper);
  color: var(--ink-700);
  padding: 80px 0 0;
  border-top: 1px solid var(--ink-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink-200);
}
.footer-brand .brand-name { color: var(--ink-900); }
.footer-brand .brand-name .jp { color: var(--ink-600); }
.footer-brand p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-600);
  margin-top: 24px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-500);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--ink-700);
}
.footer-col a:hover { color: var(--teal-500); }
.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.05em;
}
.footer-bottom .links { display: flex; gap: 24px; }

.news-list {
  display: grid;
  gap: 1px;
  background: var(--ink-200);
  border: 1px solid var(--ink-200);
}
.news-card {
  background: var(--white);
  padding: 32px;
  display: grid;
  grid-template-columns: 120px 100px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.news-card-date {
  font-family: var(--en);
  font-size: 13px;
  color: var(--ink-600);
  white-space: nowrap;
}
.news-card-tag {
  font-size: 11px;
  background: var(--teal-50);
  color: var(--teal-700);
  padding: 4px 10px;
  border: 1px solid var(--teal-100);
  text-align: center;
}
.news-card-title {
  min-width: 0;
  color: var(--ink-900);
  font-size: 15px;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.news-card-arrow {
  color: var(--teal-500);
}

/* ============================================
   Contact page
   ============================================ */
.contact-page {
  background:
    linear-gradient(180deg, var(--teal-50) 0, var(--white) 360px);
}
.contact-container {
  max-width: 1180px;
}
.contact-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.contact-head h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.contact-head p {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.95;
}
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1px;
  background: var(--ink-200);
  border: 1px solid var(--ink-200);
}
.contact-aside,
.contact-form-panel {
  background: var(--white);
}
.contact-aside {
  padding: 44px 36px;
}
.contact-aside h2 {
  color: var(--ink-900);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-aside p {
  color: var(--teal-700);
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-aside dl {
  display: grid;
  gap: 24px;
}
.contact-aside dt {
  color: var(--teal-500);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.contact-aside dd {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.75;
}
.contact-form-panel {
  padding: 44px 48px;
}
.wpcf7 form {
  display: grid;
  gap: 22px;
}
.wpcf7 label {
  display: grid;
  gap: 8px;
  color: var(--ink-800);
  font-size: 13px;
  font-weight: 700;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--ink-300);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink-900);
  font: inherit;
  font-size: 15px;
  line-height: 1.7;
  padding: 14px 16px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(1, 163, 178, 0.12);
}
.wpcf7 input[type="submit"] {
  justify-self: start;
  min-width: 180px;
  border: 0;
  border-radius: 2px;
  background: var(--teal-500);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 15px 28px;
  transition: background 0.15s ease;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--teal-600);
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--signal);
  font-size: 12px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 4px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--teal-200);
  color: var(--ink-800);
  font-size: 13px;
}

/* ============================================
   Responsive — basic
   ============================================ */
@media (max-width: 1100px) {
  .hero-inner, .recruit-inner, .company-layout { grid-template-columns: 1fr; gap: 48px; }
  .company-visual { order: -1; }
  .main-nav { gap: 24px; }
  .main-nav a { font-size: 13px; }
  .hero,
  .hero--media {
    height: auto;
    min-height: 0;
  }
  .hero--media .hero-inner,
  .hero-inner {
    min-height: 0;
  }
}
@media (max-width: 960px) {
  .business-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
  .section-title { font-size: 30px; }
  .stat-card .value { font-size: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .header .container {
    display: flex;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
  }

  /* ── hamburger button ── */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .header .brand      { flex: 1; }
  .header .cta-button { order: 2; margin-right: 16px; }
  .nav-toggle         { order: 3; }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--teal-600);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ── mobile nav drawer ── */
  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--ink-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    gap: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    z-index: 200;
  }
  .header.nav-open .main-nav {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--ink-100);
    white-space: nowrap;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a::after { display: none; }
  .utility-bar { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-panel,
  .contact-aside { padding: 32px 24px; }
  .contact-head h1 { font-size: 34px; }
  .mvv-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .news-card { grid-template-columns: 110px minmax(0, 1fr) auto; }
  .news-card-tag { justify-self: start; }
  .news-card-title { grid-column: 2 / 3; }
}

@media (max-width: 720px) {
  .brand-logo {
    max-width: min(58vw, 220px);
    max-height: 54px;
  }
  .header .cta-button {
    padding: 10px 14px;
    font-size: 12px;
  }
  .hero-inner {
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 36px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.36;
  }
  html[lang^="en"] .hero h1 {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-actions,
  .footer-bottom,
  .footer-bottom .links {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .cta-button {
    width: 100%;
  }
  .hero-panel {
    padding: 28px 22px;
  }
  .hero-kpi-grid,
  .business-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .business-card {
    min-height: auto;
    padding: 32px 24px;
  }
  .business-card .card-photo {
    margin: -32px -24px 24px;
  }
  .stat-card {
    padding: 36px 24px;
  }
  .company-info-table .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .company-visual {
    aspect-ratio: unset;
  }
  .company-visual img {
    height: auto;
    object-fit: contain;
  }
  .recruit::before {
    font-size: 120px;
    right: -10px;
    bottom: -24px;
  }
  .recruit h2 {
    font-size: 34px;
  }
  .recruit-positions .pos {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 20px 18px;
  }
  .recruit-positions .pos .num {
    width: auto;
  }
  .recruit-positions .pos .info {
    grid-column: 1 / -1;
  }
  .contact-form-panel,
  .contact-aside {
    padding: 28px 20px;
  }
  .section main,
  .section article {
    min-width: 0;
  }
  .news-card {
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    padding: 24px 20px;
  }
  .news-card-date,
  .news-card-tag,
  .news-card-title {
    grid-column: 1 / 2;
  }
  .news-card-arrow {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    align-self: center;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .header .container {
    gap: 10px;
  }
  .header .brand {
    flex: 1;
  }
  .header .cta-button {
    width: auto;
  }
  .main-nav {
    margin-top: 2px;
  }
  .hero-inner {
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .hero h1 {
    font-size: 30px;
  }
  html[lang^="en"] .hero h1 {
    font-size: 28px;
  }
  .hero-eyebrow,
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .section-title {
    font-size: 28px;
  }
  .section h1[style] {
    font-size: 30px !important;
    line-height: 1.42 !important;
    margin-bottom: 32px !important;
  }
  .news-section {
    padding: 16px 0;
  }
  .news-row {
    gap: 8px;
    padding: 8px 0;
    flex-wrap: wrap;
  }
  .news-row-date {
    width: auto;
  }
  .news-row-title {
    white-space: normal;
    width: 100%;
    flex-basis: 100%;
  }
  .mvv-card,
  .contact-form-panel,
  .contact-aside {
    padding: 24px 18px;
  }
  .company-visual .label {
    top: 14px;
    left: 14px;
  }
  .company-visual .badge {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }
  .footer {
    padding-top: 56px;
  }
  .footer-grid {
    gap: 32px;
    padding-bottom: 40px;
  }
  .wpcf7 input[type="submit"] {
    width: 100%;
  }
}

/* ============================================
   Media Sites — 3D Orbital Carousel
   ============================================ */
.media-sites-section {
  padding-top: 80px;
  padding-bottom: 56px;
  overflow: hidden;
}
.section-head.media-sites-head {
  margin-bottom: 0;
  grid-template-columns: max-content 1fr;
  align-items: center;
}

/* Stage — establishes perspective */
.media-sites-stage {
  width: 100%;
  height: 260px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  position: relative;
}

/* Orbit — float animation wrapper */
.media-sites-stage::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 28px;
  background: rgba(0, 0, 0, 0.13);
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}
.media-sites-orbit {
  transform-style: preserve-3d;
  animation: media-float 5s ease-in-out infinite alternate;
}
@keyframes media-float {
  from { transform: translateY(0px);   }
  to   { transform: translateY(-26px); }
}

/* Track — spin animation wrapper */
.media-sites-track {
  position: relative;
  width: 300px;
  height: 160px;
  transform-style: preserve-3d;
  animation: media-spin 90s linear infinite;
}
.media-sites-stage:hover .media-sites-orbit,
.media-sites-stage:hover .media-sites-track {
  animation-play-state: paused;
}
@keyframes media-spin {
  from { transform: rotateY(0deg);   }
  to   { transform: rotateY(360deg); }
}

/* Each card group positioned around the circle */
.media-site-item {
  position: absolute;
  inset: 0;
  width: 300px;
  height: 160px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotateY(var(--item-angle)) translateZ(520px);
}
.media-site-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
}
.media-site-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.media-site-card {
  flex: 1;
  min-width: 0;
  background: #e8f7fb;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.media-site-tag {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--en);
  font-weight: 700;
  color: var(--teal-700);
  background: rgba(1,163,178,.13);
  border-radius: 100px;
  padding: 1px 6px;
  align-self: flex-start;
}
.media-site-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.4;
  margin: 0;
}
.media-site-desc {
  font-size: 8px;
  line-height: 1.6;
  color: var(--ink-700);
  flex: 1;
  margin: 0;
  overflow: hidden;
}
.media-site-link {
  font-size: 9px;
  font-weight: 600;
  color: var(--teal-700);
  text-decoration: none;
  font-family: var(--en);
  letter-spacing: 0.04em;
  margin-top: auto;
}
.media-site-link:hover { text-decoration: underline; }

.media-sites-hint {
  text-align: center;
  font-size: 11px;
  font-family: var(--en);
  letter-spacing: 0.12em;
  color: var(--ink-400);
  margin: 14px 0 0;
}

/* SP: section-head single column */
@media (max-width: 960px) {
  .section-head.media-sites-head {
    grid-template-columns: 1fr !important;
    align-items: start;
  }
}

/* SP: scale 3D carousel down to fit mobile viewport */
@media (max-width: 768px) {
  .media-sites-section {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .media-sites-stage {
    height: 220px;
    perspective: 800px;
    margin-top: 40px;
  }

  .media-sites-stage::after {
    width: 320px;
    height: 18px;
    filter: blur(10px);
  }

  .media-sites-hint { display: none; }

  .media-sites-orbit {
    animation-name: media-float-sp;
  }
  @keyframes media-float-sp {
    from { transform: translateY(0px); }
    to   { transform: translateY(-12px); }
  }

  .media-sites-track {
    width: 200px;
    height: 110px;
  }

  .media-site-item {
    width: 200px;
    height: 110px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transform: rotateY(var(--item-angle)) translateZ(280px);
  }

  .media-site-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    background: transparent;
  }

  .media-site-card {
    flex: 1;
    padding: 6px 8px;
    gap: 2px;
    border-radius: 6px;
    background: #e8f7fb;
  }

  .media-site-tag  { font-size: 7px; }
  .media-site-name { font-size: 9px; }
  .media-site-desc { font-size: 7px; }
}

/* =====================================================================
   Related-link block (cools/related-link)
   ===================================================================== */
.related-link-block {
  margin: 0.5em 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
}

.related-link-label {
  background: #1a9dc8;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  line-height: 1;
}

.related-link-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  background: #fafafa;
  transition: background 0.2s;
}

.related-link-inner:hover {
  background: #f0f8fc;
}

.related-link-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 68px;
  overflow: hidden;
  border-radius: 6px;
}

.related-link-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-link-text {
  flex: 1;
  min-width: 0;
}

.related-link-title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-link-inner:hover .related-link-title {
  color: #1a9dc8;
}

/* Editor placeholder */
.related-link-placeholder {
  padding: 16px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  background: #f9f9f9;
}

.related-link-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #666;
}

@media (max-width: 600px) {
  .related-link-thumb {
    width: 72px;
    height: 50px;
  }
  .related-link-inner {
    padding: 10px 12px;
    gap: 10px;
  }
}

/* =====================================================================
   Breadcrumb
   ===================================================================== */
.breadcrumb {
  margin-bottom: 28px;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--ink-500);
}
.breadcrumb-item a {
  color: var(--teal-500);
  transition: opacity 0.2s;
}
.breadcrumb-item a:hover {
  opacity: 0.7;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin-right: 4px;
  color: var(--ink-300);
}
.breadcrumb-item.current {
  color: var(--ink-700);
}
