/*
Theme Name: decoline-custom
Theme URI: https://www.decoline.co.jp
Author: デコライン株式会社
Author URI: https://www.decoline.co.jp
Description: デコライン株式会社コーポレートサイト用カスタムテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: decoline-custom
*/


/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #0063ef;
  --secondary: #1e73be;
  --blue-dark: #0a1628;
  --text: #222;
  --text-light: #666;
  --white: #fff;
  --gray-bg: #f7f9fc;
  --gray-bg-alt: #f5f6fa;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: 'Noto Serif JP', serif; font-weight: 700; letter-spacing: 0.03em; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.dcl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: background 0.4s, box-shadow 0.4s;
}
.dcl-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.dcl-header__logo img {
  height: 36px;
  width: auto;
}
.dcl-header__logo {
  flex-shrink: 0;
}
.dcl-header__nav ul {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}
.dcl-mobile-only { display: none; }
.dcl-header__nav a {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
/* header always white, no scroll color change needed */
.dcl-header__nav a:hover { color: var(--primary); text-decoration: none; }
.dcl-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dcl-header__tel {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  text-decoration: none;
}
/* tel always dark */
.dcl-header__tel:hover { text-decoration: none; opacity: 0.8; }
.dcl-header__cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.3s, transform 0.25s;
  text-decoration: none;
}
.dcl-header__cta-btn:hover { background: #004cc7; transform: translateY(-1px); text-decoration: none; }
.dcl-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.dcl-header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.dcl-header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.dcl-header__hamburger.active span:nth-child(2) { opacity: 0; }
.dcl-header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* dcl-header--white kept for compatibility but no longer needed */

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 100px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-bg-white { background: var(--white); }
.section-bg-gray { background: var(--gray-bg); }
.section-bg-blue {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--secondary) 100%);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-bg-blue .section-tag { color: rgba(255,255,255,0.7); }
.section-header h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.section-header .section-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 20px auto 0;
  border-radius: 2px;
}
.section-bg-blue .section-line { background: rgba(255,255,255,0.5); }
.section-bg-blue .section-header h2 { color: var(--white); }
.section-bg-blue .section-header p { color: rgba(255,255,255,0.8); }
.section-bg-blue p { color: rgba(255,255,255,0.85); }
.section-bg-blue h3, .section-bg-blue h4 { color: var(--white); }
.section-bg-blue .dcl-checklist li { color: var(--white); }
.section-bg-blue .dcl-checklist li::before { color: rgba(255,255,255,0.7); }
.section-bg-blue .dcl-card { background: rgba(255,255,255,0.1); }
.section-bg-blue .dcl-card h3 { color: var(--white); }
.section-bg-blue .dcl-card p { color: rgba(255,255,255,0.8); }
.section-bg-blue .dcl-intro p { color: rgba(255,255,255,0.85); }
.section-header p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

/* ============================================================
   HERO (sub-pages with background image)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #153d6b 40%, var(--secondary) 70%, var(--primary) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  padding: 110px 20px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero--img {
  background-size: cover;
  background-position: center;
}
.page-hero--img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(30,115,190,0.7) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
}
.page-hero .hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  padding: 6px 24px;
  margin-bottom: 28px;
  opacity: 0.9;
}
.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.9;
}
.page-hero .hero-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  opacity: 0.5;
  margin-top: 20px;
  letter-spacing: 0.12em;
}
.page-hero .hero-profile {
  max-width: 860px;
  font-size: 0.95rem;
  opacity: 0.82;
  margin-top: 10px;
  line-height: 1.95;
}
.page-hero .hero-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .hero-num span {
  font-size: 2rem;
  -webkit-text-fill-color: rgba(255,255,255,0.7);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 16px 20px; font-size: 0.85rem; color: #888; }
.breadcrumb a { color: var(--secondary); }

/* ============================================================
   NUMBER COMPONENTS (from numbers.html)
   ============================================================ */
.num-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.num-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 48px; }
.num-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 32px; }
.num-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.num-item.visible { opacity: 1; transform: translateY(0); }
/* Process Flow Diagram (設計開発 等) */
.dcl-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 2.5rem 0;
  padding: 32px 16px;
  background: linear-gradient(135deg, #f5f9ff 0%, #eaf2fb 100%);
  border-radius: 16px;
}
.dcl-flow__step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 14px 12px;
}
.dcl-flow__icon {
  width: 68px; height: 68px;
  margin: 0 auto 12px;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(30,79,143,0.12);
}
.dcl-flow__icon svg { width: 60%; height: 60%; }
.dcl-flow__num {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.dcl-flow__label {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.dcl-flow__desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
.dcl-flow__arrow {
  width: 40px; height: 20px;
  color: var(--primary);
  opacity: 0.55;
  flex-shrink: 0;
}
.dcl-flow__arrow svg { width: 100%; height: 100%; }
@media (max-width: 768px) {
  .dcl-flow { flex-direction: column; gap: 8px; padding: 24px 12px; }
  .dcl-flow__step { min-width: 0; width: 100%; }
  .dcl-flow__arrow { transform: rotate(90deg); width: 24px; height: 16px; }
}

.num-item .num-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.num-item .num-icon svg { width: 100%; height: 100%; display: block; }
.num-grid-4 .num-item .num-icon { width: 44px; height: 44px; margin-bottom: 12px; }
@media (max-width: 768px) {
  .num-item .num-icon { width: 44px; height: 44px; margin-bottom: 12px; }
}
.num-item .num-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 96px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-bg-blue .num-value { color: var(--white); }
.section-bg-blue .num-label { color: rgba(255,255,255,0.9); }
.section-bg-blue .num-desc { color: rgba(255,255,255,0.65); }
.section-bg-blue .num-unit { color: rgba(255,255,255,0.85); }
.num-item .num-unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}
.num-item .num-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
}
.num-item .num-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.6;
}
.section-bg-blue .num-item .num-value { color: var(--white); }
.section-bg-blue .num-item .num-label { color: rgba(255,255,255,0.92); }
.section-bg-blue .num-item .num-desc { color: rgba(255,255,255,0.76); }
.section-bg-blue .num-item .num-unit { color: rgba(255,255,255,0.88); }

/* Highlight Cards */
.highlight-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 56px; }
.highlight-row-single { grid-template-columns: minmax(0, 520px); justify-content: center; }
.highlight-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.highlight-card.visible { opacity: 1; transform: translateY(0); }
.highlight-card .card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.highlight-card .card-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.highlight-card .card-value { font-family: 'Noto Serif JP', serif; font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1.1; }
.highlight-card .card-label { font-size: 0.95rem; font-weight: 600; margin-top: 8px; color: var(--text); }
.highlight-card .card-desc { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* Pie Chart */
.chart-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.chart-svg-wrap { text-align: center; }
.chart-svg-wrap svg { max-width: 320px; width: 100%; }
.chart-legend li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid #eee; font-size: 0.95rem;
}
.chart-legend li:last-child { border-bottom: none; }
.legend-color { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; }
.legend-pct { font-family: 'Noto Serif JP', serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-left: auto; min-width: 60px; text-align: right; }

/* Award Banner */
.award-banner {
  display: flex; align-items: center; gap: 32px;
  background: linear-gradient(135deg, #fffbeb, #fff7d6);
  border: 2px solid #e8c840;
  border-radius: 16px;
  padding: 40px 48px;
  margin-top: 56px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.award-banner.visible { opacity: 1; transform: translateY(0); }
.award-icon { width: 72px; height: 72px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.award-icon svg { width: 56px; height: 56px; }
.award-text h3 { font-family: 'Noto Serif JP', serif; font-size: 1.3rem; color: #8B6914; margin-bottom: 6px; }
.award-text p { font-size: 0.9rem; color: #8B7355; line-height: 1.7; }

/* Cert Badges */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.cert-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 32px; text-align: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cert-badge.visible { opacity: 1; transform: translateY(0); }
.cert-badge .cert-name { font-family: 'Noto Serif JP', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.cert-badge .cert-detail { font-size: 0.85rem; opacity: 0.75; line-height: 1.6; }

/* ============================================================
   GALLERY MARQUEE (from gallery.html)
   ============================================================ */
.gallery-section { padding: 80px 0 60px; background: var(--white); }
.gallery-intro { text-align: center; max-width: 800px; margin: 0 auto 60px; padding: 0 20px; }
.gallery-intro h2 { font-family: 'Noto Serif JP', serif; font-size: 1.6rem; margin-bottom: 12px; color: var(--text); }
.gallery-intro p { font-size: 0.95rem; color: var(--text-light); line-height: 1.9; }

.marquee-row { display: flex; align-items: center; margin-bottom: 24px; overflow: hidden; position: relative; }
.marquee-label {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 180px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary) 70%, rgba(30,115,190,0.95) 85%, rgba(30,115,190,0) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  z-index: 10; padding-right: 20px; text-align: center; line-height: 1.4;
}
.marquee-track-wrapper { width: 100%; overflow: hidden; padding-left: 180px; }
.marquee-track { display: flex; gap: 20px; width: max-content; }
.marquee-track.forward { animation: marquee-forward var(--marquee-duration, 60s) linear infinite; }
.marquee-track.reverse { animation: marquee-reverse var(--marquee-duration, 60s) linear infinite; }
@keyframes marquee-forward { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0; width: 160px; height: 160px;
  background: #f8f9fb; border: 1px solid #e8eaef; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; position: relative;
}
.marquee-item:hover { transform: scale(1.8); box-shadow: 0 12px 40px rgba(0,0,0,0.15); z-index: 20; background: var(--white); }
.marquee-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.marquee-item .item-tooltip {
  position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
  background: var(--blue-dark); color: var(--white); font-size: 0.7rem;
  padding: 4px 10px; border-radius: 4px; white-space: nowrap;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.marquee-item:hover .item-tooltip { opacity: 1; }

/* Stats Bar */
.stats-bar { background: var(--gray-bg-alt); padding: 48px 20px; margin-top: 40px; }
.stats-bar-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-value { font-family: 'Noto Serif JP', serif; font-size: 2.2rem; font-weight: 700; color: var(--secondary); }
.stat-value span { font-size: 1rem; font-weight: 400; }
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

/* ============================================================
   HERO SLIDER (index.html)
   ============================================================ */
.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slider__slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.hero-slider__slide.active img {
  animation: heroZoom 8s ease forwards;
}
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(0,99,239,0.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--white);
}
.hero-slider__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.4;
}
.hero-slider__cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 16px 48px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.25s, transform 0.25s;
  text-decoration: none;
}
.hero-slider__cta:hover { background: #004cc7; transform: translateY(-2px); text-decoration: none; }
.hero-slider__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-slider__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-slider__dot.active { background: var(--white); transform: scale(1.2); }

/* ============================================================
   NUMBERS BAR (index.html compact)
   ============================================================ */
.numbers-bar {
  background: var(--primary);
  padding: 48px 20px;
}
.numbers-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  color: var(--white);
}
.numbers-bar__item .nb-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
}
.numbers-bar__item .nb-unit {
  font-size: 1rem;
  font-weight: 400;
}
.numbers-bar__item .nb-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 6px;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission-section { padding: 100px 20px; text-align: center; }
.mission-section__inner { max-width: 800px; margin: 0 auto; }
.mission-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  margin-bottom: 32px;
  color: var(--text);
  letter-spacing: 0.04em;
}
.mission-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 20px;
}

/* ============================================================
   TECH CARDS
   ============================================================ */
.tech-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.tech-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  background: var(--white);
  cursor: pointer;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s;
}
.tech-card.visible { opacity: 1; transform: translateY(0); }
.tech-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.tech-card__img {
  aspect-ratio: 16 / 10;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}
.tech-card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  transition: transform 0.5s;
}
.tech-card:hover .tech-card__img img { transform: scale(1.03); }
.tech-card__body {
  padding: 28px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
.tech-card__body h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text); }
.tech-card__body p {
  flex: 1 1 auto;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tech-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 0.9rem; font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.25s ease, gap 0.25s ease;
}
.tech-card__arrow { transition: transform 0.25s ease; }
.tech-card:hover .tech-card__link { color: #004cc7; gap: 10px; }
.tech-card:hover .tech-card__arrow { transform: translateX(4px); }

/* ============================================================
   WORKS CARDS (index)
   ============================================================ */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  background: var(--white);
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.work-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.work-card.visible { opacity: 1; transform: translateY(0); }
.work-card__img { height: 200px; overflow: hidden; background: #f6f8fb; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform 0.5s; }
.work-card:hover .work-card__img img { transform: scale(1.03); }
.work-card__body { padding: 20px; }
.work-card__tag {
  display: inline-block;
  background: var(--gray-bg);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.work-card__body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.work-card__body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* WORKS CARDS (works.html detail list) */
.work-card-img { height: 200px; overflow: hidden; background: #f6f8fb; }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform 0.5s; }
.work-card:hover .work-card-img img { transform: scale(1.03); }
.work-card-body { padding: 20px; }
.work-card-tag {
  display: inline-block;
  background: var(--gray-bg);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.work-card-title { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.work-card-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.work-card-link:hover { text-decoration: underline; }
.work-card-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   FLOW STEPS
   ============================================================ */
.flow-steps {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.flow-step {
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 16px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.flow-step.visible { opacity: 1; transform: translateY(0); }
.flow-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.flow-step h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.flow-step p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }
.flow-step__arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  z-index: 1;
}
.flow-steps--nowrap {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.flow-steps--nowrap .flow-step {
  flex: 0 0 220px;
  min-width: 220px;
  max-width: 220px;
}

/* ============================================================
   VOICE CARDS
   ============================================================ */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.voice-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  position: relative;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.voice-card.visible { opacity: 1; transform: translateY(0); }
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}
.voice-card p { font-size: 0.95rem; line-height: 1.9; color: var(--text); padding-top: 8px; }
.voice-card__meta {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 700;
}
.voice-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.voice-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.voice-card__avatar[data-color="blue"] { background: #eef4ff; color: #1e73be; }
.voice-card__avatar[data-color="orange"] { background: #fff5eb; color: #e8871e; }
.voice-card__avatar svg { width: 22px; height: 22px; max-width: 22px; max-height: 22px; }
.voice-card__role {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
}
.cta-section--blue {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--secondary) 100%);
  color: var(--white);
}
.cta-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1rem;
}
.cta-section--blue p { color: rgba(255,255,255,0.8); }
.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 16px 48px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.cta-btn:hover { background: var(--primary); transform: translateY(-2px); text-decoration: none; }
.cta-btn--white { background: var(--white); color: var(--primary); }
.cta-btn--white:hover { background: #f0f4ff; }
.cta-tel {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-decoration: none;
}
.cta-tel:hover { text-decoration: none; opacity: 0.8; }
.cta-section--blue .cta-tel { color: var(--white); }
.cta-note { font-size: 0.85rem; color: var(--text-light); margin-top: 12px; }
.cta-section--blue .cta-note { color: rgba(255,255,255,0.6); }

/* ============================================================
   RECRUIT COMPONENTS
   ============================================================ */
.merit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.merit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.merit-card.visible { opacity: 1; transform: translateY(0); }
.merit-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.merit-card__icon svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.merit-card h3 { font-size: 1.15rem; margin-bottom: 16px; color: var(--text); }
.merit-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; text-align: left; }

.senior-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.senior-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.senior-card.visible { opacity: 1; transform: translateY(0); }
.senior-card__meta {
  font-size: 0.8rem; font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.senior-card p { font-size: 0.9rem; color: var(--text); line-height: 1.9; }

.job-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.job-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.job-card.visible { opacity: 1; transform: translateY(0); }
.job-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--primary); }
.job-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.job-card dl { font-size: 0.85rem; }
.job-card dt { font-weight: 700; color: var(--text); margin-top: 10px; }
.job-card dd { color: var(--text-light); }

/* Benefits Grid */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.benefit-item.visible { opacity: 1; transform: translateY(0); }
.benefit-item__icon { font-size: 2rem; margin-bottom: 8px; }
.benefit-item h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--text); }
.benefit-item p { font-size: 0.8rem; color: var(--text-light); }

/* Company Table */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.company-table th,
.company-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.95rem;
  text-align: left;
}
.company-table th {
  background: var(--gray-bg);
  font-weight: 700;
  width: 30%;
  color: var(--text);
}
.company-table td { color: var(--text-light); }

/* Banner Link */
.banner-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s;
}
.banner-link:hover { transform: translateY(-4px); text-decoration: none; }
.banner-link__bg {
  background: linear-gradient(135deg, var(--blue-dark), var(--primary));
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}
.banner-link__bg--soft {
  background: linear-gradient(135deg, #dcecff 0%, #b7d6fb 100%);
  color: var(--primary);
}
.banner-link__bg--soft h3 {
  color: var(--primary);
}
.banner-link__bg--soft p {
  color: var(--text);
  opacity: 0.88;
}
.banner-link__bg h3 { font-size: 1.5rem; margin-bottom: 12px; }
.banner-link__bg p { font-size: 1rem; opacity: 0.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.dcl-footer {
  background: var(--white);
  color: var(--text);
  padding: 60px 20px 24px;
  border-top: 1px solid #e0e0e0;
}
.dcl-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 40px;
}
.dcl-footer__col h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 16px;
}
.dcl-footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}
.dcl-footer__col p { font-size: 0.8rem; line-height: 1.9; }
.dcl-footer__col ul li { margin-bottom: 8px; }
.dcl-footer__col ul a { color: var(--text-light); font-size: 0.85rem; transition: color 0.2s; text-decoration: none; }
.dcl-footer__col ul a:hover { color: var(--primary); }
.dcl-footer__copy {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dcl-footer__copy a {
  color: var(--text-light);
  text-decoration: none;
}
.dcl-footer__copy a:hover { color: var(--primary); text-decoration: underline; }

/* Mobile Fixed CTA */
.mobile-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
  padding: 10px 16px;
}
.mobile-fixed-cta__inner {
  display: flex;
  gap: 10px;
}
.mobile-fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.mobile-fixed-cta__btn--contact {
  background: var(--primary);
  color: var(--white);
}
.mobile-fixed-cta__btn--tel {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* ============================================================
   GENERIC CARDS & GRIDS (shared across pages)
   ============================================================ */
.dcl-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.dcl-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.dcl-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.dcl-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

.dcl-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.dcl-card__body { flex: 1 1 auto; }
.dcl-grid-2, .dcl-grid-3, .dcl-grid-4 { align-items: stretch; grid-auto-rows: 1fr; }
a.dcl-card { text-decoration: none; color: inherit; }

.dcl-access-info { text-align: center; margin: 24px 0 20px; }
.dcl-access-addr {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin: 0;
}
.dcl-access-addr strong {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.dcl-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.dcl-card--no-hover:hover { transform: none; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.dcl-card__img { height: 220px; overflow: hidden; }
.dcl-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dcl-card:hover .dcl-card__img img { transform: scale(1.06); }
.dcl-card__img--greeting { height: 360px; border-radius: 16px; }
.dcl-card__img--greeting img { object-position: center 32%; }
.dcl-card__img--company-menu {
  height: 200px;
}
.dcl-card__img--service-link { height: 180px; }
.dcl-card__img--inline-card {
  height: 170px;
  margin: 12px 0 16px;
  border-radius: 12px;
}
.dcl-card__body .dcl-card__img--inline-card img { transform: none; }
.dcl-service-link-card { text-decoration: none; color: inherit; }
.dcl-service-links { align-items: stretch; }
.dcl-service-link-card .dcl-card__body { display: flex; flex-direction: column; gap: 0; padding: 24px; }
.dcl-service-link-card .dcl-card__body h3 {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.dcl-service-link-card .dcl-card__body p {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
}
.dcl-service-link-card__more {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}
.dcl-card__img--film-variation { height: 150px; background: #edf1f5; }
.dcl-card__img--film-variation img { object-fit: cover; }
.dcl-card:hover .dcl-card__img--film-variation img { transform: none; }
.dcl-film-principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dcl-film-principles__item {
  border-radius: 12px;
  overflow: hidden;
  background: #f6f8fb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dcl-film-principles__item img {
  width: 100%;
  height: auto;
  display: block;
}
.dcl-card__icon { height: 200px; flex: 0 0 200px; display: flex; align-items: center; justify-content: center; }
.dcl-card__icon--blue { background: linear-gradient(135deg,var(--blue-dark),var(--secondary)); }
.dcl-card__icon--primary { background: linear-gradient(135deg,#153d6b,var(--primary)); }
.dcl-card__icon--dark { background: linear-gradient(135deg,var(--blue-dark),#153d6b); }
.dcl-card__icon--secondary { background: linear-gradient(135deg,var(--secondary),var(--primary)); }
.dcl-card__body { padding: 28px; }
.dcl-card__tag { font-size: 0.8rem; color: var(--primary); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px; }
.dcl-card__body h3 { font-family: 'Noto Serif JP',serif; font-size: 1.3rem; margin-bottom: 12px; }
.dcl-card__body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.dcl-card__body .dcl-card__link { margin-top: 16px; color: var(--primary); font-size: 0.9rem; font-weight: 600; }

/* Icon Box (for feature icons) */
.dcl-icon-box {
  width: 64px; height: 64px;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.dcl-icon-box--circle { border-radius: 50%; width: 72px; height: 72px; }
.dcl-icon-box svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Feature Block */
.dcl-feature { text-align: center; padding: 32px 20px; }
.dcl-feature h3 { font-family: 'Noto Serif JP',serif; font-size: 1.1rem; margin-bottom: 8px; }
.dcl-feature p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* Intro Text Block */
.dcl-intro { text-align: center; max-width: 800px; margin: 0 auto; }
.dcl-intro--lead { font-family: 'Noto Serif JP',serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); line-height: 1.6; margin-bottom: 24px; }
.dcl-intro--company-lead { font-size: 1.8rem; }
.dcl-intro p { font-size: 1rem; color: var(--text-light); line-height: 2; }
.dcl-intro.dcl-intro--company-lead p { font-size: 1.8rem; line-height: 1.6; color: var(--text); }
.dcl-intro.dcl-intro--company-lead p { display: inline-flex; flex-direction: column; align-items: center; }
.dcl-intro.dcl-intro--company-lead p span { display: block; }
.dcl-intro.dcl-intro--company-lead p span:first-child { transform: translateX(-0.08em); }

/* Highlight Box (dark gradient) */
.dcl-highlight-box {
  background: linear-gradient(135deg,var(--blue-dark),var(--secondary));
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}
.dcl-highlight-box h3 { font-family: 'Noto Serif JP',serif; font-size: 4rem; font-weight: 700; margin-bottom: 12px; }
.dcl-highlight-box h3 span { font-size: 2rem; }
.dcl-highlight-box p { font-size: 1rem; color: #ffffff !important; opacity: 1 !important; max-width: 640px; margin: 0 auto; line-height: 2; }
.dcl-highlight-box * { color: #ffffff !important; }

/* Split layout: 左に図、右にテキスト+チェックリスト */
.dcl-highlight-box--split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.dcl-highlight-box--split .dcl-highlight-box__visual img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}
.dcl-highlight-box--split .dcl-big-num {
  font-size: 3.6rem;
  margin-bottom: 4px;
  line-height: 1;
}
.dcl-highlight-box--split h3 {
  font-size: 1.8rem !important;
  margin-bottom: 14px;
  line-height: 1.4;
}
.dcl-highlight-box--split p {
  max-width: none !important;
  margin: 0 0 20px !important;
  text-align: left;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
}
.dcl-highlight-box--split .dcl-checklist {
  text-align: left;
  margin: 0;
}
.dcl-highlight-box--split .dcl-checklist li {
  font-size: 0.92rem;
  padding: 6px 0;
  align-items: flex-start;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .dcl-highlight-box--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dcl-highlight-box--split .dcl-highlight-box__visual img { max-width: 320px; }
  .dcl-highlight-box--split .dcl-big-num { font-size: 2.8rem; text-align: center; }
  .dcl-highlight-box--split h3 { font-size: 1.5rem !important; text-align: center; }
}

/* Stat Bar (dark gradient row of numbers) */
.dcl-stat-bar {
  background: linear-gradient(135deg,var(--blue-dark),var(--secondary));
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
  display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 24px;
}
.dcl-stat-bar__item .stat-num,
.dcl-stat-bar__item .stat-num .count-up {
  color: var(--white);
  font-family: 'Noto Serif JP',serif;
  font-size: 3rem;
  font-weight: 700;
}
.dcl-stat-bar__item .stat-unit {
  color: rgba(255,255,255,0.96);
  font-size: 1.2rem;
}
.dcl-stat-bar__item .stat-label {
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  opacity: 1;
  margin-top: 4px;
}

/* Info Table (company overview style) */
.dcl-info-table { width: 100%; border-collapse: collapse; }
.dcl-info-table th, .dcl-info-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid #e0e0e0; font-size: 0.95rem; }
.dcl-info-table th { width: 180px; font-weight: 700; color: var(--text); background: var(--gray-bg); white-space: nowrap; }
.dcl-info-table td { color: #444; line-height: 1.8; }

/* Data Table (blue header) */
.dcl-data-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.dcl-data-table th, .dcl-data-table td { padding: 14px 20px; text-align: left; font-size: 0.92rem; }
.dcl-data-table thead th { background: linear-gradient(135deg,var(--blue-dark),var(--secondary)); color: var(--white); font-weight: 700; font-family: 'Noto Serif JP',serif; font-size: 0.9rem; }
.dcl-data-table tbody tr { border-bottom: 1px solid #eee; transition: background 0.2s; }
.dcl-data-table tbody tr:nth-child(even) { background: var(--gray-bg); }
.dcl-data-table tbody tr:hover { background: #eef4ff; }
.dcl-data-table tbody td { color: var(--text-light); line-height: 1.6; }
.dcl-data-table .name-cell { font-weight: 700; color: var(--text); white-space: nowrap; }

/* Timeline */
.dcl-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.dcl-timeline::before { content: ''; position: absolute; left: 180px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom,var(--primary),var(--secondary)); border-radius: 2px; }
.dcl-tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.dcl-tl-item.visible { opacity: 1; transform: translateX(0); }
.dcl-tl-year { width: 160px; min-width: 160px; flex-shrink: 0; text-align: right; padding-right: 28px; font-family: 'Noto Serif JP',serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); padding-top: 4px; white-space: nowrap; }
.dcl-tl-dot { width: 16px; height: 16px; background: var(--primary); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px var(--primary); flex-shrink: 0; margin-top: 6px; z-index: 1; }
.dcl-tl-content { flex: 1; padding-left: 28px; }
.dcl-tl-content h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.dcl-tl-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.dcl-tl-item.highlight .dcl-tl-content { background: #f0f6ff; border-radius: 12px; padding: 20px 24px; margin-left: 16px; }
.dcl-philosophy-image { margin-top: 18px; }
.dcl-philosophy-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  border: 1px solid rgba(1,71,157,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Side-by-side layout (text + media) */
.dcl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.dcl-split p { font-size: 1.05rem; color: var(--text); line-height: 2.2; margin-bottom: 20px; }
.dcl-split .dcl-highlight-box p { color: var(--white); }
.dcl-split img { width: 100%; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.dcl-split__visual { width: 100%; }
.dcl-material-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.dcl-material-chips span { display:inline-block; padding:7px 12px; border-radius:999px; background:#eef5ff; color:var(--primary); font-size:0.85rem; font-weight:700; }
.dcl-card__img--insert-app { height: 180px; margin-top: 4px; }
.dcl-extrusion-lead {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}
.dcl-extrusion-lead .dcl-lead {
  font-size: 1.18rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 14px;
}
.dcl-extrusion-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.dcl-extrusion-point {
  padding: 24px 22px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  border: 1px solid #d8e3f0;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(16, 39, 69, 0.06);
}
.dcl-extrusion-point__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
}
.dcl-extrusion-point h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}
.dcl-extrusion-point p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
}
.dcl-extrusion-overview {
  margin-bottom: 42px;
  padding: 28px;
  background: #f8fbff;
  border: 1px solid #dce6f3;
  border-radius: 20px;
}
.dcl-extrusion-flow-wrap {
  margin-bottom: 26px;
}
.dcl-extrusion-flow-title {
  margin-bottom: 18px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}
.dcl-extrusion-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
.dcl-extrusion-flow__step {
  flex: 1 1 0;
  min-width: 0;
  padding: 20px 14px;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16, 39, 69, 0.06);
}
.dcl-extrusion-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.dcl-extrusion-flow__step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}
.dcl-extrusion-flow__step p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
}
.dcl-extrusion-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}
.dcl-extrusion-figure {
  margin: 4px 0 24px;
}
.dcl-extrusion-detail__body p {
  font-size: 1.02rem;
  line-height: 2.05;
  color: var(--text);
  margin-bottom: 18px;
}
.dcl-material-table {
  margin-top: 36px;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(16, 39, 69, 0.07);
}
.dcl-material-table__header {
  margin-bottom: 18px;
}
.dcl-material-table__header h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  color: var(--text);
}
.dcl-material-table__wrap {
  overflow-x: auto;
}
.dcl-material-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--white);
}
.dcl-material-table th,
.dcl-material-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #d9e3f0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  vertical-align: middle;
}
.dcl-material-table th {
  background: #edf4fb;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
}
.dcl-material-table tbody tr:last-child td {
  border-bottom: none;
}
.dcl-material-table td:first-child {
  font-weight: 700;
  white-space: nowrap;
}
.dcl-material-table__notes {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.dcl-material-table__notes li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
}
.dcl-material-table__notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateY(-50%);
}
.dcl-double-lead {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}
.dcl-double-lead .dcl-lead {
  font-size: 1.18rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 14px;
}
.dcl-double-overview {
  display: block;
}
.dcl-double-overview__body {
  padding: 26px;
  background: #f8fbff;
  border: 1px solid #dce6f3;
  border-radius: 20px;
}
.dcl-double-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.dcl-double-compare__card {
  padding: 22px 18px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 39, 69, 0.06);
}
.dcl-double-compare__card--accent {
  border: 1px solid rgba(1, 71, 157, 0.12);
}
.dcl-double-compare__card h3 {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 12px;
  color: var(--text);
}
.dcl-double-compare__card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-light);
}
.dcl-double-compare__image {
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef3f8;
}
.dcl-double-compare__image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  background: #f4f8fc;
}
.dcl-double-tech {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}
.dcl-double-tech__summary {
  display: grid;
  gap: 18px;
}
.dcl-double-tech__stat,
.dcl-double-tech__card,
.dcl-color-card {
  padding: 22px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 39, 69, 0.06);
}
.dcl-double-tech__label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.dcl-double-tech__value {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}
.dcl-double-tech__value span {
  font-size: 1.3rem;
}
.dcl-double-tech__stat p,
.dcl-double-tech__card p,
.dcl-color-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-light);
}
.dcl-double-tech__card h4,
.dcl-color-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text);
}
.dcl-double-tech__detail h3 {
  margin-bottom: 12px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
}
.dcl-double-tech__detail p {
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--text);
}
.dcl-color-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}
.dcl-color-layout__main {
  padding: 26px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 39, 69, 0.06);
}
.dcl-color-layout__main p {
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--text);
}
.dcl-color-layout__cards {
  display: grid;
  gap: 18px;
}
.dcl-color-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.dcl-color-systems span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf4fb;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}
.dcl-app-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.dcl-app-card__head h4 {
  margin: 0;
}
.dcl-app-card__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #edf4fb;
  border-radius: 10px;
}
.dcl-app-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Step Badge */
.dcl-step-badge { display: inline-block; background: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.dcl-step-num { width: 48px; height: 48px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-family: 'Noto Serif JP',serif; font-size: 1.2rem; }
.dcl-big-num { font-family: 'Noto Serif JP',serif; font-size: 3rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.dcl-highlight-box .dcl-big-num { color: var(--white); }
.dcl-highlight-box .dcl-big-num span { color: var(--white); }

/* Checklist */
.dcl-checklist { list-style: none; padding: 0; }
.dcl-checklist li { padding: 8px 0; font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.dcl-checklist li::before { content: '\2713'; color: var(--primary); font-weight: 700; }
.dcl-highlight-box .dcl-checklist li { color: var(--white); }
.dcl-highlight-box .dcl-checklist li::before { color: rgba(255,255,255,0.7); }
.dcl-highlight-box h4 { color: var(--white); }
.dcl-highlight-box div { color: var(--white); }
.dcl-highlight-box .dcl-big-num { color: var(--white); }
.dcl-highlight-box .dcl-intro--lead { color: var(--white); }
.dcl-highlight-box .dcl-intro p { color: rgba(255,255,255,0.9); }
.dcl-highlight-box strong { color: var(--white); }
.dcl-highlight-box .dcl-card { background: rgba(255,255,255,0.1); }
.dcl-highlight-box .dcl-card h3 { color: var(--white); }
.dcl-highlight-box .dcl-card p { color: rgba(255,255,255,0.8); }
.dcl-arrow-list { list-style: none; padding: 0; }
.dcl-arrow-list li { padding: 6px 0; font-size: 0.85rem; color: #444; display: flex; align-items: center; gap: 8px; }
.dcl-arrow-list li::before { content: '\25B6'; color: var(--primary); font-size: 0.6em; }
.dcl-inline-photo {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f8fb;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.dcl-inline-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.dcl-secondary-intro .dcl-lead {
  font-size: 1.15rem;
  line-height: 1.95;
  color: var(--text);
  font-weight: 500;
}
.dcl-secondary-benefits { margin-top: 20px; }
.dcl-secondary-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.dcl-secondary-diagram__item {
  padding: 24px 18px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  border: 1px solid #d9e3f0;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.dcl-secondary-diagram__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.dcl-secondary-diagram__item h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.dcl-secondary-diagram__item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-light);
}
.dcl-secondary-diagram__arrow {
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
}
.dcl-processing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.dcl-processing-head h3 { margin-bottom: 0; }
.dcl-processing-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.dcl-processing-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 768px) {
  .dcl-secondary-diagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dcl-secondary-diagram__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
  .dcl-extrusion-points {
    grid-template-columns: 1fr;
  }
  .dcl-extrusion-flow {
    flex-wrap: wrap;
    gap: 12px;
  }
  .dcl-extrusion-flow__step {
    flex: 1 1 calc(50% - 12px);
  }
  .dcl-extrusion-flow__arrow {
    display: none;
  }
  .dcl-material-table {
    padding: 22px 18px;
  }
  .dcl-extrusion-overview {
    padding: 20px 16px;
  }
  .dcl-double-overview__body {
    padding: 20px 16px;
  }
  .dcl-double-compare {
    grid-template-columns: 1fr;
  }
  .dcl-double-tech,
  .dcl-color-layout {
    grid-template-columns: 1fr;
  }
  .dcl-color-layout__main {
    padding: 20px 16px;
  }
}

/* Comparison Cards */
.dcl-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.dcl-compare__before { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.dcl-compare__after { background: var(--primary); border-radius: 16px; padding: 32px; color: var(--white); }
.dcl-compare__after .dcl-card__tag { color: rgba(255,255,255,0.92); }
.dcl-inline-title { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.dcl-inline-title h3, .dcl-inline-title h4 { margin-bottom:0; }
.dcl-inline-title__icon { width:24px; height:24px; flex:0 0 24px; color: var(--primary); opacity: 0.9; }
.dcl-inline-title__icon svg { width:100%; height:100%; display:block; }

/* Pill Badge */
.dcl-pill { display: inline-block; background: var(--primary); color: var(--white); font-size: 0.7rem; padding: 2px 8px; border-radius: 3px; margin-top: 4px; }

/* Contact Form */
.dcl-form { max-width: 700px; margin: 0 auto; }
.dcl-form-group { margin-bottom: 24px; }
.dcl-form-group label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.dcl-form-group .required { color: #e53e3e; font-size: 0.8rem; margin-left: 6px; }
.dcl-form-group input[type="text"],
.dcl-form-group input[type="email"],
.dcl-form-group input[type="tel"],
.dcl-form-group input[type="url"],
.dcl-form-group input[type="number"],
.dcl-form-group select,
.dcl-form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #d0d0d0; border-radius: 8px;
  font-size: 0.95rem; font-family: 'Noto Sans JP',sans-serif; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--white);
}
.dcl-form-group input:focus, .dcl-form-group select:focus, .dcl-form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,99,239,0.1);
}
.dcl-form-group textarea { min-height: 180px; resize: vertical; }
.dcl-form-submit {
  text-align: center;
  margin-top: 24px;
}
.dcl-form-submit button {
  display: inline-block; background: var(--primary); color: var(--white); padding: 16px 56px;
  border: none; border-radius: 8px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.25s, transform 0.25s;
  font-family: 'Noto Sans JP',sans-serif;
}
.dcl-form-submit button:hover { background: #004fc7; transform: translateY(-2px); }

/* Privacy Content */
.dcl-prose { max-width: 800px; margin: 0 auto; }
.dcl-prose h2 { font-family: 'Noto Serif JP',serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 1px solid #e0e0e0; }
.dcl-prose h2:first-child { margin-top: 0; }
.dcl-prose p { font-size: 0.95rem; color: var(--text-light); line-height: 2; margin-bottom: 12px; }
.dcl-prose ol, .dcl-prose ul { padding-left: 24px; margin: 12px 0 20px; }
.dcl-prose li { font-size: 0.95rem; color: var(--text-light); line-height: 2; margin-bottom: 4px; }

/* Equipment Card */
.dcl-equip-card {
  background: var(--white); border-radius: 12px; padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-left: 4px solid var(--primary);
}
.dcl-equip-card h4 { font-family: 'Noto Serif JP',serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.dcl-equip-card .spec { font-size: 0.88rem; color: #888; margin-bottom: 8px; }
.dcl-equip-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; margin: 0; }

/* Certification Card (quality page) */
.dcl-cert-card {
  background: var(--white); border-radius: 16px; padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); border-top: 4px solid var(--primary);
  transition: transform 0.3s;
}
.dcl-cert-card:hover { transform: translateY(-4px); }
.dcl-cert-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.dcl-cert-card__badge {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg,var(--blue-dark),var(--secondary));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dcl-cert-card__badge svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dcl-cert-card h3 { font-family: 'Noto Serif JP',serif; font-size: 1.2rem; font-weight: 700; }
.dcl-cert-card .meta { font-size: 0.82rem; color: #888; margin-top: 2px; }
.dcl-cert-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.9; }

/* Policy Box */
.dcl-policy-box {
  background: linear-gradient(135deg,var(--blue-dark),var(--secondary)); color: var(--white);
  border-radius: 20px; padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
}
.dcl-policy-box::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%,rgba(255,255,255,0.05) 0%,transparent 60%);
  pointer-events: none;
}
.dcl-policy-box h2 { font-family: 'Noto Serif JP',serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 24px; position: relative; }
.dcl-policy-box p { font-size: 1.15rem; line-height: 2.2; position: relative; opacity: 0.95; }
.dcl-policy-box .policy-lead { font-family: 'Noto Serif JP',serif; font-size: 1.5rem; font-weight: 700; margin: 8px 0 28px; position: relative; letter-spacing: 0.05em; }
.dcl-policy-box .policy-item { font-size: 1.1rem; line-height: 2.0; position: relative; opacity: 0.95; padding: 0 12px; }
.dcl-policy-box .policy-num { display: inline-block; margin-right: 4px; font-weight: 700; }
.dcl-policy-box .policy-divider { height: 1px; background: rgba(255,255,255,0.25); margin: 24px auto; max-width: 300px; position: relative; }
.dcl-policy-box .policy-note { font-size: 0.95rem; opacity: 0.85; margin-top: 22px; position: relative; letter-spacing: 0.02em; }

/* Contact カード: 中央揃え＋番号大きく */
.dcl-contact-card .dcl-card__body { text-align: center; padding: 36px 24px; }
.dcl-contact-card .dcl-icon-box {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.dcl-contact-card .dcl-contact-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 8px;
}
.dcl-contact-card .dcl-contact-num {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 4px 0 12px;
}
.dcl-contact-card a.dcl-contact-num:hover { opacity: 0.85; }
.dcl-contact-card .dcl-contact-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
@media (max-width: 768px) {
  .dcl-contact-card .dcl-contact-num { font-size: 1.9rem; }
}

/* フォーム送信結果フラッシュ */
.dcl-flash {
  padding: 14px 20px;
  border-radius: 8px;
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 4px solid;
}
.dcl-flash--ok   { background: #e8f5ee; color: #0b7a3e; border-left-color: #0b7a3e; }
.dcl-flash--warn { background: #fff8e1; color: #8a6d00; border-left-color: #e0a800; }
.dcl-flash--err  { background: #fdecec; color: #b21b1b; border-left-color: #b21b1b; }
.dcl-form-group .optional { display: inline-block; margin-left: 8px; padding: 2px 8px; background: #e8eef7; color: var(--primary); border-radius: 3px; font-size: 0.7rem; font-weight: 500; }
.dcl-form-note { display: block; margin-top: 6px; color: var(--text-light); font-size: 0.8rem; }
.dcl-form-group input[type="file"] { padding: 10px; background: #fafbfc; border: 1px dashed #c4cdd8; border-radius: 6px; width: 100%; box-sizing: border-box; }

/* 送信完了フラッシュ: ヒーロー直下で大きく表示（スクロール不要の位置） */
.dcl-hero-flash {
  padding: 32px 20px;
  margin: 0;
  position: relative;
}
.dcl-hero-flash__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.dcl-hero-flash__icon { flex-shrink: 0; }
.dcl-hero-flash__body h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
}
.dcl-hero-flash__body p { font-size: 0.95rem; line-height: 1.8; margin: 0; }
.dcl-hero-flash--ok {
  background: linear-gradient(135deg, #e8f5ee 0%, #d3ebdc 100%);
  border-top: 4px solid #0b7a3e;
  border-bottom: 1px solid #a8d5bd;
  color: #0b5a2e;
}
.dcl-hero-flash--ok .dcl-hero-flash__icon { color: #0b7a3e; }
.dcl-hero-flash--warn {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-top: 4px solid #c77700;
  border-bottom: 1px solid #f1c87a;
  color: #7a4d00;
}
.dcl-hero-flash--warn .dcl-hero-flash__icon { color: #c77700; }
@media (max-width: 768px) {
  .dcl-hero-flash__inner { flex-direction: column; text-align: center; gap: 12px; }
  .dcl-hero-flash__body h2 { font-size: 1.2rem; }
}

/* Compliance Card */
.dcl-compliance-card {
  background: var(--gray-bg); border-radius: 12px; padding: 32px; border-left: 4px solid var(--primary);
}
.dcl-compliance-card h4 { font-family: 'Noto Serif JP',serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.dcl-compliance-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.9; margin-bottom: 8px; }

/* Inspect Card */
.dcl-inspect-card {
  background: var(--white); border-radius: 12px; padding: 32px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-top: 4px solid var(--primary);
}
.dcl-inspect-card h4 { font-family: 'Noto Serif JP',serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.dcl-inspect-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }

/* Works Detail */
.dcl-works-detail { max-width: 900px; margin: 0 auto; }
.dcl-works-detail h2 {
  font-family: 'Noto Serif JP',serif; font-size: 1.8rem; font-weight: 700;
  margin-bottom: 20px; color: var(--text); padding-bottom: 16px; border-bottom: 2px solid var(--primary);
}
.dcl-works-detail h3 {
  font-family: 'Noto Serif JP',serif; font-size: 1.3rem; font-weight: 700;
  margin: 40px 0 16px; color: var(--text);
}
.dcl-works-detail p { font-size: 1rem; color: var(--text-light); line-height: 2; margin-bottom: 16px; }
.dcl-works-detail-img {
  width: 100%; max-height: 480px; object-fit: cover; border-radius: 16px;
  margin-bottom: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.dcl-tech-point {
  background: var(--gray-bg); border-radius: 12px; padding: 32px; margin: 24px 0;
  border-left: 4px solid var(--primary);
}
.dcl-tech-point h4 { font-family: 'Noto Serif JP',serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.dcl-tech-point p { margin-bottom: 8px; }

/* Perf Grid */
.dcl-perf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 32px 0; }
.dcl-perf-item {
  background: var(--white); border-radius: 12px; padding: 32px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-top: 4px solid var(--primary);
}
.dcl-perf-item h4 { font-family: 'Noto Serif JP',serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.dcl-perf-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* Related Works Grid */
.dcl-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.dcl-related-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s; }
.dcl-related-card:hover { transform: translateY(-4px); }
.dcl-related-card img { width: 100%; height: 160px; object-fit: cover; }
.dcl-related-card__body { padding: 16px; }
.dcl-related-card__body .tag { font-size: 0.7rem; color: var(--primary); font-weight: 700; }
.dcl-related-card__body h4 { font-size: 0.95rem; font-weight: 700; margin: 6px 0; color: var(--text); }
.dcl-related-card__body a { font-size: 0.85rem; color: var(--primary); font-weight: 600; text-decoration: none; }
.dcl-related-card__body a:hover { text-decoration: underline; }

/* Works Filter (works list page) */
.dcl-filter-bar { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.dcl-filter-btn {
  padding: 10px 28px; border-radius: 100px; border: 1px solid #d0d0d0; background: var(--white);
  font-size: 0.9rem; font-weight: 500; cursor: pointer; color: var(--text-light);
  transition: all 0.25s; font-family: 'Noto Sans JP',sans-serif;
}
.dcl-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.dcl-filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Equipment Section Title */
.dcl-equip-title { display: flex; align-items: center; gap: 12px; font-family: 'Noto Serif JP',serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.dcl-equip-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg,var(--blue-dark),var(--secondary));
  display: flex; align-items: center; justify-content: center;
}
.dcl-equip-icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Film type swatch */
.dcl-swatch { width: 72px; height: 72px; border-radius: 12px; margin: 0 auto 14px; }

/* Quote block (for greeting/voice) */
.dcl-quote {
  font-family: 'Noto Serif JP',serif; font-size: 1.8rem; font-weight: 700;
  color: var(--primary); line-height: 1.6; letter-spacing: 0.04em; text-align: center; margin-bottom: 24px;
}
.dcl-signature { text-align: right; padding: 32px 0; border-top: 1px solid #e0e0e0; }
.dcl-signature .company { font-size: 0.9rem; color: var(--text-light); margin-bottom: 8px; }
.dcl-signature .name { font-family: 'Noto Serif JP',serif; font-size: 1.4rem; font-weight: 700; color: var(--text); }

/* Greeting h3 subheading */
.dcl-sub-heading { font-family: 'Noto Serif JP',serif; font-size: 1.2rem; color: var(--primary); margin: 40px 0 16px; }

/* Message Blocks (代表挨拶用カード) */
.dcl-message-blocks { display: flex; flex-direction: column; gap: 32px; margin: 48px 0; }
.dcl-message-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 32px 36px;
  background: #f7faff;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(10,22,40,0.04);
}
.dcl-message-block__num {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.02em;
}
.dcl-message-block__body h3 {
  font-family: 'Noto Serif JP', serif;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.5;
}
.dcl-message-block__body p {
  line-height: 1.95;
  margin: 0 0 14px;
  color: var(--text);
  text-align: left;
}
.dcl-message-block__link {
  margin-top: 6px;
}
.dcl-message-block__link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #0a4fa6;
  color: #0a4fa6;
  font-weight: 700;
  text-decoration: none;
}
.dcl-message-block__link a:hover {
  background: #eef5ff;
  text-decoration: none;
}
.dcl-message-block__body p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .dcl-card__img--greeting {
    height: auto;
    background: #f4f7fb;
  }
  .dcl-card__img--greeting img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center center;
  }
  .dcl-message-block {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 20px;
  }
  .dcl-message-block__num { font-size: 2.2rem; margin-bottom: 4px; }
  .dcl-message-block__body h3 { font-size: 1.1rem; }
}

/* カード内に内包する Philosophy Box の調整（3つ独立カード） */
.dcl-philosophy-box--inline {
  margin: 20px 0 22px;
  padding: 0;
  background: transparent;
}
.dcl-philosophy-box--inline .dcl-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dcl-philosophy-box--inline .dcl-grid-3 > div {
  background: #ffffff;
  border: 1px solid #dde6f1;
  border-top: 3px solid var(--primary);
  border-radius: 8px;
  padding: 24px 20px 22px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(10,22,40,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dcl-philosophy-box--inline .dcl-grid-3 > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(10,22,40,0.08);
}
.dcl-philosophy-box--inline h4 {
  font-family: 'Noto Serif JP', serif;
  color: var(--primary);
  font-size: 1.15rem;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.dcl-philosophy-box--inline p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
}
@media (max-width: 768px) {
  .dcl-philosophy-box--inline .dcl-grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .dcl-philosophy-box--inline .dcl-grid-3 > div { padding: 18px 16px; }
}

/* 3A philosophy box */
.dcl-philosophy-box { background: var(--gray-bg); border-radius: 12px; padding: 32px; margin-bottom: 32px; }

/* Map container */
.dcl-map { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.dcl-map iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .dcl-grid-4 { grid-template-columns: repeat(2,1fr); }
  .dcl-grid-5 { grid-template-columns: repeat(3,1fr); }
  .dcl-stat-bar { flex-direction: column; padding: 32px 24px; }
}
@media (max-width: 768px) {
  .dcl-grid-2 { grid-template-columns: 1fr; }
  .dcl-grid-3 { grid-template-columns: 1fr; }
  .dcl-grid-4 { grid-template-columns: 1fr; }
  .dcl-grid-5 { grid-template-columns: repeat(2,1fr); }
  .dcl-split { grid-template-columns: 1fr; }
  .dcl-compare { grid-template-columns: 1fr; }
  .dcl-info-table th, .dcl-info-table td { display: block; width: 100%; padding: 12px 16px; }
  .dcl-info-table th { border-bottom: none; padding-bottom: 4px; }
  .dcl-timeline::before { left: 20px; }
  .dcl-tl-year { width: auto; text-align: left; padding-right: 0; font-size: 0.95rem; position: absolute; top: -24px; left: 40px; }
  .dcl-tl-item { padding-left: 0; padding-top: 28px; flex-wrap: wrap; }
  .dcl-tl-dot { position: absolute; left: 12px; top: 32px; }
  .dcl-tl-content { padding-left: 48px; width: 100%; }
  .dcl-perf-grid { grid-template-columns: 1fr; }
  .dcl-related-grid { grid-template-columns: 1fr; }
  .dcl-data-table { font-size: 0.82rem; }
  .dcl-data-table th, .dcl-data-table td { padding: 10px 12px; }
  .dcl-policy-box { padding: 40px 24px; }
  .dcl-policy-box h2 { font-size: 1.4rem; }
  .dcl-equip-title { font-size: 1.3rem; }
  .dcl-works-detail h2 { font-size: 1.4rem; }
  .dcl-quote { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .dcl-grid-5 { grid-template-columns: 1fr; }
  .dcl-stat-bar__item .stat-num { font-size: 2.2rem; }
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .num-item .num-value { font-size: 72px; }
  .num-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .numbers-bar__inner { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .numbers-bar__item .nb-value { font-size: 2.45rem; }
  .numbers-bar__item .nb-label { font-size: 0.78rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .dcl-header__nav { display: none; }
  .dcl-header__actions { display: none; }
  .dcl-header__hamburger { display: flex; }
  .dcl-header__nav.active {
    display: block;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 999;
    padding: 40px 20px;
    overflow-y: auto;
  }
  .dcl-header__nav.active ul {
    flex-direction: column;
    gap: 0;
  }
  .dcl-mobile-only { display: list-item; }
  .dcl-header__nav.active a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--text);
    border-bottom: 1px solid #eee;
  }

  .hero-slider { height: 60vh; min-height: 350px; }
  .hero-slider__catch { font-size: 2rem; }

  .page-hero { padding: 100px 20px 60px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero .hero-num { font-size: 3.5rem; }

  .section { padding: 64px 20px; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.6rem; }

  .num-grid, .num-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .num-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .num-item .num-value { font-size: 64px; }
  .num-item .num-unit { font-size: 22px; }

  .highlight-row { grid-template-columns: 1fr; }
  .chart-layout { grid-template-columns: 1fr; gap: 40px; }
  .award-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .cert-grid { grid-template-columns: 1fr; }

  .tech-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .flow-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .flow-steps--nowrap {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .flow-steps--nowrap .flow-step {
    flex: 0 0 220px;
    min-width: 220px;
    max-width: 220px;
  }
  .flow-steps--nowrap .flow-step__arrow { display: block; }
  .flow-step__arrow { display: none; }
  .flow-step {
    flex: none;
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .merit-cards { grid-template-columns: 1fr; }
  .senior-grid { grid-template-columns: 1fr; }
  .job-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .marquee-label { width: 100px; font-size: 0.7rem; }
  .marquee-track-wrapper { padding-left: 100px; }
  .marquee-item { width: 120px; height: 120px; padding: 12px; }

  .dcl-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .dcl-footer__logo { margin: 0 auto 16px; }

  .mobile-fixed-cta { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 900px) {
  .flow-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-steps--nowrap {
    display: flex;
    grid-template-columns: none;
  }
}

@media (max-width: 680px) {
  .tech-cards { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps--nowrap {
    display: flex;
  }
  .flow-steps--nowrap .flow-step {
    flex-basis: 185px;
    min-width: 185px;
    max-width: 185px;
  }

  .numbers-bar__inner { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .numbers-bar__item .nb-value { font-size: 1.9rem; }
  .numbers-bar__item .nb-unit { font-size: 0.82rem; }
  .numbers-bar__item .nb-label { font-size: 0.68rem; line-height: 1.45; }
}

@media (max-width: 560px) {
  .numbers-bar__inner { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .numbers-bar__item .nb-value { font-size: 1.58rem; }
  .numbers-bar__item .nb-unit { font-size: 0.72rem; }
  .numbers-bar__item .nb-label { font-size: 0.64rem; line-height: 1.4; }
}

@media (max-width: 480px) {
  .hero-slider__catch { font-size: 1.6rem; }
  .numbers-bar__inner { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .numbers-bar__item .nb-value { font-size: 1.38rem; }
  .numbers-bar__item .nb-unit { font-size: 0.68rem; }
  .numbers-bar__item .nb-label { font-size: 0.58rem; line-height: 1.4; }

  .num-grid, .num-grid-2, .num-grid-4 { grid-template-columns: 1fr; gap: 40px; }
  .num-item .num-value { font-size: 80px; }
  .section-header h2 { font-size: 1.5rem; }
  .highlight-card .card-value { font-size: 40px; }

  .marquee-label { width: 72px; font-size: 0.6rem; padding-right: 10px; }
  .marquee-track-wrapper { padding-left: 72px; }
  .marquee-item { width: 100px; height: 100px; padding: 10px; }

  .works-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  .mission-section h2 { font-size: 1.6rem; }
}

@media (max-width: 380px) {
  .numbers-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .numbers-bar__item .nb-value { font-size: 1.9rem; }
  .numbers-bar__item .nb-unit { font-size: 0.82rem; }
  .numbers-bar__item .nb-label { font-size: 0.7rem; }
}
