@charset "UTF-8";

:root {
  --hd-ink: #0a1943;
  --hd-blue-950: #0a1943;
  --hd-blue-900: #0a1943;
  --hd-blue-800: #204590;
  --hd-blue-700: #2a5299;
  --hd-blue-600: #155aa0;
  --hd-blue-400: #008ed3;
  --hd-surface: #f8fbff;
  --hd-surface-alt: #dfe9f5;
  --hd-line: #ccd3e7;
  --hd-grad: linear-gradient(112deg, #00197b 0%, #0053b6 52%, #008ed3 100%);
  --hd-radius: 16px;
  --hd-width: 1280px;
  --hd-ease: cubic-bezier(.22, 1, .36, 1);
  --hd-section-space: 160px;
  --hd-section-gap: 64px;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body.hdPage {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--hd-surface);
  color: var(--hd-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

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

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

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

.hdPage a:focus-visible,
.hdPage button:focus-visible {
  outline: 2px solid #7ee9ff;
  outline-offset: 4px;
}

.hdPage button {
  color: inherit;
  font: inherit;
}

.hdPage ::selection {
  background: var(--hd-blue-950);
  color: #fff;
}

.hd-sp-br {
  display: none;
}

.hd-container {
  width: min(var(--hd-width), calc(100% - 80px));
  margin-inline: auto;
}

.hd-anchor {
  scroll-margin-top: 80px;
}

/* Header */
.hd-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  min-height: 96px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 40px 16px;
  isolation: isolate;
  transition: min-height .35s ease, padding .35s ease;
}

.hd-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      #011c7f 0%,
      rgba(1, 28, 127, 0) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}

.hd-header.is-scrolled {
  min-height: 72px;
  padding-block: 10px;
}

.hd-header.is-scrolled::before {
  opacity: 1;
}

.hd-header__logo {
  position: relative;
  z-index: 2;
  width: 60px;
  aspect-ratio: 59.9392 / 71.5779;
  transition: width .35s ease;
}

.hd-header__logo img {
  aspect-ratio: 59.9392 / 71.5779;
  height: 72px;
  object-fit: contain;
  transition: height .35s ease;
}

.hd-header.is-scrolled .hd-header__logo {
  width: 43px;
}

.hd-header.is-scrolled .hd-header__logo img {
  height: 52px;
}

.hd-header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
}

.hd-header__nav>a:not(.hd-button) {
  position: relative;
  padding-block: 16px;
}

.hd-header__nav>a:not(.hd-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .35s var(--hd-ease);
}

.hd-header__nav>a:hover::after,
.hd-header__nav>a:focus-visible::after,
.hd-header__nav>a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hd-header__nav>a.is-current::after {
  background: #73e6ff;
}

.hd-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: linear-gradient(90deg, #00197b, #0042bd);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s var(--hd-ease), box-shadow .3s ease, background-color .3s ease;
}

.hd-button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transition: transform .65s var(--hd-ease);
}

.hd-button:hover,
.hd-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 18, 83, .24);
}

.hd-button:hover::before,
.hd-button:focus-visible::before {
  transform: translateX(110%) skewX(-18deg);
}

.hd-header__contact {
  min-width: 190px;
  font-family: "Barlow", sans-serif;
}

.hd-header__menu {
  display: none;
}

/* Hero */
.hd-top-flow {
  position: relative;
  background: var(--hd-surface);
  isolation: isolate;
}

.hd-top-flow::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 1480px;
  background-color: #dff6ff;
  background-image: url("common/img/hd_bg_color_02.png"), url("common/img/hd_bg_color_01.png"), url("common/img/hd_bg_color_01.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply, multiply, normal;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, .86) 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, .86) 72%, transparent 100%);
}

.hd-top-flow>* {
  position: relative;
  z-index: 1;
}

.hd-hero {
  position: relative;
  height: clamp(720px, 100svh, 900px);
  min-height: 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.hd-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .25;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 55%);
  mask-image: linear-gradient(to bottom, #000, transparent 55%);
}

.hd-hero__glow {
  position: absolute;
  z-index: -1;
  top: -360px;
  left: -160px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: rgba(61, 205, 255, .28);
  filter: blur(90px);
  animation: hd-glow 9s ease-in-out infinite alternate;
}

.hd-hero__visual {
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  position: absolute;
  top: 50%;
  right: max(10.35vw, 72px);
  left: max(10.35vw, 72px);
  height: min(660px, calc(100% - 160px));
  overflow: hidden;
  border-radius: var(--hd-radius);
  border: 0;
  background: #0c70b5;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(0, calc(-50% + 45px), 0) scale(.98);
  transition: opacity 1s ease .65s, transform 1.25s var(--hd-ease) .65s;
}

.hdPage.is-ready .hd-hero__visual {
  opacity: 1;
  transform: translate3d(0, -50%, 0) scale(1);
}

.hd-hero__slides,
.hd-hero__slide {
  position: absolute;
  inset: 0;
}

.hd-hero__slide {
  margin: 0;
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  visibility: hidden;
  mix-blend-mode: normal;
}

.hd-hero__slide.is-active,
.hd-hero__slide.is-leaving,
.hd-hero__slide.is-preparing {
  visibility: visible;
}

.hd-hero__slide.is-leaving {
  z-index: 1;
  clip-path: inset(0);
}

.hd-hero__slide.is-preparing {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}

.hd-hero__slide.is-active {
  z-index: 2;
  clip-path: inset(0);
  transition: clip-path 1.8s cubic-bezier(.76, 0, .24, 1);
}

.hd-hero__slide img {
  height: calc(100% + 50px);
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.12);
  filter: none;
  backface-visibility: hidden;
  will-change: transform;
}

.hd-hero__slide.is-active img,
.hd-hero__slide.is-leaving img {
  animation: hd-hero-zoom-out 10s linear both;
}

.hd-hero__slide:nth-child(2) img,
.hd-hero__slide:nth-child(3) img,
.hd-hero__slide:nth-child(4) img {
  object-position: 50% 50%;
}

.hd-hero__copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: max(5.05vw, 40px);
  transform: translateY(-50%);
  color: #fff;
}

.hd-hero__copy h1 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(76px, 8.3vw, 120px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hd-hero__copy h1 span {
  display: block;
  overflow: visible;
  margin-bottom: -.12em;
  padding-bottom: .12em;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-32px);
  opacity: 0;
}

.hdPage.is-ready .hd-hero__copy h1 span {
  animation: hd-copy-in 1.05s var(--hd-ease) forwards;
}

.hdPage.is-ready .hd-hero__copy h1 span:nth-child(2) {
  animation-delay: .16s;
}

.hd-hero__copy>p {
  margin: 46px 0 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease 1.18s, transform .8s var(--hd-ease) 1.18s;
}

.hdPage.is-ready .hd-hero__copy>p {
  opacity: 1;
  transform: translateY(0);
}

.hd-hero__scroll {
  position: absolute;
  z-index: 5;
  right: 3.45vw;
  bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
}

.hdPage .hd-hero__scroll,
.hdPage .hd-hero__scroll:visited {
  color: #fff;
}

.hd-hero__scroll i {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  font-style: normal;
  animation: hd-scroll 1.8s ease-in-out infinite;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.hd-hero__scroll:hover i,
.hd-hero__scroll:focus-visible i {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

/* Common headings */
.hd-section-title {
  position: relative;
  z-index: 1;
  color: var(--hd-blue-950);
}

.hd-section-title>p {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.hd-section-title h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(68px, 7vw, 100px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}

.hd-section-title--center {
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(6px);
  transition: opacity .8s ease, transform 1s var(--hd-ease), filter 1s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Purpose */
.hd-purpose {
  position: relative;
  overflow: hidden;
  padding: 120px 0 200px;
  background: transparent;
  color: var(--hd-blue-950);
}

.hd-purpose::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(10, 25, 67, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 120px rgba(10, 25, 67, .018), 0 0 0 240px rgba(10, 25, 67, .012);
}

.hd-purpose__gallery {
  --purpose-gap: 16px;
  --purpose-half-gap: 8px;
  overflow: hidden;
  margin-bottom: 120px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3.5vw, #000 calc(100% - 3.5vw), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3.5vw, #000 calc(100% - 3.5vw), transparent 100%);
}

.hd-purpose__track,
.hd-purpose__group {
  display: flex;
  width: max-content;
  gap: var(--purpose-gap);
}

.hd-purpose__track {
  animation: hd-purpose-marquee 30s linear infinite;
  will-change: transform;
}

.hd-purpose__gallery figure {
  width: clamp(270px, 23vw, 350px);
  height: 394px;
  flex: none;
  margin: 0;
  overflow: hidden;
  border-radius: var(--hd-radius);
}

.hd-purpose__gallery img {
  height: 118%;
  object-fit: cover;
  transform: translateY(-4%);
  filter: saturate(.88) contrast(1.04);
}

.hd-purpose__gallery figure:first-child img {
  width: 105%;
  max-width: none;
  object-position: left center;
}

.hd-purpose__gallery figure:nth-child(2) img,
.hd-purpose__gallery figure:nth-child(4) img {
  height: 100%;
  transform: none;
}

.hd-purpose__content {
  position: relative;
  z-index: 2;
}

.hd-purpose__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 74px;
}

.hd-purpose__text h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.55;
  letter-spacing: .01em;
  text-wrap: balance;
}

.hd-purpose__text>div {
  max-width: 615px;
  text-wrap: pretty;
}

.hd-purpose__text p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 2;
}

/* Vision sticky parallax */
.hd-vision {
  position: relative;
  height: 208vh;
  min-height: 1480px;
  background: #0a1943;
}

.hd-vision__sticky {
  --vision-progress: 0;
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hd-vision__bg,
.hd-vision__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hd-vision__bg {
  --vision-inset-y: 8%;
  --vision-inset-x: 22%;
  --vision-radius: 16px;
  clip-path: inset(var(--vision-inset-y) var(--vision-inset-x) 0 var(--vision-inset-x) round var(--vision-radius));
  will-change: clip-path;
}

.hd-vision__bg img {
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.10 - var(--vision-progress) * .08)) translate3d(0, calc((.5 - var(--vision-progress)) * 14px), 0);
  filter: saturate(calc(.9 + var(--vision-progress) * .18));
  will-change: transform;
}

.hd-vision__shade {
  z-index: -1;
  background: rgba(26, 79, 138, .6);
  mix-blend-mode: multiply;
}

.hd-vision__content {
  position: relative;
  top: -1vh;
  width: min(860px, calc(100% - 48px));
  color: #fff;
  text-align: center;
  opacity: clamp(0, calc(var(--vision-progress) * 3), 1);
  transform: translate3d(0, calc((1 - var(--vision-progress)) * 65px), 0);
  will-change: opacity, transform;
}

.hd-vision .hd-section-title {
  color: #fff;
}

.hd-vision__content h3 {
  margin: 18px 0 30px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.45;
  text-wrap: balance;
}

.hd-vision__content>p {
  margin: 0;
  padding-bottom: 240px;
  font-size: 18px;
  line-height: 2;
  text-wrap: pretty;
}

.hd-vision__marquee {
  --vision-marquee-gap: .28em;
  --vision-marquee-half-gap: .14em;
  position: absolute;
  bottom: 36px;
  left: 0;
  width: 100%;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: clamp(96px, 10.5vw, 150px);
  font-weight: 500;
  letter-spacing: -.025em;
  white-space: nowrap;
  mix-blend-mode: difference;
  opacity: 1;
}

.hd-vision__marquee-track {
  display: flex;
  width: max-content;
  align-items: flex-end;
  gap: var(--vision-marquee-gap);
  animation: hd-vision-marquee 28s linear infinite;
  will-change: transform;
}

.hd-vision__marquee span {
  display: block;
  flex: none;
  padding-bottom: .1em;
  line-height: .92;
}

/* Group */
.hd-group {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background: var(--hd-surface);
  color: var(--hd-blue-950);
}

.hd-group::before {
  content: "GROUP";
  position: absolute;
  top: 430px;
  left: -35px;
  color: transparent;
  font-family: "Barlow", sans-serif;
  font-size: 230px;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(10, 25, 67, .05);
}

.hd-group__intro {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  margin-top: 68px;
}

.hd-group__intro-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.hd-group__intro h3 {
  width: 100%;
  margin: 0;
  font-size: 32px;
  line-height: 1.5;
  text-wrap: balance;
}

.hd-group__intro-text {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.hd-group__intro p {
  margin: 0;
  line-height: 2;
}

.hd-synergy {
  position: relative;
  height: 430px;
}

.hd-synergy::before,
.hd-synergy::after {
  content: "";
  position: absolute;
  top: 202px;
  left: 50%;
  width: 0;
  height: 1px;
  transform-origin: left;
  background: rgba(10, 25, 67, .42);
  opacity: 0;
  transition: width 1s var(--hd-ease), opacity .5s ease;
}

.hd-synergy::before {
  transform: rotate(55deg);
}

.hd-synergy::after {
  transform: rotate(125deg);
}

.hd-synergy.is-visible::before,
.hd-synergy.is-visible::after {
  width: 210px;
  opacity: 1;
  transition-delay: .15s;
}

.hd-synergy__ring {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 194px;
  height: 194px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  border: 1px solid rgba(10, 25, 67, .2);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 6px rgba(10, 25, 67, .035), 0 18px 42px rgba(10, 25, 67, .1);
  opacity: 0;
  transform: translateY(18px) scale(.88);
  transition: opacity .55s ease, transform .68s var(--hd-ease), box-shadow .35s ease;
}

.hd-synergy.is-visible .hd-synergy__ring {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hd-synergy.is-visible .hd-synergy__ring--top {
  transition-delay: .05s;
}

.hd-synergy.is-visible .hd-synergy__ring--left {
  transition-delay: .12s;
}

.hd-synergy.is-visible .hd-synergy__ring--right {
  transition-delay: .22s;
}

.hd-synergy__ring:hover {
  box-shadow: inset 0 0 0 6px rgba(10, 25, 67, .05), 0 24px 52px rgba(10, 25, 67, .15);
}

.hd-synergy__ring img {
  width: auto;
  max-width: 68px;
  max-height: 76px;
  object-fit: contain;
}

.hd-synergy__ring--top img {
  width: 55px;
  height: 66px;
}

.hd-synergy__ring--left img {
  width: 62px;
  height: 72px;
}

.hd-synergy__ring--right img {
  width: 54px;
  height: 73px;
}

.hd-synergy__ring small {
  color: var(--hd-blue-950);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.hd-synergy__ring--top {
  top: 0;
  left: 153px;
}

.hd-synergy__ring--left {
  bottom: 0;
  left: 5px;
  animation-delay: -.8s;
}

.hd-synergy__ring--right {
  right: 5px;
  bottom: 0;
  animation-delay: -1.6s;
}

.hd-synergy__label {
  position: absolute;
  z-index: 3;
  bottom: 122px;
  left: 50%;
  width: 190px;
  transform: translateX(-50%);
  color: var(--hd-blue-950);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: opacity .6s ease .7s;
}

.hd-synergy.is-visible .hd-synergy__label {
  opacity: 1;
}

.hd-synergy {
  width: min(720px, 100%);
  height: auto;
  margin: 40px auto 0;
}

.hd-synergy::before,
.hd-synergy::after {
  content: none;
  display: none;
}

.hd-synergy>img {
  width: 100%;
  height: auto;
}

.hd-group__cards {
  display: grid;
  gap: 32px;
  margin-top: 112px;
}

.hd-company-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 64px;
  align-items: start;
  padding: 48px 80px;
  border: 1px solid transparent;
  border-radius: var(--hd-radius);
  background: #fff;
  box-shadow: none;
  transition: border-color .3s ease;
}

.hd-company-card:hover {
  border-color: transparent;
  background: #fff;
  box-shadow: none;
}

.hd-company-card__logo {
  display: grid;
  min-height: 160px;
  place-items: start center;
}

.hd-company-card__logo img {
  width: auto;
  max-width: 120px;
  max-height: 160px;
  object-fit: contain;
}

.hd-company-card:first-child .hd-company-card__logo img {
  width: 120px;
  height: 139px;
}

.hd-company-card:nth-child(2) .hd-company-card__logo img {
  width: 120px;
  height: 160px;
}

.hd-company-card__body {
  min-width: 0;
}

.hd-company-card__header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.hd-company-card__eyebrow {
  margin: 0 !important;
  color: var(--hd-blue-950);
  font-size: 14px;
  font-weight: 700;
}

.hd-company-card__wordmark {
  width: auto;
  height: auto;
  max-width: 100%;
}

.hd-company-card:first-child .hd-company-card__wordmark {
  width: 283px;
}

.hd-company-card:nth-child(2) .hd-company-card__wordmark {
  width: 490px;
}

.hd-company-card h3 {
  margin: 24px 0 12px;
  font-size: 20px;
  line-height: 1.5;
}

.hd-company-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  max-width: none;
}

.hd-button--light {
  min-height: 52px;
  margin-top: 24px;
  background: linear-gradient(184deg, #0094d4 0%, #0b4093 106.21%);
  color: #fff !important;
  font-size: 15px;
}

.hd-button--light img {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
  filter: brightness(0) invert(1);
}

.hd-button--light:hover img,
.hd-button--light:focus-visible img {
  transform: translateX(4px);
}

/* Company */
.hd-company {
  position: relative;
  overflow: hidden;
  padding: 88px 0 160px;
  background: var(--hd-surface-alt);
  color: var(--hd-blue-950);
}

.hd-company::after {
  content: "";
  position: absolute;
  right: -20vw;
  bottom: -50vw;
  width: 90vw;
  height: 90vw;
  border: 1px solid rgba(10, 25, 67, .055);
  border-radius: 50%;
}

.hd-company__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 64px;
}

.hd-company__photo {
  position: relative;
  height: 674px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--hd-radius);
}

.hd-company__photo-main {
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: none;
  filter: saturate(.9) contrast(1.03);
}

.hd-company__photo:hover .hd-company__photo-main {
  transform: none;
}

.hd-company__table {
  margin: 0;
}

.hd-company__table>div {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 30px 32px;
  border-bottom: 1px solid var(--hd-line);
  font-size: 15px;
  line-height: 1.7;
  box-shadow: none;
  transition: border-color .25s ease;
}

.hd-company__table>div:hover {
  background: transparent;
  border-color: var(--hd-line);
  box-shadow: none;
}

.hd-company__table dt {
  font-weight: 700;
}

.hd-company__table dd {
  margin: 0;
}

/* Blog banner */
.hd-blog-banner {
  width: 380px;
  max-width: 100%;
  order: -1;
}

.hd-blog-banner a {
  display: block;
  width: 100%;
  transition: opacity .25s ease;
}

.hd-blog-banner a:hover,
.hd-blog-banner a:focus-visible {
  opacity: .82;
}

/* Footer */
.hd-footer {
  position: relative;
  z-index: 2;
  padding: 72px 0 48px;
  background: #0a1943;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
}

.hd-footer__inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
}

.hd-footer__left {
  display: flex;
  flex-direction: column;
}

.hd-footer__meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 30px;
}

.hd-footer__logo {
  display: block;
  width: 60px;
  aspect-ratio: 59.9392 / 71.5779;
}

.hd-footer__logo img {
  aspect-ratio: 59.9392 / 71.5779;
  height: 72px;
  object-fit: contain;
}

.hd-footer address {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  font-style: normal;
}

.hd-footer__right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
}

.hd-footer nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.hd-footer nav>a:not(.hd-footer__contact) {
  color: #fff;
  transition: opacity .25s ease;
}

.hd-footer nav>a:not(.hd-footer__contact):hover,
.hd-footer nav>a:not(.hd-footer__contact):focus-visible {
  opacity: .68;
}

.hd-footer__contact {
  min-width: 190px;
  color: #fff !important;
}

.hd-footer__copyright {
  width: 380px;
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  text-align: right;
}

.res-sp {
  display: none !important;
}

@keyframes hd-copy-in {
  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hd-glow {
  to {
    transform: translate3d(140px, 110px, 0) scale(1.12);
  }
}

@keyframes hd-scroll {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes hd-hero-zoom-out {
  from {
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.12);
  }

  to {
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.035);
  }
}

@keyframes hd-purpose-marquee {
  to {
    transform: translateX(calc(-50% - var(--purpose-half-gap)));
  }
}

@keyframes hd-vision-marquee {
  to {
    transform: translateX(calc(-50% - var(--vision-marquee-half-gap)));
  }
}

@keyframes hd-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* Tablet */
@media (max-width: 1080px) {
  .hd-container {
    width: min(var(--hd-width), calc(100% - 48px));
  }

  .hd-header {
    padding-inline: 24px;
  }

  .hd-header__nav {
    gap: 22px;
  }

  .hd-header__contact {
    min-width: 150px;
  }

  .hd-purpose__text {
    gap: 42px;
  }

  .hd-group__intro-text {
    gap: 32px;
  }

  .hd-synergy {
    transform: none;
  }

  .hd-footer__inner {
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
    gap: 48px;
  }

  .hd-blog-banner {
    width: 340px;
  }

  .hd-footer__copyright {
    width: 340px;
  }

  .hd-footer nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
  }

  .hd-footer__contact {
    min-width: 160px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body.hdPage {
    font-size: 14px;
    line-height: 1.9;
  }

  body.hdPage.is-menu-open {
    overflow: hidden;
  }

  .hd-container {
    width: calc(100% - 32px);
  }

  .hd-anchor {
    scroll-margin-top: 64px;
  }

  .hd-header {
    min-height: 68px;
    align-items: center;
    padding: 10px 16px;
  }

  .hd-header.is-scrolled {
    min-height: 62px;
    padding-block: 8px;
  }

  .hd-header__logo,
  .hd-header.is-scrolled .hd-header__logo {
    width: 40px;
  }

  .hd-header__logo img,
  .hd-header.is-scrolled .hd-header__logo img {
    height: 48px;
  }

  .hd-header__menu {
    position: relative;
    z-index: 103;
    display: flex;
    width: 70px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    background: linear-gradient(90deg, #0b4093, #008ed3);
    box-shadow: 0 10px 28px rgba(0, 25, 85, .18);
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  }

  .hd-header__menu span {
    width: 20px;
    height: 1px;
    background: #fff;
    transition: transform .45s cubic-bezier(.65, 0, .35, 1);
  }

  .hd-header.is-menu-open .hd-header__menu {
    border-color: rgba(255, 255, 255, .42);
    background: #0b4093;
    box-shadow: none;
  }

  .hd-header.is-menu-open .hd-header__menu span:first-child {
    transform: translateY(4px) rotate(30deg);
  }

  .hd-header.is-menu-open .hd-header__menu span:last-child {
    transform: translateY(-4px) rotate(-30deg);
  }

  .hd-header__nav {
    position: fixed;
    z-index: 102;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 88px 24px 36px;
    text-align: center;
    background:
      radial-gradient(circle at 110% -10%, rgba(0, 142, 211, .32), transparent 42%),
      #07173d;
    font-size: 22px;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform .72s cubic-bezier(.65, 0, .35, 1),
      visibility 0s linear .72s;
  }

  .hd-header__nav::before {
    content: none;
    display: none;
  }

  .hd-header.is-menu-open .hd-header__nav {
    visibility: visible;
    transform: translateX(0);
    transition:
      transform .72s cubic-bezier(.65, 0, .35, 1) .08s,
      visibility 0s;
  }

  .hd-header.is-menu-open .hd-header__nav::before {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .44s;
  }

  .hd-header__nav>a {
    align-self: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.65, 0, .35, 1);
  }

  .hd-header.is-menu-open .hd-header__nav>a {
    opacity: 1;
    transform: translateY(0);
  }

  .hd-header.is-menu-open .hd-header__nav>a:nth-child(1) {
    transition-delay: .52s;
  }

  .hd-header.is-menu-open .hd-header__nav>a:nth-child(2) {
    transition-delay: .60s;
  }

  .hd-header.is-menu-open .hd-header__nav>a:nth-child(3) {
    transition-delay: .68s;
  }

  .hd-header.is-menu-open .hd-header__nav>a:nth-child(4) {
    transition-delay: .76s;
  }

  .hd-header.is-menu-open .hd-header__nav>a:nth-child(5) {
    transition-delay: .84s;
  }

  .hd-header__nav>a:not(.hd-button) {
    padding: 10px 0;
    border-bottom: 0;
  }

  .hd-header__nav>a:not(.hd-button)::after {
    display: none;
  }

  .hd-header__contact {
    width: auto;
    min-width: 170px;
    min-height: 48px;
    margin-top: 28px;
    padding-inline: 26px;
    border-color: rgba(255, 255, 255, .34);
    background: transparent;
  }

  .hd-hero {
    height: 100svh;
    min-height: 0;
  }

  .hd-hero__visual {
    top: 50%;
    right: 16px;
    left: 16px;
    height: calc(100% - clamp(168px, 24svh, 208px));
    min-height: 0;
    border-radius: 24px;
    -webkit-clip-path: inset(0 round 24px);
    clip-path: inset(0 round 24px);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  .hd-hero__slides,
  .hd-hero__slide,
  .hd-hero__slide img {
    border-radius: inherit;
  }

  .hd-hero__slide:first-child img,
  .hd-hero__slide:nth-child(2) img,
  .hd-hero__slide:nth-child(3) img,
  .hd-hero__slide:nth-child(4) img {
    object-position: 50% 50%;
  }

  .hd-hero__copy {
    top: 50%;
    left: 28px;
  }

  .hd-hero__copy h1 {
    font-size: clamp(56px, 18vw, 78px);
    line-height: .95;
  }

  .hd-hero__copy>p {
    margin-top: 36px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hd-hero__scroll {
    right: 12px;
    bottom: 20px;
    gap: 6px;
    font-size: 13px;
  }

  .hd-hero__scroll span {
    display: none;
  }

  .hd-hero__scroll i {
    width: 44px;
    height: 44px;
  }

  .hd-section-title>p {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .hd-section-title h2 {
    font-size: clamp(50px, 16vw, 68px);
  }

  .hd-purpose {
    padding: 72px 0 96px;
  }

  .hd-purpose__gallery {
    --purpose-gap: 10px;
    --purpose-half-gap: 5px;
    margin-bottom: 74px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5vw, #000 calc(100% - 5vw), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5vw, #000 calc(100% - 5vw), transparent);
  }

  .hd-purpose__track,
  .hd-purpose__group {
    gap: var(--purpose-gap);
  }

  .hd-purpose__track {
    animation-duration: 25s;
  }

  .hd-purpose__gallery figure {
    width: 64vw;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
  }

  .hd-purpose__text {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 48px;
  }

  .hd-purpose__text h3 {
    font-size: 26px;
    line-height: 1.6;
  }

  .hd-purpose__text p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.95;
  }

  .hd-vision {
    height: 190vh;
    min-height: 1120px;
  }

  .hd-vision__sticky {
    min-height: 100svh;
  }

  .hd-vision__bg img {
    height: calc(100% + 32px);
    margin-top: -16px;
    object-position: 60% center;
  }

  .hd-vision__content {
    top: -1vh;
    width: calc(100% - 32px);
  }

  .hd-vision__content h3 {
    margin: 18px 0 26px;
    font-size: 28px;
    line-height: 1.6;
  }

  .hd-vision__content>p {
    max-width: 34em;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.9;
    text-wrap: pretty;
    padding-bottom: 140px;
  }

  /*
  .hd-vision__content>p br {
    display: none;
  }
    */

  .hd-vision__marquee {
    bottom: 24px;
    font-size: 64px;
  }

  .hd-group {
    z-index: 1;
    margin-top: -12px;
    padding: 108px 0 96px;
  }

  .hd-group::before {
    top: 480px;
    font-size: 150px;
  }

  .hd-group__intro {
    gap: 0;
    margin-top: 46px;
  }

  .hd-group__intro-copy {
    gap: 24px;
  }

  .hd-group__intro h3 {
    font-size: 23px;
  }

  .hd-group__intro-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hd-synergy {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 32px auto 0;
    transform: none;
  }

  .hd-group__cards {
    margin-top: 64px;
  }

  .hd-company-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .hd-sp-br {
    display: inline;
  }

  .hd-company-card h3 {
    font-size: 20px;
    letter-spacing: -.01em;
  }

  .hd-company-card__logo {
    min-height: 0;
    place-items: center;
  }

  .hd-company-card__logo img {
    max-width: 92px;
    max-height: 120px;
  }

  .hd-company-card:first-child .hd-company-card__logo img {
    width: 92px;
    height: 107px;
  }

  .hd-company-card:nth-child(2) .hd-company-card__logo img {
    width: 90px;
    height: 120px;
  }

  .hd-company-card__header {
    align-items: center;
    text-align: center;
  }

  .hd-company-card:first-child .hd-company-card__wordmark {
    width: 100%;
    max-width: 283px;
  }

  .hd-company-card:nth-child(2) .hd-company-card__wordmark {
    width: 100%;
    max-width: 490px;
  }

  .hd-button--light {
    width: 100%;
  }

  .hd-company {
    padding: 72px 0 96px;
  }

  .hd-company__layout {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 44px;
  }

  .hd-company__photo {
    height: 430px;
  }

  .hd-company__table>div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 8px;
  }

  .hd-company__table dt {
    color: rgba(10, 25, 67, .68);
    font-size: 12px;
  }

  .hd-footer {
    padding: 56px 0 32px;
  }

  .hd-footer__inner {
    display: flex;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 44px;
    text-align: center;
  }

  .hd-footer__left {
    display: contents;
  }

  .hd-footer__logo {
    order: 1;
    margin-inline: auto;
  }

  .hd-footer__meta {
    width: 100%;
    align-items: center;
    order: 2;
    margin-top: 0;
  }

  .hd-footer address {
    font-size: 11px;
    line-height: 1.8;
  }

  .hd-footer__right {
    align-items: center;
    order: 3;
    gap: 28px;
  }

  .hd-blog-banner {
    width: auto;
    max-width: none;
    align-self: stretch;
    order: initial;
  }

  .hd-footer nav {
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
  }

  .hd-footer__contact {
    width: 100%;
    margin-top: 12px;
  }

  .hd-footer__copyright {
    width: auto;
    max-width: none;
    align-self: stretch;
    margin: 0;
    font-size: 10px;
    text-align: center;
  }
}

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

  .hdPage *,
  .hdPage *::before,
  .hdPage *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hd-hero__visual {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  .hd-hero__copy h1 span,
  .hd-hero__copy>p {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hd-vision__content {
    opacity: 1;
    transform: none;
  }

  .hd-vision__bg {
    clip-path: none;
  }

  .hd-vision__bg img {
    transform: scale(1.02);
  }

  .hd-vision__marquee-track {
    animation: none;
    transform: translate3d(-18vw, 0, 0);
  }

  .hd-vision__marquee span:last-child {
    display: none;
  }

  .hd-purpose__gallery {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hd-purpose__gallery::-webkit-scrollbar {
    display: none;
  }

  .hd-purpose__track {
    animation: none;
  }

  .hd-purpose__group[aria-hidden="true"] {
    display: none;
  }
}

@media only screen and (max-width: 959px) {
  .res-sp {
    display: block !important;
  }
}
