/*
Theme Name: Aurant Technologies
Theme URI: 
Description: AI×データ統合×コンサルティング企業向け 1ページ型コーポレートサイトテーマ
Version: 1.0
Author: Custom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurant-technologies
*/

/* ========================================
   CSS Variables（hp-main参考・Aurant Technologies）
   ======================================== */
:root {
  /* 3色パレット：オレンジ・グレー・白 */
  --color-accent: #f97316;
  --color-accent-dark: #ea580c;
  --color-text: #334155;
  --color-muted: #475569;
  --color-border: #cbd5e1;
  /* 互換用（オレンジ基調） */
  --flow-step1: #475569;
  --flow-step1-bg: #f8fafc;
  --flow-step1-border: #cbd5e1;
  --flow-step2: #f97316;
  --flow-step2-bg: #fff7ed;
  --flow-step2-border: #fed7aa;
  --flow-step3: #f97316;
  --flow-step3-bg: #fff7ed;
  --flow-step3-border: #fed7aa;
  --flow-step4: #ea580c;
  --flow-step4-bg: #fff7ed;
  --flow-step4-grad: linear-gradient(135deg, #f97316, #ea580c);
  /* 既存パレット */
  --aurant-navy-950: #0a0a0a;
  --aurant-navy-900: #141414;
  --aurant-navy-800: #1a1a1a;
  --aurant-navy-700: #262626;
  --aurant-blue-500: #f97316;
  --aurant-blue-200: #fed7aa;
  --aurant-orange-500: #f97316;
  --aurant-gray-050: #f8fafc;
  --aurant-gray-100: #e2e8f0;
  --aurant-gray-300: #cbd5e1;
  --aurant-gray-500: #64748b;
  --theme-color: var(--color-accent);
  --theme-color-dark: #ea580c;
  --bg-color: var(--aurant-gray-050);
  --text-color: #334155;
  --text-muted: var(--aurant-gray-500);
  --white: #ffffff;
  --border-color: var(--aurant-gray-100);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius-md: 12px;
  --radius-lg: 18px;
}

/* ========================================
   Reset & Base
   ======================================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  background:
    repeating-linear-gradient(to right, rgba(8, 20, 40, 0.02) 0, rgba(8, 20, 40, 0.02) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(to bottom, rgba(8, 20, 40, 0.02) 0, rgba(8, 20, 40, 0.02) 1px, transparent 1px, transparent 56px),
    var(--bg-color);
  line-height: 1.8;
  font-feature-settings: "palt" 1;
}
a {
  color: var(--theme-color);
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
  height: auto;
}

/* PC/SP 表示切替（Growin風） */
@media (max-width: 768px) {
  .pc_only { display: none !important; }
}
@media (min-width: 769px) {
  .sp_only { display: none !important; }
}

/* ========================================
   Layout - Section共通
   ======================================== */
.site-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--aurant-orange-500);
  margin-bottom: 16px;
  line-height: 1.6;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin: -4px 0 20px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  margin: 0 0 48px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.section-cta {
  margin: 32px 0 0;
  text-align: center;
}
.section-cta-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.section-cta-link:hover {
  opacity: 0.85;
}
.section-cta-link--light {
  color: var(--white);
  opacity: 0.9;
}
.section-cta-link--light:hover {
  color: var(--white);
  opacity: 1;
}
@media (max-width: 768px) {
  .site-section {
    padding: 72px 16px;
  }
  .section-label {
    font-size: 11px;
    letter-spacing: 0.15em;
  }
  .section-title {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .section-cta {
    margin-top: 24px;
  }
}

/* ========================================
   Header（hp-main参考）
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-header .header-inner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.site-header .site-branding {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
}
.site-header .site-branding a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-header .site-branding a:hover {
  opacity: 0.8;
}
.site-header .site-nav {
  flex-shrink: 1;
  min-width: 0;
}
.site-header .nav-list,
body.aurant .site-header .nav-list {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 0 24px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-direction: row;
  align-items: center;
}
.site-header .nav-list li,
body.aurant .site-header .nav-list li {
  margin: 0 !important;
  list-style: none !important;
}
.site-header .btn-contact {
  display: inline-block;
  padding: 10px 24px;
  background: var(--aurant-orange-500);
  color: #2b1a0b !important;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  transition: all 0.2s;
}
.site-header .btn-contact:hover {
  opacity: 0.9;
  color: #2b1a0b !important;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-nav {
  display: block !important;
  font-size: 13px;
}
.site-nav .nav-list {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 24px;
}
.site-nav a {
  color: var(--text-color);
  display: inline-block;
  transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1), transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.site-nav a:hover {
  color: var(--theme-color);
  transform: translateX(4px);
}
/* モバイルメニュートグルボタン */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1003;
  position: relative;
}
.mobile-menu-toggle__bar {
  width: 100%;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  .site-header .header-inner .container {
    flex-wrap: wrap;
    position: relative;
  }
  .site-header .site-branding {
    order: 1;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    left: auto;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
    box-shadow: -4px 0 16px rgba(0,0,0,0.15);
    padding-top: 60px;
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .site-header .site-nav .nav-list,
  body.aurant .site-header .site-nav .nav-list {
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    padding: 26px 32px;
    gap: 0;
  }
  .site-header .site-nav .nav-list li,
  body.aurant .site-header .site-nav .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  .site-header .site-nav .nav-list li:last-child,
  body.aurant .site-header .site-nav .nav-list li:last-child {
    border-bottom: none;
  }
  .site-header .site-nav .nav-list a,
  body.aurant .site-header .site-nav .nav-list a {
    display: block;
    padding: 16px 10px;
    font-size: 16px;
    color: var(--text-color);
    transform: none;
  }
  .site-header .site-nav .nav-list a:hover,
  body.aurant .site-header .site-nav .nav-list a:hover {
    transform: none;
  }
  .site-nav .nav-list .nav-cta {
    margin-top: 24px;
    border-top: 2px solid var(--color-accent);
    padding-top: 24px;
  }
  .site-nav .nav-list .btn-contact {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
  /* モバイルメニューオーバーレイ */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu-overlay.is-active {
    display: block;
    opacity: 1;
  }
  /* メニューオープン時のbody固定 */
  body.menu-open {
    overflow: hidden;
  }
}
/* サイトブランディングは上で定義済み */

/* ========================================
   Hero（Cursor エディタ風 / ダークグラデーション）
   ======================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to right, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 42px);
  pointer-events: none;
}
.hero-section > * {
  position: relative;
  z-index: 1;
}
.hero-catch {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}
.hero-statement {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 12px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(22px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 720px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero-title--top {
  margin-bottom: 28px;
  text-align: center;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 40px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .hero-br { display: block; }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.hero-cta {
  display: inline-block;
  padding: 18px 52px;
  background: var(--aurant-orange-500);
  color: #2b1a0b !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}
.hero-cta--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white) !important;
  box-shadow: none;
}
.hero-cta--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
}
.hero-cta:not(.hero-cta--outline):hover {
  opacity: 0.95;
  transform: translateY(-2px);
  color: #2b1a0b !important;
}

/* ----- ビジュアルエディター + BIダッシュボード ----- */
.hero-editor-bi-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 24px auto 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
}
.hero-editor-bi-arrow {
  align-self: center;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  animation: hero-arrow-pulse 2s ease-in-out infinite;
}
@keyframes hero-arrow-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 0.9; transform: translateX(4px); }
}
@media (max-width: 768px) {
  .hero-editor-bi-arrow { display: none; }
}
.hero-section--editor .hero-editor {
  flex: 1;
  min-width: 340px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bi-dashboard {
  flex: 1;
  min-width: 340px;
  max-width: 520px;
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  position: relative;
}
.hero-bi-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to right, rgba(255,255,255,0.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.04) 0 1px, transparent 1px 28px);
  pointer-events: none;
  opacity: 0.6;
}
.hero-bi-dashboard.hero-bi--hidden {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
.hero-bi-dashboard.hero-bi-reveal {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.hero-bi-titlebar {
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.95);
  font-size: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.hero-bi-filters {
  display: flex;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}
.hero-bi-content {
  padding: 14px 16px;
  max-height: 380px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}
/* BI右パネル：ステータスドット・プログレスバー（画像準拠） */
.hero-bi-main {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}
.hero-bi-table-wrap {
  flex: 1;
}
.hero-bi-right-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 72px;
  justify-content: center;
}
.hero-bi-status-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.hero-bi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hero-bi-dot--green { background: var(--color-accent); }
.hero-bi-dot--orange { background: var(--flow-step3); }
.hero-bi-indicator-bar {
  position: relative;
  width: 12px;
  height: 48px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  align-self: center;
}
.hero-bi-indicator-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: var(--color-accent);
  border-radius: 0 0 6px 6px;
}
.hero-bi-indicator-num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: #334155;
  z-index: 1;
}
.hero-bi-progress-panel {
  background: var(--white);
  border-radius: 6px;
  padding: 8px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.hero-bi-progress-bar--main {
  width: 100%;
  min-width: 56px;
}
.hero-bi-badge--done { background: #fff7ed; color: #c2410c; }
.hero-bi-badge--ok { background: #fff7ed; color: #ea580c; }
.hero-bi-badge--warn { background: #ffedd5; color: #c2410c; }
.hero-bi-badge--info { background: #fef3c7; color: #b45309; }
/* 棒グラフ・円グラフ */
.hero-bi-chart--bar .hero-bi-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  padding: 8px 0;
}
.hero-bi-chart--bar .hero-bi-bar-chart span {
  flex: 1;
  min-width: 8px;
  background: linear-gradient(180deg, #f97316, #ea580c);
  border-radius: 4px 4px 0 0;
}
.hero-bi-chart--pie {
  grid-column: span 1;
}
.hero-bi-pie-chart {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-bi-pie {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: conic-gradient(#f97316 0% calc(var(--p1)*1%), #ea580c calc(var(--p1)*1%) calc((var(--p1)+var(--p2))*1%), #c2410c calc((var(--p1)+var(--p2))*1%) calc((var(--p1)+var(--p2)+var(--p3))*1%), #64748b calc((var(--p1)+var(--p2)+var(--p3))*1%) 100%);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
  border: 2px solid rgba(255,255,255,0.9);
}
.hero-bi-pie-legend {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
  color: #1e293b;
}
.hero-bi-pie-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}
.hero-bi-summary {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.hero-bi-summary-card {
  flex: 1;
  min-width: 72px;
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.hero-bi-summary-card .hero-bi-label {
  display: block;
  font-size: 10px;
  color: #1e293b;
  margin-bottom: 4px;
  font-weight: 600;
}
.hero-bi-summary-card .hero-bi-value {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.02em;
}
.hero-bi-delta--pos {
  color: #ea580c !important;
  font-size: 10px;
}
.hero-bi-table-wrap {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-bi-table-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}
.hero-bi-table {
  width: 100%;
  font-size: 11px;
  border-collapse: collapse;
}
.hero-bi-table th, .hero-bi-table td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
}
.hero-bi-table th { background: #f1f5f9; font-weight: 700; color: #1e293b; }
.hero-bi-negative { color: #c0392b !important; }
.hero-bi-total td { font-weight: 700; background: #f1f5f9; }
.hero-bi-delta { display: block; font-size: 8px; color: var(--color-accent); font-weight: 600; margin-top: 2px; }
.hero-bi-kpi--1 .hero-bi-value { color: #475569; }
.hero-bi-kpi--2 .hero-bi-value { color: #ea580c; }
.hero-bi-kpi--3 .hero-bi-value { color: #ea580c; }
.hero-bi-kpi--4 .hero-bi-value { color: #c2410c; }
.hero-bi-badge { font-size: 9px; padding: 3px 8px; border-radius: 4px; font-weight: 600; }
.hero-bi-connection-list { display: flex; flex-direction: column; gap: 6px; }
.hero-bi-conn { font-size: 9px; display: flex; align-items: center; gap: 6px; }
.hero-bi-conn-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
.hero-bi-conn--warn .hero-bi-conn-dot { background: var(--flow-step3); }
.hero-bi-progress-bar { position: relative; height: 14px; background: #e2e8f0; border-radius: 7px; overflow: hidden; }
.hero-bi-progress-fill { height: 100%; background: var(--color-accent); border-radius: 7px; transition: width 0.5s; }
.hero-bi-progress-bar span { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 8px; font-weight: 700; color: #1e293b; }
.hero-bi-heat-row { display: flex; gap: 2px; height: 30px; align-items: flex-end; }
.hero-bi-heat-row span { flex: 1; min-width: 6px; background: var(--color-accent); border-radius: 2px; opacity: 0.6; }
.hero-bi-heat-row span:nth-child(1) { height: 40%; }
.hero-bi-heat-row span:nth-child(2) { height: 65%; }
.hero-bi-heat-row span:nth-child(3) { height: 50%; }
.hero-bi-heat-row span:nth-child(4) { height: 85%; }
.hero-bi-heat-row span:nth-child(5) { height: 70%; }
.hero-bi-heat-row span:nth-child(6) { height: 95%; }
.hero-bi-heat-row span:nth-child(7) { height: 55%; }
.hero-bi-heat-row span:nth-child(8) { height: 75%; }
.hero-bi-heat-row span:nth-child(9) { height: 60%; }
.hero-bi-side { display: flex; flex-direction: column; gap: 8px; }
.hero-bi-panel {
  background: var(--white);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.hero-bi-panel-title {
  font-size: 9px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-bi-bs-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-bi-bs-bar {
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 8px;
  color: #fff;
}
.hero-bi-bs--asset { background: var(--color-accent); }
.hero-bi-bs--liability { background: var(--color-accent-dark); }
.hero-bi-bs--equity { background: #64748b; }
.hero-bi-gauge {
  position: relative;
  height: 20px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.hero-bi-gauge-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 10px;
  transition: width 0.5s ease;
}
.hero-bi-gauge-value {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 7px;
  font-weight: 700;
  color: #333;
  text-shadow: 0 0 3px #fff;
  white-space: nowrap;
}
.hero-bi-charts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-bi-charts-row.hero-bi-charts--enhanced {
  grid-template-columns: repeat(2, 1fr);
}
.hero-bi-chart-panel {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(249, 115, 22, 0.12);
}
.hero-bi-chart-title {
  font-size: 10px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.hero-bi-combo-chart {
  position: relative;
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.hero-bi-stack-chart, .hero-bi-line-chart {
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.hero-bi-bar-group span, .hero-bi-stack-chart span {
  flex: 1;
  min-width: 4px;
  background: linear-gradient(180deg, var(--flow-step2), #ea580c);
  border-radius: 2px 2px 0 0;
}
.hero-bi-line-chart {
  position: relative;
  height: 40px;
}
.hero-bi-line-chart span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--flow-step4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* BIチャート演出強化（売上/営業利益・事業部毎・営業利益率） */
.hero-bi-charts--enhanced .hero-bi-chart-panel {
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hero-bi-chart-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  color: #334155;
  margin-bottom: 10px;
  font-weight: 600;
}
.hero-bi-legend-bar {
  display: inline-block;
  width: 12px;
  height: 10px;
  background: var(--flow-step2);
  border-radius: 2px;
  margin-right: 4px;
}
.hero-bi-legend-line {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--flow-step3);
  border-radius: 1px;
  margin-right: 4px;
}
.hero-bi-legend-stacked { gap: 8px; }
.hero-bi-legend-sq {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 2px;
  vertical-align: middle;
}
.hero-bi-chart--combo .hero-bi-combo-chart {
  height: 56px;
  position: relative;
  background: linear-gradient(180deg, #fef7ed 0%, #fff7ed 100%);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid rgba(249, 115, 22, 0.1);
}
.hero-bi-bar-group--combo { gap: 2px; }
.hero-bi-bar-group--combo span {
  background: linear-gradient(180deg, #f97316, #ea580c) !important;
  border-radius: 2px 2px 0 0;
}
.hero-bi-line-overlay {
  position: absolute;
  inset: 6px;
  top: 30%;
  bottom: 15%;
  left: 8%;
  right: 8%;
}
.hero-bi-line-overlay svg { width: 100%; height: 100%; }
.hero-bi-stacked-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 48px;
  justify-content: center;
}
.hero-bi-stack-row {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.hero-bi-stack-row span {
  height: 100%;
  transition: width 0.3s;
}
.hero-bi-chart--line .hero-bi-line-chart--enhanced {
  height: 48px;
  background: linear-gradient(180deg, #fef7ed 0%, #fff7ed 100%);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid rgba(249, 115, 22, 0.1);
}
.hero-bi-line-chart--enhanced svg { width: 100%; height: 100%; }
.hero-bi-axis-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #475569;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero-editor-bi-wrap {
    flex-direction: column;
    gap: 16px;
  }
  .hero-section--editor .hero-editor { max-width: 100%; min-width: 0; }
  .hero-editor-activitybar { display: none; }
  .hero-editor-sidebar { display: none; }
  .hero-bi-dashboard { max-width: 100%; min-width: 0; }
  .hero-bi-main { flex-direction: column; }
  .hero-bi-right-panel { flex-direction: row; min-width: 0; justify-content: center; flex-wrap: wrap; }
  .hero-bi-charts-row {
    grid-template-columns: 1fr;
  }
}
.hero-editor {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
  font-family: "Consolas", "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.hero-editor--framed {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08), 0 0 80px rgba(14, 165, 233, 0.08);
}
.hero-editor-activitybar {
  width: 48px;
  min-width: 48px;
  background: #333333;
  border-right: 1px solid #3c3c3c;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  flex-shrink: 0;
}
.hero-editor-act-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #858585;
  border-radius: 6px;
  margin-bottom: 4px;
}
.hero-editor-act-icon--active {
  color: #cccccc;
  background: rgba(255, 255, 255, 0.08);
}
.hero-editor-act-badge {
  font-size: 10px;
  background: var(--flow-step2);
  color: #fff;
  padding: 2px 6px;
  border-radius: 10px;
  margin-top: 4px;
}
.hero-editor-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: #2d2d2d;
  border-bottom: 1px solid #3c3c3c;
  flex-shrink: 0;
}
.hero-editor-modified {
  margin-left: auto;
  color: #fb923c;
  font-size: 10px;
}
.hero-editor-body-row {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.hero-editor-workspace {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.hero-editor-sidebar {
  width: 52px;
  min-width: 52px;
  background: #252526;
  border-right: 1px solid #3c3c3c;
  flex-shrink: 0;
}
.hero-editor-explorer {
  padding: 8px 6px;
}
.hero-editor-explorer-title {
  font-size: 9px;
  color: #858585;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}
.hero-editor-folder {
  font-size: 10px;
  color: #858585;
  padding: 2px 4px;
  margin-bottom: 2px;
}
.hero-editor-folder-icon { font-size: 8px; margin-right: 4px; }
.hero-editor-file {
  font-size: 11px;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  padding-left: 12px;
  border-radius: 4px;
  margin-bottom: 2px;
}
.hero-editor-file--active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.hero-editor-file-icon { font-size: 12px; }
.hero-editor-file-dot { color: #fb923c; margin-left: auto; font-size: 8px; }
.hero-editor-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 14px 16px;
}
.hero-editor-chat-label {
  display: none;
}
.hero-editor-dots {
  display: flex;
  gap: 6px;
}
.hero-editor-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4a4a4a;
}
.hero-editor-dots span:nth-child(1) { background: #ff5f57; }
.hero-editor-dots span:nth-child(2) { background: #febc2e; }
.hero-editor-dots span:nth-child(3) { background: #28c840; }
.hero-editor-filename {
  color: #9d9d9d;
  font-size: 12px;
}
.hero-editor-chat {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: #252526;
  border-radius: 8px;
  border: 1px solid #3c3c3c;
}
.hero-editor-prompt {
  color: #d4d4d4;
}
.hero-editor-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--aurant-orange-500);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink {
  50% { opacity: 0; }
}
.hero-editor-code {
  display: flex;
  background: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
}
.hero-editor-lines {
  display: flex;
  flex-direction: column;
  padding: 12px 8px 12px 12px;
  background: #252526;
  color: #858585;
  text-align: right;
  user-select: none;
  min-width: 28px;
}
.hero-editor-lines span {
  line-height: 1.6;
}
.hero-editor-output {
  flex: 1;
  margin: 0;
  padding: 12px 16px;
  overflow-x: auto;
}
.hero-editor-output code {
  font-family: inherit;
  font-size: inherit;
}
.hero-editor-output .token-keyword { color: #ea580c; }
.hero-editor-output .token-func   { color: #d4a574; }
.hero-editor-output .token-paren  { color: #d4d4d4; }
.hero-editor-output .token-param  { color: #fb923c; }
.hero-editor-output .token-punct  { color: #d4d4d4; }
.hero-editor-output .token-string { color: #ce9178; }

/* タイピングアニメ用 */
.hero-editor-output .code-line {
  opacity: 0;
  display: block;
  transition: opacity 0.2s ease;
}
.hero-editor-output .code-line.reveal {
  opacity: 1;
}
@media (max-width: 768px) {
  .hero-editor-wrap { margin: 16px auto 24px; }
  .hero-editor { font-size: 11px; }
  .hero-editor-body { padding: 12px; min-height: 160px; }
}

/* ========================================
   Concept / Vision（hp-main参考）
   ======================================== */
.concept-section,
.strengths.concept-section {
  background: var(--white);
}
.strengths.concept-section .strengths_wrapper {
  background: linear-gradient(180deg, #fefbf8 0%, #fff7ed 30%, #f8fafc 70%, #e2e8f0 100%);
  padding: 100px 24px;
}
.concept-section.aurant-section--slate {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}
.concept-section .section-title { font-size: 24px; }
.strengths.concept-section .section_header .desc { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; line-height: 1.7; color: var(--text-color); }
/* VISION 図解：パス図デザイン（〇がパスでつながる・画像参考） */
/* Vision：AI中心シナプス/ニューロン図（軌道・グロー強化） */
.vision-diagram--synapse {
  margin-bottom: 40px;
  padding: 32px 24px;
  background: linear-gradient(135deg, #fffbf7 0%, #fff7ed 50%, #fef7ed 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--flow-step2-border);
  position: relative;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.08);
}
.vision-orbit {
  animation: vision-orbit-fade 4s ease-in-out infinite;
}
.vision-orbit--2 { animation-delay: 0.8s; }
.vision-orbit--3 { animation-delay: 1.6s; }
@keyframes vision-orbit-fade {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.75; }
}
.vision-synapse-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.vision-synapse-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.vision-synapse-path {
  stroke-linecap: round;
  animation: synapse-pulse 2.5s ease-in-out infinite;
}
@keyframes synapse-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.vision-synapse-node {
  transition: fill 0.3s, stroke-width 0.3s, filter 0.3s;
  filter: drop-shadow(0 1px 3px rgba(249, 115, 22, 0.15));
}
.vision-synapse-node:hover {
  stroke-width: 3;
  filter: drop-shadow(0 2px 6px rgba(249, 115, 22, 0.25));
}
.vision-synapse-center {
  filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.4)) drop-shadow(0 4px 12px rgba(249, 115, 22, 0.35));
  animation: vision-center-pulse 2.5s ease-in-out infinite;
}
.vision-synapse-core {
  filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.6));
}
@keyframes vision-center-pulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.4)) drop-shadow(0 4px 12px rgba(249, 115, 22, 0.35)); }
  50% { opacity: 0.95; filter: drop-shadow(0 0 24px rgba(249, 115, 22, 0.5)) drop-shadow(0 6px 16px rgba(249, 115, 22, 0.45)); }
}
.vision-synapse-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vision-synapse-label {
  position: absolute;
  font-size: 13px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(255,255,255,0.95);
  letter-spacing: 0.02em;
}
.vision-synapse-label--node {
  color: #334155;
  padding: 2px 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
}
.vision-synapse-label--center {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 800;
  color: #ea580c;
  text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 0 12px rgba(249,115,22,0.2);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .vision-diagram--synapse { padding: 24px 16px; }
  .vision-synapse-wrap { max-width: 280px; }
  .vision-synapse-label { font-size: 11px; }
  .vision-synapse-label--node { padding: 1px 4px; }
  .vision-synapse-label--center { font-size: 14px; }
}
.concept-text {
  font-size: 15px;
  line-height: 2;
}
.concept-text p {
  margin-bottom: 1em;
}

/* ========================================
   Service - グリッド
   ======================================== */
.service-section {
  background: var(--bg-color);
}
/* SERVICE 事業内容フロー（PBL風・矢羽根で接続・5段階） */
.service-flow-pbl {
  margin-bottom: 48px;
}
.service-flow-stages {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
}
.service-flow-stage {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  background: var(--white);
  border: 2px solid var(--flow-step1-border);
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.service-flow-stage:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--flow-step2-border);
}
.service-flow-stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 10px;
}
.service-flow-stage-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--flow-step1);
}
.service-flow-stage-sub {
  font-size: 10px;
  color: var(--flow-step1);
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}
.service-flow-stage-content ul {
  margin: 0;
  padding-left: 14px;
  font-size: 11px;
  line-height: 1.65;
  color: #64748b;
}
/* 矢羽根（参考画像のグレー chevron スタイル） */
.service-flow-yebane {
  flex: 0 0 24px;
  min-width: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
}
.service-flow-yebane::after {
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 12px solid var(--color-accent);
  border-right: 0;
  opacity: 0.85;
}
.service-flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 2px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.service-flow-visual-node {
  padding: 8px 14px;
  background: var(--white);
  border: 2px solid var(--flow-step2-border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--flow-step2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.service-flow-yebane-visual {
  width: 28px;
  height: 3px;
  background: var(--color-accent);
  position: relative;
  flex-shrink: 0;
  opacity: 0.85;
}
.service-flow-yebane-visual::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left: 10px solid var(--color-accent);
}
@media (max-width: 900px) {
  .service-flow-stages {
    flex-direction: column;
    align-items: center;
  }
  .service-flow-stage {
    max-width: 100%;
    width: 100%;
  }
  .service-flow-yebane {
    flex: none;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }
  .service-flow-visual {
    flex-direction: column;
  }
  .service-flow-yebane-visual {
    width: 2px;
    height: 16px;
  }
  .service-flow-yebane-visual::after {
    right: auto;
    top: auto;
    bottom: -3px;
    left: 50%;
    margin: 0 0 0 -5px;
    border-left-color: transparent;
    border-top-color: #94a3b8;
    border-left-width: 6px;
  }
}
/* Growin構造互換（section_header, sec_title1, link_btn, management_list） */
.top_page { margin: 0; }
.section_header { margin-bottom: 40px; }
.sec_title1 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin: 0 0 16px; line-height: 1.6; }
.sec_title1 .en.apostrophe { display: block; font-size: 0.5em; letter-spacing: 0.15em; color: var(--color-accent); margin-bottom: 8px; }
.sec_title1 .ja { display: block; color: var(--text-color); }
.section_header .desc { margin: 0 0 24px; font-size: 15px; line-height: 2; color: var(--text-muted); }
.management .section_header .desc { font-size: 15px; font-weight: 400; }
.link_btn.btn1 { display: inline-block; }
.link_btn.btn1 .inner { display: inline-block; padding: 14px 36px; background: var(--color-accent); color: var(--white) !important; font-weight: 600; font-size: 14px; border-radius: 999px; text-decoration: none; transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1); }
.link_btn.btn1 .inner:hover { opacity: 0.9; transform: translateY(-2px); }
.link_btn.btn1 .label { color: inherit; }
.strengths_wrapper .container, .management_wrapper .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.management_wrapper { padding: 100px 24px 48px; max-width: 1200px; margin: 0 auto; }
.management .section_body { margin-top: 48px; }
.management .section_body .link_btn { margin-top: 40px; }
.management_list { list-style: none; margin: 0; padding: 0; }

/* カードデザイン（Growin: management_list + service-card-new） */
.service-cards,
.management_list.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-cards--5,
.management_list.service-cards--5,
.service-cards--6,
.management_list.service-cards--6 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card-new,
.management_list li.service-card-new {
  background: linear-gradient(180deg, #faf8f5 0%, #f5f2ee 100%);
  padding: 32px 24px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 119, 101, 0.15);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background-image:
    repeating-linear-gradient(to right, rgba(139, 119, 101, 0.03) 0, rgba(139, 119, 101, 0.03) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(to bottom, rgba(139, 119, 101, 0.03) 0, rgba(139, 119, 101, 0.03) 1px, transparent 1px, transparent 24px);
}
.service-card-new:hover,
.management_list li.service-card-new:hover {
  box-shadow: var(--shadow-md);
}
/* management_list内の .num, .title, .desc */
.management_list .text .num { display: block; font-size: 11px; letter-spacing: 0.08em; color: var(--color-accent); margin-bottom: 12px; font-weight: 600; }
.management_list .text .title { font-size: 18px; font-weight: 700; margin: 0 0 16px; line-height: 1.5; color: var(--text-color); }
.management_list .text .desc { margin: 0; font-size: 14px; line-height: 1.85; color: var(--text-muted); }
.management_list li.service-card-new a.trigger { display: flex; align-items: flex-start; gap: 16px; text-decoration: none; color: inherit; }
.management_list li.service-card-new .text { flex: 1; }
.management_list li.service-card-new .btn2 { flex-shrink: 0; margin-top: 4px; }
.management_list .btn2 .inner { display: flex; align-items: center; justify-content: center; }
.management_list .btn2 .icon.icon-dot { display: block; width: 20px; height: 20px; border: 1px solid var(--color-accent); border-radius: 50%; position: relative; }
.management_list .btn2 .icon.icon-dot::after { content: ""; position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--color-accent); border-radius: 50%; }
.service-card-subtitle {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #a85c4a;
  margin-bottom: 12px;
  font-weight: 600;
}
.service-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.5;
  color: var(--text-color);
}
.service-card-new p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
}
.service-card-dot {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #c45c4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: #c45c4a;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .service-cards,
  .service-cards--5,
  .service-cards--6,
  .management_list.service-cards,
  .management_list.service-cards--5,
  .management_list.service-cards--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-cards,
  .service-cards--5,
  .service-cards--6,
  .management_list.service-cards,
  .management_list.service-cards--5,
  .management_list.service-cards--6 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .service-card-new,
  .management_list li.service-card-new {
    padding: 28px 20px 32px;
  }
  .management_list .text .title {
    font-size: 16px;
  }
  .management_list .text .desc {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* ========================================
   Feature - 3カラム
   ======================================== */
.feature-section {
  background: var(--white);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  text-align: left;
  padding: 32px 24px 36px;
  position: relative;
  border-left: 4px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-left-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.06);
}
.feature-card .feature-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.18;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.5;
}
.feature-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.9;
  color: var(--text-muted);
}
.feature-grid-5 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .feature-grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Case Studies（導入実績）
   ======================================== */
.cases-section {
  background: var(--white);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}
.case-card {
  background: var(--bg-color);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}
.case-card .case-industry {
  display: inline-block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding: 2px 8px;
  background: var(--white);
  border-radius: 4px;
}
.case-card h3 {
  font-size: 16px;
  margin: 0 0 12px;
}
.case-card p {
  font-size: 13px;
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ========================================
   Works
   ======================================== */
.works-section {
  background: var(--bg-color);
}
.works-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.works-list li {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.works-list li:last-child {
  border-bottom: none;
}
.works-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
}
.works-list a:hover {
  color: var(--theme-color);
}
.works-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-right: 16px;
}
.works-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
  color: var(--color-accent);
}
.flow-section .section-cta-link::after {
  content: " →";
}
.message-section .section-cta {
  margin-top: 16px;
}

/* ========================================
   Flow - 6ステップ・矢羽根形式（事業内容フローと統一）
   ======================================== */
.flow-section {
  background: linear-gradient(180deg, #fef7ed 0%, #fff7ed 100%);
}
.flow-yebane-wrap {
  margin-bottom: 0;
}
.flow-stages {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}
.flow-stage {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  background: var(--white);
  border: 2px solid var(--flow-step1-border);
  border-radius: 12px;
  padding: 20px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.flow-stage:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--flow-step2-border);
}
.flow-stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 10px;
}
.flow-stage-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--flow-step1);
}
.flow-stage-sub {
  font-size: 10px;
  color: var(--flow-step1);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}
.flow-stage-desc {
  font-size: 11px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}
/* 矢羽根（事業内容と統一） */
.flow-yebane {
  flex: 0 0 24px;
  min-width: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
}
.flow-yebane::after {
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 12px solid var(--color-accent);
  border-right: 0;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .flow-stages {
    flex-direction: column;
    align-items: center;
  }
  .flow-stage {
    max-width: 100%;
    width: 100%;
  }
  .flow-yebane {
    flex: none;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }
}

/* ========================================
   Message - CTA（hp-main aurant-cta参考）
   ======================================== */
.message-section {
  background: var(--aurant-navy-900);
  color: var(--white);
  text-align: center;
  padding: 64px 20px;
}
.message-section .section-label {
  color: var(--aurant-orange-500);
}
.message-section .section-title {
  color: var(--white);
}
.message-lead {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
}
.message-section p {
  color: rgba(255, 255, 255, 0.85);
}
.message-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 18px 52px;
  background: var(--aurant-orange-500);
  color: #2b1a0b !important;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.message-cta:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  color: #2b1a0b !important;
}

/* ========================================
   FAQ - アコーディオン
   ======================================== */
.faq-section {
  background: var(--bg-color);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
  background: var(--white);
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 0 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ========================================
   Voice - お客様の声
   ======================================== */
.voice-section {
  background: var(--white);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
}
.voice-card {
  background: var(--bg-color);
  padding: 36px 28px 40px;
  border-radius: var(--radius-md);
  position: relative;
}
.voice-card .voice-num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--aurant-navy-900);
  opacity: 0.1;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.voice-card .voice-headline {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.5;
}
.voice-card .voice-author {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.voice-card p:last-of-type {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* ========================================
   News
   ======================================== */
.news-section {
  background: var(--bg-color);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list li {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}
.news-list a {
  display: flex;
  align-items: center;
  color: var(--text-color);
}
.news-list a:hover {
  color: var(--theme-color);
}
.news-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-right: 24px;
  flex-shrink: 0;
}

/* ========================================
   Access
   ======================================== */
.access-section {
  background: var(--white);
}
.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .access-content {
    grid-template-columns: 1fr;
  }
}
.access-info dl {
  margin: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 16px;
}
.access-info dt {
  font-weight: 600;
  margin: 0;
}
.access-info dd {
  margin: 0;
  font-size: 14px;
}
.access-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.access-map {
  min-height: 300px;
  background: var(--bg-color);
  border-radius: 8px;
}

/* ========================================
   Contact
   ======================================== */
.contact-section {
  background: var(--bg-color);
  text-align: center;
}
.contact-cta {
  display: inline-block;
  padding: 20px 56px;
  background: var(--aurant-orange-500);
  color: #2b1a0b !important;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  margin: 24px 0 16px;
  box-shadow: var(--shadow-md);
}
.contact-cta:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  color: #2b1a0b !important;
}
.contact-tel {
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0;
}
.contact-tel a {
  color: var(--theme-color);
}
.contact-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ========================================
   Footer（Growin風）
   ======================================== */
.site-footer {
  background: var(--aurant-navy-950);
  color: var(--white);
  padding: 48px 24px 32px;
  text-align: center;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 24px;
  font-size: 13px;
}
.footer-nav a {
  color: rgba(255,255,255,0.85);
  display: inline-block;
  transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1), transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.footer-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-legal {
  margin-top: 16px;
  text-align: center;
}
.footer-legal a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--white);
  text-decoration: underline;
}
.site-footer .copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 0;
}
.site-footer a {
  color: var(--white);
  opacity: 0.8;
}
.site-footer a:hover {
  opacity: 1;
}
.page-top {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}
.page-top:hover {
  color: var(--white);
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 8px 16px;
    font-size: 12px;
  }
}

/* ========================================
   Page Template - Value（グローウィン風・番号付きカード）
   ======================================== */
.page-value .page-header-inner {
  padding: 80px 24px 60px;
  background: var(--bg-color);
}
.page-value .page-title {
  margin: 0 0 20px;
  line-height: 1.5;
}
.page-value .page-title-en {
  display: block;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--aurant-orange-500);
  margin-bottom: 8px;
}
.page-value .page-title-ja {
  display: block;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text-color);
}
.page-value .page-description {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
  max-width: 640px;
}
.page-value .value-summary {
  padding: 48px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-color) 100%);
}
.page-value .summary-heading {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
  color: var(--text-color);
}
.page-value .value-strengths {
  padding: 48px 24px 80px;
}
.page-value .strengths-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.page-value .strengths-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}
.page-value .strengths-item:first-child {
  padding-top: 0;
}
.page-value .strengths-num {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--aurant-orange-500);
  letter-spacing: 0.05em;
}
.page-value .strengths-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.5;
}
.page-value .strengths-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 768px) {
  .page-value .page-header-inner { padding: 60px 16px 48px; }
  .page-value .strengths-item { flex-direction: column; gap: 12px; padding: 24px 0; }
  .page-value .strengths-num { font-size: 16px; }
}

/* ========================================
   Page Template - Management Theme
   ======================================== */
.page-management .page-header-inner {
  padding: 80px 24px 60px;
  background: var(--bg-color);
}
.page-management .page-title {
  margin: 0 0 20px;
  line-height: 1.5;
}
.page-management .page-title-en {
  display: block;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--aurant-orange-500);
  margin-bottom: 8px;
}
.page-management .page-title-ja {
  display: block;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text-color);
}
.page-management .page-description {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
}
.page-management .management-summary {
  padding: 48px 24px;
  background: var(--white);
}
.page-management .summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.page-management .summary-heading {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.7;
}
.page-management .summary-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
}
.page-management .management-radar {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border: 3px solid var(--aurant-orange-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(242,141,58,0.08) 0%, transparent 100%);
}
.page-management .radar-inner {
  text-align: center;
}
.page-management .radar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--aurant-orange-500);
  letter-spacing: 0.05em;
}
.page-management .management-themes {
  padding: 48px 24px 80px;
  background: var(--bg-color);
}
.page-management .theme-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-management .theme-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.page-management .theme-item:hover {
  box-shadow: var(--shadow-md);
}
.page-management .theme-en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--aurant-orange-500);
  margin-bottom: 8px;
}
.page-management .theme-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.5;
}
.page-management .theme-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.page-management .theme-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
}
.page-management .theme-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .page-management .page-header-inner { padding: 60px 16px 48px; }
  .page-management .summary-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-management .theme-item { padding: 24px 20px; }
}

/* ========================================
   スマホ追尾CTA（OLTANA風）
   ======================================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}
@media (max-width: 768px) {
  .fixed-cta {
    display: block;
  }
}
.fixed-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--aurant-orange-500);
  color: #2b1a0b !important;
  font-weight: 700;
  border-radius: 8px;
}
.fixed-cta a:hover {
  opacity: 0.95;
  color: var(--white) !important;
}

/* ========================================
   お問い合わせページ（Contact Page）
   ======================================== */
.contact-page {
  background: linear-gradient(180deg, #fff7ed 0%, #fef7ed 50%, #f8fafc 100%);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--text-color);
  min-height: 100vh;
}
.contact-hero {
  position: relative;
  padding: 80px 0 60px;
  color: var(--white);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  overflow: hidden;
}
.contact-hero__inner {
  position: relative;
  z-index: 2;
}
.contact-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
}
.contact-hero__lead {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 16px;
}
.contact-hero__glow {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4), rgba(249, 115, 22, 0));
  filter: blur(60px);
  z-index: 1;
}
.contact-body {
  padding: 60px 0 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
}
.contact-panel__card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(249, 115, 22, 0.1);
}
.contact-panel__card--accent {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(234, 88, 12, 0.05));
  border-color: rgba(249, 115, 22, 0.2);
}
.contact-panel__card--mini {
  padding: 20px;
}
.contact-panel__title {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--text-color);
  font-weight: 700;
}
.contact-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--color-muted);
}
.contact-panel__list li::before {
  content: "●";
  color: var(--color-accent);
  margin-right: 8px;
}
.contact-panel__subtitle {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}
.contact-panel__mail {
  font-size: 18px;
  color: var(--color-accent-dark);
  margin: 0 0 8px;
  font-weight: 600;
}
.contact-panel__note {
  margin: 0;
  font-size: 13px;
  color: var(--color-muted);
}
.contact-panel__steps {
  margin: 0;
  padding-left: 20px;
  color: var(--color-muted);
  line-height: 1.8;
}
.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 32px;
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.contact-form-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
}
.contact-form-card__subtitle {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-size: 14px;
}
.contact-notice {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}
.contact-notice--success {
  background: rgba(46, 204, 113, 0.1);
  color: #1e824c;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.contact-notice--error {
  background: rgba(231, 76, 60, 0.1);
  color: #b03a2e;
  border: 1px solid rgba(231, 76, 60, 0.3);
}
.contact-form {
  display: grid;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-field label {
  font-size: 13px;
  color: var(--text-color);
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 600;
}
.contact-required {
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 600;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  font-family: inherit;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
  outline: none;
}
.contact-field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}
.contact-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-submit {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    padding: 60px 0 40px;
  }
  .contact-body {
    padding: 40px 0 60px;
  }
  .contact-form-card {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .contact-hero__title {
    font-size: 28px;
  }
  .contact-hero__lead {
    font-size: 14px;
  }
  .contact-panel__card {
    padding: 20px;
  }
  .contact-form-card {
    padding: 20px;
  }
}

/* ========================================
   ホワイトペーパーDLフォーム（リード取得）
   ======================================== */
.blog-whitepaper-banner {
  margin: 2rem 0 1.75rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #f8fafc;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
}
.blog-whitepaper-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.5rem 1.75rem;
}
.blog-whitepaper-banner__text {
  flex: 1 1 220px;
  min-width: 0;
}
.blog-whitepaper-banner__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.blog-whitepaper-banner__lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.85);
}
.blog-whitepaper-banner__cta {
  margin: 0;
  flex-shrink: 0;
}
.blog-whitepaper-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  background: var(--color-accent, #f97316);
  color: #fff !important;
  transition: background 0.2s, transform 0.15s;
}
.blog-whitepaper-banner__btn:hover {
  background: var(--color-accent-dark, #ea580c);
  color: #fff !important;
  transform: translateY(-1px);
}
.blog-whitepaper-banner--form {
  background: transparent;
  box-shadow: none;
  margin-top: 1.5rem;
}
.blog-whitepaper-banner--form .aurant-whitepaper-download {
  margin: 0;
  max-width: none;
}

.aurant-whitepaper-download {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--color-border, #e2e8f0);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.aurant-wp-thanks {
  text-align: center;
}
.aurant-wp-thanks__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}
.aurant-wp-thanks__lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-muted, #64748b);
}
.aurant-wp-thanks__cta {
  margin: 0;
}
.aurant-wp-thanks__note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--color-muted);
}
.aurant-wp-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.aurant-wp-btn--primary {
  background: var(--color-accent, #f97316);
  color: #fff;
  border: none;
}
.aurant-wp-btn--primary:hover {
  background: var(--color-accent-dark, #ea580c);
  color: #fff;
}
.aurant-wp-btn--submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  border-radius: 12px;
}
.aurant-wp-btn--submit:hover {
  background: var(--color-accent-dark);
  color: #fff;
}
.aurant-wp-notice {
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 14px;
}
.aurant-wp-notice--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}
.aurant-wp-form__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}
.aurant-wp-form__lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
}
.aurant-wp-form {
  display: grid;
  gap: 18px;
}
.aurant-wp-field {
  display: grid;
  gap: 6px;
}
.aurant-wp-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
}
.aurant-wp-required {
  color: var(--color-accent);
  font-size: 12px;
}
.aurant-wp-field input[type="text"],
.aurant-wp-field input[type="email"] {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
}
.aurant-wp-field input:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
.aurant-wp-field--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.aurant-wp-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
  cursor: pointer;
}
.aurant-wp-consent input {
  margin-top: 3px;
}

/* ========================================
   ブログページ（Blog Page）
   ======================================== */
.blog-page {
  background: var(--bg-color);
  min-height: 100vh;
}
.blog-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--white);
}
.blog-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
}
.blog-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
/* カテゴリーナビゲーション（トップナビ） */
.blog-top-nav {
  background: var(--white);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  box-shadow: inset 0 -2px 0 var(--color-accent);
  margin-bottom: 0;
}
.blog-top-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-top-nav__link {
  color: var(--color-muted);
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  font-weight: 600;
  transition: color 0.2s;
}
.blog-top-nav__link {
  position: relative;
  transition: all 0.2s;
}
.blog-top-nav__link.is-active,
.blog-top-nav__link:hover {
  color: var(--color-accent);
}
.blog-top-nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}
.blog-top-nav__sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #000;
  opacity: 0.3;
}
/* 検索フォーム */
.blog-search-wrapper {
  margin-bottom: 32px;
}
.blog-search-form__inner {
  display: flex;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 12px 8px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}
.blog-search-form .search-field {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.blog-search-form .search-submit {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}
.blog-search-form .search-submit:hover {
  background: var(--color-accent-dark);
}
/* モバイル用カテゴリーフィルター */
.blog-category-filter {
  margin: 24px 0 16px;
  display: none;
}
.blog-category-filter--mobile {
  display: block;
}
.blog-category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-category-btn {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  text-decoration: none;
  color: var(--color-muted);
  transition: all 0.2s;
}
.blog-category-btn.active,
.blog-category-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(249, 115, 22, 0.05);
}
/* セクションヘッダー */
.blog-section-header {
  margin: 40px 0 24px;
  text-align: center;
}
.blog-section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.blog-section-title {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--text-color);
}
.blog-body {
  padding: 60px 0 80px;
}
.blog-body__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.blog-body__main {
  min-width: 0;
}
.blog-body__side {
  position: sticky;
  top: 88px;
}
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 0;
}
.blog-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  min-height: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.blog-item__link {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}
/* サムネなし（タグのみの漫画DX等）で 280px 列に本文が押し込まれて見えなくなるのを防ぐ */
.blog-item__link:not(:has(.blog-item__thumb)) {
  grid-template-columns: 1fr;
}
.blog-item__thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg-color);
}
.blog-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-item__content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-item__category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-item__category:hover {
  background: var(--color-accent-dark);
}
.blog-item__date {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}
.blog-item__badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}
.blog-item__no-image {
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 13px;
}
.blog-item__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.blog-item__tag {
  font-size: 11px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}
.blog-item__tag:hover {
  text-decoration: underline;
}
.blog-item__title {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.5;
}
.blog-item__excerpt {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
  flex: 1;
}
.blog-item__more {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
}
.blog-pagination {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-pagination ul,
.blog-pagination .page-numbers {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.blog-pagination li,
.blog-pagination .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  display: inline-block;
}
.blog-pagination li::marker {
  content: none;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-color);
  background: var(--white);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}
.blog-pagination a:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.blog-pagination .current {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-muted);
}
@media (max-width: 991px) {
  .blog-item__link {
    grid-template-columns: 1fr;
  }
  .blog-item__thumb {
    height: 200px;
  }
  .blog-top-nav {
    display: none;
  }
  .blog-category-filter--mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0 40px;
  }
  .blog-body {
    padding: 40px 0 60px;
  }
  .blog-item__content {
    padding: 24px;
  }
  .blog-item__title {
    font-size: 18px;
  }
  .blog-top-nav__inner {
    padding: 10px 16px;
    gap: 12px;
  }
  .blog-search-form__inner {
    padding: 6px 10px 6px 16px;
  }
  .blog-section-title {
    font-size: 20px;
  }
}

/* ========================================
   ブログ個別記事（Blog Single）
   ======================================== */
.blog-single-page {
  background: var(--bg-color);
  min-height: 100vh;
}
.blog-single-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--white);
}
.blog-breadcrumb {
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.blog-breadcrumb a:hover {
  color: var(--white);
}
.blog-breadcrumb__sep {
  margin: 0 8px;
}
.blog-single-hero__date {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-single-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
  font-weight: 700;
}
.blog-single-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
}
.blog-single-body {
  padding: 60px 0 80px;
}
.blog-single-body__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(252px, 300px);
  gap: 48px;
  /* start だと右カラムがサイドコンテンツ高のみになり、sticky が本文スクロール全域で効かない */
  align-items: stretch;
}
/* ブログ個別：アンカーが固定ヘッダー（60px）＋余白に隠れないように（参考: 目次ジャンプUX） */
.blog-single-text h2,
.blog-single-text h3,
.blog-single-text h4 {
  scroll-margin-top: 6.5rem;
}
@media (max-width: 768px) {
  .blog-single-text h2,
  .blog-single-text h3,
  .blog-single-text h4 {
    scroll-margin-top: 5.25rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html:has(.blog-single-page) {
    scroll-behavior: smooth;
  }
}
.blog-single-body__main {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.blog-single-body__side {
  position: static;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
/* 右サイド追従：sticky と overflow を同一要素にしない（カスタマイザー含め挙動が崩れるのを防ぐ） */
.blog-single-side-sticky {
  position: sticky;
  top: 88px;
  align-self: start;
  width: 100%;
  margin-bottom: 24px;
  z-index: 2;
}
.blog-single-side-sticky__scroll {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 22px;
  isolation: isolate;
}
/* サイド内の余白は gap に統一（セクション個別 margin と二重にならないようリセット） */
.blog-single-side-sticky__scroll > .archive-sidebar__section {
  margin-top: 0;
  margin-bottom: 0;
}
.blog-single-side-sticky__scroll > .archive-sidebar__whitepaper {
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.blog-single-side-sticky__scroll > .archive-sidebar__popular-posts {
  margin-top: 0;
}
/* 本文カラム先頭の目次：初期は閉じた details（JS で本文があれば .toc-ready を付与） */
.blog-main-toc-details {
  display: none;
  position: sticky;
  top: 88px;
  z-index: 4;
  margin-bottom: 28px;
}
.blog-main-toc-details.toc-ready {
  display: block;
}
.blog-main-toc-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 12px 16px;
  margin: 0;
  background: var(--white, #fff);
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-size: 15px;
}
.blog-main-toc-summary::-webkit-details-marker,
.blog-main-toc-summary::marker {
  display: none;
}
.blog-main-toc-summary__main {
  font-weight: 700;
  color: var(--text-color);
}
.blog-main-toc-summary__sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted, #64748b);
}
.blog-main-toc-details[open] .blog-main-toc-summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  box-shadow: none;
}
.blog-main-toc-root {
  margin: 0;
  max-height: min(65vh, 20rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 0 2px;
}
.blog-main-toc-root .blog-sidebar-toc,
.blog-main-toc-root .toc,
.blog-main-toc-root .blog-toc {
  margin-bottom: 0;
  margin-top: 0;
}
/* 記事内から移した目次の見出しは summary と重複するため非表示 */
.blog-main-toc-root .toc__title,
.blog-main-toc-root .blog-toc-title {
  display: none;
}
.blog-sidebar-toc__list .blog-sidebar-toc__item--sub {
  padding-left: 12px;
  font-size: 0.9em;
}
.blog-sidebar-toc__list .blog-sidebar-toc__item--sub a {
  color: var(--color-muted, #64748b);
}
.blog-main-toc-details[open] .blog-main-toc-root .blog-sidebar-toc.toc,
.blog-main-toc-details[open] .blog-main-toc-root .blog-toc,
.blog-main-toc-details[open] .blog-main-toc-root .toc {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
}
.blog-main-toc-root .blog-sidebar-toc a:focus-visible {
  outline: 2px solid var(--color-accent, #f97316);
  outline-offset: 2px;
  border-radius: 2px;
}
.blog-main-toc-root .blog-sidebar-toc.toc,
.blog-main-toc-root .blog-sidebar-toc.blog-toc {
  background: var(--white, #fff);
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.blog-main-toc__list,
.blog-main-toc-root .blog-sidebar-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-main-toc-root .blog-sidebar-toc li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.blog-main-toc-root .blog-sidebar-toc li:last-child {
  margin-bottom: 0;
}
.blog-main-toc-root .blog-sidebar-toc a {
  color: var(--color-accent, #f97316);
  text-decoration: none;
  font-size: 14px;
}
.blog-main-toc-root .blog-sidebar-toc a:hover {
  text-decoration: underline;
}
.blog-single-content {
  max-width: 800px;
  margin: 0 auto;
}
.blog-single-text {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  line-height: 2;
  color: var(--text-color);
}
.blog-single-text h2 {
  font-size: 24px;
  margin: 32px 0 16px;
  font-weight: 700;
  color: var(--text-color);
}
.blog-single-text h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  font-weight: 700;
}
.blog-single-text p {
  margin-bottom: 16px;
}
/* 本文に貼られたスタンドアロン記事HTML（Notion/WP 取り込み）の過剰余白を抑える */
.blog-single-text .article {
  min-height: 0 !important;
}
.blog-single-text .article .hero {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.blog-single-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blog-single-text th,
.blog-single-text td {
  padding: 12px 16px;
  border: 1px solid var(--color-border, #e2e8f0);
  text-align: left;
  min-width: 120px;
}
.blog-single-text th {
  background: var(--bg-color, #f8fafc);
  font-weight: 700;
}
.blog-single-meta {
  max-width: 800px;
  margin: 32px auto 0;
}
.blog-single-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.blog-single-date {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}
.blog-single-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-single-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-single-category:hover {
  background: var(--color-accent-dark);
}
.blog-single-author-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}
.blog-single-author-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-single-author-info {
  flex: 1;
  min-width: 0;
}
.blog-single-author-name {
  display: block;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-single-author-bio {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
}
.blog-single-footer {
  max-width: 800px;
  margin: 32px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.blog-single-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-single-tags-title {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}
.blog-single-tag {
  font-size: 13px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  transition: all 0.2s;
}
.blog-single-tag:hover {
  background: var(--color-accent);
  color: #fff;
}
.blog-single-back-link {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: center;
}
.blog-single-back-link a {
  display: inline-block;
  padding: 12px 24px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  transition: all 0.2s;
}
.blog-single-back-link a:hover {
  background: var(--color-accent);
  color: #fff;
}
/* タグセクション */
.blog-tags-section {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--color-border);
}
.blog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.blog-tags-list li {
  margin: 0;
}
.blog-tags-list a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.blog-tags-list a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(249, 115, 22, 0.05);
}

/* ========================================
   おすすめ記事カルーセル（Blog Recommended）
   ======================================== */
.blog-recommended {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--color-border);
}
.blog-recommended-carousel {
  position: relative;
  /* overflow: hidden; */ /* Removed to prevent button clipping */
  margin: 32px 0;
  padding: 0 20px; /* Added padding to accommodate buttons */
}
.blog-recommended-track {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0; /* Padding for hover shadows */
}
.blog-recommended-track::-webkit-scrollbar {
  display: none;
}
.blog-recommended-slide {
  flex: 0 0 280px;
  min-width: 280px;
}
.blog-recommended-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-recommended-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.blog-recommended-card__thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-color);
}
.blog-recommended-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-recommended-card__no-image {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--color-muted);
  font-size: 12px;
}
.blog-recommended-card__content {
  padding: 16px;
}
.blog-recommended-card__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-recommended-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.blog-recommended-nav:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.1);
}
.blog-recommended-nav--prev {
  left: -10px;
}
.blog-recommended-nav--next {
  right: -10px;
}
@media (max-width: 768px) {
  .blog-recommended-nav {
    display: none;
  }
  .blog-recommended-slide {
    flex: 0 0 240px;
    min-width: 240px;
  }
}

/* ========================================
   導入事例ページ（Case Study）
   ======================================== */
.case-study-page {
  background: var(--bg-color);
  min-height: 100vh;
}
.case-study-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--white);
}
.case-study-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
}
.case-study-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.case-study-top-nav {
  background: var(--white);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  box-shadow: inset 0 -2px 0 var(--color-accent);
  margin-bottom: 0;
}
.case-study-top-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.case-study-top-nav__link {
  color: var(--color-muted);
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  font-weight: 600;
  transition: color 0.2s;
}
.case-study-top-nav__link.is-active,
.case-study-top-nav__link:hover {
  color: var(--color-accent);
}
.case-study-top-nav__sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #000;
  opacity: 0.3;
}
.case-study-body {
  padding: 60px 0 80px;
}
.case-study-body__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.case-study-body__main {
  min-width: 0;
}
.case-study-body__side {
  position: sticky;
  top: 88px;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.case-study-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.case-study-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.case-study-card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-color);
}
.case-study-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-card__no-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}
.case-study-card__content {
  padding: 24px;
}
.case-study-card__category {
  margin-bottom: 12px;
}
.case-study-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 6px;
}
.case-study-card__title {
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.5;
}
.case-study-card__excerpt {
  margin: 0 0 16px;
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 14px;
}
.case-study-card__more {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
}
.case-study-pagination {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.case-study-pagination ul,
.case-study-pagination .page-numbers {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.case-study-pagination li,
.case-study-pagination .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  display: inline-block;
}
.case-study-pagination li::marker {
  content: none;
}
.case-study-pagination a,
.case-study-pagination span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-color);
  background: var(--white);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}
.case-study-pagination a:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.case-study-pagination .current {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.case-study-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-muted);
}

/* アーカイブサイドバー（ソリューション・サービス） */
.archive-sidebar {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
/* ブログ個別：グリッド行いっぱいに伸ばし、sticky の基準高さを本文と揃える */
.archive-sidebar--blog-single {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.archive-sidebar__section {
  margin-bottom: 28px;
}
.archive-sidebar__section:last-child {
  margin-bottom: 0;
}
/* 資料DL直下の人気記事（ブログ個別の sticky 内では gap で詰め、margin は 0） */
.archive-sidebar__popular-posts {
  margin-top: 12px;
}
.archive-sidebar__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(249,115,22,0.3);
}
.archive-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-sidebar__list li {
  margin: 0 0 8px;
}
.archive-sidebar__list li:last-child {
  margin-bottom: 0;
}
.archive-sidebar__list a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.archive-sidebar__list a:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

.archive-sidebar__popular-link {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0 !important;
}
.archive-sidebar__popular-link:hover {
  padding-left: 0 !important;
}
.archive-sidebar__popular-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}
.archive-sidebar__popular-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.archive-sidebar__popular-title {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .blog-body__inner,
  .case-study-body__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-body__side,
  .case-study-body__side {
    position: static;
    order: 2;
  }
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .case-study-top-nav {
    display: none;
  }
}

/* ========================================
   導入事例個別ページ（Case Study Single）
   ======================================== */
.case-study-single-page {
  background: var(--bg-color);
  min-height: 100vh;
}
.case-study-single-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--white);
}
.case-study-breadcrumb {
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.case-study-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.case-study-breadcrumb a:hover {
  color: var(--white);
}
.case-study-breadcrumb__sep {
  margin: 0 8px;
}
.case-study-single-categories {
  margin-bottom: 16px;
}
.case-study-single-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}
.case-study-single-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
  font-weight: 700;
}
.case-study-single-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
}
.case-study-single-body {
  padding: 60px 0 80px;
}
.case-study-single-body__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}
.case-study-single-body__main {
  min-width: 0;
}
.case-study-single-body__side {
  position: sticky;
  top: 88px;
}
.case-study-single-content {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.case-study-single-thumb {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.case-study-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.case-study-single-text {
  color: var(--text-color);
  line-height: 1.9;
  font-size: 16px;
}
.case-study-single-back-link {
  max-width: 980px;
  margin: 48px auto 0;
  text-align: center;
}
.case-study-single-back-link a {
  display: inline-block;
  padding: 12px 24px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  transition: all 0.2s;
}
.case-study-single-back-link a:hover {
  background: var(--color-accent);
  color: #fff;
}
.case-study-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}
.case-study-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.case-study-related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.case-study-related-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.case-study-related-card__thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: var(--bg-color);
}
.case-study-related-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-related-card__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: var(--color-muted);
  font-size: 12px;
}
.case-study-related-card__content {
  padding: 16px;
}
.case-study-related-card__tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.case-study-related-card__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .case-study-single-content {
    padding: 32px 24px;
  }
  .case-study-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   プライバシーポリシーページ（Privacy Policy）
   ======================================== */
.privacy-page {
  background: var(--bg-color);
  min-height: 100vh;
}
.privacy-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--white);
}
.privacy-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
}
.privacy-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.privacy-body {
  padding: 60px 0 80px;
}
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.privacy-section {
  margin-bottom: 40px;
}
.privacy-section:last-child {
  margin-bottom: 0;
}
.privacy-section h2 {
  font-size: 24px;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--text-color);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}
.privacy-section p {
  margin: 0 0 16px;
  line-height: 1.9;
  color: var(--text-color);
}
.privacy-section ul {
  margin: 16px 0;
  padding-left: 32px;
}
.privacy-section li {
  margin-bottom: 8px;
  line-height: 1.9;
  color: var(--text-color);
}
.privacy-section a {
  color: var(--color-accent);
  text-decoration: underline;
}
.privacy-section a:hover {
  color: var(--color-accent-dark);
}
.privacy-updated {
  font-size: 14px;
  color: var(--color-muted);
  font-style: italic;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
@media (max-width: 768px) {
  .privacy-content {
    padding: 32px 24px;
  }
  .privacy-section h2 {
    font-size: 20px;
  }
}

/* ========================================
   固定ページ（Page）
   ======================================== */
.page-single {
  background: var(--bg-color);
  min-height: 100vh;
  padding: 60px 0 80px;
}
.page-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.page-title {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.4;
}
.page-lead {
  margin: 0;
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.8;
}
.page-thumbnail {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.page-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.page-body {
  color: var(--text-color);
  line-height: 1.9;
}
.page-body .entry-content {
  font-size: 16px;
}
.page-body .entry-content h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  font-weight: 700;
  color: var(--text-color);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}
.page-body .entry-content h3 {
  font-size: 20px;
  margin: 32px 0 16px;
  font-weight: 700;
  color: var(--text-color);
}
.page-body .entry-content h4 {
  font-size: 18px;
  margin: 24px 0 12px;
  font-weight: 700;
  color: var(--text-color);
}
.page-body .entry-content p {
  margin: 0 0 20px;
}
.page-body .entry-content ul,
.page-body .entry-content ol {
  margin: 20px 0;
  padding-left: 32px;
}
.page-body .entry-content li {
  margin-bottom: 8px;
}
.page-body .entry-content a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.2s;
}
.page-body .entry-content a:hover {
  color: var(--color-accent-dark);
}
.page-body .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.page-body .entry-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 24px;
  margin: 24px 0;
  color: var(--color-muted);
  font-style: italic;
}
.page-body .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.page-body .entry-content table th,
.page-body .entry-content table td {
  padding: 12px;
  border: 1px solid var(--color-border);
  text-align: left;
}
.page-body .entry-content table th {
  background: var(--bg-color);
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-single {
    padding: 40px 0 60px;
  }
  .page-content {
    padding: 32px 24px;
    border-radius: 12px;
  }
  .page-title {
    font-size: 24px;
  }
  .page-lead {
    font-size: 16px;
  }
  .page-body .entry-content h2 {
    font-size: 20px;
  }
  .page-body .entry-content h3 {
    font-size: 18px;
  }
}
.blog-single-nav {
  max-width: 800px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.blog-single-nav__prev a,
.blog-single-nav__next a {
  display: block;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}
.blog-single-nav__prev a:hover,
.blog-single-nav__next a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .blog-single-hero {
    padding: 60px 0 40px;
  }
  .blog-single-body__inner,
  .case-study-single-body__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-single-body__side,
  .case-study-single-body__side {
    position: static;
    order: 2;
    display: block;
  }
  .archive-sidebar--blog-single {
    flex: none;
    display: block;
    min-height: 0;
  }
  .blog-single-side-sticky {
    position: static;
  }
  .blog-single-side-sticky__scroll {
    max-height: none;
    overflow: visible;
  }
  .blog-main-toc-details {
    position: static;
    margin-bottom: 20px;
  }
  .blog-main-toc-root {
    max-height: none;
    overflow: visible;
  }
  .blog-single-body {
    padding: 40px 0 60px;
  }
  .blog-single-body .container,
  .case-study-single-body .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .case-study-single-body .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .blog-single-text {
    padding: 18px 14px;
    border-radius: 12px;
    line-height: 1.9;
  }
  .blog-single-content,
  .case-study-single-content,
  .blog-single-meta,
  .blog-single-footer,
  .blog-single-back-link,
  .blog-single-nav,
  .case-study-single-back-link {
    max-width: none;
  }
  .case-study-single-content {
    padding: 18px 10px;
  }
  .blog-single-text h2 {
    font-size: 21px;
    line-height: 1.6;
  }
  .blog-single-text h3 {
    font-size: 18px;
    line-height: 1.6;
  }
  .blog-single-text .toc,
  .blog-single-text .blog-toc {
    padding: 14px 12px;
  }
  .blog-single-text .toc li,
  .blog-single-text .blog-toc li {
    font-size: 15px;
    line-height: 1.8;
  }
  .blog-single-nav {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   サービス概要個別ページ（Service Single）
   ======================================== */
.service-single-page {
  background: var(--bg-color);
  min-height: 100vh;
}
.service-single-page .container {
  max-width: 1280px;
}
.service-single-page.service-single--premium-layout .service-single-hero {
  padding: 88px 0 64px;
}
.service-single-page.service-single--premium-layout .service-single-thumb--video,
.service-single-page.service-single--premium-layout .service-single-thumb--image {
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  margin-bottom: 36px;
}
.service-single-page.service-single--premium-layout .service-single-text {
  padding: 48px 56px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
.service-single-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef7ed 50%, #f8fafc 100%);
}
.service-breadcrumb {
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-muted);
}
.service-breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}
.service-breadcrumb a:hover {
  text-decoration: underline;
}
.service-breadcrumb__sep {
  margin: 0 8px;
  color: var(--color-muted);
}
.service-single-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--text-color);
}
.service-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 32px;
  margin-top: 24px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.service-single-meta__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.service-single-meta__label {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
}
.service-single-meta__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.service-single-meta__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-color);
  background: rgba(0,0,0,0.06);
  border-radius: 6px;
}
.service-single-hero__lead {
  margin: 0;
  max-width: 42em;
  color: #475569;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.85;
  font-weight: 500;
}
.service-hero-actions {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-hero-actions__primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.service-hero-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.service-hero-actions__btn--primary {
  background: var(--color-accent, #f97316);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.service-hero-actions__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
  color: #fff !important;
}
.service-hero-actions__btn--secondary {
  background: #fff;
  color: #c2410c !important;
  border: 2px solid rgba(249, 115, 22, 0.5);
}
.service-hero-actions__btn--secondary:hover {
  background: #fff7ed;
  border-color: var(--color-accent, #f97316);
  color: #9a3412 !important;
}
.service-hero-actions__secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
  font-size: 14px;
}
.service-hero-actions__link {
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  padding: 4px 0;
}
.service-hero-actions__link:hover {
  color: var(--color-accent, #f97316);
  text-decoration: underline;
}
.service-hero-actions__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
  margin: 0 4px;
}

/* サービス個別：2カラムヒーロー＋デモギャラリー */
.service-single-hero--split {
  padding: 48px 0 56px;
}
.service-single-hero--split .container {
  max-width: 1240px;
}
.service-split-landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.05fr);
  gap: 48px 56px;
  align-items: start;
}
.service-split-landing__eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent, #f97316);
  text-transform: uppercase;
}
.service-split-landing__title {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}
.service-split-landing__title-line {
  display: block;
}
.service-split-landing__title-main {
  display: inline;
  color: #0f172a;
}
.service-split-landing__title-accent {
  display: inline;
  color: var(--color-accent, #f97316);
}
.service-split-landing__lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.85;
  color: #475569;
  max-width: 38em;
}
.service-split-landing__integrations {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  font-size: 14px;
  color: #64748b;
}
.service-split-landing__integrations li {
  position: relative;
  padding-left: 14px;
  line-height: 1.5;
}
.service-split-landing__integrations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbd5e1;
}
.service-hero-actions--split {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.service-split-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-demo-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  padding: 18px 18px 14px;
}
.service-demo-card--primary {
  padding-bottom: 16px;
}
.service-demo-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.service-demo-card__badge--demo {
  color: var(--color-accent, #f97316);
}
.service-demo-card__badge--tag {
  color: #2563eb;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.service-demo-card__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
}
.service-demo-card__media {
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
}
.service-demo-card__media--image {
  background: #f8fafc;
}
.service-demo-card__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  vertical-align: bottom;
}
.service-demo-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center top;
  background: #f8fafc;
}
.service-demo-card__hint {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
}
.service-demo-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-demo-card-row--single {
  grid-template-columns: 1fr;
}
.service-demo-card--wide {
  margin-top: 4px;
}
.service-demo-card--wide .service-demo-card__title {
  font-size: 15px;
}
.service-split-gallery--visual-primary .service-demo-card--primary {
  border-color: rgba(249, 115, 22, 0.18);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.09);
}
.service-demo-card--secondary {
  padding: 14px;
}
.service-demo-card--secondary .service-demo-card__title {
  font-size: 13px;
}
@media (max-width: 1024px) {
  .service-split-landing {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-single-hero--split .service-split-landing__demos {
    order: -1;
  }
}
@media (max-width: 600px) {
  .service-split-landing__integrations {
    grid-template-columns: 1fr;
  }
  .service-demo-card-row {
    grid-template-columns: 1fr;
  }
}

.service-single-cta--dual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 16px;
}
.service-single-cta--dual .btn-contact--outline {
  background: #fff;
  color: var(--color-accent, #f97316) !important;
  border: 2px solid var(--color-accent, #f97316);
  box-shadow: none;
}
.service-single-cta--dual .btn-contact--outline:hover {
  background: #fff7ed;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}
.service-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
  gap: 10px;
  justify-content: center;
  align-items: stretch;
}
.service-sticky-cta__btn {
  flex: 1;
  max-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.service-sticky-cta__btn--primary {
  background: var(--color-accent, #f97316);
  color: #fff !important;
}
.service-sticky-cta__btn--secondary {
  background: #fff;
  color: #c2410c !important;
  border: 2px solid rgba(249, 115, 22, 0.45);
}
@media (max-width: 768px) {
  .service-sticky-cta {
    display: flex;
  }
  .service-single-page {
    padding-bottom: 72px;
  }
}
.service-single-body {
  padding: 60px 0 80px;
}
.service-single-content {
  max-width: 1120px;
  margin: 0 auto;
}
.service-single-thumb {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.service-single-thumb img {
  width: 100%;
  height: auto;
}
.service-single-thumb--video {
  background: #0f172a;
}
.service-single-thumb--video .service-preview-video__el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.service-single-thumb--image {
  background: #f1f5f9;
}
.service-single-thumb--image .service-preview-image__el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center top;
}
.service-single-thumb--secondary {
  margin-top: 24px;
  margin-bottom: 0;
}
.service-single-thumb--secondary .service-preview-image__el--secondary {
  aspect-ratio: auto;
  max-height: none;
}
.service-single-text {
  background: var(--white);
  padding: 56px 60px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  line-height: 2;
  color: var(--text-color);
}
.service-single-text h2 {
  font-size: 24px;
  margin: 32px 0 16px;
  font-weight: 700;
  color: var(--text-color);
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
}
.service-single-text h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  font-weight: 700;
}

/* データ×AI：小売施策検証・ベイズ推定 解説記事 */
.service-data-ai-article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}
.service-data-ai-article__title {
  font-size: 26px;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.45;
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
}
.service-data-ai-article__lead {
  font-size: 16px;
  color: var(--text-color);
  margin: 0 0 24px;
  line-height: 1.85;
}
.service-data-ai-article h2 {
  font-size: 22px;
  margin: 36px 0 14px;
  font-weight: 700;
  border-left: 4px solid var(--color-accent);
  padding-left: 14px;
}
.service-data-ai-article h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  font-weight: 700;
  border-left: none;
  padding-left: 0;
}
.service-data-ai-article p {
  margin: 0 0 16px;
  line-height: 1.85;
}
.service-data-ai-article ul,
.service-data-ai-article ol {
  margin: 0 0 20px;
  padding-left: 1.35em;
  line-height: 1.8;
}
.service-data-ai-article li {
  margin-bottom: 8px;
}
.service-data-ai-article ul {
  list-style: disc;
}
.service-data-ai-article ol {
  list-style: decimal;
}
.service-data-ai-article__box {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 20px 0;
  border: 1px solid var(--color-border);
}
.service-data-ai-article__box-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-color);
}
.service-data-ai-article__note {
  font-size: 14px;
  color: var(--color-muted);
  margin: 12px 0 0;
  line-height: 1.7;
}
.service-data-ai-article__figure {
  margin: 24px 0;
}
.service-data-ai-article__figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-data-ai-article__caption {
  font-size: 13px;
  color: var(--color-muted);
  margin: 10px 0 0;
  line-height: 1.65;
}
.service-data-ai-article__table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.service-data-ai-article table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}
.service-data-ai-article th,
.service-data-ai-article td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.service-data-ai-article th {
  background: var(--bg-color);
  font-weight: 700;
}
.service-data-ai-article__closing {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.8;
}

.service-children {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--color-border);
}
.service-children__title {
  font-size: 28px;
  margin: 0 0 32px;
  font-weight: 700;
  color: var(--text-color);
}
.service-children-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-children-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-children-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.service-children-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-children-item__thumb {
  height: 180px;
  overflow: hidden;
  background: var(--bg-color);
}
.service-children-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-children-item__title {
  padding: 20px 20px 8px;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--text-color);
}
.service-children-item__excerpt {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}
.service-single-cta {
  margin-top: 64px;
  text-align: center;
}
.service-single-cta .btn-contact {
  display: inline-block;
  padding: 16px 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-single-cta .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
@media (max-width: 991px) {
  .service-children-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-single-page .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .service-single-hero {
    padding: 60px 0 40px;
  }
  .service-single-body {
    padding: 40px 0 60px;
  }
  .service-single-text {
    padding: 24px 18px;
  }
  .service-children-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   サービス概要一覧ページ（Service Archive）
   ======================================== */
.service-archive-page {
  background: var(--bg-color);
  min-height: 100vh;
}
.service-archive-hero {
  padding: 72px 0 56px;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 42%, #0f172a 100%);
  color: var(--white);
}
.service-archive-hero__inner {
  max-width: 720px;
}
.service-archive-hero__kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--color-accent, #fb923c);
}
.service-archive-hero__title {
  font-size: clamp(28px, 4.5vw, 44px);
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.service-archive-hero__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 16px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent, #f97316), #fb923c);
}
.service-archive-hero__lead {
  margin: 0;
  color: rgba(248, 250, 252, 0.88);
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.85;
  font-weight: 500;
}
.service-archive-top-nav {
  background: var(--white);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  box-shadow: inset 0 -2px 0 var(--color-accent);
  margin-bottom: 0;
}
.service-archive-top-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.service-archive-top-nav__link {
  color: var(--color-muted);
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  font-weight: 600;
  transition: color 0.2s;
}
.service-archive-top-nav__link.is-active,
.service-archive-top-nav__link:hover {
  color: var(--color-accent);
}
.service-archive-top-nav__sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #000;
  opacity: 0.3;
}
.service-archive-body {
  padding: 60px 0 80px;
}
.service-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.service-archive-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.service-archive-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-archive-card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-color);
}
.service-archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-archive-card__thumb--video {
  position: relative;
  background: #0f172a;
}
.service-archive-card__thumb--video .service-preview-video__el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.service-archive-card__thumb--image {
  position: relative;
  background: #f1f5f9;
}
.service-archive-card__thumb--image .service-preview-image__el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  pointer-events: none;
}
.service-archive-card__content {
  padding: 24px;
}
.service-archive-card__category {
  margin-bottom: 12px;
}
.service-archive-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 6px;
}
.service-archive-card__title {
  font-size: clamp(17px, 2.5vw, 20px);
  margin: 0 0 12px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.service-archive-card__excerpt {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.75;
  font-size: 14px;
  min-height: 3.5em;
}
.service-archive-card__meta {
  margin: 0 0 12px;
  padding: 12px;
  background: var(--bg-color);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.6;
}
.service-archive-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 6px;
}
.service-archive-card__meta-row:last-child {
  margin-bottom: 0;
}
.service-archive-card__meta-label {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--color-accent);
}
.service-archive-card__meta-value {
  color: var(--color-muted);
}
.service-archive-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 0 0;
  border-top: 1px solid #f1f5f9;
  width: 100%;
}
.service-archive-pagination {
  margin-top: 48px;
  text-align: center;
}
.service-archive-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-muted);
}
@media (max-width: 768px) {
  .service-archive-grid {
    grid-template-columns: 1fr;
  }
  .service-archive-top-nav__inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0 12px;
    padding: 12px 16px;
    scrollbar-width: thin;
  }
  .service-archive-top-nav__link {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .service-archive-top-nav__sep {
    flex-shrink: 0;
  }
}

/* ============================================
   SOLUTION 導線（フロント・サービス一覧・個別）
   ============================================ */
.industry-solutions-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--aurant-gray-100, #e2e8f0);
}
.industry-solutions-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-muted, #64748b);
  margin: 0 0 20px;
}
.industry-solutions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.industry-solution-card {
  flex: 1 1 280px;
  min-width: 0; /* Allow shrinking below 280 if necessary, but flex-basis handles it */
}
@media (max-width: 600px) {
  .industry-solution-card {
    flex: 1 1 100%;
  }
}
.industry-solution-card__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(180deg, #faf8f5 0%, #f5f2ee 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.industry-solution-card__link:hover {
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
  transform: translateY(-2px);
}
.industry-solution-card__icon {
  font-size: 28px;
  line-height: 1;
}
.industry-solution-card__label {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-accent, #f97316);
}
.industry-solution-card__desc {
  font-size: 14px;
  color: var(--color-muted, #64748b);
  line-height: 1.5;
}

/* ============================================
   地方公共団体向けページ
   ============================================ */
.local-government-page .industry-body {
  padding: 48px 0 80px;
}
.local-government-page .industry-intro {
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 2;
  color: var(--text-color, #334155);
}
.local-government-page .industry-section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 32px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-accent, #f97316);
}
.local-government-page .industry-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-color, #f8fafc);
  border-radius: 12px;
  margin-bottom: 32px;
}
.local-government-page .industry-empty p {
  margin: 0 0 16px;
  color: var(--color-muted, #64748b);
}
.local-government-page .industry-empty__link {
  color: var(--color-accent, #f97316);
  font-weight: 600;
}
.local-government-page .industry-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--bg-color, #f8fafc);
  border-radius: 16px;
  text-align: center;
}
.local-government-page .industry-cta__text {
  margin: 0 0 24px;
  font-size: 16px;
}

/* ========================================
   LP共通（ふるさと納税・LINE・資料作成・コールセンターBI・広告代理店）
   ======================================== */
.furusato-lp-page .container,
.lp-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* LINEライトLP — ダークFVのベース（テンプレ内スタイルと二重でも安全） */
.lp-page--lite.lp-page .lp-fv--dark {
  color: #fff;
}
.lp-page--lite.lp-page .lp-fv--dark .lp-fv__title,
.lp-page--lite.lp-page .lp-fv--dark h1.lp-fv__title {
  color: #fff;
}
.lp-page--lite.lp-page .lp-fv--dark .lp-fv__lead {
  color: rgba(255, 255, 255, 0.92);
}

/* Ad-AI LP は page-ad-ai-kintone-lp.php 内の #aurant-ad-lp スタイルで完結（.lp-page--ad-ai は未使用） */

/* FV（ファーストビュー） */
.lp-fv {
  padding: 80px 0 100px;
  text-align: center;
}
.lp-fv--dark {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: #fff;
}
.lp-fv__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 24px;
}
.lp-fv__lead {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.9;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.9);
}
.lp-fv__cta .link_btn .inner {
  white-space: normal;
}
.lp-fv__image-wrap {
  margin-top: 36px;
}
.lp-fv__image {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

/* セクション共通 */
.lp-section {
  padding: 72px 0;
}
.lp-section:nth-child(even) {
  background: var(--bg-color, #f8fafc);
}
.lp-section__title {
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 700;
  margin: 0 0 28px;
  line-height: 1.5;
}
.lp-section__body {
  line-height: 1.95;
}
.lp-section__body p {
  margin: 0 0 1.2em;
}
.lp-section__body p:last-child {
  margin-bottom: 0;
}

/* 解決策：ダッシュボード図解プレースホルダー */
.lp-solution-visual {
  margin-top: 40px;
}
.lp-solution-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.lp-solution-feature-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.lp-solution-feature-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.lp-solution-feature-card__caption {
  padding: 14px 16px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #0f172a;
}
.lp-solution-visual__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 56px 24px;
  background: var(--white, #fff);
  border: 2px dashed var(--color-border, #cbd5e1);
  border-radius: 16px;
}
.lp-solution-visual__icon {
  font-size: 48px;
}
.lp-solution-visual__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted, #64748b);
}

/* 導入実績カード */
.lp-case-card {
  margin-top: 24px;
  background: var(--white, #fff);
  border-radius: 16px;
  border: 1px solid var(--color-border, #e2e8f0);
  overflow: hidden;
}
.lp-case-card__header {
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--color-accent, #f97316), var(--color-accent-dark, #ea580c));
  color: #fff;
}
.lp-case-card__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lp-case-card__body {
  padding: 28px 24px;
}
.lp-case-card__body p {
  margin: 0;
  line-height: 1.9;
}

/* 想いのフロー図 */
.lp-section--vision-flow {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}
.lp-vision-flow {
  margin-top: 36px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
}
.lp-vision-flow__item {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px 20px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.08);
}
.lp-vision-flow__step {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9a3412;
}
.lp-vision-flow__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.5;
}
.lp-vision-flow__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted, #64748b);
}
.lp-vision-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent, #f97316);
}

/* クロージングCTA */
.lp-cta-block {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
  color: #fff;
}
.lp-cta-block .lp-section__title {
  text-align: center;
}
.lp-cta-block .lp-section__body {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.lp-cta-block .lp-section__body p {
  color: rgba(255, 255, 255, 0.9);
}
.lp-cta-block__button {
  text-align: center;
}
.lp-cta-block__button .link_btn .inner {
  white-space: normal;
}

@media (max-width: 900px) {
  .lp-fv__image-wrap {
    margin-top: 28px;
  }
  .lp-solution-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-vision-flow {
    flex-direction: column;
    gap: 12px;
  }
  .lp-vision-flow__arrow {
    transform: rotate(90deg);
    font-size: 20px;
    line-height: 1;
  }
}

/* ========================================
   DEMO VIDEO SECTION - デモ動画セクション
   ======================================== */
.demo-video-section {
  position: relative;
  z-index: 4;
  padding: 80px 24px;
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}
/* TOP コンセプト内に置いたとき、コンテナ幅を抜けてフルブリードに */
.concept-section .section_body > .demo-video-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}
.demo-video-section .section-label {
  text-align: center;
  margin-bottom: 12px;
}
.demo-video-section .section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 12px;
}
.demo-video-section .section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-muted, #64748b);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.demo-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.demo-video-card {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border, #e2e8f0);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.demo-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.demo-video-wrapper {
  position: relative;
  z-index: 6;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.demo-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.demo-video-info {
  padding: 20px;
}

.demo-video-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9a3412;
  background: #ffedd5;
  border-radius: 100px;
  margin-bottom: 10px;
}

.demo-video-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
}

.demo-video-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-muted, #64748b);
}

.demo-video-section .section-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .demo-video-section {
    padding: 56px 16px;
  }
  .demo-video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .demo-video-section .section-subtitle {
    margin-bottom: 32px;
  }
}

/* ========================================
   CONCEPT DIAGRAM - コンセプト図セクション
   ======================================== */
.concept-diagram {
  margin-top: 56px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--color-border, #e2e8f0);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

/* メインコンセプト（CX to Backoffice DX） */
.concept-diagram--main {
  margin-top: 48px;
  padding: 48px 40px;
  border: 2px solid rgba(249, 115, 22, 0.25);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.concept-diagram--main .concept-diagram-title {
  font-size: clamp(22px, 3.5vw, 28px);
}

/* 弊社の対応範囲（見出しブロック） */
.concept-scope {
  margin-top: 56px;
  margin-bottom: 8px;
  text-align: center;
}
.concept-scope__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: #0f172a;
}
.concept-scope__lead {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted, #64748b);
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* 対応範囲の図（サブブロック） */
.concept-diagram--scope {
  margin-top: 28px;
  padding: 32px 40px;
}
.concept-diagram--scope .concept-diagram-title {
  font-size: clamp(18px, 2.5vw, 22px);
}

.concept-diagram-title {
  margin: 0 0 8px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  text-align: center;
  color: #0f172a;
}

.concept-diagram-subtitle {
  margin: 0 0 28px;
  font-size: 14px;
  text-align: center;
  color: var(--color-muted, #64748b);
  line-height: 1.6;
}

.concept-diagram-image {
  overflow-x: auto;
  padding-bottom: 8px;
}
.concept-diagram-image img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.concept-whitepaper-cta {
  max-width: 640px;
  margin: 1.25rem auto 1.5rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}
.concept-whitepaper-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.concept-whitepaper-cta__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #c2410c;
  text-transform: uppercase;
}
.concept-whitepaper-cta__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-color, #334155);
  max-width: 36em;
}
.concept-whitepaper-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  background: var(--color-accent, #f97316);
  color: #fff !important;
  transition: background 0.2s, transform 0.15s;
}
.concept-whitepaper-cta__btn:hover {
  background: var(--color-accent-dark, #ea580c);
  color: #fff !important;
  transform: translateY(-1px);
}
.concept-whitepaper-cta--form {
  background: #fff;
  border-color: var(--color-border, #e2e8f0);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.concept-whitepaper-cta--form .aurant-whitepaper-download {
  margin: 0 auto;
  max-width: 520px;
  border: none;
  box-shadow: none;
  padding: 16px 8px 24px;
}

.concept-diagram-caption {
  margin: 20px 0 0;
  font-size: 13px;
  text-align: center;
  color: var(--color-muted, #64748b);
  line-height: 1.6;
}

.concept-diagram-subtitle--lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}

.concept-diagram-image--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.concept-diagram-image--pair figure {
  margin: 0;
}
.concept-diagram-image--pair figure img {
  max-width: 100%;
}
.concept-diagram-image--pair figcaption {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: var(--color-muted, #64748b);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .concept-diagram {
    margin-top: 40px;
    padding: 24px 16px;
    border-radius: 14px;
  }
  .concept-diagram-image {
    margin-left: -8px;
    margin-right: -8px;
  }
  .concept-diagram-image img {
    min-width: 600px;
  }
  .concept-diagram-image--pair {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .concept-diagram-image--pair figure img {
    min-width: 0;
  }
}

/* ========================================
   SHORTCODE: CX Concept Diagram
   [aurant_cx_concept]
   ======================================== */
.aurant-cx-concept {
  margin: 32px 0;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border, #e2e8f0);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.aurant-cx-concept--minimal {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.aurant-cx-concept--compact {
  padding: 24px;
}

.aurant-cx-concept__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  text-align: center;
  color: #0f172a;
}

.aurant-cx-concept__subtitle {
  margin: 0 0 24px;
  font-size: 14px;
  text-align: center;
  color: var(--color-muted, #64748b);
  line-height: 1.6;
}

.aurant-cx-concept__image {
  overflow-x: auto;
  padding-bottom: 8px;
}
.aurant-cx-concept__image img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}
.aurant-cx-concept--minimal .aurant-cx-concept__image img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.aurant-cx-concept__caption {
  margin: 20px 0 0;
  font-size: 13px;
  text-align: center;
  color: var(--color-muted, #64748b);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .aurant-cx-concept {
    margin: 24px 0;
    padding: 20px 16px;
    border-radius: 12px;
  }
  .aurant-cx-concept__image {
    margin-left: -8px;
    margin-right: -8px;
  }
  .aurant-cx-concept__image img {
    min-width: 500px;
  }
}

/* ========================================
   SHORTCODE: Demo Videos
   [aurant_demo_videos]
   ======================================== */
.aurant-demo-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.aurant-demo-video-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--color-border, #e2e8f0);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aurant-demo-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.aurant-demo-video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.aurant-demo-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.aurant-demo-video-info {
  padding: 16px;
}

.aurant-demo-video-tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9a3412;
  background: #ffedd5;
  border-radius: 100px;
  margin-bottom: 8px;
}

.aurant-demo-video-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
}

.aurant-demo-video-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--color-muted, #64748b);
}

@media (max-width: 640px) {
  .aurant-demo-videos {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========================================
   SIDEBAR: Concept & Demo Sections
   ======================================== */
.archive-sidebar__concept {
  padding-bottom: 20px;
}
.archive-sidebar__concept-image {
  margin-top: 12px;
}
.archive-sidebar__concept-image a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.archive-sidebar__concept-image a:hover {
  opacity: 0.85;
}
.archive-sidebar__concept-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--color-border, #e2e8f0);
}
.archive-sidebar__concept-caption {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--color-muted, #64748b);
  text-align: center;
  line-height: 1.5;
}

.archive-sidebar__whitepaper {
  margin: 4px 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border, #e2e8f0);
}
.archive-sidebar__whitepaper-card {
  display: block;
  position: relative;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 48%);
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.archive-sidebar__whitepaper-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.18);
  border-color: var(--color-accent, #f97316);
}
.archive-sidebar__whitepaper-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--color-accent, #f97316);
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}
.archive-sidebar__whitepaper-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 140px;
  overflow: hidden;
  background: #0f172a;
}
.archive-sidebar__whitepaper-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.archive-sidebar__whitepaper-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 88px;
  position: relative;
}
.archive-sidebar__whitepaper-svg {
  width: 100%;
  height: 100%;
  max-height: 100px;
  object-fit: contain;
  opacity: 0.95;
}
.archive-sidebar__whitepaper-pdf {
  position: absolute;
  bottom: 10px;
  right: 12px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  color: #c2410c;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.archive-sidebar__whitepaper-title {
  margin: 12px 14px 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a !important;
  letter-spacing: -0.02em;
}
.archive-sidebar__whitepaper-lead {
  margin: 0 14px 10px;
  font-size: 11px;
  line-height: 1.65;
  color: #64748b !important;
}
.archive-sidebar__whitepaper-cta {
  display: block;
  margin: 0;
  padding: 10px 14px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent, #f97316) !important;
  background: rgba(255, 237, 213, 0.6);
  border-top: 1px solid rgba(249, 115, 22, 0.15);
}
.archive-sidebar__whitepaper-card:hover .archive-sidebar__whitepaper-cta {
  background: #ffedd5;
}
.archive-sidebar__whitepaper-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.archive-sidebar__whitepaper-card:hover .archive-sidebar__whitepaper-arrow {
  transform: translateX(3px);
}

/* デモ動画セクション */
.archive-sidebar__demos {
  margin-top: 8px;
}
.archive-sidebar__demo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.archive-sidebar__demo-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--color-border, #e2e8f0);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.archive-sidebar__demo-video {
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.archive-sidebar__demo-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.archive-sidebar__demo-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.archive-sidebar__demo-tag {
  display: inline-block;
  width: fit-content;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #9a3412;
  background: #ffedd5;
  border-radius: 100px;
}
.archive-sidebar__demo-title {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}
.archive-sidebar__demo-more {
  display: block;
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent, #f97316);
  text-align: center;
  background: #fff7ed;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.archive-sidebar__demo-more:hover {
  background: #ffedd5;
}

/* ---------------------------------------------------------------------------
 * Manga DX Hub & Content
 * --------------------------------------------------------------------------- */
.manga-dx-hub-page .service-archive-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  border-bottom: 4px solid #fecb2f;
}
.manga-dx-hub-page .service-archive-hero__kicker {
  color: #fecb2f;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.manga-dx-hub-note {
  background: #f8f9fa;
  padding: 15px 20px;
  border-left: 5px solid #333;
  margin-bottom: 30px;
  font-size: 0.95rem;
}
.manga-dx-hub-page .service-archive-card {
  border: 2px solid #333;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
  background: #fff;
}
.manga-dx-hub-page .service-archive-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 8px 8px 0px #333;
}
.manga-dx-hub-page .service-archive-card__thumb img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.manga-dx-hub-page .service-archive-card:hover .service-archive-card__thumb img {
  filter: grayscale(0%);
}
.manga-dx-hub-page .service-archive-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Single Post Specifics for Manga */
.manga-dx-content {
  max-width: 800px;
  margin: 40px auto;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}
.manga-dx-content img {
  border: 4px solid #000;
  box-shadow: 10px 10px 0px #eee;
  display: block;
  margin: 0 auto 30px;
}
.manga-dx-content p {
  font-size: 1.1rem;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  position: relative;
}
.manga-dx-content p::before {
  content: "Dialogue";
  position: absolute;
  top: -12px;
  left: 20px;
  background: #333;
  color: #fff;
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: 4px;
}
