.top2026 h2{
  all:unset;

  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
    :root {
      --primary: #121212;
      --primary-dark: #101010;
      --primary-light: #e8f4fb;
      --text-dark: #111827;
      --text-gray: #6b7280;
      --text-light: #9ca3af;
      --bg-white: #ffffff;
      --bg-light: #f9fafb;
      --bg-blue-light: #eff6ff;
      --border: #e5e7eb;
      --dark: #0f172a;
      --dark-secondary: #1e293b;
      --blue-back: #007cba;
      --blue-back-dark: #005f8e;
      --radius: 12px;
      --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
      --shadow-hover: 0 8px 32px rgba(0,124,186,0.15);
      --transition: 0.3s ease;
    }


/* ========== LAYOUT ========== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; }
    .section-sm { padding: 60px 0; }
/* ========== TYPOGRAPHY ========== */
    .section-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: var(--primary);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .section-title.dark { color: var(--text-dark); }
    .section-title.white { color: #fff; }
    .section-sub {
      font-size: 16px;
      color: var(--text-gray);
      max-width: 560px;
      margin: 0 auto;
    }
    .section-sub.left { margin: 0; }
    .text-center { text-align: center; }

    /* ========== BUTTONS ========== */
    .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--primary);
      color: #fff!important;
      border-color: var(--primary);
    }
    .btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }
    .btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
    .btn-outline-white {
      background: transparent;
      color: #fff;
      border-color: rgba(255,255,255,0.6);
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
    .btn-white {
      background: #fff;
      color: var(--primary);
      border-color: #fff;
    }
    .btn-white:hover { background: #f0f8ff; transform: translateY(-1px); }
    .btn-hero svg { flex-shrink: 0; }
    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    /* スライドショー */
    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      animation: heroFade 15s infinite;
    }
    .hero-slide:nth-child(1) { animation-delay: 0s; }
    .hero-slide:nth-child(2) { animation-delay: 5s; }
    .hero-slide:nth-child(3) { animation-delay: 10s; }
    @keyframes heroFade {
      0%   { opacity: 1; }
      33%  { opacity: 1; }
      40%  { opacity: 0; }
      100% { opacity: 0; }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to right, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.48) 50%, rgba(255,255,255,0) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      padding-top: 64px;
      max-width: 660px;
    }
    .hero-title {
      font-size: clamp(48px, 7vw, 76px);
      font-weight: 800;
      color: var(--primary);
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 24px;
    }
    .hero-title img{
      max-width:400px;
      width: 100%;
      height: auto;
    }
    .hero-sub {
      font-size: 18px;
      color: var(--text-gray);
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 520px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* ========== CARDS ========== */
    .card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: var(--transition);
    }
    .card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: rgba(0,124,186,0.2); }
    .card-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
    .card-text { font-size: 15px; color: var(--text-gray); line-height: 1.7; }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* ========== ICON CARD ========== */
    .icon-circle {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
    }
    .icon-circle svg { stroke: var(--primary); }
    .icon-row { display: flex; align-items: flex-start; gap: 16px; }

    /* ========== SECTION: PROBLEMS ========== */
    #problems { background: var(--bg-light); }
    .problem-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
    }
    .problem-card .card-title { color: var(--primary); font-size: 19px; margin-bottom: 12px; }

    /* ========== SECTION: PRODUCTS ========== */
    .product-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      cursor: pointer;
    }
    .product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: rgba(0,124,186,0.25); }
    .product-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      background: var(--bg-blue-light);
      transition: transform 0.4s ease;
    }
    .product-card:hover .product-img { transform: scale(1.05); }
    .product-img-wrap { overflow: hidden; height: 220px; }
    .product-body { padding: 28px; }
    .product-name { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
    .product-desc { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; }
    .product-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 600; color: var(--primary);
      transition: gap var(--transition);
    }
    .product-link:hover { gap: 10px; }

    /* ========== SECTION: INDUSTRY ========== */
    #solutions { background: var(--bg-white); }
    .industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
    .industry-tabs { display: flex; flex-direction: column; gap: 12px; }
    .industry-tab {
      background: var(--bg-light);
      border: 1.5px solid transparent;
      border-radius: var(--radius);
      padding: 24px 28px;
      cursor: pointer;
      transition: var(--transition);
    }
    .industry-tab:hover, .industry-tab.active {
      background: var(--primary-light);
      border-color: var(--primary);
    }
    .industry-tab-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
    .industry-tab.active .industry-tab-title { color: var(--primary); }
    .industry-tab-desc { font-size: 14px; color: var(--text-gray); line-height: 1.65; }
    .industry-img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      height: 440px;
      background: var(--bg-blue-light);
      position: sticky;
      top: 100px;
    }
    .industry-img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* ========== SECTION: STATS ========== */
    #stats { background: var(--bg-light); }
    .stat-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 32px;
      text-align: center;
    }
    .stat-num {
      font-size: 52px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
    .stat-desc { font-size: 14px; color: var(--text-gray); }

    /* ========== SECTION: LOGO TICKER ========== */
    .ticker-section { padding: 48px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .ticker-label { text-align: center; font-size: 14px; color: var(--text-light); margin-bottom: 28px; font-weight: 500; letter-spacing: 0.05em; }
    .ticker-track-wrap { overflow: hidden; }
    .ticker-track {
      display: flex;
      gap: 16px;
      animation: ticker 20s linear infinite;
      width: max-content;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      min-width: 130px;
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .ticker-abbr { font-size: 22px; font-weight: 800; color: var(--primary); }
    .ticker-name { font-size: 11px; color: var(--text-gray); text-align: center; line-height: 1.4; }

    /* ========== SECTION: BLUE MISSION ========== */
    #mission { background: var(--blue-back); padding: 100px 0; }
    #mission .section-title { color: #fff; font-size: clamp(26px, 4vw, 40px); text-align: center; margin-bottom: 20px; }
    #mission .section-sub { color: rgba(255,255,255,0.85); text-align: center; margin: 0 auto 56px; max-width: 680px; font-size: 16px; line-height: 1.8; }
    .mission-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .mission-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius);
      padding: 32px;
      transition: var(--transition);
    }
    .mission-card:hover { background: rgba(255,255,255,0.18); }
    .mission-icon {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .mission-icon svg { stroke: #fff; }
    .mission-card-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .mission-card-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }

    /* ========== SECTION: CASES ========== */
    #cases { background: var(--bg-white); }
    .case-desc-card {
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      margin-bottom: 16px;
      font-size: 14px;
      line-height: 1.75;
    }
    .testimonial-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      transition: var(--transition);
    }
    .testimonial-card:hover { box-shadow: var(--shadow-hover); border-color: rgba(0,124,186,0.2); }
    .testimonial-company { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
    .testimonial-result { font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 14px; }
    .testimonial-quote { font-size: 14px; color: var(--text-gray); line-height: 1.7; font-style: italic; }
    .cases-link { text-align: center; margin-top: 40px; }
    .text-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 15px; font-weight: 600; color: var(--primary)!important;
      transition: gap var(--transition);
    }
    .text-link:hover { gap: 10px; }

    /* ========== SECTION: DARK CTA ========== */
    #cta-bottom {
      background: var(--dark);
      padding: 100px 0;
      text-align: center;
    }
    #cta-bottom .section-title { color: #fff; font-size: clamp(28px, 4vw, 46px); margin-bottom: 20px; }
    #cta-bottom .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
    .cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

    /* ========== FOOTER ========== */
    .footer { background: var(--dark-secondary); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
    .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-brand .logo { color: #fff; font-size: 18px; margin-bottom: 16px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; }
    .footer-col-title { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-link { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
    .footer-link:hover { color: #fff; }
    .footer-products { padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-products-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
    .footer-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .footer-product-cat { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
    .footer-product-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-product-link { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
    .footer-product-link:hover { color: #fff; }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 0;
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { color: rgba(255,255,255,0.4); transition: color var(--transition); font-size: 12px; }
    .footer-legal a:hover { color: rgba(255,255,255,0.7); }

    /* ========== SCROLL ANIMATIONS ========== */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in:nth-child(2) { transition-delay: 0.1s; }
    .fade-in:nth-child(3) { transition-delay: 0.2s; }

    /* ========== MOBILE NAV ========== */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 64px 0 0 0;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu .nav-link { font-size: 20px; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-product-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .section { padding: 70px 0; }
      .nav, .header-cta .btn-hero { display: none; }
      .hamburger { display: block; }
      .grid-3 { grid-template-columns: 1fr; gap: 16px; }
      .industry-grid { grid-template-columns: 1fr; }
      .industry-img-wrap { height: 280px; position: static; }
      .mission-cards { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .footer-product-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-title { font-size: 42px; letter-spacing: -0.5px; }
      .hero-overlay { background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 100%); }
      .cta-actions { flex-direction: column; align-items: center; }
    }
    @media (max-width: 480px) {
      .grid-3 { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .footer-product-grid { grid-template-columns: 1fr; }
      .stat-num { font-size: 42px; }
    }

/* ========== ナビ点線縦区切り削除 ========== */
ul#navi_ul > li > a::before,
ul#navi_ul > li > p::before,
ul#navi_ul > li > a::after,
ul#navi_ul > li > p::after {
    display: none !important;
    content: none !important;
}

/* ========== header 資料請求ボタン ========== */
ul#navi_ul > li:last-child {
    margin-left: 15px;
    display: flex;
    align-items: center;
}
ul#navi_ul li a.more2.ore {
    background: transparent !important;
    color: #000;
    border: 1px solid #000;
    padding: 5px 20px;
    transition: 0.3s;
    min-height: auto;
    height: auto;
}
ul#navi_ul li a.more2.ore:hover {
    background: #00A1D5 !important;
    border-color: #00A1D5 !important;
    color: #fff !important;
    opacity: 1;
}
ul#navi_ul li a.more2.ore::after,
ul#navi_ul li a.more2.ore::before {
    display: none;
}

/* ========== hero グラデーションオーバーレイ ========== */

/* ========== home: bodyのpadding-topをリセット ========== */
html body.home,
html body.front-page,
html body.blog.home {
    padding-top: 0 !important;
}
.home .top2026 {
    margin-top: -80px !important;
}

/* ========== header ========== */
#header {
    height: 80px !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%) !important;
    box-shadow: none !important;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header:not(.fixed) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%) !important;
}
#header.fixed {
    background: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
}

/* ナビ文字: デフォルト白 */
ul#navi_ul > li > a,
ul#navi_ul li > p {
    color: #fff;
    transition: color 0.4s ease;
}
#header.fixed ul#navi_ul > li > a,
#header.fixed ul#navi_ul li > p {
    color: #000;
}

/* 資料請求ボタン: デフォルト白枠 */
ul#navi_ul li a.more2.ore {
    border-color: #fff;
    /*color: #fff !important;*/
}
#header.fixed ul#navi_ul li a.more2.ore {
    border-color: #000;
    color: #000!important;
}
#header.fixed ul#navi_ul li a.more2.ore:hover{
  color: #fff!important;
}

/* ========== header .container ========== */
#header .container {
    max-width: 1280px;
    width: 100%;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

#logo.logo-left {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}
#logo a img {
    max-height: 52px !important;
}
#navi {
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    height: 100%;
}
ul#navi_ul,
ul#navi_ul > li {
    height: 80px;
}
ul#navi_ul > li > a,
ul#navi_ul li > p {
    font-size: 88%;
    font-weight: normal;
    display: flex;
    align-items: center;
    height: 100%;
}


/* ============================================================
   CTA SECTION  ▶ footer.php
   ============================================================ */
.section_footer {
  padding: clamp(48px, 7vw, 96px) 0;
}

.cta {
  background: linear-gradient(
    135deg,
    #F1EDFB 0%,
    #EBE7F9 25%,
    #EDF3FB 55%,
    #E4F3FA 80%,
    #EEF6F9 100%
  );
}

.btn_footer {
  gap: 24px;
  min-width: 200px;
  font-family: var(--font-display);
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.btn--primary_footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background-color: #1A2954;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid #1A2954;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary_footer:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    filter: brightness(.92);
}

.btn--ghost_footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background-color: transparent;
  color: #1A2954;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid #1A2954;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn--ghost_footer:hover {
  color: #1A2954;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  filter: brightness(.92);
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .cta .row {
    gap: 30px;
  }
  .cta__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .btn_footer {
    width: 100%;
    max-width: 320px;
  }
}


/* ============================================================
   FOOTER  ▶ footer.php
   ============================================================ */
.footer_2026 {
  margin-top: 0;
  background: #0b1020;
  color: rgba(255, 255, 255, 0.8);
}

.footer_2026::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #4f8cff, #27d3b2);
}

.footer__inner {
  padding: clamp(48px, 7vw, 96px) 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__brand-title {
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.footer__brand-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}

.footer__brand-title img {
  width: 40%;
  height: auto;
}

.footer__sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sitemap-group__title {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  width: 100%;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.sitemap-list li {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}

.sitemap-list a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap-list a:hover {
  color: #007bff;
}

@media (max-width: 1000px) {
  .footer__sitemap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

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

.footer__bottom {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
}

.footer__cols {
  padding: 0;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero__mission-eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__mission-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.home h2 {
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.section__lead {
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #6b7280;
}

/* ========== スマホハンバーガーナビ修正 (≤1000px) ========== */
@media (max-width: 1000px) {
    /* 高さをコンテンツに合わせる（PC用の height: 100% / 80px を上書き） */
    #navi {
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    header nav {
        overflow-x: hidden !important;
    }
    ul#navi_ul,
    ul#navi_ul > li {
        height: auto !important;
    }

    /* 全メニュー項目の高さ・パディングを均一に */
    ul#navi_ul > li > a,
    ul#navi_ul > li > p {
        min-height: 44px !important;
        padding: 11px 40px 11px 26px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        line-height: 1.4 !important;
    }

    /* 資料請求（最後のli）: 下線なし、ボタン周りに余白 */
    ul#navi_ul > li:last-child {
        border-bottom: none !important;
        padding: 14px 16px !important;
        margin-left: 0 !important;
        display: block !important;
    }
    ul#navi_ul > li:last-child > a {
        display: block !important;
        text-align: center !important;
        min-height: auto !important;
        padding: 10px 16px !important;
        justify-content: center !important;
    }

    /* underlinkのダーク背景を廃止・青線なし */
    #navi .underlink {
        background: #f5f7fa !important;
        border-left: none !important;
        padding: 0 !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
    }
    /* container幅制限を解除 */
    #navi .underlink .container {
        max-width: 100% !important;
        padding: 0 !important;
        width: 100% !important;
    }
    /* サブアイテムのリンク：暗色テキスト・幅いっぱいの下線 */
    #navi .underlink #catnav {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    #navi .underlink a,
    #navi ul#navi_ul #dropdown-1 li a {
        color: #333 !important;
        padding: 10px 16px 10px 28px !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }
    #navi .underlink a:hover,
    #navi ul#navi_ul #dropdown-1 li a:hover {
        background: rgba(63,169,245,0.1) !important;
        color: #3fa9f5 !important;
    }
    /* PC用の横並びグリッドを縦並びに（nosp非表示・nopc表示） */
    #navi .underlink .nosp {
        display: none !important;
    }
    #navi .underlink .nopc {
        display: block !important;
        width: 100% !important;
    }
}

/* ========== PC 製品一覧ドロップダウン：カード幅を広げる ========== */
@media (min-width: 1001px) {
    .underlink .container {
        max-width: 1280px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    #dropdown-1 li {
        width: auto !important;
        flex: 1 1 150px !important;
        min-width: 130px !important;
        max-width: 230px !important;
    }
    .underlink figure {
        height: 170px !important;
    }
}