:root {
  --blue: #018bd4;
  --blue-dark: #0078bb;
  --teal: #04bdb5;
  --orange: #ff833a;
  --yellow: #fffc61;
  --ink: #1e1e1e;
  --muted: #65717a;
  --pale: #f1f6f8;
  --line: #d7e3e8;
  --white: #fff;
  --container: 1200px;
  --shadow: 0 14px 36px rgba(21, 74, 92, .08);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin-top: 0; }
em, address { font-style: normal; }
button, summary { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-pale { background: var(--pale); }
.section-gradient { background: linear-gradient(118deg, var(--blue) 0%, var(--teal) 100%); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 16px;
  width: calc(100% - 40px);
  height: 78px;
  margin: 16px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 56px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow:
    0 16px 40px rgba(20, 50, 70, .12),
    inset 0 1px 0 rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 27px; font-weight: 900; letter-spacing: -.04em; }
.brand-mark { position: relative; display: inline-flex; width: 42px; height: 35px; }
.brand-mark i { position: absolute; width: 28px; height: 28px; transform: rotate(45deg); border-radius: 50% 50% 50% 6px; }
.brand-mark i:first-child { left: 1px; top: 1px; background: #ffdf56; }
.brand-mark i:last-child { right: 1px; bottom: 1px; background: var(--teal); opacity: .9; }
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
  font-size: 16px;
  font-weight: 700;
}
.site-header nav a { transition: color .2s; }
.site-header nav a:hover { color: var(--blue); }
.site-header .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  font-weight: 800;
  white-space: nowrap;
}
.site-header .nav-cta:hover { color: #fff; }
.site-header .nav-cta::after { display: none !important; }
.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero { position: relative; min-height: 890px; overflow: hidden; background: #fff; }
.hero-photo { position: absolute; inset: 0 0 80px 22%; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
.hero-deco {
  position: absolute;
  z-index: 1;
  left: -236px;
  right: auto;
  top: -50px;
  width: 1000px;
  height: 800px;
  flex-shrink: 0;
  border-radius: 50%;
  opacity: .2;
  background: #000000;
  filter: blur(150px);
  pointer-events: none;
}
.hero-wash {
  display: none !important;
  background: none !important;
}
.hero-inner { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--container)); margin-inline: auto; padding: 60px 0 190px; }
.hero-title-a11y,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-title-image {
  display: block;
  width: min(100%, 602px);
  height: auto;
}
.hero-eyebrow { margin-bottom: 14px; color: white; font-size: 18px; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,.18); }
.hero h1 { margin-bottom: 25px; font-size: clamp(40px, 4vw, 66px); line-height: 1.35; letter-spacing: -.05em; font-weight: 900; }
.hero h1 > span { display: table; padding: 0 .12em; background: rgba(255,255,255,.93); }
.hero h1 .marker { margin-top: 8px; color: var(--teal); }
.marker { position: relative; z-index: 0; }
.marker::after { content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: .08em; height: .28em; background: var(--yellow); }
.hero-lead { font-size: 20px; line-height: 1.9; font-weight: 600; }
.hero-lead strong { color: #00aeb0; background: linear-gradient(transparent 62%, rgba(255,252,97,.9) 0); }
.hero-actions { width: 490px; display: grid; gap: 14px; margin: 35px 0 14px; }
.button {
  min-height: 72px;
  padding: 14px 28px;
  border: 2px solid currentColor;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button i { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: white; font-size: 28px; line-height: 1; }
.button-orange { color: white; border-color: var(--orange); background: var(--orange); box-shadow: 0 7px 16px rgba(255,131,58,.26), inset 0 3px rgba(255,255,255,.25); }
.button-orange i { color: var(--orange); }
.button-white { color: var(--teal); border-color: var(--teal); background: white; }
.button-white i { color: white; background: var(--teal); }
.hero-note { font-size: 12px; line-height: 1.7; color: #ffffff; }
.hero-stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hero-stats article { min-height: 145px; overflow: hidden; border-radius: 12px; background: white; box-shadow: var(--shadow); text-align: center; }
.hero-stats strong { display: block; padding: 4px; color: white; background: linear-gradient(90deg, var(--blue), var(--teal)); font-size: 20px; }
.hero-stats strong b { font-size: 25px; }
.hero-stats span { display: block; padding-top: 12px; font-size: 20px; font-weight: 800; line-height: 1.25; }
.hero-stats em { color: var(--blue); font-size: 54px; line-height: 1; font-weight: 900; }

.credential-strip { padding: 30px 0 40px; background: var(--pale); }
.credential-strip .container:not(img) { min-height: 155px; display: grid; grid-template-columns: 190px 1fr 220px 220px; align-items: center; gap: 25px; border-radius: 14px; background: white; box-shadow: var(--shadow); }
.credential-illustration { align-self: stretch; display: grid; place-items: center; color: var(--blue); border-right: 1px solid var(--line); font-size: 48px; font-weight: 900; letter-spacing: -.08em; }
.credential-strip p { margin: 0; font-size: 19px; line-height: 1.7; font-weight: 500; }
.credential-badge { width: 190px; height: 145px; border-radius: 50%; display: grid; place-items: center; padding: 24px; color: white; background: var(--blue); text-align: center; font-weight: 800; line-height: 1.45; }
.credential-badge.is-gold { color: var(--ink); background: #ffd97a; clip-path: polygon(50% 0,61% 9%,75% 5%,84% 17%,98% 20%,96% 35%,100% 50%,91% 61%,95% 75%,82% 83%,78% 97%,62% 94%,50% 100%,39% 92%,25% 96%,17% 83%,3% 78%,6% 62%,0 50%,8% 39%,4% 24%,18% 17%,23% 3%,39% 7%); }

.problem { padding: 0 0 90px; }
.framed,
.corner-card {
  position: relative;
  border-radius: 24px;
  background-color: white;
  background-image:
    url("img/deco/vector-6.svg"),
    url("img/deco/vector-5.svg"),
    url("img/deco/vector-7.svg"),
    url("img/deco/vector-8.svg");
  background-repeat: no-repeat;
  background-size: 60px 60px;
  background-position:
    left 14px top 24px,
    right 26px top 24px,
    left 14px bottom 24px,
    right 26px bottom 24px;
  box-shadow: var(--shadow);
}
.framed { padding: 90px 88px; }
.corner-card { border-radius: 22px; }
.framed::before,
.framed::after,
.corner-card::before,
.corner-card::after {
  content: none;
}
.section-heading.centered { text-align: center; }
.section-heading h2 { margin-bottom: 22px; font-size: clamp(34px, 4vw, 52px); line-height: 1.45; letter-spacing: -.04em; }
.section-heading h2 span { color: var(--blue); }
.section-heading > i { display: block; width: 80px; height: 6px; margin: 0 auto 28px; border-radius: 999px; background: var(--teal); }
.section-heading p { font-size: 16px; font-weight: 500; line-height: 1.8; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; }
.problem-grid article { min-height: 250px; padding: 14px 20px 26px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px dashed #bccfd6; text-align: center; }
.problem-grid article:nth-child(4n) { border-right: 0; }
.problem-grid article:nth-child(-n+4) { border-bottom: 1px dashed #bccfd6; }
.problem-grid p { margin: 15px 0 0; font-size: 17px; font-weight: 700; line-height: 1.55; }
.problem-grid p span { color: var(--blue); }
.pic { min-height: 105px; display: grid; place-items: center; color: var(--blue); font-size: 45px; line-height: 1.1; -webkit-text-stroke: 1px var(--ink); }
.risk-panel {
  position: relative;
  width: 100%;
  margin: 55px auto 0;
  min-height: 304px;
}
.risk-main {
  position: relative;
  width: min(100%, 654px);
  margin: 0 auto;
  padding-top: 48px;
}
.risk-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 300px;
  height: 67px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #e2edf1;
  text-align: center;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}
.risk-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  border: 21px solid transparent;
  border-top: 16px solid #e2edf1;
  border-bottom: 0;
}
.risk-box {
  width: 100%;
  padding: 28px 70px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.risk-box ul { display: grid; }
.risk-box li {
  position: relative;
  padding: 10px 0 10px 36px;
  border-bottom: 1px dashed #c5d4da;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}
.risk-box li:last-child { border: 0; }
.risk-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  height: 11px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' fill='none'%3E%3Cpath d='M1 5.2 4.6 9 12 1' stroke='%23018BD4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.risk-box em { color: var(--blue); font-style: normal; font-weight: 700; }
.risk-box mark {
  color: inherit;
  background: linear-gradient(transparent 62%, rgba(196, 150, 230, .55) 62%);
}
.risk-figure {
  position: absolute;
  z-index: 1;
  top: 72px;
  width: auto;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.risk-figure--left {
  left: 41px;
  width: 113px;
}
.risk-figure--right {
  right: 23px;
  width: 132px;
}
.down-chevrons { height: 68px; color: var(--blue); font-size: 90px; line-height: .6; text-align: center; font-weight: 900; overflow: hidden; }
.problem-answer, .operation-callout { margin: 10px 0 0; text-align: center; color: white; font-size: 26px; line-height: 1.8; font-weight: 800; }
.problem-answer { font-size: 30px; font-weight: 600; }
.problem-answer span, .problem-answer strong, .operation-callout span, .operation-callout strong, .operation-callout em { display: inline; padding: .1em .45em; background: var(--blue); box-decoration-break: clone; -webkit-box-decoration-break: clone; border-radius: 4px; }

.service-cards {
  padding: 115px 0 140px;
  color: white;
  background: var(--teal);
}
.service-intro { display: grid; grid-template-columns: 1fr 400px; gap: 70px; align-items: center; margin-bottom: 55px; }
.service-intro h2 {
  position: relative;
  margin-bottom: 22px;
  padding-left: 35px;
  font-size: 42px;
  line-height: 1.45;
}
.service-intro h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 11px;
  height: 104px;
  background: linear-gradient(180deg, #018bd4 0%, #00bcb1 100%);
}
.service-intro p { max-width: 650px; }
.growth-graphic { position: relative; height: 230px; display: flex; align-items: flex-end; justify-content: center; gap: 20px; }
.growth-graphic i { display: block; width: 74px; height: 55px; border: 5px solid var(--ink); border-bottom: 0; background: white; }
.growth-graphic i:nth-of-type(2) { height: 110px; }
.growth-graphic i:nth-of-type(3) { height: 180px; }
.growth-graphic b { position: absolute; right: 10px; top: -25px; color: #ffd75a; font-size: 130px; line-height: 1; -webkit-text-stroke: 3px var(--ink); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.card-grid article { position: relative; min-height: 430px; padding: 175px 28px 30px; border-radius: 10px; color: var(--ink); background: white; }
.card-grid article > span { position: absolute; left: 0; top: -25px; color: #d5f1f2; font-size: 72px; line-height: 1; font-weight: 900; }
.card-icon { position: absolute; inset: 50px 20px auto; height: 105px; display: grid; place-items: center; color: var(--teal); font-size: 44px; font-weight: 900; letter-spacing: .08em; }
.card-grid h3 { margin-bottom: 8px; color: var(--teal); font-size: 22px; }
.card-grid p { margin: 0; line-height: 1.7; }

.product-marquee {
  position: relative;
  z-index: 5;
  height: 0;
  overflow: visible;
  pointer-events: none;
  background: transparent;
}
.product-marquee-pin {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-50%);
  overflow: hidden;
  line-height: 0;
}
.product-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: product-marquee 48s linear infinite;
}
.product-marquee-track img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(119px, 15.3vw, 221px);
  max-width: none;
  user-select: none;
  pointer-events: none;
}
@keyframes product-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .product-marquee-track { animation: none; }
}
.problem { padding-bottom: calc(90px + clamp(60px, 7.65vw, 111px)); }
.service-cards { padding-top: calc(115px + clamp(60px, 7.65vw, 111px)); }

.photo-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px 0;
  background: #f1f6f8;
  border-radius: 0;
}
.photo-cta-second {
  background: #00bdb5;
}
.photo-cta-image {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: min(calc(100% - 48px), 1200px);
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 24px;
  background: #0abdb6;
  container-type: inline-size;
}
.photo-cta-image::after { display: none; }
.photo-cta-track {
  display: flex;
  width: max-content;
  height: 100%;
  gap: 0;
  will-change: transform;
  animation: photo-cta-marquee var(--marquee-duration, 384s) linear infinite;
}
.photo-cta-slide {
  flex: 0 0 calc(100cqw / 3);
  width: calc(100cqw / 3);
  height: 100%;
  margin: 0;
  background: center / cover no-repeat;
}
@keyframes photo-cta-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 760px) {
  .photo-cta-slide {
    flex-basis: 70cqw;
    width: 70cqw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-cta-track { animation: none; }
}
.photo-cta::after { display: none; }
.photo-cta-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1200px);
  max-width: 1200px;
  margin-inline: auto;
  padding: 82px 48px;
  color: white;
}
.photo-cta h2 { margin-bottom: 30px; font-size: 32px; line-height: 1.65; }
.photo-cta h2 strong { font-size: 50px; }
.photo-cta .button { width: 580px; }
.photo-cta-title {
  margin: 0 0 28px;
  line-height: 0;
}
.photo-cta-title img {
  display: block;
  width: min(100%, 623px);
  height: auto;
}
.photo-cta-btn {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.operation { padding: 110px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px 34px;
  margin: 60px 0 40px;
}
.steps-grid article {
  position: relative;
  min-height: 123px;
  padding: 30px 18px;
  border-radius: 10px;
  background: var(--pale);
  display: grid;
  grid-template-columns: 1fr 70px;
  align-items: center;
}
.steps-grid article:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -17px;
  width: 18px;
  height: 26px;
  transform: translate(50%, -50%);
  background: url("img/deco/triangle.svg") center / 18px 26px no-repeat;
  pointer-events: none;
}
.steps-grid b { position: absolute; left: 50%; top: -14px; transform: translateX(-50%); padding: 3px 16px; border-radius: 6px; color: white; background: var(--blue); font-size: 13px; }
.steps-grid span { font-size: 20px; font-weight: 700; }
.steps-grid i { color: var(--blue); font-size: 36px; text-align: center; font-style: normal; }
.operation-callout { color: white; line-height: 1.8; font-size: 30px; font-weight: 600; }
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.role-grid article { min-height: 250px; padding: 18px 38px 32px; border: 2px solid var(--blue); border-radius: 12px; }
.role-grid article:last-child { border-color: var(--teal); }
.role-grid h3 { margin: 0 0 12px; color: white; background: #076991; border-radius: 4px; text-align: center; font-size: 22px; }
.role-grid article:last-child h3 { background: var(--teal); }
.role-grid li { position: relative; padding: 2px 0 2px 24px; line-height: 1.55; font-weight: 600; }
.role-grid li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.role-grid article:last-child li::before { background: var(--teal); }

.lineup {
  padding: 110px 0;
  background: #ebf2f7;
}
.lineup-head {
  display: grid;
  grid-template-columns: 1fr 424px;
  gap: 40px;
  align-items: center;
  margin-bottom: 55px;
}
.lineup-head h2 {
  position: relative;
  margin-bottom: 22px;
  padding-left: 35px;
  font-size: 42px;
  line-height: 1.45;
}
.lineup-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 11px;
  height: 104px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--teal) 100%);
}
.lineup-head p { margin: 0; font-weight: 500; }
.handshake {
  width: 424px;
  max-width: 100%;
  height: auto;
  justify-self: end;
}
.lineup-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.lineup-grid article { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 25px; background: white; }
.lineup-grid b { font-size: 55px; font-weight: 500; }
.lineup-grid span { font-weight: 700; }
.lineup > .container > small, .flow small { display: block; margin-top: 35px; }

.reasons { padding: 115px 0 140px; }
.reason-title { color: white; text-align: center; margin-bottom: 60px; }
.reason-title h2 { margin-bottom: 5px; font-size: 44px; }
.reason-title h2 b { font-size: 66px; }
.reason-title-break { display: none; }
.reason-stack { display: grid; gap: 38px; }
.reason-stack article {
  min-height: 497px;
  padding: 75px 90px;
  display: grid;
  grid-template-columns: minmax(0, 525px) minmax(280px, 1fr);
  gap: 60px;
  align-items: center;
}
.reason-stack article > div > span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}
.reason-stack article > div > span b {
  font-size: 48px;
  letter-spacing: 0;
}
.reason-stack h3 {
  margin: 16px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: -.04em;
}
.reason-stack h3 span { color: var(--blue); }
.reason-stack article > div > p {
  margin: 0;
  max-width: 525px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}
.reason-stack aside { padding: 16px; border-radius: 8px; background: var(--pale); }
.reason-stack h4 { margin: 0 0 12px; color: white; background: var(--blue); text-align: center; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.process-list span { aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: white; font-size: 12px; font-weight: 700; }
.reason-stack li { position: relative; padding-left: 18px; font-size: 13px; line-height: 1.8; }
.reason-stack li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

.cases { padding: 110px 0; background: #fff; }
.simple-title { margin-bottom: 55px; text-align: center; }
.simple-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: -.03em;
}
.simple-title h2::before,
.simple-title h2::after {
  content: "";
  width: 80px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #018bd4 0%, #00bcb1 100%);
}
.simple-title p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.case-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}
.case-stack > article {
  min-width: 0;
  padding: 28px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 250px 1fr;
  gap: 28px;
  align-items: start;
  background: #f4f7f9;
}
.case-stack > article > img {
  grid-row: 1;
  width: 100%;
  height: 250px;
  border-radius: 12px;
  object-fit: cover;
  background: #e8eef2;
}
.case-body {
  grid-row: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.case-body header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.case-body header b {
  display: inline-grid;
  place-items: center;
  min-width: 98px;
  height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  color: white;
  background: var(--blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
}
.case-body header span {
  color: #5a6570;
  font-size: 17px;
  font-weight: 700;
}
.case-challenge,
.case-result {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.case-challenge i,
.case-result i {
  display: grid;
  place-items: center;
  width: 46px;
  margin: 0;
  border-radius: 6px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: .2em;
  font-style: normal;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}
.case-challenge i {
  min-height: 70px;
  color: #3d4650;
  background: #d7dee3;
  letter-spacing: .35em;
}
.case-result i {
  min-height: 121px;
  color: white;
  background: linear-gradient(180deg, var(--teal) 0%, var(--blue) 100%);
}
.case-challenge p,
.case-result p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}
.case-challenge p { color: #2c343c; padding-top: 4px; }
.case-result {
  flex: 1;
  padding: 16px;
  border-radius: 10px;
  background: white;
}
.case-result p { color: #1e1e1e; }
.case-result em {
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}
.case-divider {
  position: relative;
  display: grid;
  place-items: center;
  height: 38px;
  margin: 8px 0 12px;
}
.case-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px dashed #c5d3da;
}
.case-divider img {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 25px;
  background: #f4f7f9;
  padding: 0 10px;
}

.compare { padding: 105px 0; }
.compare .framed { position: relative; padding: 90px 88px 165px; }
.compare-heading h2 {
  margin-bottom: 41px;
  font-size: 44px;
  line-height: 1.36;
  letter-spacing: .04em;
  font-weight: 700;
  font-feature-settings: "palt" 1;
}
.compare-heading > i {
  width: 80px;
  height: 6px;
  margin: 0 auto 53px;
  border-radius: 6px;
  background: linear-gradient(90deg, #018bd4 0%, #00bcb1 100%);
}
.compare-figure { position: absolute; top: 61px; width: 9.12%; }
.compare-figure-left { left: 15.17%; }
.compare-figure-right { top: 76px; left: 77.08%; width: 8.06%; }

.compare-table-wrap { width: 948px; max-width: 100%; margin-inline: auto; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
.compare-note {
  position: relative;
  width: 450px;
  margin: 0 -4px 32px auto;
  padding: 12px 20px 5px;
  border-radius: 4px;
  background: #fcf9dc;
  text-align: center;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  font-feature-settings: "palt" 1;
}
.compare-note b { font-size: 23px; font-weight: 900; }
.compare-note strong {
  font-size: 23px;
  font-weight: 900;
  background: linear-gradient(90deg, #018bd4 0%, #00bcb1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare-note::after {
  content: "";
  position: absolute;
  left: 64%;
  bottom: -13px;
  width: 63px;
  height: 14px;
  transform: translateX(-50%);
  background: #fcf9dc;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.compare-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 8px 3px;
  text-align: center;
  font-size: 20px;
  font-feature-settings: "palt" 1;
}
.compare-table .col-item { width: 222px; }
.compare-table .col-other { width: 268px; }
.compare-table .col-bp { width: 426px; }
.compare-table thead th { height: 88px; padding: 0; vertical-align: bottom; }
.compare-table thead th > span {
  display: grid;
  place-items: center;
  height: 65px;
  border-radius: 15px 15px 0 0;
  color: white;
  font-weight: 700;
}
.compare-table thead th:first-child > span { background: #008dcc; font-size: 20px; }
.compare-table thead th:nth-child(2) > span { background: #646464; font-size: 25px; }
.compare-table thead th.is-bp > span { height: 88px; background: #00bcb1; }
.compare-table thead th.is-bp img { width: 302px; height: auto; }
.compare-table tbody th,
.compare-table tbody td { height: 65px; padding: 6px 14px; font-weight: 700; line-height: 1.35; }
.compare-table tbody th { background: #e4eef3; }
.compare-table tbody td:first-of-type { background: #ececec; font-weight: 400; }
.compare-table tbody td:last-child { background: #e9fffa; }
.compare-table tbody td:last-child span { color: #00bcb1; }

.cta-row { width: 580px; display: grid; gap: 18px; }

.faq { padding: 110px 0; }
.faq-list { display: grid; gap: 20px; }
details { overflow: hidden; border-radius: 18px; background: white; }
summary { min-height: 100px; padding: 22px 55px; display: grid; grid-template-columns: 45px 1fr 30px; align-items: center; gap: 20px; cursor: pointer; font-size: 22px; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary > b, details > div > b { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--blue); }
summary i::before, summary i::after { content: ""; position: absolute; width: 18px; height: 3px; background: var(--blue); }
summary i { position: relative; width: 18px; height: 18px; }
summary i::after { transform: rotate(90deg); transition: transform .2s; }
details[open] summary i::after { transform: rotate(0); }
details > div { padding: 24px 55px; display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 20px; border-top: 1px dashed #bacbd1; font-weight: 500; }
details > div > b { background: var(--orange); }

.flow { padding: 110px 0; }
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.flow-grid article { position: relative; min-height: 0; padding: 36px 22px 18px; border-radius: 10px; background: var(--pale); text-align: center; }
.flow-grid article:not(:last-child)::after { content: "›"; position: absolute; right: -22px; top: 50%; color: var(--blue); font-size: 36px; font-weight: 900; transform: translateY(-50%); }
.flow-grid b { position: absolute; left: 50%; top: -14px; transform: translateX(-50%); padding: 3px 16px; border-radius: 5px; color: white; background: var(--blue); }
.flow-grid h3 { margin: 0 0 6px; color: var(--blue); line-height: 1.35; }
.flow-grid p { margin: 0; line-height: 1.5; text-align: left; }

.magazine { padding: 100px 0; }
.magazine-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.magazine-grid > article { min-width: 0; }
.magazine-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  transition:
    transform .3s var(--anim-ease),
    box-shadow .3s var(--anim-ease);
}
.magazine-card:hover { transform: translate3d(0, -6px, 0); box-shadow: 0 20px 42px rgba(21, 74, 92, .17); }
.magazine-thumb { position: relative; overflow: hidden; background: var(--pale); }
.magazine-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .5s var(--anim-ease);
}
.magazine-card:hover .magazine-thumb img { transform: scale(1.06); }
.magazine-body { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 20px; }
.magazine-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.magazine-cat {
  padding: 2px 12px;
  border-radius: 4px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}
.magazine-meta time { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.magazine-body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  transition: color .24s;
}
.magazine-card:hover h3 { color: var(--blue); }
.magazine-body > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.magazine-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 10px; }
.magazine-tags li {
  padding: 1px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
.magazine-more { margin-top: 44px; text-align: center; }
.magazine-more a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 34px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: white;
  font-weight: 700;
  transition:
    color .24s,
    background .24s,
    transform .24s var(--anim-ease);
}
.magazine-more a i {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .24s var(--anim-ease);
}
.magazine-more a:hover { color: white; background: var(--blue); transform: translate3d(0, -3px, 0); }
.magazine-more a:hover i { transform: rotate(45deg) translate3d(3px, -3px, 0); }

.contact { padding: 60px 0 70px; color: white; text-align: center; }
.contact h2 {
  margin: 0 auto 28px;
  max-width: 920px;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
}
.contact-break { display: inline; }
.contact > .container > p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
}
.contact-box {
  width: min(100%, 1200px);
  min-height: 381px;
  margin: 48px auto 0;
  padding: 78px 70px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 16px;
  align-items: start;
  color: var(--ink);
}
.contact-phone,
.contact-web {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.contact-phone > span,
.contact-web > span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
}
.contact-phone a {
  width: min(100%, 473px);
  color: var(--blue);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .03em;
}
.contact-phone a img { width: 100%; height: auto; }
.contact-phone small {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.6;
}
.contact-cta {
  position: relative;
  width: min(100%, 470px);
  min-height: 73px;
  padding: 0 72px 0 28px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 46%, transparent 47%),
    #ff833a;
  box-shadow: 13px 13px 26px rgba(0, 0, 0, .12);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.3;
  transition: transform .2s, box-shadow .2s;
}
.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 14px 16px 28px rgba(0, 0, 0, .16);
}
.contact-cta i {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background: white;
}
.contact-cta i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2.5px solid #ff833a;
  border-bottom: 2.5px solid #ff833a;
  transform: translate(-60%, -50%) rotate(-45deg);
}
.contact-box > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #5a6570;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .02em;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 45px;
  text-align: center;
}
footer > .brand {
  display: block;
  line-height: 0;
}
footer > .brand img {
  display: block;
}
footer > p {
  width: fit-content;
  margin: 25px auto;
  font-weight: 700;
}
footer address { margin-bottom: 25px; color: var(--muted); font-size: 13px; }
footer address a { color: inherit; }
footer address a:hover { color: var(--blue); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.footer-nav a { color: inherit; transition: color .2s; }
.footer-nav a:hover { color: var(--blue); }

@media (max-width: 1050px) {
  .site-header {
    top: max(12px, env(safe-area-inset-top, 0px));
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    max-width: none;
    height: 68px;
    margin: max(12px, env(safe-area-inset-top, 0px)) auto 0;
    padding: 0 16px;
    gap: 20px;
    border-radius: 22px;
    box-sizing: border-box;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 18px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 40px rgba(20, 50, 70, .14);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
  }
  .site-header.is-menu-open nav { display: flex; }
  .site-header nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .site-header nav a::after { display: none; }
  .site-header .nav-cta {
    display: flex;
    margin: 14px 0 0;
    padding: 14px 18px;
    border-bottom: 0;
  }
  .menu-toggle { display: inline-block; }
  .hero-photo { left: 0; opacity: .65; }
  .hero-wash { background: linear-gradient(90deg, rgba(216,245,245,.98), rgba(216,245,245,.74) 65%, rgba(255,255,255,.75)); }
  .credential-strip .container { grid-template-columns: 150px 1fr 170px 170px; }
  .framed { padding: 75px 50px; }
  .card-grid { gap: 20px; }
  .lineup-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .lineup-grid article { min-height: 180px; }
  .risk-figure { display: none; }
  .risk-panel { min-height: 0; }
}

@media (max-width: 760px) {
  body { font-size: 14px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { font-size: 20px; }
  .brand-mark { transform: scale(.8); transform-origin: left; margin-right: -8px; }
  .hero { min-height: 1030px; }
  .hero-photo { inset: 0 0 290px; background-position: 60% center; }
  .hero-wash { background: linear-gradient(180deg, rgba(216,245,245,.67), rgba(216,245,245,.96) 62%, #f1f7f8 88%); }
  .hero-inner { width: calc(100% - 32px); padding-top: 42px; }
  .hero-eyebrow { font-size: 13px; }
  .hero h1 { font-size: 29px; line-height: 1.5; }
  .hero-lead { font-size: 14px; }
  .hero-actions { width: 100%; }
  .button { min-height: 62px; padding: 12px 18px; font-size: 14px; }
  .hero-note { font-size: 10px; }
  .hero-stats { grid-template-columns: 1fr; gap: 8px; bottom: 10px; }
  .hero-stats article { min-height: 67px; display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stats strong, .hero-stats span { display: grid; place-items: center; padding: 4px; font-size: 13px; }
  .hero-stats em { font-size: 25px; }
  .credential-strip .container { padding: 25px; grid-template-columns: 1fr 1fr; }
  .credential-illustration { min-height: 110px; }
  .credential-strip p { font-size: 14px; }
  .credential-badge { width: 130px; height: 130px; margin: auto; font-size: 11px; }
  .problem, .operation, .faq, .compare { padding: 60px 0; }
  .problem { padding-top: 0; padding-bottom: calc(60px + clamp(60px, 7.65vw, 111px)); }
  .framed { padding: 58px 20px; border-radius: 15px; }
  .framed,
  .corner-card {
    background-size: 36px 36px;
    background-position:
      left 10px top 14px,
      right 10px top 14px,
      left 10px bottom 14px,
      right 10px bottom 14px;
  }
  .section-heading h2 { font-size: 28px; }
  .section-heading p br { display: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); margin-top: 35px; }
  .problem-grid article { min-height: 190px; padding-inline: 8px; border-bottom: 1px dashed #bccfd6; }
  .problem-grid article:nth-child(2n) { border-right: 0; }
  .problem-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .problem-grid p { font-size: 13px; }
  .pic { min-height: 75px; font-size: 33px; }
  .risk-panel { min-height: 0; margin-top: 40px; }
  .risk-main { padding-top: 40px; }
  .risk-label { width: 230px; height: 54px; font-size: 16px; }
  .risk-label::after { border-width: 16px; border-top-width: 12px; bottom: -12px; }
  .risk-box { padding: 22px 18px; }
  .risk-box li { padding-left: 28px; font-size: 14px; }
  .risk-figure { display: none; }
  .problem-answer, .operation-callout { font-size: 18px; }
  .service-cards { padding: calc(70px + clamp(60px, 7.65vw, 111px)) 0 70px; }
  .service-intro { grid-template-columns: 1fr; }
  .service-intro h2, .lineup-head h2 { font-size: 28px; }
  .growth-graphic { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid article { min-height: 320px; padding-top: 165px; }
  .photo-cta { margin: 0; padding: 28px 0; border-radius: 0; }
  .photo-cta-image {
    top: 28px;
    bottom: 28px;
    width: min(calc(100% - 28px), 1200px);
    border-radius: 20px;
  }
  .photo-cta::after { display: none; }
  .photo-cta-copy { width: min(calc(100% - 28px), 1200px); padding: 70px 24px; }
  .photo-cta h2 { font-size: 23px; }
  .photo-cta h2 strong { font-size: 32px; }
  .photo-cta .button, .cta-row { width: 100%; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .steps-grid article { grid-template-columns: 1fr; text-align: center; }
  .steps-grid article:not(:nth-child(4n))::after { display: none; }
  .steps-grid article:not(:nth-child(2n))::after {
    display: block;
    right: -9px;
    width: 14px;
    height: 20px;
    background-size: 14px 20px;
  }
  .role-grid { grid-template-columns: 1fr; gap: 20px; }
  .role-grid article { padding-inline: 18px; }
  .lineup { padding: 65px 0; }
  .lineup-head { grid-template-columns: 1fr; gap: 24px; }
  .lineup-head h2 { padding-left: 28px; font-size: 28px; }
  .lineup-head h2::before { width: 8px; height: 72px; top: 8px; }
  .handshake { width: min(100%, 320px); justify-self: center; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid article { min-height: 155px; }
  .reasons { padding: 70px 0; }
  .reason-title h2 { font-size: 27px; }
  .reason-title h2 b { font-size: 40px; }
  .reason-stack article {
    min-height: 0;
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reason-stack article > div > span { font-size: 16px; }
  .reason-stack article > div > span b { font-size: 34px; }
  .reason-stack h3 { margin: 10px 0 16px; font-size: 24px; }
  .reason-stack article > div > p { font-size: 15px; }
  .cases { padding: 65px 0; }
  .simple-title h2 { gap: 12px; font-size: 32px; }
  .simple-title h2::before, .simple-title h2::after { width: 35px; height: 3px; }
  .case-stack { grid-template-columns: 1fr; gap: 24px; }
  .case-stack > article {
    min-height: 0;
    padding: 28px 22px;
    grid-template-columns: 1fr;
    grid-template-rows: 240px 1fr;
    gap: 22px;
  }
  .case-stack > article > img {
    width: 100%;
    height: 240px;
    grid-row: 1;
  }
  .case-challenge,
  .case-result { gap: 12px; }
  .case-challenge i,
  .case-result i { width: 40px; font-size: 13px; }
  .case-challenge i { min-height: 62px; }
  .case-result i { min-height: 100px; }
  .case-challenge p,
  .case-result p { font-size: 15px; }
  .compare { padding: 60px 0; }
  .compare .framed { padding: 60px 16px 70px; }
  .compare-heading h2 { margin-bottom: 26px; font-size: clamp(19px, 5.2vw, 26px); letter-spacing: 0; }
  .compare-heading > i { margin-bottom: 30px; }
  .compare-figure { display: none; }
  .compare-note { width: 100%; margin: 0 0 24px; padding: 12px 16px 8px; white-space: normal; font-size: 14px; }
  .compare-note b,
  .compare-note strong { font-size: 18px; }
  .compare-note::after { left: 50%; }
  .table-scroll { overflow-x: auto; padding-bottom: 8px; }
  .compare-table { min-width: 700px; font-size: 15px; border-spacing: 5px 3px; }
  .compare-table .col-item { width: 25%; }
  .compare-table .col-other { width: 30%; }
  .compare-table .col-bp { width: 45%; }
  .compare-table thead th { height: 66px; }
  .compare-table thead th > span { height: 50px; }
  .compare-table thead th:first-child > span { font-size: 15px; }
  .compare-table thead th:nth-child(2) > span { font-size: 17px; }
  .compare-table thead th.is-bp > span { height: 66px; }
  .compare-table thead th.is-bp img { width: 200px; }
  .compare-table tbody th,
  .compare-table tbody td { height: 54px; padding: 6px 8px; }
  .faq-list { gap: 10px; }
  summary { min-height: 78px; padding: 15px; grid-template-columns: 38px 1fr 20px; gap: 10px; font-size: 15px; }
  summary > b, details > div > b { width: 36px; height: 36px; }
  details > div { padding: 18px 15px; grid-template-columns: 38px 1fr; gap: 10px; }
  .flow { padding: 65px 0; }
  .flow-grid { grid-template-columns: 1fr; gap: 30px; }
  .flow-grid article:not(:last-child)::after { content: "⌄"; left: 50%; right: auto; top: auto; bottom: -40px; transform: translateX(-50%); }
  .contact { padding: 50px 0 60px; }
  .contact h2 { margin-bottom: 20px; max-width: none; font-size: 26px; letter-spacing: .02em; }
  .contact > .container > p { font-size: 15px; line-height: 1.85; }
  .contact-box {
    min-height: 0;
    margin-top: 32px;
    padding: 48px 22px 28px;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 28px;
  }
  .contact-phone > span,
  .contact-web > span { font-size: 18px; }
  .contact-phone small { font-size: 15px; }
  .contact-cta {
    width: 100%;
    min-height: 64px;
    padding: 0 58px 0 18px;
    font-size: 15px;
  }
  .contact-cta i { right: 16px; width: 24px; height: 24px; margin-top: -12px; }
  .contact-box > p { grid-column: 1; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Figma node 35:236 asset integration */
.brand img { width: 220px; height: auto; }

main#top { margin-top: -94px; }
.hero {
  min-height: 777px;
  background: #fff;
}
.hero-photo {
  inset: 0 0 80px 24%;
  background:
    url("img/service/meeting.svg") 76% 44% / min(32vw, 520px) auto no-repeat,
    linear-gradient(115deg, #f4fbfb 0%, #b8e9e5 55%, #fff 100%);
}
.hero-wash {
  background:
    radial-gradient(circle at 72% 45%, rgba(255,255,255,.12), rgba(255,255,255,.72) 46%, transparent 47%),
    linear-gradient(90deg, rgba(214,245,243,.98) 0%, rgba(185,233,230,.88) 34%, rgba(255,255,255,.05) 67%, rgba(255,255,255,.88) 100%),
    linear-gradient(0deg, #f1f7f8 0%, transparent 28%);
}
.hero-inner { padding: 178px 0 0; }
.hero-actions { width: min(100%, 433px); margin-top: 22px; }
.hero-cta-image { display: block; }
.hero-actions .hero-cta-image.cta-btn { width: min(100%, 433px); } /* 541px × 80% */
.hero-actions .hero-cta-image img { width: 100%; height: auto; }
.stats-strip {
  position: relative;
  z-index: 3;
  background: var(--pale);
  padding-top: 120px;
}
.hero-stats.container {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: auto;
  transform: translate(-50%, -42%);
  gap: 0;
  align-items: end;
}
.hero-stats > img,
.hero-stats > picture {
  width: 100%;
  height: auto;
}
.hero-stats > picture img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-stats-sp { display: none; }

.credential-strip { padding: 0 0 58px; }
.credential-strip > picture {
  display: block;
  width: min(calc(100% - 48px), 1000px);
  max-width: 1000px;
  margin-inline: auto;
}
.credential-strip img.container {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.problem-grid article {
  justify-content: space-between;
  align-items: center;
}
.problem-grid article > img {
  width: auto;
  height: 150px;
  max-width: 94%;
  object-fit: contain;
  margin: 0 auto;
}
.problem-grid article:nth-child(4) > img,
.problem-grid article:nth-child(5) > img,
.problem-grid article:nth-child(6) > img {
  height: 135px; /* 150px × 90% */
  max-width: 85%;
}
.down-chevrons {
  display: block;
  width: 92px;
  height: 44px;
  margin: 28px auto 16px;
  object-fit: contain;
}

.growth-graphic {
  width: 341px;
  height: 307px;
  object-fit: contain;
  justify-self: end;
}
.card-grid article {
  min-height: 406px;
  padding: 268px 30px 24px;
}
.card-grid article > img {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 250px;
  height: 200px;
  object-fit: contain;
  transform: translateX(-50%);
}
.card-grid article:nth-child(3) > img { height: 220px; top: 24px; }
.card-grid article:nth-child(2) > img {
  transform: translateX(-50%) scale(0.9);
}
.card-grid article:nth-child(5) > img,
.card-grid article:nth-child(6) > img {
  transform: translateX(-50%) scale(0.8);
}

.steps-grid article { grid-template-columns: 1fr 76px; }
.steps-grid article > img {
  width: 68px;
  height: 66px;
  object-fit: contain;
  justify-self: center;
}
.lineup-grid article { justify-content: space-between; padding: 42px 12px 28px; }
.lineup-grid article > img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.reason-stack aside {
  padding: 0;
  background: transparent;
  justify-self: end;
}
.reason-stack aside > img {
  width: 100%;
  max-width: 423px;
  max-height: 372px;
  object-fit: contain;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 7px 18px rgba(0, 91, 133, .2));
  transition: transform .2s ease;
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top img { width: 100%; height: 100%; }

@media (max-width: 1050px) {
  main#top { margin-top: -80px; }
  .brand img { width: 180px; }
  .hero { min-height: 763px; }
  .hero-inner { padding-top: 164px; }
  .hero-stats { gap: 0; }
  .problem-grid article > img { height: 128px; }
  .card-grid article { padding-inline: 22px; }
}

@media (max-width: 760px) {
  main#top { margin-top: 0; }
  .site-header {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    left: 12px;
    right: 12px;
    width: auto;
    margin: 0;
    height: 68px;
    padding: 0 14px;
    animation: none;
  }
  .brand img { width: 132px; }
  .hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-deco {
    width: 360px;
    height: 360px;
    left: -140px;
    right: auto;
    top: 40px;
    filter: blur(90px);
  }
  .hero-photo {
    inset: 0 0 300px;
    background:
      url("img/service/meeting.svg") 72% 17% / 270px auto no-repeat,
      linear-gradient(180deg, #f3fbfb, #bce9e6 55%, #fff);
    opacity: 1;
  }
  .hero-wash {
    background: linear-gradient(180deg, rgba(214,245,243,.35), rgba(214,245,243,.94) 54%, #f1f7f8 80%);
  }
  .hero-inner {
    width: calc(100% - 32px);
    padding: 24px 0;
    margin-inline: auto;
  }
  .hero-actions { width: 100%; margin-top: 20px; }
  .hero-cta-image img { width: 100%; }
  .hero-note br { display: none; }
  .stats-strip { padding-top: 20px; }
  .hero-stats.container {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    top: -7em;
    transform: translate(-50%, -18%);
    gap: 0;
  }
  .hero-stats-pc { display: none; }
  .hero-stats-sp {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .credential-strip { padding-bottom: 28px; }
  .credential-strip > picture { width: calc(100% - 20px); }
  .problem-grid article { min-height: 220px; }
  .problem-grid article > img { height: 120px; }
  .problem .section-heading small {
    display: block;
    margin-top: 8px;
    font-weight: 400;
    line-height: 1.45;
  }
  .down-chevrons { width: 72px; height: auto; }
  .growth-graphic { display: none; }
  .card-grid article { min-height: 390px; padding-top: 255px; }
  .card-grid article > img { top: 32px; height: 200px; }
  .photo-cta { border-radius: 0; width: 100%; padding: 20px 0; }
  .photo-cta-image {
    top: 20px;
    bottom: 20px;
    width: min(calc(100% - 28px), 1200px);
    border-radius: 16px;
  }
  .photo-cta-copy { width: min(calc(100% - 28px), 1200px); padding: 56px 20px; }
  .service-intro h2 { padding-left: 28px; }
  .service-intro h2::before { width: 8px; height: 72px; top: 8px; }
  .problem-grid article:nth-child(4) > img,
  .problem-grid article:nth-child(5) > img,
  .problem-grid article:nth-child(6) > img {
    height: 108px; /* 120px × 90% */
  }
  .steps-grid article { grid-template-columns: 1fr; }
  .steps-grid article > img { height: 54px; margin: 8px auto 0; }
  .lineup-grid article { min-height: 168px; padding: 24px 8px 18px; }
  .lineup-grid article > img { width: 90px; height: 90px; }
  .reason-stack aside > img { max-height: 300px; }
  .back-to-top { right: 12px; bottom: 12px; width: 58px; height: 58px; }
}

/* =========================================================
   Motion — スクロール連動アニメーション基盤
   ========================================================= */
:root {
  --anim-dur: .82s;
  --anim-ease: cubic-bezier(.22, .68, .35, 1);
  --anim-ease-pop: cubic-bezier(.22, .9, .3, 1.16);
  --anim-step: 80ms;
}

main > section[id],
section[id] { scroll-margin-top: 110px; }

html.js [data-anim],
html.js [data-anim-stagger] > * {
  opacity: 0;
  transition:
    opacity var(--anim-dur) var(--anim-ease) var(--anim-delay, 0ms),
    transform var(--anim-dur) var(--anim-ease) var(--anim-delay, 0ms),
    filter var(--anim-dur) var(--anim-ease) var(--anim-delay, 0ms),
    clip-path var(--anim-dur) var(--anim-ease) var(--anim-delay, 0ms);
}
html.js [data-anim-stagger] > * {
  --child-delay: calc(var(--anim-delay, 0ms) + var(--i, 0) * var(--anim-step));
  transition:
    opacity var(--anim-dur) var(--anim-ease) var(--child-delay),
    transform var(--anim-dur) var(--anim-ease) var(--child-delay),
    filter var(--anim-dur) var(--anim-ease) var(--child-delay);
}

html.js [data-anim="up"],
html.js [data-anim-stagger="up"] > * { transform: translate3d(0, 34px, 0); }
html.js [data-anim="down"],
html.js [data-anim-stagger="down"] > * { transform: translate3d(0, -26px, 0); }
html.js [data-anim="left"],
html.js [data-anim-stagger="left"] > * { transform: translate3d(-42px, 0, 0); }
html.js [data-anim="right"],
html.js [data-anim-stagger="right"] > * { transform: translate3d(42px, 0, 0); }
html.js [data-anim="zoom"],
html.js [data-anim-stagger="zoom"] > * { transform: scale(.94); }
html.js [data-anim="pop"],
html.js [data-anim-stagger="pop"] > * {
  transform: translate3d(0, 24px, 0) scale(.92);
  transition-timing-function: var(--anim-ease-pop);
}
html.js [data-anim="blur"],
html.js [data-anim-stagger="blur"] > * { filter: blur(7px); }
html.js [data-anim="bar"] { transform: scaleX(0); }
html.js [data-anim="wipe"] { opacity: 1; clip-path: inset(0 100% 0 0); }

html.js [data-anim].is-in,
html.js [data-anim-stagger].is-in > * { opacity: 1; }
html.js [data-anim="up"].is-in,
html.js [data-anim="down"].is-in,
html.js [data-anim="left"].is-in,
html.js [data-anim="right"].is-in,
html.js [data-anim="zoom"].is-in,
html.js [data-anim="pop"].is-in,
html.js [data-anim="bar"].is-in,
html.js [data-anim-stagger="up"].is-in > *,
html.js [data-anim-stagger="down"].is-in > *,
html.js [data-anim-stagger="left"].is-in > *,
html.js [data-anim-stagger="right"].is-in > *,
html.js [data-anim-stagger="zoom"].is-in > *,
html.js [data-anim-stagger="pop"].is-in > * { transform: none; }
html.js [data-anim="blur"].is-in,
html.js [data-anim-stagger="blur"].is-in > * { filter: none; }
html.js [data-anim="wipe"].is-in { clip-path: inset(0 0 0 0); }

.problem-grid { --anim-step: 62ms; }
.lineup-grid { --anim-step: 52ms; }
.steps-grid { --anim-step: 62ms; }
.compare-table tbody { --anim-step: 55ms; }

/* 見出し装飾の追従 */
html.js .simple-title[data-anim] h2::before,
html.js .simple-title[data-anim] h2::after {
  transform: scaleX(0);
  transition: transform .7s var(--anim-ease) .18s;
}
html.js .simple-title[data-anim].is-in h2::before,
html.js .simple-title[data-anim].is-in h2::after { transform: none; }

html.js .lineup-head h2[data-anim]::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .7s var(--anim-ease) .22s;
}
html.js .lineup-head h2[data-anim].is-in::before { transform: none; }

/* マーカーが引かれる演出 */
html.js .risk-box mark {
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .75s var(--anim-ease);
  transition-delay: calc(var(--child-delay, 0ms) + .3s);
}
html.js .risk-box ul.is-in mark { background-size: 100% 100%; }

/* フロー矢印は本体の後に点灯 */
html.js .steps-grid[data-anim-stagger] > article::after,
html.js .flow-grid[data-anim-stagger] > article::after {
  opacity: 0;
  transition: opacity .5s ease calc(var(--child-delay, 0ms) + .28s);
}
html.js .steps-grid[data-anim-stagger].is-in > article::after,
html.js .flow-grid[data-anim-stagger].is-in > article::after { opacity: 1; }

/* =========================================================
   Motion — 読み込み時とループ演出
   ========================================================= */
html.js .site-header { animation: header-drop .9s var(--anim-ease) both; }
@keyframes header-drop {
  from { opacity: 0; transform: translate3d(0, -26px, 0); }
  to { opacity: 1; transform: none; }
}

.site-header { transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease; }
html.is-scrolled .site-header {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(255, 255, 255, .9);
  box-shadow:
    0 14px 34px rgba(20, 50, 70, .18),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.site-header nav a { position: relative; }
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .3s var(--anim-ease);
}
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

html.js .hero-video { animation: hero-kenburns 7s var(--anim-ease) both; }
@keyframes hero-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-deco { animation: hero-deco-drift 16s ease-in-out infinite alternate; }
@keyframes hero-deco-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(70px, 44px, 0) scale(1.14); }
}

html.js .down-chevrons { animation: chevron-bounce 1.9s ease-in-out infinite; }
@keyframes chevron-bounce {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .82; }
  50% { transform: translate3d(0, 9px, 0); opacity: 1; }
}

html.js .risk-figure--left { animation: figure-bob 4.4s ease-in-out infinite; }
html.js .risk-figure--right { animation: figure-bob 5.2s ease-in-out .7s infinite; }
html.js .compare-figure-left { animation: figure-bob 5s ease-in-out infinite; }
html.js .compare-figure-right { animation: figure-bob 4.6s ease-in-out .9s infinite; }
@keyframes figure-bob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -11px, 0); }
}

/* =========================================================
   Motion — CTAボタン（発光・光沢）
   ========================================================= */
.cta-btn {
  --cta-radius: 14px;
  position: relative;
  display: inline-block;
  line-height: 0;
  overflow: hidden; /* SVG内蔵ドロップシャドウ／光沢のはみ出しをボタン形にクリップ */
  border-radius: var(--cta-radius);
  vertical-align: top;
  transition: transform .26s var(--anim-ease), box-shadow .35s ease;
  box-shadow: 0 0 0 0 rgba(255, 131, 58, 0);
  animation: cta-glow 2.9s ease-in-out infinite;
}
.cta-btn > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
.cta-btn-shine {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.cta-btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 38%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.7) 48%, rgba(255,255,255,0) 100%);
  transform: translate3d(-120%, 0, 0) skewX(-18deg);
  animation: cta-shine 4.2s cubic-bezier(.45, 0, .2, 1) infinite;
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 6px 16px rgba(255, 131, 58, .22); }
  50% { box-shadow: 0 8px 22px rgba(255, 131, 58, .48); }
}
@keyframes cta-shine {
  0% { transform: translate3d(-120%, 0, 0) skewX(-18deg); }
  28% { transform: translate3d(280%, 0, 0) skewX(-18deg); }
  100% { transform: translate3d(280%, 0, 0) skewX(-18deg); }
}
.cta-btn:hover {
  transform: translate3d(0, -3px, 0);
  animation-duration: 1.6s;
}
.cta-btn:active { transform: translate3d(0, -1px, 0); }

.hero-actions .hero-cta-image.cta-btn { --cta-radius: 14px; }
.photo-cta-btn.cta-btn {
  --cta-radius: 13px;
  width: min(100%, 390px);
}
.photo-cta a.photo-cta-btn img { width: 100%; }

.photo-cta-actions { width: fit-content; max-width: 100%; }

.contact-cta.cta-btn {
  --cta-radius: 16px;
  display: inline-grid;
  line-height: 1.3;
  overflow: hidden;
  animation: contact-cta-glow 3.2s ease-in-out infinite;
}
.contact-cta.cta-btn:hover { transform: translate3d(0, -3px, 0); }
@keyframes contact-cta-glow {
  0%, 100% { box-shadow: 10px 12px 24px rgba(0, 0, 0, .13), 0 0 0 rgba(255, 131, 58, 0); }
  50% { box-shadow: 10px 15px 30px rgba(0, 0, 0, .16), 0 0 28px rgba(255, 131, 58, .55); }
}

.contact-phone a { transition: transform .26s var(--anim-ease); }
.contact-phone a:hover { transform: translate3d(0, -3px, 0); }

/* =========================================================
   Motion — FAQ / ページトップ
   ========================================================= */
html.js .faq-list details[open] > div { animation: faq-panel .42s var(--anim-ease) both; }
@keyframes faq-panel {
  from { opacity: 0; transform: translate3d(0, -10px, 0); }
  to { opacity: 1; transform: none; }
}
summary i { transition: transform .32s var(--anim-ease); }
details[open] summary i { transform: rotate(180deg); }

html.js .back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0) scale(.88);
  transition:
    opacity .38s ease,
    transform .38s var(--anim-ease-pop),
    visibility .38s;
}
html.js .back-to-top.is-shown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
html.js .back-to-top.is-shown:hover { transform: translate3d(0, -5px, 0); }

@media (prefers-reduced-motion: reduce) {
  html.js [data-anim],
  html.js [data-anim-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  html.js .risk-box ul mark { background-size: 100% 100%; }
  html.js .steps-grid > article::after,
  html.js .flow-grid > article::after { opacity: 1; }
  html.js .simple-title h2::before,
  html.js .simple-title h2::after,
  html.js .lineup-head h2::before { transform: none; }
  html.js .site-header,
  html.js .hero-video,
  html.js .hero-deco,
  html.js .down-chevrons,
  html.js .risk-figure,
  html.js .compare-figure,
  html.js .cta-btn,
  html.js .cta-btn-shine::after,
  html.js .faq-list details[open] > div { animation: none !important; }
  html.js .cta-btn { box-shadow: none !important; }
  html.js .back-to-top { transition: opacity .01s linear; }
}

/* =========================================================
   Responsive — タブレット〜スマートフォンの詰め
   ここから下の指定が既存のブレークポイントを上書きする
   ========================================================= */

/* ---- 〜1100px：ワイドタブレット ---- */
@media (max-width: 1100px) {
  .site-header { gap: 20px; }
  .site-header nav { gap: 18px; margin-right: 4px; font-size: 15px; }

  main > section[id],
  section[id] { scroll-margin-top: 96px; }

  .framed { padding: 70px 44px; }
  .compare .framed { padding: 70px 44px 100px; }

  .section-heading h2 { margin-bottom: 18px; }
  .problem-grid p { font-size: 15px; }
  .problem-grid article { min-height: 230px; padding-inline: 12px; }
  .problem-grid article > img { height: 118px; }
  .problem-grid article:nth-child(4) > img,
  .problem-grid article:nth-child(5) > img,
  .problem-grid article:nth-child(6) > img { height: 106px; }
  .risk-box { padding: 26px 32px 20px; }
  .risk-box li { font-size: 16px; }
  .problem-answer,
  .operation-callout { font-size: 24px; }

  .service-cards { padding: 90px 0 100px; }
  .service-intro { grid-template-columns: minmax(0, 1fr) 280px; gap: 36px; margin-bottom: 44px; }
  .service-intro h2 { padding-left: 26px; font-size: 34px; }
  .service-intro h2::before { top: 10px; width: 9px; height: 84px; }
  .growth-graphic { width: 100%; max-width: 280px; height: auto; }
  .card-grid { gap: 20px; }
  .card-grid article { min-height: 0; padding: 226px 20px 24px; }
  .card-grid article > img { top: 34px; width: 200px; height: 168px; }
  .card-grid article:nth-child(3) > img { top: 22px; height: 184px; }
  .card-grid h3 { font-size: 20px; }
  .card-grid p { font-size: 14px; }

  .photo-cta-copy { padding: 64px 32px; }

  .operation { padding: 90px 0; }
  .steps-grid { gap: 40px 20px; margin: 52px 0 36px; }
  .steps-grid article { grid-template-columns: 1fr; padding: 26px 10px 20px; text-align: center; }
  .steps-grid article > img { margin: 10px auto 0; }
  .steps-grid span { font-size: 18px; }
  .role-grid { gap: 26px; }
  .role-grid article { min-height: 0; padding: 18px 24px 26px; }

  .lineup { padding: 90px 0; }
  .lineup-head { grid-template-columns: minmax(0, 1fr) 280px; gap: 30px; margin-bottom: 44px; }
  .lineup-head h2 { padding-left: 26px; font-size: 34px; }
  .lineup-head h2::before { top: 10px; width: 9px; height: 84px; }
  .handshake { width: 280px; }
  .lineup-grid { gap: 14px; }
  .lineup-grid article { min-height: 0; gap: 16px; padding: 26px 8px 20px; }
  .lineup-grid article > img { width: 88px; height: 88px; }
  .lineup-grid span { font-size: 14px; }

  .reasons { padding: 90px 0 100px; }
  .reason-title { margin-bottom: 44px; }
  .reason-title h2 { font-size: 36px; }
  .reason-title h2 b { font-size: 52px; }
  .reason-stack { gap: 28px; }
  .reason-stack article {
    min-height: 0;
    padding: 56px 44px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: 34px;
  }
  .reason-stack h3 { font-size: 30px; }
  .reason-stack article > div > p { font-size: 16px; }
  .reason-stack aside > img { max-width: 320px; }

  .cases { padding: 90px 0; }
  .simple-title { margin-bottom: 44px; }
  .simple-title h2 { gap: 24px; font-size: 40px; }
  .simple-title h2::before,
  .simple-title h2::after { width: 56px; }
  .case-stack { gap: 24px; }
  .case-stack > article { padding: 24px; grid-template-rows: 205px 1fr; gap: 22px; }
  .case-stack > article > img { height: 205px; }
  .case-body header { margin-bottom: 16px; }
  .case-body header span { font-size: 15px; }
  .case-challenge p,
  .case-result p { font-size: 15px; }

  .compare { padding: 90px 0; }
  .compare-heading h2 { margin-bottom: 32px; font-size: 34px; }
  .compare-heading > i { margin-bottom: 40px; }
  .compare-figure { display: none; }
  .compare-table-wrap { width: 100%; }
  .compare-note { width: min(100%, 450px); }
  .compare-table { font-size: 17px; border-spacing: 6px 3px; }
  .compare-table .col-item { width: 22%; }
  .compare-table .col-other { width: 29%; }
  .compare-table .col-bp { width: 49%; }
  .compare-table thead th.is-bp img { width: min(100%, 250px); }

  .faq { padding: 90px 0; }
  summary { min-height: 88px; padding: 20px 28px; grid-template-columns: 44px 1fr 24px; font-size: 19px; }
  details > div { padding: 22px 28px; grid-template-columns: 44px 1fr; }

  .flow { padding: 90px 0; }
  .flow-grid { gap: 22px; }
  .flow-grid article { padding: 34px 16px 18px; }
  .flow-grid article:not(:last-child)::after { right: -18px; font-size: 30px; }

  .contact-box { padding: 60px 40px 32px; column-gap: 28px; }
  .contact-phone > span,
  .contact-web > span { font-size: 20px; }
  .contact-phone small { font-size: 16px; }
}

/* ---- 〜900px：タブレット ---- */
@media (max-width: 900px) {
  .framed { padding: 60px 30px; }
  .compare .framed { padding: 60px 24px 76px; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid article {
    min-height: 210px;
    border-right: 1px dashed #bccfd6;
    border-bottom: 1px dashed #bccfd6;
  }
  .problem-grid article:nth-child(2n) { border-right: 0; }
  .problem-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .problem-grid p { font-size: 16px; }
  .problem-grid article > img { height: 130px; }
  .problem-grid article:nth-child(4) > img,
  .problem-grid article:nth-child(5) > img,
  .problem-grid article:nth-child(6) > img { height: 117px; }

  .service-intro { grid-template-columns: 1fr; gap: 24px; }
  .growth-graphic { max-width: 250px; justify-self: center; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid article { padding: 248px 24px 26px; }
  .card-grid article > img { top: 36px; width: 230px; height: 188px; }
  .card-grid article:nth-child(3) > img { top: 24px; height: 204px; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 22px; }
  .steps-grid article:not(:nth-child(4n))::after { display: none; }
  .steps-grid article:not(:nth-child(2n))::after {
    display: block;
    right: -11px;
    width: 16px;
    height: 23px;
    background-size: 16px 23px;
  }

  .lineup-head { grid-template-columns: 1fr; gap: 24px; }
  .handshake { justify-self: center; }

  .magazine { padding: 80px 0; }
  .magazine-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

  .reason-stack article { grid-template-columns: 1fr; gap: 24px; padding: 48px 30px; }
  .reason-stack aside { justify-self: center; }
  .reason-stack aside > img { max-width: 340px; max-height: 320px; margin-inline: auto; }

  .compare-heading h2 { font-size: 30px; }
  .compare-table { font-size: 15px; }
  .compare-table thead th { height: 74px; }
  .compare-table thead th > span { height: 56px; }
  .compare-table thead th:first-child > span { font-size: 16px; }
  .compare-table thead th:nth-child(2) > span { font-size: 18px; }
  .compare-table thead th.is-bp > span { height: 74px; padding-inline: 10px; }
  .compare-table thead th.is-bp img { width: min(100%, 210px); }
  .compare-table tbody th,
  .compare-table tbody td { padding: 8px 10px; }

  .contact-box { padding: 56px 32px 30px; column-gap: 24px; }
}

/* ---- 〜760px：スマートフォン ---- */
@media (max-width: 760px) {
  /* 横方向の出現オフセットでページ幅が変動しないよう、スマホでは縦移動に統一 */
  html.js [data-anim="left"],
  html.js [data-anim="right"],
  html.js [data-anim-stagger="left"] > *,
  html.js [data-anim-stagger="right"] > * {
    transform: translate3d(0, 24px, 0);
  }

  .hero-actions .hero-cta-image.cta-btn { width: 100%; }
  .reason-title-break { display: block; }

  .framed { padding: 56px 18px; }
  .problem-grid article { min-height: 200px; padding-inline: 8px; }
  .problem-grid p { font-size: 13px; }
  .problem-grid article > img { height: 118px; }
  .problem-grid article:nth-child(4) > img,
  .problem-grid article:nth-child(5) > img,
  .problem-grid article:nth-child(6) > img { height: 106px; }
  .problem-answer,
  .operation-callout { font-size: 17px; }

  .service-intro h2,
  .lineup-head h2 { font-size: 26px; }
  .service-intro h2::before,
  .lineup-head h2::before {
    top: 3px;
    height: 60px;
  }
  .lineup-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid article { min-height: 0; padding: 252px 22px 24px; }
  .card-grid article > img { top: 32px; width: 220px; height: 196px; }
  .card-grid article:nth-child(3) > img { top: 22px; height: 210px; }

  .photo-cta-actions { width: 100%; }
  .photo-cta-btn.cta-btn { width: min(100%, 390px); }

  .role-grid article { padding: 16px 18px 24px; }

  .lineup-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .lineup-grid article:nth-child(5) { display: none; }
  .lineup-grid article { min-height: 0; gap: 14px; padding: 24px 8px 18px; }
  .lineup-grid article > img { width: 86px; height: 86px; }

  .reason-stack article { padding: 44px 22px; }
  .reason-stack article > div > span { font-size: 20px; }
  .reason-stack h3 { font-size: 28px; }
  .reason-stack article > div > p { font-size: 14px; }
  .reason-stack aside > img { max-width: 100%; max-height: 280px; }

  .case-stack > article { padding: 22px 18px; grid-template-rows: 200px 1fr; gap: 20px; }
  .case-stack > article > img { height: 200px; }

  /* 比較表は読みやすい幅を確保し、横スクロールで閲覧する */
  .compare .framed { padding: 56px 10px 60px; }
  .table-scroll {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .compare-table {
    width: 720px;
    min-width: 720px;
    font-size: 14px;
    border-spacing: 6px 4px;
  }
  .compare-table .col-item { width: 20%; }
  .compare-table .col-other { width: 32%; }
  .compare-table .col-bp { width: 48%; }
  .compare-table thead th { height: 68px; }
  .compare-table thead th > span { height: 52px; border-radius: 10px 10px 0 0; line-height: 1.3; }
  .compare-table thead th:first-child > span,
  .compare-table thead th:nth-child(2) > span { padding-inline: 8px; font-size: 14px; }
  .compare-table thead th.is-bp > span { height: 68px; padding-inline: 12px; }
  .compare-table thead th.is-bp img { width: min(100%, 160px); }
  .compare-table tbody th,
  .compare-table tbody td { height: auto; min-height: 60px; padding: 10px 8px; line-height: 1.55; }

  .flow-grid article:not(:last-child)::after { font-size: 34px; }

  .magazine { padding: 60px 0; }
  .magazine .simple-title h2 {
    gap: 8px;
    font-size: 23px;
    white-space: nowrap;
  }
  .magazine .simple-title h2::before,
  .magazine .simple-title h2::after { width: 24px; }
  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .magazine-body { gap: 6px; padding: 13px 14px 16px; }
  .magazine-meta { gap: 8px; }
  .magazine-meta time { font-size: 12px; }
  .magazine-body h3 { font-size: 14px; line-height: 1.55; }
  .magazine-body > p { display: none; }
  .magazine-tags { padding-top: 8px; }
  .magazine-more { margin-top: 32px; }
  .magazine-more a { width: 100%; justify-content: center; min-height: 54px; font-size: 15px; }
  .contact > .container > p br { display: none; }
}

/* ---- 〜480px：小型スマートフォン ---- */
@media (max-width: 480px) {
  .site-header { gap: 10px; padding: 0 14px; }
  .brand img { width: 200px; }

  .container { width: calc(100% - 24px); }
  .framed { padding: 48px 14px; }

  .section-heading h2 { font-size: 24px; }
  .problem-grid article { min-height: 178px; padding: 10px 6px 20px; }
  .problem-grid p { margin-top: 10px; font-size: 12px; }
  .problem-grid article > img { height: 96px; }
  .problem-grid article:nth-child(4) > img,
  .problem-grid article:nth-child(5) > img,
  .problem-grid article:nth-child(6) > img { height: 86px; }
  .risk-box { padding: 20px 14px; }
  .risk-box li { padding-left: 24px; font-size: 13px; }
  .problem-answer,
  .operation-callout { font-size: 15px; }

  .service-intro h2,
  .lineup-head h2 { font-size: 23px; }
  .card-grid article { padding: 226px 18px 22px; }
  .card-grid article > img { top: 28px; width: 190px; height: 176px; }
  .card-grid article:nth-child(3) > img { top: 20px; height: 188px; }

  .photo-cta-copy { padding: 44px 16px; }

  .steps-grid { gap: 34px 14px; }
  .steps-grid span { font-size: 15px; }
  .steps-grid article > img { height: 46px; }

  .lineup-grid article > img { width: 72px; height: 72px; }
  .lineup-grid span { font-size: 13px; }

  .reason-title h2 { font-size: 23px; }
  .reason-title h2 b { font-size: 34px; }
  .reason-stack article { padding: 38px 16px; }
  .reason-stack h3 { font-size: 26px; }

  .simple-title h2 { gap: 10px; font-size: 27px; }
  .case-stack > article { padding: 18px 14px; grid-template-rows: 170px 1fr; }
  .case-stack > article > img { height: 170px; }
  .case-body header { gap: 10px; }
  .case-body header b { min-width: 78px; height: 32px; padding: 0 10px; font-size: 14px; }
  .case-body header span { font-size: 13px; }
  .case-challenge p,
  .case-result p { font-size: 13.5px; }

  .magazine-grid { gap: 12px; }
  .magazine-card { border-radius: 12px; }
  .magazine-cat { padding: 1px 7px; font-size: 10px; white-space: nowrap; }
  .magazine-body { padding: 12px 11px 14px; }
  .magazine-meta { gap: 6px; flex-wrap: nowrap; }
  .magazine-meta time { font-size: 11px; }
  .magazine-body h3 { font-size: 13.5px; }
  .magazine-tags li { padding: 1px 8px; font-size: 10px; }

  .compare .framed { padding: 48px 10px 52px; }
  .compare-heading h2 { font-size: clamp(17px, 5vw, 22px); }
  .compare-table { font-size: 14px; border-spacing: 6px 4px; }
  .compare-table thead th.is-bp img { width: min(100%, 160px); }
  .compare-table tbody th,
  .compare-table tbody td { min-height: 60px; padding: 10px 8px; }

  summary { min-height: 68px; padding: 14px 12px; grid-template-columns: 32px 1fr 18px; gap: 8px; font-size: 14px; }
  summary > b,
  details > div > b { width: 32px; height: 32px; }
  details > div { padding: 16px 12px; grid-template-columns: 32px 1fr; gap: 8px; font-size: 13px; }

  .contact h2 { font-size: 22px; }
  .contact > .container > p { font-size: 13.5px; }
  .contact-box { padding: 42px 16px 26px; }
  .contact-phone > span,
  .contact-web > span { font-size: 16px; }
  .contact-phone small { font-size: 13px; }
  .contact-cta { min-height: 58px; padding: 0 48px 0 14px; font-size: 13.5px; }

  footer { padding: 60px 18px 36px; }
  footer address { font-size: 12px; }
}

/* ---- 〜360px：極小画面 ---- */
@media (max-width: 360px) {
  .site-header { padding: 0 10px; }
  .brand img { width: 104px; }
  .hero-note { font-size: 9px; }
  .problem-grid p { font-size: 11px; }
  .compare-table { font-size: 10.5px; }
  .compare-table thead th.is-bp img { width: min(100%, 100px); }
}

/* ---- 横向きの低い画面：ファーストビューを詰める ---- */
@media (orientation: landscape) and (max-height: 520px) {
  .hero { min-height: 540px; }
  .hero-inner { padding-top: 116px; }
}

@media (max-width: 760px) {
  .reason-title h2,
  .operation .section-heading h2 {
    font-size: 28px;
  }
  .compare .compare-heading h2 {
    font-size: 22px;
    letter-spacing: -.02em;
    white-space: nowrap;
  }
}
