:root {
  --color-text: #171717;
  --color-text-muted: #6f6f6a;
  --color-bg: #f4f4f1;
  --color-surface: #fafaf8;
  --color-primary: #102e49;
  --color-primary-dark: #091f33;
  --color-dark: #343431;
  --color-white: #fafaf8;
  --color-border: #d8d8d2;
  --font-sans: Noto Sans JP, Hiragino Kaku Gothic ProN, Yu Gothic, sans-serif;
  --font-serif: Shippori Mincho, Hiragino Mincho ProN, Yu Mincho, serif;
  --font-en: Noto Sans JP, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.25rem;
}

.container {
  width: min(100% - 2.5rem, 75rem);
  margin-inline: auto;
}
@media screen and (min-width: 48rem) {
  .container {
    width: min(100% - 4rem, 75rem);
  }
}

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

.js-enabled .js-fade {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js-enabled .js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: fit-content;
  min-height: 2.875rem;
  padding-inline: 1.5rem;
  border: 0.0625rem solid transparent;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.button--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.button--white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(250, 250, 248, 0.55);
}
.button--white:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 244, 241, 0.94);
  border-bottom: 0.0625rem solid rgba(216, 216, 210, 0.85);
  backdrop-filter: blur(0.75rem);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}
@media screen and (min-width: 48rem) {
  .site-header__inner {
    min-height: 5.125rem;
  }
}

.site-header__logo {
  display: block;
  flex-shrink: 0;
  width: 9.375rem;
}
@media screen and (min-width: 48rem) {
  .site-header__logo {
    width: 10.75rem;
  }
}

.site-header__logo img {
  width: 100%;
  height: auto;
}

.site-header__menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.625rem;
  cursor: pointer;
}
@media screen and (min-width: 48rem) {
  .site-header__menu-button {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.site-header__menu-button[aria-expanded=true] .hamburger-line:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.site-header__menu-button[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.site-header__menu-button[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.0625rem);
  left: -1.25rem;
  width: calc(100% + 2.5rem);
  padding: 1.75rem 1.25rem 2rem;
  background: var(--color-bg);
  border-bottom: 0.0625rem solid var(--color-border);
}
@media screen and (min-width: 48rem) {
  .site-nav {
    display: block;
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (min-width: 48rem) {
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.625rem);
  }
}

.site-nav__link {
  position: relative;
  display: block;
  padding-block: 0.625rem;
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
@media screen and (min-width: 48rem) {
  .site-nav__link {
    padding-block: 0.375rem;
    font-size: 0.8125rem;
  }
}
.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav__link:hover::after, .site-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.site-nav__cta {
  display: none;
}

.hero {
  background: var(--color-bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  padding-top: 3.25rem;
}
@media screen and (min-width: 48rem) {
  .hero__inner {
    position: relative;
    min-height: clamp(37.5rem, 78svh, 47.5rem);
    padding-top: 0;
  }
}

.hero__content {
  display: grid;
  gap: 1.375rem;
  width: min(100% - 2.5rem, 75rem);
  margin-inline: auto;
}
@media screen and (min-width: 48rem) {
  .hero__content {
    position: relative;
    z-index: 1;
    align-content: center;
    width: min(100% - 4rem, 75rem);
    pointer-events: none;
  }
}

.hero__label {
  order: -1;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 8.5vw, 2.375rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (min-width: 48rem) {
  .hero__title {
    max-width: 43.75rem;
    font-size: clamp(3rem, 4.3vw, 4rem);
    line-height: 1.55;
    letter-spacing: 0.055em;
  }
}

.hero__text {
  font-size: 0.875rem;
  line-height: 1.95;
  color: var(--color-text);
}
@media screen and (min-width: 48rem) {
  .hero__text {
    font-size: 0.9375rem;
  }
}

.hero__picture {
  display: block;
  width: 100%;
  margin-top: 2.75rem;
}
@media screen and (min-width: 48rem) {
  .hero__picture {
    position: absolute;
    inset: 0;
    height: 100%;
    margin-top: 0;
  }
}

.hero__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: 68% center;
}
@media screen and (min-width: 48rem) {
  .hero__img {
    height: 100%;
    aspect-ratio: auto;
    object-position: center;
  }
}

.section {
  padding-block: 5.5rem;
}
@media screen and (min-width: 48rem) {
  .section {
    padding-block: 8.5rem;
  }
}

.section__header {
  display: grid;
  gap: 0.75rem;
  max-width: 42.5rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 48rem) {
  .section__header {
    margin-bottom: 4.5rem;
  }
}

.section__label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 7vw, 2.375rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (min-width: 48rem) {
  .section__title {
    font-size: 2.5rem;
  }
}

.section__text {
  max-width: 38.75rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.about {
  background: var(--color-bg);
}

.about__header {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .about__header {
    margin-bottom: 3.5rem;
  }
}

.about__content {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 64rem) {
  .about__content {
    grid-template-columns: minmax(29.375rem, 0.95fr) minmax(0, 1.05fr);
    gap: 3.75rem;
    align-items: start;
  }
}

.about__message {
  padding-left: 1.5rem;
  border-left: 0.0625rem solid var(--color-border);
}
@media screen and (min-width: 48rem) {
  .about__message {
    padding-top: 0.5rem;
    padding-left: 2rem;
  }
}

.about__message-label {
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.about__message-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 64rem) {
  .about__message-text {
    white-space: nowrap;
  }
}

.about__body {
  display: grid;
  gap: 1.5rem;
}

.about__lead,
.about__text {
  font-size: 0.9375rem;
  line-height: 2;
}

.about__text {
  color: var(--color-text-muted);
}

.service {
  background: var(--color-surface);
}

.service__list {
  border-top: 0.0625rem solid var(--color-border);
}

.service__item {
  display: grid;
  gap: 1.125rem;
  padding-block: 1.75rem;
  border-bottom: 0.0625rem solid var(--color-border);
}
@media screen and (min-width: 48rem) {
  .service__item {
    grid-template-columns: 4.5rem minmax(13.75rem, 20.625rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    padding-block: 2.25rem;
  }
}

.service__number {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.service__heading {
  display: grid;
  gap: 0.375rem;
}

.service__name-en {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.service__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.service__text {
  max-width: 32.5rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.works {
  background: var(--color-bg);
}

@media screen and (min-width: 48rem) {
  .works__header {
    margin-left: 8.333%;
  }
}

.works-grid {
  display: grid;
  gap: 3.25rem;
}
@media screen and (min-width: 48rem) {
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.5rem 2.5rem;
  }
}

.works-card__link {
  display: block;
}

.works-card__thumbnail {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-surface);
}

.works-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.works-card__link:hover .works-card__thumbnail img,
.works-card__link:focus-visible .works-card__thumbnail img {
  transform: scale(1.02);
}

.works-card__body {
  display: grid;
  gap: 0.625rem;
  padding-top: 1.125rem;
  border-top: 0.0625rem solid transparent;
}

.works-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.375rem 1.25rem;
}

.works-card__category,
.works-card__role {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.works-card__role {
  text-transform: uppercase;
}

.works-card__title {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7;
}

.works-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.works-card__arrow span {
  transition: transform 0.25s ease;
}

.works-card__link:hover .works-card__arrow span,
.works-card__link:focus-visible .works-card__arrow span {
  transform: translateX(0.3125rem);
}

.flow {
  background: var(--color-surface);
}

.flow__list {
  border-top: 0.0625rem solid var(--color-border);
}

.flow__item {
  display: grid;
  gap: 0.75rem;
  padding-block: 1.75rem;
  border-bottom: 0.0625rem solid var(--color-border);
}
@media screen and (min-width: 48rem) {
  .flow__item {
    grid-template-columns: 4.5rem minmax(13.75rem, 20rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    padding-block: 2.125rem;
  }
}

.flow__number {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.flow__title {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.flow__text {
  max-width: 35rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.cta-section {
  padding-block: 5.5rem;
  background: var(--color-dark);
  color: var(--color-white);
}
@media screen and (min-width: 48rem) {
  .cta-section {
    padding-block: 8rem;
  }
}

.cta-section__inner {
  display: grid;
  gap: 4rem;
}
@media screen and (min-width: 64rem) {
  .cta-section__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(4.5rem, 9vw, 8rem);
    align-items: start;
  }
}

.cta-section__content {
  display: grid;
  gap: 1.25rem;
}

.cta-section__label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.62);
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 7vw, 2.875rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.cta-section__text {
  max-width: 30rem;
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(250, 250, 248, 0.68);
}

.cta-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 0.5rem;
  padding-bottom: 0.3125rem;
  border-bottom: 0.0625rem solid rgba(250, 250, 248, 0.55);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.cta-section__link span {
  transition: transform 0.25s ease;
}

.cta-section__link:hover span,
.cta-section__link:focus-visible span {
  transform: translateX(0.3125rem);
}

.contact-form {
  display: grid;
  gap: 1.625rem;
  width: 100%;
}

.contact-form__field {
  display: grid;
  gap: 0.5rem;
}

.contact-form__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250, 250, 248, 0.72);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 0.0625rem solid rgba(250, 250, 248, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--color-white);
  font: inherit;
  transition: border-color 0.25s ease;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-white);
  outline: none;
}

.contact-form__textarea {
  min-height: 8.25rem;
  resize: vertical;
}

.contact-form__honeypot {
  display: none;
}

.contact-form__submit {
  margin-top: 0.25rem;
}

.contact-form__submit span {
  transition: transform 0.25s ease;
}

.contact-form__submit:hover span,
.contact-form__submit:focus-visible span {
  transform: translateX(0.3125rem);
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 0.0625rem solid var(--color-border);
  background: var(--color-bg);
}
@media screen and (min-width: 48rem) {
  .site-footer {
    padding-block: 3rem;
  }
}

.site-footer__inner {
  display: grid;
  gap: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .site-footer__inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

.site-footer__logo {
  width: 8.25rem;
}
@media screen and (min-width: 48rem) {
  .site-footer__logo {
    width: 9.125rem;
  }
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
@media screen and (min-width: 48rem) {
  .footer-nav__list {
    justify-content: center;
  }
}

.footer-nav__link {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
}
.footer-nav__link:hover {
  color: var(--color-text);
}

.site-footer__copy {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

.page-hero {
  padding-block: 3.5rem 3rem;
  background: var(--color-surface);
  border-bottom: 0.0625rem solid var(--color-border);
}
@media screen and (min-width: 48rem) {
  .page-hero {
    padding-block: 5rem 4rem;
  }
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.page-hero__breadcrumb a {
  color: var(--color-primary);
}
.page-hero__breadcrumb a:hover {
  opacity: 0.7;
}

.page-hero__label {
  margin-bottom: 0.75rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.works-detail {
  padding-block: 4rem 6rem;
}
@media screen and (min-width: 48rem) {
  .works-detail {
    padding-block: 5.5rem 8rem;
  }
}

.works-detail__grid {
  display: grid;
  gap: 3.5rem;
}
@media screen and (min-width: 64rem) {
  .works-detail__grid {
    grid-template-columns: minmax(0, 1fr) 18.75rem;
    gap: 4.5rem;
    align-items: start;
  }
}

.works-detail__images {
  display: grid;
  gap: 1rem;
}

.works-detail__image {
  width: 100%;
  border: 0.0625rem solid var(--color-border);
}

.site-preview {
  position: relative;
  border: 0.0625rem solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
}

.site-preview__scroll {
  height: 32rem;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-preview__scroll:active {
  cursor: grabbing;
}
.site-preview__scroll::-webkit-scrollbar {
  display: none;
}

.site-preview__scroll img {
  display: block;
  width: 100%;
  pointer-events: none;
  user-select: none;
}

.site-preview__hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(23, 23, 23, 0.82);
  font-size: 0.6875rem;
  color: var(--color-white);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-preview__hint.is-hidden {
  opacity: 0;
}

.site-preview__hint-icon {
  width: 0.75rem;
  height: auto;
}

.works-detail__heading {
  margin-top: 3rem;
  margin-bottom: 1.125rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--color-border);
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
}
.works-detail__heading:first-child {
  margin-top: 0;
}

.works-detail__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text-muted);
}

@media screen and (min-width: 64rem) {
  .works-detail__sidebar {
    position: sticky;
    top: 6.5rem;
  }
}

.works-info {
  padding-block: 0.5rem;
  border-top: 0.0625rem solid var(--color-border);
  border-bottom: 0.0625rem solid var(--color-border);
}

.works-info__title {
  padding-block: 1rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.works-info__list {
  display: grid;
}

.works-info__item {
  display: grid;
  gap: 0.25rem;
  padding-block: 0.875rem;
  border-top: 0.0625rem solid var(--color-border);
}

.works-info__label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.works-info__value {
  font-size: 0.875rem;
}

.works-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: gap 0.25s ease;
}
.works-detail__back:hover {
  gap: 0.8125rem;
}

@media screen and (min-width: 48rem) {
  body {
    font-size: 1.125rem;
  }
  .button {
    font-size: 1rem;
  }
  .site-nav__link {
    font-size: 0.9375rem;
  }
  .hero__label {
    font-size: 0.8125rem;
  }
  .hero__title {
    font-size: clamp(3.125rem, 4.3vw, 4.125rem);
  }
  .hero__text {
    font-size: 1.0625rem;
  }
  .section__label {
    font-size: 0.875rem;
  }
  .section__title {
    font-size: 2.625rem;
  }
  .section__text,
  .about__lead,
  .about__text,
  .service__text {
    font-size: 1.0625rem;
  }
  .about__message-label,
  .service__number,
  .service__name-en,
  .flow__number,
  .cta-section__label,
  .contact-form__label {
    font-size: 0.875rem;
  }
  .about__message-text {
    font-size: clamp(1.75rem, 2.5vw, 2rem);
  }
  .service__name {
    font-size: 1.5rem;
  }
  .works-card__category,
  .works-card__role {
    font-size: 0.8125rem;
  }
  .works-card__title {
    font-size: 1.1875rem;
  }
  .works-card__arrow,
  .footer-nav__link {
    font-size: 0.875rem;
  }
  .flow__title {
    font-size: 1.4375rem;
  }
  .flow__text,
  .cta-section__text {
    font-size: 1rem;
  }
  .cta-section__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .cta-section__link {
    font-size: 0.875rem;
  }
  .site-footer__copy,
  .site-preview__hint,
  .works-info__label {
    font-size: 0.8125rem;
  }
  .page-hero__breadcrumb,
  .page-hero__label,
  .works-info__title {
    font-size: 0.875rem;
  }
  .page-hero__title {
    font-size: clamp(1.875rem, 6vw, 2.625rem);
  }
  .works-detail__heading {
    font-size: 1.5rem;
  }
  .works-detail__text {
    font-size: 1.0625rem;
  }
  .works-info__value {
    font-size: 1rem;
  }
  .works-detail__back {
    font-size: 0.9375rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-enabled .js-fade {
    opacity: 1;
    transform: none;
  }
}
