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

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

html {
  font-size: 16px;
  scrollbar-gutter: stable;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  padding-top: var(--header-height);
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1e1e1e;
  background-color: #f2f2f2;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 1.88vw + 1.31rem, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 0.75vw + 1.32rem, 2rem);
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  line-height: 1.8;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.container--wide {
  max-width: 1440px;
}

.l-section {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

:root {
  --header-height: 80px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background-color: transparent;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}
.l-header.is-scrolled {
  background-color: rgba(242, 242, 242, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.l-header.is-hidden {
  transform: translateY(-100%);
}
.l-header.is-menu-open {
  transform: translateY(0) !important;
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
}
.l-header.is-menu-open .l-header__logo img {
  filter: brightness(0) invert(1);
}
.l-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 24px;
}
.l-header__logo {
  display: inline-flex;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-header__logo img {
  display: block;
  width: auto;
  height: 22px;
}
.l-header__logo:hover {
  opacity: 0.6;
}
.l-header__nav-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  padding: 0 24px;
}
.l-header__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px;
  background: none;
  border: 0;
  color: #1e1e1e;
  cursor: pointer;
  transition: color 0.4s ease;
}
.l-header__trigger.is-open {
  color: #ffffff;
}
.l-header__trigger.is-open .l-header__trigger-line {
  background-color: #ffffff;
}
.l-header__trigger-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.l-header__trigger-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 16px;
}
.l-header__trigger-line {
  position: absolute;
  left: 0;
  height: 1.5px;
  background-color: currentColor;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-header__trigger-line--top {
  top: 0;
  width: 100%;
}
.l-header__trigger-line--bottom {
  top: 14px;
  left: 40%;
  width: 60%;
}
.l-header__trigger:hover:not(.is-open) .l-header__trigger-line--top {
  width: 60%;
}
.l-header__trigger:hover:not(.is-open) .l-header__trigger-line--bottom {
  left: 0;
  width: 100%;
}
.l-header__trigger.is-open .l-header__trigger-line--top {
  top: 7.25px;
  left: 0;
  width: 100%;
  transform: rotate(45deg);
}
.l-header__trigger.is-open .l-header__trigger-line--bottom {
  top: 7.25px;
  left: 0;
  width: 100%;
  transform: rotate(-45deg);
}

.p-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(30, 30, 30, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.p-nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
}

.p-nav-overlay__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(16px, 4.51vw - 1px, 64px);
  width: 100%;
  padding-top: 128px;
  padding-bottom: 128px;
}

.p-nav-overlay__item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-nav-overlay.is-open .p-nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-nav-overlay.is-open .p-nav-overlay__item:nth-child(1) {
  transition-delay: 0.08s;
}
.p-nav-overlay.is-open .p-nav-overlay__item:nth-child(2) {
  transition-delay: 0.16s;
}
.p-nav-overlay.is-open .p-nav-overlay__item:nth-child(3) {
  transition-delay: 0.24s;
}
.p-nav-overlay.is-open .p-nav-overlay__item:nth-child(4) {
  transition-delay: 0.32s;
}
.p-nav-overlay.is-open .p-nav-overlay__item:nth-child(5) {
  transition-delay: 0.4s;
}
.p-nav-overlay.is-open .p-nav-overlay__item:nth-child(6) {
  transition-delay: 0.48s;
}

.p-nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-nav-overlay__item + .p-nav-overlay__item {
  margin-top: 16px;
}

.p-nav-overlay__link {
  display: inline-flex;
  align-items: baseline;
  gap: 24px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.4s ease;
}

.p-nav-overlay__index {
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.p-nav-overlay__label {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-nav-overlay__list:hover .p-nav-overlay__link {
  opacity: 0.4;
}

.p-nav-overlay__list .p-nav-overlay__link:hover {
  opacity: 1;
}

.p-nav-overlay__list .p-nav-overlay__link:hover .p-nav-overlay__label {
  transform: translateX(16px);
}

.p-nav-overlay__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
}

.p-nav-overlay__group-heading {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-nav-overlay__meta-list {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  list-style: none;
}
.p-nav-overlay__meta-list a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s ease;
}
.p-nav-overlay__meta-list a:hover {
  opacity: 0.6;
}

.p-nav-overlay__social {
  display: flex;
  gap: 24px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.p-nav-overlay__social a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.4s ease;
}
.p-nav-overlay__social a:hover {
  opacity: 0.6;
}

.p-nav-overlay__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 500;
}

.p-nav-overlay__lang-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.4s ease;
}
.p-nav-overlay__lang-link.is-current, .p-nav-overlay__lang-link:hover {
  color: #ffffff;
}

.p-nav-overlay__lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .p-nav-overlay {
    align-items: flex-start;
  }
  .p-nav-overlay__inner {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 64px;
  }
  .p-nav-overlay__label {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .p-nav-overlay__aside {
    justify-content: flex-start;
    gap: 48px;
  }
}
.l-footer {
  padding: 128px 0 32px;
  background-color: #1e1e1e;
  color: #ffffff;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.l-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.l-footer__lead {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.l-footer__lead span {
  display: block;
}
.l-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-top: 96px;
}
.l-footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 128px;
}
.l-footer__col-label {
  margin-bottom: 16px;
  color: #736c93;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.l-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.l-footer__links a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-footer__links a:hover {
  color: #736c93;
}
.l-footer__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.l-footer__lang-link {
  color: #736c93;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-footer__lang-link.is-current, .l-footer__lang-link:hover {
  color: #ffffff;
}
.l-footer__lang-sep {
  color: #736c93;
}
.l-footer__brand {
  margin-top: 96px;
  line-height: 0;
}
.l-footer__logo {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__copyright {
  margin-top: 24px;
  color: #736c93;
  font-size: 12px;
  text-align: right;
}

@media (max-width: 768px) {
  .l-footer {
    padding: 96px 0 32px;
  }
  .l-footer__lead {
    font-size: 32px;
  }
  .l-footer__row {
    margin-top: 64px;
  }
  .l-footer__columns {
    gap: 32px;
  }
  .l-footer__brand {
    margin-top: 64px;
  }
  .l-footer__copyright {
    text-align: left;
  }
}
.p-loader {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
}
.p-loader.is-hidden {
  display: none;
}

.p-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 280px;
  padding: 0 24px;
}

.p-loader__logo {
  opacity: 0;
  transform: scale(0.95);
}
.p-loader__logo img {
  display: block;
  width: auto;
  height: 22px;
}

.p-loader__progress {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.p-loader__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
}

.p-loader__count {
  opacity: 0;
  color: #ffffff;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.p-loader__count::after {
  content: "%";
}

body.is-loading {
  overflow: hidden;
}
body.is-loading .p-hero__title,
body.is-loading .p-hero__clock,
body.is-loading .p-hero__lead,
body.is-loading .p-hero__actions,
body.is-loading .p-hero__visual {
  animation-play-state: paused;
}

.p-laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.p-laptop-mockup__screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/10;
  background-color: #1e1e1e;
  border: 14px solid #1e1e1e;
  border-radius: 14px 14px 4px 4px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.18);
}
.p-laptop-mockup__screen::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 2;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translateX(-50%);
}

.p-laptop-mockup__image-wrapper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}
.p-laptop-mockup__image-wrapper::-webkit-scrollbar {
  width: 6px;
}
.p-laptop-mockup__image-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.p-laptop-mockup__image-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}
.p-laptop-mockup__image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes p-laptop-peek {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(24px);
  }
}
.p-laptop-mockup.is-inview .p-laptop-mockup__image-wrapper img {
  animation: p-laptop-peek 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .p-laptop-mockup.is-inview .p-laptop-mockup__image-wrapper img {
    animation: none;
  }
}
.p-laptop-mockup__scroll-hint {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: p-laptop-scroll-hint-float 1.8s ease-in-out infinite;
}
.p-laptop-mockup__scroll-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.p-laptop-mockup__scroll-hint-icon {
  line-height: 1;
}

@keyframes p-laptop-scroll-hint-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-laptop-mockup__scroll-hint {
    animation: none;
  }
}
.p-laptop-mockup__base {
  position: relative;
  left: -8px;
  width: calc(100% + 16px);
  height: 14px;
  background: linear-gradient(to bottom, #d8d8d8, #b0b0b0);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.p-laptop-mockup__base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 14%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 0 0 6px 6px;
  transform: translateX(-50%);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-btn__icon {
  display: inline-flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-btn:hover .c-btn__icon {
  transform: translate(5px, -5px);
}
.c-btn--primary {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  color: #ffffff;
}
.c-btn--primary:hover {
  background-color: transparent;
  color: #1e1e1e;
}
.c-btn--outline {
  background-color: transparent;
  border-color: #1e1e1e;
  color: #1e1e1e;
}
.c-btn--outline:hover {
  background-color: #1e1e1e;
  color: #ffffff;
}

.c-back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 30, 30, 0.15);
  border-radius: 50%;
  color: #1e1e1e;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.c-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-back-to-top.is-visible:hover {
  transform: translateY(-4px);
  border-color: #1e1e1e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.c-back-to-top__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-back-to-top:hover .c-back-to-top__icon {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .c-back-to-top {
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}
.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;
}

@media (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  input,
  select,
  textarea,
  [role=button] {
    cursor: none !important;
  }
  .c-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    margin-left: -7px;
    border-radius: 50%;
    background-color: #ffffff;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 999999;
    opacity: 0;
    transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), margin 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .c-cursor.is-active {
    opacity: 1;
  }
  .c-cursor.is-hovered {
    width: 21px;
    height: 21px;
    margin-top: -10.5px;
    margin-left: -10.5px;
  }
}
.p-hero {
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
  background-color: #f2f2f2;
}
.p-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #e0e0e0;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 60% 100%);
}
.p-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(16px, 4.51vw - 1px, 64px);
  max-width: 1440px;
  min-height: 90vh;
  margin: 0 auto;
  padding: clamp(60px, 7.9vw + 30px, 144px) 24px;
}
.p-hero__content {
  flex: 0 1 46%;
}
.p-hero__title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0;
  animation: p-hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.p-hero__clock {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  color: #666666;
  font-size: 12px;
  opacity: 0;
  animation: p-hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.p-hero__clock-label {
  flex-shrink: 0;
  white-space: nowrap;
}
.p-hero__clock-time {
  font-family: "Courier New", Courier, monospace;
}
.p-hero__clock-line {
  flex: 1 1 auto;
  height: 1px;
  background-color: #e0e0e0;
}
.p-hero__lead {
  margin-top: 64px;
  color: #666666;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0;
  animation: p-hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.p-hero__lead span {
  display: block;
}
.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 64px;
  opacity: 0;
  animation: p-hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.p-hero__visual {
  flex: 0 1 54%;
  opacity: 0;
  animation: p-hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}
.p-hero__image {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes p-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__title,
  .p-hero__clock,
  .p-hero__lead,
  .p-hero__actions,
  .p-hero__visual {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.p-top-news {
  background-color: #f2f2f2;
}

.p-top-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.p-top-news__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .p-top-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.p-value {
  position: relative;
  overflow-x: hidden;
  padding: clamp(60px, 7.9vw + 30px, 144px) 0;
  background-color: #f2f2f2;
}
.p-value__marquee {
  overflow: hidden;
  margin-bottom: 96px;
  line-height: 0;
}
.p-value__marquee-track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: p-value-marquee 36s linear infinite;
}
.p-value__marquee-logo {
  flex-shrink: 0;
  height: clamp(96px, 16vw, 280px);
  width: auto;
  margin-right: 96px;
  opacity: 0.06;
}
.p-value__heading {
  margin: 0 0 96px;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.p-value__body {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 4.51vw - 1px, 64px);
}
.p-value__cards {
  flex: 0 1 52%;
  padding-bottom: 128px;
}
.p-value__card-wrap {
  padding: 96px 0;
  border-top: 1px solid #e0e0e0;
}
.p-value__card-wrap:first-child {
  padding-top: 0;
  border-top: none;
}
.p-value__card-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.p-value__card-text {
  margin: 0;
  max-width: 60ch;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}
.p-value__visual {
  position: relative;
  flex: 0 1 48%;
}
.p-value__visual-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}
.p-value__rocket-wrapper {
  will-change: transform;
}
.p-value__rocket {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 32px 32px rgba(0, 0, 0, 0.12));
  animation: p-value-rocket-float 3.2s ease-in-out infinite;
}

@keyframes p-value-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes p-value-rocket-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2px, -4px) rotate(-1deg);
  }
  50% {
    transform: translate(-2px, 2px) rotate(1deg);
  }
  75% {
    transform: translate(1px, -3px) rotate(-0.5deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-value__marquee-track {
    animation: none;
  }
  .p-value__rocket {
    animation: none;
  }
}
@media (max-width: 768px) {
  .p-value__marquee {
    margin-bottom: 64px;
  }
  .p-value__heading {
    margin-bottom: 64px;
  }
  .p-value__body {
    flex-direction: column;
    gap: 64px;
  }
  .p-value__cards {
    padding-bottom: 0;
  }
  .p-value__card-wrap {
    padding: 32px 0;
  }
  .p-value__visual {
    height: auto;
  }
  .p-value__visual-inner {
    position: static;
    height: auto;
    padding: 32px 0;
  }
  .p-value__rocket {
    max-width: 280px;
  }
}
.p-service {
  position: relative;
  overflow: hidden;
  background-color: #f2f2f2;
}

.p-service__header {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: 96px;
}

.p-service__heading {
  margin: 0;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-service__viewport {
  overflow: hidden;
  touch-action: pan-y;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.p-service__track {
  display: flex;
  align-items: stretch;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.c-service-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 66.6667vw;
  width: 66.6667vw;
  flex-shrink: 0;
  min-height: 60vh;
  padding: 96px 64px 64px;
  background-color: transparent;
  border-left: 1px solid #e0e0e0;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-service-card:hover {
  background-color: rgba(30, 30, 30, 0.03);
}
.c-service-card:hover .c-service-card__icon {
  color: #1e1e1e;
}
.c-service-card:last-child {
  border-right: 1px solid #e0e0e0;
}
.c-service-card__body {
  max-width: 60ch;
}
.c-service-card__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.c-service-card__text {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}
.c-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-top: auto;
  color: #cccccc;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-service-card__icon span {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .p-service__header {
    padding-bottom: 32px;
  }
  .p-service__viewport {
    overflow: visible;
    touch-action: auto;
  }
  .p-service__track {
    display: block;
    width: auto;
  }
  .c-service-card {
    width: auto;
    min-height: auto;
    padding: 64px 24px;
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }
  .c-service-card:last-child {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .c-service-card__icon {
    width: 60px;
    height: 60px;
    margin-top: 64px;
    font-size: 60px;
  }
}
.p-process {
  position: relative;
  background-color: #f2f2f2;
}

.p-process__header {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: 96px;
}

.p-process__heading {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-process__stack {
  position: relative;
  padding-bottom: 24vh;
}

.c-process-card {
  position: sticky;
  top: 15vh;
  background-color: #f2f2f2;
  border-top: 1px solid #e0e0e0;
}
.c-process-card:nth-child(1) {
  z-index: 1;
}
.c-process-card:nth-child(2) {
  z-index: 2;
}
.c-process-card:nth-child(3) {
  z-index: 3;
}
.c-process-card:nth-child(4) {
  z-index: 4;
}
.c-process-card:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.c-process-card__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 4.51vw - 1px, 64px);
  width: 100%;
  padding: 32px 24px 64px;
}
.c-process-card__number {
  flex: 0 0 auto;
  width: 8ch;
  color: #cccccc;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.c-process-card__divider {
  flex: 0 0 auto;
  align-self: stretch;
  width: 1px;
  background-color: #e0e0e0;
}
.c-process-card__body {
  flex: 1 1 auto;
  max-width: 60ch;
  padding-top: 8px;
}
.c-process-card__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.c-process-card__text {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .p-process__header {
    padding-bottom: 32px;
  }
  .p-process__stack {
    padding-bottom: 96px;
  }
  .c-process-card {
    position: static;
    box-shadow: none;
  }
  .c-process-card__inner {
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 24px;
  }
  .c-process-card__number {
    width: auto;
    font-size: 32px;
  }
  .c-process-card__divider {
    display: none;
  }
  .c-process-card__body {
    flex-basis: 100%;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .p-hero::before {
    clip-path: none;
  }
  .p-hero__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .p-hero__content {
    flex-basis: auto;
  }
  .p-hero__title {
    max-width: none;
  }
  .p-hero__clock {
    margin-top: 32px;
  }
  .p-hero__lead {
    margin-top: 32px;
    font-size: 16px;
  }
  .p-hero__actions {
    margin-top: 32px;
  }
  .p-hero__visual {
    flex-basis: auto;
    margin-top: 64px;
  }
  .p-hero__image {
    max-width: 320px;
    margin: 0 auto;
  }
}
.p-works {
  position: relative;
  background-color: #f2f2f2;
}

.p-works__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 3vw + 5px, 48px);
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

.p-works__header {
  flex: 1.5 1 0;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.p-works__heading {
  margin: 0 0 32px;
  max-width: 10ch;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-works__lead {
  margin: 0;
  max-width: 60ch;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

.p-works__list {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.p-works__empty {
  margin: 0;
  padding: 64px 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.p-works__more {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.c-work-card {
  display: block;
  padding: 64px 0;
  border-top: 1px solid #e0e0e0;
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.c-work-card:hover {
  transform: translateY(-6px);
}
.c-work-card:first-child {
  padding-top: 0;
  border-top: none;
}
.c-work-card__thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #e0e0e0;
}
.c-work-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.c-work-card:hover .c-work-card__image {
  transform: scale(1.05);
}
.c-work-card__body {
  margin-top: 24px;
}
.c-work-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.c-work-card__category {
  display: block;
  color: #666666;
  font-size: 12px;
}

@media (max-width: 768px) {
  .p-works__inner {
    flex-direction: column;
    gap: 32px;
  }
  .p-works__header {
    position: static;
    top: auto;
    flex-basis: auto;
    max-width: none;
  }
  .p-works__heading {
    max-width: none;
  }
  .p-works__lead {
    max-width: none;
  }
  .p-works__list {
    flex-basis: auto;
  }
  .c-work-card {
    padding: 32px 0;
  }
  .c-work-card__title {
    font-size: 18px;
  }
  .p-works__more {
    margin-top: 32px;
    padding-top: 32px;
  }
}
.p-pricing {
  position: relative;
  background-color: #f2f2f2;
}

.p-pricing__inner {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

.p-pricing__header {
  margin-bottom: 96px;
}

.p-pricing__heading {
  margin: 0;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-pricing__note {
  margin: 16px 0 0;
  max-width: 60ch;
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
}

.p-pricing__tabs {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #e0e0e0;
}

.p-pricing__tab {
  flex-shrink: 0;
  padding: 16px 8px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #666666;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-pricing__tab:hover {
  color: #1e1e1e;
}
.p-pricing__tab.is-active {
  color: #1e1e1e;
  font-weight: 700;
  border-bottom-color: #1e1e1e;
}

.p-pricing__panel {
  padding-top: 96px;
}
.p-pricing__panel[hidden] {
  display: none;
}
.p-pricing__panel.is-active {
  animation: p-pricing-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes p-pricing-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-pricing__panel.is-active {
    animation: none;
  }
}
.p-pricing__plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: clamp(16px, 4.51vw - 1px, 64px);
}

@media (max-width: 1024px) {
  .p-pricing__plans {
    grid-template-columns: 1fr;
  }
}
.c-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 64px;
  border: 1px solid #e0e0e0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.c-plan-card:hover {
  transform: translateY(-6px);
  border-color: #1e1e1e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.c-plan-card--featured {
  border-color: #1e1e1e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.c-plan-card--featured::before {
  content: "Recommended";
  position: absolute;
  top: 0;
  right: 32px;
  padding: 8px 16px;
  background-color: #1e1e1e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateY(-50%);
}
.c-plan-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.c-plan-card__target {
  margin: 0 0 32px;
  min-height: 2.4em;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}
.c-plan-card__price {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
}
.c-plan-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.c-plan-card__features-label {
  display: block;
  margin-bottom: 16px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.c-plan-card__features {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.c-plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  color: #1e1e1e;
  font-size: 14px;
  line-height: 1.6;
}

.c-plan-card__check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-color: #1e1e1e;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

.p-pricing__option {
  margin-top: 128px;
  padding-top: 96px;
  border-top: 1px solid #e0e0e0;
}

.p-pricing__option-heading {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.p-pricing__option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.c-option-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border: 1px solid #e0e0e0;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.c-option-card:hover {
  border-color: #1e1e1e;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.c-option-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1e1e1e;
}
.c-option-card__icon svg {
  width: 100%;
  height: 100%;
}
.c-option-card__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.p-pricing__option-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}

.p-pricing__option-text {
  margin: 0;
  max-width: 60ch;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .p-pricing__header {
    margin-bottom: 64px;
  }
  .p-pricing__tabs {
    gap: 24px;
  }
  .p-pricing__tab {
    font-size: 12px;
  }
  .p-pricing__panel {
    padding-top: 64px;
  }
  .c-plan-card {
    padding: 32px;
  }
  .c-plan-card__target {
    min-height: auto;
  }
  .p-pricing__option {
    margin-top: 96px;
    padding-top: 64px;
  }
  .p-pricing__option-heading {
    font-size: 24px;
  }
  .p-pricing__option-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-pricing__option-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.p-about {
  position: relative;
  background-color: #f2f2f2;
  padding-bottom: 0;
}

.p-about__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  -moz-column-gap: clamp(16px, 3vw + 5px, 48px);
       column-gap: clamp(16px, 3vw + 5px, 48px);
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
}

.p-about__heading {
  grid-column: 1/9;
  grid-row: 1/3;
  z-index: 2;
  margin: 0;
  padding: 24px 24px 24px 0;
  background-color: #f2f2f2;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #cccccc;
}
.p-about__heading strong {
  color: #1e1e1e;
  font-weight: 700;
}

.p-about__photo {
  grid-column: 1/6;
  grid-row: 4/6;
  z-index: 1;
  align-self: end;
  overflow: hidden;
  max-width: 300px;
}

.p-about__image {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.p-about__photo:hover .p-about__image {
  transform: scale(1.04);
}

.p-about__info-list {
  grid-column: 7/13;
  grid-row: 3/4;
  z-index: 1;
  margin: 0;
  margin-top: 96px;
}

.p-about__info-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #e0e0e0;
}
.p-about__info-row dt {
  flex: 0 0 12ch;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.p-about__info-row dd {
  flex: 1 1 auto;
  margin: 0;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
}
.p-about__info-row:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.p-about__jp-message {
  grid-column: 4/13;
  grid-row: 4/5;
  z-index: 2;
  margin-top: 48px;
  margin-bottom: 96px;
}

.p-about__jp-message-heading {
  margin: 0 0 32px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.p-about__jp-message-text {
  margin: 0 0 24px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}
.p-about__jp-message-text:last-of-type {
  margin-bottom: 32px;
}

.p-about__jp-message-signature {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 1024px) {
  .p-about__inner {
    grid-template-columns: repeat(8, 1fr);
  }
  .p-about__heading {
    grid-column: 1/8;
  }
  .p-about__info-list {
    grid-column: 5/9;
  }
  .p-about__jp-message {
    grid-column: 3/9;
  }
  .p-about__photo {
    grid-column: 1/5;
  }
}
@media (max-width: 768px) {
  .p-about__inner {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    padding-top: 96px;
    padding-bottom: 0;
  }
  .p-about__heading,
  .p-about__info-list,
  .p-about__jp-message,
  .p-about__photo {
    grid-column: 1/-1;
    grid-row: auto;
    z-index: auto;
  }
  .p-about__heading {
    order: 1;
    margin-top: 0;
    padding: 0;
    font-size: 24px;
  }
  .p-about__info-list {
    order: 2;
    margin-top: 64px;
  }
  .p-about__jp-message {
    order: 3;
    margin-top: 64px;
    margin-bottom: 0;
  }
  .p-about__photo {
    order: 4;
    max-width: 160px;
    margin: 64px auto 0;
  }
}
.p-contact {
  position: relative;
  background-color: #e0e0e0;
}

.p-contact__inner {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

.p-contact__heading {
  margin: 0;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-contact__lead {
  margin: 16px 0 0;
  max-width: 60ch;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

.p-contact__form {
  margin-top: 64px;
}

.c-form .wpcf7-form {
  display: block;
}
.c-form .wpcf7-form-control-wrap {
  display: block;
}
.c-form form p {
  margin: 0;
}
.c-form .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.c-form .wpcf7-form > p {
  grid-column: span 1;
}
.c-form .wpcf7-form > p:has(textarea),
.c-form .wpcf7-form > p:has(.wpcf7-acceptance),
.c-form .wpcf7-form > p:has(.wpcf7-submit),
.c-form .wpcf7-form > .p-contact__privacy-box,
.c-form .wpcf7-response-output {
  grid-column: 1/-1;
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=number],
.c-form select,
.c-form textarea {
  display: block;
  width: 100%;
  padding: 16px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 0;
  color: #1e1e1e;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form input[type=text]::-moz-placeholder, .c-form input[type=email]::-moz-placeholder, .c-form input[type=tel]::-moz-placeholder, .c-form input[type=number]::-moz-placeholder, .c-form select::-moz-placeholder, .c-form textarea::-moz-placeholder {
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 1;
}
.c-form input[type=text]::placeholder,
.c-form input[type=email]::placeholder,
.c-form input[type=tel]::placeholder,
.c-form input[type=number]::placeholder,
.c-form select::placeholder,
.c-form textarea::placeholder {
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 1;
}
.c-form input[type=text]:focus,
.c-form input[type=email]:focus,
.c-form input[type=tel]:focus,
.c-form input[type=number]:focus,
.c-form select:focus,
.c-form textarea:focus {
  outline: none;
  border-bottom-color: #1e1e1e;
}
.c-form input[type=text].wpcf7-not-valid,
.c-form input[type=email].wpcf7-not-valid,
.c-form input[type=tel].wpcf7-not-valid,
.c-form input[type=number].wpcf7-not-valid,
.c-form select.wpcf7-not-valid,
.c-form textarea.wpcf7-not-valid {
  border-bottom-color: #cc0000;
}
.c-form textarea {
  height: 144px;
  resize: none;
}
.c-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #cc0000;
  font-size: 12px;
}
.c-form .wpcf7-response-output {
  margin: 32px 0 0 !important;
  padding: 16px 24px !important;
  border-radius: 4px;
  border-color: rgba(30, 30, 30, 0.2) !important;
  color: #1e1e1e;
  font-size: 14px;
}
.c-form .p-contact__privacy-box {
  grid-column: 1/-1;
  margin-top: 32px;
  max-height: 176px;
  overflow-y: auto;
  padding: 24px;
  border: 1px solid rgba(30, 30, 30, 0.15);
  border-radius: 4px;
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 30, 30, 0.3) transparent;
}
.c-form .p-contact__privacy-box p {
  margin: 0 0 16px;
}
.c-form .p-contact__privacy-box p:last-child {
  margin-bottom: 0;
}
.c-form .p-contact__privacy-box::-webkit-scrollbar {
  width: 4px;
}
.c-form .p-contact__privacy-box::-webkit-scrollbar-track {
  background-color: transparent;
}
.c-form .p-contact__privacy-box::-webkit-scrollbar-thumb {
  background-color: rgba(30, 30, 30, 0.3);
  border-radius: 999px;
}
.c-form .p-contact__privacy-box::-webkit-scrollbar-thumb:hover {
  background-color: rgba(30, 30, 30, 0.5);
}
.c-form .wpcf7-acceptance {
  display: block;
  margin-top: 32px;
  text-align: center;
}
.c-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.c-form .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.c-form .wpcf7-acceptance input[type=checkbox] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  background-color: transparent;
  border: 1px solid rgba(30, 30, 30, 0.4);
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-form .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}
.c-form .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  margin: 1px auto;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.c-form .wpcf7-acceptance .wpcf7-list-item-label {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}
.c-form .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 64px auto 0;
  padding: 24px 48px;
  background-color: #1e1e1e;
  border: 1px solid #1e1e1e;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-form .wpcf7-submit:hover {
  background-color: transparent;
  color: #1e1e1e;
}
.c-form .wpcf7-submit.wpcf7-spinner {
  margin-left: auto;
}

@media (max-width: 768px) {
  .p-contact__form {
    margin-top: 48px;
  }
  .c-form .wpcf7-form {
    grid-template-columns: 1fr;
  }
  .c-form .wpcf7-form > p {
    grid-column: 1/-1;
  }
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel],
  .c-form input[type=number],
  .c-form select,
  .c-form textarea {
    padding: 24px 0;
    font-size: 16px;
  }
  .c-form .wpcf7-acceptance {
    text-align: left;
  }
  .c-form .wpcf7-acceptance label {
    align-items: flex-start;
  }
  .c-form .wpcf7-submit {
    max-width: none;
  }
}
.p-wd-hero {
  position: relative;
  background-color: #f2f2f2;
}

.p-wd-hero__inner {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: 64px;
}

.p-wd-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 999px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-wd-hero__title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-wd-hero__lead {
  max-width: 56ch;
  margin: 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.8;
}

.p-wd-hero__eyecatch {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/8;
  background-color: #e0e0e0;
}
.p-wd-hero__eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-wd-meta {
  background-color: #f2f2f2;
}

.p-wd-meta__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 48px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.p-wd-meta__item dt {
  margin: 0 0 8px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.p-wd-meta__item dd {
  margin: 0;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
}

.p-wd-section {
  position: relative;
  background-color: #f2f2f2;
}
.p-wd-section--alt {
  background-color: #e0e0e0;
}

.p-wd-section__inner {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

.p-wd-section__eyebrow {
  margin: 0 0 16px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-wd-section__heading {
  margin: 0 0 64px;
  max-width: 20ch;
  font-size: clamp(1.5rem, 1.5vw + 1.2rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.p-wd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4.51vw - 1px, 64px);
}

.p-wd-split__block-heading {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.p-wd-split__block-text {
  margin: 0;
  max-width: 60ch;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}
.p-wd-split__block-text p {
  margin: 0 0 16px;
}
.p-wd-split__block-text p:last-child {
  margin-bottom: 0;
}

.p-wd-gallery {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-wd-gallery__full,
.p-wd-gallery__cell {
  overflow: hidden;
  background-color: #e0e0e0;
}
.p-wd-gallery__full img,
.p-wd-gallery__cell img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.p-wd-gallery__full:hover img,
.p-wd-gallery__cell:hover img {
  transform: scale(1.04);
}

.p-wd-gallery__full {
  width: 100%;
}

.p-wd-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.p-works-detail__media-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-works-detail__media-video {
  display: block;
  width: 100%;
  height: auto;
}

.p-wd-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.p-wd-stat {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.p-wd-stat:hover {
  transform: translateY(-6px);
  border-color: #1e1e1e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.p-wd-stat__value {
  margin: 0 0 8px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-wd-stat__label {
  margin: 0;
  color: #666666;
  font-size: 14px;
}

.p-wd-testimonial {
  padding: 64px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}

.p-wd-testimonial__quote {
  margin: 0 0 32px;
  max-width: 70ch;
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.p-wd-testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-wd-testimonial__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background-color: #e0e0e0;
  border-radius: 50%;
}
.p-wd-testimonial__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-wd-testimonial__name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.p-wd-testimonial__role {
  margin: 0;
  color: #666666;
  font-size: 12px;
}

.p-wd-project-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #e0e0e0;
}

.p-wd-project-nav__link,
.p-wd-project-nav__placeholder {
  flex: 1 1 0;
}

.p-wd-project-nav__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 48px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-wd-project-nav__link:hover {
  background-color: rgba(30, 30, 30, 0.03);
}
.p-wd-project-nav__link:hover .p-wd-project-nav__label {
  color: #1e1e1e;
}
.p-wd-project-nav__link--next {
  align-items: flex-end;
  text-align: right;
}

.p-wd-project-nav__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-wd-project-nav__arrow {
  display: inline-flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-wd-project-nav__link--prev:hover .p-wd-project-nav__arrow {
  transform: translateX(-6px);
}

.p-wd-project-nav__link--next:hover .p-wd-project-nav__arrow {
  transform: translateX(6px);
}

.p-wd-project-nav__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.p-wd-project-nav__all {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  color: #1e1e1e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  text-transform: uppercase;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-wd-project-nav__all:hover {
  border-color: #1e1e1e;
  color: #1e1e1e;
  text-decoration-color: currentColor;
}

.p-wd-project-nav__all-icon {
  display: inline-flex;
}
.p-wd-project-nav__all-icon svg {
  width: 14px;
  height: 14px;
}

.p-wd-cta {
  text-align: center;
}
.p-wd-cta .p-contact__lead {
  margin-left: auto;
  margin-right: auto;
}

.p-wd-cta__action {
  margin-top: 64px;
}

@media (max-width: 768px) {
  .p-wd-hero__inner {
    padding-bottom: 32px;
  }
  .p-wd-meta__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .p-wd-meta__item:last-child {
    grid-column: 1/-1;
  }
  .p-wd-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-wd-gallery__grid {
    grid-template-columns: 1fr;
  }
  .p-wd-results {
    grid-template-columns: 1fr;
  }
  .p-wd-testimonial {
    padding: 32px;
  }
  .p-wd-testimonial__quote {
    font-size: 18px;
  }
  .p-wd-project-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .p-wd-project-nav__placeholder {
    display: none;
  }
  .p-wd-project-nav__link--prev {
    order: 1;
    border-bottom: 1px solid #e0e0e0;
  }
  .p-wd-project-nav__all {
    order: 2;
    margin: 24px auto;
  }
  .p-wd-project-nav__link--next {
    order: 3;
    align-items: flex-start;
    text-align: left;
    border-top: 1px solid #e0e0e0;
  }
}
.p-works-archive-hero {
  position: relative;
  background-color: #f2f2f2;
}

.p-works-archive-hero__inner {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: 64px;
}

.p-works-archive-hero__eyebrow {
  margin: 0 0 16px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-works-archive-hero__title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-works-archive-hero__lead {
  max-width: 56ch;
  margin: 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.8;
}

.p-works-archive-filter {
  background-color: #f2f2f2;
}

.p-works-archive-filter__inner {
  padding-bottom: 32px;
}

.p-works-archive-grid {
  background-color: #f2f2f2;
}

.p-works-archive-grid__inner {
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

.p-works-archive-grid__empty {
  margin: 0;
  padding: 64px 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.p-works-archive-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: start;
}

.c-archive-card {
  display: block;
  margin-bottom: 64px;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-archive-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.c-archive-card:nth-child(even) {
  margin-top: clamp(24px, 4vw, 64px);
}

.c-archive-card__thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #e0e0e0;
}

.c-archive-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.c-archive-card:hover .c-archive-card__image {
  transform: scale(1.03);
}

.c-archive-card__body {
  margin-top: 16px;
}

.c-archive-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-archive-card:hover .c-archive-card__title {
  color: #736c93;
}

.c-archive-card__meta {
  margin: 0;
  color: #666666;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.p-works-archive-pagination {
  padding-top: 64px;
}
.p-works-archive-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.p-works-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  color: #666666;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-works-archive-pagination .page-numbers:hover {
  background-color: rgba(30, 30, 30, 0.06);
  color: #1e1e1e;
}
.p-works-archive-pagination .page-numbers.current {
  background-color: #1e1e1e;
  color: #ffffff;
}
.p-works-archive-pagination .page-numbers.dots {
  background: none;
}
.p-works-archive-pagination .page-numbers.next, .p-works-archive-pagination .page-numbers.prev {
  width: auto;
  min-width: auto;
  padding: 0 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .c-archive-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 768px) {
  .p-works-archive-hero__inner {
    padding-bottom: 32px;
  }
  .p-works-archive-grid__list {
    grid-template-columns: 1fr;
  }
  .c-archive-card,
  .c-archive-card:nth-child(even) {
    margin-top: 0;
    margin-bottom: 48px;
  }
  .c-archive-card__title {
    font-size: 16px;
  }
}
.p-subpage-hero {
  background-color: #f2f2f2;
}

.p-subpage-hero__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 32px);
  padding-right: clamp(20px, 5vw, 32px);
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: 48px;
}

.p-subpage-hero__eyebrow {
  margin: 0 0 16px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-subpage-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 2.2vw + 1.35rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.p-subpage-body {
  background-color: #f2f2f2;
}

.p-subpage-body__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 32px);
  padding-right: clamp(20px, 5vw, 32px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

@media (max-width: 768px) {
  .p-subpage-hero__inner {
    padding-bottom: 32px;
  }
}
.p-news-hero {
  position: relative;
  background-color: #f2f2f2;
}

.p-news-hero__inner {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: 64px;
}

.p-news-hero__eyebrow {
  margin: 0 0 16px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-news-hero__title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3vw + 1.3rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.p-news-hero__lead {
  max-width: 56ch;
  margin: 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.8;
}

.p-news-filter {
  background-color: #f2f2f2;
}

.p-news-filter__inner {
  padding-bottom: 32px;
}

.p-news-list {
  background-color: #f2f2f2;
}

.p-news-list__inner {
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

.p-news-list__empty {
  margin: 0;
  padding: 64px 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.c-news-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid #e0e0e0;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-news-item:hover {
  background-color: rgba(30, 30, 30, 0.03);
}
.c-news-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.c-news-item__date {
  flex: 0 0 auto;
  width: 11ch;
  color: #666666;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial;
  font-size: 14px;
}

.c-news-item__category {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 999px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-news-item:hover .c-news-item__category {
  border-color: #1e1e1e;
  color: #1e1e1e;
}

.c-news-item__title {
  flex: 1 1 auto;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-news-item:hover .c-news-item__title {
  color: #736c93;
}

.c-news-item__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-news-item:hover .c-news-item__arrow {
  transform: translateX(6px);
}

.p-news-pagination {
  padding-top: 64px;
}
.p-news-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.p-news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  color: #666666;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-news-pagination .page-numbers:hover {
  background-color: rgba(30, 30, 30, 0.06);
  color: #1e1e1e;
}
.p-news-pagination .page-numbers.current {
  background-color: #1e1e1e;
  color: #ffffff;
}
.p-news-pagination .page-numbers.dots {
  background: none;
}
.p-news-pagination .page-numbers.next, .p-news-pagination .page-numbers.prev {
  width: auto;
  min-width: auto;
  padding: 0 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-news-detail-hero {
  position: relative;
  background-color: #f2f2f2;
}

.p-news-detail-hero__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 32px);
  padding-right: clamp(20px, 5vw, 32px);
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: 64px;
}

.p-news-detail-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.p-news-detail-hero__date {
  color: #666666;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial;
  font-size: 14px;
}

.p-news-detail-hero__category {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 999px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-news-detail-hero__title {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.75rem, 2.2vw + 1.35rem, 3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.p-news-detail-hero__eyecatch {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/8;
  background-color: #e0e0e0;
}
.p-news-detail-hero__eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-article {
  background-color: #f2f2f2;
}

.p-news-article__inner {
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
}

.p-news-detail__container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 32px);
  padding-right: clamp(20px, 5vw, 32px);
}

.entry-content {
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1.8;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content h2 {
  margin: 64px 0 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.entry-content h3 {
  margin: 48px 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.entry-content p {
  margin: 0 0 24px;
}
.entry-content a {
  color: #736c93;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.entry-content a:hover {
  color: #1e1e1e;
}
.entry-content strong {
  font-weight: 700;
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.entry-content ul li,
.entry-content ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
}
.entry-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background-color: #1e1e1e;
}
.entry-content ol {
  counter-reset: entry-ol;
}
.entry-content ol li::before {
  counter-increment: entry-ol;
  content: counter(entry-ol) ".";
  position: absolute;
  left: 0;
  color: #666666;
  font-size: 14px;
  font-weight: 700;
}
.entry-content blockquote {
  margin: 32px 0;
  padding: 8px 0 8px 32px;
  border-left: 2px solid #1e1e1e;
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.entry-content blockquote p {
  margin: 0;
}
.entry-content figure {
  margin: 64px 0;
}
.entry-content img {
  display: block;
  width: 100%;
  height: auto;
}
.entry-content figcaption {
  margin-top: 16px;
  color: #666666;
  font-size: 12px;
  text-align: center;
}
.entry-content hr {
  margin: 64px 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}

.p-news-article__share {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}

.p-news-article__share-label {
  margin: 0;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-news-article__share-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.c-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 1px solid rgba(30, 30, 30, 0.15);
  border-radius: 50%;
  color: #1e1e1e;
  cursor: pointer;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-share-btn:hover {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  color: #ffffff;
  transform: translateY(-4px);
}
.c-share-btn svg {
  width: 16px;
  height: 16px;
}

.p-news-back {
  padding-bottom: 64px;
  text-align: center;
}

.p-news-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e0e0e0;
}

.p-news-article-nav__link {
  padding: 48px;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-news-article-nav__link:hover {
  background-color: rgba(30, 30, 30, 0.03);
}
.p-news-article-nav__link:hover .p-news-article-nav__label {
  color: #1e1e1e;
}
.p-news-article-nav__link--next {
  grid-column: 2;
  text-align: right;
  border-left: 1px solid #e0e0e0;
}
.p-news-article-nav__link a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-news-article-nav__label {
  display: block;
  margin-bottom: 8px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-news-article-nav__title {
  margin: 0;
  max-width: 32ch;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.p-news-related {
  background-color: #e0e0e0;
}

.p-news-related__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: clamp(60px, 7.9vw + 30px, 144px);
  padding-bottom: clamp(60px, 7.9vw + 30px, 144px);
  padding-left: clamp(20px, 5vw, 32px);
  padding-right: clamp(20px, 5vw, 32px);
}

.p-news-related__heading {
  margin: 0 0 64px;
  font-size: clamp(1.5rem, 1.5vw + 1.2rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.p-news-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.c-news-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.c-news-card__thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  background-color: #f2f2f2;
}
.c-news-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.c-news-card:hover .c-news-card__thumb img {
  transform: scale(1.05);
}

.c-news-card__date {
  display: block;
  margin-bottom: 8px;
  color: #666666;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial;
  font-size: 12px;
}

.c-news-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-news-card:hover .c-news-card__title {
  color: #736c93;
}

@media (max-width: 768px) {
  .c-news-item {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 24px 0;
  }
  .c-news-item__date {
    width: auto;
    order: 1;
  }
  .c-news-item__category {
    order: 2;
  }
  .c-news-item__title {
    flex-basis: 100%;
    order: 3;
    font-size: 16px;
  }
  .c-news-item__arrow {
    display: none;
  }
  .p-news-pagination {
    padding-top: 48px;
  }
  .p-news-detail-hero__inner {
    padding-bottom: 32px;
  }
  .entry-content h2 {
    margin-top: 48px;
    font-size: 24px;
  }
  .entry-content h3 {
    margin-top: 32px;
    font-size: 18px;
  }
  .entry-content blockquote {
    font-size: 18px;
  }
  .p-news-related__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-news-article-nav {
    grid-template-columns: 1fr;
  }
  .p-news-article-nav__link--next {
    grid-column: 1;
    text-align: left;
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }
}
/*# sourceMappingURL=style.css.map */
