:root {
  --color-text: #151515;
  --color-text-muted: #5f6368;
  --color-bg: #ffffff;
  --color-surface: #f6f7f8;
  --color-border: #d9dde3;
  --color-accent: #1f6feb;
  --color-accent-contrast: #ffffff;
  --color-focus: #0b57d0;
  --accent: #c21f1a;
  --color-bg-soft: #f6f6f4;
  --color-bg-white: #ffffff;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.5rem;

  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-loose: 1.8;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --section-title-size-sp: clamp(2rem, 8.2vw, 2.5rem);
  --section-title-size-pc: clamp(3rem, 4vw, 3.5rem);
  --section-title-weight: 400;
  --section-title-line-height: 1.35;
  --section-title-letter-spacing: 0.02em;

  --content-width: 1120px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --work-first-section-space: clamp(64px, 6vw, 88px);
  --work-section-space-start: clamp(88px, 8.6vw, 124px);
  --work-section-space-end: clamp(104px, 9.2vw, 132px);
  --work-heading-gap: clamp(36px, 3.5vw, 48px);
  --work-layout-gap: clamp(56px, 5vw, 72px);
  --work-body-gap: clamp(32px, 3vw, 44px);
  --work-copy-line-height: 1.9;
  --work-next-space: clamp(64px, 6vw, 88px);
  --section-space: 80px;

  --breakpoint-sm: 390px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1440px;

  --global-header-height-mobile: 64px;
  --global-header-height-desktop: 65px;
  --global-header-height: 0px;
  --mobile-bottom-header-height: 60px;
  --service-page-nav-height-mobile: 54px;
  --service-page-nav-height-desktop: 54px;

  --duration-fast: 160ms;
  --duration-base: 240ms;
  --easing-standard: cubic-bezier(0.2, 0, 0, 1);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  padding-top: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

:where(h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  margin: 0;
  padding: 0;
}

:where(ul, ol)[class] {
  list-style: none;
}

:where(a) {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

:where(button, input, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(button) {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

:where(img, video) {
  height: auto;
}

:where(img) {
  font-style: italic;
}

:where(table) {
  border-collapse: collapse;
}

:where([hidden]) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.site-main {
  width: 100%;
}

:where(#main, #about, #works, #skills, #service, #contact) {
  scroll-margin-top: calc(var(--global-header-height) + 20px);
}

.site-header {
  --header-height-sp: var(--global-header-height-mobile);
  --header-height-pc: var(--global-header-height-desktop);
  --header-bg: #222222;
  --header-text: #ffffff;
  --header-hover: #b3121b;
  --header-link-size: 0.75rem;
  --header-logo-size-sp: 0.75rem;
  --header-logo-size-pc: 1.875rem;
  --header-nav-gap: 64px;

  position: fixed;
  inset: auto 0 0;
  z-index: 30;
  width: 100%;
  height: calc(var(--mobile-bottom-header-height) + env(safe-area-inset-bottom));
  color: var(--header-text);
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--mobile-bottom-header-height);
  margin-inline: auto;
  padding-inline:
    max(20px, env(safe-area-inset-left))
    max(20px, env(safe-area-inset-right));
}

.site-header__logo {
  color: inherit;
  font-size: 1.125rem;
  font-weight: var(--font-weight-regular);
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.site-header__nav {
  display: none;
}

.site-header__nav-list,
.site-header__mobile-list {
  list-style: none;
}

.site-header__nav-link,
.site-header__mobile-link {
  color: inherit;
  font-weight: var(--font-weight-regular);
  line-height: 1;
  text-decoration: none;
  transition: color var(--duration-fast) var(--easing-standard);
}

.site-header__logo {
  transition: color var(--duration-fast) var(--easing-standard);
}

.site-header__logo:hover,
.site-header__nav-link:hover,
.site-header__mobile-link:hover {
  color: var(--header-hover);
}

.site-header__nav-link[aria-current="page"],
.site-header__nav-link[aria-current="location"],
.site-header__mobile-link[aria-current="page"],
.site-header__mobile-link[aria-current="location"] {
  color: var(--header-hover);
}

.site-header__menu-button {
  position: relative;
  z-index: 40;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: inherit;
  background: transparent;
  border-radius: 0;
}

.site-header__menu-button::before,
.site-header__menu-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform-origin: center;
  transition:
    opacity var(--duration-base) var(--easing-standard),
    transform var(--duration-base) var(--easing-standard);
}

.site-header__menu-line {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition:
    transform var(--duration-base) var(--easing-standard),
    opacity var(--duration-base) var(--easing-standard);
}

.site-header__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  align-items: start;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  padding:
    calc(48px + env(safe-area-inset-top))
    max(var(--page-gutter), env(safe-area-inset-right))
    calc(96px + env(safe-area-inset-bottom))
    max(var(--page-gutter), env(safe-area-inset-left));
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--header-text);
  background: var(--header-bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear var(--duration-base);
}

.footer {
  padding-bottom: calc(var(--mobile-bottom-header-height) + env(safe-area-inset-bottom));
}

.site-header__mobile-list {
  display: grid;
  gap: 28px;
}

.site-header__mobile-link {
  display: inline-block;
  font-size: var(--font-size-xl);
}

.site-header.is-menu-open .site-header__mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.site-header.is-menu-open {
  z-index: 100;
}

.site-header.is-menu-open .site-header__menu-line {
  opacity: 0;
}

.site-header.is-menu-open .site-header__menu-button::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-button::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header.is-menu-open .site-header__menu-button:focus-visible {
  outline-color: #ffffff;
}

.hero {
  --hero-bg: #222222;
  --hero-text: #ffffff;
  --hero-track-gap: 14px;
  --hero-poster-width: 217px;
  --hero-poster-duration: 30s;
  --hero-web-duration: 34s;
  --hero-web-gap: 18px;
  --hero-web-image-height: 239px;
  --hero-label-offset: var(--page-gutter);

  overflow: hidden;
  padding-block: 0 20px;
  color: var(--hero-text);
  background: var(--hero-bg);
}

.hero__label {
  padding-top: 4px;
  padding-left: var(--hero-label-offset);
  font-size: var(--font-size-xs);
  line-height: 1;
}

.hero__marquee {
  overflow: hidden;
  width: 100%;
}

.hero__marquee--posters {
  margin-top: 5px;
}

.hero__marquee--web {
  margin-top: 28px;
}

.hero__marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: hero-scroll var(--hero-poster-duration) linear infinite;
}

.hero__marquee-track--reverse {
  animation-name: hero-scroll-reverse;
  animation-duration: var(--hero-web-duration);
}

.hero__poster-list,
.hero__web-list {
  display: flex;
  flex: 0 0 auto;
}

.hero__poster-list {
  gap: var(--hero-track-gap);
  padding-right: var(--hero-track-gap);
}

.hero__web-list {
  align-items: flex-start;
  gap: var(--hero-web-gap);
  padding-right: var(--hero-web-gap);
}

.hero__poster {
  width: var(--hero-poster-width);
  aspect-ratio: 198 / 280;
  object-fit: cover;
}

.hero__copy {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin: 16px auto 0;
  animation: hero-copy-slide-in 900ms cubic-bezier(0.22, 1.25, 0.36, 1) both;
}

.hero__title-en {
  font-size: clamp(1.625rem, 7.15vw, 6rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  white-space: nowrap;
}

.hero__title-ja {
  margin-top: 10px;
  font-size: clamp(1.5rem, 6vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
}

.hero__web-image {
  width: auto;
  height: var(--hero-web-image-height);
  object-fit: cover;
}

.hero__web-image--narrow {
  aspect-ratio: 115 / 273;
}

.hero__web-label {
  margin-top: 12px;
  padding-right: var(--hero-label-offset);
  padding-left: var(--hero-label-offset);
  font-size: var(--font-size-xs);
  line-height: 1;
  text-align: right;
}

.hero__sp-break {
  display: initial;
}

.selected-project {
  --selected-bg: #eeeeec;
  --selected-card-bg: rgba(20, 20, 20, 0.78);
  --selected-accent: var(--accent);
  --selected-link-shadow: rgba(21, 21, 21, 0.14);

  position: relative;
  padding-block: 0;
  overflow: visible;
  background: var(--selected-bg);
}

.selected-project__inner {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0) 70%),
    #f7f7f5;
  border-radius: 0;
  box-shadow: inset 0 0 46px rgba(0, 0, 0, 0.06);
}

.selected-project__sticky {
  display: grid;
}

.is-js-enabled .selected-project__sticky,
.is-js-enabled .selected-project__content {
  display: none;
}

.selected-project__eyebrow {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 6;
  justify-self: center;
  margin-bottom: 0;
  padding-inline: 44px;
  font-size: var(--font-size-md);
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  transform: translateX(-50%);
}

.selected-project__eyebrow::before,
.selected-project__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--selected-accent);
  transform: translateY(-50%);
}

.selected-project__eyebrow::before {
  left: 0;
}

.selected-project__eyebrow::after {
  right: 0;
}

.selected-project__visual {
  position: relative;
  z-index: 1;
}

.selected-project__mockups {
  position: relative;
  width: min(100%, 382px);
  margin-inline: auto;
  padding-top: 0;
  padding-bottom: 136px;
}

.laptop-mockup,
.phone-mockup {
  position: relative;
  margin: 0;
}

.laptop-mockup {
  aspect-ratio: 900 / 853;
}

.phone-mockup {
  position: absolute;
  right: -24px;
  bottom: 16px;
  z-index: 4;
  width: clamp(150px, 47vw, 190px);
  aspect-ratio: 260 / 470;
}

.laptop-mockup__screen,
.phone-mockup__screen {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
}

.laptop-mockup__screen {
  top: 2%;
  right: 10.3%;
  bottom: 40.2%;
  left: 10.3%;
  border-radius: clamp(8px, 1.7vw, 16px) clamp(8px, 1.7vw, 16px) 4px 4px;
}

.phone-mockup__screen {
  top: 3.7%;
  right: 29%;
  bottom: 22.7%;
  left: 9.5%;
  border-radius: 20px;
}

.laptop-mockup__image,
.phone-mockup__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 460ms var(--easing-standard);
  pointer-events: none;
}

.laptop-mockup__image.is-active,
.phone-mockup__image.is-active {
  opacity: 1;
  will-change: transform;
}

.laptop-mockup__intro {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 1;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.laptop-mockup__intro.is-hidden {
  opacity: 0;
}

.laptop-mockup__frame,
.phone-mockup__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.selected-project__content {
  position: relative;
  z-index: 5;
  margin-top: -132px;
}

.selected-project__item {
  display: grid;
}

.selected-project__meta {
  position: relative;
  width: min(70%, 242px);
  max-width: none;
  padding: 22px 24px 20px;
  color: #ffffff;
  background: var(--selected-card-bg);
  border-radius: 8px;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.selected-project__number {
  display: inline-block;
  font-size: clamp(2.625rem, 11vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
}

.selected-project__title {
  display: block;
  margin-top: 12px;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
  font-size: clamp(1.625rem, 7vw, 2rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.selected-project__category {
  margin-top: 14px;
  font-size: clamp(0.875rem, 3.8vw, 1rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}

.selected-project__description {
  max-width: 28em;
  margin-top: 96px;
  font-size: clamp(1rem, 4.6vw, 1.1875rem);
  line-height: var(--line-height-loose);
}

.selected-project__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 0 0 10px;
  color: var(--selected-accent);
  font-size: clamp(1rem, 4.4vw, 1.125rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  box-shadow: none;
  transition:
    color var(--duration-fast) var(--easing-standard),
    border-color var(--duration-fast) var(--easing-standard);
}

.selected-project__link span {
  font-size: 1.5em;
  line-height: 0.75;
}

.selected-project__link:hover {
  color: var(--header-hover);
}

.selected-project__mobile {
  display: none;
}

.is-js-enabled .selected-project__mobile {
  display: grid;
}

.selected-project__slider {
  display: block;
  width: 100%;
  height: 100svh;
  margin-inline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.selected-project__slider::-webkit-scrollbar {
  display: none;
}

.selected-project__slide {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: 100svh;
  max-height: 100svh;
  padding: clamp(54px, 7svh, 68px) 20px clamp(18px, 3svh, 28px);
  align-content: start;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.selected-project__slide .selected-project__mockups {
  order: 3;
  align-self: center;
  width: min(100%, 300px, 72svh);
  margin-top: clamp(10px, 2svh, 16px);
  padding-bottom: clamp(48px, 8svh, 70px);
}

.selected-project__slide .laptop-mockup__image,
.selected-project__slide .phone-mockup__image {
  opacity: 1;
}

.selected-project__slide-panel {
  position: relative;
  z-index: 5;
  order: 1;
  width: auto;
  margin-top: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.selected-project__slide-number {
  display: inline-block;
  font-size: clamp(1.75rem, 7.8vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.selected-project__slide-title {
  display: inline-block;
  margin-top: 0;
  margin-left: 12px;
  padding-left: 14px;
  border-left: 1px solid currentColor;
  font-size: clamp(1.5rem, 6.8vw, 1.875rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.selected-project__slide-category {
  margin-top: 10px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
}

.selected-project__slide-description {
  order: 2;
  max-width: 28em;
  margin-top: 10px;
  font-size: clamp(0.8125rem, 3.45vw, 0.9375rem);
  line-height: 1.62;
}

.selected-project__slide-link {
  order: 4;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(10px, 2svh, 16px);
  padding: 0 0 10px;
  color: var(--selected-accent);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.selected-project__slide-link span {
  font-size: 1.5em;
  line-height: 0.75;
}

.selected-project__pagination {
  display: none;
  justify-items: center;
  width: max-content;
  gap: 10px;
  margin-top: 22px;
  margin-inline: auto;
  color: #9c9c9c;
  text-align: center;
  transform: none;
}

.selected-project__pagination-count {
  color: #8f8f8f;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.12em;
}

.selected-project__pagination-count span {
  color: var(--color-text);
}

.selected-project__pagination-bars {
  display: flex;
  gap: 5px;
}

.selected-project__pagination-bar {
  display: block;
  width: 28px;
  height: 4px;
  background: #d9d9d9;
  border-radius: 999px;
}

.selected-project__pagination-bar.is-active {
  background: var(--selected-accent);
}

.selected-project__controls {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.selected-project__button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--selected-accent);
  font-size: var(--font-size-xl);
  line-height: 1;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(194, 31, 26, 0.24);
  border-radius: 999px;
}

.selected-project__button:disabled {
  color: #b8b8b8;
  border-color: #dddddd;
}

@media (max-width: 374px) {
  .selected-project__slide {
    padding-inline: 16px;
  }

  .selected-project__slide .selected-project__mockups {
    width: min(100%, 272px, 68svh);
    padding-bottom: 46px;
  }

  .selected-project__slide-description {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .about__title,
  .skills__title,
  .service__title {
    font-size: clamp(1.625rem, 7.2vw, 1.75rem);
  }
}

.skills {
  --skills-bg: #f7f7f5;
  --skills-card-bg: #ffffff;
  --skills-text: #111111;
  --skills-muted: #303236;
  --skills-border: rgba(21, 21, 21, 0.15);
  --skills-shadow: rgba(21, 21, 21, 0.12);
  --skills-red: var(--accent);

  overflow: hidden;
  color: var(--skills-text);
  background: var(--skills-bg);
}

.skills__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: 74px 78px;
}

.skills__label {
  position: relative;
  width: max-content;
  padding-inline: 44px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: 1;
  letter-spacing: 0.05em;
}

.skills__label::before,
.skills__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--skills-red);
  transform: translateY(-50%);
}

.skills__label::before {
  left: 0;
}

.skills__label::after {
  right: 0;
}

.skills__intro {
  margin-top: 48px;
}

.skills__title {
  font-size: var(--section-title-size-sp);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
  letter-spacing: var(--section-title-letter-spacing);
}

.skills__title span {
  display: block;
}

.skills__title span:first-child {
  white-space: nowrap;
}

.skills__lead {
  max-width: 52em;
  margin-top: 42px;
  color: var(--skills-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.72;
}

.skills__cards {
  display: grid;
  gap: 28px;
  margin-top: 46px;
}

.skills-card {
  display: grid;
  gap: 40px;
  padding: 36px 18px 36px;
  background: var(--skills-card-bg);
  border: 1px solid var(--skills-border);
  border-radius: 8px;
  box-shadow: 3px 4px 4px rgba(21, 21, 21, 0.08);
}

.skills-card__body,
.skills-card__tools {
  min-width: 0;
}

.skills-card__number {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: var(--skills-red);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.skills-card__number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
}

.skills-card__title {
  margin-top: 30px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
}

.skills-card__description {
  margin-top: 26px;
  color: var(--skills-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.72;
}

.skills-card__tools {
  display: grid;
  align-self: start;
}

.skills-card__tools-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--skills-red);
}

.skills-card__tools-label,
.skills-card__tool-names {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
}

.skills-card__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
}

.skills-card__icons img {
  width: auto;
  height: 22px;
  object-fit: contain;
}

.skills-card__tool-names {
  margin-top: 12px;
}

.skills-card__list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  color: var(--skills-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
}

.skills-card__list li {
  position: relative;
  padding-left: 18px;
}

.skills-card__list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 3px;
  width: 3px;
  height: 3px;
  background: var(--skills-red);
  border-radius: 50%;
}

.is-js-enabled .skills [data-skills-reveal],
.is-js-enabled .skills [data-skills-card] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out,
    box-shadow var(--duration-base) var(--easing-standard);
}

.is-js-enabled .skills .skills__label::before,
.is-js-enabled .skills .skills__label::after {
  transform: translateY(-50%) scaleX(0);
  transition: transform 540ms ease-out;
}

.is-js-enabled .skills .skills-card__number::after {
  transform: scaleX(0);
  transition: transform 540ms ease-out;
}

.is-js-enabled .skills .skills-card__icons img {
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 360ms ease-out,
    transform 360ms ease-out;
}

.is-js-enabled .skills .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-js-enabled .skills .skills__label.is-in-view::before,
.is-js-enabled .skills .skills__label.is-in-view::after {
  transform: translateY(-50%) scaleX(1);
}

.is-js-enabled .skills .is-in-view .skills-card__number::after {
  transform: scaleX(1);
}

.is-js-enabled .skills .is-in-view .skills-card__icons img {
  opacity: 1;
  transform: scale(1);
}

.is-js-enabled .skills .is-in-view .skills-card__icons li:nth-child(2) img {
  transition-delay: 80ms;
}

.is-js-enabled .skills .is-in-view .skills-card__icons li:nth-child(3) img {
  transition-delay: 140ms;
}

.is-js-enabled .skills .is-in-view .skills-card__icons li:nth-child(4) img {
  transition-delay: 200ms;
}

.service {
  --service-bg: #eeeeec;
  --service-card-bg: #ffffff;
  --service-text: #050505;
  --service-muted: #111111;
  --service-red: var(--accent);
  --service-red-dark: #9f1214;
  --service-shadow: rgba(0, 0, 0, 0.16);

  overflow: hidden;
  color: var(--service-text);
  background: var(--service-bg);
}

.service__inner {
  display: grid;
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: 88px 112px;
}

.service__label {
  position: relative;
  justify-self: center;
  width: max-content;
  padding-inline: 44px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: 1;
  letter-spacing: 0.06em;
}

.service__label::before,
.service__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--service-red);
  transform: translateY(-50%);
  transform-origin: center;
}

.service__label::before {
  left: 0;
}

.service__label::after {
  right: 0;
}

.service__intro {
  margin-top: 66px;
}

.service__title {
  font-size: var(--section-title-size-sp);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
  letter-spacing: var(--section-title-letter-spacing);
}

.service__title span {
  display: block;
}

.service__description {
  display: grid;
  gap: 22px;
  margin-top: 58px;
  font-size: clamp(0.9375rem, 3.9vw, 1rem);
  line-height: 1.72;
}

.service__cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  order: 3;
  margin-top: 76px;
  text-align: center;
}

.service__cta-text {
  font-size: var(--font-size-sm);
  line-height: 1.65;
}

.service__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 260px);
  min-height: 48px;
  padding: 12px 24px;
  color: #ffffff;
  font-size: var(--font-size-sm);
  line-height: 1.2;
  text-decoration: none;
  background: var(--service-red);
  border-radius: 9999px;
  transition:
    background-color var(--duration-base) var(--easing-standard),
    transform var(--duration-base) var(--easing-standard);
}

.service__cta-link:hover {
  background: var(--service-red-dark);
  transform: translateY(-2px);
}

.service__cards {
  display: grid;
  gap: 28px;
  order: 4;
  margin-top: 108px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 24px 28px;
  background: var(--service-card-bg);
  border-radius: 9px;
  box-shadow: 0 5px 14px var(--service-shadow);
}

.service-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  min-height: 112px;
}

.service-card__number {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: var(--service-red);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.service-card__number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
}

.service-card__title {
  margin-top: 24px;
  font-size: clamp(1.375rem, 6.2vw, 1.5625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.12;
}

.service-card__icon {
  width: clamp(74px, 22vw, 88px);
  height: auto;
  object-fit: contain;
  transition: transform var(--duration-base) var(--easing-standard);
}

.service-card__description {
  margin-top: 28px;
  font-size: clamp(0.9375rem, 3.8vw, 1rem);
  line-height: 1.72;
}

.service-card__list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  font-size: var(--font-size-sm);
  line-height: 1.55;
}

.service-card__list li {
  position: relative;
  padding-left: 22px;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--service-red);
  border-radius: 50%;
}

.service-card__list li::after {
  content: "";
  position: absolute;
  top: calc(0.45em + 3px);
  left: 3px;
  width: 6px;
  height: 3px;
  border-bottom: 1px solid var(--service-red);
  border-left: 1px solid var(--service-red);
  transform: rotate(-45deg);
}

.is-js-enabled .service [data-service-reveal],
.is-js-enabled .service [data-service-card] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 640ms ease-out,
    transform 640ms ease-out,
    box-shadow var(--duration-base) var(--easing-standard);
}

.is-js-enabled .service .service__label::before,
.is-js-enabled .service .service__label::after {
  transform: translateY(-50%) scaleX(0);
  transition: transform 540ms ease-out;
}

.is-js-enabled .service .service-card__number::after {
  transform: scaleX(0);
  transition: transform 540ms ease-out;
}

.is-js-enabled .service .service-card__icon {
  transform: scale(0.94);
}

.is-js-enabled .service .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-js-enabled .service .service__label.is-in-view::before,
.is-js-enabled .service .service__label.is-in-view::after {
  transform: translateY(-50%) scaleX(1);
}

.is-js-enabled .service .is-in-view .service-card__number::after {
  transform: scaleX(1);
}

.is-js-enabled .service .is-in-view .service-card__icon {
  transform: scale(1);
}

.contact-cta {
  --contact-cta-red: var(--accent);
  --contact-cta-red-dark: #9f1214;

  overflow: hidden;
  color: var(--color-text);
  background: var(--color-bg);
}

.contact-cta__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: min(var(--section-space), 128px);
}

.contact-cta .contact-cta__heading {
  margin-bottom: 48px;
}

.contact-cta__grid {
  display: grid;
  gap: 52px;
}

.contact-cta__content {
  min-width: 0;
}

.contact-cta__title {
  font-size: clamp(2.25rem, 10.5vw, 2.75rem);
  font-weight: var(--font-weight-regular);
  line-height: 1.42;
  letter-spacing: 0.01em;
  line-break: strict;
}

.contact-cta__title > span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.contact-cta__description {
  max-width: 35rem;
  margin-top: 38px;
  font-size: 0.9375rem;
  line-height: 1.92;
  line-break: strict;
}

.contact-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 32px 22px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-align: center;
  transition: border-color var(--duration-base) var(--easing-standard);
}

.contact-cta__icon {
  width: 58px;
  height: auto;
  color: var(--contact-cta-red);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-cta__icon circle {
  fill: currentColor;
  stroke: none;
}

.contact-cta__label {
  margin-top: 24px;
  color: var(--contact-cta-red);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  letter-spacing: 0.035em;
}

.contact-cta__card-title {
  margin-top: 22px;
  font-size: clamp(1.375rem, 6.3vw, 1.5625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.01em;
  line-break: strict;
}

.contact-cta__divider {
  width: min(72%, 352px);
  height: 1px;
  margin-top: 26px;
  background: var(--color-border);
}

.contact-cta__info {
  display: grid;
  gap: 18px;
  width: min(100%, 352px);
  margin-top: 32px;
  text-align: left;
}

.contact-cta__info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-size: clamp(0.9375rem, 4.2vw, 1rem);
  line-height: 1.6;
}

.contact-cta__info-icon {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  color: var(--contact-cta-red);
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-cta__button {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 70px;
  margin-top: 38px;
  padding: 14px 20px;
  color: #ffffff;
  background: var(--contact-cta-red);
  border-radius: 999px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
  font-size: clamp(1.0625rem, 4.8vw, 1.1875rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  text-decoration: none;
  transition:
    background-color 280ms var(--easing-standard),
    box-shadow 280ms var(--easing-standard),
    transform 280ms var(--easing-standard);
}

.contact-cta__button-text {
  grid-column: 2;
}

.contact-cta__arrow {
  position: relative;
  grid-column: 3;
  justify-self: end;
  width: 30px;
  height: 16px;
  transition: transform 280ms var(--easing-standard);
}

.contact-cta__arrow::before,
.contact-cta__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: currentColor;
}

.contact-cta__arrow::before {
  width: 30px;
  height: 1px;
  transform: translateY(-50%);
}

.contact-cta__arrow::after {
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.contact-cta__button:active {
  transform: scale(0.985);
}

.contact-cta__button:focus-visible {
  outline-color: #151515;
  outline-offset: 5px;
}

.is-js-enabled .contact-cta [data-contact-cta-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .contact-cta .contact-cta__card[data-contact-cta-reveal] {
  transform: translateY(24px);
}

.is-js-enabled .contact-cta [data-contact-cta-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .contact-cta__card:hover {
    border-color: #b9bec5;
  }

  .contact-cta__button:hover {
    background: var(--contact-cta-red-dark);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
  }

  .contact-cta__button:hover .contact-cta__arrow {
    transform: translateX(7px);
  }
}

.works-page {
  --works-bg: #f6f6f4;
  --works-text: #101010;
  --works-muted: #222222;
  --works-line: rgba(0, 0, 0, 0.7);
  --works-border: rgba(0, 0, 0, 0.65);
  --works-red: var(--accent);

  overflow: hidden;
  color: var(--works-text);
  background: var(--works-bg);
}

.works-hero__inner,
.works-section__inner,
.works-contact {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
}

.works-hero {
  padding-block: 86px 74px;
}

.works-hero__inner {
  display: grid;
  gap: 30px;
}

.works-hero__title {
  font-size: clamp(2.5rem, 11vw, 2.875rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  letter-spacing: 0.2em;
}

.works-hero__subtitle {
  margin-top: 14px;
  font-size: clamp(1rem, 4.4vw, 1.125rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.works-hero__description {
  color: var(--works-muted);
  font-size: clamp(0.8125rem, 3.6vw, 0.875rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.works-section + .works-section {
  margin-top: 86px;
}

.works-section__heading {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--works-line);
}

.works-section__title {
  font-size: clamp(1.125rem, 5vw, 1.3125rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  letter-spacing: 0.22em;
}

.works-section__subtitle {
  color: var(--works-muted);
  font-size: var(--font-size-xs);
  line-height: 1.5;
}

.works-section__grid {
  display: grid;
  gap: 58px;
  margin-top: 50px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    transform var(--duration-base) var(--easing-standard),
    opacity var(--duration-base) var(--easing-standard);
}

.project-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card__image-wrap {
  display: block;
  overflow: hidden;
}

.project-card__image {
  width: 100%;
  height: auto;
  transition: transform 360ms var(--easing-standard);
}

.project-card__category {
  margin-top: 13px;
  color: var(--works-muted);
  font-size: clamp(0.625rem, 2.7vw, 0.6875rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.project-card__title {
  margin-top: 12px;
  font-size: clamp(0.9375rem, 4vw, 1rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
}

.project-card__description {
  margin-top: 16px;
  color: var(--works-muted);
  font-size: clamp(0.8125rem, 3.5vw, 0.875rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.75;
}

.project-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  padding-block: 10px 4px;
  color: inherit;
  font-size: clamp(0.625rem, 2.7vw, 0.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.project-card__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--works-red);
  transform-origin: left center;
  transition: transform var(--duration-base) var(--easing-standard);
}

.project-card__link-arrow {
  color: var(--works-red);
  transition: transform var(--duration-base) var(--easing-standard);
}

.project-card__link:active {
  transform: scale(0.985);
}

.works-contact {
  padding-block: 72px 92px;
}

.works-contact__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  color: inherit;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.16em;
  text-decoration: none;
  border: 1px solid var(--works-border);
  transition:
    color var(--duration-base) var(--easing-standard),
    border-color var(--duration-base) var(--easing-standard),
    transform var(--duration-base) var(--easing-standard);
}

.works-contact__arrow {
  color: var(--works-red);
  transition: transform var(--duration-base) var(--easing-standard);
}

.works-contact__link:hover {
  color: var(--works-red);
  border-color: var(--works-red);
}

.works-contact__link:hover .works-contact__arrow {
  transform: translateX(6px);
}

.is-js-enabled .works-page [data-works-reveal],
.is-js-enabled .works-page [data-project-card] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .works-page .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.work-detail-page {
  color: #111111;
  background: var(--color-bg-soft);
}

.work-hero {
  --work-hero-red: var(--accent);
  --work-hero-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--global-header-height));
}

.work-hero.work-hero--idcafe {
  background: var(--color-bg-soft) url("../assets/images/WORKS/iD_Bg.webp") center / cover no-repeat;
}

.work-hero__inner {
  display: grid;
  gap: 34px;
  width: min(100% - calc(var(--page-gutter) * 2), 1240px);
  margin-inline: auto;
  padding-block: 36px 66px;
}

.work-hero__content,
.work-hero__overview {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.work-hero__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #202020;
  font-size: var(--font-size-sm);
  line-height: 1.4;
}

.work-hero__breadcrumb a {
  text-decoration: none;
}

.work-hero__breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 7px;
}

.work-hero__logo {
  display: block;
  width: clamp(78px, 22.8vw, 102px);
  height: auto;
  margin-top: 32px;
}

.work-hero__category {
  margin-top: 28px;
  color: var(--work-hero-red);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.work-hero__title {
  margin-top: -72px;
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2rem, 8.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.work-hero__text {
  max-width: 34em;
  margin-top: 28px;
  font-size: clamp(0.875rem, 3.8vw, 0.9375rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.work-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 420px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--work-hero-red);
}

.work-hero__meta dt {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.work-hero__meta dd {
  margin: 14px 0 0;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.work-hero__visual {
  --hero-stage-width: 700px;
  --hero-stage-height: 520px;
  --hero-stage-ratio: 700 / 520;

  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: var(--hero-stage-ratio);
  margin-inline: auto;
  overflow: visible;
  pointer-events: none;
  isolation: isolate;
}

.work-hero__mockup-scale {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 700px;
  aspect-ratio: var(--hero-stage-ratio);
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.work-hero__visual-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.work-hero__visual-bg {
  position: absolute;
  inset: 0 0 -9.231% 4.571%;
  z-index: 0;
  opacity: 0.9;
}

.work-hero__piece-wrap {
  position: absolute;
  z-index: 1;
}

.work-hero__piece {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.work-hero__piece-wrap--poster-pink {
  top: -30%;
  left: -5%;
  z-index: 1;
  width: 80%;
  --piece-rotate: 0deg;
  transform: rotate(var(--piece-rotate));
}

.work-hero__piece-wrap--poster-black {
  top: -30%;
  left: 50%;
  z-index: 1;
  width: 80%;
  --piece-rotate: 0deg;
  transform: rotate(var(--piece-rotate));
}

.work-hero__piece-wrap--card {
  top: 0%;
  left: 62.222%;
  z-index: 2;
  width: 30%;
  --piece-rotate: -11deg;
  transform: rotate(var(--piece-rotate));
}

.work-hero__piece-wrap--laptop {
  top: 24%;
  left: 0%;
  z-index: 4;
  width: 100%;
}

.work-hero__piece-wrap--phone {
  top: 56.579%;
  left: 84.444%;
  z-index: 5;
  width: 30%;
}

.work-hero__piece-wrap--business-card {
  top: 81.579%;
  left: 65%;
  z-index: 6;
  width: 30%;
  --piece-rotate: 6deg;
  transform: rotate(var(--piece-rotate));
}

@media (min-width: 481px) and (max-width: 1023px) {
  .work-hero {
    min-height: 0;
  }

  .work-hero__inner {
    min-height: 0;
  }

  .work-hero__visual {
    --hero-tablet-group-size: clamp(440px, calc(304px + 28.33vw), 594px);

    width: 100%;
    height: var(--hero-tablet-group-size);
    max-width: 100%;
    margin-top: 0;
    aspect-ratio: auto;
    overflow: visible;
  }

  .work-hero__mockup-scale {
    width: var(--hero-tablet-group-size);
    height: var(--hero-tablet-group-size);
    max-width: none;
    aspect-ratio: auto;
    transform: translate(-50%, -50%);
  }

}

@media (max-width: 1023px) {
  .work-hero__visual {
    --hero-stage-width: 390px;
    --hero-stage-height: 390px;
    --hero-stage-ratio: 390 / 390;
    max-width: none;
  }

  .work-hero__visual-bg {
    inset: 7.179% 0 0 8.205%;
  }

  .work-hero__piece-wrap--poster-pink {
    top: -3%;
    left: -15%;
    width: 67.179%;
    --piece-rotate: 12deg;
  }

  .work-hero__piece-wrap--poster-black {
    top: -5%;
    left: 50.256%;
    width: 66.667%;
    --piece-rotate: -12deg;
  }

  .work-hero__piece-wrap--card {
    top: 2%;
    left: 35%;
    width: 26.667%;
    --piece-rotate: -8deg;
  }

  .work-hero__piece-wrap--laptop {
    top: 20%;
    left: 5%;
    width: 92%;
  }

  .work-hero__piece-wrap--phone {
    top: 40%;
    left: 73.077%;
    width: 25.641%;
  }

  .work-hero__piece-wrap--business-card {
    top: 6%;
    left: 67.179%;
    width: 30.256%;
  }
}

@media (max-width: 480px) {
  .work-hero__mockup-scale {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .work-hero--idcafe {
    min-height: 0;
  }

  .work-hero--idcafe .work-hero__inner {
    padding-bottom: 24px;
  }
}

.is-js-enabled .work-hero__content > *,
.is-js-enabled .work-hero__overview > *,
.is-js-enabled .work-hero__visual-bg,
.is-js-enabled .work-hero__piece-wrap:not(.work-hero__piece-wrap--laptop) {
  opacity: 0;
  animation-duration: 780ms;
  animation-fill-mode: forwards;
  animation-timing-function: var(--work-hero-ease);
}

.is-js-enabled .work-hero__content > *,
.is-js-enabled .work-hero__overview > * {
  animation-name: work-hero-fade-up;
}

.is-js-enabled .work-hero__breadcrumb {
  animation-delay: 80ms;
}

.is-js-enabled .work-hero__logo {
  animation-delay: 180ms;
}

.is-js-enabled .work-hero__category {
  animation-delay: 260ms;
}

.is-js-enabled .work-hero__title {
  animation-delay: 340ms;
}

.is-js-enabled .work-hero__text {
  animation-delay: 420ms;
}

.is-js-enabled .work-hero__meta {
  animation-delay: 500ms;
}

.is-js-enabled .work-hero__visual-bg {
  animation-name: work-hero-fade-in;
  animation-delay: 240ms;
}

.is-js-enabled .work-hero__piece-wrap--phone {
  animation-name: work-hero-phone-in;
  animation-delay: 1300ms;
}

.is-js-enabled .work-hero__piece-wrap--poster-pink {
  animation-name: work-hero-poster-pink-in;
  animation-delay: 520ms;
}

.is-js-enabled .work-hero__piece-wrap--poster-black {
  animation-name: work-hero-poster-black-in;
  animation-delay: 780ms;
}

.is-js-enabled .work-hero__piece-wrap--card,
.is-js-enabled .work-hero__piece-wrap--business-card {
  animation-name: work-hero-small-piece-in;
  animation-delay: 1040ms;
}

.is-js-enabled .work-hero__piece-wrap--business-card {
  animation-delay: 1560ms;
}

@keyframes work-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes work-hero-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.9;
  }
}

@keyframes work-hero-phone-in {
  from {
    opacity: 0;
    transform: translate(42px, 34px) rotate(var(--piece-rotate, 0deg));
  }

  to {
    opacity: 1;
    transform: translate(0, 0) rotate(var(--piece-rotate, 0deg));
  }
}

@keyframes work-hero-poster-pink-in {
  from {
    opacity: 0;
    transform: translate(-46px, -38px) rotate(calc(var(--piece-rotate, 0deg) - 6deg));
  }

  to {
    opacity: 1;
    transform: translate(0, 0) rotate(var(--piece-rotate, 0deg));
  }
}

@keyframes work-hero-poster-black-in {
  from {
    opacity: 0;
    transform: translate(52px, -40px) rotate(calc(var(--piece-rotate, 0deg) + 6deg));
  }

  to {
    opacity: 1;
    transform: translate(0, 0) rotate(var(--piece-rotate, 0deg));
  }
}

@keyframes work-hero-small-piece-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(var(--piece-rotate, 0deg));
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--piece-rotate, 0deg));
  }
}

.work-background {
  --work-background-red: var(--work-hero-red, #c21f1a);
  --work-background-line: rgba(0, 0, 0, 0.35);

  color: #111111;
  background: var(--color-bg-white);
}

.work-hero + .work-background {
  padding-top: var(--work-first-section-space);
}

.work-hero + .work-background .work-background__inner {
  padding-top: 0;
}

.work-background__inner {
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: var(--work-section-space-start) var(--work-section-space-end);
}

.work-background__heading {
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2rem, 8.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.02em;
}

.work-background__layout {
  display: grid;
  gap: 54px;
  margin-top: var(--work-layout-gap);
}

.work-background__content,
.work-background__points {
  min-width: 0;
}

.work-background__label {
  color: var(--work-background-red);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.work-background__lead {
  margin-top: var(--work-heading-gap);
  font-size: clamp(1.375rem, 6.2vw, 1.625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.58;
  letter-spacing: 0.12em;
}

.work-background__text {
  display: grid;
  gap: 28px;
  margin-top: var(--work-body-gap);
  font-size: var(--font-size-sm);
  line-height: var(--work-copy-line-height);
  letter-spacing: 0.04em;
}

.work-background__divider {
  display: none;
}

.work-background__points {
  display: grid;
  gap: 40px;
}

.design-point {
  display: grid;
  gap: 16px;
}

.design-point__number {
  color: var(--work-background-red);
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2.5rem, 11vw, 3rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.04em;
}

.design-point__title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.55;
}

.design-point__text {
  margin-top: 10px;
  font-size: var(--font-size-sm);
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.is-js-enabled .work-background [data-work-background-reveal],
.is-js-enabled .work-background [data-work-background-divider] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 640ms ease-out,
    transform 640ms ease-out;
}

.is-js-enabled .work-background .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-js-enabled .work-background [data-work-background-divider] {
  transform: scaleY(0);
  transform-origin: top;
}

.is-js-enabled .work-background [data-work-background-divider].is-in-view {
  transform: scaleY(1);
}

.work-web-design {
  --work-web-design-red: var(--work-hero-red, #c21f1a);

  color: #111111;
  background: var(--color-bg-soft);
}

.work-web-design__inner {
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: var(--work-section-space-start) var(--work-section-space-end);
}

.work-web-design__top,
.id-schedule-management {
  display: grid;
  gap: 42px;
}

.work-web-design__content,
.id-schedule-management__content,
.id-schedule-management__flow {
  min-width: 0;
}

.work-web-design__heading {
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2rem, 8.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.work-web-design__lead {
  max-width: 22em;
  margin-top: var(--work-heading-gap);
  font-size: clamp(1.375rem, 6.2vw, 1.625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.58;
  letter-spacing: 0.1em;
}

.work-web-design__text,
.id-schedule-management__text {
  display: grid;
  gap: 24px;
  max-width: 28em;
  margin-top: var(--work-body-gap);
  font-size: var(--font-size-sm);
  line-height: var(--work-copy-line-height);
  letter-spacing: 0.04em;
}

.work-web-design__top-visual,
.id-schedule-management__input,
.id-schedule-management__output {
  margin: 0;
}

.work-web-design__top-visual img,
.id-schedule-management__input img,
.id-schedule-management__output img {
  display: block;
  width: 100%;
  height: auto;
}

.work-web-design__top-visual {
  width: min(100%, 680px);
  margin-inline: auto;
}

.id-schedule-management {
  margin-top: 100px;
}

.id-schedule-management__label,
.id-schedule-management__caption strong {
  color: var(--work-web-design-red);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.id-schedule-management__title {
  margin-top: 8px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.id-schedule-management__text {
  margin-top: 38px;
}

.id-schedule-management__flow {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.id-schedule-management__input {
  width: min(100%, 520px);
}

.id-schedule-management__caption {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.id-schedule-management__caption strong {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
}

.id-schedule-management__transition {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-block: 28px 36px;
  text-align: center;
}

.id-schedule-management__transition p {
  color: var(--work-web-design-red);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.id-schedule-management__arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 44px;
}

.id-schedule-management__arrow::before,
.id-schedule-management__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
}

.id-schedule-management__arrow::before {
  top: 0;
  width: 2px;
  height: 32px;
  background: var(--work-web-design-red);
  transform: translateX(-50%);
}

.id-schedule-management__arrow::after {
  bottom: 1px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--work-web-design-red);
  border-bottom: 2px solid var(--work-web-design-red);
  transform: translateX(-50%) rotate(45deg);
}

.is-js-enabled .work-web-design [data-work-web-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .work-web-design .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 960px) {
  :root {
    --work-copy-line-height: 1.95;
  }

  .work-web-design__top {
    grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.25fr);
    gap: clamp(64px, 7vw, 112px);
    align-items: start;
  }

  .work-web-design__heading {
    font-size: clamp(2.5rem, 3.2vw, 2.875rem);
  }

  .work-web-design__lead {
    font-size: clamp(1.5625rem, 2vw, 1.875rem);
  }

  .work-web-design__text,
  .id-schedule-management__text {
    max-width: 26em;
    font-size: var(--font-size-md);
  }

  .work-web-design__top-visual {
    align-self: center;
    width: 100%;
    margin: clamp(12px, 2vw, 28px) clamp(-24px, -2vw, 0px) 0 0;
  }

  .id-schedule-management {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(64px, 7vw, 112px);
    align-items: start;
    margin-top: clamp(120px, 11vw, 160px);
  }

  .id-schedule-management__label,
  .id-schedule-management__caption strong {
    font-size: var(--font-size-md);
  }

  .id-schedule-management__title {
    margin-top: 6px;
    font-size: var(--font-size-md);
  }

  .id-schedule-management__flow {
    margin-top: 0;
  }

  .id-schedule-management__input {
    width: min(100%, 560px);
    transform: translateX(clamp(-12px, -1vw, 0px));
  }

  .id-schedule-management__caption,
  .id-schedule-management__transition p {
    font-size: var(--font-size-md);
  }

  .id-schedule-management__transition {
    margin-block: 26px 40px;
  }
}

.id-media-section {
  --id-paper-shadow: 0 10px 24px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);

  color: #111111;
  background: var(--color-bg-soft);
}

.id-media-section__inner {
  display: grid;
  gap: 104px;
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: var(--work-section-space-start) var(--work-section-space-end);
}

.id-motion,
.id-brand-tools,
.id-brand-tools__content {
  min-width: 0;
}

.id-motion {
  display: flex;
  flex-direction: column;
}

.id-media-section__heading {
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2rem, 8.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.id-media-section__lead {
  max-width: 22em;
  margin-top: var(--work-heading-gap);
  font-size: clamp(1.375rem, 6.2vw, 1.625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.58;
  letter-spacing: 0.1em;
}

.id-media-section__text {
  display: grid;
  gap: 22px;
  max-width: 28em;
  margin-top: var(--work-body-gap);
  font-size: var(--font-size-sm);
  line-height: var(--work-copy-line-height);
  letter-spacing: 0.04em;
}

.id-motion__device {
  position: relative;
  width: clamp(220px, 66vw, 260px);
  aspect-ratio: 260 / 470;
  margin: 42px auto 0;
}

.id-motion__device-viewport {
  display: contents;
}

.id-motion__screen {
  position: absolute;
  z-index: 1;
  top: 3.7%;
  right: 29%;
  bottom: 22.7%;
  left: 9.5%;
  overflow: hidden;
  background: #111111;
  border-radius: 20px;
}

.id-motion__video {
  display: block;
  width: 96%;
  height: 96%;
  margin: 2%;
  object-position: center;
  border-radius: 16px;
}

.id-motion__frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.id-motion__control {
  display: block;
  min-height: 44px;
  margin: 16px auto 0;
  padding: 8px 18px;
  color: var(--work-hero-red, #c21f1a);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.id-motion__control:hover {
  color: #ffffff;
  background: var(--work-hero-red, #c21f1a);
}

.id-motion__control.is-playing {
  color: #ffffff;
  background: var(--work-hero-red, #c21f1a);
}

.id-motion__control:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 3px;
}

.id-brand-tools {
  display: grid;
  gap: 32px;
}

.id-brand-tools__list {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
}

.id-brand-tools__list li {
  position: relative;
  padding-left: 0.9em;
}

.id-brand-tools__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.id-brand-tools__item {
  margin: 0;
}

.id-brand-tools__item img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: var(--id-paper-shadow);
}

.id-brand-tools__cards {
  display: grid;
  gap: 20px;
}

.id-brand-tools__cards .id-brand-tools__item {
  display: flex;
  align-items: stretch;
}

.id-brand-tools__cards .id-brand-tools__item img {
  height: 100%;
  object-fit: contain;
}

.is-js-enabled .id-media-section [data-id-media-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .id-media-section .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 959px) {
  .id-media-section {
    overflow-x: clip;
  }

  .id-media-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(72px, 12vw, 104px);
  }
}

@media (max-width: 639px) {
  .id-media-section__inner {
    gap: clamp(72px, 18vw, 88px);
  }

  .id-motion__device {
    order: 3;
    left: 61%;
    width: min(calc(100% + 36px), 390px);
    margin-top: 32px;
    margin-inline: 0;
    translate: -50% 0;
  }

  .id-motion__control {
    order: 2;
    align-self: center;
    margin-top: 24px;
  }

  .id-brand-tools__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .id-brand-tools {
    gap: 20px;
  }

  .id-brand-tools__item--01 {
    width: min(72%, 250px);
    margin-inline: auto;
  }

  .id-brand-tools__item--02 {
    width: 100%;
  }

  .id-brand-tools__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .id-brand-tools__cards .id-brand-tools__item {
    display: block;
    min-width: 0;
  }

  .id-brand-tools__cards .id-brand-tools__item img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .id-media-section__inner {
    gap: 0;
  }

  .id-motion {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(220px, 34vw, 260px);
    column-gap: clamp(28px, 5vw, 48px);
    align-items: start;
  }

  .id-motion__device-viewport {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    display: block;
    width: calc(100% + var(--page-gutter));
    overflow-x: clip;
  }

  .id-motion__device {
    width: calc((100% - var(--page-gutter)) * 1.25);
    margin: 0;
  }

  .id-motion__control {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    margin: 24px 0 0;
  }

  .id-motion .id-media-section__lead {
    font-size: clamp(0.875rem, 2.25vw, 1.25rem);
    white-space: nowrap;
  }

  .id-brand-tools {
    grid-template-columns: minmax(220px, 0.9fr) minmax(230px, 1fr);
    gap: 32px 40px;
    align-items: start;
  }

  .id-brand-tools__content {
    grid-column: 1;
    grid-row: 1;
  }

  .id-brand-tools__item--01 {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .id-brand-tools__item--02 {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }

  .id-brand-tools__cards {
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4px;
  }
}

@media (min-width: 960px) {
  .id-media-section__inner {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(64px, 7vw, 112px);
    align-items: start;
  }

  .id-media-section__heading {
    font-size: clamp(2.5rem, 3.2vw, 2.875rem);
  }

  .id-media-section__lead {
    font-size: clamp(1.5625rem, 2vw, 1.875rem);
  }

  .id-media-section__text {
    max-width: 26em;
    font-size: var(--font-size-md);
  }

  .id-motion__device {
    order: 3;
    width: clamp(260px, 20vw, 300px);
    margin-top: 48px;
    margin-left: clamp(8px, 2vw, 30px);
    margin-right: 0;
  }

  .id-motion__control {
    order: 2;
    align-self: flex-start;
    margin: 24px 0 0;
  }

  .id-brand-tools {
    grid-template-columns: minmax(220px, 0.9fr) minmax(230px, 1fr);
    gap: 40px 48px;
    align-items: start;
  }

  .id-brand-tools__content {
    grid-column: 1;
    grid-row: 1;
  }

  .id-brand-tools__item--01 {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .id-brand-tools__item--02 {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }

  .id-brand-tools__cards {
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 4px;
  }

  .id-brand-tools__list {
    margin-top: 24px;
    font-size: var(--font-size-md);
  }
}

.id-experience {
  --id-experience-red: var(--work-hero-red, #c21f1a);

  color: #111111;
  background: var(--color-bg-white);
}

.id-experience__inner {
  display: grid;
  gap: 48px;
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: var(--work-section-space-start) var(--work-section-space-end);
}

.id-experience__content,
.id-experience__visual,
.id-experience__cards {
  min-width: 0;
}

.id-experience__heading {
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2rem, 8.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.id-experience__lead {
  margin-top: var(--work-heading-gap);
  font-size: clamp(1.375rem, 6.2vw, 1.625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.58;
  letter-spacing: 0.1em;
}

.id-experience__text {
  display: grid;
  gap: 22px;
  max-width: 28em;
  margin-top: var(--work-body-gap);
  font-size: var(--font-size-sm);
  line-height: var(--work-copy-line-height);
  letter-spacing: 0.04em;
}

.id-experience__cards {
  display: grid;
  gap: 22px;
}

.id-experience__item {
  display: contents;
}

.id-experience__mobile-label,
.id-experience__mobile-connector {
  display: none;
}

.experience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 22px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.04);
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.experience-card__icon {
  display: block;
  width: 88px;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.experience-card__icon--design {
  width: 92px;
}

.experience-card__icon--promotion {
  width: 96px;
}

.experience-card__title {
  min-height: 1.3em;
  margin-top: 32px;
  font-family: "Oswald", var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.experience-card__text {
  min-height: 3.5em;
  margin-top: 38px;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.75;
}

.id-experience__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 36px);
  margin-top: 36px;
  color: var(--id-experience-red);
  font-size: clamp(0.875rem, 4vw, 1rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  white-space: nowrap;
}

.id-experience__flow-arrow {
  position: relative;
  flex: 1 1 44px;
  max-width: 76px;
  min-width: 28px;
  border-top: 2px dotted currentColor;
}

.id-experience__flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.is-js-enabled .id-experience [data-id-experience-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .id-experience .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 639px) {
  .id-experience__cards {
    --id-experience-mobile-offset: clamp(100px, 27vw, 108px);
    --id-experience-mobile-badge: 92px;

    display: block;
  }

  .id-experience__item {
    position: relative;
    display: block;
    margin-bottom: 56px;
  }

  .id-experience__item:last-child {
    margin-bottom: 0;
  }

  .id-experience__item .experience-card {
    position: relative;
    z-index: 1;
    width: calc(100% - var(--id-experience-mobile-offset));
    margin-left: var(--id-experience-mobile-offset);
    padding-inline: 14px;
  }

  .id-experience__mobile-label {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--id-experience-mobile-badge);
    aspect-ratio: 1;
    color: var(--id-experience-red);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-align: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.07);
    translate: 0 -50%;
  }

  .id-experience__mobile-connector {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: calc(var(--id-experience-mobile-badge) / 2);
    display: block;
    width: 3px;
    height: calc(100% + 56px);
    border-left: 3px dotted var(--id-experience-red);
  }

  .id-experience__mobile-connector::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    width: 14px;
    height: 14px;
    border-right: 4px solid var(--id-experience-red);
    border-bottom: 4px solid var(--id-experience-red);
    background: var(--color-bg-white);
    transform: translateY(-50%) rotate(45deg);
  }

  .id-experience__flow {
    display: none;
  }
}

@media (min-width: 640px) {
  .id-experience__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
  }

  .experience-card {
    min-height: 292px;
    padding: 28px 18px 26px;
  }

  .experience-card__text {
    margin-top: auto;
    padding-top: 36px;
  }

  .id-experience__flow {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr) clamp(16px, 2.4vw, 28px)
      minmax(0, 1fr) clamp(16px, 2.4vw, 28px)
      minmax(0, 1fr);
    gap: 0;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  }

  .id-experience__flow-step {
    text-align: center;
  }

  .id-experience__flow-arrow {
    width: clamp(56px, 8vw, 92px);
    min-width: 0;
    max-width: none;
    justify-self: center;
  }
}

@media (min-width: 960px) {
  .id-experience__inner {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(64px, 7vw, 112px);
    align-items: start;
  }

  .id-experience__heading {
    font-size: clamp(2.5rem, 3.2vw, 2.875rem);
  }

  .id-experience__lead {
    font-size: clamp(1.5625rem, 2vw, 1.875rem);
  }

  .id-experience__text {
    max-width: 26em;
    font-size: var(--font-size-md);
  }

  .id-experience__cards {
    gap: clamp(20px, 2.4vw, 36px);
  }

  .id-experience__flow {
    grid-template-columns:
      minmax(0, 1fr) clamp(20px, 2.4vw, 36px)
      minmax(0, 1fr) clamp(20px, 2.4vw, 36px)
      minmax(0, 1fr);
  }

  .experience-card {
    min-height: 310px;
    padding: 30px 20px 28px;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  .id-experience__inner {
    grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1.48fr);
    gap: 40px;
  }
}

.work-graphic {
  --work-graphic-red: var(--work-hero-red, #c21f1a);

  color: #111111;
  background: var(--color-bg-white);
}

.work-graphic__inner {
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: var(--work-section-space-start) var(--work-section-space-end);
}

.work-graphic__layout {
  display: grid;
  gap: 34px;
}

.work-graphic__content {
  display: contents;
}

.work-graphic__heading {
  order: 1;
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2rem, 8.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.work-graphic__lead {
  order: 2;
  margin-top: max(0px, calc(var(--work-heading-gap) - 34px));
  font-size: clamp(1.375rem, 6.2vw, 1.625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.58;
  letter-spacing: 0.12em;
}

.work-graphic__text {
  order: 3;
  margin-top: max(0px, calc(var(--work-body-gap) - 34px));
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--work-copy-line-height);
  letter-spacing: 0.04em;
}

.work-graphic__main {
  order: 4;
  justify-self: center;
  width: min(100%, 300px);
  margin: 6px auto 0;
}

.work-graphic__main-image {
  display: block;
  width: 100%;
  height: auto;
  transition:
    opacity 280ms ease-out,
    transform 280ms ease-out;
}

.work-graphic__main-image.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.work-graphic__select-label {
  order: 5;
  margin-top: 8px;
  color: var(--work-graphic-red);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.work-graphic__thumbs {
  display: flex;
  order: 6;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding: 0 20px 8px 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.work-graphic__thumbs::-webkit-scrollbar {
  display: none;
}

.work-graphic__thumb {
  box-sizing: border-box;
  display: block;
  flex: 0 0 clamp(76px, 20vw, 96px);
  width: clamp(76px, 20vw, 96px);
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #e8e8e6;
  opacity: 0.76;
  transition:
    border-color 200ms ease-out,
    opacity 200ms ease-out,
    transform 200ms ease-out;
}

.work-graphic__thumb {
  scroll-snap-align: start;
}

.work-graphic__thumb[aria-pressed="true"] {
  border-color: var(--work-graphic-red);
  opacity: 1;
}

.work-graphic__thumb:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 3px;
}

.work-graphic__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.is-js-enabled .work-graphic [data-work-graphic-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 640ms ease-out,
    transform 640ms ease-out;
}

.is-js-enabled .work-graphic .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.p-work-back {
  color: #111111;
  background: var(--color-bg-soft);
  border-block: 1px solid rgba(17, 17, 17, 0.2);
  padding-block: var(--work-next-space);
}

.p-work-back__inner {
  display: grid;
  grid-template-areas:
    "label label"
    "content arrow";
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--work-heading-gap) 20px;
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  min-block-size: 44px;
  margin-inline: auto;
  color: inherit;
  text-decoration: none;
}

.p-work-back__label {
  grid-area: label;
  color: var(--work-hero-red, #c21f1a);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.p-work-back__content {
  display: grid;
  grid-area: content;
  gap: 12px;
  min-width: 0;
  transition: transform var(--duration-base) var(--easing-standard);
}

.p-work-back__title {
  font-size: clamp(1.625rem, 6.2vw, 2rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.p-work-back__text {
  color: rgba(17, 17, 17, 0.74);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.p-work-back__arrow {
  grid-area: arrow;
  align-self: end;
  color: var(--work-hero-red, #c21f1a);
  font-size: clamp(2rem, 7vw, 2.5rem);
  line-height: 1;
  transition: transform var(--duration-base) var(--easing-standard);
}

.p-work-back__inner:hover .p-work-back__content,
.p-work-back__inner:focus-visible .p-work-back__content {
  transform: translateX(4px);
}

.p-work-back__inner:hover .p-work-back__arrow,
.p-work-back__inner:focus-visible .p-work-back__arrow {
  transform: translateX(8px);
}

@media (max-width: 639px) {
  .p-work-back__inner {
    grid-template-areas:
      "label"
      "content"
      "arrow";
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 20px;
  }

  .p-work-back__content {
    gap: 8px;
  }

  .p-work-back__arrow {
    align-self: start;
    justify-self: start;
  }
}

@media (min-width: 960px) {
  .p-work-back__inner {
    grid-template-areas: "label content arrow";
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(40px, 5vw, 72px);
  }

  .p-work-back__label {
    font-size: var(--font-size-sm);
  }

  .p-work-back__title {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
  }

  .p-work-back__text {
    font-size: var(--font-size-md);
  }

  .p-work-back__arrow {
    align-self: center;
    font-size: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-work-back__content,
  .p-work-back__arrow {
    transition: none;
  }

  .p-work-back__inner:hover .p-work-back__content,
  .p-work-back__inner:focus-visible .p-work-back__content,
  .p-work-back__inner:hover .p-work-back__arrow,
  .p-work-back__inner:focus-visible .p-work-back__arrow {
    transform: none;
  }
}

.footer {
  --footer-bg: #252525;
  --footer-text: rgba(255, 255, 255, 0.94);
  --footer-muted: rgba(255, 255, 255, 0.82);
  --footer-line: rgba(255, 255, 255, 0.72);
  --footer-red: var(--accent);

  overflow: hidden;
  color: var(--footer-text);
  background: var(--footer-bg);
}

.footer__inner {
  width: min(100% - clamp(48px, 20vw, 80px), var(--content-width));
  margin-inline: auto;
  padding-block: 48px 96px;
}

.footer__main {
  display: grid;
  gap: 26px;
}

.footer__name {
  font-size: clamp(1.5rem, 6.6vw, 1.625rem);
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.footer__role {
  margin-top: 44px;
  color: var(--footer-text);
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.footer__description {
  max-width: 300px;
  margin-top: 40px;
  color: var(--footer-text);
  font-size: clamp(0.8125rem, 3.5vw, 0.875rem);
  line-height: 1.58;
}

.footer__contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
  padding-bottom: 20px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-decoration: none;
  transition: color var(--duration-base) var(--easing-standard);
}

.footer__contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 1px;
  background: var(--footer-red);
  transform-origin: left;
  transition: transform var(--duration-base) var(--easing-standard);
}

.footer__contact-arrow {
  color: var(--footer-red);
  transition: transform var(--duration-base) var(--easing-standard);
}

.footer__contact:hover {
  color: var(--footer-text);
}

.footer__contact:hover::after {
  transform: scaleX(1.18);
}

.footer__contact:hover .footer__contact-arrow {
  transform: translateX(6px);
}

.footer__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 28px;
  background: var(--footer-line);
  transform-origin: left center;
}

.footer__profile + .footer__nav {
  padding-top: 28px;
  border-top: 1px solid var(--footer-line);
}

.footer__nav-list {
  display: grid;
  gap: 20px;
}

.footer__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-block-size: 44px;
  padding-block: 4px;
  color: var(--footer-text);
  font-size: var(--font-size-sm);
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color var(--duration-base) var(--easing-standard),
    transform var(--duration-base) var(--easing-standard);
}

.footer__nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 10px;
  height: 1px;
  background: var(--footer-red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity var(--duration-base) var(--easing-standard),
    transform var(--duration-base) var(--easing-standard);
}

.footer__nav-link:hover,
.footer__nav-link[aria-current="location"] {
  color: var(--footer-text);
  transform: translateX(4px);
}

.footer__nav-link:hover::before,
.footer__nav-link[aria-current="location"]::before {
  opacity: 1;
  transform: scaleX(1);
}

.footer__copyright {
  color: var(--footer-text);
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 28px;
  margin-top: 24px;
}

.footer__privacy {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--footer-text);
  font-size: var(--font-size-xs);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--duration-base) var(--easing-standard);
}

.footer__privacy:hover {
  color: var(--footer-red);
}

.is-js-enabled .footer [data-footer-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .footer .footer__divider {
  transform: scaleX(0);
  transition: transform 720ms ease-out;
}

.is-js-enabled .footer .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-js-enabled .footer .footer__divider.is-in-view {
  transform: scaleX(1);
}

.about {
  --about-bg: #111111;
  --about-text: rgba(255, 255, 255, 0.92);
  --about-muted: rgba(255, 255, 255, 0.72);
  --about-faint: rgba(255, 255, 255, 0.28);
  --about-line: rgba(255, 255, 255, 0.55);
  --about-red: var(--accent);

  overflow: hidden;
  color: var(--about-text);
  background: var(--about-bg);
}

.about__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: 32px 28px;
}

.about__label {
  position: relative;
  width: max-content;
  margin-inline: auto;
  padding-inline: 44px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: 1;
  letter-spacing: 0.05em;
}

.about__label::before,
.about__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--about-red);
  transform: translateY(-50%);
}

.about__label::before {
  left: 0;
}

.about__label::after {
  right: 0;
}

.about__layout {
  display: grid;
  gap: 36px;
  margin-top: 64px;
}

.about__title {
  font-size: var(--section-title-size-sp);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
  letter-spacing: var(--section-title-letter-spacing);
}

.about__description {
  display: grid;
  gap: 28px;
  margin-top: 34px;
  color: var(--about-muted);
  font-size: var(--font-size-sm);
  line-height: 1.86;
  letter-spacing: 0.03em;
}

.about__career {
  display: grid;
  gap: 10px;
}

.about__timeline {
  display: grid;
  gap: 16px;
}

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

.about__marker {
  display: grid;
  justify-items: center;
  grid-template-rows: 30px 1fr;
  min-height: 112px;
}

.about__number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--about-red);
  font-size: var(--font-size-xs);
  line-height: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.about__line {
  display: block;
  width: 1px;
  height: 100%;
  margin-top: 6px;
  background: var(--about-line);
  transform-origin: top;
}

.about__item-content,
.about__parallel-item {
  padding: 12px 12px 13px;
  border: 1px solid var(--about-faint);
  border-radius: 7px;
}

.about__item-title {
  color: var(--about-text);
  font-size: clamp(1.125rem, 5.2vw, 1.25rem);
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.about__item-role {
  margin-top: 8px;
  color: var(--about-red);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.about__item-description {
  margin-top: 10px;
  color: var(--about-muted);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.about__parallel {
  display: grid;
  gap: 14px;
  margin-top: 2px;
}

.about__parallel-label {
  position: relative;
  color: var(--about-red);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.about__parallel-items {
  display: grid;
  gap: 16px;
}

.about__parallel-item {
  position: relative;
}

.about__parallel-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.is-js-enabled .about [data-about-reveal],
.is-js-enabled .about [data-about-step],
.is-js-enabled .about [data-about-parallel] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .about .about__line {
  transform: scaleY(0);
  transition: transform 620ms ease-out;
}

.is-js-enabled .about .about__number {
  transform: scale(0.86);
  transition: transform 520ms ease-out;
}

.is-js-enabled .about .is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-js-enabled .about .is-in-view .about__line {
  transform: scaleY(1);
}

.is-js-enabled .about .is-in-view .about__number,
.is-js-enabled .about .about__number.is-in-view {
  transform: scale(1);
}

.is-js-enabled .about [data-about-reveal]:nth-child(1) {
  transition-delay: 0ms;
}

.is-js-enabled .about [data-about-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.is-js-enabled .about [data-about-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes hero-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hero-copy-slide-in {
  0% {
    opacity: 0;
    transform: translateX(100vw);
  }

  70% {
    opacity: 1;
    transform: translateX(-8px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.container {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.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;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

@media (min-width: 768px) {
  :root {
    --section-space: 112px;
    --global-header-height: var(--global-header-height-mobile);
  }

  body {
    padding-top: var(--global-header-height);
  }

  .site-header {
    inset: 0 0 auto;
    height: var(--global-header-height);
    border-top: 0;
  }

  .site-header__inner {
    width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
    min-height: var(--header-height-sp);
    padding-inline: 0;
  }

  .site-header__logo {
    font-size: var(--header-logo-size-sp);
  }

  .site-header__mobile-menu {
    padding-top: calc(96px + env(safe-area-inset-top));
  }

  .footer {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-space: 144px;
    --global-header-height: var(--global-header-height-desktop);
  }
}

@media (min-width: 1024px) {
  .hero {
    --hero-track-gap: 20px;
    --hero-poster-width: 198px;
    --hero-web-gap: 20px;
    --hero-web-image-height: 273px;
    --hero-label-offset: max(var(--page-gutter), calc((100% - var(--content-width)) / 2));

    padding-bottom: 31px;
  }

  .hero__label {
    padding-top: 45px;
  }

  .hero__marquee--posters {
    margin-top: 10px;
  }

  .hero__copy {
    width: min(100% - 80px, 1360px);
    margin-top: 17px;
    text-align: center;
  }

  .hero__title-en {
    font-size: clamp(4rem, 6.67vw, 6rem);
    line-height: 1;
  }

  .hero__title-ja {
    margin-top: 24px;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.05;
    white-space: nowrap;
  }

  .hero__sp-break {
    display: none;
  }

  .hero__marquee--web {
    margin-top: 14px;
  }

  .hero__web-label {
    margin-top: 8px;
  }

  .selected-project {
    --selected-project-entry-space: clamp(180px, 14vw, 220px);
    --selected-project-eyebrow-top: clamp(72px, 10svh, 104px);
    --selected-project-sticky-top: clamp(208px, 30svh, 344px);

    padding-block: var(--selected-project-entry-space) 0;
  }

  .selected-project__inner {
    width: min(100% - calc(var(--page-gutter) * 2), 1200px);
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    grid-template-rows: minmax(64px, auto) 1fr;
    align-items: start;
    gap: 48px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .selected-project__eyebrow {
    position: sticky;
    top: var(--selected-project-eyebrow-top);
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: start;
    justify-self: center;
    margin-bottom: 0;
  }

  .is-js-enabled .selected-project__sticky,
  .selected-project__sticky {
    position: sticky;
    top: var(--selected-project-sticky-top);
    min-height: auto;
    display: grid;
    align-items: start;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    transform: none;
  }

  .is-js-enabled .selected-project__content,
  .selected-project__content {
    display: grid;
  }

  .is-js-enabled .selected-project__mobile,
  .selected-project__mobile {
    display: none;
  }

  .selected-project__visual {
    grid-column: auto;
    grid-row: auto;
  }

  .selected-project__content {
    z-index: 3;
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 30svh;
    align-self: start;
  }

  .selected-project__mockups {
    width: min(100%, 760px);
    margin-inline: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .phone-mockup {
    right: 0;
    bottom: 23%;
    width: clamp(148px, 17vw, 230px);
  }

  .phone-mockup__screen {
    border-radius: 28px;
  }

  .selected-project__content {
    position: relative;
  }

  .selected-project__item {
    min-height: 100svh;
    align-content: start;
    opacity: 1;
    padding-block: 0 12svh;
  }

  .selected-project__meta {
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
    color: inherit;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .selected-project__number,
  .selected-project__title,
  .selected-project__category,
  .selected-project__description,
  .selected-project__link {
    transition:
      opacity 400ms var(--easing-standard),
      transform 400ms var(--easing-standard);
  }

  .selected-project__number,
  .selected-project__title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: var(--font-weight-bold);
  }

  .selected-project__title {
    display: inline-block;
    margin-top: 0;
    margin-left: 18px;
    padding-left: 24px;
    border-left: 1px solid currentColor;
  }

  .selected-project__category {
    margin-top: 44px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    line-height: 1.45;
  }

  .selected-project__description {
    margin-top: 28px;
    font-size: var(--font-size-md);
  }

  .selected-project__link {
    margin-top: 48px;
    padding: 0 8px 12px;
    color: inherit;
    font-size: var(--font-size-sm);
    letter-spacing: 0.18em;
    border-bottom: 0;
    box-shadow: 0 8px 8px -8px var(--selected-link-shadow);
  }

  .selected-project__link:hover {
    color: var(--header-hover);
    box-shadow: 0 10px 10px -8px var(--selected-link-shadow);
  }

  .selected-project__pagination {
    display: none;
    transform: none;
  }

  .about__inner {
    padding-block: 34px 104px;
  }

  .about__layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(64px, 7vw, 96px);
    margin-top: 92px;
  }

  .about__title {
    font-size: var(--section-title-size-pc);
    line-height: var(--section-title-line-height);
  }

  .about__description {
    max-width: 460px;
    margin-top: 68px;
    font-size: var(--font-size-md);
    line-height: 1.82;
  }

  .about__career {
    gap: 40px;
    padding-top: 27px;
  }

  .about__timeline {
    gap: 18px;
    max-width: 460px;
  }

  .about__item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .about__marker {
    min-height: 126px;
  }

  .about__item-content {
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .about__item-title {
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
  }

  .about__parallel {
    position: relative;
    gap: 18px;
    margin-top: -8px;
    padding: 32px 22px 34px;
    border: 1px solid var(--about-faint);
    border-radius: 7px;
  }

  .about__parallel-label {
    position: absolute;
    top: -11px;
    left: 54px;
    padding-inline: 6px;
    background: var(--about-bg);
  }

  .about__parallel-items {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .about__parallel-item {
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .about__parallel-item + .about__parallel-item {
    padding-left: 26px;
    border-left: 1px dotted var(--about-line);
  }

  .skills__inner {
    padding-block: 72px 110px;
  }

  .skills__label {
    margin-inline: auto;
    padding: 0 44px;
    text-align: center;
  }

  .skills__label::before,
  .skills__label::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: auto;
    width: 24px;
    height: 1px;
    background: var(--skills-red);
    transform: translateY(-50%);
    transform-origin: center;
  }

  .skills__label::before {
    left: 0;
  }

  .skills__label::after {
    right: 0;
    left: auto;
  }

  .is-js-enabled .skills .skills__label::before,
  .is-js-enabled .skills .skills__label::after {
    transform: translateY(-50%) scaleX(0);
  }

  .is-js-enabled .skills .skills__label.is-in-view::before,
  .is-js-enabled .skills .skills__label.is-in-view::after {
    transform: translateY(-50%) scaleX(1);
  }

  .skills__intro {
    margin-top: 48px;
  }

  .skills__title {
    font-size: var(--section-title-size-pc);
    line-height: var(--section-title-line-height);
  }

  .skills__lead {
    margin-top: 36px;
    font-size: var(--font-size-md);
    line-height: 1.68;
  }

  .skills__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(24px, 2.2vw, 32px);
    margin-top: 44px;
  }

  .skills-card {
    grid-template-rows: minmax(250px, auto) 1fr;
    min-height: 634px;
    padding: 36px 14px 42px;
    transition:
      transform var(--duration-base) var(--easing-standard),
      box-shadow var(--duration-base) var(--easing-standard);
  }

  .skills-card:hover {
    transform: translateY(-3px);
    box-shadow: 4px 8px 14px rgba(21, 21, 21, 0.14);
  }

  .skills-card__description {
    line-height: 1.65;
  }

  .skills-card__icons img {
    height: 22px;
  }

  .skills-card__list {
    margin-top: 48px;
  }

  .service__inner {
    padding-block: 120px 132px;
  }

  .service__intro {
    margin-top: 70px;
  }

  .service__title {
    max-width: 820px;
    font-size: var(--section-title-size-pc);
    line-height: var(--section-title-line-height);
  }

  .service__description {
    max-width: 500px;
    margin-top: 74px;
    font-size: var(--font-size-md);
    line-height: 1.7;
  }

  .service__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(36px, 3.5vw, 48px);
    order: 3;
    margin-top: 40px;
  }

  .service-card {
    min-height: 430px;
    padding: 18px 26px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
    transition:
      transform var(--duration-base) var(--easing-standard),
      box-shadow var(--duration-base) var(--easing-standard);
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
  }

  .is-js-enabled .service .service-card.is-in-view:hover {
    transform: translateY(-6px);
  }

  .service-card:hover .service-card__number::after {
    transform: scaleX(1.35);
  }

  .is-js-enabled .service .service-card.is-in-view:hover .service-card__number::after {
    transform: scaleX(1.35);
  }

  .service-card:hover .service-card__icon {
    transform: translateY(-2px);
  }

  .is-js-enabled .service .service-card.is-in-view:hover .service-card__icon {
    transform: translateY(-2px);
  }

  .service-card__header {
    min-height: 94px;
  }

  .service-card__title {
    margin-top: 22px;
    font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  }

  .service-card__icon {
    width: clamp(70px, 6vw, 82px);
  }

  .service-card__description {
    margin-top: 24px;
    font-size: var(--font-size-md);
    line-height: 1.65;
  }

  .service-card__list {
    gap: 12px;
    margin-top: auto;
    padding-top: 34px;
    font-size: var(--font-size-sm);
  }

  .service__cta {
    order: 4;
    margin-top: 66px;
  }

  .service__cta-link {
    width: min(100%, 460px);
  }

  .contact-cta__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(64px, 7vw, 88px);
  }

  .contact-cta .contact-cta__heading {
    margin-bottom: 56px;
  }

  .contact-cta__title {
    max-width: 560px;
    font-size: clamp(3.25rem, 4.4vw, 3.75rem);
    line-height: 1.38;
  }

  .contact-cta__description {
    margin-top: clamp(72px, 6vw, 84px);
    font-size: var(--font-size-md);
    line-height: 1.95;
  }

  .contact-cta__card {
    min-height: 500px;
    justify-content: center;
    padding: 38px clamp(40px, 5vw, 64px) 48px;
  }

  .contact-cta__card-title {
    margin-top: 24px;
    font-size: clamp(1.6875rem, 2.2vw, 2rem);
  }

  .contact-cta__divider {
    margin-top: 28px;
  }

  .contact-cta__info {
    margin-top: 34px;
  }

  .contact-cta__info-item {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  }

  .contact-cta__button {
    min-height: 82px;
    margin-top: 40px;
    padding-inline: clamp(24px, 3vw, 40px);
    font-size: clamp(1.1875rem, 1.7vw, 1.375rem);
  }

  .contact-cta__arrow,
  .contact-cta__arrow::before {
    width: 38px;
  }

  .works-page {
    --works-bg: #f6f6f4;
    --works-text: #101010;
    --works-muted: #222222;
    --works-line: rgba(0, 0, 0, 0.7);
    --works-border: rgba(0, 0, 0, 0.65);
  }

  .works-hero {
    padding-block: 82px 70px;
  }

  .works-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    align-items: start;
    gap: clamp(64px, 7vw, 96px);
  }

  .works-hero__title {
    font-size: clamp(3.5rem, 4.4vw, 4rem);
  }

  .works-hero__subtitle {
    margin-top: 18px;
    font-size: clamp(1.125rem, 1.45vw, 1.375rem);
  }

  .works-hero__description {
    max-width: 500px;
    padding-top: 8px;
    font-size: var(--font-size-md);
    line-height: 1.95;
    letter-spacing: 0.08em;
  }

  .works-section + .works-section {
    margin-top: 104px;
  }

  .works-section__heading {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 56px;
    padding-top: 6px;
  }

  .works-section__title {
    font-size: clamp(1.375rem, 1.9vw, 1.625rem);
    letter-spacing: 0.25em;
  }

  .works-section__subtitle {
    font-size: var(--font-size-sm);
  }

  .works-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 84px clamp(48px, 4.4vw, 56px);
    margin-top: 68px;
  }

  .project-card {
    min-height: 386px;
  }

  .project-card:hover {
    transform: translateY(-4px);
  }

  .is-js-enabled .works-page .project-card.is-in-view:hover {
    transform: translateY(-4px);
  }

  .project-card:hover .project-card__image {
    transform: scale(1.02);
  }

  .project-card__category {
    margin-top: 16px;
    font-size: var(--font-size-xs);
  }

  .project-card__title {
    margin-top: 15px;
    font-size: var(--font-size-lg);
  }

  .project-card__description {
    margin-top: 18px;
    font-size: var(--font-size-sm);
    line-height: 1.72;
  }

  .project-card__link {
    margin-top: auto;
    padding-top: 24px;
    padding-bottom: 6px;
    font-size: var(--font-size-xs);
  }

  .project-card__link:hover::after {
    transform: scaleX(1.16);
  }

  .project-card__link:hover .project-card__link-arrow {
    transform: translateX(6px);
  }

  .works-contact {
    display: flex;
    justify-content: center;
    padding-block: 86px 96px;
  }

  .works-contact__link {
    width: min(100%, 390px);
    min-height: 56px;
  }

  .work-hero {
    min-height: 880px;
  }

  .work-hero__inner {
    grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
    gap: clamp(44px, 5vw, 76px);
    min-height: 880px;
    padding-block: 32px 70px;
  }

  .work-hero__content {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0;
  }

  .work-hero__overview {
    grid-column: 1;
    grid-row: 2;
  }

  .work-hero__breadcrumb-list {
    font-size: var(--font-size-md);
  }

  .work-hero__logo {
    margin-top: 44px;
    width: clamp(108px, 9.6vw, 132px);
  }

  .work-hero__category {
    margin-top: 34px;
    font-size: var(--font-size-sm);
  }

  .work-hero__title {
    margin-top: -134px;
    font-size: clamp(2.75rem, 3.4vw, 3rem);
  }

  .work-hero__text {
    max-width: 460px;
    margin-top: 28px;
    font-size: var(--font-size-md);
    line-height: 1.86;
  }

  .work-hero__meta {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 24px;
    max-width: 420px;
    margin-top: 48px;
    padding-top: 28px;
  }

  .work-hero__meta dt {
    font-size: var(--font-size-md);
  }

  .work-hero__meta dd {
    font-size: var(--font-size-lg);
  }

  .work-hero__visual {
    --hero-stage-width: 700px;
    --hero-stage-height: 520px;
    --hero-stage-ratio: 700 / 520;

    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    width: 100%;
    max-width: 700px;
    aspect-ratio: var(--hero-stage-ratio);
    margin: 0 calc((100vw - min(100vw, 1240px)) / -2) 0 -70px;
  }

  .work-hero__mockup-scale {
    width: 100%;
    max-width: 700px;
  }

  .work-hero__visual-bg {
    inset: 0 0 -9.211% 4.667%;
  }

  .work-background__heading {
    font-size: clamp(2.625rem, 3.2vw, 3rem);
    line-height: 1.2;
  }

  .work-background__layout {
    grid-template-columns: minmax(0, 0.45fr) 1px minmax(0, 0.5fr);
    align-items: stretch;
    gap: clamp(56px, 6vw, 88px);
  }

  .work-background__divider {
    display: block;
    width: 1px;
    min-height: 100%;
    background-image: linear-gradient(to bottom, var(--work-background-line) 55%, transparent 0);
    background-position: left top;
    background-repeat: repeat-y;
    background-size: 1px 4px;
  }

  .work-background__lead {
    font-size: clamp(1.75rem, 2.15vw, 2rem);
    line-height: 1.58;
    letter-spacing: 0.15em;
  }

  .work-background__text {
    gap: 30px;
    font-size: var(--font-size-md);
  }

  .work-background__points {
    gap: 54px;
  }

  .design-point {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .design-point__number {
    font-size: clamp(2.75rem, 3.3vw, 3rem);
  }

  .design-point__title {
    font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
    line-height: 1.5;
  }

  .design-point__text {
    margin-top: 8px;
    font-size: var(--font-size-sm);
    line-height: 1.85;
  }

  .work-graphic__layout {
    grid-template-columns: minmax(0, 0.44fr) minmax(440px, 0.5fr);
    align-items: stretch;
    gap: clamp(72px, 7vw, 96px);
  }

  .work-graphic__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .work-graphic__heading {
    font-size: clamp(2.625rem, 3.2vw, 3rem);
    line-height: 1.2;
  }

  .work-graphic__lead {
    margin-top: var(--work-heading-gap);
    font-size: clamp(1.75rem, 2.15vw, 2rem);
    line-height: 1.58;
    letter-spacing: 0.15em;
  }

  .work-graphic__text {
    margin-top: var(--work-body-gap);
    font-size: var(--font-size-md);
  }

  .work-graphic__select-label {
    margin-top: 30px;
    font-size: var(--font-size-md);
  }

  .work-graphic__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 24px);
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    margin-top: 22px;
  }

  .work-graphic__thumb {
    flex: initial;
    width: auto;
  }

  .work-graphic__thumb:hover {
    opacity: 1;
    transform: translateY(-3px);
  }

  .work-graphic__main {
    display: flex;
    align-self: stretch;
    justify-content: flex-end;
    justify-self: end;
    width: min(100%, 600px);
    margin: 0;
  }

  .work-graphic__main-image {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .footer__inner {
    width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
    padding-block: 112px 60px;
  }

  .footer__main {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: clamp(80px, 8vw, 120px);
  }

  .footer__name {
    font-size: clamp(3rem, 3.6vw, 3.25rem);
  }

  .footer__role {
    margin-top: 52px;
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
  }

  .footer__description {
    max-width: 650px;
    margin-top: 44px;
    font-size: clamp(1.125rem, 1.4vw, 1.25rem);
    line-height: 1.55;
  }

  .footer__contact {
    gap: 24px;
    margin-top: 50px;
    padding-bottom: 8px;
    font-size: clamp(1.375rem, 1.8vw, 1.5rem);
    font-weight: var(--font-weight-regular);
  }

  .footer__contact::after {
    width: 174px;
  }

  .footer__profile + .footer__nav {
    padding-top: 0;
    border-top: 0;
  }

  .footer__nav-list {
    gap: 0;
    min-width: 240px;
  }

  .footer__nav-link {
    font-size: clamp(1.5rem, 1.9vw, 1.6875rem);
    line-height: 1.45;
    letter-spacing: 0.16em;
  }

  .footer__divider {
    margin-top: 34px;
  }

  .footer__copyright {
    font-size: clamp(1.125rem, 1.4vw, 1.25rem);
  }

  .footer__bottom {
    margin-top: 40px;
  }

  .footer__privacy {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }

  .site-header__inner {
    min-height: var(--header-height-pc);
  }

  .site-header__logo {
    font-size: var(--header-logo-size-pc);
  }

  .site-header__nav {
    display: block;
  }

  .site-header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--header-nav-gap);
  }

  .site-header__nav-link {
    display: inline-block;
    font-size: var(--header-link-size);
  }

  .site-header__menu-button,
  .site-header__mobile-menu {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .work-graphic__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: clamp(24px, 4vw, 40px);
  }

  .work-graphic__content {
    display: flex;
    flex-direction: column;
    align-self: end;
    min-width: 0;
  }

  .work-graphic__heading {
    font-size: clamp(2.25rem, 5vw, 2.625rem);
  }

  .work-graphic__lead {
    margin-top: var(--work-heading-gap);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
  }

  .work-graphic__text {
    margin-top: var(--work-body-gap);
    font-size: var(--font-size-md);
  }

  .work-graphic__select-label {
    margin-top: 26px;
    font-size: var(--font-size-md);
  }

  .work-graphic__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.8vw, 18px);
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    margin-top: 18px;
  }

  .work-graphic__thumb {
    flex: initial;
    width: auto;
  }

  .work-graphic__main {
    display: block;
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .work-graphic__main-image {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

/* The browser viewport loses a few pixels to its vertical scrollbar. */
@media (min-width: 760px) and (max-width: 842px) {
  .work-graphic__heading {
    font-size: 1.875rem;
    white-space: nowrap;
  }

  .work-graphic__lead {
    font-size: clamp(1rem, 2.3vw, 1.125rem);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .work-graphic__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: clamp(24px, 4vw, 56px);
  }

  .work-graphic__content,
  .work-graphic__main {
    align-self: end;
  }

  .work-graphic__main {
    display: block;
  }

  .work-graphic__main-image {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

@media (min-width: 1440px) {
  :root {
    --content-width: 1200px;
    --section-space: 160px;
  }

  .work-graphic__layout {
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
    gap: 80px;
  }

  .work-graphic__main {
    width: 100%;
    max-width: none;
  }
}

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

  .hero__marquee-track,
  .hero__marquee-track--reverse,
  .hero__copy {
    animation: none !important;
    transform: translateX(0);
  }

  .laptop-mockup__image,
  .phone-mockup__image {
    animation: none !important;
    transform: translateY(0) !important;
  }

  .is-js-enabled .about [data-about-reveal],
  .is-js-enabled .about [data-about-step],
  .is-js-enabled .about [data-about-parallel],
  .is-js-enabled .about .about__line,
  .is-js-enabled .about .about__number,
  .is-js-enabled .skills [data-skills-reveal],
  .is-js-enabled .skills [data-skills-card],
  .is-js-enabled .skills .skills__label::before,
  .is-js-enabled .skills .skills__label::after,
  .is-js-enabled .skills .skills-card__number::after,
  .is-js-enabled .skills .skills-card__icons img,
  .is-js-enabled .service [data-service-reveal],
  .is-js-enabled .service [data-service-card],
  .is-js-enabled .service .service__label::before,
  .is-js-enabled .service .service__label::after,
  .is-js-enabled .service .service-card__number::after,
  .is-js-enabled .service .service-card__icon,
  .is-js-enabled .contact-cta [data-contact-cta-reveal],
  .is-js-enabled .work-background [data-work-background-reveal],
  .is-js-enabled .work-background [data-work-background-divider],
  .is-js-enabled .work-web-design [data-work-web-reveal],
  .is-js-enabled .work-graphic [data-work-graphic-reveal],
  .is-js-enabled .id-media-section [data-id-media-reveal],
  .is-js-enabled .id-experience [data-id-experience-reveal],
  .is-js-enabled .footer [data-footer-reveal],
  .is-js-enabled .footer .footer__divider {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .contact-cta__card,
  .contact-cta__button,
  .contact-cta__arrow {
    transition: none !important;
  }

  .is-js-enabled .work-hero__content > *,
  .is-js-enabled .work-hero__overview > *,
  .is-js-enabled .work-hero__visual-bg,
  .is-js-enabled .work-hero__piece-wrap {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }

  .is-js-enabled .work-hero__content > *,
  .is-js-enabled .work-hero__overview > * {
    transform: none !important;
  }

  .id-motion__video {
    animation: none !important;
  }
}

/* TSGYM detail hero */
.work-detail-page--tsgym {
  --tsgym-yellow: #e6b700;
  --tsgym-yellow-text: #8a6900;
  --tsgym-detail-section-half-space-pc: 72px;
  --tsgym-web-tier-space-pc: clamp(34px, calc(10vw - 68.4px), 72px);
}

.work-hero--tsgym {
  --work-hero-red: var(--tsgym-yellow);

  background: #f3f3f1 url("../assets/images/WORKS/iD_Bg.webp") center / cover no-repeat;
}

.work-hero--tsgym .work-hero__category {
  color: #111111;
}

.work-hero--tsgym .work-hero__visual-stage {
  isolation: isolate;
}

.work-hero--tsgym .work-hero__visual-crop,
.work-hero--tsgym .work-hero__visual-poster {
  position: absolute;
  display: block;
  pointer-events: none;
}

.work-hero--tsgym .work-hero__motion,
.work-hero--tsgym .work-hero__motion img {
  display: block;
  width: 100%;
  height: auto;
}

.work-hero--tsgym .work-hero__visual-crop {
  overflow: hidden;
}

.work-hero--tsgym .work-hero__visual-crop .work-hero__motion img {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: none;
}

.work-hero--tsgym .work-hero__visual-bg {
  inset: 0 auto auto 14.474%;
  z-index: 0;
  width: 53.289%;
  height: auto;
  overflow: visible;
}

.work-hero--tsgym .work-hero__visual-bg .work-hero__motion img {
  position: static;
}

.work-hero--tsgym .work-hero__visual-poster {
  top: 1.754%;
  left: 40.895%;
  z-index: 2;
  width: 68%;
}

.work-hero--tsgym .work-hero__motion--poster {
  position: relative;
  aspect-ratio: 1114 / 1300;
}

.work-hero--tsgym .work-hero__motion .tsgym-hero__poster-image {
  position: absolute;
  top: 7.5%;
  left: 14.2%;
  width: 71.6%;
  max-width: none;
  transform: rotate(19deg);
  transform-origin: center;
}

.work-hero--tsgym .work-hero__visual-price {
  top: 84%;
  left: 28.947%;
  z-index: 1;
  width: 39.474%;
  height: 31%;
}

.work-hero--tsgym .work-hero__visual-price img {
  top: -275%;
}

.work-hero--tsgym .work-hero__meta {
  border-top-color: #d9aa00;
}

.work-hero--tsgym .work-hero__motion--bg {
  --hero-final-opacity: 0.23;
  opacity: var(--hero-final-opacity);
}

.work-hero--tsgym .work-hero__motion--price {
  --hero-final-opacity: 0.11;
  height: 100%;
  opacity: var(--hero-final-opacity);
}

.work-hero--tsgym .work-hero__visual-bg,
.work-hero--tsgym .work-hero__visual-price {
  opacity: 1;
}

.is-js-enabled .work-hero--tsgym .work-hero__visual-bg {
  animation: none;
}

.is-js-enabled .work-hero--tsgym .work-hero__motion {
  animation-duration: 780ms;
  animation-fill-mode: both;
  animation-timing-function: var(--work-hero-ease);
}

.is-js-enabled .work-hero--tsgym .work-hero__motion--bg {
  animation-name: tsgym-hero-bg-in;
  animation-delay: 240ms;
}

.is-js-enabled .work-hero--tsgym .work-hero__motion--poster {
  animation-name: tsgym-hero-poster-in;
  animation-delay: 520ms;
}

.is-js-enabled .work-hero--tsgym .work-hero__motion--price {
  animation-name: tsgym-hero-price-in;
  animation-delay: 1560ms;
}

@media (min-width: 481px) and (max-width: 1023px) {
  .work-hero--tsgym .work-hero__visual-bg {
    height: 100%;
    overflow: hidden;
  }

  .work-hero--tsgym .work-hero__visual-poster,
  .work-hero--tsgym .work-hero__visual-price {
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 480px) {
  .work-hero--tsgym {
    min-height: 0;
  }

  .work-hero--tsgym .work-hero__inner {
    gap: 24px;
    min-height: 0;
    padding-block: 28px 48px;
  }

  .work-hero--tsgym .work-hero__logo {
    margin-top: 28px;
  }

  .work-hero--tsgym .work-hero__category {
    margin-top: 24px;
  }

  .work-hero--tsgym .work-hero__visual {
    --hero-stage-width: 390px;
    --hero-stage-height: 230px;
    --hero-stage-ratio: 390 / 230;

    width: 100%;
    height: 230px;
    aspect-ratio: auto;
  }

  .work-hero--tsgym .work-hero__mockup-scale {
    width: min(100%, 342px);
    height: 230px;
    aspect-ratio: auto;
  }

  .work-hero--tsgym .work-hero__visual-bg {
    top: 0;
    left: 12%;
    width: 55%;
    height: 210px;
    overflow: hidden;
  }

  .work-hero--tsgym .work-hero__visual-poster {
    top: 0;
    left: 38%;
    width: 62%;
  }

  .work-hero--tsgym .work-hero__piece-wrap--laptop {
    top: -4px;
    left: 9%;
    width: 82%;
  }

  .work-hero--tsgym .work-hero__piece-wrap--phone {
    top: 42%;
    left: 73%;
    width: 22%;
  }

  .work-hero--tsgym .work-hero__visual-price {
    display: none;
  }

  .work-hero--tsgym .work-hero__overview {
    margin-top: 16px;
  }

  .work-hero--tsgym .work-hero__title {
    margin-top: 0;
  }

  .work-hero--tsgym .work-hero__text {
    margin-top: 22px;
  }

  .work-hero--tsgym .work-hero__meta {
    gap: 20px;
    margin-top: 22px;
    padding-top: 22px;
  }

}

@keyframes tsgym-hero-bg-in {
  from {
    opacity: 0;
    transform: translate3d(0, -32px, 0) scale(0.985);
  }

  to {
    opacity: var(--hero-final-opacity);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tsgym-hero-poster-in {
  from {
    opacity: 0;
    transform: translate3d(88px, -72px, 0) rotate(8deg) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes tsgym-hero-price-in {
  from {
    opacity: 0;
    transform: translate3d(0, 64px, 0) scale(0.985);
  }

  to {
    opacity: var(--hero-final-opacity);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .work-hero--tsgym .work-hero__motion {
    opacity: var(--hero-final-opacity, 1) !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* IDX detail hero */
.work-detail-page--idx {
  --idx-green: #009344;
  --idx-green-text: #00823c;
}

.work-hero--idx {
  --work-hero-red: var(--idx-green);

  background: #f6f6f4 url("../assets/images/WORKS/iD_Bg.webp") center / cover no-repeat;
}

.work-hero--idx .work-hero__inner {
  row-gap: 34px;
}

.work-hero--idx .idx-hero__logo {
  width: clamp(92px, 25vw, 102px);
}

.work-hero--idx .work-hero__title {
  margin-top: 0;
}

.work-hero--idx .work-hero__category {
  color: var(--idx-green-text);
}

.idx-hero__summary {
  display: grid;
  gap: 5px;
  max-width: 35em;
  margin-top: 28px;
  padding-left: 1.4em;
  font-size: clamp(0.875rem, 3.8vw, 0.9375rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  letter-spacing: 0.02em;
  list-style: disc;
}

.idx-hero__summary li {
  padding-left: 0.15em;
}

.work-hero--idx .work-hero__meta {
  max-width: 430px;
}

.work-hero--idx .work-hero__meta dd {
  white-space: nowrap;
}

.idx-hero__collage {
  position: absolute;
  inset: 10px 0 auto;
  z-index: 0;
  height: 190px;
  overflow: hidden;
  opacity: 0.58;
}

.idx-hero__collage-image {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}

.idx-hero__collage-image--brands {
  top: 0;
  left: -3%;
  width: 58%;
}

.idx-hero__collage-image--interview {
  top: 0;
  left: 52%;
  width: 58%;
}

.idx-hero__collage-image--shops {
  top: 88px;
  left: 20%;
  width: 64%;
}

.is-js-enabled .work-hero--idx .idx-hero__collage {
  opacity: 0;
  animation: idx-hero-collage-in 780ms var(--work-hero-ease) 240ms forwards;
}

@keyframes idx-hero-collage-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 0.58;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .work-hero--idx {
    min-height: 0;
  }

  .work-hero--idx .work-hero__logo {
    margin-top: 30px;
  }

  .work-hero--idx .work-hero__category {
    margin-top: 24px;
    font-size: 0.75rem;
  }

  .work-hero--idx .work-hero__overview {
    margin-top: 2px;
  }

  .idx-hero__summary {
    gap: 8px;
    margin-top: 24px;
    font-size: 0.875rem;
    line-height: 1.75;
  }

  .work-hero--idx .work-hero__meta {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 12px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .work-hero--idx .work-hero__meta dd {
    margin-top: 12px;
    font-size: 1rem;
  }

  .work-hero--idx .work-hero__meta-item:first-child dd {
    white-space: normal;
  }
}

@media (min-width: 481px) and (max-width: 1023px) {
  .work-hero--idx .work-hero__overview {
    margin-top: 22px;
  }

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

@media (min-width: 1024px) {
  .work-hero--idx {
    min-height: max(736px, calc(100svh - var(--global-header-height)));
  }

  .work-hero--idx .work-hero__inner {
    grid-template-rows: auto 1fr;
    row-gap: 70px;
    min-height: max(736px, calc(100svh - var(--global-header-height)));
    padding-block: 32px 54px;
  }

  .work-hero--idx .work-hero__logo {
    width: 125px;
    margin-top: 30px;
  }

  .work-hero--idx .work-hero__category {
    margin-top: 26px;
    font-size: 0.8125rem;
  }

  .idx-hero__summary {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .work-hero--idx .work-hero__meta {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 67px;
    width: 100%;
    max-width: 430px;
    margin-top: 44px;
    padding-top: 30px;
  }

  .work-hero--idx .work-hero__meta dt {
    font-size: 1rem;
  }

  .work-hero--idx .work-hero__meta dd {
    margin-top: 14px;
    font-size: 1.0625rem;
    font-weight: var(--font-weight-medium);
  }

  .idx-hero__collage {
    inset: 66px 0 auto;
    height: 390px;
    opacity: 0.58;
  }

  .idx-hero__collage-image--brands {
    left: 0;
    width: 57%;
  }

  .idx-hero__collage-image--interview {
    left: 62%;
    width: 48%;
  }

  .idx-hero__collage-image--shops {
    top: 150px;
    left: 12%;
    width: 49%;
  }

}

@media (min-width: 1024px) and (max-width: 1199px) {
  .idx-hero__collage {
    inset: 70px 0 auto;
    height: 330px;
  }
}

@media (min-width: 1024px) and (max-width: 1099px) {
  .work-hero--idx .idx-hero__laptop {
    left: 12.8%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .work-hero--idx .idx-hero__collage {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .is-js-enabled .work-hero--idx .idx-hero__collage {
    opacity: 0.58;
  }
}

/* IDX background & issues */
.work-background--idx {
  --work-background-red: var(--idx-green);
}

.work-background--idx .work-background__inner {
  width: min(100% - calc(var(--page-gutter) * 2), 1240px);
}

.work-background--idx .work-background__label {
  color: var(--idx-green-text);
  font-size: 1rem;
}

.work-background--idx .work-background__lead {
  max-width: 560px;
  font-size: clamp(1.5rem, 6.7vw, 1.75rem);
  line-height: 1.45;
}

.work-background--idx .work-background__text {
  gap: 26px;
  max-width: 560px;
  font-size: 0.875rem;
}

.work-background--idx .work-background__points {
  gap: 40px;
}

.idx-issues {
  display: grid;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-background--idx .design-point {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.work-background--idx .design-point__number {
  font-size: 2.25rem;
}

.work-background--idx .design-point__title {
  font-size: 1rem;
}

.work-background--idx .design-point__text {
  max-width: 420px;
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (max-width: 1199px) {
  .work-background--idx .work-background__lead br {
    display: none;
  }
}

@media (max-width: 480px) {
  .work-background--idx .work-background__heading {
    font-size: clamp(1.75rem, 7.7vw, 1.875rem);
    line-height: 1.2;
  }
}

@media (min-width: 1024px) {
  .work-background--idx .work-background__layout {
    grid-template-columns: minmax(0, 560px) 1px minmax(0, 1fr);
    gap: 80px;
  }

  .work-background--idx .work-background__label {
    font-size: 1.125rem;
  }

  .work-background--idx .work-background__lead {
    font-size: 1.75rem;
    line-height: 1.45;
  }

  .work-background--idx .work-background__text {
    gap: 26px;
    font-size: 1rem;
  }

  .work-background--idx .work-background__points {
    gap: 42px;
  }

  .work-background--idx .design-point {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 28px;
  }

  .work-background--idx .design-point__number {
    font-size: 2.5rem;
  }

  .work-background--idx .design-point__title {
    font-size: 1.125rem;
  }

  .work-background--idx .design-point__text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .work-background--idx .work-background__layout {
    grid-template-columns: minmax(0, 1.15fr) 1px minmax(0, 1fr);
    gap: 48px;
  }
}

/* IDX web design */
.work-web-design--idx {
  --work-web-design-red: var(--idx-green);

  overflow-x: hidden;
  overflow-x: clip;
}

.work-web-design--idx .work-web-design__inner {
  width: min(100% - calc(var(--page-gutter) * 2), 1240px);
}

.work-web-design--idx .work-web-design__lead {
  max-width: 390px;
}

.work-web-design--idx .work-web-design__text {
  max-width: 390px;
}

.idx-web-points {
  display: grid;
  gap: 52px;
  margin: 84px 0 0;
  padding: 0;
  list-style: none;
}

.idx-web-point {
  min-width: 0;
}

.idx-web-point__image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.idx-web-point__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 758 / 796;
  object-fit: contain;
}

.idx-web-point__copy {
  position: relative;
  margin-top: 24px;
}

.idx-web-point__heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.idx-web-point__number {
  color: var(--work-web-design-red);
  font-family: "Oswald", var(--font-sans);
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.03em;
}

.idx-web-point__title {
  font-size: 1.0625rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.idx-web-point__text {
  margin-top: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .work-web-design--idx .work-web-design__lead br {
    display: none;
  }

  .work-web-design--idx .work-web-design__top-visual {
    transform: translateX(clamp(18px, 6vw, 24px));
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .idx-web-point {
    width: min(100%, 520px);
    margin-inline: auto;
  }
}

@media (min-width: 960px) and (max-width: 1023px) {
  .work-web-design--idx .work-web-design__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .work-web-design--idx .work-web-design__top-visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .work-web-design--idx .work-web-design__top {
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(60px, 5.5vw, 80px);
  }

  .work-web-design--idx .work-web-design__lead {
    font-size: 1.75rem;
    line-height: 1.45;
  }

  .work-web-design--idx .work-web-design__text {
    font-size: 1rem;
  }

  .work-web-design--idx .work-web-design__top-visual {
    width: 100%;
    margin-top: 18px;
    margin-right: 0;
  }

  .idx-web-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 88px;
  }

  .idx-web-point__copy {
    margin-top: 26px;
  }

  .idx-web-point:nth-child(n + 2) .idx-web-point__copy::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -15px;
    width: 1px;
    background: var(--work-web-design-red);
  }

  .idx-web-point__heading {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .idx-web-point__number {
    font-size: 2.5rem;
  }

  .idx-web-point__title {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
  }

  .idx-web-point__text {
    margin-top: 14px;
    font-size: clamp(0.875rem, 1.05vw, 1rem);
    line-height: 1.75;
  }
}

/* IDX brand & recruitment */
.idx-brand-recruitment {
  color: #111111;
  background: #f6f6f4;
}

.idx-brand-recruitment__inner {
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: var(--work-section-space-start) var(--work-section-space-end);
}

.idx-brand-recruitment__lead {
  max-width: 420px;
  margin-top: var(--work-heading-gap);
}

.idx-brand-recruitment__grid {
  display: grid;
  gap: 60px;
  margin-top: 40px;
}

.idx-brand-recruitment__item {
  min-width: 0;
}

.idx-brand-recruitment__visual {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.idx-brand-recruitment__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1160 / 678;
  object-fit: cover;
}

.idx-brand-recruitment__copy {
  margin-top: 28px;
}

.idx-brand-recruitment__title {
  font-size: 1.0625rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.idx-brand-recruitment__text {
  margin-top: 14px;
  color: #222222;
  font-size: 0.875rem;
  line-height: var(--work-copy-line-height);
  letter-spacing: 0.03em;
}

@media (min-width: 600px) and (max-width: 959px) {
  .idx-brand-recruitment__item {
    width: min(100%, 680px);
    margin-inline: auto;
  }
}

@media (min-width: 960px) {
  .idx-brand-recruitment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 3.4vw, 48px);
    margin-top: 40px;
  }

  .idx-brand-recruitment__copy {
    margin-top: 30px;
  }

  .idx-brand-recruitment__title {
    font-size: clamp(1.125rem, 1.4vw, 1.25rem);
  }

  .idx-brand-recruitment__text {
    margin-top: 16px;
    font-size: 1rem;
  }
}

/* IDX experience */
.id-experience--idx {
  --id-experience-red: var(--idx-green);
}

.id-experience--idx .id-experience__lead {
  max-width: 390px;
}

.id-experience--idx .id-experience__text {
  gap: 24px;
  max-width: 390px;
  color: #222222;
}

.id-experience--idx .idx-experience__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}

.idx-experience-card {
  min-height: 320px;
  padding: 30px 20px;
  border-color: rgba(17, 17, 17, 0.06);
}

.idx-experience-card__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-inline: auto;
}

.idx-experience-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.idx-experience-card__title {
  min-height: 3em;
  margin-top: 24px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.idx-experience-card__text {
  max-width: 210px;
  min-height: 0;
  margin-top: 24px;
  padding-top: 0;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.75;
}

@media (min-width: 769px) {
  .id-experience--idx .id-experience__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .id-experience--idx .idx-experience__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 36px);
  }

  .idx-experience-card {
    min-height: 380px;
    padding: 30px 18px;
  }

  .idx-experience-card__icon {
    width: 96px;
    height: 100px;
  }

  .idx-experience-card__title {
    margin-top: 28px;
    font-size: 1.125rem;
    line-height: 1.55;
  }

  .idx-experience-card__text {
    margin-top: 32px;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
  }
}

@media (min-width: 1200px) {
  .id-experience--idx .id-experience__inner {
    grid-template-columns: minmax(360px, 390px) minmax(0, 1fr);
    gap: clamp(36px, 3.4vw, 48px);
  }

  .id-experience--idx .idx-experience__visual {
    margin-top: 64px;
  }

  .id-experience--idx .idx-experience__cards {
    gap: clamp(32px, 2.6vw, 38px);
  }

  .idx-experience-card {
    min-height: 404px;
    padding: 28px 18px 30px;
  }

  .idx-experience-card__icon {
    width: 100px;
    height: 101px;
  }

  .idx-experience-card__title {
    margin-top: 30px;
    font-size: clamp(1.125rem, 1.35vw, 1.25rem);
  }

  .idx-experience-card__text {
    margin-top: 34px;
    font-size: clamp(1.0625rem, 1.25vw, 1.125rem);
  }
}

/* TSGYM background & approach */
.work-background--tsgym {
  --work-background-red: var(--tsgym-yellow);
}

.work-background--tsgym .work-background__heading-number,
.work-background--tsgym .design-point__number {
  color: var(--tsgym-yellow-text);
}

.work-background--tsgym .work-background__label {
  color: #111111;
}

/* TSGYM web design */
.work-web-design--tsgym {
  --work-web-design-red: var(--tsgym-yellow);
}

.work-web-design--tsgym .work-web-design__lead {
  max-width: 18em;
}

.tsgym-web-points {
  display: grid;
  gap: 72px;
  margin-top: 96px;
}

.tsgym-web-point {
  min-width: 0;
}

.tsgym-web-point__image {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.tsgym-web-point__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 758 / 796;
  object-fit: contain;
}

.tsgym-web-point__image img[src$="tsgym_web_price_sp.webp"] {
  aspect-ratio: 756 / 796;
}

.tsgym-web-point__copy {
  position: relative;
  margin-top: 24px;
  padding-left: 18px;
}

.tsgym-web-point__copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: var(--work-web-design-red);
}

.tsgym-web-point__heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.tsgym-web-point__number {
  color: var(--work-web-design-red);
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2.25rem, 10vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.03em;
}

.tsgym-web-point__title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.tsgym-web-point__text {
  margin-top: 14px;
  font-size: var(--font-size-sm);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media (max-width: 639px) {
  .tsgym-web-points {
    gap: 30px;
    margin-top: 64px;
  }

  .tsgym-web-point__image {
    width: min(100%, 240px);
    height: 240px;
    margin-inline: auto;
  }

  .tsgym-web-point__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .tsgym-web-point__image img[src$="tsgym_web_price_sp.webp"] {
    aspect-ratio: auto;
  }

  .tsgym-web-point__copy {
    margin-top: 20px;
    padding-left: 16px;
  }

  .tsgym-web-point__heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
  }

  .tsgym-web-point__number {
    font-size: 2.25rem;
  }

  .tsgym-web-point__text {
    margin-top: 12px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .tsgym-web-point__image {
    width: min(100%, 420px);
    margin-inline: auto;
  }
}

@media (min-width: 960px) and (max-width: 1023px) {
  .work-web-design--tsgym .work-web-design__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .work-web-design--tsgym .work-web-design__top-visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .tsgym-web-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2.25vw, 32px);
    margin-top: clamp(112px, 10vw, 144px);
  }

  .tsgym-web-point__image {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  .tsgym-web-point__copy {
    margin-top: 20px;
    padding-left: 14px;
  }

  .tsgym-web-point__heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
  }

  .tsgym-web-point__number {
    font-size: clamp(2.25rem, 3vw, 2.625rem);
  }

  .tsgym-web-point__title {
    font-size: var(--font-size-sm);
  }

  .tsgym-web-point__text {
    margin-top: 12px;
    font-size: clamp(0.8125rem, 1.05vw, 0.9375rem);
  }
}

/* TSGYM graphic design */
.work-graphic--tsgym {
  --work-graphic-red: var(--tsgym-yellow);
  --tsgym-graphic-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  --tsgym-graphic-border: 1px solid rgba(0, 0, 0, 0.05);
}

.work-graphic--tsgym .work-graphic__layout {
  grid-template-areas:
    "heading"
    "copy"
    "poster"
    "banner";
  gap: 0;
}

.work-graphic--tsgym .work-graphic__heading {
  grid-area: heading;
  order: initial;
}

.tsgym-graphic__copy {
  grid-area: copy;
  min-width: 0;
  margin-top: var(--work-heading-gap);
}

.work-graphic--tsgym .work-graphic__lead,
.work-graphic--tsgym .work-graphic__text {
  margin-top: 0;
  white-space: normal;
}

.work-graphic--tsgym .work-graphic__text {
  display: grid;
  gap: 24px;
  max-width: 32em;
  margin-top: var(--work-body-gap);
}

.work-graphic--tsgym .tsgym-graphic__poster {
  grid-area: poster;
  display: block;
  width: min(100%, 420px);
  max-width: 420px;
  margin: 48px auto 0;
}

.tsgym-graphic__banner {
  grid-area: banner;
  width: min(100%, 550px);
  margin: 40px auto 0;
}

.tsgym-graphic__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border: var(--tsgym-graphic-border);
  box-shadow: var(--tsgym-graphic-shadow);
}

@media (min-width: 768px) {
  .work-graphic--tsgym .work-graphic__layout {
    grid-template-areas:
      "heading ."
      "copy poster"
      "banner poster";
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: stretch;
    column-gap: clamp(32px, 5vw, 64px);
  }

  .work-graphic--tsgym .work-graphic__heading {
    padding-bottom: var(--work-heading-gap);
  }

  .tsgym-graphic__copy {
    margin-top: 0;
  }

  .work-graphic--tsgym .tsgym-graphic__poster {
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: 540px;
    margin: 0;
  }

  .tsgym-graphic__banner {
    align-self: end;
    width: 100%;
    margin: clamp(36px, 5vw, 64px) 0 0;
  }
}

@media (min-width: 1200px) {
  .work-graphic--tsgym .work-graphic__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    column-gap: clamp(80px, 8vw, 120px);
  }
}

/* TSGYM experience */
.id-experience--tsgym {
  --id-experience-red: var(--tsgym-yellow);
}

.id-experience--tsgym .id-experience__visual {
  align-self: start;
}

.tsgym-experience-card {
  min-height: 0;
  padding: 28px 24px 30px;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.tsgym-experience-card__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-inline: auto;
}

.tsgym-experience-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tsgym-experience-card__label {
  margin-top: 24px;
  font-family: "Oswald", var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.tsgym-experience-card__title {
  min-height: 3.4em;
  margin-top: 8px;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.7;
}

.tsgym-experience-card__divider {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-top: 2px solid var(--id-experience-red);
}

.tsgym-experience-card__text {
  margin-top: 24px;
  font-size: var(--font-size-sm);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media (max-width: 639px) {
  .tsgym-experience-card + .tsgym-experience-card {
    margin-top: 22px;
  }

  .tsgym-experience-card__title {
    min-height: 0;
  }
}

@media (min-width: 640px) {
  .tsgym-experience-card {
    min-height: 430px;
    height: 100%;
    padding: 26px 16px 28px;
  }

  .tsgym-experience-card__icon {
    width: clamp(72px, 10vw, 96px);
    height: clamp(72px, 10vw, 96px);
  }

  .tsgym-experience-card__text {
    margin-top: 24px;
  }
}

@media (min-width: 960px) {
  .id-experience--tsgym .id-experience__visual {
    margin-top: 42px;
  }

  .tsgym-experience-card {
    min-height: 450px;
    padding: 28px 18px 30px;
  }
}

@media (min-width: 1024px) {
  .work-background--tsgym .work-background__inner,
  .work-web-design--tsgym .work-web-design__inner,
  .work-graphic--tsgym .work-graphic__inner {
    padding-bottom: var(--tsgym-detail-section-half-space-pc);
  }

  .work-web-design--tsgym .work-web-design__inner,
  .work-graphic--tsgym .work-graphic__inner,
  .id-experience--tsgym .id-experience__inner {
    padding-top: var(--tsgym-detail-section-half-space-pc);
  }

  .work-web-design--tsgym .tsgym-web-points {
    margin-top: var(--tsgym-web-tier-space-pc);
  }
}

/* OTHER WORKS hero */
.other-works-page {
  color: #111111;
  background: #f6f6f4;
}

.other-hero {
  --other-hero-ease: cubic-bezier(0.22, 1, 0.36, 1);

  overflow: hidden;
  background: #f6f6f4 url("../assets/images/WORKS/iD_Bg.webp") center / cover no-repeat;
}

.other-hero__inner {
  display: grid;
  gap: 48px;
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: 28px 64px;
}

.other-hero__content {
  min-width: 0;
}

.other-hero__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #202020;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.other-hero__breadcrumb a {
  text-decoration: none;
}

.other-hero__breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 7px;
}

.other-hero__title {
  margin-top: 44px;
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2.5rem, 11vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.other-hero__lead {
  max-width: 420px;
  margin-top: 24px;
  font-size: clamp(0.875rem, 3.8vw, 1rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.other-hero__lead-break {
  display: none;
}

.other-hero__projects {
  --other-hero-card-size: min(78vw, 310px);

  display: flex;
  gap: 14px;
  width: calc(100% + var(--page-gutter));
  padding: 3px calc(100% - var(--other-hero-card-size) + 20px) 16px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0 var(--page-gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.other-hero__projects::-webkit-scrollbar {
  display: none;
}

.other-hero-card {
  flex: 0 0 var(--other-hero-card-size);
  min-width: 0;
  text-align: center;
  scroll-snap-align: start;
}

.other-hero-card__image {
  width: 100%;
  aspect-ratio: 420 / 620;
  object-fit: cover;
}

.other-hero-card__title {
  margin-top: 13px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
}

.other-hero-card__category {
  margin-top: 8px;
  font-size: clamp(0.625rem, 2.7vw, 0.75rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.other-hero-card__category--clubw {
  white-space: normal;
}

.is-js-enabled .other-hero__content,
.is-js-enabled .other-hero-card {
  opacity: 0;
  animation-duration: 720ms;
  animation-fill-mode: forwards;
  animation-timing-function: var(--other-hero-ease);
}

.is-js-enabled .other-hero__content {
  animation-name: other-hero-content-in;
}

.is-js-enabled .other-hero-card {
  animation-name: other-hero-card-in;
}

.is-js-enabled .other-hero-card:nth-child(1) {
  animation-delay: 120ms;
}

.is-js-enabled .other-hero-card:nth-child(2) {
  animation-delay: 220ms;
}

.is-js-enabled .other-hero-card:nth-child(3) {
  animation-delay: 320ms;
}

@keyframes other-hero-content-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes other-hero-card-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .other-hero {
    min-height: clamp(540px, 64svh, 576px);
  }

  .other-hero__inner {
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
    gap: clamp(44px, 7.5vw, 108px);
    align-items: start;
    padding-block: 32px 48px;
  }

  .other-hero__breadcrumb-list {
    font-size: var(--font-size-sm);
  }

  .other-hero__title {
    margin-top: 52px;
    font-size: clamp(2.75rem, 3.5vw, 3.25rem);
  }

  .other-hero__lead {
    margin-top: 28px;
    font-size: var(--font-size-md);
  }

  .other-hero__lead-break {
    display: initial;
  }

  .other-hero__projects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 1vw, 16px);
    width: 100%;
    padding: 6px 0 0;
    overflow: visible;
  }

  .other-hero-card {
    min-width: 0;
  }

  .other-hero-card__category {
    font-size: clamp(0.625rem, 0.78vw, 0.75rem);
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .other-hero__inner {
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
    gap: 44px;
  }

  .other-hero__projects {
    gap: 10px;
  }

  .other-hero-card__category {
    font-size: 0.625rem;
    letter-spacing: 0.11em;
    white-space: normal;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .other-hero {
    min-height: 0;
  }

  .other-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding-block: 32px 56px;
  }

  .other-hero__projects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .other-hero-card {
    min-width: 0;
  }

  .other-hero-card__category {
    font-size: 0.6875rem;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .other-hero__content,
  .is-js-enabled .other-hero-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .other-hero__projects {
    scroll-behavior: auto;
  }
}

/* OTHER WORKS: clubW */
.other-project--clubw {
  color: #111111;
  background: #ffffff;
}

.other-project__inner {
  width: min(100% - calc(var(--page-gutter) * 2), 1200px);
  margin-inline: auto;
  padding-block: 88px 104px;
}

.other-project__overview {
  display: grid;
  grid-template-areas:
    "content"
    "mockups"
    "update";
  gap: 0;
}

.other-project__content {
  grid-area: content;
  min-width: 0;
}

.other-project__title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(2rem, 9vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.other-project__number {
  font-size: 0.86em;
}

.other-project__category {
  margin-top: 36px;
  color: #c21f1a;
  font-size: clamp(0.75rem, 3.2vw, 0.9375rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.other-project__description {
  display: grid;
  gap: 4px;
  max-width: 430px;
  margin-top: 36px;
  font-size: clamp(0.875rem, 3.7vw, 1rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.85;
  letter-spacing: 0.025em;
}

.other-project__mockups {
  grid-area: mockups;
  min-width: 0;
  margin-top: 46px;
}

.other-project__mockups img {
  width: 100%;
  height: auto;
}

.other-project__update-note {
  grid-area: update;
  max-width: 430px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(194, 31, 26, 0.5);
}

.other-project__update-heading {
  color: #c21f1a;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.other-project__update-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  color: #333333;
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.08em;
  list-style: none;
}

.other-project__update-list li:not(:last-child)::after {
  content: "/";
  margin-left: 16px;
  color: rgba(17, 17, 17, 0.35);
}

.other-project__update-text {
  margin-top: 14px;
  font-size: var(--font-size-sm);
  line-height: 1.75;
}

.other-project__media-grid {
  display: grid;
  gap: 64px;
  margin-top: 72px;
}

.other-project__media-group {
  min-width: 0;
}

.other-project__media-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.other-project__media-description {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.6;
}

.other-project__slider {
  --other-project-slide-size: min(78vw, 310px);

  display: flex;
  gap: 16px;
  width: calc(100% + var(--page-gutter));
  margin-top: 20px;
  padding: 3px calc(100% - var(--other-project-slide-size) + 20px) 14px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0 var(--page-gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.other-project__slider::-webkit-scrollbar {
  display: none;
}

.other-project__media-item {
  position: relative;
  flex: 0 0 var(--other-project-slide-size);
  min-width: 0;
  overflow: hidden;
  background: #111111;
  scroll-snap-align: start;
}

.other-project__media-item--motion {
  aspect-ratio: 9 / 16;
}

.other-project__media-item--graphic {
  aspect-ratio: 467 / 664;
  background: #f6f6f4;
}

.other-project__media-item video,
.other-project__media-item img {
  width: 100%;
  height: 100%;
}

.other-project__media-item video {
  object-fit: cover;
}

.other-project__media-item img {
  object-fit: contain;
}

.other-project__video-control {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 0.6875rem;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.other-project__slider-status {
  margin-top: 8px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  letter-spacing: 0.12em;
}

@media (min-width: 1024px) {
  .other-project__inner {
    padding-block: 112px 120px;
  }

  .other-project__overview {
    grid-template-areas:
      "content mockups"
      "update mockups";
    grid-template-columns: minmax(360px, 410px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(56px, 6vw, 88px);
    align-items: start;
  }

  .other-project__title {
    font-size: clamp(2.5rem, 3.2vw, 3rem);
  }

  .other-project__category {
    margin-top: 54px;
    font-size: var(--font-size-md);
  }

  .other-project__description {
    margin-top: 42px;
    font-size: var(--font-size-md);
  }

  .other-project__mockups {
    align-self: start;
    margin-top: -18px;
  }

  .other-project__update-note {
    align-self: end;
    margin-top: 38px;
  }

  .other-project__media-grid {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(40px, 4.5vw, 64px);
    align-items: start;
    margin-top: 54px;
  }

  .other-project__slider {
    display: grid;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .other-project__slider--motion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 24px);
  }

  .other-project__slider--graphic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 24px);
  }

  .other-project__media-item {
    min-width: 0;
  }

  .other-project__slider-status {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .other-project__overview {
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
    column-gap: 44px;
  }

  .other-project__category {
    margin-top: 42px;
    font-size: var(--font-size-sm);
  }

  .other-project__description {
    margin-top: 34px;
    font-size: var(--font-size-sm);
  }

  .other-project__media-grid {
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: 40px;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .other-project--clubw .other-project__overview {
    grid-template-areas:
      "content mockups"
      "update mockups";
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 44px;
    align-items: start;
  }

  .other-project--clubw .other-project__mockups {
    margin-top: 0;
  }

  .other-project__media-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
    margin-top: 64px;
  }

  .other-project__slider {
    display: grid;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .other-project__slider--motion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .other-project__slider--graphic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .other-project__media-item {
    min-width: 0;
  }

  .other-project__slider-status {
    display: none;
  }
}

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

/* OTHER WORKS: ハンバーグやぎや */
.other-project--yagiya {
  color: #111111;
  background: #ffffff;
}

.other-project__overview--yagiya {
  grid-template-areas:
    "content"
    "mockups";
}

.other-project__description--yagiya {
  display: block;
}

.other-project__mockups--yagiya {
  margin-inline: -8px;
}

.other-project--yagiya .other-project__screens {
  --other-project-screen-size: min(78vw, 520px);

  display: flex;
  gap: 16px;
  width: calc(100% + var(--page-gutter));
  margin-top: 64px;
  padding: 2px calc(100% - var(--other-project-screen-size) + 20px) 12px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0 var(--page-gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.other-project--yagiya .other-project__screens::-webkit-scrollbar {
  display: none;
}

.other-project--yagiya .other-project__screen {
  flex: 0 0 var(--other-project-screen-size);
  min-width: 0;
  scroll-snap-align: start;
}

.other-project--yagiya .other-project__screen-image {
  aspect-ratio: 758 / 796;
  overflow: hidden;
  background: #f6f3ed;
}

.other-project--yagiya .other-project__screen-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.other-project--yagiya .other-project__screen-label {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.other-project__slider-status--yagiya {
  display: block;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .other-project__overview--yagiya {
    grid-template-areas: "content mockups";
    grid-template-columns: minmax(360px, 410px) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .other-project__mockups--yagiya {
    margin-inline: 0;
  }

  .other-project--yagiya .other-project__screens {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 2.2vw, 32px);
    width: 100%;
    margin-top: 64px;
    padding: 0;
    overflow: visible;
  }

  .other-project--yagiya .other-project__screen {
    min-width: 0;
  }

  .other-project__slider-status--yagiya {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .other-project__overview--yagiya {
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .other-project__overview--yagiya {
    grid-template-areas: "content mockups";
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
    grid-template-rows: auto;
    column-gap: 44px;
  }

  .other-project__mockups--yagiya {
    margin: 0;
  }

  .other-project--yagiya .other-project__screens {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    margin-top: 64px;
    padding: 0;
    overflow: visible;
  }

  .other-project--yagiya .other-project__screen {
    min-width: 0;
  }

  .other-project__slider-status--yagiya {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .other-project--yagiya .other-project__screens {
    scroll-behavior: auto;
  }
}

/* OTHER WORKS: まほろば */
.other-project--mahoroba {
  color: #111111;
  background: #ffffff;
}

.other-project__overview--mahoroba {
  grid-template-areas:
    "content"
    "screens";
}

.other-project__description--mahoroba {
  gap: 24px;
}

.other-project--mahoroba .other-project__screens {
  --other-project-screen-size: min(78vw, 520px);

  display: flex;
  grid-area: screens;
  gap: 16px;
  width: calc(100% + var(--page-gutter));
  margin-top: 64px;
  padding: 2px calc(100% - var(--other-project-screen-size) + 20px) 12px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0 var(--page-gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.other-project--mahoroba .other-project__screens::-webkit-scrollbar {
  display: none;
}

.other-project--mahoroba .other-project__screen {
  display: flex;
  flex: 0 0 var(--other-project-screen-size);
  flex-direction: column;
  min-width: 0;
  scroll-snap-align: start;
}

.other-project--mahoroba .other-project__screen-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(108vw, 430px);
  background: #f6f6f4;
}

.other-project--mahoroba .other-project__screen-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.other-project--mahoroba .other-project__screen-label {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.other-project__slider-status--mahoroba {
  display: block;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .other-project__overview--mahoroba {
    grid-template-areas: "content screens";
    grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
    grid-template-rows: auto;
    column-gap: clamp(48px, 5vw, 72px);
  }

  .other-project--mahoroba .other-project__screens {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(0, 0.8fr);
    gap: clamp(20px, 1.7vw, 24px);
    width: 100%;
    margin-top: 80px;
    padding: 0;
    overflow: visible;
  }

  .other-project--mahoroba .other-project__screen {
    min-width: 0;
  }

  .other-project--mahoroba .other-project__screen-image {
    align-items: flex-end;
    height: clamp(300px, 29vw, 392px);
    background: transparent;
  }

  .other-project--mahoroba .other-project__screen-image img {
    height: auto;
    max-height: 100%;
  }

  .other-project__slider-status--mahoroba {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .other-project__overview--mahoroba {
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
    column-gap: 44px;
  }

  .other-project--mahoroba .other-project__screens {
    margin-top: 68px;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .other-project__overview--mahoroba {
    grid-template-areas:
      "content"
      "screens";
    grid-template-columns: minmax(0, 1fr);
  }

  .other-project--mahoroba .other-project__screens {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(0, 0.8fr);
    gap: 24px;
    width: 100%;
    margin-top: 64px;
    padding: 0;
    overflow: visible;
  }

  .other-project--mahoroba .other-project__screen {
    min-width: 0;
  }

  .other-project--mahoroba .other-project__screen-image {
    align-items: flex-end;
    height: 420px;
    background: transparent;
  }

  .other-project--mahoroba .other-project__screen-image img {
    height: auto;
    max-height: 100%;
  }

  .other-project__slider-status--mahoroba {
    display: none;
  }
}

@media (min-width: 900px) {
  .other-project + .other-project .other-project__inner {
    padding-top: 64px;
  }
}

@media (min-width: 1024px) {
  .other-project + .other-project .other-project__inner {
    padding-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .other-project--mahoroba .other-project__screens {
    scroll-behavior: auto;
  }
}

/* CONTACT page */
.contact-page {
  --contact-page-red: var(--accent);
  --contact-page-ink: #151515;
  --contact-page-muted: #6b6b6b;
  --contact-page-border: #d6d6d3;
  --contact-page-surface: #f7f7f5;

  color: var(--contact-page-ink);
  background: var(--contact-page-surface);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.5px) 0 0 / 19px 19px,
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.94) 0 16%, transparent 44%),
    radial-gradient(circle at 8% 88%, rgba(0, 0, 0, 0.025), transparent 34%),
    linear-gradient(116deg, #ededeb 0%, #f7f7f5 48%, #eeeeec 100%);
  isolation: isolate;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(4deg, transparent 0 5px, rgba(0, 0, 0, 0.025) 6px),
    repeating-linear-gradient(94deg, transparent 0 9px, rgba(255, 255, 255, 0.58) 10px);
  mix-blend-mode: multiply;
}

.contact-hero__inner,
.contact-main__inner {
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
}

.contact-hero__inner {
  padding-block: 26px 64px;
}

.contact-hero__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 0.6875rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  list-style: none;
}

.contact-hero__breadcrumb-list li + li::before {
  content: ">";
  margin-right: 7px;
  color: var(--contact-page-muted);
}

.contact-hero__breadcrumb a {
  text-decoration: none;
  transition: color var(--duration-fast) var(--easing-standard);
}

.contact-hero__breadcrumb a:hover {
  color: var(--contact-page-red);
}

.contact-hero__body {
  display: grid;
  gap: 36px;
  margin-top: 44px;
}

.contact-hero__title {
  font-family: "Oswald", var(--font-sans);
  font-size: clamp(3.25rem, 14vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.contact-hero__content {
  display: grid;
  gap: 22px;
}

.contact-hero__heading {
  font-size: clamp(1.375rem, 6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
}

.contact-hero__description {
  max-width: 520px;
  font-size: 0.9375rem;
  line-height: 1.9;
}

.contact-hero__pc-break {
  display: none;
}

.contact-main {
  padding-block: 56px 88px;
  background: #ffffff;
}

.contact-introduction,
.contact-form,
.contact-flow {
  width: min(100%, 980px);
  margin-inline: auto;
}

.contact-introduction {
  padding: 28px 24px;
  border: 1px solid var(--contact-page-border);
  background: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.9;
}

.contact-introduction__title {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 10px;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}

.contact-introduction__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 220px;
  height: 2px;
  background: var(--contact-page-red);
}

.contact-introduction__list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}

.contact-introduction__list li {
  position: relative;
  padding-left: 18px;
}

.contact-introduction__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.contact-introduction__list + p {
  margin-top: 24px;
}

.contact-introduction__note {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.contact-simulation-summary {
  min-width: 0;
  margin-bottom: 20px;
  padding: 22px 20px;
  border: 1px solid var(--contact-page-border);
  background: #fafaf9;
}

.contact-simulation-summary__header {
  display: grid;
  gap: 16px;
}

.contact-simulation-summary__eyebrow {
  color: var(--contact-page-red);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.contact-simulation-summary__title {
  position: relative;
  margin-top: 6px;
  padding-bottom: 12px;
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
}

.contact-simulation-summary__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--contact-page-red);
}

.contact-simulation-summary__remove {
  justify-self: start;
  min-height: 44px;
  padding: 9px 0;
  color: var(--contact-page-muted);
  border-bottom: 1px solid currentColor;
  font-size: 0.8125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.contact-simulation-summary__remove:focus-visible {
  outline: 2px solid var(--contact-page-red);
  outline-offset: 4px;
}

.contact-simulation-summary__list {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.contact-simulation-summary__item {
  min-width: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #e3e3e0;
}

.contact-simulation-summary__item dt {
  color: var(--contact-page-muted);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.contact-simulation-summary__item dd {
  min-width: 0;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
}

.contact-simulation-summary__item--price dd {
  color: var(--contact-page-red);
  font-size: 1rem;
  font-weight: 600;
}

.contact-simulation-summary__note {
  margin-top: 22px;
  color: var(--contact-page-muted);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.contact-form__field {
  min-width: 0;
}

.contact-form__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 9px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.contact-form__required,
.contact-form__optional {
  font-size: 0.6875rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
}

.contact-form__required {
  color: var(--contact-page-red);
}

.contact-form__optional {
  color: var(--contact-page-muted);
}

.contact-form__control {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding-inline: 17px;
  border: 1px solid var(--contact-page-border);
  border-radius: 4px;
  color: var(--contact-page-ink);
  background: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  transition:
    border-color var(--duration-fast) var(--easing-standard),
    box-shadow var(--duration-fast) var(--easing-standard);
}

.contact-form__control::placeholder {
  color: #a8a8a8;
  font-size: 0.875rem;
  opacity: 1;
}

.contact-form__control:hover {
  border-color: #999999;
}

.contact-form__control:focus-visible {
  outline: 0;
  border-color: var(--contact-page-red);
  box-shadow: 0 0 0 3px rgba(179, 18, 27, 0.15);
}

.contact-form__control.is-invalid {
  border-color: var(--contact-page-red);
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #555555;
  border-bottom: 2px solid #555555;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.contact-form__select {
  appearance: none;
  padding-right: 48px;
}

.contact-form__help {
  margin-bottom: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}

.contact-form__textarea {
  min-height: 210px;
  padding-block: 16px;
  resize: vertical;
}

.contact-form__error {
  min-height: 0;
  margin-top: 7px;
  color: var(--contact-page-red);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.contact-form__error:empty {
  display: none;
}

.contact-form__agreement-wrap {
  margin-top: 2px;
}

.contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  padding-block: 8px;
  font-size: 0.9375rem;
  line-height: 1.65;
  cursor: pointer;
}

.contact-form__privacy input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--contact-page-red);
}

.contact-form__privacy-label {
  flex: 1;
  min-width: 0;
}

.contact-form__privacy-label .contact-form__required {
  display: inline-block;
  margin-left: 8px;
  vertical-align: 0.08em;
}

.contact-form__submit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 66px;
  margin-top: 0;
  padding: 16px 24px;
  border-radius: 4px;
  color: #ffffff;
  background: #252525;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  transition: background-color 200ms var(--easing-standard);
}

.contact-form__submit > span:first-child {
  grid-column: 2;
}

.contact-form__submit-arrow {
  grid-column: 3;
  justify-self: start;
  margin-left: 22px;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 200ms var(--easing-standard);
}

.contact-form__status {
  padding: 14px 16px;
  border-left: 3px solid var(--contact-page-red);
  background: #f8eeee;
  font-size: 0.875rem;
  line-height: 1.7;
}

.contact-flow {
  margin-top: 72px;
}

.contact-flow__title {
  text-align: center;
  font-size: clamp(1.5rem, 7vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.contact-flow__list {
  display: grid;
  gap: 46px;
  margin-top: 32px;
  list-style: none;
}

.contact-flow__item {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 28px 8px 30px;
  border-top: 1px solid var(--contact-page-border);
  border-bottom: 1px solid var(--contact-page-border);
  text-align: center;
}

.contact-flow__item:not(:last-child)::after {
  content: "↓";
  position: absolute;
  right: 50%;
  bottom: -38px;
  color: var(--contact-page-red);
  font-size: 1.25rem;
  transform: translateX(50%);
}

.contact-flow__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 20px;
}

.contact-flow__icon > img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.contact-flow__mail-shape {
  position: relative;
  display: block;
  width: 58px;
  height: 42px;
  border: 2px solid var(--contact-page-ink);
  border-radius: 4px;
}

.contact-flow__mail-shape::before,
.contact-flow__mail-shape::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 33px;
  height: 2px;
  background: var(--contact-page-red);
}

.contact-flow__mail-shape::before {
  left: 0;
  transform: rotate(36deg);
  transform-origin: left center;
}

.contact-flow__mail-shape::after {
  right: 0;
  transform: rotate(-36deg);
  transform-origin: right center;
}

.contact-flow__icon--hearing {
  width: 104px;
}

.contact-flow__icon--hearing > img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 52px;
  height: auto;
  transform: translateX(-50%);
}

.contact-flow__person {
  position: absolute;
  bottom: 4px;
  width: 34px;
  height: 28px;
  border: 2px solid var(--contact-page-ink);
  border-radius: 50% 50% 6px 6px;
}

.contact-flow__person::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--contact-page-ink);
  border-radius: 50%;
  background: #ffffff;
  transform: translateX(-50%);
}

.contact-flow__person--first {
  left: 14px;
}

.contact-flow__person--second {
  right: 14px;
}

.contact-flow__item-title {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-flow__item-title span {
  font-family: "Oswald", var(--font-sans);
  font-size: 0.9375rem;
}

.contact-flow__item > p {
  max-width: 280px;
  margin-top: 20px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.is-js-enabled .contact-page [data-contact-page-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-js-enabled .contact-page [data-contact-page-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .contact-form__submit:hover {
    background: #3a3a3a;
  }

  .contact-form__submit:hover .contact-form__submit-arrow {
    transform: translateX(5px);
  }
}

@media (min-width: 768px) {
  .contact-hero__inner,
  .contact-main__inner {
    width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  }

  .contact-hero__inner {
    padding-block: 34px 84px;
  }

  .contact-hero__body {
    margin-top: 58px;
  }

  .contact-main {
    padding-block: 72px 108px;
  }

  .contact-introduction {
    padding: 40px 44px;
  }

  .contact-form {
    margin-top: 56px;
  }

  .contact-simulation-summary {
    padding: 32px 36px;
  }

  .contact-simulation-summary__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 28px;
  }

  .contact-simulation-summary__remove {
    justify-self: end;
  }

  .contact-simulation-summary__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 32px;
  }

  .contact-simulation-summary__item--price {
    grid-column: 1 / -1;
  }

  .contact-flow {
    margin-top: 88px;
  }
}

@media (min-width: 1024px) {
  .contact-hero__inner {
    padding-block: 34px 96px;
  }

  .contact-hero__body {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    align-items: center;
    gap: clamp(48px, 5vw, 64px);
    margin-top: 64px;
  }

  .contact-hero__title {
    font-size: clamp(4rem, 7vw, 7rem);
  }

  .contact-hero__content {
    gap: 26px;
  }

  .contact-hero__heading {
    font-size: clamp(1.875rem, 2.2vw, 2rem);
  }

  .contact-hero__description {
    font-size: 1rem;
  }

  .contact-hero__pc-break {
    display: block;
  }

  .contact-main {
    padding-block: 80px 128px;
  }

  .contact-form {
    margin-top: 64px;
  }

  .contact-simulation-summary {
    margin-bottom: 28px;
    padding: 36px 40px;
  }

  .contact-form__label {
    font-size: 1rem;
  }

  .contact-flow {
    margin-top: 96px;
  }

  .contact-flow__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(56px, 5vw, 64px);
    margin-top: 38px;
  }

  .contact-flow__item {
    align-content: start;
    min-height: 280px;
    padding: 34px 12px 32px;
  }

  .contact-flow__item:not(:last-child)::after {
    content: "→";
    top: 50%;
    right: calc(clamp(56px, 5vw, 64px) / -2 - 10px);
    bottom: auto;
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .contact-page [data-contact-page-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .contact-form__submit,
  .contact-form__submit-arrow {
    transition: none;
  }

  .contact-form__submit:hover .contact-form__submit-arrow {
    transform: none;
  }
}

/* SERVICE & PRICE page: hero */
.service-page {
  --service-page-red: var(--accent);
  --service-page-ink: #0b0b0b;
  --service-page-recommended: #5c5c5c;
}

.service-hero {
  --service-hero-red: var(--service-page-red);
  --service-hero-ink: var(--service-page-ink);

  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--service-hero-ink);
  background:
    radial-gradient(circle at 13% 18%, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.5px) 0 0 / 19px 19px,
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.94) 0 16%, transparent 44%),
    radial-gradient(circle at 8% 88%, rgba(0, 0, 0, 0.025), transparent 34%),
    linear-gradient(116deg, #ededeb 0%, #f7f7f5 48%, #eeeeec 100%);
  isolation: isolate;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(0, 0, 0, 0.018) 8px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, 0.2) 32px);
  pointer-events: none;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  min-height: 650px;
  margin-inline: auto;
  padding-block: 22px 64px;
}

.service-hero__breadcrumb {
  font-size: var(--font-size-xs);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.service-hero__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  list-style: none;
}

.service-hero__breadcrumb-list li + li::before {
  content: ">";
  margin-right: 7px;
  color: rgba(11, 11, 11, 0.58);
}

.service-hero__breadcrumb a {
  text-decoration: none;
}

.service-hero__breadcrumb a:hover {
  color: var(--service-hero-red);
}

.service-hero__body {
  display: grid;
  align-content: center;
  flex: 1;
  gap: clamp(42px, 11vw, 60px);
  padding-top: clamp(44px, 10vw, 68px);
}

.service-hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min-content;
  color: var(--service-hero-ink);
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: clamp(3.25rem, 15.4vw, 4rem);
  font-weight: var(--font-weight-bold);
  line-height: 0.89;
  letter-spacing: -0.045em;
}

.service-hero__title-line,
.service-hero__ampersand {
  display: block;
}

.service-hero__ampersand-wrap {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-block: 0;
  margin-left: 0.14em;
}

.service-hero__ampersand {
  color: var(--service-hero-red);
  font-size: 0.76em;
  line-height: 1;
  letter-spacing: -0.03em;
  transform-origin: 50% 82%;
}

.service-hero__ampersand-impact {
  position: absolute;
  bottom: 0.03em;
  left: 50%;
  width: 1.08em;
  height: 2px;
  border-radius: 999px;
  background: var(--service-hero-red);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.service-hero__content {
  max-width: 520px;
}

.service-hero__heading {
  font-size: clamp(1.5rem, 6.6vw, 1.75rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.58;
  letter-spacing: 0.025em;
}

.service-hero__heading-break {
  display: none;
}

.service-hero__description {
  max-width: 34em;
  margin-top: 24px;
  font-size: 0.9375rem;
  line-height: 1.85;
  letter-spacing: 0.025em;
}

.service-hero__categories {
  margin-top: 20px;
  font-size: clamp(0.75rem, 3.3vw, 0.8125rem);
  line-height: 1.6;
  letter-spacing: 0.015em;
}

.service-hero__decor {
  position: absolute;
  right: -0.08em;
  bottom: -0.24em;
  z-index: 0;
  color: rgba(179, 18, 27, 0.032);
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: clamp(18rem, 76vw, 27rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.is-js-enabled .service-hero:not(.is-ready) [data-service-hero-part] {
  opacity: 0;
}

.is-js-enabled .service-hero.is-ready .service-hero__title-line--service {
  animation: service-hero-reveal 520ms ease-out 120ms both;
}

.is-js-enabled .service-hero.is-ready .service-hero__ampersand {
  animation: service-hero-ampersand-drop 1180ms linear 360ms both;
}

.is-js-enabled .service-hero.is-ready .service-hero__ampersand-impact {
  animation: service-hero-impact 380ms ease-out 1110ms both;
}

.is-js-enabled .service-hero.is-ready .service-hero__title-line--price {
  animation: service-hero-reveal 520ms ease-out 1260ms both;
}

.is-js-enabled .service-hero.is-ready .service-hero__heading {
  animation: service-hero-reveal 560ms ease-out 1370ms both;
}

.is-js-enabled .service-hero.is-ready .service-hero__description {
  animation: service-hero-reveal 560ms ease-out 1480ms both;
}

.is-js-enabled .service-hero.is-ready .service-hero__categories {
  animation: service-hero-reveal 560ms ease-out 1590ms both;
}

@keyframes service-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes service-hero-ampersand-drop {
  0% {
    opacity: 0;
    transform: translateY(-180px) rotate(-11deg) scale(0.92);
    animation-timing-function: cubic-bezier(0.4, 0, 0.82, 0.46);
  }

  52% {
    opacity: 1;
    transform: translateY(12px) rotate(2deg) scale(1.02);
    animation-timing-function: cubic-bezier(0.18, 0.84, 0.36, 1);
  }

  70% {
    transform: translateY(-7px) rotate(-1deg) scale(0.99);
    animation-timing-function: cubic-bezier(0.32, 0, 0.5, 1);
  }

  84% {
    transform: translateY(3px) rotate(0.4deg) scale(1.005);
    animation-timing-function: ease-out;
  }

  94% {
    transform: translateY(-1px) rotate(0deg) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes service-hero-impact {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }

  35% {
    opacity: 0.52;
    transform: translateX(-50%) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.34);
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .service-hero,
  .service-hero__inner {
    min-height: 720px;
  }

  .service-hero__inner {
    padding-block: 28px 72px;
  }

  .service-hero__body {
    gap: 48px;
    padding-top: 52px;
  }

  .service-hero__title {
    font-size: clamp(4.5rem, 10vw, 5.25rem);
  }

  .service-hero__content {
    margin-left: clamp(40px, 10vw, 112px);
  }
}

@media (min-width: 1024px) {
  .service-hero,
  .service-hero__inner {
    min-height: clamp(680px, calc(100vh - var(--global-header-height)), 740px);
  }

  .service-hero__inner {
    padding-block: 32px 50px;
  }

  .service-hero__body {
    grid-template-columns: minmax(0, 42%) minmax(0, 48%);
    align-items: center;
    justify-content: space-between;
    gap: 5%;
    padding-top: 10px;
  }

  .service-hero__title {
    font-size: clamp(5.125rem, 6.55vw, 6rem);
  }

  .service-hero__heading {
    font-size: clamp(1.875rem, 2.35vw, 2.125rem);
    line-height: 1.6;
  }

  .service-hero__heading-break {
    display: block;
  }

  .service-hero__description {
    margin-top: 28px;
    font-size: var(--font-size-md);
    line-height: 1.9;
  }

  .service-hero__categories {
    margin-top: 24px;
  }

  .service-hero__decor {
    right: 1.5vw;
    bottom: -0.34em;
    font-size: clamp(23rem, 34vw, 31rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .service-hero [data-service-hero-part] {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .is-js-enabled .service-hero .service-hero__ampersand-impact {
    opacity: 0;
    animation: none;
  }
}

/* SERVICE & PRICE page: service list */
.service-list {
  color: var(--color-text);
  background: var(--color-surface);
}

.service-list__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.service-page-section-heading {
  margin-bottom: clamp(36px, 10vw, 40px);
  color: var(--color-text);
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: clamp(1.875rem, 8vw, 2rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.service-list__grid {
  display: grid;
  gap: 16px;
}

.service-list__grid + .service-list__grid {
  margin-top: 16px;
}

.service-list-card {
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.service-list-card__title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: var(--color-text);
  font-size: clamp(1.25rem, 5.4vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.service-list-card__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--service-page-red);
  transform-origin: left center;
  transition: transform 280ms var(--easing-standard);
}

.service-list-card__body {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.is-js-enabled .service-list [data-service-list-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out,
    translate 280ms var(--easing-standard),
    border-color 280ms var(--easing-standard);
}

.is-js-enabled .service-list .service-list__heading[data-service-list-reveal] {
  transform: translateY(20px);
}

.is-js-enabled .service-list [data-service-list-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .service-page-section-heading {
    margin-bottom: 48px;
    font-size: 2.25rem;
  }

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

  .service-list__grid + .service-list__grid {
    margin-top: 24px;
  }

  .service-list__grid--secondary .service-list-card:last-child {
    grid-column: 1 / -1;
  }

  .service-list-card {
    padding: 28px;
  }

  .service-list-card--primary,
  .service-list-card--secondary {
    min-height: 280px;
  }

  .service-list-card__body {
    font-size: var(--font-size-md);
    line-height: 1.9;
  }
}

@media (min-width: 1024px) {
  .service-page-section-heading {
    margin-bottom: 56px;
    font-size: 2.5rem;
  }

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

  .service-list__grid--secondary .service-list-card:last-child {
    grid-column: auto;
  }

  .service-list-card--primary {
    min-height: 250px;
    padding: 36px;
  }

  .service-list-card--secondary {
    min-height: 300px;
    padding: 30px;
  }

  .service-list-card__title {
    font-size: 1.375rem;
  }

  .service-list-card__body {
    margin-top: 30px;
    line-height: 1.95;
  }
}

@media (hover: hover) and (pointer: fine) {
  .service-list-card {
    transition:
      translate 280ms var(--easing-standard),
      border-color 280ms var(--easing-standard);
  }

  .service-list-card:hover {
    border-color: #aeb4bd;
    translate: 0 -4px;
  }

  .service-list-card:hover .service-list-card__title::after {
    transform: scaleX(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .service-list [data-service-list-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-list-card,
  .service-list-card__title::after {
    transition: none;
  }

  .service-list-card:hover {
    translate: none;
  }
}

/* SERVICE & PRICE page: price plans */
.price-plans {
  color: var(--color-text);
  background: var(--color-bg);
}

.price-plans__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.price-plans__grid {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.price-card--recommended {
  color: rgba(255, 255, 255, 0.94);
  background: var(--service-page-recommended);
  border-color: var(--service-page-recommended);
}

.price-card__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 8px 4px;
  color: #ffffff;
  background: var(--service-page-red);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.14em;
}

.price-card__name {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-size: clamp(1.375rem, 6.4vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  letter-spacing: 0.18em;
}

.price-card__name::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--service-page-red);
  transform-origin: left center;
  transition: transform 280ms var(--easing-standard);
}

.price-card--recommended .price-card__name::after {
  background: rgba(255, 255, 255, 0.78);
}

.price-card__subtitle {
  margin-top: 9px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.price-card--recommended .price-card__subtitle,
.price-card--recommended .price-card__description,
.price-card--recommended .price-card__features {
  color: rgba(255, 255, 255, 0.88);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  margin-top: 32px;
  font-size: clamp(2.375rem, 11vw, 2.625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.price-card__currency {
  margin-right: 0.06em;
  font-size: 0.55em;
  letter-spacing: 0;
}

.price-card__description {
  margin-top: 28px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.price-card__divider {
  display: block;
  width: 52%;
  height: 1px;
  margin-block: 16px;
  background: var(--service-page-red);
}

.price-card--recommended .price-card__divider {
  background: rgba(255, 255, 255, 0.72);
}

.price-card__features {
  display: grid;
  gap: 3px;
  font-size: 0.9375rem;
  line-height: 1.72;
}

.price-card__features li {
  position: relative;
  padding-left: 0.9em;
}

.price-card__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
}

.price-card__note {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.8;
}

.is-js-enabled .price-plans [data-price-plans-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 660ms ease-out,
    transform 660ms ease-out,
    translate 280ms var(--easing-standard),
    border-color 280ms var(--easing-standard);
}

.is-js-enabled .price-plans .price-plans__heading[data-price-plans-reveal] {
  transform: translateY(20px);
}

.is-js-enabled .price-plans .price-card--recommended[data-price-plans-reveal] {
  transform: translateY(36px);
}

.is-js-enabled .price-plans [data-price-plans-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .price-plans__grid {
    gap: 24px;
  }

  .price-card {
    padding: 32px;
  }

  .price-card__price {
    font-size: 2.875rem;
  }

  .price-card__description,
  .price-card__features {
    font-size: var(--font-size-md);
  }
}

@media (min-width: 1024px) {
  .price-plans__grid {
    grid-template-areas: "one-page standard wordpress";
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    max-width: none;
  }

  .price-card {
    min-height: 660px;
    padding: 28px;
  }

  .price-card--one-page {
    grid-area: one-page;
  }

  .price-card--standard {
    grid-area: standard;
  }

  .price-card--wordpress {
    grid-area: wordpress;
  }

  .price-card__name {
    font-size: 1.375rem;
  }

  .price-card__price {
    font-size: clamp(2.5rem, 3.25vw, 2.875rem);
  }

  .price-card__description,
  .price-card__features {
    font-size: var(--font-size-sm);
  }
}

@media (min-width: 1200px) {
  .price-card {
    min-height: 680px;
    padding: 32px;
  }

  .price-card__name {
    font-size: 1.5rem;
  }

  .price-card__price {
    font-size: 3rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .price-card:hover {
    border-color: #aeb4bd;
    translate: 0 -4px;
  }

  .price-card--recommended:hover {
    border-color: #737373;
    translate: 0 -6px;
  }

  .price-card:hover .price-card__name::after {
    transform: scaleX(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .price-plans [data-price-plans-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .price-card,
  .price-card__name::after {
    transition: none;
  }

  .price-card:hover,
  .price-card--recommended:hover {
    translate: none;
  }
}

/* SERVICE & PRICE page: quick estimate */
.quick-estimate {
  color: var(--color-text);
  background: var(--color-surface);
}

.quick-estimate__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.quick-estimate__header {
  max-width: 760px;
  margin-bottom: clamp(48px, 11vw, 72px);
}

.quick-estimate__title-ja {
  font-size: clamp(1.125rem, 5vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
  letter-spacing: 0.14em;
}

.quick-estimate__intro {
  max-width: 44em;
  margin-top: 28px;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.015em;
}

.quick-estimate__layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

.estimate-form {
  min-width: 0;
}

.estimate-progress {
  margin-bottom: 44px;
}

.estimate-progress__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(44px, 1fr));
  align-items: center;
  list-style: none;
}

.estimate-progress__list::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  left: 22px;
  height: 1px;
  background: var(--color-border);
}

.estimate-progress__list li {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.estimate-progress__step {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid transparent;
  border-radius: 50%;
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  transition:
    color var(--duration-base) var(--easing-standard),
    background var(--duration-base) var(--easing-standard),
    border-color var(--duration-base) var(--easing-standard);
}

.estimate-progress__step.is-current {
  color: #ffffff;
  background: #555555;
}

.estimate-progress__step.is-complete {
  color: var(--service-page-red);
  background: var(--color-bg);
  border-color: var(--service-page-red);
}

.estimate-progress__step:disabled {
  color: #989898;
  cursor: not-allowed;
}

.estimate-step + .estimate-step {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--color-border);
}

.is-estimate-ready .estimate-step + .estimate-step {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.estimate-step.is-entering {
  opacity: 0;
  transform: translateY(16px);
}

.estimate-step {
  transition:
    opacity 260ms ease-out,
    transform 260ms ease-out;
}

.estimate-step__fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.estimate-step__question {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: clamp(1.375rem, 5.7vw, 1.75rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.015em;
}

.estimate-step__hint {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.estimate-step__error {
  margin-top: 12px;
  color: var(--service-page-red);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.estimate-options {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.estimate-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.estimate-option__content {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 76px;
  padding: 16px 48px 16px 18px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition:
    color var(--duration-base) var(--easing-standard),
    background var(--duration-base) var(--easing-standard),
    border-color var(--duration-base) var(--easing-standard),
    translate var(--duration-base) var(--easing-standard);
}

.estimate-option__title {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.estimate-option__meta {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.estimate-option__check {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: transparent;
  font-size: 0;
  border: 1px solid #aeb4bd;
  border-radius: 50%;
  transform: translateY(-50%);
}

.estimate-option__check::before {
  content: "✓";
  color: inherit;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(0);
}

.estimate-option input:checked + .estimate-option__content {
  color: #ffffff;
  background: #555555;
  border-color: #555555;
}

.estimate-option input:checked + .estimate-option__content .estimate-option__meta {
  color: rgba(255, 255, 255, 0.82);
}

.estimate-option input:checked + .estimate-option__content .estimate-option__check {
  color: #ffffff;
  border-color: var(--service-page-red);
  background: var(--service-page-red);
}

.estimate-option input:focus-visible + .estimate-option__content {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.estimate-page-count {
  display: grid;
  gap: 10px;
  max-width: 300px;
  margin-top: 24px;
}

.estimate-page-count label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.estimate-page-count select {
  width: 100%;
  min-height: 48px;
  padding: 10px 40px 10px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.estimate-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.estimate-actions--next-only {
  grid-template-columns: 1fr;
}

.estimate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid #555555;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition:
    color var(--duration-base) var(--easing-standard),
    background var(--duration-base) var(--easing-standard),
    border-color var(--duration-base) var(--easing-standard);
}

.estimate-button--primary {
  color: #ffffff;
  background: #555555;
}

.estimate-button--secondary {
  color: var(--color-text);
  background: var(--color-bg);
}

.estimate-button:disabled {
  color: #777777;
  background: #e4e4e4;
  border-color: #c9c9c9;
  cursor: not-allowed;
}

.estimate-confirmation {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--color-border);
}

.estimate-confirmation > div {
  display: grid;
  grid-template-columns: minmax(96px, 0.36fr) minmax(0, 1fr);
  gap: 8px 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--color-border);
}

.estimate-confirmation dt {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.estimate-confirmation dd {
  font-size: var(--font-size-sm);
  line-height: 1.65;
}

.estimate-confirmation button {
  grid-column: 2;
  justify-self: start;
  color: var(--service-page-red);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.estimate-result {
  padding: 30px 24px;
  background: var(--color-bg);
  border: 1px solid #777777;
  border-radius: 4px;
}

.is-estimate-ready .estimate-result {
  display: none;
}

.is-estimate-ready.is-step-final .estimate-result {
  display: block;
}

.estimate-result__label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.estimate-result__amount {
  margin-top: 24px;
  font-size: clamp(2rem, 10vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.estimate-result__quote-indicator {
  margin-top: 10px;
  color: var(--service-page-red);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.estimate-result__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 44px;
  background: var(--color-text);
}

.estimate-result__duration {
  margin-top: 24px;
  font-size: clamp(1.625rem, 8vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.estimate-result__details {
  display: grid;
  gap: 18px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.estimate-result__subheading {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.estimate-result__list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.estimate-result__list li {
  position: relative;
  padding-left: 0.9em;
}

.estimate-result__list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.estimate-result__notice {
  margin-top: 30px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.75;
}

.estimate-result__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.estimate-mobile-bar {
  display: none;
}

@media (min-width: 600px) {
  .estimate-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-actions {
    width: min(100%, 520px);
  }

  .estimate-actions--next-only {
    width: min(100%, 320px);
  }
}

@media (min-width: 1024px) {
  .quick-estimate__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: clamp(48px, 5vw, 64px);
  }

  .estimate-result {
    position: sticky;
    top: 98px;
    display: block !important;
    padding: 42px 40px;
  }

  .estimate-step__question {
    font-size: 1.75rem;
  }

  .estimate-result__amount {
    font-size: 2.75rem;
  }
}

@media (max-width: 1023px) {
  .is-estimate-ready.is-estimate-in-view .estimate-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: calc(76px + env(safe-area-inset-bottom));
    padding: 12px max(var(--page-gutter), env(safe-area-inset-left)) calc(12px + env(safe-area-inset-bottom)) max(var(--page-gutter), env(safe-area-inset-right));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--color-border);
  }

  .estimate-mobile-bar > div {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .estimate-mobile-bar__label {
    color: var(--color-text-muted);
    font-size: 0.6875rem;
  }

  .estimate-mobile-bar strong {
    overflow: hidden;
    font-size: clamp(0.875rem, 4.4vw, 1.125rem);
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .estimate-mobile-bar button {
    flex: 0 0 auto;
    min-height: 44px;
    padding-inline: 14px;
    color: #ffffff;
    background: #555555;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-bold);
  }

  .service-page.is-estimate-bar-visible .site-header__menu-button {
    bottom: auto;
  }
}

@media (max-width: 767px) {
  .is-estimate-ready.is-estimate-in-view .estimate-mobile-bar {
    bottom: calc(var(--mobile-bottom-header-height) + env(safe-area-inset-bottom));
  }
}

@media (hover: hover) and (pointer: fine) {
  .estimate-option:hover .estimate-option__content {
    border-color: #aeb4bd;
    translate: 0 -2px;
  }

  .estimate-button:not(:disabled):hover {
    color: #ffffff;
    background: var(--service-page-red);
    border-color: var(--service-page-red);
  }
}

@media (prefers-reduced-motion: reduce) {
  .estimate-step,
  .estimate-progress__step,
  .estimate-option__content,
  .estimate-button {
    transition: none;
  }

  .estimate-step.is-entering {
    opacity: 1;
    transform: none;
  }

  .estimate-option:hover .estimate-option__content {
    translate: none;
  }
}

/* SERVICE & PRICE page: included items */
.included {
  color: var(--color-text);
  background: var(--color-bg);
}

.included__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.included__heading {
  margin-bottom: 36px;
}

.included__intro {
  display: grid;
  gap: 20px;
}

.included__subheading {
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.included__lead {
  display: grid;
  gap: 2px;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.included__grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.included-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.included-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
}

.included-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.included-card__content {
  min-width: 0;
}

.included-card__title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-size: clamp(1.25rem, 5.4vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.included-card__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--service-page-red);
  transform-origin: left center;
  transition: transform 250ms var(--easing-standard);
}

.included__nowrap,
.u-nowrap {
  display: inline-block;
}

.included-card__text {
  margin-top: 20px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.is-js-enabled .included [data-included-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out,
    translate 250ms var(--easing-standard),
    border-color 250ms var(--easing-standard);
}

.is-js-enabled .included .included__heading[data-included-reveal],
.is-js-enabled .included .included__intro[data-included-reveal] {
  transform: translateY(20px);
}

.is-js-enabled .included [data-included-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .included__heading {
    margin-bottom: 44px;
  }

  .included__intro {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
    align-items: start;
  }

  .included__subheading {
    font-size: 1.375rem;
  }

  .included__lead {
    font-size: var(--font-size-md);
  }

  .included__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .included-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 20px;
    min-height: 210px;
    padding: 24px;
  }

  .included-card__icon {
    width: 60px;
    height: 60px;
  }

  .included-card__title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .included__heading {
    margin-bottom: 48px;
  }

  .included__intro {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: 64px;
  }

  .included__grid {
    margin-top: 56px;
  }

  .included-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 28px;
    min-height: 200px;
    padding: 32px;
  }

  .included-card__icon {
    width: 72px;
    height: 72px;
  }

  .included-card__title {
    font-size: 1.375rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .included-card {
    transition:
      translate 250ms var(--easing-standard),
      border-color 250ms var(--easing-standard);
  }

  .included-card:hover {
    border-color: #aeb4bd;
    translate: 0 -4px;
  }

  .included-card:hover .included-card__title::after {
    transform: scaleX(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .included [data-included-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .included-card,
  .included-card__title::after {
    transition: none;
  }

  .included-card:hover {
    translate: none;
  }
}

/* SERVICE & PRICE page: option prices */
.option-price {
  color: var(--color-text);
  background: var(--color-surface);
}

.option-price__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.option-price__heading {
  margin-bottom: 36px;
}

.option-price__intro {
  display: grid;
  gap: 20px;
}

.option-price__subheading {
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.option-price__lead {
  display: grid;
  gap: 2px;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.option-price__table-wrap {
  margin-top: 32px;
  overflow: visible;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.option-price__table {
  display: block;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.option-price__table colgroup {
  display: none;
}

.option-price__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.option-price__table tbody {
  display: block;
}

.option-price__table tbody tr {
  display: grid;
  grid-template-areas:
    "item amount"
    "detail detail";
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 20px 18px;
}

.option-price__table tbody tr:nth-child(odd) {
  background: var(--color-bg);
}

.option-price__table tbody tr:nth-child(even) {
  background: #f8f8f8;
}

.option-price__table tbody tr + tr {
  border-top: 1px solid var(--color-border);
}

.option-price__table th,
.option-price__table td {
  margin: 0;
  padding: 0;
  text-align: left;
  border: 0;
}

.option-price__table tbody th {
  grid-area: item;
  min-width: 0;
  font-size: clamp(1rem, 4.4vw, 1.125rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.55;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.option-price__detail {
  grid-area: detail;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.option-price__amount {
  grid-area: amount;
  align-self: start;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: right !important;
  white-space: nowrap;
}

.option-price__custom {
  margin-top: 28px;
}

.option-price__custom-title {
  margin-bottom: 14px;
  font-size: 1.0625rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.option-price__custom-body {
  display: grid;
  gap: 2px;
  padding: 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 0.9375rem;
  line-height: 1.85;
  letter-spacing: 0.005em;
}

.is-js-enabled .option-price [data-option-price-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .option-price .option-price__heading[data-option-price-reveal],
.is-js-enabled .option-price .option-price__intro[data-option-price-reveal] {
  transform: translateY(20px);
}

.is-js-enabled .option-price [data-option-price-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .option-price__heading {
    margin-bottom: 44px;
  }

  .option-price__intro {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
    align-items: end;
  }

  .option-price__subheading {
    font-size: 1.375rem;
  }

  .option-price__lead {
    font-size: var(--font-size-md);
  }

  .option-price__table-wrap {
    margin-top: 32px;
  }

  .option-price__table {
    display: table;
    table-layout: fixed;
  }

  .option-price__table colgroup {
    display: table-column-group;
  }

  .option-price__col-item {
    width: 28%;
  }

  .option-price__col-detail {
    width: 44%;
  }

  .option-price__col-amount {
    width: 28%;
  }

  .option-price__table thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .option-price__table tbody {
    display: table-row-group;
  }

  .option-price__table thead tr,
  .option-price__table tbody tr {
    display: table-row;
  }

  .option-price__table tbody tr + tr {
    border-top: 0;
  }

  .option-price__table th,
  .option-price__table td {
    display: table-cell;
    padding: 18px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-border);
  }

  .option-price__table tbody tr:last-child th,
  .option-price__table tbody tr:last-child td {
    border-bottom: 0;
  }

  .option-price__table thead th {
    color: #ffffff;
    background: #333333;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
  }

  .option-price__table tbody tr:nth-child(even) {
    background: #ececec;
  }

  .option-price__table tbody th {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.65;
  }

  .option-price__detail {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  .option-price__price-head,
  .option-price__amount {
    text-align: right !important;
    white-space: nowrap;
  }

  .option-price__amount {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.65;
  }

  .option-price__custom {
    margin-top: 28px;
  }

  .option-price__custom-body {
    padding: 22px 24px;
  }
}

@media (min-width: 1024px) {
  .option-price__heading {
    margin-bottom: 48px;
  }

  .option-price__intro {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 64px;
  }

  .option-price__table th,
  .option-price__table td {
    padding-block: 20px;
    padding-inline: 24px;
  }

  .option-price__col-item {
    width: 24%;
  }

  .option-price__col-detail {
    width: 48%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .option-price__table tbody tr {
    transition: background-color 220ms var(--easing-standard);
  }

  .option-price__table tbody tr:hover {
    background: #e4e4e4;
  }

  .option-price__amount {
    transition: font-weight 220ms var(--easing-standard);
  }

  .option-price__table tbody tr:hover .option-price__amount {
    font-weight: var(--font-weight-bold);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .option-price [data-option-price-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .option-price__table tbody tr,
  .option-price__amount {
    transition: none;
  }
}

/* SERVICE & PRICE page: maintenance plans */
.maintenance {
  color: var(--color-text);
  background: var(--color-bg);
}

.maintenance__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.maintenance__heading {
  margin-bottom: 36px;
}

.maintenance__intro {
  display: grid;
  gap: 20px;
}

.maintenance__subheading {
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.maintenance__lead {
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.maintenance__grid {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 720px;
  margin: 48px auto 0;
}

.maintenance-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.maintenance-card--support {
  color: rgba(255, 255, 255, 0.94);
  background: var(--service-page-recommended);
  border-color: var(--service-page-recommended);
}

.maintenance-card--growth {
  border-top: 3px solid var(--service-page-red);
}

.maintenance-card__badge {
  position: absolute;
  top: -15px;
  left: 28px;
  min-height: 28px;
  padding-inline: 11px;
  color: #ffffff;
  background: var(--service-page-ink);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.1em;
}

.maintenance-card__badge--recommended {
  background: var(--service-page-red);
}

.maintenance-card__name {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-size: clamp(1.375rem, 6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.maintenance-card__name::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--service-page-red);
  transform-origin: left center;
  transition: transform 270ms var(--easing-standard);
}

.maintenance-card--support .maintenance-card__name::after {
  background: rgba(255, 255, 255, 0.78);
}

.maintenance-card__audience {
  margin-top: 14px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
}

.maintenance-card--support .maintenance-card__audience,
.maintenance-card--support .maintenance-card__description,
.maintenance-card--support .maintenance-card__features {
  color: rgba(255, 255, 255, 0.88);
}

.maintenance-card__price {
  display: flex;
  align-items: baseline;
  margin-top: 38px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.maintenance-card__monthly {
  margin-right: 0.18em;
  font-size: clamp(1.25rem, 5.3vw, 1.5rem);
  letter-spacing: 0;
}

.maintenance-card__currency {
  margin-right: 0.04em;
  font-size: clamp(1.5rem, 6vw, 1.875rem);
  letter-spacing: 0;
}

.maintenance-card__amount {
  font-size: clamp(2.375rem, 10vw, 2.75rem);
}

.maintenance-card__suffix {
  font-size: clamp(1.5rem, 6vw, 1.875rem);
}

.maintenance-card__description {
  margin-top: 30px;
  font-size: 0.9375rem;
  line-height: 1.85;
  letter-spacing: 0.005em;
}

.maintenance-card__divider {
  display: block;
  width: 52%;
  height: 1px;
  margin-block: 16px;
  background: var(--service-page-red);
}

.maintenance-card--support .maintenance-card__divider {
  background: rgba(255, 255, 255, 0.72);
}

.maintenance-card__features {
  display: grid;
  gap: 4px;
  font-size: 0.9375rem;
  line-height: 1.72;
}

.maintenance-card__features li {
  position: relative;
  padding-left: 0.9em;
}

.maintenance-card__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
}

.maintenance__excluded {
  margin-top: 28px;
}

.is-js-enabled .maintenance [data-maintenance-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease-out,
    transform 650ms ease-out,
    translate 270ms var(--easing-standard),
    border-color 270ms var(--easing-standard);
}

.is-js-enabled .maintenance .maintenance__heading[data-maintenance-reveal],
.is-js-enabled .maintenance .maintenance__intro[data-maintenance-reveal] {
  transform: translateY(20px);
}

.is-js-enabled .maintenance .maintenance-card--support[data-maintenance-reveal] {
  transform: translateY(32px);
}

.is-js-enabled .maintenance [data-maintenance-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-js-enabled .maintenance-card__badge {
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 320ms ease-out 180ms,
    transform 320ms ease-out 180ms,
    translate 270ms var(--easing-standard);
}

.is-js-enabled .maintenance-card.is-in-view .maintenance-card__badge {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .maintenance__heading {
    margin-bottom: 44px;
  }

  .maintenance__intro {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
    align-items: end;
  }

  .maintenance__subheading {
    font-size: 1.375rem;
  }

  .maintenance__lead {
    font-size: var(--font-size-md);
  }

  .maintenance-card {
    padding: 32px;
  }

  .maintenance-card__amount {
    font-size: 2.875rem;
  }

  .maintenance-card__features {
    font-size: var(--font-size-md);
  }
}

@media (min-width: 1024px) {
  .maintenance__heading {
    margin-bottom: 48px;
  }

  .maintenance__intro {
    gap: 64px;
  }
}

@media (min-width: 1200px) {
  .maintenance__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    max-width: none;
    margin-top: 56px;
  }

  .maintenance-card {
    min-height: 540px;
    padding: 32px;
  }

  .maintenance-card__name {
    font-size: 1.5rem;
  }

  .maintenance-card__audience,
  .maintenance-card__description,
  .maintenance-card__features {
    font-size: var(--font-size-sm);
  }

  .maintenance-card__amount {
    font-size: clamp(2.5rem, 3.25vw, 2.875rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .maintenance-card {
    transition:
      translate 270ms var(--easing-standard),
      border-color 270ms var(--easing-standard);
  }

  .maintenance-card:hover {
    border-color: #aeb4bd;
    translate: 0 -4px;
  }

  .maintenance-card--support:hover {
    border-color: #737373;
    translate: 0 -6px;
  }

  .maintenance-card--growth:hover {
    border-color: var(--service-page-red);
  }

  .maintenance-card:hover .maintenance-card__name::after {
    transform: scaleX(1.05);
  }

  .maintenance-card:hover .maintenance-card__badge {
    translate: 0 -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .maintenance [data-maintenance-reveal],
  .is-js-enabled .maintenance-card__badge {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .maintenance-card,
  .maintenance-card__name::after,
  .maintenance-card__badge {
    transition: none;
  }

  .maintenance-card:hover,
  .maintenance-card--support:hover,
  .maintenance-card:hover .maintenance-card__badge {
    translate: none;
  }
}

/* SERVICE & PRICE page: production process */
.process {
  color: var(--color-text);
  background: var(--color-bg);
}

.process__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.process__heading {
  margin-bottom: 36px;
}

.process__intro {
  display: grid;
  gap: 18px;
}

.process__subheading {
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.process__lead {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.process__phases {
  display: grid;
  gap: 0;
  margin-top: 48px;
}

.process-phase {
  --process-rail-node-y: 24px;

  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding-top: 18px;
  padding-left: 24px;
  border-top: 1px solid #dedede;
  overflow: visible;
}

.process-phase:not(.process-phase--last) {
  padding-bottom: 40px;
}

.process-phase__rail {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 8px;
  pointer-events: none;
}

.process-phase__node {
  position: absolute;
  top: calc(var(--process-rail-node-y) - 4px);
  left: 0;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--service-page-red);
  transform-origin: center;
}

.process-phase__line {
  position: absolute;
  top: var(--process-rail-node-y);
  right: auto;
  bottom: calc(var(--process-rail-node-y) * -1);
  left: 3.5px;
  width: 1px;
  background: #7a7a7a;
  transform-origin: top center;
}

.process-phase--last .process-phase__line {
  bottom: auto;
  height: 30px;
}

.process-phase__arrow {
  position: absolute;
  top: calc(var(--process-rail-node-y) + 23px);
  left: 0.5px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #7a7a7a;
  border-bottom: 1px solid #7a7a7a;
  transform: rotate(45deg);
  transform-origin: center;
}

.process-phase__label {
  position: relative;
  min-width: 0;
}

.process-phase__number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--service-page-ink);
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.025em;
}

.process-phase__number::after {
  content: "";
  width: min(88px, 28vw);
  height: 1px;
  background: #e0e0e0;
}

.process-phase__title {
  margin-top: 10px;
  color: var(--service-page-ink);
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: clamp(1.75rem, 8.5vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.01em;
}

.process-phase__cards {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.process-card {
  min-width: 0;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.process-card__step {
  min-height: 28px;
  padding: 5px 16px;
  color: var(--service-page-ink);
  background: #f3f3f3;
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.025em;
}

.process-card__body {
  padding: 18px 20px 20px;
}

.process-card__title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.process-card__num {
  flex: 0 0 auto;
  color: var(--service-page-red);
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: clamp(2.25rem, 11vw, 2.625rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.process-card__label {
  min-width: 0;
  color: var(--service-page-ink);
  font-size: clamp(1.0625rem, 4.8vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
  letter-spacing: 0.015em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.process-card__label::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 11em;
  height: 1px;
  margin-top: 2px;
  background: var(--service-page-red);
}

.process-card__text {
  margin-top: 10px;
  padding-left: 46px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.is-js-enabled .process [data-process-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out,
    translate 250ms var(--easing-standard),
    border-color 250ms var(--easing-standard);
}

.is-js-enabled .process .process-phase__rail[data-process-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.is-js-enabled .process [data-process-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-js-enabled .process .process-phase__rail .process-phase__line {
  transform: scaleY(0);
  transition: transform 520ms ease-out 80ms;
}

.is-js-enabled .process .process-phase__rail .process-phase__node,
.is-js-enabled .process .process-phase__rail .process-phase__arrow {
  opacity: 0;
  transform: scale(0.35);
  transition:
    opacity 240ms ease-out,
    transform 240ms ease-out;
}

.is-js-enabled .process .process-phase__rail .process-phase__arrow {
  transform: rotate(45deg) scale(0.35);
  transition-delay: 400ms;
}

.is-js-enabled .process .process-phase__rail.is-in-view .process-phase__line {
  transform: scaleY(1);
}

.is-js-enabled .process .process-phase__rail.is-in-view .process-phase__node {
  opacity: 1;
  transform: scale(1);
}

.is-js-enabled .process .process-phase__rail.is-in-view .process-phase__arrow {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

@media (min-width: 768px) {
  .process__heading {
    margin-bottom: 44px;
  }

  .process__intro {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
    align-items: end;
  }

  .process__subheading {
    font-size: 1.375rem;
  }

  .process__lead {
    font-size: var(--font-size-md);
  }

  .process__phases {
    margin-top: 56px;
  }

  .process-card__body {
    padding: 20px 24px 24px;
  }

  .process-card__text {
    padding-left: 52px;
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .process__heading {
    margin-bottom: 48px;
  }

  .process__intro {
    grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
    gap: 48px;
  }

  .process__phases {
    margin-top: 48px;
  }

  .process-phase {
    --process-rail-node-y: 21px;

    grid-template-columns: 270px minmax(0, 1fr);
    column-gap: 44px;
    row-gap: 0;
    align-items: start;
    padding-top: 14px;
    padding-left: 0;
  }

  .process-phase:not(.process-phase--last) {
    padding-bottom: 56px;
  }

  .process-phase__rail {
    left: 18px;
    width: 8px;
  }

  .process-phase__label {
    padding-left: 42px;
  }

  .process-phase__number {
    gap: 12px;
    font-size: 0.875rem;
  }

  .process-phase__number::after {
    width: 110px;
  }

  .process-phase__title {
    width: max-content;
    max-width: calc(100% + 24px);
    margin-top: 16px;
    font-size: clamp(2.5rem, 3.05vw, 2.75rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

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

  .process-card {
    min-height: 190px;
    border-color: #dcdcdc;
  }

  .process-card__step {
    min-height: 30px;
    padding-block: 5px;
    padding-inline: 18px;
    font-size: 0.875rem;
  }

  .process-card__body {
    padding: 24px 26px 26px;
  }

  .process-card__title {
    gap: 10px;
  }

  .process-card__num {
    font-size: 3.125rem;
  }

  .process-card__label {
    font-size: clamp(1.25rem, 1.55vw, 1.375rem);
    line-height: 1.45;
  }

  .process-card__label::after {
    margin-top: 4px;
  }

  .process-card__text {
    margin-top: 14px;
    padding-left: 45px;
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

@media (hover: hover) and (pointer: fine) {
  .process-card {
    transition:
      translate 250ms var(--easing-standard),
      border-color 250ms var(--easing-standard);
  }

  .process-card:hover {
    border-color: #aeb4bd;
    translate: 0 -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .process [data-process-reveal],
  .is-js-enabled .process .process-phase__rail[data-process-reveal],
  .is-js-enabled .process .process-phase__rail .process-phase__node,
  .is-js-enabled .process .process-phase__rail .process-phase__line,
  .is-js-enabled .process .process-phase__rail .process-phase__arrow {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .is-js-enabled .process .process-phase__rail .process-phase__arrow {
    transform: rotate(45deg);
  }

  .process-card {
    transition: none;
  }

  .process-card:hover {
    translate: none;
  }
}

/* SERVICE & PRICE page: revision policy */
.revision {
  color: var(--color-text);
  background: var(--color-surface);
}

.revision__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.revision__heading {
  margin-bottom: 36px;
}

.revision__intro {
  display: grid;
  gap: 20px;
}

.revision__subheading {
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.revision__lead {
  display: grid;
  gap: 22px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.revision__grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.revision-card {
  min-width: 0;
  padding: 24px;
}

.revision-card--included {
  color: rgba(255, 255, 255, 0.94);
  background: var(--service-page-recommended);
  border: 1px solid var(--service-page-recommended);
}

.revision-card--additional {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.revision-card__title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-size: clamp(1.375rem, 6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.revision-card__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--service-page-red);
}

.revision-card--included .revision-card__title::after {
  background: rgba(255, 255, 255, 0.82);
}

.revision-card__subtitle {
  margin-top: 14px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.revision-card--included .revision-card__subtitle,
.revision-card--included .revision-card__list {
  color: rgba(255, 255, 255, 0.9);
}

.revision-card__limit {
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--service-page-ink);
  background: var(--color-bg);
  text-align: center;
  font-size: clamp(1rem, 4.5vw, 1.125rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
}

.revision-card__steps {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-top: 0;
}

.revision-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  min-width: 0;
  padding: 14px 16px;
}

.revision-step + .revision-step {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.revision-step__num {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.revision-step__en {
  min-width: 0;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  letter-spacing: 0.07em;
  overflow-wrap: anywhere;
}

.revision-step__ja {
  font-size: 0.875rem;
  line-height: 1.5;
}

.revision-card__list {
  font-size: 0.875rem;
  line-height: 1.9;
}

.revision-card__list--included {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.revision-card__list--included li {
  position: relative;
  padding-left: 0.9em;
}

.revision-card__list--included li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.revision-card__list--additional {
  margin-top: 20px;
}

.revision-card__list--additional li {
  position: relative;
  padding: 14px 0 14px 1.25em;
  border-bottom: 1px solid #e1e1e1;
}

.revision-card__list--additional li:last-child {
  border-bottom: 0;
}

.revision-card__list--additional li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--service-page-red);
}

.revision__note {
  margin-top: 32px;
  padding: 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.005em;
}

.is-js-enabled .revision [data-revision-reveal],
.is-js-enabled .revision [data-revision-step] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out,
    translate 250ms var(--easing-standard),
    border-color 250ms var(--easing-standard);
}

.is-js-enabled .revision [data-revision-reveal].is-in-view,
.is-js-enabled .revision [data-revision-step].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 600px) {
  .revision-card__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .revision-step {
    display: block;
    padding: 16px 10px;
    text-align: center;
  }

  .revision-step + .revision-step {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.26);
  }

  .revision-step__num {
    font-size: 2.125rem;
  }

  .revision-step__en {
    margin-top: 2px;
    font-size: 0.75rem;
  }

  .revision-step__ja {
    margin-top: 2px;
  }
}

@media (min-width: 768px) {
  .revision__heading {
    margin-bottom: 44px;
  }

  .revision__intro {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
    align-items: start;
  }

  .revision__subheading {
    font-size: 1.375rem;
  }

  .revision__lead {
    gap: 28px;
    font-size: var(--font-size-md);
  }

  .revision__grid {
    margin-top: 44px;
  }

  .revision-card {
    padding: 30px;
  }

  .revision__note {
    margin-top: 40px;
    padding: 22px;
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .revision__heading {
    margin-bottom: 48px;
  }

  .revision__intro {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    gap: 64px;
  }

  .revision__lead {
    max-width: 660px;
    gap: 30px;
  }

  .revision__grid {
    grid-template-columns: minmax(0, 1.24fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 24px;
    margin-top: 48px;
  }

  .revision-card {
    min-height: 430px;
    padding: 36px;
  }

  .revision-card__title {
    font-size: 1.625rem;
  }

  .revision-card__limit {
    margin-top: 18px;
    padding: 13px 16px;
  }

  .revision-step {
    padding-block: 16px;
  }

  .revision-card__list {
    font-size: 0.9375rem;
  }

  .revision-card__list--additional {
    margin-top: 22px;
  }

  .revision-card__list--additional li {
    padding-block: 15px;
  }

  .revision__note {
    margin-top: 48px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .revision-card {
    transition:
      translate 250ms var(--easing-standard),
      border-color 250ms var(--easing-standard);
  }

  .revision-card:hover {
    border-color: #aeb4bd;
    translate: 0 -4px;
  }

  .revision-card--included:hover {
    border-color: #737373;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-js-enabled .revision [data-revision-reveal],
  .is-js-enabled .revision [data-revision-step] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .revision-card {
    transition: none;
  }

  .revision-card:hover {
    translate: none;
  }
}

/* SERVICE & PRICE page: frequently asked questions */
.faq {
  color: var(--color-text);
  background: var(--color-surface);
}

.faq__inner {
  width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.faq__heading {
  margin-bottom: 36px;
}

.faq__intro {
  display: grid;
  gap: 20px;
}

.faq__subheading {
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.faq__lead {
  display: grid;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.faq__list {
  display: grid;
  width: min(100%, 780px);
  gap: 8px;
  margin: 40px auto 0;
}

.faq-item {
  min-width: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.faq-item__heading {
  font: inherit;
}

.faq-item__button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 44px;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 0 8px 0 16px;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-item__number {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center start;
  color: var(--service-page-red);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.faq-item__number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 32px;
  background: var(--color-border);
  transform: translateY(-50%);
}

.faq-item__question {
  min-width: 0;
  padding: 16px 14px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
}

.faq-item__icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  transition: transform 220ms ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1px;
  background: var(--service-page-red);
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__button[aria-expanded="true"] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition:
    grid-template-rows 240ms var(--easing-standard),
    opacity 220ms ease;
}

.faq-item__answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 20px 22px 64px;
  color: rgba(21, 21, 21, 0.84);
  font-size: 0.9375rem;
  line-height: 1.88;
}

.faq-item__answer-inner p + p {
  margin-top: 12px;
}

.is-js-enabled .faq-item__answer {
  grid-template-rows: 0fr;
  opacity: 0;
}

.is-js-enabled .faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.is-js-enabled .faq [data-faq-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease-out,
    transform 620ms ease-out;
}

.is-js-enabled .faq [data-faq-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.faq-item__button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--service-page-red);
  outline-offset: -3px;
}

@media (min-width: 768px) {
  .faq__heading {
    margin-bottom: 44px;
  }

  .faq__intro {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    align-items: end;
    gap: 48px;
  }

  .faq__subheading {
    font-size: 1.375rem;
  }

  .faq__lead {
    font-size: var(--font-size-md);
  }

  .faq__list {
    margin-top: 48px;
  }

  .faq-item__button {
    grid-template-columns: 60px minmax(0, 1fr) 48px;
    min-height: 66px;
    padding: 0 12px 0 22px;
  }

  .faq-item__number {
    font-size: 1.5rem;
  }

  .faq-item__question {
    padding-inline: 22px;
    font-size: var(--font-size-md);
  }

  .faq-item__answer-inner {
    padding: 0 72px 24px 84px;
    line-height: 1.9;
  }
}

@media (min-width: 1024px) {
  .faq__heading {
    margin-bottom: 48px;
  }

  .faq__intro {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    gap: 64px;
  }

  .faq__lead {
    max-width: 660px;
  }

  .faq__list {
    margin-top: 52px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .faq-item__button:hover {
    background: #fafafa;
    box-shadow: inset 0 0 0 1px #b9bec5;
  }

  .faq-item__button:hover .faq-item__icon {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__button,
  .faq-item__icon,
  .faq-item__icon::before,
  .faq-item__icon::after,
  .faq-item__answer,
  .is-js-enabled .faq [data-faq-reveal] {
    transition: none;
  }

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

  .faq-item__button:hover .faq-item__icon {
    transform: none;
  }
}

/* SERVICE & PRICE page: shared section rhythm and in-page navigation */
.service-page {
  --service-page-nav-height: var(--service-page-nav-height-mobile);
  --service-section-space-block: 80px;
  --service-section-heading-gap: 32px;
  --service-section-intro-gap: 20px;
  --service-section-content-gap: 40px;
}

.service-page-nav {
  position: sticky;
  top: var(--global-header-height);
  z-index: 20;
  height: var(--service-page-nav-height);
  color: var(--service-page-ink);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 200ms ease,
    visibility 200ms ease;
}

.service-page-nav__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  gap: 24px;
  padding-inline: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 20px;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.service-page-nav__inner::-webkit-scrollbar {
  display: none;
}

.service-page-nav__link {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
  color: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color var(--duration-base) var(--easing-standard);
}

.service-page-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--service-page-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-base) var(--easing-standard);
}

.service-page-nav__link.is-active {
  color: var(--service-page-red);
}

.service-page-nav__link.is-active::after {
  transform: scaleX(1);
}

.service-page-nav__link:focus-visible {
  z-index: 1;
  outline-color: var(--service-page-red);
  outline-offset: -4px;
}

body.is-menu-open .service-page-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.service-page :is(
  #service,
  #price,
  #estimate,
  #maintenance,
  #process,
  #faq,
  #contact
) {
  scroll-margin-top: calc(
    var(--global-header-height)
    + var(--service-page-nav-height)
    + 24px
  );
}

.service-page :is(
  .service-list__inner,
  .price-plans__inner,
  .quick-estimate__inner,
  .included__inner,
  .option-price__inner,
  .maintenance__inner,
  .process__inner,
  .revision__inner,
  .faq__inner
) {
  padding-block: var(--service-section-space-block);
}

.service-page .service-page-section--direct .service-page-section-heading {
  margin-bottom: var(--service-section-content-gap);
}

.service-page :is(
  .quick-estimate__heading,
  .included__heading,
  .option-price__heading,
  .maintenance__heading,
  .process__heading,
  .revision__heading,
  .faq__heading
) {
  margin-bottom: var(--service-section-heading-gap);
}

.service-page :is(
  .quick-estimate__header,
  .included__intro,
  .option-price__intro,
  .maintenance__intro,
  .process__intro,
  .revision__intro,
  .faq__intro
) {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: var(--service-section-intro-gap);
}

.service-page :is(
  .quick-estimate__intro,
  .included__lead,
  .option-price__lead,
  .maintenance__lead,
  .process__lead,
  .revision__lead,
  .faq__lead,
  .service-list-card__body,
  .faq-item__question,
  .faq-item__answer-inner
) {
  font-size: 1rem;
}

.service-page .quick-estimate__intro {
  margin-top: 0;
}

.service-page :is(
  .quick-estimate__layout,
  .included__grid,
  .option-price__table-wrap,
  .maintenance__grid,
  .process__phases,
  .revision__grid,
  .faq__list
) {
  margin-top: var(--service-section-content-gap);
}

.service-page .quick-estimate__header {
  max-width: none;
  margin-bottom: 0;
}

.service-page .estimate-result__notice {
  font-size: 0.8125rem;
}

@media (min-width: 1024px) {
  .service-page {
    --service-page-nav-height: var(--service-page-nav-height-desktop);
    --service-section-space-block: 120px;
    --service-section-heading-gap: 48px;
    --service-section-content-gap: 48px;
  }

  .service-page-nav__inner {
    justify-content: center;
    width: min(100% - calc(var(--page-gutter) * 2), var(--content-width));
    gap: clamp(28px, 2.6vw, 36px);
    margin-inline: auto;
    padding-inline: 0;
  }

  .service-page-nav__link {
    font-size: 0.9375rem;
  }

  .service-page :is(
    .quick-estimate__header,
    .included__intro,
    .option-price__intro,
    .maintenance__intro,
    .process__intro,
    .revision__intro,
    .faq__intro
  ) {
    grid-template-columns: minmax(0, 36%) minmax(0, 1fr);
    align-items: end;
    gap: 64px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .service-page-nav__link:hover {
    color: var(--service-page-red);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu,
  .site-header__menu-line,
  .site-header__menu-button::before,
  .site-header__menu-button::after {
    transition: none;
  }

  .service-page-nav {
    transition: none;
  }

  .service-page-nav__inner {
    scroll-behavior: auto;
  }

  .service-page-nav__link,
  .service-page-nav__link::after {
    transition: none;
  }
}

/* Privacy policy page */
.privacy-page {
  --privacy-red: #b3121b;
  --privacy-border: rgba(21, 21, 21, 0.22);
  --privacy-muted: #555555;
  overflow: hidden;
  background: #f7f7f5;
}

.privacy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 38%, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(8deg, rgba(0, 0, 0, 0.018) 0 1px, transparent 1px 7px),
    #eeeeec;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 0, 0, 0.11) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 68%, rgba(0, 0, 0, 0.08) 0 1px, transparent 1.5px);
  background-size: 19px 23px, 27px 31px;
}

.privacy-hero__inner {
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
  padding-block: 44px 60px;
}

.privacy-hero__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #222222;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.privacy-hero__breadcrumb-list li + li::before {
  content: ">";
  margin-right: 7px;
}

.privacy-hero__breadcrumb a {
  text-decoration: none;
}

.privacy-hero__breadcrumb a:hover {
  color: var(--privacy-red);
}

.privacy-hero__body {
  display: grid;
  gap: 44px;
  margin-top: 52px;
}

.privacy-hero__title {
  display: grid;
  width: min-content;
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: clamp(3.25rem, 15vw, 4.25rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.privacy-hero__lead {
  max-width: 420px;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.privacy-policy__inner {
  width: min(100% - 40px, 920px);
  margin-inline: auto;
  padding-block: 38px 88px;
}

.privacy-policy__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  padding: 24px 20px;
  border: 1px solid var(--privacy-border);
  background: #ffffff;
}

.privacy-policy__item + .privacy-policy__item {
  margin-top: 12px;
}

.privacy-policy__number {
  color: var(--privacy-red);
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.privacy-policy__content {
  display: contents;
  min-width: 0;
}

.privacy-policy__title {
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(21, 21, 21, 0.3);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.privacy-policy__body {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin-top: 20px;
  overflow-wrap: normal;
  word-break: normal;
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.privacy-policy__body p + p,
.privacy-policy__body p + ul,
.privacy-policy__body ul + p,
.privacy-policy__body p + .privacy-policy__details {
  margin-top: 14px;
}

.privacy-policy__body ul {
  padding-left: 1.2em;
}

.privacy-policy__body li::marker {
  color: var(--privacy-red);
}

.privacy-policy__body a {
  overflow-wrap: anywhere;
  text-decoration-color: var(--privacy-red);
}

.privacy-policy__details {
  display: grid;
  gap: 3px;
}

.privacy-policy__details > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.privacy-policy__details dt::after {
  content: "：";
}

.privacy-contact {
  display: grid;
  justify-items: start;
  gap: 24px;
  margin-top: 28px;
  padding: 28px 24px;
  border: 1px solid var(--privacy-border);
  background: #ffffff;
}

.privacy-contact__icon {
  position: relative;
  display: block;
  width: 58px;
  height: 42px;
  border: 2px solid #222222;
  border-radius: 2px;
}

.privacy-contact__icon::before,
.privacy-contact__icon::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 34px;
  height: 2px;
  background: #222222;
}

.privacy-contact__icon::before {
  left: 1px;
  transform: rotate(38deg);
  transform-origin: left;
}

.privacy-contact__icon::after {
  right: 1px;
  transform: rotate(-38deg);
  transform-origin: right;
}

.privacy-contact__content {
  min-width: 0;
}

.privacy-contact__title {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--privacy-red);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.privacy-contact__text {
  margin-top: 20px;
  color: var(--privacy-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.privacy-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 300px);
  min-height: 50px;
  margin-top: 22px;
  padding: 12px 18px;
  color: #ffffff;
  background: #252525;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color var(--duration-base) var(--easing-standard),
    background-color var(--duration-base) var(--easing-standard);
}

.privacy-contact__button:hover {
  color: #ffffff;
  background: var(--privacy-red);
}

@media (min-width: 768px) {
  .privacy-hero__inner {
    width: min(100% - 64px, var(--content-width));
    padding-block: 34px 72px;
  }

  .privacy-hero__body {
    margin-top: 54px;
  }

  .privacy-policy__inner {
    width: min(100% - 64px, 920px);
    padding-block: 52px 128px;
  }

  .privacy-policy__item {
    grid-template-columns: 60px minmax(0, 1fr);
    column-gap: 0;
    padding: 28px 36px;
  }

  .privacy-policy__item + .privacy-policy__item {
    margin-top: 16px;
  }

  .privacy-policy__content {
    display: block;
    padding-left: 24px;
    border-left: 1px solid rgba(21, 21, 21, 0.3);
  }

  .privacy-policy__title {
    padding-left: 0;
    border-left: 0;
  }

  .privacy-policy__body {
    width: auto;
    margin-top: 12px;
    overflow-wrap: anywhere;
  }

  .privacy-policy__details > div {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0.4em;
  }

  .privacy-contact {
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    margin-top: 32px;
    padding: 40px 48px;
  }

  .privacy-contact__icon {
    width: 76px;
    height: 54px;
  }

  .privacy-contact__icon::before,
  .privacy-contact__icon::after {
    top: 9px;
    width: 45px;
  }
}

@media (min-width: 1024px) {
  .privacy-hero__inner {
    min-height: 430px;
  }

  .privacy-hero__body {
    grid-template-columns: minmax(0, 40%) minmax(0, 420px);
    align-items: center;
    gap: clamp(80px, 8vw, 112px);
    margin-top: 58px;
  }

  .privacy-hero__title {
    font-size: clamp(4.5rem, 7vw, 7rem);
  }

  .privacy-hero__lead {
    font-size: 1.125rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .privacy-hero__title,
  .privacy-hero__lead,
  .privacy-policy__item,
  .privacy-contact {
    animation: privacy-fade-up 620ms ease-out both;
  }

  .privacy-hero__lead {
    animation-delay: 80ms;
  }

  .privacy-policy__item,
  .privacy-contact {
    animation-duration: 520ms;
  }
}

@keyframes privacy-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TOP: English section headings follow the existing CONTACT treatment */
.selected-project__number,
.selected-project__title,
.selected-project__slide-number,
.selected-project__slide-title {
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
}

:is(
  .selected-project__eyebrow,
  .about__label,
  .skills__label,
  .service__label
) {
  width: max-content;
  padding-inline: 0;
  font-family: "Oswald", "Arial Narrow", var(--font-sans);
  font-size: clamp(1.875rem, 8vw, 2rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.selected-project__eyebrow {
  left: var(--page-gutter);
  justify-self: start;
  text-align: left;
  transform: none;
}

.about__label,
.skills__label {
  margin-inline: 0;
  text-align: left;
}

.service__label {
  justify-self: start;
  text-align: left;
}

:is(
  .selected-project__eyebrow,
  .about__label,
  .skills__label,
  .service__label
)::before,
:is(
  .selected-project__eyebrow,
  .about__label,
  .skills__label,
  .service__label
)::after {
  content: none;
}

.about__layout,
.skills__intro,
.service__intro {
  margin-top: 48px;
}

@media (min-width: 768px) {
  :is(
    .selected-project__eyebrow,
    .about__label,
    .skills__label,
    .service__label
  ) {
    font-size: 2.25rem;
  }

  .selected-project__eyebrow {
    left: calc(50% - 50vw + var(--page-gutter));
  }
}

@media (min-width: 1024px) {
  :is(
    .selected-project__eyebrow,
    .about__label,
    .skills__label,
    .service__label
  ) {
    font-size: 2.5rem;
  }

  .selected-project__eyebrow {
    left: auto;
    margin-left: max(0px, calc((100% - var(--content-width)) / 2));
    opacity: var(--selected-project-exit-opacity, 1);
    transform: translate3d(0, var(--selected-project-exit-y, 0px), 0);
    will-change: opacity, transform;
  }

  .about__layout,
  .skills__intro,
  .service__intro {
    margin-top: 56px;
  }
}
