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

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

/*
body {
  margin: 0;
  font-family: $font-body;
  font-size: $fs-body;
  color: $color-slate;
  line-height: 1.85;
  background: $color-white;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
*/
img {
  max-width: 100%;
  display: block;
}

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

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

h1, h2, h3, h4 {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  color: #17242F;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: 0 0;
  border: none;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

:focus-visible {
  outline: 3px solid #F28C28;
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: "Roboto Mono", "Noto Sans JP", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: #D9741A;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: #F28C28;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.section-head p {
  margin-top: 14px;
  color: #52626E;
}
.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.4s;
}

.reveal-delay-6 {
  transition-delay: 0.48s;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
          mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}

.breadcrumbs::after, .breadcrumbs::before {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}

.breadcrumbs::after {
  clear: both;
}

.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #0a0a0a;
  cursor: default;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}

.breadcrumbs a {
  color: #1779ba;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn .btn-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9em;
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: #F28C28;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(242, 140, 40, 0.28);
}
.btn--primary:hover {
  background: #D9741A;
  box-shadow: 0 10px 22px rgba(242, 140, 40, 0.36);
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.btn--ghost {
  background: transparent;
  color: #002D50;
  border-color: #002D50;
}
.btn--ghost:hover {
  background: #002D50;
  color: #FFFFFF;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.case-card {
  background: #FFFFFF;
  border: 1px solid #D8E1E8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 45, 80, 0.12);
  border-color: transparent;
}
.case-card .case-card__media {
  aspect-ratio: 4/3;
  background: #EAF2F8;
  position: relative;
  overflow: hidden;
}
.case-card .case-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-card:hover .case-card__media img {
  transform: scale(1.06);
}
.case-card .case-card__body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.case-card p.case-card__desc {
  font-size: 0.88rem;
  color: #52626E;
  margin: 0 0 16px;
  flex: 1;
}
.case-card .case-card__specs {
  font-family: "Roboto Mono", "Noto Sans JP", monospace;
  font-size: 0.78rem;
  color: #002D50;
  border-top: 1px dashed #D8E1E8;
  padding-top: 12px;
  margin-bottom: 18px;
}
.case-card .case-card__specs dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  margin: 0;
}
.case-card .case-card__specs dt {
  color: #52626E;
}
.case-card .case-card__specs dt::after {
  content: ":";
  margin-left: 2px;
}

.problem-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(0, 30, 60, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.problem-card .problem-card__num {
  font-family: "Roboto Mono", "Noto Sans JP", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #D9741A;
  font-weight: 700;
}
.problem-card h3 {
  font-size: 1.05rem;
}
.problem-card p {
  font-size: 0.9rem;
  margin: 0;
  color: #52626E;
}
.problem-card .problem-card__media {
  order: 3;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: #F7F8FA;
}
.problem-card .problem-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.strength-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}
.strength-block:last-child {
  margin-bottom: 0;
}
.strength-block.is-reversed .strength-block__media {
  order: 1;
}
.strength-block.is-reversed .strength-block__text {
  order: 2;
}
@media (max-width: 768px) {
  .strength-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .strength-block.is-reversed .strength-block__media, .strength-block.is-reversed .strength-block__text,
  .strength-block .strength-block__media, .strength-block .strength-block__text {
    order: initial;
  }
}
.strength-block__media {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 30, 60, 0.14);
}
.strength-block__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.strength-block__num {
  font-family: "Roboto Mono", "Noto Sans JP", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #D9741A;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}
.strength-block h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  margin-bottom: 14px;
}
.strength-block p {
  font-size: 0.94rem;
}

.download-panel {
  background: #001B33;
  border-radius: 8px;
  padding: 48px 40px;
  color: #FFFFFF;
  text-align: center;
}
.download-panel h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 34px;
}
.download-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 480px) {
  .download-panel__grid {
    grid-template-columns: 1fr;
  }
}
.download-panel__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 22px;
}
.download-panel__item .thumb {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #FFFFFF;
}
.download-panel__item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.download-panel__item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: flow;
}
@media (max-width: 768px) {
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .flow-list {
    grid-template-columns: 1fr;
  }
}

.flow-item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #D8E1E8;
  border-radius: 8px;
  overflow: hidden;
}
.flow-item__head {
  background: #002D50;
  color: #FFFFFF;
  font-family: "Roboto Mono", "Noto Sans JP", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow-item__head::before {
  counter-increment: flow;
  content: "0" counter(flow);
  color: #F28C28;
  font-weight: 700;
}
.flow-item__media {
  aspect-ratio: 16/10;
  background: #EAF2F8;
}
.flow-item__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-item__body {
  padding: 16px 18px 20px;
  font-size: 0.85rem;
}
.flow-item .flow-arrow {
  display: none;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: #F28C28;
  font-size: 1.4rem;
  z-index: 2;
}
@media (min-width: 769px) {
  .flow-item .flow-arrow {
    display: block;
  }
}

.about__content {
  max-width: 600px;
}
.about__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

section {
  position: relative;
}

.section-pad {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
}

.hero {
  position: relative;
  background: linear-gradient(160deg, #002D50 0%, #001B33 100%);
  color: #FFFFFF;
  overflow: hidden;
  padding: 120px 0 130px;
}
@media (max-width: 768px) {
  .hero {
    padding: 72px 0 90px;
  }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media video,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(0, 45, 80, 0.6) 0%, rgba(0, 27, 51, 0.5) 55%, rgba(0, 27, 51, 0.42) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  font-family: "Roboto Mono", "Noto Sans JP", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  display: inline-block;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: "// ";
  color: #F28C28;
}
.hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  letter-spacing: 0.01em;
  margin-bottom: 26px;
  text-shadow: 0 2px 16px rgba(0, 12, 24, 0.45);
}
.hero__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 10px rgba(0, 12, 24, 0.4);
}
.hero__stats {
  position: relative;
  z-index: 3;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}
.hero__stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 26px 20px;
  text-align: center;
}
.hero__stat .num {
  font-family: "Roboto Mono", "Noto Sans JP", monospace;
  font-size: 1.9rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}
.hero__stat .num span {
  color: #F28C28;
  font-size: 1.1rem;
  margin-left: 2px;
}
.hero__stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.hero__grid {
  opacity: 0.6;
  z-index: 2;
}

.hero__glow {
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.18), transparent 70%);
  top: -220px;
  right: -160px;
  z-index: 2;
  pointer-events: none;
}

.cases {
  background: #FFFFFF;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cases__grid {
    grid-template-columns: 1fr;
  }
}
.cases__footer {
  text-align: center;
}

.problems {
  background: #F7F8FA;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .problems__grid {
    grid-template-columns: 1fr;
  }
}

.cta-band {
  background: #002D50;
  padding: 52px 0;
  text-align: center;
}
.cta-band--split {
  background: linear-gradient(90deg, #002D50 0%, #114270 100%);
}

.strengths {
  background: linear-gradient(180deg, #EAF2F8 0%, #F3F9FD 100%);
}

.flow {
  background: #FFFFFF;
}

.about {
  background: #52626E;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .about {
    min-height: 0;
    padding: 90px 0;
  }
}
.about .container {
  position: relative;
  z-index: 2;
}
.about__eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.about h2 {
  color: #FFFFFF;
}
.about p {
  color: rgba(255, 255, 255, 0.82);
}
.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.about__bg img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.about__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 27, 51, 0.94) 0%, rgba(0, 27, 51, 0.82) 40%, rgba(0, 27, 51, 0.45) 75%, rgba(0, 27, 51, 0.25) 100%);
}
@media (max-width: 768px) {
  .about__overlay {
    background: linear-gradient(180deg, rgba(0, 27, 51, 0.55) 0%, rgba(0, 27, 51, 0.88) 100%);
  }
}

.final-cta {
  background: linear-gradient(180deg, #001B33 0%, #002D50 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 96px 0;
}
.final-cta h2 {
  color: #FFFFFF;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin-bottom: 20px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
}

.site-footer {
  background: #001B33;
  /*color: rgba(255,255,255,0.65);*/
  background-color: #eee;
  color: #333;
  padding: 56px 0 28px;
  font-size: 0.85rem;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
.site-footer__brand {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  color: #FFFFFF;
  font-weight: 700;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.site-footer__links a:hover {
  color: #FFFFFF;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}/*# sourceMappingURL=bridg3_style.css.map */