:root {
  --color-bg: #f4f4f2;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #1b1b1b;
  --color-muted: #7d7d7d;
  --color-line: rgba(0, 0, 0, 0.16);
  --color-red: #b51b12;
  --color-red-hover: #99150e;
  --color-blue-check: #4aa0df;
  --header-height: 92px;
  --container-width: 1280px;

  /* 差し替え用 */
  --hero-photo-url: url("../img/fv.jpg");
  --hero-bg-mark-url: url("../img/hero-bg-mark.png");
}

.pc-only {
    display: block
  }
  
  .sp-only {
    display: none
  }
  
  @media screen and (max-width:768px) {
    .pc-only {
      display: none
    }
    .sp-only {
        display: block
      }
  }


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding-inline: 32px;
}

.dummy-section {
  height: 1px;
}

/* =========================
   Header
========================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 10px 0;
  background: #ffffff69;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-family:
    "DIN Condensed";
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #111;
  white-space: nowrap;
}

.site-nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: stretch;
  border-left: 1px solid rgba(17, 17, 17, 0.18);
  border-right: 1px solid rgba(17, 17, 17, 0.18);
}

.site-nav__item {
  min-width: 118px;
  border-right: 1px solid rgba(17, 17, 17, 0.18);
}

.site-nav__item:last-child {
  border-right: none;
}

.site-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 16px;
}

.site-nav__main {
  font-family:
    "DIN Condensed";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #101010;
}

.site-nav__sub {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1;
  color: #505050;
  letter-spacing: 0.03em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--color-red-hover);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-panel__content {
  position: relative;
}

.mobile-panel__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 背景画像（←ここが重要） */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/fv.jpg") no-repeat center / cover;
  z-index: 0;
}

/* コンテンツ */
.hero__content {
  position: relative;
  z-index: 2;
  padding-left: 3%;
}

/* feature */
.hero__feature-list {
  display: flex;
  margin: 30px 0;
  align-items: center;
  
}

.check-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.hero__feature-list li {
    border: 1px solid #ccc;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.1rem;
    font-weight: 500;
}

.hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 80px 18px;
  border-radius: 999px;
  background: #9C1C14;
  color: #fff;
  position: relative;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero__cta:hover{
  background: var(--color-red-hover);
}

.hero__cta .arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: auto;
}

.hero__achievements {
    font-size: 1.2rem;
    color: var(--color-red);
    font-weight: 600;
    margin: 2% 0;
    font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;
    letter-spacing: 0.1rem;
  border-left: 3px solid var(--color-red);
  background: linear-gradient(to right, rgba(178,34,34,0.05), transparent);
    padding-left: 2%;
    line-height: 1;
}

.hero__lead2{
      font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;
    letter-spacing: 0.1rem;
}

.hero__lead2--strong {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    font-weight: 600;
}

.hero__title {
  margin: 0;
  color: #101010;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.1;
      font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;
}

small.hero__title{
  font-size: 20px;
}

.hero__title-line {
  display: block;
  font-size: clamp(48px, 6.2vw, 60px);
}

.hero__title-line--accent {
  color: var(--color-red);
  margin: 10px 0 2px;
  font-size: clamp(48px, 6.2vw, 74px);
}

.hero__watermark {
  position: absolute;
  right: -24px;
  bottom: 165px;
  margin: 0;
  font-family:
    "Arial Narrow",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(46px, 5.8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.hero__info-box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(700px, 90vw);
    padding: 20px 34px 24px 100px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 4;
    margin: 0;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1f1f1f;
  letter-spacing: 0.01em;
}

/* =========================
   Mobile Menu Panel
========================= */
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.mobile-panel__content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100%;
  background: #fff;
  padding: 88px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.08);
}

.mobile-panel.is-open .mobile-panel__content {
  transform: translateX(0);
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "DIN Condensed";
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.1rem;
}


.mobile-nav small {
  display: block;
  margin-top: 4px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 400;
}

.mobile-panel__cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 16px;
  font-weight: 700;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1180px) {
  .container {
    padding-inline: 24px;
  }

  .site-nav__item {
    min-width: 96px;
  }

  .site-nav__main {
    font-size: 16px;
  }

  .header-cta {
    min-width: 180px;
    height: 54px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__inner {
    min-height: 690px;
    grid-template-columns: minmax(400px, 47%) 1fr;
    padding-top: 118px;
  }

  .hero__feature-list {
    width: min(100%, 510px);
  }

  .hero__feature-item {
    font-size: 16px;
  }

  .hero__cta {
    min-width: 380px;
  }

  .hero__info-box {
    width: min(500px, 46vw);
    padding: 24px 28px 22px 56px;
  }

  .hero__info-box {
    font-size: 16px;
  }

  .hero__cta strong {
    font-size: 17px;
}
}

@media (max-width: 980px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    padding: 5px 0;
  }

  .site-logo {
    font-size: 20px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, #f4f4f2 0%, #f4f4f2 44%, #eef0f2 100%);
  }

  .hero::before {
    width: 100%;
    background-size: 110% auto;
    background-position: left top;
    opacity: 0.22;
  }

  .hero::after {
    left: auto;
    right: 8%;
    width: 42%;
    height: 54%;
    top: 22%;
    clip-path: polygon(35% 0, 100% 0, 65% 100%, 0% 100%);
  }

  .hero__photo {
    position: relative;
    width: 100%;
    height: 360px;
    order: -1;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 0;
  }

  .hero__content {
    width: 100%;
    padding: 70px 0 36px;
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .hero__title-line {
    font-size: clamp(42px, 8vw, 50px);
  }

  .hero__feature-list {
    width: 100%;
    max-width: 560px;
  }

  .hero__cta {
    width: 100%;
    min-width: 0;
    max-width: 520px;
  }

  .hero__watermark {
    right: 2%;
    bottom: 92px;
    font-size: clamp(44px, 9vw, 84px);
    color: rgba(255, 255, 255, 0.14);
  }

  .hero__info-box {
    position: relative;
    width: calc(100% - 24px);
    margin-left: auto;
    padding: 22px 24px 20px 50px;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }

  .site-header {
    padding: 5px 0;
  }

  .site-logo {
    font-size: 18px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero__photo {
    height: 280px;
    background-position: center top;
  }

  .hero__content {
    padding: 80px 0 28px;
  }

  .hero__lead {
    gap: 12px;
    font-size: 12px;
    line-height: 1.7;
    text-shadow: 0 0 5px rgb(255 255 255), 0 0 10px rgb(255 255 255), 0 0 20px rgb(255 255 255);
    font-weight: 600;
  }

  .hero__lead2 {
    text-shadow: 0 0 5px rgb(255 255 255), 0 0 10px rgb(255 255 255), 0 0 20px rgb(255 255 255);
}

  .hero__lead::before {
    width: 18px;
  }

  .hero__title-line {
    font-size: clamp(25px, 8vw, 50px);
    line-height: 1.26;
    font-weight: 500;
    margin: 0;
  }

    .hero__title-line--accent {
    font-size: clamp(40px, 8vw, 50px)
}

  .hero__feature-list {
    grid-template-columns: 1fr;
    margin: 22px 0 24px;
    justify-content: center;
  }

  .hero__feature-item {
    justify-content: center;
    min-height: 52px;
    padding: 10px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 15px;
  }

  .hero__feature-item:last-child {
    border-bottom: none;
  }

.hero__cta {
        min-height: 64px;
        padding: 15px 30px;
    }

  .hero__cta-text small {
    font-size: 12px;
  }
  
  .hero__achievements {
    font-size: 16px;
    color: var(--color-red);
    font-weight: 600;
    margin: 3% 0;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
    letter-spacing: 0.1rem;
    border-left: 3px solid var(--color-red);
    background: linear-gradient(to right, rgba(178, 34, 34, 0.05), transparent);
    padding-left: 2%;
    line-height: 1;
}

  .hero__cta-text strong {
    font-size: 17px;
  }

  .hero__cta-icon {
    right: 22px;
    font-size: 22px;
  }

  .hero__watermark {
    right: 0;
    bottom: 92px;
    font-size: 40px;
  }

    .hero__info-box {
        width: calc(100% - -25px);
    }

  .hero__info-box {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero__feature-list li {
    padding: 10px 15px;
   font-size: 12px;
    letter-spacing: 0.05rem;
}
}

.sales-problem {
  position: relative;
  padding: 120px 0 100px;
  background:url("../img/sales-problem-bg.png");
  background-size: cover;
  overflow: hidden;
}

.sales-problem .container {
  position: relative;
  z-index: 1;
}

.sales-problem__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 600px);
  align-items: start;
  gap: 5%;
}

.sales-problem__content {
  min-width: 0;
  padding-left: 10%;
}

.sales-problem__visual-wrap {
  min-width: 0;
  padding-top:100px;
  position: relative;
}

.sales-problem__visual {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: 0;
}

.sales-problem__visual-img {
  display: block;
  width: 100%;
  height: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
}

.section-label__line {
  width: 96px;
  height: 1px;
  background: #2a2a2a;
  flex-shrink: 0;
}

.section-label__text {
  font-family:"Bebas Neue","DIN Condensed","Helvetica Neue",Arial,sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111;
  line-height: 1;
}

.sales-problem__title {
  margin: 0 0 30px;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(34px, 3vw, 60px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #111;
}

p.sales-problem__subtitle {
    font-size: 20px;
      font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
    line-height: 1.7;
    margin: 0 0 5%;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.sales-problem__list {
  border-top: 0;
}

.sales-problem__item {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}


.sales-problem__num {
  display: inline-block;
  min-width: 58px;
  font-family:
    "Bebas Neue","DIN Condensed","Helvetica Neue",Arial,sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #0E82BE 0%, #03E9F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.sales-problem__text {
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #151515;
}


.sales-problem__watermark {
    position: absolute;
    right: 70px;
    bottom: -6%;
    font-family: "Bebas Neue","DIN Condensed","Helvetica Neue",Arial,sans-serif;
    font-size: clamp(40px, 4vw, 72px);
    line-height: 1;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #0E82BE 0%, #03E9F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    margin: 0;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1200px) {
  .sales-problem {
    padding: 100px 0 90px;
  }

  .sales-problem__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 40px;
  }

  .sales-problem__title {
    margin-bottom: 34px;
    font-size: clamp(34px, 3.2vw, 54px);
  }

  .sales-problem__item {
    min-height: 60px;
  }

  .sales-problem__num {
    min-width: 50px;
    font-size: 34px;
  }

  .sales-problem__text {
    font-size: 19px;
  }

  .sales-problem__visual-wrap {
    padding-top: 110px;
  }

  p.sales-problem__subtitle {
    font-size: 16px;
      font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
    line-height: 1.5;
    margin: 0 0 7%;
    font-weight: 600;
    letter-spacing: 0.01em;
}
}

/* =========================
   Mobile
========================= */
@media (max-width: 900px) {
  .sales-problem {
    padding: 80px 0 70px;
  }

  .sales-problem__inner {
    display: block;
  }

  .section-label {
    margin-bottom: 28px;
    gap: 14px;
  }

  .section-label__line {
    width: 72px;
  }

  .section-label__text {
    font-size: 22px;
  }

  .sales-problem__title {
    margin-bottom: 15px;
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.5;
  }

  .sales-problem__item {
    gap: 16px;
    min-height: 62px;
    padding: 10px 0;
  }

  .sales-problem__num {
    min-width: 42px;
    font-size: 28px;
  }

  .sales-problem__text {
    font-size: 17px;
    line-height: 1.55;
  }

  .sales-problem__visual-wrap {
    margin-top: 42px;
    padding-top: 0;
  }

  .sales-problem__visual {
    max-width: 100%;
  }

  .sales-problem__watermark {
    left: 14px;
    bottom: -18px;
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .sales-problem {
    padding: 64px 0 56px;
  }

  .section-label__text {
    font-size: 20px;
    letter-spacing: 0.09em;
  }

  .sales-problem__title {
    font-size: 26px;
    line-height: 1.5;
    font-weight: 600;
  }

  .sales-problem__item {
    align-items: flex-start;
    min-height: auto;
  }

  .sales-problem__num {
    margin-top: 2px;
    font-size: 26px;
  }

  .sales-problem__text {
    font-size: 14px;
    font-weight: 600;
  }

.sales-problem__watermark {
        font-size: 40px;
        bottom: -25px;
    }

  .sales-problem__content {
  min-width: 0;
  padding: 5%;
}

}

:root {
  --color-bg: #f3f3f1;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #1a1a1a;
  --color-muted: #666666;
  --color-line: rgba(17, 17, 17, 0.14);
  --color-blue-dark: #002a77;
  --color-blue: #0f56bf;
  --color-cyan: #65d9f4;
  --color-red: #9C1C14;
  --color-red-hover: #a5352f;
  --container-width: 1280px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width:100%;
  margin: 0 auto;
  padding-inline: 32px;
}

/* =========================
   Common
========================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-label__line {
  width: 72px;
  height: 1px;
  background: #2a2a2a;
  flex-shrink: 0;
}

.section-label__text {
font-family: "Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* =========================
   Solution Hero
========================= */
.solution {
  overflow: hidden;
}

section.solution{
  background: url("../img/solution-section-bg.png") no-repeat center top / cover;
}

.solution__hero {
  position: relative;
  padding: 0 0 150px;
  background: url("../img/solution-bg.png") no-repeat center top / cover;
}

.solution__hero .container {
  position: relative;
  z-index: 2;
  z-index: 2;
    padding: 0 7%;
}

.solution__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 40px;
  align-items: start;
  padding-top: 60px;
}

.solution__hero-copy {
  position: relative;
  padding-top: 8px;
}

.solution__watermark {
  position: absolute;
  top: 10%;
  left:0;
  margin: 0;
  font-family: "Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(62px, 6vw, 106px);
  line-height: 1;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  user-select: none;
}

.solution__hero-title {
  position: relative;
  z-index: 1;
  margin: 28px 0 18px;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
}

.solution__hero-subtitle {
    font-size: 20px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    line-height: 0;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 13% 0 0;
}

.solution__hero-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.solution__hero-chart {
  align-self: center;
  max-width: 500px;
  margin-left: auto;
}

.solution__hero-chart img {
  width: 100%;
}

.solution__cta-banner {
    background: url(../img/solution-cta-photo.png) no-repeat center top / cover;
    width: 80%;
    margin: 3% auto;
}


.solution__cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.solution__cta-lead {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05rem;
}

.solution__cta-sub {
    margin: 0 0 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.solution__cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.5%;
    border-radius: 999px;
    background: var(--color-red);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.25s ease, transform 0.25s ease;
    letter-spacing: 0.05rem;
    width: 45%;
}

.solution__cta-button .arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: auto;
}

.solution__cta-button:hover {
  background: var(--color-red-hover);
}

.solution__cta-image {
  position: relative;
  min-height: 140px;
}

.solution__cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   Strategy
========================= */
.strategy-container{
width: min(100%, var(--container-width));
    margin: 0 auto;
    padding-inline: 130px;
}

.solution__strategy {
  position: relative;
  margin-top: -100px;
  padding-bottom: 72px;
}

.solution__strategy-panel {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 65px 100px;
}

.solution__strategy-bg {
  position: absolute;
  inset: 0;
  background: url("../img/strategy-bg-photo.jpg") no-repeat center center / cover;
}

.solution__strategy-head {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.solution__eyebrow {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: 0.25em;
    font-family: "Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
}

.solution__strategy-title {
  margin: 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 600;
  line-height: 1.6;
}

.solution__strategy-sub {
  margin: 10px 0 0;
  font-size: 16px;
}

.solution__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.92);
}

.solution-card {
    padding: 34px 28px 30px;
    border-left: 7px solid #0E82BE;
    border-bottom: 1px solid #A8A8A8;
    min-height: 320px;
    background: url("../img/solution-card-bg.png") no-repeat center center / cover;
}

.solution-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.solution-card__num {
  font-family: "Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(60px, 4vw, 90px);
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #0A478D 0%, #0E82BE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-card__eyebrow {
    margin: 0 0 15px;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #0E82BE;
}

.solution-card__title {
  margin: 0 0 5px;
  font-size: 26px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.1rem;
    font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    serif;
}

.solution-card__desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #2b2b2b;
}

.solution-card__list {
  padding-top: 16px;
  border-top: 1px solid rgba(13, 95, 185, 0.45);
}

.solution-card__list li {
  position: relative;
  padding-left: 1em;
  font-size: 13px;
  line-height: 1.9;
  color: #2d2d2d;
}

.solution-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================
   Athlete Team
========================= */
.athlete-container {
    width: min(100%, var(--container-width));
    margin: 0 auto;
    padding-inline: 60px;
}

.athlete-team {
  position: relative;
  padding: 72px 0 90px;
}

.athlete-team .container {
  position: relative;
  z-index: 1;
}

.athlete-team__head {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 40px;
  align-items: start;
}

p.section-label__subtitle {
    font-size: 19px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    margin: 0 0 2%;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.athlete-team__title {
  margin: 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  color: #111;
}

.athlete-team__title-line {
  display: block;
}

.athlete-team__text {
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  line-height: 2;
  color: #2d2d2d;
}

.athlete-team__body {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 36px;
    padding-right: 100px;
}

.athlete-team__image img {
  width: 100%;
  height: auto;
  display: block;
}

.athlete-team__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.athlete-team__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.athlete-team__feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(90deg, #0E82BE 0%, #03E9F6 100%);
  color: #fff;
  font-family:
"Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2%;
}

.athlete-team__feature-title {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: #00438E;
}

.athlete-team__feature-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

.athlete-team__feature-txt{
  font-size: 21px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    margin: 3% 0 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}
/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .container {
    padding-inline: 30px;
  }

  .solution__hero-inner {
    grid-template-columns: 1fr 320px;
    gap: 28px;
  }

  .solution__cta-content {
    grid-template-columns: 1fr 220px;
  }

  .athlete-team__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .athlete-team__body {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 900px) {
  .solution__hero {
    padding-bottom: 56px;
  }

  .solution__hero-inner {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 40px;
  }

  .solution__hero-chart {
    max-width: 320px;
    margin: 0 auto;
  }

  .solution__cta-content {
    grid-template-columns: 1fr;
  }

  .solution__cta-image {
    min-height: 180px;
  }

  .solution__strategy {
    margin-top: -24px;
    padding-bottom: 56px;
  }

  .solution__strategy-panel {
    padding: 34px 20px 24px;
    border-radius: 14px;
  }

  .solution__grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
    border-right: none;
  }

  .solution-card:not(:last-child) {
    border-bottom: 1px solid rgba(18, 95, 187, 0.55);
  }

  .solution-card:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(18, 95, 187, 0.55);
  }

  .solution-card:last-child {
    border-bottom: none;
  }

  .athlete-team {
    padding: 56px 0 72px;
  }

  .athlete-team__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .athlete-team__image {
    max-width: 360px;
  }

  .athlete-team__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

      .container {
        padding-inline:20px;
    }

  .solution__hero-title {
    margin-top: 20px;
    font-size: 23px;
    line-height: 1.5;
  }

  .solution__hero-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .solution__cta-copy {
    padding: 20px 16px;
  }

  .solution__cta-lead {
    font-size: 17px;
    line-height: 1.5;
  }

  .solution__cta-sub {
    font-size: 12px;
    line-height: 1.6;
  }

    .solution__cta-button {
        min-height: 55px;
        font-size: 14px;
        width: 100%;
    }

    .solution__cta-button .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: auto;
}

  .solution__eyebrow {
    font-size: 16px;
  }

  .solution__strategy-title {
    font-size: 22px;
  }

  .solution-card {
    padding: 26px 18px 22px;
  }

  .solution-card__num {
    font-size: 44px;
  }

  .solution-card__title {
    font-size: 24px;
  }

  .solution-card__desc,
  .solution-card__list li {
    font-size: 14px;
  }

  .athlete-team__title {
    font-size: 26px;
  }

  .athlete-team__text {
    font-size: 12px;
    line-height: 1.9;
  }

  .athlete-team__feature {
    min-height: 74px;
    padding: 14px 14px;
    border-radius: 18px;
  }

  .athlete-team__feature-num {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .athlete-team__feature-title {
    font-size: 17px;
  }

  .athlete-team__feature-desc {
    font-size: 12px;
  }

  .solution__hero-subtitle {
    font-size: 16px;
}

.solution__cta-banner {
    background: url(../img/solution-cta-photo.png) no-repeat center top / cover;
    width: 100%;
    margin: 5% auto;
}

.strategy-container {
    width: min(100%, var(--container-width));
    margin: 0 auto;
    padding-inline: 20px;
}

.solution__strategy-sub {
  margin: 10px 0 0;
  font-size: 14px;
}

.athlete-container {
    width: min(100%, var(--container-width));
    margin: 0 auto;
    padding-inline: 20px;
}

    .athlete-team__body {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 5%;
        margin-top: 0;
    }

    .athlete-team__features {
    gap: 10px;
}

.athlete-team__feature-txt {
    margin: 5% 0 0;
}



}

.certified-operator {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
  color: #fff;
  background: #07327f;
}

.certified-operator__bg,
.certified-operator__overlay {
  position: absolute;
  inset: 0;
}

.certified-operator__bg {
  background: url("../img/certified-operator-bg.jpg") no-repeat center center / cover;
}

.certified-operator .container {
  position: relative;
  z-index: 1;
}

.certified-operator__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.certified-operator__head {
  margin-bottom: 34px;
}

.certified-operator__title {
  margin: 0 0 14px;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(30px, 2.6vw, 52px);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.certified-operator__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
}

.certified-operator__panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 20px 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
}

.certified-operator__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.operator-card {
  background: rgba(255, 255, 255, 0.04);
}

.operator-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 14px;
  background: rgba(244, 247, 251, 0.9);
  color: #173a75;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.operator-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px;
  background: rgba(57, 90, 155, 0.32);
  margin-top: 5%;
}

.operator-card__icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.operator-card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
}

.certified-operator__panel-note {
  margin: 22px 0 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}

.certified-operator__result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
}

.certified-operator__result-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
}

.certified-operator__result-rate {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}

.certified-operator__result-laurel {
  font-size: 44px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  transform: translateY(-6px);
}

.certified-operator__result-label {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
}

.certified-operator__result-value {
  font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(84px, 6vw, 130px);
  line-height: 0.5;
  letter-spacing: 0.01em;
  color: #fff;
}

  .certified-operator__result-laurel--left,
  .certified-operator__result-laurel--right {
    transform: translateY(-2px);
    width: 8%;
  }

/* Tablet */
@media (max-width: 1100px) {
  .certified-operator {
    padding: 72px 0 84px;
  }

  .certified-operator__grid {
    gap: 12px;
  }

  .operator-card__label {
    font-size: 16px;
  }

  .operator-card__body {
    min-height: 148px;
  }

  .certified-operator__result {
    grid-template-columns: 1fr 260px;
    gap: 20px;
    padding: 24px 24px;
  }

  .certified-operator__result-label {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .certified-operator {
    padding: 60px 0 72px;
  }

  .certified-operator__lead {
    font-size: 14px;
    line-height: 1.8;
  }

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

  .certified-operator__result {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .certified-operator__result-copy p {
    font-size: 14px;
  }

  .certified-operator__result-rate {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .certified-operator {
    padding: 52px 0 60px;
  }

  .certified-operator__title {
    font-size: 26px;
    line-height: 1.6;
  }

  .certified-operator__lead {
    font-size: 13px;
  }

  .certified-operator__panel {
    padding: 14px 12px 18px;
  }

  .certified-operator__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .operator-card__label {
    min-height: 46px;
    font-size: 16px;
  }

  .operator-card__body {
    min-height: 120px;
    padding: 16px;
  }

  .operator-card__icon {
    width: 50px;
    height: 50px;
  }

  .certified-operator__panel-note {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .certified-operator__result {
    padding: 18px 16px;
  }

  .certified-operator__result-copy p {
    font-size: 13px;
    line-height: 1.8;
  }

  .certified-operator__result-label {
    font-size: 20px;
  }

  .certified-operator__result-value {
    font-size: 72px;
  }

  .certified-operator__result-laurel {
    font-size: 34px;
    transform: translateY(-2px);
  }
}

.outsource-sales {
  position: relative;
  padding: 88px 0 92px;
  background: url("../img/outsource-sales-bg.png") no-repeat center center / cover;
  overflow: hidden;
}

.outsource-sales .container {
  position: relative;
  z-index: 1;
}

.outsource-sales__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.outsource-sales__head {
  text-align: center;
}

.outsource-sales__title {
  margin: 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(30px, 2.8vw, 58px);
  font-weight: 600;
  line-height: 1.5;
  color: #111;
}

.outsource-sales__lead {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #222;
}

.outsource-sales__diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 40px;
  margin: 54px auto 42px;
  max-width: 920px;
}

.outsource-sales__line {
  position: absolute;
  left: 35%;
  right: 35%;
  top: 50%;
  height: 2px;
  background: #0d67c2;
  transform: translateY(-50%);
  z-index: 2;
}

.outsource-sales__line::before,
.outsource-sales__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0d67c2;
  transform: translateY(-50%);
}

.outsource-sales__line::before {
  left: 0;
}

.outsource-sales__line::after {
  right: 0;
}

.outsource-sales__circle {
  position: relative;
  z-index: 1;
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border: 1.5px solid #0d67c2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff3b;
  box-shadow: 0 10px 20px #6969691f;
}

.outsource-sales__circle-inner {
  width: 72%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  text-align: center;
}

.outsource-sales__circle-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.outsource-sales__circle-icon {
  width:  auto;
  height: 62px;
  object-fit: contain;
}

.outsource-sales__circle-sub {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
}

.outsource-sales__center-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.outsource-sales__center-copy p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #111;
  white-space: nowrap;
}

.outsource-sales__merits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.outsource-sales__merit {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 18px 16px;
  text-align: center;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outsource-sales__merit-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.outsource-sales__merit-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.outsource-sales__merit-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d67c2;
}

.outsource-sales__merit-desc {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4c4c4c;
}

.outsource-sales__bottom {
  margin-top: 46px;
  text-align: center;
}

.outsource-sales__bottom-title {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 32px);
  font-weight: 700;
  line-height: 1.8;
  color: #0b56ad;
}

.outsource-sales__bottom-note {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #0b56ad;
}

/* Tablet */
@media (max-width: 1024px) {
  .outsource-sales {
    padding: 76px 0 82px;
  }

  .outsource-sales__diagram {
    gap: 24px;
    max-width: 860px;
  }

  .outsource-sales__circle {
    width: min(100%, 210px);
  }

  .outsource-sales__center-copy p {
    font-size: 16px;
  }

  .outsource-sales__merits {
    gap: 14px;
  }

  .outsource-sales__merit {
    padding: 16px 12px 14px;
  }

  .outsource-sales__merit-title {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 820px) {
  .outsource-sales {
    padding: 64px 0 72px;
  }

  .outsource-sales__title {
    font-size: 22px;
  }

  .outsource-sales__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .outsource-sales__diagram {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 42px auto 34px;
  }

  .outsource-sales__line {
    display: none;
  }

  .outsource-sales__center-copy p {
    white-space: normal;
    font-size: 17px;
    line-height: 1.7;
  }

  .outsource-sales__merits {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .outsource-sales__bottom {
    margin-top: 38px;
  }

  .outsource-sales__bottom-title {
    font-size: 22px;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .outsource-sales {
    padding: 52px 0 60px;
  }

  .outsource-sales__title {
    font-size: 22px;
    line-height: 1.6;
  }

  .outsource-sales__lead {
    font-size: 13px;
  }

  .outsource-sales__circle {
    width: min(100%, 260px);
  }

  .outsource-sales__circle-title {
    font-size: 18px;
  }

  .outsource-sales__circle-sub {
    font-size: 13px;
  }

  .outsource-sales__center-copy p {
    font-size: 16px;
  }

  .outsource-sales__merit {
    min-height: 96px;
  }

  .outsource-sales__merit-title {
    font-size: 17px;
  }

  .outsource-sales__merit-desc {
    font-size: 15px;
  }

  .outsource-sales__bottom-title {
    font-size: 17px;
  }

  .outsource-sales__bottom-note {
    font-size: 12px;
  }
}

.comparison-section {
  position: relative;
  padding: 96px 0 110px;
  background: url("../img/comparison-bg.png") no-repeat center center / cover;
  overflow: hidden;
}

.comparison-section .container {
  position: relative;
  z-index: 1;
}

.comparison-section__inner {
  max-width: 980px;
  margin: 0 auto;
}

.comparison-section__head {
  text-align: center;
}

.comparison-section__title {
  margin: 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(30px, 2.8vw, 54px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #0c2f72;
}

.comparison-section__lead {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: #222;
}

.comparison-section__message {
  margin: 24px 0 0;
  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  color: #0b56ad;
}

.comparison-table-wrap {
  margin-top: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.58);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.comparison-table__head {
  background: rgba(255, 255, 255, 0.12);
}

.comparison-table__head--label {
  width: 26%;
  color: #222;
  font-weight: 700;
}

.comparison-table__head--other {
  width: 37%;
  color: #666;
  background: rgba(0, 0, 0, 0.025);
}

.comparison-table__logo {
  display: block;
  margin: 0 auto;
  max-width: 170px;
  width: 100%;
  height: auto;
}

.comparison-table__label {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  background: rgba(255, 255, 255, 0.08);
}

.comparison-table__main {
  background: #dfe8f4;
  color: #0b56ad;
  font-weight: 600;
}

.comparison-table__head--main {
  background: linear-gradient(90deg, #0a2a5e, #2f63b6);
  color: #fff;
}

.comparison-table__main strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #0b56ad;
}

.comparison-table__main small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  color: #0d67c2;
}

.comparison-table__other {
  color: #8d8d8d;
  background: rgba(0, 0, 0, 0.02);
  font-size: 16px;
  font-weight: 500;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.ba-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}

.ba-col {
  position: relative;
}

.ba-head {
  position: relative;
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 10px;
  font-family: "Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
}

.ba-head::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.35;
}

.ba-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  background: #F8FAFC;
  transform: translateX(-50%) rotate(45deg);
}

.ba-head--before {
  color: #4a4a4a;
}

.ba-head--after {
  color: #0e82be;
}

.ba-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ba-card__title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ba-diagram {
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  min-height: 180px;
}

.ba-diagram--before {
  background: #f3f3f3;
  color: #555;
}

.ba-diagram--after {
  background: rgba(14, 130, 190, 0.08);
  color: #0e82be;
}

.ba-person,
.ba-result,
.ba-node,
.ba-center {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
    font-size: 0.8rem;
}

.ba-person,
.ba-result {
  width: 80px;
  height: 80px;
  background: #fff;
  margin: 0 auto;
}

.ba-arrow {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
    align-items: center;
    display: flex;
}

.ba-warning {
  margin-top: 18px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
}

.ba-flex {
    display: flex;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: center;
}

.ba-node {
    min-height: 40px;
    background: #0e82be;
    font-size: 0.9rem;
    width: 100%;
    color: #fff;
}

.ba-points p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
    position: relative;
  padding-left: 1.5rem;
  margin: 0 0 0.6rem 0;
  color: #0e82be;
  font-weight: 500;
}

.ba-points p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0e82be;
  font-weight: 700;
}

.ba-points--before p {
  position: relative;
  padding-left: 1.5rem;
  margin: 0 0 0.6rem 0;
  color:var(--color-text);
}

.ba-points--before p::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #888;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ba-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ba-card {
    min-height: auto;
  }

  .ba-head {
  font-size: 2.3rem;
}
}

/* Tablet */
@media (max-width: 1024px) {
  .comparison-section {
    padding: 84px 0 96px;
  }

  .comparison-section__lead {
    font-size: 15px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px 14px;
  }

  .comparison-table__main strong {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .comparison-section {
    padding: 64px 0 72px;
  }

  .comparison-section__title {
    font-size: 22px;
    line-height: 1.6;
  }

  .comparison-section__lead {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.9;
  }

  .comparison-section__message {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
  }

  .comparison-table-wrap {
    margin-top: 34px;
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
  }

  .comparison-table__label,
  .comparison-table__other,
  .comparison-table thead th {
    font-size: 14px;
  }

  .comparison-table__main strong {
    font-size: 17px;
  }

  .comparison-table__main small {
    font-size: 11px;
  }
}

.contact-cta {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #6ca1d2 0%, #4f8dc8 100%);
}

.contact-cta__bg,
.contact-cta2__bg,
.contact-cta__overlay {
  position: absolute;
  inset: 0;
}

.contact-cta__bg {
  background: url("../img/cta-bg.png") no-repeat center center / cover;
}

.contact-cta2__bg {
  background: url("../img/cta2-bg.png") no-repeat center center / cover;
}

.contact-cta__overlay {
  background:
    linear-gradient(180deg, rgba(91, 146, 198, 0.78) 0%, rgba(77, 137, 198, 0.78) 100%);
}

.contact-cta .container {
  position: relative;
  z-index: 1;
}

.contact-cta__panel {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 50px 50px;
    background: rgb(216 231 246 / 31%);
    backdrop-filter: blur(2px);
    text-align: center;
}

.contact-cta__eyebrow {
  margin: 0;
font-family:"Bebas Neue","DIN Condensed","Helvetica Neue",Arial,sans-serif;
  font-size: clamp(26px, 2vw, 40px);
  letter-spacing: 0.16em;
  line-height: 1;
  color: #62e5f4;
}

.contact-cta__title {
  margin: 15px 0 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #fff;
}

.contact-cta__divider {
  width: 72px;
  height: 2px;
  margin: 26px auto 0;
  background: rgba(255, 255, 255, 0.72);
}

.contact-cta__lead {
  margin: 25px 0;
  font-size: 16px;
  line-height: 1.85;
  color: #fff;
}

.contact-cta__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin: 28px 0 0;
}

.contact-cta__point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.contact-cta__support {
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
}

.contact-cta__button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  min-height: 84px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 999px;
  background: #9C1C14;
  color: #fff;
  box-shadow: 0 14px 28px rgba(128, 28, 20, 0.18);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-cta__button:hover {
  background: var(--color-red-hover);
}

.contact-cta__button-small {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.contact-cta__button-main {
    display: block;
    margin-top: 5px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.05rem;
    font-weight: 600;
}

.contact-cta__button-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-cta {
    padding: 60px 0;
  }

  .contact-cta__panel {
    padding: 56px 28px 44px;
  }

  .contact-cta__title {
    font-size: clamp(28px, 3vw, 46px);
  }

  .contact-cta__lead {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-cta__panel {
    padding: 46px 20px 38px;
  }

  .contact-cta__title {
    font-size: 26px;
    line-height: 1.5;
  }

  .contact-cta__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-cta__points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .contact-cta__point {
    width: 100%;
    max-width: 340px;
    min-height: 44px;
    font-size: 14px;
  }

  .contact-cta__support {
    font-size: 15px;
  }

  .contact-cta__button {
    width: 100%;
    min-width: 0;
    max-width: 360px;
    min-height: 78px;
  }

  .contact-cta__button-small {
    font-size: 12px;
  }

  .contact-cta__button-main {
    font-size: 17px;
  }

  .contact-cta__button-arrow {
    right: 17px;
    width: 9px;
  }
}

@media (max-width: 640px) {
  .contact-cta {
    padding: 48px 0;
  }

  .contact-cta__panel {
    padding: 38px 16px 32px;
  }

  .contact-cta__eyebrow {
    font-size: 22px;
  }

  .contact-cta__title {
    font-size: 24px;
  }

  .contact-cta__divider {
    margin-top: 20px;
  }

  .contact-cta__lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .contact-cta__support {
    margin-top: 24px;
    font-size: 14px;
  }
}

.pricing-plan {
  position: relative;
  padding: 92px 0 84px;
  background: #f3f4f6;
  overflow: hidden;
}

.pricing-plan__bg {
  position: absolute;
  inset: 0;
  background: url("../img/pricing-bg.png") no-repeat center center / cover;
}

.pricing-plan .container {
  position: relative;
  z-index: 1;
}

.pricing-plan__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-plan__head {
  text-align: center;
}

.pricing-plan__title {
  margin: 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
    font-size: clamp(30px, 2.6vw, 46px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: #111;
}

.pricing-plan__lead {
  position: relative;
  display: inline-block;
  margin: 22px auto 0;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 1.9;
  color: #222;
}

.pricing-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.plan-card__top-line {
  width: 100%;
  height: 5px;
  background: #9C1C14;
}

.plan-card__label {
  width: calc(100% - 36px);
  margin: 20px auto 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: #F2F3F7;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.plan-card__label-sub {
  font-size: 12px;
  color: #0d67c2;
  background: rgba(13, 103, 194, 0.08);
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 3px;
}

.plan-card__price-area {
  padding: 24px 24px 0;
  text-align: center;
}

.plan-card__price {
  margin: 0;
  font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1;
  color: #9C1C14;
  letter-spacing: 0.01em;
}

.plan-card__price span {
  font-size: clamp(64px, 5vw, 92px);
}

.plan-card__price {
  font-size: 34px;
  font-weight: 700;
}

.plan-card__unit {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}

.plan-card__note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

.plan-card__description {
  padding: 10px 20px 0;
  text-align: center;
}

.plan-card__description p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
}

.plan-card__feature-list {
  margin: 18px 24px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  flex-grow: 1;
}

.plan-card__feature-list li {
  font-size: 13px;
  line-height: 1.8;
  color: #222;
  text-align: center;
}

.plan-card__bottom {
  margin-top: auto;
  padding: 22px 24px 24px;
  background: #f7fafd;
  margin-top: auto;
}

.plan-card__bottom-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.plan-card__recommend-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.9;
  color: #222;
}

.plan-card__recommend-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1787e5;
  font-weight: 700;
}

.pricing-plan__bottom {
  margin-top: 42px;
  text-align: center;
}

.pricing-plan__highlight {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 700;
  line-height: 1.7;
  color: #111;
}

.pricing-plan__highlight span {
  color: #b21e12;
}

.pricing-plan__sub {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #111;
      font-weight: 500;
}

.pricing-plan__sub-note {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.pricing-plan__cta {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 410px;
  min-height: 84px;
  margin-top: 24px;
  padding: 18px 0;
  border-radius: 999px;
  background: #9C1C14;
  color: #fff;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.pricing-plan__cta:hover {
background: var(--color-red-hover);
}

.pricing-plan__cta-small {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-plan__cta-main {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.pricing-plan__cta-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: auto;
  transform: translateY(-50%);
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1100px) {
  .pricing-plan {
    padding: 80px 0 76px;
  }

  .pricing-plan__cards {
    gap: 18px;
  }

  .plan-card__label {
    font-size: 16px;
  }

  .plan-card__description p,
  .plan-card__feature-list li,
  .plan-card__recommend-list li {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .pricing-plan__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card--featured {
    transform: none;
  }

  .pricing-plan__highlight {
    font-size: 20px;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .pricing-plan {
    padding: 60px 0 60px;
  }

  .pricing-plan__title {
    font-size: 24px;
    line-height: 1.5;
  }

  .pricing-plan__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .pricing-plan__cards {
    margin-top: 34px;
    gap: 20px;
  }

  .plan-card__label {
    width: calc(100% - 24px);
    font-size: 15px;
    padding: 10px 12px;
  }

  .plan-card__price-area {
    padding: 20px 16px 0;
  }

  .plan-card__price span {
    font-size: 80px;
  }

  .plan-card__price {
    font-size: 28px;
  }

  .plan-card__unit {
    font-size: 16px;
  }

  .plan-card__description,
  .plan-card__feature-list,
  .plan-card__bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .plan-card__description p,
  .plan-card__feature-list li,
  .plan-card__recommend-list li {
    font-size: 13px;
  }

  .plan-card__bottom-title {
    font-size: 16px;
  }

  .pricing-plan__sub {
    font-size: 15px;
  }

  .pricing-plan__sub-note,
  .pricing-plan__consult-note {
    font-size: 12px;
  }

  .pricing-plan__cta {
    width: 100%;
    min-width: 0;
    max-width: 360px;
    min-height: 76px;
  }

  .pricing-plan__cta-small {
    font-size: 12px;
  }

  .pricing-plan__cta-main {
    font-size: 17px;
  }

  .pricing-plan__cta-arrow {
    right:17px;
    width: 9px;
  }
}

.performance-section {
  position: relative;
  padding: 92px 0 88px;
  overflow: hidden;
  background: #123f8f;
  color: #fff;
}

.performance-section__bg,
.performance-section__overlay {
  position: absolute;
  inset: 0;
}

.performance-section__bg {
  background: url("../img/performance-bg.jpg") no-repeat center center / cover;
}

.performance-section__overlay {
  background: rgba(12, 52, 128, 0.72);
}

.performance-section .container {
  position: relative;
  z-index: 1;
}

.performance-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label--white {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.section-label--white .section-label__line {
  width: 88px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.section-label--white .section-label__text {
  font-family:"Bebas Neue","DIN Condensed","Helvetica Neue",Arial,sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
}

.performance-section__title {
    margin: 0;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: clamp(34px, 3.6vw, 72px);
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 0.1rem;
}

.performance-section__lead {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.performance-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.performance-section__tags li {
  min-width: 104px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.performance-section__sublead {
  margin: 36px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.performance-section__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 30px 100px;
}

.performance-card {
  text-align: center;
}

.performance-card__head {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 15px 0;
    border-radius: 999px;
    background: #fff;
    color: #0d4f9e;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.performance-card__body {
  padding: 34px 12px 0;
}

.performance-card__value {
  margin: 0;
  line-height: 1;
  color: #69ebff;
  font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.performance-card__value-main {
  font-size: clamp(64px, 5.5vw, 100px);
  font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  letter-spacing: 0.01em;
  background: linear-gradient(0deg, #6EBADB, #66E9F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.performance-card__value-sub {
  font-size: clamp(28px, 2.2vw, 44px);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  font-weight: 700;
  color: #69ebff;
}

.performance-card__note {
  margin: 0;
  font-size: 13px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
}

.performance-section__bottom {
  margin-top: 42px;
  text-align: center;
}

.performance-section__bottom p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: #fff;
}

.performance-section__bottom p + p {
  margin-top: 8px;
}

/* Tablet */
@media (max-width: 1100px) {
  .performance-section {
    padding: 76px 0 76px;
  }

  .performance-section__title {
    font-size: clamp(38px, 4vw, 74px);
  }

  .performance-section__lead,
  .performance-section__sublead,
  .performance-section__bottom p {
    font-size: 16px;
  }

  .performance-card__head {
    font-size: 18px;
    min-height: 68px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .performance-section {
    padding: 60px 0 64px;
  }

  .performance-section__stats {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 10% auto;
  }

  .performance-section__title {
    font-size: 42px;
    line-height: 1.35;
  }

  .performance-section__lead {
    font-size: 15px;
  }

  .performance-section__sublead {
    margin-top: 28px;
    font-size: 16px;
  }

  .performance-card__body {
    padding-top: 26px;
  }

  .performance-section__bottom {
    margin-top: 30px;
  }
}

@media (max-width: 640px) {
  .performance-section {
    padding: 52px 0 56px;
  }

  .section-label--white {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-label--white .section-label__line {
    width: 64px;
  }

  .section-label--white .section-label__text {
    font-size: 20px;
  }

  .performance-section__title {
    font-size: 34px;
  }

  .performance-section__lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .performance-section__tags {
    gap: 10px;
    margin-top: 22px;
    justify-content: center;
  }

  .performance-section__tags li {
    padding: 10px 14px;
    font-size: 14px;
  }

  .performance-section__sublead {
    font-size: 14px;
  }

    .performance-card__head {
        min-height: 40px;
        font-size: 15px;
        padding: 12px 16px;
        width: 70%;
        display: block;
        margin: 0 auto;
    }

  .performance-card__value-main {
    font-size: 68px;
  }

  .performance-card__value-sub {
    font-size: 26px;
  }

  .performance-card__note {
    font-size: 12px;
  }

  .performance-section__bottom p {
    font-size: 14 px;
    line-height: 1.8;
  }
}

.onboarding {
  padding: 96px 0 88px;
  background: #F4F7FF;
}

.onboarding .container {
  max-width: 1060px;
  margin: 0 auto;
  padding-inline: 24px;
}

.onboarding__head {
  text-align: center;
}

.onboarding__eyebrow {
    margin: 0;
    font-family: "Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(26px, 2vw, 40px);
    letter-spacing: 0.16em;
    line-height: 1;
    color: #62e5f4;
}

.onboarding__title {
  margin: 15px 0 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(30px, 2.6vw, 46px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #111;
}

.onboarding__lead {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

.onboarding__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 64px;
}

.onboarding-step {
  position: relative;
  min-height: 320px;
  padding: 28px 20px 28px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.onboarding-step__num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: "Bebas Neue", "DIN Condensed", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(44px, 3vw, 64px);
    line-height: 1;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, #0A478D 0%, #0E82BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.onboarding-step__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.onboarding-step__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.onboarding-step__title {
    margin: 15px 0 0;
    font-size: clamp(15px, 1.3vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    color: #111;
}

.onboarding-step__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 10px 0 0;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(14, 130, 190, 0.08);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #0e82be;
}

.onboarding-step__text {
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #222;
}

.onboarding__bottom {
  margin-top: 34px;
  text-align: center;
}

.onboarding__bottom-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

/* Tablet */
@media (max-width: 1024px) {
  .onboarding {
    padding: 80px 0 74px;
  }

  .onboarding__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
  }

  .onboarding-step {
    min-height: 300px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .onboarding {
    padding: 60px 0 56px;
  }

  .onboarding .container {
    padding-inline: 25px;
  }

  .onboarding__eyebrow {
    font-size: 22px;
  }

  .onboarding__title {
    font-size: 24px;
    line-height: 1.6;
  }

  .onboarding__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .onboarding__steps {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 46px;
  }

  .onboarding-step {
    min-height: auto;
    padding: 28px 16px 24px;
  }

  .onboarding-step__num {
    top: -18px;
    font-size: 42px;
  }

  .onboarding-step__icon-wrap {
    width: 74px;
    height: 74px;
    margin-top: 24px;
  }

  .onboarding-step__title {
    font-size: 22px;
  }

  .onboarding-step__text {
    font-size: 14px;
    line-height: 1.75;
  }

  .onboarding__bottom {
    margin-top: 28px;
  }

  .onboarding__bottom-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.faq-section {
  padding: 110px 0 120px;
  background: #F7F8F9;
}

.faq-section .container {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 24px;
}

.faq-section__head {
  text-align: center;
}

.faq-section__eyebrow {
  margin: 0;
  font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(26px, 2vw, 40px);
  line-height: 1;
  letter-spacing: 0.14em;
  color: #66e9f4;
}

.faq-section__title {
  margin: 24px 0 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(38px, 3.2vw, 64px);
  font-weight: 600;
  line-height: 1.5;
  color: #111;
}

.faq-section__lead {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

.faq-group {
  margin-top: 74px;
}

.faq-group:first-of-type {
  margin-top: 56px;
}

.faq-group__head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-group__title {
  margin: 0;
  font-size: clamp(18px, 1.4vw, 32px);
  font-weight: 600;
  line-height: 1.6;
  color: #111;
}

.faq-group__line {
  display: block;
  width: 80px;
  height: 1px;
  margin: 18px auto 0;
  background: #00438E;
}

.faq-list {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.faq-item__question {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr 20px;
  align-items: center;
  gap: 18px;
  padding: 24px 8px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__q {
  font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #00438E;
}

.faq-item__text {
  font-size: 18px;
  line-height: 1.7;
  color: #111;
  font-weight: 600;
}

.faq-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: #bdbdbd;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

.faq-item__answer {
  padding: 0 50px 24px 50px;
}

.faq-item__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* Tablet */
@media (max-width: 900px) {
  .faq-section {
    padding: 84px 0 90px;
  }

  .faq-group {
    margin-top: 60px;
  }

  .faq-item__question {
    grid-template-columns: 22px 1fr 18px;
    gap: 14px;
    padding: 22px 4px;
  }

  .faq-item__text {
    font-size: 16px;
  }

  .faq-item__answer {
    padding: 0 36px 22px 36px;
  }

  .faq-item__answer p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .faq-section {
    padding: 64px 0 72px;
  }

  .faq-section .container {
    padding-inline: 16px;
  }

  .faq-section__eyebrow {
    font-size: 22px;
  }

  .faq-section__title {
    font-size: 30px;
    line-height: 1.6;
  }

  .faq-section__lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.75;
  }

  .faq-group {
    margin-top: 48px;
  }

  .faq-group:first-of-type {
    margin-top: 40px;
  }

  .faq-group__title {
    font-size: 20px;
  }

  .faq-group__line {
    width: 64px;
    margin-top: 14px;
  }

  .faq-item__question {
    grid-template-columns: 18px 1fr 16px;
    gap: 12px;
    padding: 18px 2px;
  }

  .faq-item__q {
    font-size: 24px;
  }

  .faq-item__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-item__answer {
    padding: 0 28px 18px 28px;
  }

  .faq-item__answer p {
    font-size: 14px;
    line-height: 1.8;
  }
}

.vision-message {
  padding: 50px 0;
  background: #ffffff;
}

.vision-message .container {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 24px;
}

.vision-message__panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 540px;
}

.vision-message__bg,
.vision-message__overlay {
  position: absolute;
  inset: 0;
}

.vision-message__bg {
  background: url("../img/vision-message-bg.png") no-repeat center center / cover;
}

.vision-message__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(12, 51, 128, 0.84) 0%,
      rgba(67, 44, 106, 0.72) 45%,
      rgba(170, 39, 34, 0.78) 100%
    );
}

.vision-message__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 30px;
  text-align: center;
}

.vision-message__title {
  margin: 0;
  font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
  font-size: clamp(24px, 2.2vw, 42px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: #fff;
    position: relative;
  z-index: 1;
}

.vision-message__title::before {
  content: "ATHLETE SALES BPO";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(60px, 6vw, 140px);
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.08);
  z-index: -1;
  pointer-events: none;
}

.vision-message__divider {
  width: 96px;
  height: 2px;
  margin: 26px auto 0;
  background: rgba(255, 255, 255, 0.72);
}

.vision-message__body {
  margin-top: 34px;
}

.vision-message__body p {
  margin: 0;
  font-size: 15px;
  line-height: 2.15;
  color: rgba(255, 255, 255, 0.96);
}

.vision-message__body p + p {
  margin-top: 28px;
}

.vision-message__strong {
  margin-top: 30px;
}

.vision-message__strong p {
  margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.9;
  color: #fff;
}

.vision-message__strong p + p {
  margin-top: 8px;
}

/* Tablet */
@media (max-width: 1024px) {
  .vision-message {
    padding: 60px 0 72px;
  }

  .vision-message__panel {
    min-height: 500px;
  }

  .vision-message__inner {
    padding: 82px 24px 72px;
  }

  .vision-message__title {
    font-size: clamp(30px, 3vw, 50px);
  }

  .vision-message__body p {
    font-size: 15px;
    line-height: 2;
  }

  .vision-message__strong p {
    font-size: clamp(20px, 1.9vw, 28px);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .vision-message {
    padding: 44px 0 56px;
  }

  .vision-message .container {
    padding-inline: 16px;
  }

  .vision-message__panel {
    border-radius: 18px;
    min-height: auto;
  }

.vision-message__inner {
        padding: 50px 20px;
    }

  .vision-message__title {
    font-size: 24px;
    line-height: 1.5;
  }

  .vision-message__divider {
    width: 72px;
    margin-top: 20px;
  }

  .vision-message__body {
    margin-top: 26px;
  }

  .vision-message__body p {
    font-size: 14px;
    line-height: 1.95;
  }

  .vision-message__body p + p {
    margin-top: 22px;
  }

  .vision-message__strong {
    margin-top: 30px;
  }

  .vision-message__strong p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.cta-pre__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    text-align: center;
        margin-top: 5%;
        font-family:
    "Noto Serif JP",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
}

.cta-pre__lead {
  margin: 0;
  font-size: clamp(1.3rem, 1.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #111;
}

.cta-pre__text {
    margin: 0;
    font-size: clamp(1rem, 1vw, 1.8rem);
    line-height: 1.9;
    color: #333;
  font-weight: 600;
}

p.contact-cta-text {
    color: #555;
}

.ath-contact {
  position: relative;
  padding: 90px 20px;
  background:
    linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
  font-size: 0.95em;
  overflow: hidden;
}

.ath-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 55, 122, 0.03) 0%, rgba(18, 55, 122, 0) 45%),
    repeating-linear-gradient(
      120deg,
      rgba(18, 55, 122, 0.02) 0,
      rgba(18, 55, 122, 0.02) 1px,
      transparent 1px,
      transparent 22px
    );
  pointer-events: none;
}

.ath-contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

.ath-contact__heading {
  text-align: center;
  margin: 0 auto 40px;
}

.ath-contact__eyebrow {
  margin: 0 0 10px;
  color: #2e5fa8;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  font-family: "Bebas Neue","DIN Condensed","Helvetica Neue",Arial,sans-serif;
}

.ath-contact__title {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ath-contact__lead {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.ath-contact__box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}


.ath-contact__info {
  background: #fff;
  box-shadow: 0 10px 25px rgba(17, 34, 68, 0.05);
  padding: 26px 22px;
}

.ath-contact__info-title {
  margin: 0 0 14px;
  color: #12377a;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ath-contact__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ath-contact__info-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: #222;
  font-size: 1rem;
  line-height: 1.7;
}

.ath-contact__info-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #2e5fa8;
  border-radius: 50%;
  transform: translateY(-50%);
}

.ath-contact__note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e9f0;
}

.ath-contact__note p {
    margin: 0 0 6px;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}

.ath-contact__form {
  background: #fff;
  box-shadow: 0 10px 25px rgba(17, 34, 68, 0.05);
  padding: 30px;
}

.ath-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ath-contact__field {
  margin-bottom: 14px;
}

.ath-contact__field label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ath-contact__field label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  padding: 0 6px;
  background: #f8ecec;
  color: #b72b2b;
  font-size: 0.6rem;
  border-radius: 999px;
}

.ath-contact__field input, .ath-contact__field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cfd8e3;
    background: #fff;
    padding: 10px;
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    outline: none;
    border-radius: 0;
    transition: 0.25s;
}

.ath-contact__field input::placeholder,
.ath-contact__field textarea::placeholder {
  color: #9aa4b2;
}

.ath-contact__field input:focus,
.ath-contact__field textarea:focus {
  border-color: #2e5fa8;
  box-shadow: 0 0 0 3px rgba(46, 95, 168, 0.08);
}

.ath-contact__field textarea {
  min-height: 140px;
  resize: vertical;
}

.ath-contact__privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.ath-contact__privacy input {
  accent-color: #12377a;
}


.ath-contact__submit {
    text-align: center;
    letter-spacing: 0.08em;
    cursor: pointer;
    position: relative;
    align-items: center;
    padding: 20px;
    border-radius: 999px;
    background: #9C1C14;
    color: #fff;
    transition: background-color 0.25s ease, transform 0.25s ease;
    width: 50%;
    display: block;
    margin: 5% auto 0;
}


.ath-contact__submit button {
  appearance: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: #fff;
}


.ath-contact__cta-arrow{
  position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: auto;
    object-fit: contain;
}

.ath-contact__submit:hover {
  background: var(--color-red-hover);
}

@media (max-width: 900px) {
  .ath-contact {
    padding: 70px 16px;
  }

  .ath-contact__box {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ath-contact__row {
    grid-template-columns: 1fr;
  }

  .ath-contact__form,
  .ath-contact__info {
    padding: 22px 18px;
  }

  .ath-contact__title {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .ath-contact__submit button {
    width: 100%;
    min-width: 0;
  }

  .ath-contact__submit {
    width: 100%;
}

.cta-pre__text {
    margin: 3% 0 0;
}
}

.footer {
  background: #082a5c;
  padding: 48px 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__logo {
  margin: 0;
    font-family:
    "Bebas Neue",
    "DIN Condensed",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer__right {
  text-align: right;
}

.footer__nav {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.footer__nav a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer__nav a:hover {
  opacity: 1;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer__right {
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .cta-pre__inner {
     margin-top: 10%;
}
}


.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-panel__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    color: #858585;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.mobile-panel__nav a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.mobile-panel__cta {
    margin-top: 40px;
    padding: 20px 28px;
    background: var(--color-red-hover);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
}