:root {
/*  --font: "Epilogue", system-ui, sans-serif;*/
  --color-white: #ffffff;
  --color-black: #111111;
  --color-dark: #0a142f;
  --color-gray: #f7f6ff;
  --color-blue: #0038a8;
  --color-yellow: #fcd118;
  --gradient-page: linear-gradient(to left, #fcd118 0%, #ce1126 45%, #0038a8 100%);
  --gradient-btn: linear-gradient(to left, #fcd118 0%, #ce1126 45%, #0038a8 100%);
  --shadow-card: 0 4px 30px rgba(110, 109, 109, 0.3);
  --shadow-contact-btn: 0 6px 14px rgba(0, 56, 53, 0.24);
  --max-content: 1440px;
  --gap-section: clamp(80px, 10vw, 160px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-black);
}

body.home-2026-lp {
  background: var(--gradient-page);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.p-global-nav > li > a:hover {
  background: #CE1126 !important;
}
/* --------------------------------------------------------------------------
   Page shell
   -------------------------------------------------------------------------- */
.mc-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 48px;
}

.mc-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-section);
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding: 0 clamp(16px, 4vw, 48px);
  margin-top: clamp(32px, 6vw, 80px);
  box-sizing: border-box;
  overflow: visible;
}

.mc-fv__overlay {
  width: 100%;
  max-width: 1340px;
  background: rgba(255, 254, 254, 0.888);
  border-radius: 100px;
  padding: 10px 20px 10px 30px;
}

@media (max-width: 768px) {
  .mc-fv__overlay {
    display: none;
    }
}

/* --------------------------------------------------------------------------
   FV — hero + nav
   -------------------------------------------------------------------------- */
.mc-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  width: 100%;
  max-width: 1376px;
  padding: 0 clamp(12px, 2vw, 14px) 0;
  margin: 60px auto;
}

.mc-fv__main {
  width: 100%;
  max-width: 1340px;
  margin-top: 2em;
}

.mc-fv__hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  display: block;
  opacity: 0;
  transition: opacity 2s ease-out;
}

.mc-fv__hero.mc-is-fade-in {
  opacity: 1;
}

.mc-fv__hero-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 640;
}

.mc-fv__hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.mc-fv__hero-img.mc-is-active {
  z-index: 1;
  opacity: 1;
}

.mc-fv__hero:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.mc-fv__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(12px, 2vw, 22px) clamp(16px, 3vw, 30px) clamp(8px, 2vw, 16px);
  pointer-events: none;
}

.mc-fv__nav {
  pointer-events: auto;
}

.mc-fv__nav-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px clamp(20px, 3vw, 40px);
  min-height: clamp(56px, 10vw, 88px);
}

.mc-fv__logo {
  color: var(--color-white);
  flex-shrink: 0;
}


.mc-fv__logo-img {
  display: block;
  width: 55px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.mc-fv__nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 40px);
}

.mc-fv__nav-links a {
  position: relative;
  display: inline-block;
  color: var(--color-black);
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 26px);
  letter-spacing: 0.02em;
  transform-origin: center top;
  transition:
    color 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.mc-fv__nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center top;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .mc-fv__nav-links a:hover {
    color: var(--color-blue);
    transform: translateY(-2px);
  }

  .mc-fv__nav-links a:hover::after {
    transform: scaleX(1);
  }
}

.mc-fv__nav-links a:focus-visible {
  color: var(--color-blue);
  outline: 2px solid var(--color-blue);
  outline-offset: 4px;
}

.mc-fv__nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.mc-fv__nav-links a.mc-is-active {
  color: var(--color-blue);
}

.mc-fv__nav-links a.mc-is-active::after {
  transform: scaleX(1);
}

.mc-fv__nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.mc-fv__lang {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
}

.mc-fv__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2vw, 28px) clamp(24px, 4vw, 48px);
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 26px);
  border: 2px solid transparent;
  transform-origin: center top;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    filter 0.25s ease,
    background-color 0.25s ease;
}

@media (hover: hover) {
  .mc-fv__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(0, 56, 168, 0.35);
  }
}

.mc-fv__cta:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 3px;
}

.mc-fv__copy {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: min(100%, 92vw);
  max-width: 1400px;
  padding: 0 clamp(12px, 4vw, 24px);
  box-sizing: border-box;
  text-align: center;
  font-size: clamp(18px, 2.2vw + 0.5rem, 40px);
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--color-white);
  font-weight: 900;
}

.mc-fv__copy-line {
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.mc-fv__copy-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.45em, 0);
  animation: mc-fv-copy-char-fade 0.75s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: var(--mc-fv-copy-d, 0ms);
  will-change: opacity, transform;
}

.mc-fv__copy--static .mc-fv__copy-char {
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes mc-fv-copy-char-fade {
  from {
    opacity: 0;
    transform: translate3d(0, 0.45em, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-strength-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mc-strengths__title,
  .mc-cases__title,
  .mc-voice__title,
  .mc-faq__title,
  .mc-map__title {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mc-fv__hero {
    transition: none;
    opacity: 1;
  }

  .mc-fv__hero-img {
    transition: none;
  }

  .mc-fv__copy-char {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes lp-section-title-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* --------------------------------------------------------------------------
   Our Strengths
   -------------------------------------------------------------------------- */
.mc-strengths {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 60px);
  padding: clamp(32px, 5vw, 60px) 0;
  width: 100%;
  overflow: visible;
}

.mc-strengths__head {
  position: relative;
  z-index: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  max-width: 1000px;
  text-align: center;
}

.mc-strengths__head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(340px, 52vw, 720px);
  aspect-ratio: 1 / 1;
  transform: translate(calc(-50% - clamp(40px, 5vw, 88px)), -58%);
  background: url("../img/bg-logo.png") no-repeat left center / contain;
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
}

.mc-strengths__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(48px, 10vw, 128px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.mc-strengths__lead {
  margin: 0;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.mc-strengths__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 3vw, 30px);
  width: 100%;
}
.mc-videos__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  max-width: 12800px;
  padding-bottom: 2em;
  text-align: center;
}

.mc-videos__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(48px, 10vw, 128px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0;
  animation: lp-section-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.12s;
}
.mc-strengths__videos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 3vw, 20px);
}

.mc-strengths__video-item {
  border-radius: 5px;
  overflow: hidden;
  background: #000;
  border: 3px solid #ffffffe1;
}

.mc-strengths__video-item iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Figma に合わせた重ねレイアウト（flex 縦積みではない） */
.mc-strength-card {
  position: relative;
  width: min(407.75px, 100%);
  background: var(--color-gray);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.mc-strength-card.mc-is-inview {
  animation: strength-card-fade-in 1s ease forwards;
}

.mc-strength-card--1.mc-is-inview {
  animation-delay: 0.12s;
}

.mc-strength-card--2.mc-is-inview {
  animation-delay: 0.32s;
}

.mc-strength-card--3.mc-is-inview {
  animation-delay: 0.52s;
}

@keyframes strength-card-fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mc-strength-card__visual {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 85vw, 510px);
  isolation: isolate;
}

/* 奥: 装飾 Ellipse */
.mc-strength-card__ellipse {
  position: absolute;
  z-index: 1;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.85;
  filter: blur(36px);
  top: 6%;
  right: -6%;
}

.mc-strength-card--1 .mc-strength-card__ellipse {
  background: linear-gradient(180deg, rgba(206, 18, 38, 0.95) 0%, rgba(134, 132, 255, 0) 100%);
}

.mc-strength-card--2 .mc-strength-card__ellipse {
  background: linear-gradient(180deg, rgba(238, 188, 6, 0.85) 0%, rgba(134, 132, 255, 0) 100%);
  top: 34%;
  right: -12%;
}

.mc-strength-card--3 .mc-strength-card__ellipse {
  background: linear-gradient(180deg, rgba(65, 62, 206, 0.95) 0%, rgba(134, 132, 255, 0) 100%);
  top: 18%;
  right: -8%;
}


/* 背景の大きな数字 */
.mc-strength-card__bg-number {
  position: absolute;
  z-index: 1;
  left: 0.35rem;
  top: 0.5rem;
  font-weight: 700;
  font-family: inter, sans-serif;
  font-size: clamp(15.1rem, 60.5vw, 21rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.75px rgba(0, 56, 168, 0.22);
  paint-order: stroke fill;
  pointer-events: none;
}

.mc-strength-card__text {
  position: absolute;
  z-index: 6;
  left: 1.35rem;
  right: 1.35rem;
  top: clamp(4.5rem, 14.8vw, 4.5rem);
  margin: 0;
  padding-left: 20px;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  line-height: 1.35;
  color: var(--color-black);
  max-width: 18.5rem;
  user-select: text;
  -webkit-user-select: text;
}

.mc-strength-card__image {
  position: absolute;
  z-index: 3;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  height: 46%;
  min-height: 160px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e6f5;
}

.mc-strength-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Purchase Case — horizontal scroll
   -------------------------------------------------------------------------- */
.mc-cases {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
}

.mc-cases__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  text-align: center;
  padding: 0 clamp(16px, 8vw, 120px);
}

.mc-cases__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.mc-cases__lead {
  margin: 0;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.mc-cases__slider-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0 24px clamp(16px, 4vw, 60px);
  box-sizing: border-box;
}

.mc-cases__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f7f6ffb5;
  cursor: pointer;
  color: var(--color-dark);
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: grid;
  place-items: center;
  padding: 0;
}

@media (hover: hover) {
  .mc-cases__arrow:hover:not(:disabled) {
    transform: scale(1.08);
    background: var(--color-white);
  }
}

.mc-cases__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.mc-cases__arrow::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  display: block;
  color: var(--color-dark);
}

.mc-cases__arrow--prev::before {
  content: "\f053";
}

.mc-cases__arrow--next::before {
  content: "\f054";
}

/* JSで aria-disabled を使っている場合の見た目 */
.mc-cases__arrow[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.mc-cases__slider:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.mc-cases__slider {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  container-type: inline-size;
  container-name: cases;
}

.mc-cases__slider::-webkit-scrollbar {
  display: none;
}

.mc-cases__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 30px;
  padding: 24px 20px;
  width: max-content;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.mc-case-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  flex: 0 0 auto;
  width: min(336px, 85vw);
  padding: 0 0 32px;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 20px;
  border: 4px solid var(--color-yellow);
  box-shadow: var(--shadow-card);
}

.mc-case-card__media {
  line-height: 0;
  flex-shrink: 0;
}

.mc-case-card__img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 336 / 300;
}

.mc-case-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
  width: 100%;
}

.mc-case-card__loc {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--color-gray);
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  font-weight: 700;
  font-size: 19px;
}

.mc-case-card__quote {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.03em;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

/* 狭いスライダー幅: 1 枚 = コンテナ幅いっぱいでスナップ */
@container cases (max-width: 768px) {
  .mc-case-card {
    flex: 0 0 100cqi;
    width: 100cqi;
    max-width: 100cqi;
    scroll-snap-stop: always;
  }

  .mc-cases__track {
    gap: 16px;
  }
}

@media (max-width: 768px) {

  .mc-strength-card__visual {
    height: 400px !important;
    min-height: 400px !important;
  }

  .mc-strengths__videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mc-cases__slider-wrap {
    position: relative;
    display: block;
    padding: 24px clamp(16px, 4vw, 24px) 24px;
    gap: 0;
    width: 100%;
  }

  .mc-cases__arrow {
    position: absolute;
    top: 50%;
    left: auto;
    right: auto;
    margin-top: -20px;
    z-index: 3;
  }

  .mc-cases__arrow--prev {
    left: clamp(4px, 1.5vw, 12px);
  }

  .mc-cases__arrow--next {
    right: clamp(4px, 1.5vw, 12px);
  }

  .mc-cases__slider {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  @container cases (max-width: 768px) {
    .mc-case-card {
      flex: 0 0 94cqi;
      width: 94cqi;
      max-width: 94cqi;
    }
  }
}

/* --------------------------------------------------------------------------
   Voice
   -------------------------------------------------------------------------- */
.mc-voice {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: clamp(40px, 8vw, 79px);
  row-gap: clamp(10px, 2vw, 24px);
  width: 100%;
}

.mc-voice__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  text-align: center;
}

.mc-voice__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.mc-voice__lead {
  margin: 0;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.mc-voice__slider {
  width: 100%;
  overflow: hidden;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.mc-voice__slider::-webkit-scrollbar {
  display: none;
}

.mc-voice__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  padding: 8px 4px 24px;
  width: max-content;
  max-width: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1100px) {
  .mc-voice__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.mc-voice-card {
  flex: 0 0 auto;
  width: min(500px, 90vw);
}

.mc-voice-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 25px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.mc-voice-card__avatar {
  flex-shrink: 0;
  width: clamp(200px, 56vw, 380px);
  height: clamp(200px, 56vw, 380px);
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}

.mc-voice-card__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.5vw, 22px);
  width: 100%;
  min-width: 0;
  flex: 1;
  text-align: center;
}

.mc-voice-card__name {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(to left, #fcd118 0%, #ce1126 45%, #0038a8 100%);
}

.mc-voice-card__name-label {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.35;
  color: var(--color-white);
}

.mc-voice-card__body {
  margin: 20px 0 0 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

.mc-voice__pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mc-voice__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease, height 0.2s ease;
}

@media (hover: hover) {
  .mc-voice__dot:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.15);
  }
}

.mc-voice__dot:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.mc-voice__dot.mc-is-active {
  background: var(--color-white);
  width: 12px;
  height: 12px;
}

.mc-voice__slider:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.mc-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.mc-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: 100%;
  max-width: 1440px;
  padding: clamp(32px, 5vw, 160px) clamp(16px, 10vw, 120px);
  font-size: 1.2em;
}

.mc-faq__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.mc-faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mc-faq__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.mc-faq-item__q::after {
  content: "\f13a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

.mc-faq__columns {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  max-width: 920px;
}

@media (min-width: 900px) {
  .mc-faq__columns {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .mc-faq__col {
    flex: 1;
    min-width: 0;
  }
}

.mc-faq__col {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 30px);
}

.mc-faq-item {
  border-radius: 12px;
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 20, 47, 0.08);
}

.mc-faq-item__q {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 40px 30px;
  cursor: pointer;
  font-weight: 900;
  font-size: 22px;;
  line-height: 1.2em;
  list-style: none;
  color: var(--color-dark);
}

.mc-faq-item__q::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  line-height: 1;
  color: var(--color-blue);
  transition: transform 0.25s ease;
}

.mc-faq-item[open] > .mc-faq-item__q::after {
  transform: rotate(180deg);
}

.mc-faq-item__q::-webkit-details-marker {
  display: none;
}

.mc-faq-item__mark {
  flex-shrink: 0;
  color: var(--color-blue);
  font-weight: 800;
}

.mc-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-faq-item[open] > .mc-faq-item__body {
  grid-template-rows: 1fr;
}

.mc-faq-item__body-inner {
  min-height: 0;
  overflow: hidden;
}

.mc-faq-item__a {
  margin: 0;
  padding: 0 16px 16px 40px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-black);
}

@media (prefers-reduced-motion: reduce) {
  .mc-faq-item__body {
    transition: none;
  }
}
@media (max-width: 900px) {
  .mc-faq {
  padding: clamp(24px, 5vw, 40px) 12px;
  }
  .mc-voice-card__avatar {
  width: clamp(200px, 70vw, 400px);
  height: clamp(200px, 70vw, 400px);
  }
}
/* --------------------------------------------------------------------------
   Contact CTA
   -------------------------------------------------------------------------- */
.mc-lp {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  box-sizing: border-box;
  overflow-x: clip;
}

.mc-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  margin-bottom: clamp(24px, 5vw, 80px);
  padding: 0 0 180px 0;
  overflow-x: visible;
  width: 100%;
}

.mc-contact__bg {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: min(520px, 85vw);
}

.mc-visual__img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.mc-visual__img--left {
  top: -440px;
  left: -140px;
  width: 320px;
  z-index: 3;
}

.mc-visual__img--center {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  z-index: 1;
}

.mc-visual__img--right {
  bottom: 480px;
  right: -170px;
  width: 410px;
  z-index: 2;
}

.mc-contact__panel {
  position: relative;
  z-index: 4;
  top:300px;
  width: 100%;
  max-width: 1000px;
  padding: 0 clamp(8px, 3vw, 16px);
  margin-bottom: 500px;
  box-sizing: border-box;
  display: block;
}

.mc-contact__panel-inner {
  padding: 20px clamp(12px, 4vw, 30px);
}

.mc-contact__lead {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: clamp(20px, 5vw, 32px);
  line-height: 1.5;
  margin-bottom: 20px;
  padding: clamp(12px, 4vw, 24px) clamp(12px, 5vw, 20%);
  background: #ffffffe8;
  border-radius: 10px;
}

.mc-contact__btn .fa-envelope {
  flex-shrink: 0;
  margin-right: 10px;
  font-size: 42px;
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 900px) {
  .mc-contact__bg {
    display: none;
  }
  .mc-contact__btn {
    display: none!important;
  }
  .mc-visual__img--left {
    top: -600px;
    left: 2%;
  }
.mc-contact__lead {
  background: #fff;
  padding-bottom: 20px;
}
.mc-contact {
    padding: 0px;
}

  .mc-visual__img--right {
    top: -68%;
    bottom: auto;
    right: -6%;
  }

  .mc-visual__img--center {
  }
  .wpcf7  {
    margin-top: -100px!important;
  }
}

@media (max-width: 640px) {
.mc-contact__panel-inner {
  padding: 0;
}
  .mc-contact {
    padding: 0;
  }

  .mc-visual__img {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 0 1 auto;
    min-width: auto;
    will-change: auto;
  }

  .mc-visual__img--left {
    z-index: 1;
    margin-right: clamp(-28px, -7vw, -14px);
    transform: none;
    top: 250px;
    left: 300px;
  }
 
  .mc-visual__img--center {
    max-width: none;
    margin: 0;
    z-index: 2;
    transform: none;
  }

  .mc-visual__img--right {
    z-index: 0;
    margin-left: clamp(-28px, -7vw, -14px);
    transform: none;
    top: -60px;
    bottom: auto;
    right: 287px;
  }

  .mc-contact__panel {
    top: auto;
    margin-top: clamp(12px, 4vw, 24px);
    margin-bottom: 100px;
    padding: 0;
    text-align: center;
  }

  .mc-contact__btn {
    margin-top: 1.5rem;
  }
}

.mc-contact__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4em;
  padding: clamp(20px, 4vw, 40px) clamp(48px, 10vw, 120px);
  border-radius: 80px;
  background: var(--color-white);
  color: var(--color-dark);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.04em;
  border: 6px solid transparent;
  background-image: linear-gradient(white, white), var(--gradient-btn);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow-contact-btn);
  transform-origin: center top;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .mc-contact__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 56, 53, 0.32);
  }
}

.mc-contact__btn:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Map + table
   -------------------------------------------------------------------------- */
.mc-map-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  max-width: 1280px;
  margin-bottom: 200px;
}

.mc-map-block__inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.mc-map__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 2em;
}

.mc-map__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.mc-strengths__title.mc-is-inview,
.mc-cases__title.mc-is-inview,
.mc-voice__title.mc-is-inview,
.mc-faq__title.mc-is-inview,
.mc-map__title.mc-is-inview {
  animation: lp-section-title-in 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;}


.mc-map-block__embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 560px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #e5e8ef;
}

.mc-map-block__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.mc-map-block__widget {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #e5e8ef;
}

.mc-map-block__img {
  width: 100%;
  aspect-ratio: 1280 / 560;
  object-fit: cover;
}

.mc-map-block__link {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--color-white);
  color: #0369f0;
  font-size: 12px;
  font-family: Inter, system-ui, sans-serif;
}

.mc-map-block__table-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mc-map-block__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  border: 1px solid rgba(10, 20, 47, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.mc-map-block__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 72px;
}

.mc-map-block__row + .mc-map-block__row {
  border-top: 1px solid rgba(10, 20, 47, 0.15);
}
body.admin-bar {
  padding-bottom: 0 !important;
  padding-top: 0 !important;

}
@media (max-width: 640px) {
  .mc-map-block {
    margin-top: 200px;
  }
  .mc-map-block__row {
    flex-direction: column;
  }

  .mc-map-block__th {
    width: 100%;
  }

  .mc-map-block__td {
    width: 100%;
    border-top: 1px solid rgba(10, 20, 47, 0.1);
  }
  #js-footer-bar {
    display: none;
  }
  .mc-fv {
   margin-top: 0;
  }
}

.mc-map-block__th,
.mc-map-block__td {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.45;
}

.mc-map-block__th {
  flex: 0 0 38%;
  background: #203c86;
  color: var(--color-white);
  font-weight: 600;
}

.mc-map-block__td {
  flex: 1;
  background: #2a4a9e;
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.mc-footer {
  width: 100%;
  max-width: 1440px;
  background: var(--color-white);
  color: var(--color-dark);
  padding: clamp(48px, 8vw, 120px) clamp(20px, 8vw, 133px) clamp(40px, 6vw, 80px);
}

.mc-footer__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 40px);
  max-width: 1205px;
  margin: 0 auto;
}

.mc-footer__cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 80px);
}

.mc-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}

.mc-footer__heading {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.mc-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  opacity: 0.85;
}

.mc-footer__links a {
  position: relative;
  display: inline-block;
  transform-origin: center top;
  transition: color 0.2s ease, opacity 0.2s ease;
}

@media (hover: hover) {
  .mc-footer__links a:hover {
    color: var(--color-blue);
    opacity: 1;
  }
}

.mc-footer__cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 431px;
  padding: 30px clamp(24px, 5vw, 50px) 30px clamp(24px, 5vw, 58px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  background: rgba(32, 60, 134, 0.05);
}

@media (min-width: 960px) {
  .mc-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "cols cta"
      "div div"
      "bot bot";
    align-items: start;
  }

  .mc-footer__cols {
    grid-area: cols;
  }

  .mc-footer__cta-card {
    grid-area: cta;
    margin: 0;
    justify-self: end;
  }

  .mc-footer__divider {
    grid-area: div;
  }

  .mc-footer__bottom {
    grid-area: bot;
  }
}

.mc-footer__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.mc-footer__cta-label {
  margin: 0;
  font-weight: 600;
}

.mc-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 40px;
  background: var(--color-white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 3px solid transparent;
  background-image: linear-gradient(white, white), var(--gradient-btn);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 12px rgba(0, 56, 53, 0.12);
  transform-origin: center top;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .mc-footer__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 56, 53, 0.22);
  }
}

.mc-footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(10, 20, 47, 0.06);
}

.mc-footer__bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mc-footer__copy {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.mc-footer__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.mc-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(10, 20, 47, 0.06);
  transform-origin: center top;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) {
  .mc-footer__social:hover {
    transform: translateY(-2px);
    background: rgba(10, 20, 47, 0.12);
  }
}
.mc-cases__slider {
  cursor: grab;
}

.mc-cases__slider::-webkit-scrollbar {
  display: none;
}

.mc-cases__slider.mc-is-dragging,
.mc-voice__slider.mc-is-dragging {
  cursor: grabbing;
}

.mc-case-card,
.mc-voice-card {
  user-select: none;
  -webkit-user-drag: none;
}

.mc-name-card {
  position: relative;
  width: fit-content;

}

.mc-name-card__shadow {
  position: absolute;
  inset: 7px -7px -7px 7px;
  background: rgba(245, 214, 206, 0.7);
  z-index: 0;
}

.mc-name-card__frame {
  position: relative;
  z-index: 1;
  padding: 5px;
  background: linear-gradient(
    90deg,
    rgba(29, 78, 216, 0.6) 0%,
    rgba(225, 29, 72, 0.6) 55%,
    rgba(245, 158, 11, 0.6) 100%
  );
}

.mc-name-card__frame::before {
  content: "";
  position: absolute;
  left: 0.3px;
  inset: 1px;
  background: linear-gradient(90deg, rgba(210,220,255,.55), rgba(255,220,228,.55));
  z-index: 0;
}

.mc-name-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px 20px;
  line-height: 1;
  color: #111;
}


/* Parent theme header bar: visible on load (mobile) — see also style.css */
@media (max-width: 768px) {
  body.home-2026-lp .l-header__bar,
  body.home-2026-lp .p-header__bar {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) !important;
    pointer-events: auto !important;
    max-height: none !important;
    margin-top: 0 !important;
  }
}

body.home-2026-lp .p-global-nav > li > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 80px;
  line-height: 1;
  font-size: 1em;
}


body.home-2026-lp .p-footer-nav li a {
  line-height: 1;
}

body.home-2026-lp .p-global-nav > li > a:hover {
  color: #fff;
}


.mc-strengths__video-item iframe {
  transform: scale(0.96);
}

@media only screen and (min-width: 783px) {
    body.admin-bar {
        padding-top: 0px!important;
    }
}