﻿@charset "UTF-8";

/* ========================================================
   Variables & Base
   ======================================================== */
:root {
  --top2026-color-main-blue: #02153D;
  --top2026-color-green: #21CFAE;
  --top2026-color-text: #1a1a1a;
  --top2026-color-bg-gray: #F2F4F7;
  --top2026-color-white: #ffffff;
  --top2026-color-red: #C71749;
  --top2026-color-gold: #f2c94c;
  --top2026-gradient-green: linear-gradient(90deg, #21CFAE 0%, #00A686 100%);
  
  --top2026-font-base: 'Noto Sans JP', sans-serif;
  --top2026-font-en: 'Jost', sans-serif;
  
  --top2026-content-width: 1200px;
}
.top2026-pc-only {
  display: block;
}
.top2026-sp-only {
  display: none;
}

.footer-cta-item{
  border-radius: 12px;
}

.footer-cta-item-ttl-en{
  color: var(--top2026-color-green);
}

.header-cta-request a, .footer-cta-item-01 .footer-cta-item-btn a{
  background: var(--top2026-gradient-green);
}

/* Utilities */
.top2026-text-green {
  color: var(--top2026-color-green);
}

.top2026-text-dot {
  position: relative;
  display: inline-block;
}

.top2026-text-dot:before{
  content: attr(data-emphasis);
  position: absolute;
  top: -0.75em;
  left: 0;
  font-size: inherit;
  color: var(--top2026-color-green);
  -webkit-text-stroke: 3px var(--top2026-color-bg-gray);
  text-stroke: 3px var(--top2026-color-bg-gray);
}

.top2026-text-underline {
  border-bottom: 4px solid var(--top2026-color-green);
  padding-bottom: 0px;
}

.top2026-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.top2026-tag {
  display: inline-block;
  border: 1px solid var(--top2026-color-text);
  padding: 5px 10px;
  font-size: 14px;
  margin: 0 4px 8px 0;
  line-height: 1;
  background: var(--top2026-color-white);
}

/* Buttons */
.top2026-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.top2026-btn:hover {
  opacity: 0.8;
}

.top2026-btn-green {
  background: var(--top2026-gradient-green);
  background-size: 105% 100%;
  background-position: 5% center;
  color: var(--top2026-color-white);
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.top2026-btn-green:before{
  content: '';
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index:-1;
}

@media (hover: hover) {
  .top2026-btn-green:hover:before {
    opacity:1;
    visibility: visible;
  }
  .top2026-btn-green:hover{
    color: var(--top2026-color-green);
  }
}

.top2026-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  background-color: var(--top2026-color-white);
  color: var(--top2026-color-main-blue);
  border: 1px solid var(--top2026-color-main-blue);
  padding: 12px 60px;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.top2026-btn-outline:hover {
  background-color: var(--top2026-color-main-blue);
  color: var(--top2026-color-white);
}

.top2026-icon-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
}

.top2026-icon-circle-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--top2026-color-green);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}
.top2026-icon-circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--top2026-color-white);
  border-right: 2px solid var(--top2026-color-white);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ========================================================
   KV (Key Visual) - 1st_02
   ======================================================== */
.top2026-kv {
  background:var(--top2026-color-bg-gray) url(https://mercart.jp/cms/mer/img/top2026/kv-bg.svg) no-repeat center right;
  padding: 35px 20px 20px;
  position: relative;
  overflow: hidden;
}

.top2026-kv-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top2026-kv-content {
  width: 720px;
}

.top2026-kv-image {
  width: 480px;
  aspect-ratio: 530 / 360;
}

.top2026-kv-image img{
  width: 100%;
  transform:scale(1.034);
  display: block;
  position: relative;
  right: -30px;
}


.top2026-kv-label {
  display: inline-block;
  background-color: var(--top2026-color-main-blue);
  color: var(--top2026-color-white);
  padding: 2px 20px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.top2026-kv-title {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.top2026-kv-title .small-txt {
  font-size: .7em;
}

.top2026-kv-title-main {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  left: -20px;
}

.top2026-kv-title-sub {
  display: block;
  font-size: 36px;
  font-weight: 600;
}

.top2026-kv-title-sub .small-text {
  font-size: .7em;
}
.top2026-kv-desc {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 500;
}

/* Achievements */
.top2026-kv-achievements {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 0px;
}

.top2026-kv-achievement-item {
  position: relative;
  text-align: center;
  flex: 1;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ranking Ornament ::before and ::after */
.top2026-kv-achievement-item::before,
.top2026-kv-achievement-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 70px;
  background: url('https://mercart.jp/cms/mer/img/top2026/laurel-left.svg') no-repeat center center;
  background-size: contain;
}

.top2026-kv-achievement-item::before {
  left: 0;
}

.top2026-kv-achievement-item::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.top2026-kv-achievement-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2;
}

.top2026-kv-achievement-val {
  font-family: var(--top2026-font-en);
  font-size: 36px;
  font-weight: 600;
  color: var(--top2026-color-main-blue);
  line-height: 1;
}

.top2026-kv-achievement-unit {
  font-size: 18px;
  margin-left: 2px;
  font-family: var(--top2026-font-base);
  color: var(--top2026-color-text);
}

.top2026-kv-achievement-note {
  font-size: 10px;
  vertical-align: top;
  margin-left: -17px;
  position: relative;
  top: 2px;
}

/* CTA Area */
.top2026-kv-action {
  text-align: center;
}

.top2026-kv-action-text {
  font-weight: 600;
  color: var(--top2026-color-text);
  margin-bottom: 10px;
  font-size: 16px;
}

.top2026-kv-notes {
  max-width: var(--top2026-content-width);
  margin: 30px 0 0 auto;
  font-size: 10px;
  color: var(--top2026-color-text);
  text-align: right;
}

/* ========================================================
   Logo Slider - 1st_03
   ======================================================== */
.top2026-logo-slider {
  padding: 30px 0;
  overflow: hidden;
  background: var(--top2026-color-white);
}

.top2026-logo-slider-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top2026-logo-slide-row1,
.top2026-logo-slide-row2 {
  display: flex;
  width: 100%;
  overflow: hidden;
  gap: 48px;
}

/* CSS アニメーション版: track */
.top2026-logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  min-width: 100%;
  flex-shrink: 0;
  will-change: transform;
  -webkit-animation: logo-scroll-left 60s linear infinite;
  animation: logo-scroll-left 60s linear infinite;
}

.top2026-logo-track-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@-webkit-keyframes logo-scroll-left {
  0%   { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
}
@keyframes logo-scroll-left {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.top2026-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top2026-logo-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ========================================================
   About - 1st_04
   ======================================================== */
.top2026-about {
  padding: 60px 20px 80px;
  background: radial-gradient(ellipse at center, #e6f8f5 0%, #ffffff 70%);
  text-align: center;
}

.top2026-about-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-about-subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing:  0.05em;
  margin-bottom: 30px;
}

.top2026-about-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  letter-spacing:  0.05em;
}

/* ========================================================
   Reasons - 1st_05
   ======================================================== */
.top2026-reasons {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--top2026-color-bg-gray);
  background-image: url(https://mercart.jp/cms/mer/img/top2026/kv-reasons-pc.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center 100px;
}

.top2026-reasons-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-reasons-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--top2026-color-green);
}

.top2026-reasons-main-img {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.top2026-reasons-main-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.top2026-reasons-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.top2026-reasons-card {
  flex: 1;
  padding: 30px 0px;
  text-align: left;
}

.top2026-reasons-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.top2026-reasons-card-img {
  margin-bottom: 20px;
  text-align: center;
  background: var(--top2026-color-white);
  border-radius: 12px;
}

.top2026-reasons-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--top2026-color-text);
}


/* ========================================================
   CTA Component - 1st_06
   ======================================================== */
.top2026-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 18px 0 24px;
  text-align: center;
  background-color: var(--top2026-color-main-blue);
  background-size: cover;
  background-position: center;
}

.top2026-cta::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1200px;
  height: 227px;
  background: url("https://mercart.jp/cms/mer/img/top2026/cta-bg.svg") no-repeat 0 0;
  background-size: 100% 100%;
  transform: translateX(-50%);
}

.top2026-cta-ttl {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  color: var(--top2026-color-white);
  letter-spacing: 0.1em;
}

.top2026-cta-ttl span {
  font-size: 40px;
}

.top2026-cta-ttl b {
  font-size: 40px;
  font-weight: 600;
}

.top2026-cta-txt {
  position: relative;
  margin: 0 0 16px;
  padding: 1px 22px;
  border: 2px solid var(--top2026-color-white);
  border-radius: 4px;
  color: var(--top2026-color-main-blue);
  font-size: 16px;
  font-weight: 600;
  background: var(--top2026-color-white);
}

.top2026-cta-txt::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--top2026-color-white);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  transform: translateX(-50%);
}

.top2026-cta-txt::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--top2026-color-white);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  transform: translateX(-50%);
}

.top2026-cta-btn {
  position: relative;
  width: 640px;
}

.top2026-cta-btn span {
  display: grid;
  place-items: center;
  position: absolute;
  top: -46px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background: var(--red-gradient);
  z-index: 1;
}

.top2026-cta-btn span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 14px;
  width: 10px;
  height: 16px;
  background: #ea4335;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: rotate(12deg);
}

.top2026-cta-btn a {
  display: block;
  padding: 17px;
  border-radius: 40px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: var(--top2026-gradient-green);
  background-size: 105% 100%;
  background-position: 5% center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow:hidden;
  z-index:0;
}

.top2026-cta-btn a::before{
  content: '';
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index:-1;
  display: block;
}

@media (hover: hover) {
  .top2026-cta-btn a:hover:before {
    opacity:1;
    visibility: visible;
  }
  .top2026-cta-btn a:hover {
    color: var(--top2026-color-green);
  }
}


/* ========================================================
   Functions - 2nd_01
   ======================================================== */
.top2026-functions {
  padding: 80px 20px;
  background-color: var(--top2026-color-white);
}

.top2026-functions-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-functions-desc {
  text-align: center;
  margin-bottom: 50px;
  font-size: 14px;
  line-height: 1.8;
}

.top2026-functions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.top2026-functions-card {
  width: calc(50% - 15px);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.top2026-functions-card-img {
  background-color: var(--top2026-color-bg-gray);
  padding: 8px 20px;
  text-align: center;
}

.top2026-functions-card-body {
  padding: 30px;
  background: var(--top2026-color-white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top2026-functions-card-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}
.top2026-functions-card-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background-color: var(--top2026-color-green);
}

.top2026-functions-card-tagline {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
}

.top2026-functions-card-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  flex: 1;
}

.top2026-functions-card-tags {
  border-top: 1px solid #eee;
  margin: 0 -30px;
  padding: 20px 30px 0;
  overflow: hidden;
}

.top2026-functions-card-tags-label {
  font-size: 14px;
  height: 100%;
  font-weight: 400;
  float: left;
  white-space: nowrap;
  margin-right: 8px;
  line-height: 1.8;
}

.top2026-functions-action {
  text-align: center;
}
.top2026-functions-action .top2026-btn-outline,
.top2026-support-action .top2026-btn-outline,
.top2026-security-action .top2026-btn-outline,
.top2026-cases-btn .top2026-btn-outline,
.top2026-ns-action .top2026-btn-outline,
.top2026-documents-action .top2026-btn-outline,
.top2026-media-action .top2026-btn-outline {
  width: 360px;
}

/* ========================================================
   Integrations - 2nd_02 Top
   ======================================================== */
.top2026-integrations {
  padding: 80px 20px 50px;
  background-color: var(--top2026-color-bg-gray);
}

.top2026-integrations-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-integrations-desc {
  text-align: center;
  margin-bottom: 40px;
  font-size: 14px;
}

.top2026-integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.top2026-integrations-card {
  background: var(--top2026-color-white);
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 10px);
}
.top2026-integrations-card:nth-child(4) {
  flex: 1 1 100%;
}
.top2026-integrations-card:nth-child(5) {
  flex: 1 1 100%;
}

@media screen and (min-width: 768px) {
  .top2026-integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .top2026-integrations-card {
    flex: none;
  }
  .top2026-integrations-card:nth-child(4) {
    grid-column: span 2;
  }
  .top2026-integrations-card:nth-child(5) {
    grid-column: span 1;
  }
  .top2026-about-text {
    font-size: 16px;
  }
}

.top2026-integrations-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.top2026-integrations-card-header img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-right: 15px;
}

.top2026-integrations-card-header h3 {
  font-size: 15px;
  font-weight: 600;
}


/* ========================================================
   Support - 2nd_02 Bottom
   ======================================================== */
.top2026-support {
  padding: 0 20px 80px;
  background-color: var(--top2026-color-bg-gray);
}

.top2026-support-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-support-container {
  background: var(--top2026-color-white);
  border-radius: 20px;
  padding: 40px 40px 60px;
  text-align: center;
}

.top2026-support-eyebrow {
  display: inline-block;
  background: var(--top2026-color-bg-gray);
  color: var(--top2026-color-main-blue);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.top2026-support-desc {
  font-size: 14px;
  margin-bottom: 50px;
  line-height: 1.8;
}

.top2026-support-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.top2026-support-card {
  flex: 1;
  text-align: left;
}

.top2026-support-card-img {
  margin-bottom: 20px;
  width: 100%;
}

.top2026-support-card-label {
  background: var(--top2026-color-main-blue);
  color: var(--top2026-color-white);
  padding:4px 10px;
  text-align: center;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 16px;
}

.top2026-support-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.top2026-support-card-text {
  font-size: 14px;
  line-height: 1.6;
}

.top2026-support-action {
  text-align: center;
}

.top2026-support-link-text {
  margin-top: 20px;
  font-weight: 600;
}
.top2026-support-link-text a {
  color: var(--top2026-color-text);
  text-decoration: none;
}
.top2026-support-link-text a:hover {
  text-decoration: underline;
}

/* ========================================================
   Security - 2nd_03
   ======================================================== */
.top2026-security {
  padding: 80px 20px;
  background: var(--top2026-color-white);
  text-align: center;
}

.top2026-security-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-security-desc {
  font-size: 14px;
  margin-bottom: 50px;
}

.top2026-security-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.top2026-security-item {
  flex: 1;
  max-width: 200px;
}

.top2026-security-icon {
  width: 140px;
  height: 140px;
  background-color: var(--top2026-color-bg-gray);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top2026-security-icon img {
  max-width: 80px;
  max-height: 80px;
}

.top2026-security-item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.top2026-security-action {
  text-align: center;
}


/* ========================================================
   Achievements - 3rd_01
   ======================================================== */
.top2026-achievements {
  padding: 80px 20px;
  background-color: var(--top2026-color-bg-gray);
  text-align: center;
}

.top2026-achievements-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-achievements-desc {
  font-size: 14px;
  margin-bottom: 50px;
}

.top2026-achievements-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.top2026-achievements-item {
  flex: 1;
  text-align: center;
}

.top2026-achievements-item-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--top2026-color-text);
}
.top2026-achievements-item-alt .top2026-achievements-item-val{
  font-size: 34px;
  max-height: 110px;
}
.top2026-achievements-item-alt .top2026-achievements-item-title{
  font-size: 16px;
}
.top2026-achievements-item-alt .top2026-achievements-item-val-small{
  display: block;
  margin-bottom: 26px;
  color: var(--top2026-color-text);
  position: relative;
}
.top2026-achievements-item-alt .top2026-achievements-item-val-small::before {
content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: url(https://mercart.jp/cms/mer/img/top2026/icon-arrow.svg) no-repeat center center;
    background-size: contain;
    bottom: -22px;
    left: 0;
}
.top2026-achievements-item-alt .top2026-achievements-item-val-small .top2026-text-green{
  font-size: 32px;
}
.top2026-achievements-item-val {
  font-size: 70px;
  font-weight: 600;
  font-family: var(--top2026-font-en);
  color: var(--top2026-color-green);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

.top2026-achievements-item-val::before,
.top2026-achievements-item-val::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 130px;
  background: url('https://mercart.jp/cms/mer/img/top2026/laurel-left.svg') no-repeat center center;
  background-size: contain;
}
.top2026-achievements-item-val::before {
  left: -20px;
}
.top2026-achievements-item-val::after {
  right: -20px;
  transform: translateY(-50%) scaleX(-1);
}

.top2026-achievements-item-unit {
  font-size: 30px;
  font-family: var(--top2026-font-base);
}

.top2026-achievements-item-val-small {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.top2026-achievements-item-company {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.top2026-achievements-item-text {
  font-size: 14px;
  text-align: left;
}

/* ========================================================
   Issues - 3rd_02
   ======================================================== */
.top2026-issues {
  padding: 80px 20px;
  background-color: var(--top2026-color-white);
  text-align: center;
}

.top2026-issues-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-issues-desc {
  font-size: 14px;
  margin-bottom: 50px;
}

.top2026-issues-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 32px;
}

.top2026-issues-item {
  display: block;
  width: calc(33.333% - 20px);
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top2026-issues-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: border-color 0.3s ease;
}

.top2026-issues-item p {
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.top2026-issues-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--top2026-color-green);
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
}
.top2026-issues-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ========================================================
   Cases - 3rd_05
   ======================================================== */
.top2026-cases {
  padding: 80px 20px;
  background-color: var(--top2026-color-bg-gray);
  text-align: center;
}

.top2026-cases-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-cases-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.top2026-cases-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.top2026-cases-card {
  flex: 1;
  background: var(--top2026-color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: left;
}

.top2026-cases-card-img {
  position: relative;
}

.top2026-cases-card-img img {
  width: 100%;
  display: block;
}

.top2026-cases-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}

.top2026-cases-card-body {
  padding: 20px;
}

.top2026-cases-card-text {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
}

/* CDN swiper-bundle.min.css の .swiper-slide { width: 100% } を上書き */
.top2026-case-list .top-case-item {
  width: 280px;
}

.top2026-case-list .top-case-item a{
  border-radius: 12px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.top2026-case-list {
  margin: 0 0 48px;
}

.top2026-cases-btn {
  margin: 0 0 40px;
  text-align: center;
}

.top2026-cases-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top2026-cases-cta-txt {
  position: relative;
  margin: 0 0 16px;
  padding: 1px 22px;
  border: 2px solid var(--main-blue);
  border-radius: 4px;
  color: var(--main-blue);
  font-size: 16px;
  font-weight: bold;
  background: #fff;
}
.top2026-cases-cta-txt::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--main-blue);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  transform: translateX(-50%);
}
.top2026-cases-cta-txt::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  transform: translateX(-50%);
}
.top2026-cases-cta-btn {
  width: 460px;
}
.top2026-cases-cta-btn a {
  display: block;
  padding: 16px;
  border-radius: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: var(--top2026-gradient-green);
  background-size: 105% 100%;
  background-position: 5% center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.top2026-cases-cta-btn a::before {
  content: '';
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}

@media (hover: hover) {
  .top2026-cases-cta-btn a:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .top2026-cases-cta-btn a:hover {
    color: var(--top2026-color-green);
  }
}

/* ========================================================
   FAQ - override
   ======================================================== */
.top2026-faq .top-heading {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.top2026-faq {
  position: relative;
  padding: 80px 0;
  z-index: 0;
  background: var(--top2026-color-bg-gray);
}
.top2026-faq:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: -100vw;
  background: var(--top2026-color-bg-gray);
  z-index: -1;
}

/* ========================================================
   Industries - 3rd_06
   ======================================================== */
.top2026-industries {
  padding: 80px 20px;
  background-color: var(--top2026-color-white);
  text-align: center;
}

.top2026-industries-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-industries-desc {
  font-size: 14px;
  margin-bottom: 50px;
}

.top2026-industries-grid {
  display: flex;
  gap: 30px;
}

.top2026-industries-card {
  display: block;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  text-align: left;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top2026-industries-card-img {
  width: 100%;
  display: block;
}

.top2026-industries-card-body {
  padding: 30px 20px;
  background: var(--top2026-color-white);
}

.top2026-industries-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.top2026-industries-card-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.top2026-industries-card-link {
  display: inline-block;
  color: var(--top2026-color-text);
  text-decoration: none;
  font-weight: 600;
}

/* ========================================================
   Comparison - 3rd_07
   ======================================================== */
.top2026-comparison {
  padding: 80px 20px;
  background-color: var(--top2026-color-bg-gray);
  text-align: center;
}

.top2026-comparison-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-comparison-desc {
  font-size: 14px;
  margin-bottom: 50px;
}

.top2026-comparison-table-wrapper {
  overflow-x: auto;
}

.top2026-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--top2026-color-white);
  border-radius: 12px;
  overflow: hidden;
  min-width: 800px;
}

.top2026-comparison-table th,
.top2026-comparison-table td {
  padding: 20px;
  border: 1px solid #e6e6e6;
  text-align: center;
}

.top2026-comparison-table th {
  background-color: var(--top2026-color-main-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.top2026-comparison-table th span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
}

.top2026-comparison-table th:first-child {
  background-color: #F2F4F7;
  color: var(--top2026-color-text);
  vertical-align: middle;
  text-align: left;
  font-size: 14px;
}

.top2026-comparison-table td:first-child {
  font-weight: 600;
  font-size: 14px;
  background-color: #fafafa;
  text-align: left;
  vertical-align: middle;
}

.top2026-comparison-highlight {
  background-color: #F2F4F7;
}

.top2026-comparison-table th.top2026-comparison-highlight {
  background-color: #0059E1;
}

.top2026-comparison-table th.top2026-comparison-highlight span {
  background: #fff;
  color: #0059E1;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.top2026-comparison-val {
  font-size: 24px;
  font-weight: 600;
  color: #0059E1;
}

.top2026-badge-check {
  display: inline-block;
  background-color: #fff;
  color: #0059E1;
  border: 1px solid #e0e0e0;
  padding: 4px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.top2026-badge-check::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z' fill='%230059E1'/%3E%3Cpath d='M12 5.5L7 10.5L4 7.5' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  margin-right: 5px;
  vertical-align: middle;
  display: inline-block;
}

/* ========================================================
   News & Seminar - 4th_02
   ======================================================== */
.top2026-news-seminar {
  padding: 80px 20px;
  background-color: var(--top2026-color-bg-gray);
}

.top2026-news-seminar-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.top2026-ns-col {
  flex: 1;
  background: var(--top2026-color-white);
  padding: 55px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.top2026-ns-col > .top2026-ns-action {
  margin-top: auto;
}

.top2026-ns-desc {
  font-size: 14px;
  margin-bottom: 30px;
  text-align: center;
}

.top2026-seminar-card {
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top2026-seminar-card-img {
  width: 100%;
  border-radius: 12px;
}

.top2026-seminar-card-body {
  padding: 20px 0;
}

.top2026-seminar-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.top2026-seminar-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.top2026-ns-action {
  text-align: center;
}

.top2026-news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.top2026-news-list li {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.top2026-news-meta {
  margin-bottom: 10px;
}

.top2026-news-date {
  font-size: 14px;
  color: var(--top2026-color-green);
  margin-right: 15px;
}

.top2026-news-tag {
  font-size: 12px;
  border: 1px solid #333;
  padding: 2px 10px;
}

.top2026-news-title {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: inherit;
  text-decoration: none;
}

/* ========================================================
   Documents - 4th_03
   ======================================================== */
.top2026-documents {
  padding: 80px 20px 0;
  background-color: var(--top2026-color-white);
  text-align: center;
  
}

.top2026-documents-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-documents-desc {
  font-size: 14px;
  margin-bottom: 50px;
}

.top2026-documents-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.top2026-documents-card {
  display: block;
  flex: 1;
  text-align: left;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top2026-documents-card-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.top2026-documents-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.top2026-documents-action {
  text-align: center;
}

/* ========================================================
   Media - 4th_04
   ======================================================== */
.top2026-media {
  padding: 80px 20px;
  background-color: var(--top2026-color-white);
  text-align: center;
}

.top2026-media-inner {
  max-width: var(--top2026-content-width);
  margin: 0 auto;
}

.top2026-media-desc {
  font-size: 14px;
  margin-bottom: 50px;
}

.top2026-media-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.top2026-media-card {
  display: block;
  flex: 1;
  text-align: left;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top2026-media-card-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.top2026-media-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.top2026-media-action {
  text-align: center;
}

/* a タグ化されたカード・リンクのホバーエフェクト */
@media (hover: hover) {
  .top2026-industries-card:hover,
  .top2026-documents-card:hover,
  .top2026-media-card:hover,
  .top2026-seminar-card:hover {
    opacity: 0.8;
  }
  .top2026-news-title:hover {
    text-decoration: underline;
    color: var(--top2026-color-main-blue);
  }
  .top2026-issues-item:hover .top2026-issues-icon {
    border: 2px solid var(--top2026-color-green);
  }
  .top2026-issues-item:hover p {
    color: var(--top2026-color-green);
  }
  .top2026-seminar-card:hover .top2026-seminar-title {
    text-decoration: underline;
  }
  .top2026-documents-card:hover .top2026-documents-card-title {
    text-decoration: underline;
  }
  .top2026-media-card:hover .top2026-media-card-title {
    text-decoration: underline;
  }
}

/* ========================================================
   Responsive (max-width: 767px)
   ======================================================== */
@media screen and (max-width: 767px) {
  .top2026-functions-action .top2026-btn-outline,
  .top2026-support-action .top2026-btn-outline,
  .top2026-security-action .top2026-btn-outline,
  .top2026-cases-btn .top2026-btn-outline,
  .top2026-ns-action .top2026-btn-outline,
  .top2026-documents-action .top2026-btn-outline,
  .top2026-media-action .top2026-btn-outline {
    width: 80vw;
  }

  .top2026-pc-only {
    display: none !important;
  }
  .top2026-sp-only {
    display: block !important;
  }
  span.top2026-sp-only {
    display: inline-block !important;
  }

  .top2026-section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  /* KV Mobile */
  .top2026-kv {
    padding: 24px 15px 20px;
    background: var(--top2026-color-bg-gray) url(https://mercart.jp/cms/mer/img/top2026/kv-bg.svg) no-repeat -80px 542px;
  }
  
  .top2026-kv-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .top2026-kv-content,
  .top2026-kv-image {
    width: 100%;
  }
  
  .top2026-kv-label {
    font-size: 14px;
    padding: 4px 20px;
    margin-bottom: 20px;
  }
  
  .top2026-kv-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .top2026-kv-title-main {
    margin-bottom: 5px;
  }
  
  .top2026-kv-title-sub {
    font-size: 28px;
  }
  
  .top2026-kv-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 10px;
  }
  
  /* Achievements Mobile Grid */
  .top2026-kv-achievements {
    flex-wrap: wrap;
    gap: 0px 10px;
    margin-bottom: 10px;
  }
  
  .top2026-kv-achievement-item {
    width: calc(50% - 5px);
    flex: none;
    padding: 5px 5px;
  }
  
  .top2026-kv-achievement-item::before,
  .top2026-kv-achievement-item::after {
    height: 60px;
    width: 20px;
  }
  
  .top2026-kv-achievement-title {
    font-size: 12px;
  }
  
  .top2026-kv-achievement-val {
    font-size: 36px;
  }
  
  .top2026-kv-achievement-unit {
    font-size: 14px;
  }
  
  .top2026-btn-green {
    font-size: 16px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .top2026-kv-action-text {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .top2026-kv-image img {
    width: 85%;
    transform: scale(1);
    right: unset;
    margin: 0 auto;
  }

  .top2026-kv-notes {
    text-align: left;
    margin-top: 20px;
    line-height: 1.4;
  }

  /* Logo Slider Mobile */
  .top2026-logo-slider {
    padding: 20px 0 0;
  }

  .top2026-logo-track {
    gap: 28px;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
  }

  .top2026-logo-item img {
    height: 26px;
    width: auto;
    object-fit: contain;
  }

  /* About Mobile */
  .top2026-about {
    padding: 50px 15px;
    background: unset;
  }
  
  .top2026-about-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    background: radial-gradient(ellipse at center, #e6f8f5 0%, #ffffff 78%);
  }
  
  .top2026-about-text {
    font-size: 13px;
    text-align: left;
  }
  
  /* Reasons Mobile */
  .top2026-reasons {
    padding: 50px 15px;
    background-image: url(https://mercart.jp/cms/mer/img/top2026/kv-reasons-sp.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center 40px;
  }
  
  .top2026-reasons-subtitle {
    font-size: 15px;
    text-align: left;
    margin-bottom: 30px;
  }
  
  .top2026-reasons-main-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 40px;
  }
  
  .top2026-reasons-main-img {
    margin-bottom: 20px;
  }

  .top2026-reasons-grid {
    flex-direction: column;
    gap: 20px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .top2026-reasons-card-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .top2026-reasons-card-img {
    margin-bottom: 15px;
  }

  .top2026-reasons-card {
    padding: 5px 0px;
  }

  .top2026-reasons-card-desc {
    font-size: 13px;
    text-align: left;
  }

  /* CTA Mobile */
  .top2026-cta {
    padding: 35px 15px 32px;
  }

  .top2026-cta::before {
    width: 395px;
    height: 188px;
    background-image: url(https://mercart.jp/cms/mer/img/top2026/cta-bg-sp.svg);
  }

  .top2026-cta-ttl {
    line-height: 1.3;
    margin: 0 0 20px;
    font-size: 24px;
  }

  .top2026-cta-ttl span {
    font-size: 30px;
  }

  .top2026-cta-ttl b {
    font-size: 30px;
  }

  .top2026-cta-txt {
    margin: 0 auto 16px;
    padding: 1px 9px;
    font-size: 14px;
  }

  .top2026-cta-btn {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .top2026-cta-btn span {
    top: -30px;
    right: 0;
    width: 56px;
    height: 56px;
    font-size: 16px;
  }

  .top2026-cta-btn a {
    padding: 15px 20px 15px 0;
    font-size: 16px;
  }

  /* Functions Mobile */
  .top2026-functions {
    padding: 50px 15px;
  }

  .top2026-functions-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }

  .top2026-functions-grid {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .top2026-functions-card {
    width: 100%;
  }

  .top2026-functions-card-body {
    padding: 15px 20px;
  }

  .top2026-functions-card-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .top2026-functions-card-tagline {
    font-size: 15px;
  }

  .top2026-functions-card-text {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .top2026-functions-card-tags-label {
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    float: unset;
  }

  .top2026-tag {
    padding: 4px 10px;
    font-size: 12px;
    margin: 0 4px 4px 0;
  }

  .top2026-btn-outline {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
  }

  /* Integrations Mobile */
  .top2026-integrations {
    padding: 50px 15px 30px;
  }

  .top2026-integrations-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }

  .top2026-integrations-grid {
    gap: 12px;
  }

  .top2026-integrations-card {
    flex: 1 1 100%;
    padding: 15px;
  }

  /* Support Mobile */
  .top2026-support {
    padding: 0 15px 50px;
  }

  .top2026-support .top2026-section-title {
    font-size: 22px;
  }

  .top2026-support-container {
    padding: 20px;
  }

  .top2026-support-eyebrow {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .top2026-support-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }

  .top2026-support-grid {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
  }

  .top2026-support-card-img {
    margin-bottom: 16px;
  }

  .top2026-support-card-label {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .top2026-support-link-text {
    font-size: 13px;
    text-align: left;
  }

  .top2026-support-card-title {
    font-size: 15px;
  }

  .top2026-support-card-text {
    font-size: 13px;
  }

  /* Security Mobile */
  .top2026-security {
    padding: 50px 15px;
  }

  .top2026-security-desc {
    margin-bottom: 30px;
    font-size: 13px;
    text-align: left;
  }

  .top2026-security-grid {
    flex-wrap: wrap;
    gap: 15px 15px;
    justify-content: center;
    margin-bottom: 32px;
  }

  .top2026-security-item {
    flex: 1 1 calc(33.333% - 10px);
    max-width: none;
  }

  /* 2行目は2列 */
  .top2026-security-item:nth-child(4),
  .top2026-security-item:nth-child(5) {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }

  .top2026-security-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 8px;
  }

  .top2026-security-icon img {
    max-width: 50px;
    max-height: 50px;
  }

  .top2026-security-item p {
    font-size: 13px;
  }

  /* Achievements Mobile */
  .top2026-achievements {
    padding: 50px 15px;
  }

  .top2026-achievements-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }
  .top2026-achievements-grid {
    flex-direction: column;
    gap: 30px;
  }
  .top2026-achievements-item-company {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .top2026-achievements-item-title {
    font-size: 18px;
  }
  .top2026-achievements-item-alt .top2026-achievements-item-title {
    font-size: 12px;
  }
  .top2026-achievements-item-val {
    font-size: 48px;
    padding: 0 20px;
  }
  .top2026-achievements-item-val::before,
  .top2026-achievements-item-val::after {
    width: 30px;
    height: 88px;
  }
  .top2026-achievements-item-val-small {
    font-size: 13px;
  }
  .top2026-achievements-item-alt .top2026-achievements-item-val-small .top2026-text-green {
    font-size: 23px;
    margin-bottom: 24px;
  }
  .top2026-achievements-item-alt .top2026-achievements-item-val-small::before {
    height: 18px;
    bottom: -20px;
  }

  .top2026-achievements-item-text {
    font-size: 13px;
  }

  /* Issues Mobile */
  .top2026-issues {
    padding: 50px 15px;
  }

  .top2026-issues-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }

  .top2026-issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
  }

  .top2026-issues-item {
    width: auto;
  }

  .top2026-issues-item p {
    width: 110%;
    justify-content: center;
    font-size: 12px;
  }

  .top2026-issues-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 8px;
  }

  .top2026-issues-arrow {
    width: 16px;
    height: 16px;
    margin-left: 4px;
  }

  .top2026-issues-arrow::after {
    width: 4px;
    height: 4px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
  }

  /* Cases Mobile */
  .top2026-cases {
    padding: 50px 15px;
  }

  .top2026-cases-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }

  .top2026-cases-card-text {
    font-size: 13px;
  }
  .top2026-case-list {
    margin: 0 0 32px;
  }
  .top2026-cases-btn {
    margin: 0 0 32px;
  }
  .top2026-cases-cta-txt {
    padding: 2px 8px;
    font-size: 12px;
    text-align: center;
  }
  .top2026-cases-cta-btn {
    width: 100%;
  }
  .top2026-cases-cta-btn a {
    padding: 17px;
    font-size: 14px;
  }

  /* Industries Mobile */
  .top2026-industries {
    padding: 50px 15px;
  }

  .top2026-industries-desc {
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 30px;
  }

  .top2026-industries-card-text {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .top2026-industries-grid {
    flex-direction: column;
    gap: 20px;
  }
  .top2026-industries-card-body {
    padding: 15px 20px 20px;
  }
  .top2026-industries-card-title {
    font-size: 15px;
  }

  /* Comparison Mobile */
  .top2026-comparison {
    padding: 50px 15px;
  }

  .top2026-comparison-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }

  .top2026-comparison-table {
    font-size: 13px;
  }

  .top2026-comparison-table th,
  .top2026-comparison-table td {
    padding: 15px 20px;
    vertical-align: middle;
  }

  .top2026-comparison-table th {
    font-size: 16px;
  }

  .top2026-comparison-table th:first-child {
    width: 122px;
    font-size: 13px;
  }

  .top2026-badge-check {
    font-size: 12px;
    padding: 5px 10px 3px;
    line-height: 1;
  }

  /* News & Seminar Mobile */
  .top2026-news-seminar {
    padding: 50px 15px;
  }
  .top2026-news-seminar-inner {
    flex-direction: column;
  }

  .top2026-ns-col {
    padding: 32px 20px;
  }

  .top2026-ns-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 20px;
  }

  .top2026-seminar-card {
    margin-bottom: 20px;
  }

  .top2026-seminar-date {
    font-size: 12px;
  }

  .top2026-seminar-title {
    font-size: 13px;
  }

  /* Documents Mobile */
  .top2026-documents {
    padding: 50px 15px 0;
  }

  .top2026-documents-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }
  .top2026-documents-grid {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .top2026-documents-card-img {
    margin-bottom: 12px;
  }
  .top2026-documents-card-title {
    font-size: 13px;
  }

  /* Media Mobile */
  .top2026-media {
    padding: 50px 15px;
  }

  .top2026-media-desc {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }
  .top2026-media-grid {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .top2026-media-card-img {
    margin-bottom: 12px;
  }
  .top2026-media-card-title {
    font-size: 13px;
  }

  /* FAQ Mobile */
  .top2026-faq {
    padding: 50px 0;
  }

  .top2026-faq .top-heading {
    font-size: 26px;
  }

  .top-faq-q,
  .top-faq-a {
    font-size: 13px;
  }
}
