.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}

.header.is-scrolled .header__inner {
  padding: 12px 40px;
}

.header__logo {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.1em;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
}

.header.is-scrolled .header__logo {
  font-size: 18px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav-link:hover {
  opacity: 0.5;
}

.header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 200;
}
.header__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #111111;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__hamburger.is-open span {
  background: #ffffff;
}
.header__hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header__inner {
    padding: 20px 24px;
  }
  .header.is-scrolled .header__inner {
    padding: 12px 24px;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111111;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 150;
  }
  .header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .header__nav-link {
    font-size: 20px;
    color: #ffffff;
  }
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer {
  background: #111111;
  padding: 60px 40px 40px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.footer__logo {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.6;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #888888;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #ffffff;
}

.footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 24px 32px;
  }
  .footer__nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px 28px;
  }
  .footer__copy {
    text-align: center;
    font-size: 11px;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  background: #ffffff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

button {
  cursor: pointer;
}

.section {
  padding: 160px 40px;
}
@media (max-width: 768px) {
  .section {
    padding: 72px 24px;
  }
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__head {
  margin-bottom: 72px;
  text-align: center;
}
@media (max-width: 768px) {
  .section__head {
    margin-bottom: 48px;
  }
}

.section__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #111111;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 36px;
  }
}

.section__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #888888;
  letter-spacing: 0.1em;
  margin-top: 12px;
}

.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.js-fade.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.52'/%3E%3C/svg%3E"), radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.18), transparent 18%), radial-gradient(circle at 42% 78%, rgba(255, 255, 255, 0.08), transparent 24%), linear-gradient(115deg, #020202 0%, #0b0b0b 42%, #000 100%);
  background-size: 180px 180px, auto, auto, auto;
  background-blend-mode: soft-light, normal, normal, normal;
  padding: 132px 40px 72px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  z-index: 0;
  background: linear-gradient(108deg, transparent 0 49%, rgba(255, 255, 255, 0.34) 49.2%, transparent 49.7%), linear-gradient(128deg, transparent 0 64%, rgba(255, 255, 255, 0.22) 64.2%, transparent 64.5%);
  opacity: 0.55;
}
.hero::after {
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.9)), color-stop(48%, rgba(0, 0, 0, 0.42)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.1) 100%);
}
@media (max-width: 768px) {
  .hero {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 112px 24px 88px;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 768px) {
  .hero__inner {
    padding-bottom: 12px;
  }
}

.hero__title {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(72px, 11.2vw, 176px);
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: 0;
  text-transform: none;
}
.hero__title span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  background: linear-gradient(96deg, #fff 0%, #f6f6f6 26%, #8f8f8f 48%, #ffffff 66%, #b8b8b8 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 34px rgba(255, 255, 255, 0.08);
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  clip-path: inset(0 0 100% 0);
  -webkit-animation: heroTitleIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards, heroTitleShine 5.8s ease-in-out 1.2s infinite;
          animation: heroTitleIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards, heroTitleShine 5.8s ease-in-out 1.2s infinite;
}
.hero__title span:nth-child(2) {
  -webkit-animation-delay: 0.16s, 1.35s;
          animation-delay: 0.16s, 1.35s;
}
.hero__title span:nth-child(3) {
  -webkit-animation-delay: 0.32s, 1.5s;
          animation-delay: 0.32s, 1.5s;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(56px, 18vw, 92px);
  }
}

.hero__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 42px;
  letter-spacing: 0.18em;
  line-height: 2;
  -webkit-animation: heroFadeIn 1.1s ease 0.75s forwards;
          animation: heroFadeIn 1.1s ease 0.75s forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero__sub {
    font-size: 14px;
    margin-top: 28px;
    letter-spacing: 0.12em;
  }
}

.hero__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 52px;
  margin-top: 36px;
  padding: 0;
  border: none;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: heroFadeIn 1.1s ease 0.95s forwards;
          animation: heroFadeIn 1.1s ease 0.95s forwards;
  opacity: 0;
}
.hero__cta::after {
  content: "";
  width: 112px;
  height: 1px;
  background: currentColor;
  -webkit-box-shadow: 10px -5px 0 -4px currentColor, 10px 5px 0 -4px currentColor;
          box-shadow: 10px -5px 0 -4px currentColor, 10px 5px 0 -4px currentColor;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero__cta:hover {
  opacity: 0.75;
}
.hero__cta:hover::after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
@media (max-width: 768px) {
  .hero__cta {
    margin-top: 24px;
    gap: 28px;
    font-size: 13px;
  }
  .hero__cta::after {
    width: 70px;
  }
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-filter: contrast(1.18);
          filter: contrast(1.18);
}

.hero__ribbon {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(105deg, transparent 0 18%, rgba(255, 255, 255, 0.94) 30%, rgba(75, 75, 75, 0.28) 42%, rgba(255, 255, 255, 0.88) 54%, transparent 72%), linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  -webkit-box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.52), 0 0 42px rgba(255, 255, 255, 0.22);
          box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.52), 0 0 42px rgba(255, 255, 255, 0.22);
  mix-blend-mode: screen;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: ribbonIn 1.4s ease 0.35s forwards, ribbonFloat 9s ease-in-out 1.8s infinite alternate;
          animation: ribbonIn 1.4s ease 0.35s forwards, ribbonFloat 9s ease-in-out 1.8s infinite alternate;
}

.hero__ribbon--one {
  --ribbon-rotate: -48deg;
  width: min(62vw, 920px);
  height: 210px;
  right: -10vw;
  top: 8vh;
  -webkit-transform: rotate(-48deg) skewX(-12deg) translateY(28px);
          transform: rotate(-48deg) skewX(-12deg) translateY(28px);
}

.hero__ribbon--two {
  --ribbon-rotate: -31deg;
  width: min(54vw, 780px);
  height: 150px;
  right: 6vw;
  bottom: 3vh;
  -webkit-transform: rotate(-31deg) skewX(-10deg) translateY(28px);
          transform: rotate(-31deg) skewX(-10deg) translateY(28px);
  -webkit-animation-delay: 0.5s, 2s;
          animation-delay: 0.5s, 2s;
  opacity: 0;
}

.hero__ribbon--three {
  --ribbon-rotate: -67deg;
  width: min(42vw, 620px);
  height: 96px;
  right: 22vw;
  top: 45vh;
  -webkit-transform: rotate(-67deg) skewX(-10deg) translateY(28px);
          transform: rotate(-67deg) skewX(-10deg) translateY(28px);
  -webkit-animation-delay: 0.65s, 2.2s;
          animation-delay: 0.65s, 2.2s;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  left: 38px;
  bottom: 40px;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.55);
  -webkit-animation: scrollLine 1.6s ease-in-out infinite;
          animation: scrollLine 1.6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

@-webkit-keyframes heroTitleIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes heroTitleShine {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes heroTitleShine {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@-webkit-keyframes ribbonIn {
  to {
    opacity: 0.9;
    -webkit-transform: rotate(var(--ribbon-rotate, -48deg)) skewX(-12deg) translateY(0);
            transform: rotate(var(--ribbon-rotate, -48deg)) skewX(-12deg) translateY(0);
  }
}
@keyframes ribbonIn {
  to {
    opacity: 0.9;
    -webkit-transform: rotate(var(--ribbon-rotate, -48deg)) skewX(-12deg) translateY(0);
            transform: rotate(var(--ribbon-rotate, -48deg)) skewX(-12deg) translateY(0);
  }
}
@-webkit-keyframes ribbonFloat {
  from {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  to {
    -webkit-filter: blur(1px);
            filter: blur(1px);
  }
}
@keyframes ribbonFloat {
  from {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  to {
    -webkit-filter: blur(1px);
            filter: blur(1px);
  }
}
@-webkit-keyframes scrollLine {
  0%, 100% {
    -webkit-transform: scaleY(0.35);
            transform: scaleY(0.35);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes scrollLine {
  0%, 100% {
    -webkit-transform: scaleY(0.35);
            transform: scaleY(0.35);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes heroFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.about {
  position: relative;
  overflow: clip;
  background: radial-gradient(circle at 22% 34%, rgba(0, 0, 0, 0.055), transparent 22%), radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.035), transparent 20%), linear-gradient(115deg, #ffffff 0%, #f6f6f6 48%, #ffffff 100%);
  color: #111111;
  min-height: 100vh;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(0, 0, 0, 0.045), transparent 30%), radial-gradient(circle at 45% 50%, rgba(0, 0, 0, 0.035), transparent 32%);
  opacity: 0.9;
  pointer-events: none;
}
.about .section__inner {
  position: relative;
  z-index: 1;
}
.about .section__head {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  text-align: left;
}
.about .section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.15;
  color: #111111;
  letter-spacing: 0.12em;
}
.about .section__subtitle {
  color: rgba(17, 17, 17, 0.58);
}
.about > .section__inner > .section__head,
.about > .section__inner > .about__lead {
  display: none;
}
@media (max-width: 768px) {
  .about {
    padding-top: 76px;
    padding-bottom: 56px;
  }
}

.about__layout {
  position: relative;
  min-height: calc(100vh - 152px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__bg-title {
  position: sticky;
  top: 108px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 0;
  margin-top: -72px;
  margin-left: -72px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(168px, 23vw, 360px);
  line-height: 0.78;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
  pointer-events: none;
}
.about__bg-title span {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.about__bg-title.is-visible span {
  -webkit-animation: aboutBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: aboutBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.about__bg-title.is-visible span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.about__bg-title.is-visible span:nth-child(2) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.about__bg-title.is-visible span:nth-child(3) {
  -webkit-animation-delay: 0.64s;
          animation-delay: 0.64s;
}
.about__bg-title.is-visible span:nth-child(4) {
  -webkit-animation-delay: 0.96s;
          animation-delay: 0.96s;
}
.about__bg-title.is-visible span:nth-child(5) {
  -webkit-animation-delay: 1.28s;
          animation-delay: 1.28s;
}
@media (max-width: 768px) {
  .about__bg-title {
    top: 88px;
    margin-top: -36px;
    margin-left: -28px;
    font-size: clamp(92px, 32vw, 160px);
  }
}

@-webkit-keyframes aboutBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes aboutBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.about__content {
  max-width: 800px;
  padding-top: 96px;
}
@media (max-width: 768px) {
  .about__content {
    padding-top: 58px;
  }
}

.about__body {
  margin-top: 0;
}

.about__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.85;
  color: rgba(17, 17, 17, 0.84);
  letter-spacing: 0.1em;
}
.about__body p + p {
  margin-top: 34px;
}
@media (max-width: 768px) {
  .about__body p {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .about__body p br {
    display: none;
  }
}

.about__service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  width: 100%;
  min-width: 0;
}
@media (max-width: 1100px) {
  .about__service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
}
@media (max-width: 768px) {
  .about__service-list {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }
}

.about__service-item {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 14px;
  min-height: 96px;
  min-width: 0;
  padding: 0 clamp(16px, 2vw, 24px);
  border-right: 1px solid rgba(0, 0, 0, 0.24);
}
.about__service-item:first-child {
  padding-left: 0;
}
.about__service-item:last-child {
  padding-right: 0;
  border-right: none;
}
@media (max-width: 1100px) {
  .about__service-item:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }
  .about__service-item:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .about__service-item {
    grid-template-columns: 64px 44px 1fr;
    gap: 16px;
    padding: 26px 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  }
  .about__service-item:last-child {
    border-bottom: none;
  }
}

.about__service-number {
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1;
  color: #111111;
}
@media (max-width: 768px) {
  .about__service-number {
    grid-row: span 2;
  }
}

.about__service-icon {
  width: 42px;
  font-size: 34px;
  line-height: 1;
  color: rgba(17, 17, 17, 0.82);
  text-align: left;
}
@media (max-width: 768px) {
  .about__service-icon {
    width: 44px;
    font-size: 32px;
    text-align: center;
  }
}

.about__service-item h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 1.35;
  color: #111111;
  letter-spacing: 0.06em;
  white-space: normal;
}

.about__service-item p {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.15vw, 14px);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.72);
  letter-spacing: 0.04em;
}

.about__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #333333;
  line-height: 2;
  text-align: center;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .about__lead {
    font-size: 14px;
    text-align: left;
    margin-bottom: 48px;
  }
  .about__lead br {
    display: none;
  }
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .about__features {
    grid-template-columns: 1fr;
  }
}

.about__feature {
  padding: 48px 40px;
  border-right: 1px solid #e0e0e0;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.about__feature:last-child {
  border-right: none;
}
.about__feature:hover {
  background: #f5f5f5;
}
@media (max-width: 768px) {
  .about__feature {
    padding: 36px 24px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .about__feature:last-child {
    border-bottom: none;
  }
}

.about__feature-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.about__feature-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #888888;
  line-height: 1.8;
}

.service {
  position: relative;
  overflow: clip;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.52'/%3E%3C/svg%3E"), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.07), transparent 18%), radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.055), transparent 22%), linear-gradient(115deg, #111111 0%, #171717 48%, #0d0d0d 100%);
  background-size: 180px 180px, auto, auto, auto;
  background-blend-mode: soft-light, normal, normal, normal;
  color: #ffffff;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 0 58%, rgba(255, 255, 255, 0.16) 58.1%, transparent 58.42%), linear-gradient(75deg, rgba(255, 255, 255, 0.045), transparent 38%);
  pointer-events: none;
}
.service .section__inner {
  position: relative;
  z-index: 1;
}
.service .section__head {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
  text-align: left;
}
.service .section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: 0.12em;
}
.service .section__subtitle {
  color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 768px) {
  .service .section__head {
    margin-bottom: 40px;
  }
}

.service__bg-title {
  position: sticky;
  top: 108px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 0;
  margin-top: -72px;
  margin-left: -72px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(132px, 18vw, 280px);
  line-height: 0.78;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.085);
  text-transform: uppercase;
  pointer-events: none;
}
.service__bg-title span {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.service__bg-title.is-visible span {
  -webkit-animation: serviceBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: serviceBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.service__bg-title.is-visible span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.service__bg-title.is-visible span:nth-child(2) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.service__bg-title.is-visible span:nth-child(3) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.service__bg-title.is-visible span:nth-child(4) {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}
.service__bg-title.is-visible span:nth-child(5) {
  -webkit-animation-delay: 0.96s;
          animation-delay: 0.96s;
}
.service__bg-title.is-visible span:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.service__bg-title.is-visible span:nth-child(7) {
  -webkit-animation-delay: 1.44s;
          animation-delay: 1.44s;
}
@media (max-width: 768px) {
  .service__bg-title {
    top: 88px;
    margin-top: -36px;
    margin-left: -28px;
    font-size: clamp(76px, 22vw, 124px);
  }
}

@-webkit-keyframes serviceBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes serviceBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
@media (max-width: 768px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.035);
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.service-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
@media (max-width: 768px) {
  .service-card {
    padding: 28px 24px;
  }
}

.service-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  letter-spacing: 0.05em;
}

.service-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 2;
  letter-spacing: 0.04em;
}

.works {
  position: relative;
  overflow: clip;
  background: radial-gradient(circle at 22% 28%, rgba(0, 0, 0, 0.05), transparent 18%), radial-gradient(circle at 78% 82%, rgba(0, 0, 0, 0.035), transparent 24%), linear-gradient(115deg, #ffffff 0%, #f7f7f7 52%, #ffffff 100%);
  color: #111111;
}
.works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 0 42%, rgba(0, 0, 0, 0.08) 42.1%, transparent 42.38%), linear-gradient(72deg, rgba(0, 0, 0, 0.04), transparent 34%);
  pointer-events: none;
}
.works .section__inner {
  position: relative;
  z-index: 1;
}
.works .section__head {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
  text-align: left;
}
.works .section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.15;
  color: #111111;
  letter-spacing: 0.12em;
}
.works .section__subtitle {
  color: rgba(17, 17, 17, 0.58);
}

.works__bg-title {
  position: sticky;
  top: 108px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 0;
  margin-top: -72px;
  margin-left: -72px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(144px, 20vw, 310px);
  line-height: 0.78;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.075);
  text-transform: uppercase;
  pointer-events: none;
}
.works__bg-title span {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.works__bg-title.is-visible span {
  -webkit-animation: worksBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: worksBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.works__bg-title.is-visible span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.works__bg-title.is-visible span:nth-child(2) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.works__bg-title.is-visible span:nth-child(3) {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}
.works__bg-title.is-visible span:nth-child(4) {
  -webkit-animation-delay: 0.84s;
          animation-delay: 0.84s;
}
.works__bg-title.is-visible span:nth-child(5) {
  -webkit-animation-delay: 1.12s;
          animation-delay: 1.12s;
}
@media (max-width: 768px) {
  .works__bg-title {
    top: 88px;
    margin-top: -36px;
    margin-left: -28px;
    font-size: clamp(82px, 24vw, 136px);
  }
}

@-webkit-keyframes worksBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes worksBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 64px;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .works__grid {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
}

.work-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-right: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-transition: background 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  transition: background 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.work-card:hover {
  background: rgba(255, 255, 255, 0.86);
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.work-card__link {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.work-card__link:hover .work-card__thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.work-card__thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(0, 0, 0, 0.04);
}
.work-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.work-card__body {
  padding: 22px 24px 26px;
}

.work-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.work-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.work-card__tag {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(17, 17, 17, 0.58);
  letter-spacing: 0.05em;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 3px 10px;
}

.works__more {
  text-align: center;
}

.works__more-link {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #111111;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.78);
  padding-bottom: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works__more-link:hover {
  opacity: 0.5;
}

.contact {
  position: relative;
  overflow: clip;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.52'/%3E%3C/svg%3E"), radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.07), transparent 18%), radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.055), transparent 24%), linear-gradient(115deg, #0f0f0f 0%, #171717 50%, #101010 100%);
  background-size: 180px 180px, auto, auto, auto;
  background-blend-mode: soft-light, normal, normal, normal;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(116deg, transparent 0 64%, rgba(255, 255, 255, 0.14) 64.1%, transparent 64.38%), linear-gradient(88deg, rgba(255, 255, 255, 0.04), transparent 36%);
  pointer-events: none;
}
.contact .section__inner {
  position: relative;
  z-index: 1;
}
.contact .section__head {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  text-align: center;
}
.contact .section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: 0.12em;
}
.contact .section__subtitle {
  color: rgba(255, 255, 255, 0.62);
}

.contact__bg-title {
  position: sticky;
  top: 108px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 0;
  margin-top: -72px;
  margin-left: -72px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(118px, 17vw, 270px);
  line-height: 0.78;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.085);
  text-transform: uppercase;
  pointer-events: none;
}
.contact__bg-title span {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.contact__bg-title.is-visible span {
  -webkit-animation: contactBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: contactBgLetterIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.contact__bg-title.is-visible span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.contact__bg-title.is-visible span:nth-child(2) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.contact__bg-title.is-visible span:nth-child(3) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.contact__bg-title.is-visible span:nth-child(4) {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}
.contact__bg-title.is-visible span:nth-child(5) {
  -webkit-animation-delay: 0.96s;
          animation-delay: 0.96s;
}
.contact__bg-title.is-visible span:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.contact__bg-title.is-visible span:nth-child(7) {
  -webkit-animation-delay: 1.44s;
          animation-delay: 1.44s;
}
@media (max-width: 768px) {
  .contact__bg-title {
    top: 88px;
    margin-top: -36px;
    margin-left: -28px;
    font-size: clamp(64px, 19vw, 108px);
  }
}

@-webkit-keyframes contactBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes contactBgLetterIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.contact__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 2;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .contact__lead {
    font-size: 14px;
    text-align: left;
    margin-bottom: 40px;
  }
}

.contact__form {
  max-width: 760px;
  margin: auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .contact__form {
    padding: 28px 22px;
  }
}

.form-group {
  margin-bottom: 32px;
}

.form-group__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.form-group__label .is-required {
  color: #fff;
  margin-left: 6px;
  font-size: 11px;
}

.form-group__input,
.form-group__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 12px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #ffffff;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.form-group__input::-webkit-input-placeholder, .form-group__textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group__input::-moz-placeholder, .form-group__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group__input:-ms-input-placeholder, .form-group__textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group__input::-ms-input-placeholder, .form-group__textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group__input:focus,
.form-group__textarea:focus {
  border-bottom-color: #ffffff;
}

.form-group__textarea {
  resize: vertical;
  min-height: 120px;
  display: block;
}

.form__submit {
  display: block;
  width: 100%;
  margin-top: 48px;
  padding: 18px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.15em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form__submit:hover {
  background: #ffffff;
  color: #111111;
}

.page-hero {
  background: #111111;
  padding: 160px 40px 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 24px 56px;
  }
}

.page-hero__en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-hero__en {
    font-size: 32px;
  }
}

.page-hero__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  margin-top: 12px;
}

.page-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 18px;
  }
}

.page-hero__meta {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  margin-top: 16px;
}

.post-list {
  border-top: 1px solid #e0e0e0;
}

.post-list__item {
  border-bottom: 1px solid #e0e0e0;
}

.post-list__link {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 36px 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.post-list__link:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .post-list__link {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }
}

.post-list__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.post-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-list__no-thumb {
  aspect-ratio: 4/3;
  background: #f5f5f5;
}

.post-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.post-list__date {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.08em;
}

.post-list__cat {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.05em;
  border: 1px solid #e0e0e0;
  padding: 2px 8px;
}

.post-list__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #111111;
  line-height: 1.65;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.post-list__excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #888888;
  line-height: 1.8;
}

.post-list__empty {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #888888;
  padding: 80px 0;
}

.single-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px 64px;
}
@media (max-width: 768px) {
  .single-content {
    padding: 48px 24px 48px;
  }
}

.single-content__thumb {
  margin-bottom: 56px;
}
.single-content__thumb img {
  width: 100%;
  height: auto;
}

.single-content__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #333333;
  line-height: 2;
}
.single-content__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 56px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e0e0e0;
  letter-spacing: 0.03em;
}
.single-content__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin: 40px 0 14px;
  letter-spacing: 0.03em;
}
.single-content__body p {
  margin-bottom: 28px;
}
.single-content__body img {
  max-width: 100%;
  height: auto;
  margin: 36px auto;
}
.single-content__body a {
  color: #111111;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.single-content__body a:hover {
  opacity: 0.55;
}
.single-content__body ul,
.single-content__body ol {
  list-style: revert;
  margin: 0 0 28px 1.5em;
  padding: 0;
}

.single-nav {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .single-nav {
    padding: 0 24px 64px;
  }
}

.single-nav__back {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #111111;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #111111;
  padding-bottom: 4px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.single-nav__back:hover {
  opacity: 0.5;
}

.work-detail {
  background: #ffffff;
}

.work-detail__hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 0;
}
@media (max-width: 768px) {
  .work-detail__hero {
    padding: 40px 24px 0;
  }
}

.work-detail__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.work-detail__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work-detail__info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 96px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 72px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 768px) {
  .work-detail__info {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 24px 64px;
  }
}

.work-detail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #111111;
  line-height: 1.55;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .work-detail__title {
    font-size: 20px;
  }
}

.work-detail__content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #333333;
  line-height: 2;
}
.work-detail__content p {
  margin-bottom: 24px;
}
.work-detail__content a {
  color: #111111;
  border-bottom: 1px solid #e0e0e0;
}
.work-detail__content a:hover {
  opacity: 0.6;
}

.work-detail__meta {
  padding: 32px;
  border: 1px solid #e0e0e0;
  position: sticky;
  top: 100px;
}

.work-detail__meta-item {
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
}
.work-detail__meta-item:first-child {
  padding-top: 0;
}
.work-detail__meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.work-detail__meta-label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.work-detail__meta-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #111111;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 64px 40px;
}
@media (max-width: 768px) {
  .pagination {
    padding: 48px 24px;
    gap: 4px;
  }
}
.pagination .page-numbers {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #888888;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}
.pagination .page-numbers.dots {
  border: none;
  color: #888888;
  pointer-events: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
}/*# sourceMappingURL=style.css.map */