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

::selection {
  background: #000;
  color: #fff;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --bg-base-default: #f9f8f6;
  --bg-base-secondary: #f2f1ee;
  --bg-base-tertiary: #eae9e6;
  --header-notification: #d4ff00;
  --notification-height: 3rem;
  --width-header: 62.5rem;
  --width-content: 80rem;
  --width-cta: 88.75rem;
  --width-footer: 88.75rem;
}

body {
  background: var(--bg-base-default);
  margin: 0;
  font-family: "Space Grotesk", Inter, "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: #222;
  line-height: 1.6;
}

.page {
  margin: 0;
  padding: 0 0 3.5rem;
}

[id] {
  scroll-margin-top: 8.75rem;
}

.notification-bar {
  position: relative;
  width: 100%;
  min-height: var(--notification-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--header-notification);
  color: #000;
}

.notification-text {
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
  padding-right: 1.5rem;
}
.notification-text a {
  color: inherit;
  text-decoration: none;
}
.notification-text a:hover, .notification-text a:focus-visible {
  text-decoration: underline;
}

.notification-close {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  padding: 0;
}
.notification-close svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  pointer-events: none;
}
.notification-close:hover svg {
  animation: close-spin 0.3s linear 1 both;
}

@keyframes close-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.site-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: var(--width-header);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5625rem 0.875rem 0.5625rem 1.875rem;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 1.875rem;
  transition: top 0.28s ease, width 0.3s ease, max-width 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  width: min(56.25rem, 100% - 2.5rem);
  max-width: 56.25rem;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(0.75rem);
  backdrop-filter: blur(0.75rem);
}
.site-header.is-scrolled .nav-link--text,
.site-header.is-scrolled .logo {
  color: #fff;
}

body.has-notification-top .site-header {
  top: calc(1.25rem + var(--notification-offset, 0rem));
}

.logo {
  display: block;
  width: 5rem;
  height: auto;
  margin-top: 0.3rem;
  color: #fff;
  fill: currentColor;
}

.logo-link {
  display: block;
  transition: opacity 0.24s ease;
}
.logo-link:hover, .logo-link:focus-visible {
  opacity: 0.65;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-left: auto;
  gap: 1.25rem;
  font-size: 1rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-link {
  position: relative;
  text-decoration: none;
}
.nav-link--text {
  color: #fff;
}
.nav-link--text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 0.0625rem;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s ease;
}
.nav-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.625rem 1rem;
  border-radius: 62.4375rem;
  background: #fff;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  --sweep-color: hsla(220, 90%, 60%, 0.85);
  --sweep-x: 0%;
  --sweep-y: -160%;
  transition: color 0.25s ease, background-color 0.22s ease;
}
.nav-link--button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--sweep-color);
  z-index: 0;
  transform: translate(var(--sweep-x), var(--sweep-y));
  transition: transform 0.34s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: inherit;
}
.nav-link--button > span {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.nav-link--button[data-sweeping=true] {
  color: #fff;
  background: var(--sweep-color);
  transition-delay: 0s, 0.24s;
}
.nav-link--button[data-sweeping=true]::before {
  transform: translate(0, 0);
}
.nav li:hover .nav-link--text::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.menu-toggle span {
  display: block;
  width: 1.125rem;
  height: 0.0625rem;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  width: 100%;
  height: 100vh;
}
.hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  --hero-mask-width: 0%;
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  background: #ddd;
  border-radius: 0;
  overflow: hidden;
  will-change: auto;
}
.hero-media .hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) scale(1.04);
  filter: none;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease, filter 1.2s ease;
}
.hero-media .hero-image--back {
  z-index: 0;
  opacity: 0;
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) scale(1.06);
}
.hero-media .hero-image--front {
  z-index: 1;
  opacity: 1;
}
.hero-media.is-image-swapped .hero-image--front {
  opacity: 0;
  transform: translate3d(var(--hero-parallax-x), calc(var(--hero-parallax-y) - 0.5rem), 0) scale(1.075);
}
.hero-media.is-image-swapped .hero-image--back {
  opacity: 1;
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) scale(1.04);
}
.hero-media .hero-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--hero-mask-width, 0%);
  background: var(--bg-base-default);
  pointer-events: none;
  z-index: 3;
  will-change: width;
  transition: width 0.18s linear;
}
.hero-media .hero-mask--left {
  left: 0;
}
.hero-media .hero-mask--right {
  right: 0;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.35);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' seed='7'/%3E%3C/filter%3E%3Crect width='1400' height='900' filter='url(%23n)' opacity='0.62'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: soft-light;
}
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  left: 0;
  padding: 0 10vw;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.5rem;
  z-index: 4;
}
.hero-catch, .hero-catch-en {
  margin: 0;
  padding: 0;
  color: #fff;
}
.hero-catch {
  margin-top: 1.25rem;
  font-size: clamp(1.5rem, 0.27rem + 5.26vw, 5rem);
  letter-spacing: 0.08em;
  line-height: 1.35;
  font-weight: 500;
}
.hero-catch-en {
  font-family: "Noticia Text", serif;
  font-size: clamp(0.875rem, 0.66rem + 0.9vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: none;
}

.hero-line,
.cta-line {
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.section-title {
  margin: 0 0 2.5rem;
  font-size: 2.625rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.articles {
  width: min(var(--width-content), 100% - 2.5rem);
  margin: 0 auto;
}
.articles .section-title {
  margin: 0;
  text-align: left;
}

.tech-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.tech-links img {
  display: block;
  height: 1.25rem;
  width: auto;
  transition: opacity 0.65s ease;
}
.tech-links a:hover img {
  opacity: 0.65;
}

.company-grid {
  display: grid;
  gap: 1.25rem;
}

.company-row {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}

.company-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.company-content p,
.company-list dt,
.company-list dd {
  font-size: 1rem;
  line-height: 1.6;
}

.company-content p {
  margin: 0;
}

.company-content p + p {
  margin-top: 0.375rem;
}

.company-list {
  display: grid;
  gap: 0.375rem;
}

.company-list-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.75rem;
}

.company-list dt,
.company-list dd {
  margin: 0;
}

.company-list dt {
  width: 6em;
  flex: 0 0 6em;
}

.company-list dd {
  flex: 1 1 auto;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.service {
  width: min(64rem, 100% - 2.5rem);
  margin: 0 auto;
}

.product {
  width: min(64rem, 100% - 2.5rem);
  margin: 0 auto;
}

.service-feature {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
}

.service-feature-copy h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
}
.service-feature-copy p {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.product-logo {
  display: block;
  height: 2.125rem;
  margin: 0 0 1.125rem;
}

.product-logo-link {
  display: inline-block;
}

.product-site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 3rem;
  border: 0.0625rem solid #222;
  border-radius: 624.9375rem;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.product-site-button svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke: currentColor;
  fill: none;
  transition: transform 0.22s ease;
}
.product-site-button:hover, .product-site-button:focus-visible {
  background: #222;
  color: #fff;
  transform: translateY(-0.0625rem);
}
.product-site-button:hover svg, .product-site-button:focus-visible svg {
  transform: translateX(0.125rem);
}

.service-feature-media {
  width: 100%;
}
.service-feature-media-inner {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-feature-media img {
  display: block;
  width: 85%;
  height: auto;
}

.product-feature-media {
  width: 100%;
  aspect-ratio: 1/1;
  background: #d9d9d9;
}
.product-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-marquee {
  margin-top: 1.875rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  white-space: nowrap;
}
.service-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  min-width: max-content;
  padding: 1.875rem 0;
  animation: service-scroll 32s linear infinite;
}
.service-marquee ul {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-marquee li {
  --service-marker-color: rgba(34, 34, 34, 0.35);
  display: inline-flex;
  font-size: clamp(1.25rem, 0.92rem + 1.41vw, 2.125rem);
  line-height: 1;
  color: #222;
  padding: 0.375rem 0.04em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(var(--service-marker-color), var(--service-marker-color));
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 0% 100%;
  transition: background-size 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-marquee li.is-marked {
  background-size: 100% 100%;
  color: var(--service-text-color, #222);
}
.service-marquee li .roll-char {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1em;
  vertical-align: top;
}
.service-marquee li .roll-stack {
  display: block;
  line-height: 1em;
  transform: translateY(0);
  transition: transform 0.36s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: calc(var(--i) * 0.02s);
}
.service-marquee li .roll-stack::after {
  content: attr(data-char);
  display: block;
}
.service-marquee li.is-rolling .roll-stack {
  transform: translateY(-1em);
}

@media (hover: hover) and (pointer: fine) {
  .service-marquee:has(li:hover) .service-marquee-track {
    animation-play-state: paused;
  }
}
@keyframes service-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-shift, 50%)));
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-marquee-track {
    animation: none;
  }
}
.article-card {
  display: flex;
  flex-direction: column;
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
  will-change: transform;
}
.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.article-card:hover {
  cursor: pointer;
  transform: perspective(62.5rem) rotateX(6deg) rotateY(-9deg) translateY(-0.125rem);
}

.article-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/1.05;
  border-radius: 0;
  background: #d3d3d3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.article-meta {
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
}
.article-meta span {
  font-size: 0.875rem;
  color: #666;
}

.badge-new {
  background: #000;
  color: #fff;
  border-radius: 0.875rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1;
}

.article-title {
  --title-hover-color: #222;
  --title-marker-color: rgba(34, 34, 34, 0.35);
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
  color: #222;
}
.article-title-text {
  padding: 0 0.04em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(var(--title-marker-color), var(--title-marker-color));
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 0% 100%;
  transition: background-size 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-card:hover .article-title .article-title-text {
  background-size: 100% 100%;
}

.article-tags {
  margin-top: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.article-tags span {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  border-radius: 0.75rem;
  background: #fff;
  font-size: 0.875rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}

.members-sub {
  margin: 0 0 1.75rem;
  font-size: 2.25rem;
  line-height: 1.4;
}

.members {
  width: min(52.5rem, 100% - 2.5rem);
  margin: 0 auto;
}

.member-grid {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.member-card {
  max-width: 100%;
  background: #fff;
  border-radius: 0;
  padding: 3rem 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.member-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-photo-fujisawa,
.member-photo-nomura {
  position: relative;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  margin-inline: auto;
  overflow: hidden;
  background: #e7e7e7;
}

.member-photo-fujisawa img,
.member-photo-nomura img {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0.6);
}

.member-photo-fujisawa img {
  top: 1.875rem;
  left: 0.125rem;
}

.member-photo-nomura img {
  top: 3.4375rem;
  left: 0;
}

.member-role {
  margin: 0.625rem 0 0;
  display: inline-block;
  font-size: 0.875rem;
  color: #666;
  background: #ececec;
  border-radius: 624.9375rem;
  padding: 0.25rem 0.75rem;
}

.member-name {
  margin: 0;
  margin-top: 1.25rem;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.member-name-en {
  width: 100%;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

.member-bio {
  margin-top: 1.25rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #2f2f2f;
}

.cta-panel {
  position: relative;
  width: min(var(--width-cta), 100% - 2.5rem);
  margin: 0 auto;
  padding: 4rem 10vw;
  border-radius: 0;
  background: linear-gradient(90deg, #1b1d22 0%, #202227 100%);
  color: #fff;
  overflow: hidden;
}

.cta-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 0.0625rem rgba(255, 255, 255, 0.28));
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
  text-align: left;
}

.cta-title {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 500;
}

.cta-text {
  margin: 0 0 2.375rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cta-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 2.25rem;
  min-width: 21.25rem;
  color: #000;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.375rem 2.625rem;
  border: 0.0625rem solid #000;
  background: #fff;
  border-radius: 624.9375rem;
  cursor: pointer;
  --sweep-color: #2563eb;
  --sweep-x: 0%;
  --sweep-y: -160%;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--sweep-color);
  z-index: 0;
  transform: translate(var(--sweep-x), var(--sweep-y));
  transition: transform 0.34s cubic-bezier(0.25, 1, 0.5, 1);
}
.cta-button > span {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.cta-button.is-sweeping::before {
  transform: translate(0, 0);
}
.cta-button.is-sweeping {
  color: #fff;
  background: var(--sweep-color);
  transition-delay: 0s, 0.24s;
}
.cta-button:active {
  translate: 0 0.0625rem;
}

.site-footer {
  width: min(var(--width-footer), 100% - 2.5rem);
  margin: 7.5rem auto 0;
  padding-bottom: 1.75rem;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: #8b8b8b;
  font-weight: 500;
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
}
.footer-col li img {
  display: block;
  height: 1.25rem;
  width: auto;
  transition: opacity 0.65s ease;
}
.footer-col li a:hover img {
  opacity: 0.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  padding-top: 1.5rem;
  color: #6c6c6c;
  font-size: 1.625rem;
}
.footer-bottom > small {
  font-size: 0.875rem;
}

.footer-lang {
  display: inline-block;
  border: 0.0625rem solid #c9c9c9;
  border-radius: 62.4375rem;
  padding: 0.375rem 0.875rem;
  color: #666;
  background: #f5f5f4;
}

body.is-contact-modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-modal.is-open .contact-modal__panel {
  opacity: 1;
  transform: translateY(0);
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(0.25rem);
}
.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(36rem, 100%);
  background: #fff;
  color: #111;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.contact-modal__content {
  padding: 0;
}
.contact-modal__title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}
.contact-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f0f0ef;
}
.contact-modal__close span {
  position: absolute;
  width: 1rem;
  height: 0.0625rem;
  background: currentColor;
}
.contact-modal__close span:nth-child(1) {
  transform: rotate(45deg);
}
.contact-modal__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form__field {
  display: grid;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #666;
}
.contact-form__field > span {
  font-weight: 500;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 0.0625rem solid #d7d7d4;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.875rem 1rem;
  color: #111;
  line-height: 1.5;
}
.contact-form__field input:focus-visible,
.contact-form__field textarea:focus-visible {
  outline: 0.125rem solid rgba(37, 99, 235, 0.22);
  outline-offset: 0;
  border-color: rgba(37, 99, 235, 0.6);
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 8rem;
}
.contact-form__submit {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}
.contact-form__submit:hover {
  opacity: 0.86;
}

.company {
  width: min(52.5rem, 100% - 2.5rem);
  margin: 0 auto;
}

@media (max-width: 61.25rem) {
  main {
    gap: 7.5rem;
  }
  .notification-text {
    text-align: initial;
  }
  .site-header {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.5rem 0.875rem 0.5rem 1.25rem;
  }
  .nav {
    width: auto;
    justify-content: flex-end;
  }
  .nav-list {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .company-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 42.5625rem) and (max-width: 61.25rem) {
  .menu-toggle {
    display: none;
  }
}
@media (max-width: 42.5rem) {
  main {
    gap: 7.5rem;
  }
  .site-header {
    width: calc(100% - 1.5rem);
    padding: 0.5rem 1rem 0.5rem 1.25rem;
    flex-wrap: wrap;
    align-content: flex-start;
    overflow: hidden;
    transition: top 0.28s ease, width 0.3s ease, max-width 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
  }
  .logo-link {
    display: inline-flex;
    align-items: center;
  }
  .logo {
    margin-top: 0.3rem;
  }
  .site-header.is-menu-open {
    height: auto;
    padding-bottom: 1rem;
    background: rgba(0, 0, 0, 0.82);
    -webkit-backdrop-filter: blur(0.75rem);
    backdrop-filter: blur(0.75rem);
  }
  .nav {
    margin-left: 0;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.75rem;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    align-self: center;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
  }
  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(0.4062rem) rotate(45deg);
  }
  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-0.4062rem) rotate(-45deg);
  }
  .site-header.is-menu-open .nav {
    width: 100%;
    margin-top: 0.875rem;
  }
  .site-header.is-menu-open .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    animation: mobile-menu-fade-in 0.2s ease both;
  }
  .site-header.is-menu-open .nav-list li:last-child {
    grid-column: 1/-1;
  }
  .site-header.is-menu-open .nav-list .nav-link--text {
    color: #fff;
  }
  .site-header.is-menu-open .nav-list .nav-link--button {
    width: 100%;
    justify-content: center;
  }
  .hero-copy {
    /* left: 8vw; */
  }
  br.hero-catch-break-pc-tab {
    display: none;
  }
  br.service-break-pc-tab {
    display: none;
  }
  @keyframes mobile-menu-fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .member-grid {
    flex-direction: column;
    align-items: center;
  }
  .member-card {
    padding: 1.875rem;
  }
  .member-header {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1rem;
  }
  .member-photo-fujisawa,
  .member-photo-nomura {
    width: 5.5rem;
    height: 5.5rem;
    margin-inline: 0;
  }
  .member-name,
  .member-name-en {
    text-align: left;
  }
  .member-name {
    margin-top: 0;
    margin-left: 0.3125rem;
  }
  .member-name-en {
    margin-left: 0.3125rem;
  }
  .section-head {
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .service-feature {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .cta-button {
    min-width: 0;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  .contact-modal {
    padding: 0;
  }
  .contact-modal__panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 0;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    overflow: hidden;
  }
  .contact-modal__content {
    flex: 1;
    padding: 4rem 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .service-marquee {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    white-space: normal;
  }
  .service-marquee-track {
    display: flex;
    min-width: 0;
    padding: 0;
    gap: 0.75rem;
    animation: none;
  }
  .service-marquee-track > ul {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.75rem;
  }
  .service-marquee-track > ul[aria-hidden=true] {
    display: none;
  }
}
