:root {
  --bg-soft: linear-gradient(180deg, #f2f6ff 0%, #eef7fb 100%);
  --bg-blue: radial-gradient(circle at 10% 10%, #5c63ea20, transparent 50%), radial-gradient(circle at 90% 80%, #259eea30, transparent 50%), #2563ea10;
  --text: #333333;
  --text-soft: #4d5b79;
  --line: #ccc;
  --primary: #2563ea;
  --primary-deep: #042866;
  --accent: #ff6400;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(26, 60, 135, 0.12);
  --shadow-soft: 0 12px 32px rgba(26, 60, 135, 0.08);
  --radius-sm: 5px;
  --radius-md: 10px;
  --container: min(1440px, calc(100vw - 120px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.section-soft {
  background: var(--bg-soft);
}
.section-labeled::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(38, 88, 232, 0.06);
  font-size: 240px;
  font-weight: 400;
  pointer-events: none;
}
.section-labeled--white::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 1);
  font-size: 240px;
  font-weight: 400;
  pointer-events: none;
  z-index: 0;
}

.section-header,
.section-header--compact {
  text-align: center;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 140px;
  z-index: 1;
  position: relative;
}
.section-header__eyebrow {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #2563ea, #0098f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-header h2,
.intro h2,
.hero h1,
.cta__inner h2 {
  margin: 0;
  line-height: 1.3;
}
.section-header h2 {
  color: var(--primary-deep);
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.section-header p:last-child,
.hero__text,
.intro__text p,
.features__card p,
.service__note,
.voices__body p,
.flow__card p,
.cta__inner p,
.partners__card p,
.support__card li,
.issues__card li {
  color: var(--text);
}
.section-header p:last-child {
  margin: 16px 0 0;
  line-height: 1.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px 2px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  box-shadow: none;
}
.button--primary {
  background: linear-gradient(90deg, var(--accent) 0%, #fd9000 100%);
  box-shadow: 0 5px 10px rgba(30, 30, 30, 0.2);
  color: var(--white);
}
.header .button--primary {
  box-shadow: none;
}
.header .button--secondary {
  border-color: #2563ea;
  color: var(--primary);
  box-shadow: none;
}
.button--secondary {
  background: var(--white);
  border-color: #2563ea;
  box-shadow: var(--shadow-soft);
  color: var(--primary);
}
.button--large {
  min-height: 70px;
  padding: 0 30px;
  font-size: clamp(1rem, 2vw, 1.125em);
  max-width: 320px;
  width: 100%;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.brand__note {
  color: var(--text-soft);
  font-size: 0.72rem;
}
.brand__name {
  max-width: 260px;
  width: clamp(180px, 4vw, 260px);
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(213, 227, 251, 0.8);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.header-layout {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__nav {
  display: flex;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.875rem;
}
.header__nav a:hover,
.footer__links a:hover {
  color: var(--primary);
}
.header__actions {
  display: flex;
  gap: 12px;
}

/*ハンバーガーメニュー*/
.header__nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 1024px) {
  .header.active {
    backdrop-filter: none;
    background: none;
  }
  .header-layout {
    display: none;
  }
  .header .header-layout {
    position: fixed;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .header.active .header-layout {
    right: 0;
    top: 0;
    transform: translateX(0);
  }
  .header.active .header__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.5rem;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
  }
  .header.active .header__actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
  }
  .header.active .button {
    font-size: 1.5rem;
    padding: 10px 24px;
    max-width: 400px;
  }
  .header__nav a {
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    padding-left: 10px;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    margin-right: -4px;
    padding: 24px;
    border-radius: 50px;
  }

  .hamburger span {
    position: absolute;
    width: 60%;
    height: 2px;
    background: var(--primary);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) {
    top: 18px;
  }
  .hamburger span:nth-child(2) {
    top: 27px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 24px;
  }
  .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
    top: 24px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, #5c63ea20, transparent 50%), radial-gradient(circle at 90% 80%, #259eea30, transparent 50%), url("../../../img/lp/axl-studio/ad_partners_company/hero_bg.png"), #2563ea10;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: end;
  gap: 44px;
  padding: 78px 0 58px;
}
.hero__content {
  padding: 72px 0 58px;
}
.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
}
.hero h1 .hero__copy {
  background: linear-gradient(90deg, #2563ea, #0098f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.hero__stats {
  max-width: 670px;
  margin-top: 28px;
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
  padding-bottom: 0;
  background: rgba(255, 255, 255);
}
.hero__stat-card {
  text-align: center;
}
.hero__caption {
  margin: 12px 6px 0 0;
  color: #7184ad;
  font-size: 0.76rem;
  text-align: right;
}
.hero__visual {
  padding: 40px 0;
}
.hero__photo-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}
.hero__photo-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow:
    18px 18px 0 rgba(255, 255, 255, 0.3),
    var(--shadow);
  transform: skew(-8deg);
}
.hero__photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.28) 100%), radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 38%);
}
.hero__photo-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  transform: skew(8deg);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-deep);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
.hero__photo-card--accent-a {
  background: linear-gradient(160deg, #d0e5ff 0%, #84baff 100%);
}
.hero__photo-card--accent-b {
  background: linear-gradient(160deg, #dae2f7 0%, #8ca2e8 100%);
}
.hero__photo-card--accent-c {
  background: linear-gradient(160deg, #d1f0ea 0%, #64b6b8 100%);
}
.hero__photo-card--accent-d {
  background: linear-gradient(160deg, #f7d6cc 0%, #f78b72 100%);
}
.hero__photo-card--accent-e {
  background: linear-gradient(160deg, #dce7ff 0%, #3b83ff 100%);
}
.hero__photo-card--accent-f {
  background: linear-gradient(160deg, #ffe6cb 0%, #ffb65e 100%);
}
.hero__photo-card--tall {
  min-height: 280px;
}
.hero__photo-card--wide {
  grid-column: span 2;
}

.clients {
  padding: 52px 0;
}
.clients .container {
  width: 100%;
}
.clients .section-header {
  margin-bottom: 2rem;
}
.clients .section-header h2 {
  color: var(--text);
  font-size: clamp(1.3rem, 3vw, 1.5rem);
}
.clients__logo__inner {
  overflow: hidden;
  display: flex;
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 98%, transparent);
}
.clients__logo-list {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  list-style: none;
  animation: scroll 200s linear infinite;
}
.clients__logo-item {
  list-style: none;
}
.clients__logo-item img {
  height: 60px;
  width: auto;
  display: block;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.intro__layout {
  display: flex;
  align-items: start;
  max-width: 1152px;
  justify-content: space-between;
}
.intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}
.intro h2 span {
  color: var(--primary);
}
.intro__text {
  font-size: 1.125rem;
  line-height: 2;
  flex-basis: 50%;
}
.intro__mark {
  width: 120px;
  height: 160px;
  margin: 40px auto 0;
}

.issues,
.support,
.partners,
.voices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.issues__card,
.partners__card,
.service__note {
  border: 1px solid rgba(140, 177, 255, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}
.issues__card,
.partners__card {
  border-radius: var(--radius-sm);
}
.issues__card {
  position: relative;
  padding: 36px 28px 28px;
  border: none;
}
.issues__icon {
  display: grid;
  place-items: center;
  width: 158px;
  height: 158px;
  margin: -116px auto 24px;
}
.issues__card h3,
.features__card h3,
.partners__card h3,
.voices__card h3,
.flow__card h3,
.service__node h3,
.support__card h3 {
  margin: 0;
  font-size: 1.5rem;
}
.issues {
  padding-top: 80px;
  row-gap: 100px;
}
.issues__card h3 {
  font-size: 1.45rem;
  line-height: 1.55;
  text-align: center;
}
.issues__card ul,
.support__card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.issues__card li,
.support__card li {
  line-height: 1.85;
}
.issues__card li::before,
.support__card li::before,
.voices__body p strong::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-flex;
  margin-right: 10px;
}
.issues__card li::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/issue__checkmark.png);
  width: 14px;
  height: 10px;
}
.voices__body p strong::before,
.support__card li::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/bullet.png);
  width: 8px;
  height: 8px;
  vertical-align: middle;
}

.service {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  max-width: 1150px;
  margin: 0 auto 30px;
  align-items: start;
  gap: 16px;
}
.service__node {
  text-align: center;
}
.service__circle {
  display: grid;
  place-items: center;
  max-width: 180px;
  max-height: 180px;
  margin: 0 auto 10px;
}
.service h3 {
  color: var(--primary);
}
.service__flow {
  position: relative;
  margin-top: 35%;
  text-align: center;
}
.service__flow::before,
.service__flow::after {
  content: "";
  position: absolute;
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/service__arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 193px;
  height: 16px;
  left: 0;
  right: 0;
  margin: auto;
}
.service__flow::before {
  top: -34px;
}
.service__flow::after {
  bottom: -34px;
  transform: scaleX(-1);
}
.service__flow span {
  text-align: center;
}
.service__note {
  margin-top: 34px;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  border-color: var(--primary);
  box-shadow: none;
  line-height: 1.9;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.features {
}
.features__card {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: end;
}
.features__card:nth-child(even) {
  direction: rtl;
}
.features__card:nth-child(even) > * {
  direction: ltr;
}
.features__no {
  display: inline-block;
  width: 70px;
}
.features__card h3 {
  margin-top: 6px;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
.features__card-text p {
  line-height: 2;
}
.features__process-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.features__process-list li {
  position: relative;
  margin-bottom: 10px;
  padding: 16px 16px 16px 72px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.features__process-list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: 50%;
  left: 14px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #67b7ff 0%, #3362e9 100%);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.support__card {
  padding: 24px;
}
.support__image {
}
.support__role {
  margin: 18px 0 8px;
  font-size: 0.875rem;
}
.support__card ul {
  background: var(--bg-soft);
  padding: 20px;
}
.support__card ul li {
  color: var(--primary-deep);
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
}

.partners__card {
  padding: 26px;
  position: relative;
  border: none;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;
  border-top-left-radius: 5px;
}
.partners__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 80px solid;
  border-right: 114px solid transparent;
}
.partners__card:nth-child(1)::before {
  border-top-color: #0098f020; /* 三角の色 */
}

.partners__card:nth-child(2)::before {
  border-top-color: #0a8aee20;
}

.partners__card:nth-child(3)::before {
  border-top-color: #1875ec20;
}

.partners__card:nth-child(4)::before {
  border-top-color: #2563ea20;
}
.partners__type-label {
  width: 94px;
  margin-bottom: 10px;
}
.partners__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.partners__chip-row span {
  padding: 2px 8px 4px;
  border: 1px solid;
  border-color: var(--primary-deep);
  border-radius: var(--radius-sm);
  color: var(--primary-deep);
  line-height: 1.3;
}
.partners__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.partners__meta strong {
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 20px 8px;
  border-radius: 50px;
  color: var(--white);
  background: linear-gradient(90deg, #2563ea 0%, #1e50be 100%);
}
.partners__avatar {
  width: 116px;
}
.partners__avatar p {
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}
.partners__career p {
  padding-left: 16px;
}
.voices__card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
}
.voices__head {
  padding: 32px 20px;
  background: linear-gradient(90deg, #2563ea 0%, #1e50be 100%);
  color: var(--white);
  flex-grow: 1;
}
.voices__head span {
  display: inline-block;
  margin-bottom: 6px;
  margin-right: 4px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255);
  color: var(--text);
  padding: 0 10px 2px;
}
.voices__head span.voices__head-case {
  border: 1px solid rgba(255, 255, 255);
  background-color: transparent;
  color: #ffffff;
}
.voices__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.voices__card h3 {
}
.voices__body {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.voices__body p {
  line-height: 1.8;
}
.voices__body p strong {
  color: #515151;
}
.voices__body p.voices__body-result {
  background: var(--white);
  padding: 20px;
  flex-grow: 1;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.flow__card {
  padding: 26px 0px;
  border-radius: 22px;
  text-align: center;
  position: relative;
}
.flow__card::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 35%;
  width: 20%;
  height: 2px;
  background: #2563ea30;
}
.flow__card:last-child::after {
  display: none;
}
.flow__card span {
  display: inline-block;
  margin-bottom: 12px;
  max-width: 150px;
  position: relative;
  z-index: 1;
}
.flow__card span::before {
  position: absolute;
  content: "";
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/flow__step01.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 44px;
  height: 64px;
  top: -15px;
  left: -10px;
}
.flow__card span:nth-child(1)::before {
  border-top-color: #0098f020; /* 三角の色 */
}

.flow__card:nth-child(2) span::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/flow__step02.png);
}

.flow__card:nth-child(3) span::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/flow__step03.png);
}

.flow__card:nth-child(4) span::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/flow__step04.png);
}

.flow__card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.cta {
  position: relative;
  overflow: hidden;
  background-image: url(../../../img/lp/axl-studio/ad_partners_company/cta_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.cta__inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.cta__inner h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  margin-bottom: 16px;
}
.cta__inner p {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}
.cta__box {
  max-width: 720px;
  margin: 30px auto 0;
  padding: 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.cta__box span {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
.cta__box p {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
}
.cta__box a.button--large {
  padding: 19px 0 24px;
  max-width: 400px;
  width: 100%;
  font-size: 1.5rem;
}

.footer {
  background: #12357f;
  color: var(--white);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 64px 0;
}
.footer__links {
  display: flex;
  gap: 24px;
  color: var(--white);
  font-size: 0.825rem;
}
.footer p {
  margin: 0;
  color: var(--white);
  font-size: 0.825rem;
}
@media (max-width: 1280px) {
  :root {
    --container: min(1440px, calc(100vw - 96px));
  }
  .header__inner {
    width: min(1440px, calc(100vw - 48px));
  }
  .features__card {
    gap: 48px;
  }
}
@media (max-width: 1180px) {
  .button--large {
    padding: 0 24px;
    font-size: 1rem;
  }
  .brand__name {
    max-width: 180px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 3vw, 3rem);
  }
}
@media (max-width: 1080px) {
  .header__nav {
    font-size: 0.75rem;
  }
}
@media (max-width: 1040px) {
  .hero__actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .button--large {
    max-width: 320px;
    width: 100%;
  }
  .hero-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .hero__visual picture {
    width: 84%;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    min-height: 64px;
  }
  .header__nav {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-layout {
    padding: 64px 0 20px;
  }
  .service__note {
    font-size: 1rem;
  }
  .features__card h3 {
    font-size: 2rem;
  }
  .support__card {
    padding: 8px;
  }
  .flow__card h3 {
    font-size: 1rem;
  }
  .flow__card p {
    font-size: 0.875rem;
  }
  .flow {
    gap: 40px;
  }
  .flow__card::after {
    right: -20%;
    top: 33%;
  }
}
@media (max-width: 890px) {
  .issues__card h3,
  .partners__card h3,
  .voices__card h3,
  .service__node h3,
  .support__card h3 {
    font-size: 1.3rem;
  }
  .hero-layout {
    padding: 64px 0 0;
  }
  .hero__content {
    padding: 50px 0 28px;
  }
  .button--large {
    min-height: 64px;
  }
  .hero__actions {
    margin-top: 18px;
  }
  .hero__stats {
    margin-top: 18px;
  }
  .hero__caption {
    margin: 0;
  }
  .hero__visual picture {
    width: 100%;
  }
  .hero__visual {
    padding: 40px 0 10px;
  }
  .features__card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .hero-layout,
  .intro__layout,
  .service,
  .features,
  .issues,
  .support,
  .partners,
  .voices,
  .flow {
    grid-template-columns: 1fr;
  }
  .service__flow {
    grid-template-columns: 1fr 1fr;
  }
  .service {
    gap: 28px;
  }
  .section-labeled--white::before {
    top: 40px;
    font-size: 5rem;
  }
  .section-labeled::before {
    top: 33px;
    font-size: 5rem;
  }
  /*.service__node--core {
    order: -1;
  }*/
  .section-header {
    margin: 0 auto 80px;
  }
  .section-header__eyebrow {
    font-size: 1rem;
  }
  .section .service__node .service__node--core h3 {
    color: #fff;
    font-weight: bold;
  }
  .section .service__node .service__node--core p {
    color: #fff;
  }
  .hero-layout {
    gap: 0;
  }
  .hero__stats {
    max-width: 100%;
  }
  .hero__content .adjust {
    display: none;
  }
  .hero__actions {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .hero__visual {
    padding: 40px 0 10px;
  }
  .hero__stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0;
  }
  .hero__stat-card {
    flex: 0 0 calc(50% - 8px);
  }
  .hero__stat-card:nth-child(1) {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
  }
  .intro__layout {
    flex-direction: column;
  }
  .intro__heading {
    text-align: center;
    margin: 0 auto;
  }
  .intro__mark {
    width: 80px;
    height: 110px;
    margin: 20px auto 0;
  }
  .intro__text {
    font-size: 1.125rem;
    line-height: 2;
    flex-basis: 100%;
    margin: 0 auto;
  }
  .issues__icon {
    width: 120px;
    height: 120px;
    margin: -96px auto 14px;
  }
  .features__card h3 {
    font-size: 1.5rem;
  }
  .features__no {
    width: 50px;
  }
  .service {
    max-width: 500px;
    margin: 0 auto 32px;
  }
  .service__node {
    display: flex;
    background: #edf2fa;
    border-radius: 110px;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 16px;
  }
  .service__flow {
    margin-top: 5%;
    margin-bottom: 3%;
  }
  .service__circle {
    margin: 0;
  }
  .service__node--core h3,
  .service__node--core p {
    color: var(--white);
  }
  .service__flow::before {
    transform: rotate(-90deg);
    left: 6%;
    margin: 0;
    max-width: 80px;
    top: 23%;
    background-position: right bottom;
    background-size: cover;
  }
  .service__flow::after {
    transform: rotate(90deg);
    right: 6%;
    margin: 0;
    top: 23%;
    background-position: right top;
    background-size: cover;
    left: auto;
    height: 16px;
    width: 80px;
  }
  .service__text {
    text-align: left;
  }
  .service__node--core {
    background-color: var(--primary);
  }
  .service__node--core .service__text h3,
  .service__node--core .service__text p {
    color: var(--white);
  }
  .service__note {
    text-align: left;
  }
  .flow__card::after {
    height: 0;
  }
  .flow__card span::after {
    content: "";
    position: absolute;
    right: auto;
    top: 80%;
    width: 2px;
    height: 150%;
    background: #2563ea30;
    left: -46%;
  }
  .flow__card:last-child span::after {
    display: none;
  }
  .flow__card span::before {
    top: 50%;
    left: -60%;
    transform: translateY(-50%);
  }
}

@media (max-width: 840px) {
  :root {
    --container: min(100vw - 32px, 1120px);
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .hero__photo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__photo-card--wide {
    grid-column: span 2;
  }
  .section {
    padding: 88px 0;
  }
  .service__flow {
    grid-template-columns: 1fr;
  }
  .service__flow span::before,
  .service__flow span::after {
    display: none;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand__name {
    font-size: 1.55rem;
  }
  .button,
  .button--large {
    width: 100%;
  }
  .hero h1 {
    font-size: 2.35rem;
  }
  .hero__content .adjust {
    display: block;
  }
  .section-header h2,
  .intro h2,
  .cta__inner h2 {
    font-size: 2rem;
  }
  .issues__card,
  .features__card,
  .support__card,
  .partners__card,
  .flow__card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .issues__card h3,
  .partners__card h3,
  .voices__card h3,
  .service__node h3,
  .support__card h3 {
    font-size: 1.125rem;
  }
  .partners__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .partners__avatar {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .partners__avatar p {
    text-align: left;
  }
  .partners__avatar img {
    max-width: 160px;
    margin: 0 auto;
  }
  .service__circle {
    width: 148px;
    height: 148px;
    font-size: 1.15rem;
  }
}
