:root {
  --ink: #17181a;
  --ink-soft: #25272b;
  --paper: #f3f4f6;
  --white: #ffffff;
  --text: #24262b;
  --muted: #676d76;
  --line: #d6d9df;
  --line-dark: rgba(255, 255, 255, .16);
  --pink: #e4007f;
  --pink-dark: #b70068;
  --silver: #aeb4bd;
  --header-height: 76px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(228, 0, 127, .55);
  outline-offset: 4px;
}

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

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.section-observed {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.button-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.button-ghost,
.button-outline {
  color: var(--white);
  background: rgba(23, 24, 26, .3);
  border-color: rgba(255, 255, 255, .72);
}

.button-ghost:hover,
.button-outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 4px;
  color: var(--pink);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.arrow-link span {
  transition: transform .2s ease;
}

.arrow-link:hover span {
  transform: translateX(4px);
}

.arrow-link-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-height);
  color: var(--white);
  background: rgba(23, 24, 26, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(23, 24, 26, .98);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
}

.header-inner {
  width: min(1400px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: block;
  width: 178px;
}

.brand img {
  width: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.primary-nav > a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, .76);
  transition: color .2s ease;
}

.primary-nav > a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-nav > a:hover,
.primary-nav > a.is-active {
  color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link,
.header-stock {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 2px;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease;
}

.header-link {
  gap: 9px;
}

.header-link span {
  color: var(--pink);
}

.header-stock {
  background: var(--pink);
  border-color: var(--pink);
}

.header-link:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
}

.header-stock:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.menu-toggle,
.mobile-menu-actions,
.mobile-cta {
  display: none;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(0, 0, 0, .6);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 36px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("../images/hero.jpg") 58% center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 11, 13, .94) 0%, rgba(10, 11, 13, .72) 47%, rgba(10, 11, 13, .2) 78%),
    linear-gradient(0deg, rgba(10, 11, 13, .7) 0%, rgba(10, 11, 13, 0) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: end;
  gap: 48px;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 28px;
}

.hero-copy {
  width: min(830px, 100%);
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.18;
}

.hero h1 strong {
  font-weight: 800;
}

.hero-lead {
  width: min(680px, 100%);
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.hero-services div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 20px;
  background: rgba(23, 24, 26, .58);
}

.hero-services div + div {
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.hero-services dt,
.hero-services dd {
  margin: 0;
}

.hero-services dt {
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-services dd {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.45;
}

.news-strip {
  color: var(--text);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.news-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.news-inner strong {
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
}

.news-inner time {
  color: var(--muted);
  font-size: 13px;
}

.news-inner p {
  margin: 0;
  font-size: 14px;
}

.news-inner a {
  font-size: 13px;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: start;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.section-kicker span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  font-size: 13px;
}

.section-kicker-light {
  color: rgba(255, 255, 255, .72);
}

.section-heading h2,
.reason-heading h2,
.contact-heading h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.32;
}

.section-heading > p:last-child,
.section-heading > div > p,
.reason-heading > p:last-child,
.contact-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
}

.section-heading-dark h2 {
  color: var(--white);
}

.section-heading-dark > div > p {
  color: rgba(255, 255, 255, .66);
}

.about {
  padding: 122px 0;
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 88px;
  align-items: center;
}

.about-copy .section-heading {
  margin-bottom: 32px;
}

.about-lead {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
}

.about-copy > p:not(.about-lead) {
  color: var(--muted);
}

.about-facts {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts dt,
.about-facts dd {
  margin: 0;
}

.about-facts dt {
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
}

.about-facts dd {
  color: #4f545d;
  font-size: 14px;
}

.about-image {
  position: relative;
  margin: 0;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  z-index: 0;
  border: 1px solid rgba(228, 0, 127, .5);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-image figcaption {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: var(--muted);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.reason {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 24, 26, .98), rgba(23, 24, 26, .84)),
    url("../images/feature-drive.jpg") center / cover no-repeat;
}

.reason-heading {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 26px 56px;
  margin-bottom: 62px;
}

.reason-heading .section-kicker {
  grid-row: 1 / 3;
}

.reason-heading > p:last-child {
  width: min(700px, 100%);
  color: rgba(255, 255, 255, .68);
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.reason-list article {
  min-height: 250px;
  padding: 28px 24px 30px;
}

.reason-list article + article {
  border-left: 1px solid var(--line-dark);
}

.reason-list span {
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.reason-list h3 {
  margin: 52px 0 14px;
  font-size: 22px;
  line-height: 1.4;
}

.reason-list p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
}

.service {
  padding: 124px 0;
  background: var(--white);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}

.service-row figure {
  margin: 0;
  overflow: hidden;
  background: #d9dbe0;
}

.service-row figure img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-row:hover figure img {
  transform: scale(1.025);
}

.service-row:nth-child(even) figure {
  order: 2;
}

.service-copy {
  display: grid;
  align-content: center;
  padding: 48px 58px;
  background: var(--paper);
}

.service-number {
  margin: 0 0 16px;
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.service-copy h3 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.3;
}

.service-copy > p:not(.service-number) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 5px 10px;
  color: #50555d;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.4;
}

.culture-banner {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.culture-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 13, .76), rgba(10, 11, 13, .08)),
    linear-gradient(0deg, rgba(10, 11, 13, .66), rgba(10, 11, 13, 0) 60%),
    url("../images/feature-drive.jpg") center / cover no-repeat;
}

.culture-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 56px;
}

.culture-copy p {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: .92;
}

.gallery {
  padding: 124px 0;
  color: var(--white);
  background: var(--ink);
}

.works-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 58px;
}

.works-highlight article {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
}

.works-highlight img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.works-highlight div {
  padding: 24px;
}

.works-highlight span {
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.works-highlight h3 {
  margin: 9px 0 12px;
  font-size: 22px;
  line-height: 1.4;
}

.works-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(23, 24, 26, .72);
  border: 1px solid rgba(255, 255, 255, .5);
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  background: var(--pink);
}

.gallery-item.is-collapsed {
  display: none;
}

.gallery-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.gallery-actions .arrow-link {
  margin-top: 0;
}

.flow {
  padding: 124px 0;
  background: var(--paper);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.flow-list li {
  position: relative;
  min-height: 250px;
  padding: 28px 24px 20px 0;
}

.flow-list li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.flow-list li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--pink);
}

.flow-list li + li::before {
  left: 24px;
}

.flow-list span {
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.flow-list h3 {
  margin: 48px 0 12px;
  font-size: 21px;
  line-height: 1.4;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  padding: 124px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 8px;
  color: var(--pink);
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 54px 26px 0;
  color: var(--muted);
}

.address {
  padding: 124px 0;
  color: var(--white);
  background: var(--ink);
}

.address .section-heading h2 small {
  color: rgba(255, 255, 255, .58);
  font-size: 18px;
  font-weight: 400;
}

.address-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: 78px;
  align-items: stretch;
}

.address-copy {
  display: grid;
  align-content: center;
}

.address-copy address {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  font-style: normal;
}

.contact-list {
  display: grid;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
}

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

.contact-list dt {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
}

.contact-list dd {
  min-width: 0;
  color: rgba(255, 255, 255, .72);
  overflow-wrap: anywhere;
}

.map-card {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  background: #202124;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(.18);
}

.contact {
  padding: 124px 0;
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: 78px;
}

.contact-heading > p:last-child {
  color: var(--muted);
}

.contact-heading h2 {
  font-size: 44px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-methods a {
  position: relative;
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, background .2s ease;
}

.contact-methods a::after {
  content: "↗";
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--pink);
  font-size: 20px;
}

.contact-methods a:hover {
  color: var(--white);
  background: var(--ink-soft);
}

.contact-methods a:hover::after {
  color: var(--white);
}

.contact-methods span {
  color: var(--pink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.contact-methods strong {
  font-size: 19px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-methods small {
  color: var(--muted);
  font-size: 12px;
}

.contact-methods a:hover small {
  color: rgba(255, 255, 255, .7);
}

.contact-methods .contact-stock {
  color: var(--white);
  background: var(--pink);
}

.contact-methods .contact-stock span,
.contact-methods .contact-stock small,
.contact-methods .contact-stock::after {
  color: var(--white);
}

.contact-methods .contact-stock:hover {
  background: var(--pink-dark);
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, .64);
  background: #0d0e0f;
}

.footer-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand img {
  width: 190px;
}

.footer-inner > img {
  width: 190px;
}

.footer-brand p {
  margin: 12px 0 0;
  font-size: 12px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px 24px;
  flex-wrap: wrap;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-meta p {
  margin: 0;
  font-size: 12px;
}

.footer-credit {
  margin: 34px 0 -28px;
  padding: 14px 24px 0;
  color: rgba(255, 255, 255, .5);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.footer-credit a {
  color: var(--pink);
  font-weight: 700;
  transition: color .2s ease;
}

.footer-credit a:hover {
  color: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 56px 92px;
  color: var(--white);
  background: rgba(5, 6, 7, .94);
}

.lightbox figure {
  max-width: min(1040px, 82vw);
  max-height: 86vh;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(86vh - 50px);
  object-fit: contain;
}

.lightbox figcaption {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(23, 24, 26, .7);
  border: 1px solid rgba(255, 255, 255, .35);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 52px;
  height: 72px;
  transform: translateY(-50%);
  font-size: 46px;
  line-height: 1;
}

.lightbox-arrow.prev {
  left: 24px;
}

.lightbox-arrow.next {
  right: 24px;
}

.legal-page {
  padding-top: var(--header-height);
  background: var(--paper);
}

.legal-hero {
  position: relative;
  padding: 96px 0 74px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 24, 26, .96), rgba(23, 24, 26, .78)),
    url("../images/feature-drive.jpg") center / cover no-repeat;
}

.legal-hero::after {
  content: "DOUBLE ONE";
  position: absolute;
  right: 4%;
  bottom: -26px;
  color: rgba(255, 255, 255, .05);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.35;
}

.legal-hero p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .7);
}

.legal-content {
  padding: 94px 0 120px;
}

.legal-content > .container {
  width: min(920px, calc(100% - 64px));
}

.legal-section {
  padding: 0 0 54px;
}

.legal-section + .legal-section {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 24px;
  padding-left: 18px;
  border-left: 4px solid var(--pink);
  font-size: 26px;
  line-height: 1.4;
}

.legal-section h3 {
  margin: 30px 0 14px;
  font-size: 19px;
}

.legal-section p,
.legal-section li {
  color: #50555d;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.4em;
}

.legal-section a,
.data-table a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

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

.data-table th {
  width: 230px;
  background: #e9ebef;
  font-weight: 700;
}

.notice-box {
  margin: 0 0 54px;
  padding: 20px 22px;
  color: #5f4c1d;
  background: #fff8df;
  border-left: 4px solid #d99d00;
}

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.page-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 18px;
  color: var(--pink);
  background: var(--white);
  border: 1px solid rgba(228, 0, 127, .35);
  font-size: 13px;
  font-weight: 700;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 170px 1fr auto;
    gap: 20px;
  }

  .brand {
    width: 160px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 14px;
  }

  .header-link {
    display: none;
  }

  .hero h1,
  .section-heading h2,
  .reason-heading h2 {
    font-size: 50px;
  }

  .culture-copy p {
    font-size: 64px;
  }

  .service-copy {
    padding: 42px;
  }
}

@media (max-width: 1020px) {
  .container {
    width: min(100% - 48px, 1180px);
  }

  .about-layout,
  .address-layout,
  .contact-layout {
    gap: 52px;
  }

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

  .reason-list article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .reason-list article:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

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

  .works-highlight article:last-child {
    grid-column: 1 / -1;
  }

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

  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-list li:nth-child(4),
  .flow-list li:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 162px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 9px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 2px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .site-header.is-menu-open .menu-toggle > span:nth-of-type(2) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle > span:nth-of-type(3) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle > span:nth-of-type(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: 2;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 20px 24px 26px;
    background: rgba(23, 24, 26, .99);
    border-top: 1px solid rgba(255, 255, 255, .08);
    transform: translateY(calc(-100% - var(--header-height)));
    visibility: hidden;
    transition: transform .26s ease, visibility .26s ease;
  }

  .site-header.is-menu-open .primary-nav {
    transform: none;
    visibility: visible;
  }

  .primary-nav > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 18px;
  }

  .primary-nav > a::after {
    display: none;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .mobile-menu-actions a {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 8px 10px;
    color: var(--white);
    background: var(--pink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
  }

  .mobile-menu-actions a:first-child {
    background: var(--ink-soft);
    border: 1px solid rgba(255, 255, 255, .35);
  }

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

  .hero-services div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .hero-services div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .section-heading-split,
  .reason-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .reason-heading .section-kicker {
    grid-row: auto;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) figure {
    order: 0;
  }

  .service-row figure img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .address-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    max-width: 620px;
  }

  .legal-content > .container {
    width: min(100% - 48px, 920px);
  }
}

@media (max-width: 720px) {
  .container,
  .legal-content > .container {
    width: calc(100% - 36px);
  }

  body {
    padding-bottom: 62px;
  }

  .hero {
    min-height: min(760px, calc(100svh - 28px));
  }

  .hero-bg {
    background-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 11, 13, .86), rgba(10, 11, 13, .3)),
      linear-gradient(0deg, rgba(10, 11, 13, .92) 0%, rgba(10, 11, 13, .22) 68%);
  }

  .hero-inner {
    gap: 26px;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 20px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .hero h1,
  .section-heading h2,
  .reason-heading h2 {
    font-size: 39px;
  }

  .contact-heading h2 {
    font-size: 36px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 18px;
  }

  .hero-services div {
    min-height: 68px;
    padding: 9px 12px;
  }

  .hero-services dt,
  .hero-services dd {
    font-size: 11px;
  }

  .news-inner {
    min-height: 86px;
    grid-template-columns: auto 1fr;
    gap: 3px 14px;
    padding-block: 14px;
  }

  .news-inner p {
    grid-column: 1 / -1;
    font-size: 12px;
  }

  .news-inner a {
    display: none;
  }

  .about,
  .reason,
  .service,
  .gallery,
  .flow,
  .faq,
  .address,
  .contact {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .reason-heading h2,
  .contact-heading h2 {
    line-height: 1.4;
  }

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

  .about-image {
    width: calc(100% - 12px);
    margin-left: 12px;
  }

  .about-image img {
    aspect-ratio: 4 / 3;
  }

  .reason-heading {
    margin-bottom: 42px;
  }

  .reason-list {
    grid-template-columns: 1fr;
  }

  .reason-list article {
    min-height: auto;
    padding: 24px 0;
  }

  .reason-list article + article,
  .reason-list article:nth-child(3),
  .reason-list article:nth-child(4) {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .reason-list h3 {
    margin-top: 20px;
  }

  .service-row {
    padding: 24px 0;
  }

  .service-copy {
    padding: 30px 24px;
  }

  .service-copy h3 {
    font-size: 27px;
  }

  .culture-banner {
    min-height: 430px;
  }

  .culture-copy {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 34px;
  }

  .culture-copy p {
    font-size: 52px;
  }

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

  .works-highlight article:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-item::after {
    display: none;
  }

  .gallery-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 2px solid var(--ink);
  }

  .flow-list li,
  .flow-list li + li {
    min-height: auto;
    padding: 4px 0 34px 30px;
    border: 0;
  }

  .flow-list li:last-child {
    padding-bottom: 0;
  }

  .flow-list li::before,
  .flow-list li + li::before {
    top: 4px;
    left: -7px;
  }

  .flow-list h3 {
    margin: 8px 0 8px;
  }

  .faq-list summary {
    padding: 20px 46px 20px 0;
    font-size: 16px;
  }

  .faq-list summary::after {
    top: 18px;
    right: 5px;
  }

  .faq-list p {
    padding: 0 12px 22px 0;
    font-size: 14px;
  }

  .map-card,
  .map-card iframe {
    min-height: 340px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-methods a {
    min-height: 132px;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    color: var(--white);
    background: rgba(13, 14, 15, .98);
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .mobile-cta a {
    min-height: 62px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    padding: 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
  }

  .mobile-cta a + a {
    border-left: 1px solid rgba(255, 255, 255, .15);
  }

  .mobile-cta a:first-child {
    background: var(--pink);
  }

  .mobile-cta span {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 12px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-credit {
    margin-top: 30px;
    padding-inline: 18px;
  }

  .lightbox {
    padding: 64px 18px 86px;
  }

  .lightbox figure {
    max-width: 100%;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 18px;
    width: 56px;
    height: 52px;
    transform: none;
  }

  .lightbox-arrow.prev {
    left: calc(50% - 64px);
  }

  .lightbox-arrow.next {
    right: calc(50% - 64px);
  }

  .legal-hero {
    padding: 68px 0 54px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-hero::after {
    font-size: 84px;
  }

  .legal-content {
    padding: 64px 0 88px;
  }

  .legal-section {
    padding-bottom: 42px;
  }

  .legal-section + .legal-section {
    padding-top: 42px;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table tr + tr {
    border-top: 8px solid var(--paper);
  }

  .data-table th {
    padding-bottom: 8px;
    border-bottom: 0;
  }

  .data-table td {
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 31px;
  }

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

  .hero-actions .button {
    padding-inline: 10px;
    font-size: 12px;
  }

  .section-heading h2,
  .reason-heading h2 {
    font-size: 34px;
  }

  .contact-heading h2 {
    font-size: 34px;
  }

  .about-lead {
    font-size: 17px;
  }

  .about-facts div {
    grid-template-columns: 70px 1fr;
  }

  .culture-copy p {
    font-size: 44px;
  }

  .contact-list div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-methods strong {
    font-size: 17px;
  }

  .legal-hero h1 {
    font-size: 31px;
  }
}

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

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

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