:root {
  --blue: #1f66b1;
  --blue-deep: #0e3f78;
  --ink: #172033;
  --muted: #667085;
  --line: #dbe3ef;
  --soft: #f4f7fb;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(31, 102, 177, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 90px;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

.home-page {
  --hero-shade: 0;
}

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

html.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.reveal-ready .home-page .hero-full.scroll-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 227, 239, 0.86);
  background: rgba(251, 252, 254, 0.96);
  box-shadow: 0 10px 34px rgba(23, 32, 51, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  margin: 0;
  padding: 0 clamp(24px, 4vw, 64px);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 228px;
  height: auto;
  transition: filter 0.25s ease;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border:0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  position: relative;
  z-index: 22;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 90px;
  color: var(--ink);
  transition: color 0.25s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.mobile-nav-arrow {
  display: none;
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
}

.nav-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav .nav-cta {
  height: 50px;
  border-radius: 999px;
  color: #fff;
}

.nav-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;margin-top: 4px;
  fill: currentColor;
  stroke: none;
}

.nav-cta,
.button-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
}

.nav-cta:active,
.button-primary:active,
.button-secondary:active {
  transform: translateY(1px);
}

.container {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--soft);
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero {
  min-height: calc(100dvh - 90px);
  padding: 44px 0 62px;
}

.hero-full {
  min-height: calc(100dvh - 90px);
  padding: 0;
}

.home-page .hero-full {
  position: sticky;
  top: 90px;
  z-index: 0;
  height: calc(100dvh - 90px);
}

.home-page .hero-full::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  background: rgba(0, 0, 0, var(--hero-shade));
  pointer-events: none;
  content: "";
}

.home-scroll-cover {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: var(--white);
  box-shadow: 0 -28px 80px rgba(4, 13, 24, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
}

.hero-full .hero-grid {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  background: #0f172a;
  box-shadow: var(--shadow);
}

.hero-full .hero-media {
  width: 100%;
  height: 100%;
  min-height: calc(100dvh - 90px);
  border-radius: 0;
  box-shadow: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.05s ease, transform 6.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 24, 43, 0.86), rgba(11, 24, 36, 0.48) 47%, rgba(11, 24, 36, 0.22)), linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(255, 255, 255, 0.08) 42%, rgba(0, 0, 0, 0.08));
  content: "";
}

.hero-copy-set {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  width: min(86vw,900px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-company {
  margin: 0 0 24px;
  font-size: clamp(18px, 1.8vw, 24px);
opacity: .8;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 86px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.hero-copy h1 span {
  display: block;
}

.hero-lead {
  margin: 28px 0 28px;
  font-size: clamp(18px, 1.6vw, 21px);
  letter-spacing: 0.08em;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  pointer-events: auto;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-button:hover {
  background: #fff;
  color: var(--ink);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 26px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.business-list {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.business-stack {
  display: grid;
  gap: 18px;
}

.business-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.business-item .num {
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.business-item h3,
.work-card h3,
.news-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.35;
}

.business-item p,
.work-card p,
.news-card p {
  margin: 0;
  color: var(--muted);
}

.business-image {
  position: sticky;
  top: 106px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.business-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-about {
  position: relative;
  overflow: hidden;
  padding: 112px 0 126px;
  background: var(--soft);
  color: var(--ink);
}

.home-about::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--blue) 8%, transparent), color-mix(in srgb, var(--blue) 2%, transparent));
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.home-about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(58px, 7vw, 112px);
  align-items: center;
}

.home-about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-about-image img {
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.home-about:hover .home-about-image img {
  transform: scale(1.035);
}

.home-about-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size:clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.home-about-heading h2::first-letter {
  color: var(--blue);
}

.home-about-heading p {
  margin: 18px 0 0;
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 800;
}

.home-about-content h3 {
  margin: 26px 0 24px;
  color: var(--blue-deep);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.55;
  letter-spacing: 0;
}

.home-about-content > p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.home-about-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 64px;
  margin-top: 54px;
  padding: 0 28px 0 34px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.home-about-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-about-button:hover {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
}

.home-business {
  padding: 112px 0 126px;
  color: var(--ink);
}

.home-business-layout {
  display: grid;
  gap: 52px;
}

.home-business-side h2 {
  margin: 0;
  color: var(--ink);
  font-size:clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.home-business-side p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.home-business-side {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.business-more-link {
  display: inline-flex;
  width: fit-content;
}

.business-more-link .circle-arrow {
  width: 52px;
  height: 52px;
  border-color: #d8dde6;
  background: transparent;
  color: var(--ink);
}

.business-more-link .circle-arrow svg {
  width: 22px;
  height: 22px;
}

.business-more-link:hover .circle-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateX(4px);
}

.home-business-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(620px, 0.86fr);
  gap: clamp(38px, 5vw, 70px);
}

.business-switch-list {
  border-top: 1px solid #d9dce2;
}

.business-switch-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 40px;
  gap: 34px;
  align-items: center;
  width: 100%;
  min-height: 156px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #d9dce2;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.business-switch-item img {
  width: 120px;
  height: 78px;
  border-radius: var(--radius);
  object-fit: cover;
}

.business-switch-item h3 {
  margin: 0 0 6px;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.business-switch-item p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.business-switch-item .circle-arrow {
  justify-self: end;
  background: transparent;
  border-color: #d8dde6;
  color: var(--ink);
}

.business-switch-item:hover h3,
.business-switch-item.is-active h3 {
  color: var(--blue);
}

.business-switch-item:hover .circle-arrow,
.business-switch-item.is-active .circle-arrow {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateX(4px);
}

.business-switch-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #10233d;
  box-shadow: var(--shadow);
}

.business-switch-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.42s ease, transform 0.6s ease;
}

.business-switch-visual img.is-active {
  opacity: 1;
  transform: scale(1);
}

.business-detail-section {
  background: #fff;
}

.business-detail-list {
  display: grid;
  gap: 110px;
}

.business-anchor-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 8px;
}

.business-anchor-nav a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 22px;
  align-items: center;
  min-height: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.business-anchor-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid #d8dde6;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.business-anchor-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-anchor-nav a:hover {
  color: var(--blue);
}

.business-anchor-nav a:hover .business-anchor-arrow {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateY(3px);
}

.business-detail-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(58px, 7vw, 118px);
  align-items: center;
  scroll-margin-top: 118px;
}

.business-detail-item:nth-child(even) .business-detail-copy {
  order: 2;
}

.business-detail-item:nth-child(even) .business-detail-image {
  order: 1;
}

.business-detail-item:nth-child(even) {
  grid-template-columns: minmax(520px, 1.1fr) minmax(0, 0.9fr);
}

.business-detail-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.business-detail-number {
  display: block;
  margin-bottom: 62px;
  color: var(--blue);
  font-size: clamp(70px,6vw, 118px);
  font-weight: 500;
  line-height: 0.9;
}

.business-detail-copy h2 {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.35;
}

.business-detail-copy > p:not(.business-detail-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.business-detail-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.business-detail-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: inset(0 round var(--radius));
  isolation: isolate;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.work-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.48s ease, filter 0.48s ease;
}

.work-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.work-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 19, 0.18), rgba(5, 11, 19, 0.08) 42%, rgba(5, 11, 19, 0.78));
  content: "";
}

.works-showcase {
  position: relative;
  overflow: hidden;
  padding: 84px 0 74px;
  background:var(--ink);
  color: #fff;
}

.works-showcase-bg {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  filter: saturate(0.86);
}

.works-showcase::after {
  position: absolute;
  inset: 0;
  background: rgba(13, 16, 22, 0.58);
  content: "";
}

.works-showcase-head,
.works-carousel-viewport,
.works-carousel-controls {
  position: relative;
  z-index: 1;
}

.works-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 24px 42px;
}

.works-showcase-title {
  display: block;
}

.works-showcase-title span {
  color: var(--blue);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.works-showcase-title strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.works-top-next,
.works-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.works-top-next {
  width: 54px;
  height: 54px;
}

.works-control {
  width: 34px;
  height: 34px;
}

.works-top-next svg,
.works-control svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.works-top-next:hover,
.works-control:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-1px);
}

.works-carousel-viewport {
  overflow: hidden;
  cursor: grab;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.works-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.works-carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 0 0 clamp(24px, 4vw, 64px);
  transition: transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.works-carousel-viewport.is-dragging .works-carousel-track {
  transition: none;
}

.showcase-card {
  position: relative;
  flex: 0 0 min(480px, 78vw);
  overflow: hidden;
  min-height: min(720px, 70dvh);
  border-radius: var(--radius);
  clip-path: inset(0 round var(--radius));
  isolation: isolate;
  background: #111827;
  color: #fff;
  touch-action: pan-y;
  user-select: none;
  -webkit-touch-callout: none;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  transition: transform 0.32s ease;
}


.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  object-fit: cover;
  -webkit-user-drag: none;
  transition: transform 0.48s ease, filter 0.48s ease;
}

.showcase-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 19, 0.2), rgba(5, 11, 19, 0.1) 45%, rgba(5, 11, 19, 0.76));
  content: "";
}

.showcase-overlay {
  position: absolute;
  z-index: 2;
  inset: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.showcase-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-title-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.showcase-title-row h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.28;
  font-weight: normal;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.showcase-overlay p {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.work-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.work-detail-head {
  margin-bottom: 32px;
}

.work-detail-head h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.2;
}

.work-detail-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.work-detail-main {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #eef2f7;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.work-detail-zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.work-detail-zoom:hover {
  background: var(--blue-deep);
}

.work-detail-zoom svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-detail-main.is-dragging {
  cursor: grabbing;
}

.work-detail-main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  -webkit-user-drag: none;
  opacity: 1;
  transition: opacity 0.32s ease;
}

.work-detail-main img.is-changing {
  opacity: 0;
}

.work-detail-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(12, 28, 48, 0.48);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.work-detail-arrow:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.work-detail-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-detail-arrow-prev {
  left: 22px;
}

.work-detail-arrow-next {
  right: 22px;
}

.work-thumbs {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.work-thumbs button {
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.work-thumbs button:hover,
.work-thumbs button.is-active {
  border-color: var(--blue);
}

.work-thumbs button:hover {
  transform: translateY(-2px);
}

.work-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-detail-back {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px clamp(16px, 3vw, 42px);
  background: rgba(5, 14, 25, 0.94);
  color: #fff;
}

.work-lightbox.is-open {
  display: grid;
}

.work-lightbox-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.work-lightbox-title h2 {
  margin: 0 0 4px;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.3;
}

.work-lightbox-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.work-lightbox-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-lightbox-button,
.work-lightbox-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.work-lightbox-button {
  width: 42px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
}

.work-lightbox-button:hover,
.work-lightbox-arrow:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.work-lightbox-stage {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: grab;
  touch-action: none;
}

.work-lightbox-stage.is-dragging {
  cursor: grabbing;
}

.work-lightbox-stage.is-swiping .work-lightbox-image {
  transition: opacity 0.22s ease;
}

.work-lightbox-stage.is-sliding .work-lightbox-image {
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-lightbox-stage.is-resetting .work-lightbox-image {
  transition: none !important;
}

.work-lightbox-image {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: translate3d(var(--lightbox-x, 0px), var(--lightbox-y, 0px), 0) scale(var(--lightbox-scale, 1));
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.work-lightbox-image-next {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--lightbox-next-x, 100vw), 0, 0) scale(1);
}

.work-lightbox.has-lightbox-next .work-lightbox-image-next {
  opacity: 1;
}

.work-lightbox-image.is-changing {
  opacity: 0;
}

.work-lightbox-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}

.work-lightbox-arrow svg,
.work-lightbox-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-lightbox-prev {
  left: 18px;
}

.work-lightbox-next {
  right: 18px;
}

.work-lightbox-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.work-lightbox-thumbs button {
  flex: 0 0 86px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.work-lightbox-thumbs button.is-active {
  border-color: var(--blue);
}

.work-lightbox-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.works-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
}

.works-dots {
  display: flex;
  align-items: center;
  gap: 14px;
}

.works-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  opacity: 0.94;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.works-dots button.is-active {
  width: 48px;
  background: var(--blue);
}

.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.company-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: stretch;
}

.company-highlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: #fff;
}

.company-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.company-page {
  background: #fff;
}

.company-page .container {
  display: grid;
  gap: 86px;
}

.company-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.company-section-heading p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
}

.company-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.company-message-body {
  display: grid;
  gap: 28px;
  padding-top: 8px;
}

.company-message-lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.35;
}

.company-message-text {
  max-width: 820px;
  color: var(--ink);
}

.company-message-text p {
  margin: 0 0 18px;
  line-height: 2;
}

.company-signature {
  padding-top: 14px;
  color: var(--blue-deep);
  font-weight: 800;
  text-align: right;
}

.company-about-copy {
  background: var(--soft);
}

.company-about-copy:hover .home-about-image img {
  transform: scale(1.035);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.info-table th,
.info-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 180px;
  color: var(--blue-deep);
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.news-meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.home-news {
  padding: 112px 0 126px;
  background: #fff;
  color: var(--ink);
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(58px, 8vw, 128px);
  align-items: stretch;
}

.home-news-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.home-news-side h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.home-news-side p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.home-news-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #d8dde6;
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.circle-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-news-list {
  border-top: 1px solid #d9dce2;
}

.home-news-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 40px;
  gap: 46px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid #d9dce2;
  color: var(--ink);
}

.home-news-item time {
  font-size: 16px;
  font-weight: 700;
}

.home-news-item h3 {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: normal;
  line-height: 1.45;
}

.home-news-item .circle-arrow {
  justify-self: end;
  opacity: 1;
  transform: translateX(0);
}

.home-news-item:hover .circle-arrow,
.home-news-more:hover .circle-arrow {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  opacity: 1;
  transform: translateX(0);
}

.home-news-item:hover h3,
.home-news-more:hover {
  color: var(--blue);
}

.news-page-list {
  width: 100%;
}

.news-page-list .sample-label {
  margin-left: 14px;
  vertical-align: middle;
}

.sample-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(31, 102, 177, 0.28);
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #10233d;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  color: #fff;
}

.page-hero-en {
  margin: 0 0 16px;
  color: #fff;
  font-size:clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
}

.page-hero h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.45;
}

.page-hero-content > :not(.page-hero-en) {
  max-width: 780px;
}

.page-hero-content p:not(.page-hero-en) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.form-card,
.article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 32px;
}

.contact-card p {
  margin: 0 0 18px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-deep);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(31, 102, 177, 0.18);
  border:solid 1px var(--blue)!important;
  background: #fff!important;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  gap: 28px;
}

.contact-dialog[hidden] {
  display: none;
}

.contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 38, .58);
  backdrop-filter: blur(6px);
}

.contact-dialog__panel {
  position: relative;
  width: min(100%, 460px);
  padding: 42px 34px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  text-align: center;
}

.contact-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.contact-dialog__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.contact-dialog__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.contact-dialog__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-dialog__panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.contact-dialog__panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-dialog__button {
  margin-top: 26px;
  width: 100%;
}

body.is-dialog-open {
  overflow: hidden;
}

.contact-page-section .container {
  width: min(100%, 1000px);
}

.contact-page-section .form-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.contact-form .field label {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.required-mark {
  color: #d90000;
}

.contact-form .field input,
.contact-form .field textarea {
  background: #e9e9e9;
}

.contact-form .field textarea {
  min-height: 180px;
}

.privacy-confirm {
  display: grid;
  gap: 22px;
  margin-top: 12px;
}

.privacy-confirm-box {
  padding: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 80px);
  border: 1px solid #d7dbe2;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.privacy-confirm-box h2 {
  display: inline-block;
  margin: 0 0 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.5;
}

.privacy-confirm-box h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 17px;
}

.privacy-confirm-box p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.privacy-check {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--blue);
}

.article {
  max-width: 860px;
  margin: 0 auto;
}

.news-detail-section {
  background: #fff;
}

.news-detail-article {
  max-width: 1000px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 24px;
}

.privacy-section {
  background: #fff;
}

.privacy-article {
  max-width: 1000px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 24px;
}

.privacy-article > p:first-child {
  margin-top: 0;
}

.privacy-article ul {
  margin: 0 0 28px;
  padding-left: 1.4em;
  color: var(--ink);
  line-height: 2;
}

.privacy-article li + li {
  margin-top: 6px;
}

.article h2 {
  margin: 38px 0 12px;
  font-size: 28px;
}

.article p {
  color: #3d4758;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.site-contact-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: linear-gradient(100deg, var(--blue), var(--blue-deep));
  color: #fff;
  text-align: center;
}


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

.contact-cta-heading h2 {
  margin: 0;
  color: #fff;
  font-size:clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.contact-cta-heading p {
  margin: 18px 0 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.contact-cta-lead {
  margin:12px auto 24px;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
}

.contact-cta-actions {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(280px, 420px);
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.contact-cta-phone {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  color: #fff;
  text-align: left;
}

.contact-cta-phone svg {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  fill: #fff;
}

.contact-cta-phone span {
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.contact-cta-phone small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-cta-button {
  display: grid;
  grid-template-columns: 28px 1fr 22px;
  align-items: center;
  min-height: 78px;
  padding: 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.contact-cta-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-cta-button svg:last-child {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-cta-button:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-2px);
}

.site-footer {
  background: #101b2d;
  color: #fff;
}

.footer-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-top-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-top-link:hover {
  background: rgba(31, 102, 177, 0.22);
  color: #fff;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap:0 clamp(58px, 8vw, 116px);
  padding-top: 90px;
  padding-bottom: 32px;
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-right: clamp(34px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-brand {
  display: inline-flex;
}

.footer-logo {
  width: 250px;
  filter: brightness(0) invert(1);
}

.footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 58px clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-nav-group {
  display: grid;
  gap: 16px;
}

.footer-nav-group h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.footer-nav-group a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-group a:hover {
  color: #fff;
  transform: translateX(3px);
}

.copyright {
  grid-column: 1 / -1;
  align-self: end;
  margin: 54px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 70px;
  }

  .header-inner {
    height: 70px;
    padding: 0 20px;
  }

  .brand {
    position: relative;
    z-index: 24;
  }

  .brand img {
    width: 220px;
  }

  .nav-toggle {
    display: block;
    border-radius: 999px;
    background:var(--blue);
    color: var(--white);
    box-shadow: none;
  }

  body.menu-open .site-header {
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .header-inner {
    position: relative;
    z-index: 23;
  }

  body.menu-open .brand img {
    filter: brightness(0) invert(1);
  }

  body.menu-open .nav-toggle {
    border-color: #fff;
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    box-shadow: none;
  }

  body.menu-open .nav-toggle span {
    width: 22px;
    height: 2px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    min-height: 100dvh;
    padding: 112px 26px 40px;
    background: var(--blue);
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    column-gap: 16px;
    align-items: center;
    height: auto;
    min-height: 56px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
  }

  .site-nav a::before {
    display: none;
  }

  .site-nav a > span,
  .site-nav a:not(.nav-cta) {
    min-width: 0;
  }

  .site-nav a[data-en]::after {
    display: none;
  }

  .mobile-nav-arrow {
    display: block;
    grid-column: 2 / 3;
    justify-self: end;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;font-weight: 800;
    height: auto;
    margin-top: auto;
    min-height: 66px;
    border-bottom: 0;
    border-color: #fff;
    background: #fff;
    color: var(--blue);
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
  }

  body.menu-open .site-nav a {
    color: #fff;
  }

  .site-nav a[aria-current="page"] {
    color: #fff;
  }

  .site-nav .nav-cta::before,
  .site-nav .nav-cta[data-en]::after {
    display: none;
  }

  .site-nav .nav-cta svg {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 0;
    fill: currentColor;
    stroke: none;
  }

  .site-nav .nav-cta span {
    display: inline-block;
    color: var(--blue);
    line-height: 1;
  }

  .site-header .site-nav .nav-cta,
  .site-nav .nav-cta[aria-current="page"] {
    color: var(--blue);
  }

  body.menu-open .site-nav .nav-cta {
    border-color: #fff;
    background: #fff;
    color: var(--blue);
  }

  body.menu-open .site-nav .nav-cta,
  body.menu-open .site-nav .nav-cta span,
  body.menu-open .site-nav .nav-cta svg {
    color: var(--blue);
  }

  body.menu-open .site-header .nav-cta:hover {
    border-color: #fff;
    background: #fff;
    color: var(--blue);
    transform: none;
  }

  .hero-grid,
  .business-list,
  .company-panel,
  .company-section,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .company-page .container {
    gap: 62px;
  }

  .company-section {
    gap: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-full {
    min-height: calc(100dvh - 70px);
    padding: 0;
  }

  .home-page .hero-full {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-full .hero-media {
    min-height: calc(100dvh - 70px);
  }

  .business-image {
    position: static;
  }

  .home-about {
    padding: 82px 0 92px;
  }

  .home-about::before {
    width: 66%;
  }

  .home-about-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-about-image img {
    aspect-ratio: 16 / 9;
  }

  .home-about-content h3 {
    margin-top: 36px;
  }

  .home-about-button {
    margin-top: 36px;
  }

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

  .works-showcase {
    padding: 72px 0 60px;
  }

  .works-showcase-head {
    align-items: center;
    padding-bottom: 32px;
  }

  .showcase-card {
    flex-basis: min(430px, 82vw);
    min-height: min(620px, 66dvh);
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-business {
    padding: 82px 0 92px;
  }

  .home-business-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-business-side {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .home-business-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .business-switch-visual {
    aspect-ratio: 16 / 9;
    order: -1;
  }

  .business-switch-item {
    grid-template-columns: 108px minmax(0, 1fr) 36px;
    gap: 24px;
  }

  .business-switch-item img {
    width: 108px;
    height: 72px;
  }

  .business-detail-list {
    gap: 78px;
  }

  .business-anchor-nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .business-anchor-nav a {
    min-height: 82px;
  }

  .business-detail-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .business-detail-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .business-detail-item:nth-child(even) .business-detail-copy,
  .business-detail-item:nth-child(even) .business-detail-image {
    order: initial;
  }

  .business-detail-number {
    margin-bottom: 34px;
  }

  .home-news {
    padding: 82px 0 92px;
  }

  .home-news-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-news-side {
    min-height: 0;
    gap: 34px;
  }

  .home-news-item {
    grid-template-columns: 150px minmax(0, 1fr) 32px;
    gap: 24px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 70px;
    padding-bottom: 58px;
  }

  .footer-brand-block {
    min-height: 0;
    padding-right: 0;
    padding-bottom: 44px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 38px 48px;
  }

  .copyright {
    grid-column: 1 / 2;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container,
  .wide-container {
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 190px;
  }

  .section {
    padding: 66px 0;
  }

  .hero-media,
  .page-hero,
  .page-hero-content {
    min-height: 200px;
  }

  .hero-copy {
    width: min(88vw, 560px);
  }

  .hero-copy h1 {
    font-size: clamp(38px, 5vw, 76px);
    letter-spacing: normal;
    font-weight: 900;
  }

  .home-about {
    padding: 66px 0 74px;
  }

  .home-about::before {
    width: 86%;
  }

  .home-about-heading p {
    font-size: 18px;margin-top:8px;
  }

  .home-about-content h3 {
    margin: 20px 0 12px;
    font-size: 24px;
  }

  .home-about-content > p {
    line-height: 1.9;
  }

  .home-about-button {
    min-height: 52px;
    margin-top: 30px;
    padding: 0 22px 0 26px;
    font-size: 16px;
  }

  .business-item {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .home-business {
    padding: 66px 0 74px;
  }


  .home-business-side p {
    font-size: 18px;margin-top:8px;
  }

  .home-business-side {
    align-items: center;
  }

  .business-more-link .circle-arrow {
    width: 44px;
    height: 44px;
  }

  .business-switch-item {
    grid-template-columns: 82px minmax(0, 1fr) 32px;
    gap: 16px;
    min-height: 112px;
    padding: 18px 0;
  }

  .business-switch-item img {
    width: 82px;
    height: 58px;
  }

  .business-switch-item h3 {
    font-size: 24px;font-weight: 700;
  }

  .business-detail-list {
    gap: 38px;
  }

  .business-anchor-nav a {
    grid-template-columns: minmax(0, 1fr) 44px;
    font-size: 16px;
  }

  .business-anchor-arrow {
    width: 44px;
    height: 44px;
  }

  .business-detail-kicker {
    font-size: 13px;
  }

  .business-detail-number {
    margin-bottom: 26px;
  }

  .business-detail-copy h2 {
    margin-bottom: 0;
  }

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

  .work-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-detail-arrow {
    width: 42px;
    height: 42px;
  }

  .work-detail-arrow-prev {
    left: 12px;
  }

  .work-detail-arrow-next {
    right: 12px;
  }

  .work-detail-zoom {
    width: 40px;
    height: 40px;
  }
.work-detail-head {
    margin-bottom: 22px;
}
  .work-detail-zoom svg {
    width: 22px;
    height: 22px;
  }

  .work-lightbox {
    gap: 12px;
    padding: 16px 14px;
  }

  .work-lightbox-head {
    grid-template-columns: 1fr;
  }

  .work-lightbox-tools {
    justify-content: flex-end;
  }

  .work-lightbox-button {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .work-lightbox-arrow {
    width: 44px;
    height: 44px;
  }

  .work-lightbox-prev {
    left: 8px;
  }

  .work-lightbox-next {
    right: 8px;
  }

  .work-lightbox-thumbs button {
    flex-basis: 70px;
  }

  .works-showcase {
    padding: 58px 0 48px;
  }

  .works-showcase-head {
    padding-right: 18px;
    padding-left: 18px;
  }



  .works-showcase-title strong {
    margin-top: 8px;
    font-size: 18px;
  }

  .works-top-next {
    width: 46px;
    height: 46px;
  }

  .works-carousel-track {
    gap: 16px;
    padding-left: 18px;
  }

  .showcase-card {
    flex-basis: 82vw;
    min-height: 520px;
  }

  .showcase-overlay {
    inset: 22px 18px 20px;
  }

  .info-table th,
  .info-table td {
    padding: 12px 0;
  }

  .info-table th {
    width: 100px;
  }

  .article-nav {
    flex-direction: column;
  }

  .site-contact-cta {
    padding: 66px 0 74px;
  }

  .site-contact-cta::before {
    right: -34vw;
    width: 92vw;
    opacity: 0.1;
  }


  .contact-cta-heading p {
    font-size: 18px;
  }

  .contact-cta-lead {
    margin: 18px auto 34px;
    font-size: 15px;
  }

  .contact-cta-actions {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-cta-phone {
    grid-template-columns: 34px 1fr;
    margin: 0 auto;
  }

  .contact-cta-phone svg {
    width: 30px;
    height: 30px;
  }


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

  .contact-cta-button {
    grid-template-columns: 26px 1fr 20px;
    min-height: 62px;
    padding: 0 24px;
    font-size: 16px;width: 70%;
        margin: auto;
  }

  .home-news {
    padding: 66px 0 74px;
  }


  .home-news-side p {
    font-size: 18px;margin-top: 8px;
  }

  .home-news-item {
    grid-template-columns: 1fr 34px;
    gap: 14px;
    min-height: 112px;
    padding: 20px 0;
  }

  .home-news-item time {
    grid-column: 1 / 2;
    font-size: 14px;
  }

  .home-news-item h3 {
    grid-column: 1 / 2;
    font-size: 18px;
  }

  .home-news-item .circle-arrow {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    opacity: 1;
    transform: none;
  }

  .footer-top-link {
    min-height: 64px;
    font-size: 14px;
  }

  .footer-layout {
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 46px;
  }

  .footer-brand-block {
    gap: 14px;
    padding-bottom: 34px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .footer-nav-group {
    gap: 12px;
  }


  .footer-logo {
    width: 210px;
  }
.work-detail-head h2{font-size:22px;}
  .copyright {
    margin-top: 10px;
    text-align: center;
  }
}
