*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
:root {
  --navy: #1B2E4B;
  --blue: #3A7BD5;
  --sky: #A8CFFB;
  --white: #fff;
  --bg: #F5F8FC;
  --border: #D8E4F0;
  --text: #1B2E4B;
  --muted: #6B82A0;
  --hint: #A3B5CB;
  --green: #2BA88A;
  --green-pale: #E2F5F0;
  --ac: #3A7BD5;
  --ap: #EEF5FD;
  --al: #D6E8FB;
  --fd: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --fb: 'Noto Sans JP', sans-serif;
  --rlg: 16px;
  --rxl: 24px;
  --rfl: 999px;
}
html {
  scroll-behavior: smooth
}
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden
}
.hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border)
}
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 62px
}
.logo {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  margin-right: auto;
  letter-spacing: -.02em
}
.logo span {
  color: var(--blue)
}
.nl {
  display: flex
}
.nl a {
  padding: 0 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  height: 62px;
  display: flex;
  align-items: center;
  white-space: nowrap
}
.nl a:hover {
  color: var(--ac)
}
.ncta {
  margin-left: 14px;
  padding: 9px 18px;
  background: var(--ac);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--rfl);
  text-decoration: none;
  white-space: nowrap
}
.ncta:hover {
  opacity: .88
}
.bc {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px
}
.bc-in {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--hint);
  flex-wrap: wrap
}
.bc-in a {
  color: var(--muted);
  text-decoration: none
}
.bc-in a:hover {
  color: var(--navy)
}
/* HERO */
.phero {
  background: var(--navy);
  padding: 52px 32px 48px;
  position: relative;
  overflow: hidden
}
.phero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--ac);
  opacity: .11
}
.phero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 5%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--sky);
  opacity: .07
}
.phero-in {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}
.phero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fu .5s ease .1s forwards
}
.axis-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--rfl);
  background: var(--ac);
  color: #fff;
  letter-spacing: .06em
}
.industry-badge {
  font-size: 12px;
  color: rgba(255, 255, 255, .60);
  font-weight: 500
}
.size-badge {
  font-size: 11px;
  color: rgba(255, 255, 255, .40)
}
.phero-h1 {
  font-family: var(--fd);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
  opacity: 0;
  animation: fu .5s ease .2s forwards
}
.phero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  max-width: 680px;
  opacity: 0;
  animation: fu .5s ease .3s forwards
}
/* MAIN LAYOUT */
.main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start
}
.sec {
  margin-bottom: 44px
}
.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--ac);
  text-transform: uppercase;
  margin-bottom: 8px
}
.sec-title {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.35
}
/* CHALLENGE */
.challenge-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden
}
.challenge-text {
  padding: 24px 28px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  border-bottom: 1px solid var(--border)
}
.challenge-tags {
  padding: 16px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}
.ctag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--rfl);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted)
}
/* SOLUTION */
.solution-block {
  background: var(--ap);
  border: 1.5px solid var(--al);
  border-radius: var(--rxl);
  padding: 24px 28px
}
.solution-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 18px
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}
.svc-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--rfl);
  border: 1.5px solid;
  background: #fff
}
/* RESULTS */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 20px;
  text-align: center
}
.rc-icon {
  font-size: 24px;
  margin-bottom: 6px
}
.rc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4
}
.rc-before {
  background: var(--bg);
  border-radius: var(--rlg);
  padding: 10px;
  margin-bottom: 6px
}
.rcb-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--hint);
  letter-spacing: .08em;
  margin-bottom: 3px
}
.rcb-val {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(220, 38, 38, .4)
}
.rc-arrow {
  font-size: 18px;
  color: var(--ac);
  margin: 4px 0;
  font-weight: 700
}
.rc-after {
  border-radius: var(--rlg);
  padding: 10px;
  border: 1.5px solid
}
.rca-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 3px
}
.rca-val {
  font-size: 15px;
  font-weight: 700
}
/* IMAGES */
.images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}
.img-card {
  border-radius: var(--rxl);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border)
}
.img-icon {
  font-size: 36px;
  margin-bottom: 10px
}
.img-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4
}
.img-note {
  font-size: 10px;
  color: var(--hint);
  margin-top: 8px
}
/* COMMENT */
.comment-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 28px 32px;
  position: relative
}
.comment-block::before {
  content: '\201C';
  font-family: var(--fd);
  font-size: 64px;
  color: var(--ap);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  pointer-events: none
}
.comment-text {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.9;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px
}
.comment-role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 8px
}
.comment-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ac);
  flex-shrink: 0
}
/* CTA */
.cta-block {
  background: var(--navy);
  border-radius: var(--rxl);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 48px
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--ac);
  opacity: .14
}
.cta-e {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative
}
.cta-t {
  font-family: var(--fd);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 12px;
  position: relative
}
.cta-d {
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
  margin-bottom: 22px;
  line-height: 1.8;
  position: relative
}
.cta-as {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}
.cta-p {
  padding: 13px 28px;
  border-radius: var(--rfl);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: var(--ac);
  color: #fff;
  display: inline-block;
  transition: opacity .15s
}
.cta-p:hover {
  opacity: .88
}
.cta-g {
  padding: 13px 20px;
  border-radius: var(--rfl);
  font-size: 13px;
  text-decoration: none;
  background: transparent;
  color: rgba(255, 255, 255, .70);
  border: 1.5px solid rgba(255, 255, 255, .18);
  display: inline-block
}
.cta-n {
  font-size: 11px;
  color: rgba(255, 255, 255, .28);
  margin-top: 12px;
  position: relative
}
/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 80px
}
.sc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden
}
.sc-head {
  padding: 13px 17px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy)
}
.sc-body {
  padding: 14px 16px
}
.other-case {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  text-decoration: none;
  color: var(--navy);
  margin-bottom: 7px;
  transition: all .15s
}
.other-case:last-child {
  margin-bottom: 0
}
.other-case:hover {
  border-color: var(--ac);
  background: var(--ap)
}
.oc-axis {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .04em
}
.oc-body {
  flex: 1;
  min-width: 0
}
.oc-ind {
  font-size: 10px;
  color: var(--hint);
  margin-bottom: 2px
}
.oc-tt {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.oc-arr {
  color: var(--hint);
  font-size: 14px;
  flex-shrink: 0
}
/* AXIS LINK */
.axis-link-block {
  background: var(--ap);
  border: 1.5px solid var(--al);
  border-radius: var(--rxl);
  padding: 18px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .15s
}
.axis-link-block:hover {
  transform: translateX(3px)
}
.al-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ac);
  flex-shrink: 0
}
.al-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ac);
  margin-bottom: 2px
}
.al-desc {
  font-size: 12px;
  color: var(--muted)
}
/* FOOTER */
.ftr {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 36px 32px 32px
}
.ftin {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start
}
.flogo {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none
}
.flogo span {
  color: var(--sky)
}
.ftag {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin-top: 4px
}
.fls {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}
.fls a {
  font-size: 12px;
  color: rgba(255, 255, 255, .38);
  text-decoration: none
}
.fls a:hover {
  color: rgba(255, 255, 255, .75)
}
.fcp {
  max-width: 1080px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 11px;
  color: rgba(255, 255, 255, .22)
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(16px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease
}
.rv.in {
  opacity: 1;
  transform: translateY(0)
}
.d1 {
  transition-delay: .07s
}
.d2 {
  transition-delay: .14s
}
@media(max-width:900px) {
  .main {
    grid-template-columns: 1fr
  }
  .sidebar {
    position: static
  }
  .results-grid {
    grid-template-columns: 1fr 1fr
  }
  .images-grid {
    grid-template-columns: 1fr
  }
  .nl {
    display: none
  }
}
@media(max-width:480px) {
  .results-grid {
    grid-template-columns: 1fr
  }
}