@charset "UTF-8";
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
  }
  body {
    min-height: 100vh;
  }
  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;
  }
  ol,
  ul {
    list-style: none;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
}
@layer tokens {
  :root {
    --color-text: #ffffff;
    --color-text-muted: #7A7A7A;
    --color-bg: #000000;
    --color-border: #e5e5e5;
    --color-white: #ffffff;
    --color-black: #000000;
    --text-sm-fixed: 0.875rem;
    --text-base-fixed: 1rem;
    --text-lg-fixed: 1.25rem;
    --text-xl-fixed: 1.5rem;
    --text-2xl-fixed: 2rem;
    --text-3xl-fixed: 2.5rem;
    --text-4xl-fixed: 3rem;
    --text-5xl-fixed: 3.5rem;
    --text-6xl-fixed: 4rem;
    --text-7xl-fixed: 4.5rem;
    --text-sm: clamp(calc(var(--text-sm-fixed) * 0.8), 1.2vw, var(--text-sm-fixed));
    --text-base: clamp(calc(var(--text-base-fixed) * 0.8), 1.2vw, var(--text-base-fixed));
    --text-lg: clamp(calc(var(--text-lg-fixed) * 0.8), 1.2vw, var(--text-lg-fixed));
    --text-xl: clamp(calc(var(--text-xl-fixed) * 0.8), 1.2vw, var(--text-xl-fixed));
    --text-2xl: clamp(calc(var(--text-2xl-fixed) * 0.8), 1.2vw, var(--text-2xl-fixed));
    --text-3xl: clamp(calc(var(--text-3xl-fixed) * 0.8), 1.2vw, var(--text-3xl-fixed));
    --text-4xl: clamp(calc(var(--text-4xl-fixed) * 0.8), 1.2vw, var(--text-4xl-fixed));
    --text-5xl: clamp(calc(var(--text-5xl-fixed) * 0.8), 1.2vw, var(--text-5xl-fixed));
    --text-6xl: clamp(calc(var(--text-6xl-fixed) * 0.8), 1.2vw, var(--text-6xl-fixed));
    --text-7xl: clamp(calc(var(--text-7xl-fixed) * 0.8), 1.2vw, var(--text-7xl-fixed));
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-4: 16px;
    --spacing-6: 24px;
    --spacing-8: 32px;
    --spacing-10: 40px;
    --spacing-12: 48px;
    --spacing-16: 64px;
    --spacing-24: 96px;
    --spacing-28: 104px;
    --spacing-36: 144px;
    --spacing-40: 160px;
    --spacing-60: 240px;
    --spacing-80: 320px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --container-width: 900px;
    --container-min-width: 96%;
    --container-max-width: 1700px;
    --container-padding: var(--spacing-4);
  }
}
@layer base {
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  body {
    font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text);
    background: url("../img/bg-noise-dark.webp") no-repeat top center/100% auto var(--color-bg);
    -webkit-font-smoothing: antialiased;
  }
  body::after {
    content: "";
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: url("../img/bg-line.png") repeat-y top center/100%;
    pointer-events: none;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  a {
    transition: opacity 0.2s ease;
  }
  a:hover {
    opacity: 0.7;
  }
  img {
    height: auto;
  }
  .l-container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
  }
  .l-main {
    padding-block: var(--spacing-40) 0;
  }
}
@layer components {
  .button {
    display: inline-block;
    padding: var(--spacing-4) var(--spacing-16);
    border-radius: var(--radius-sm);
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .button.-white-bg {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}
@layer pages {
  .p-page-inner {
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding: var(--spacing-16);
  }
  .p-page-title {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
  }
  .p-page-header {
    margin-bottom: var(--spacing-16);
  }
  .p-page-content h2 {
    font-size: 2vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
  }
  .p-page-content h3 {
    font-size: 1.5vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
  }
  .p-page-content h4 {
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
  }
  .p-page-content h5 {
    font-size: 1vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
  }
  .p-page-content h6 {
    font-size: 0.75vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
  }
  .p-page-content p {
    font-size: var(--text-base);
    line-height: 1.5;
    margin-bottom: var(--spacing-4);
  }
  .p-page-content ul {
    list-style: disc;
    margin-left: var(--spacing-4);
    margin-bottom: var(--spacing-4);
  }
  .p-page-content ol {
    list-style: decimal;
    margin-left: var(--spacing-4);
    margin-bottom: var(--spacing-4);
  }
}
@layer pages {
  .p-single-inner {
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding: var(--spacing-16);
  }
  @media screen and (max-width: 768px) {
    .p-single-inner {
      padding: var(--spacing-8) var(--spacing-6);
    }
  }
  .p-single-header {
    margin-bottom: var(--spacing-12);
  }
  .p-single-date {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
  }
  .p-single-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin-top: var(--spacing-4);
  }
  @media screen and (max-width: 768px) {
    .p-single-title {
      font-size: var(--text-2xl);
    }
  }
  .p-single-body {
    line-height: 2;
  }
  .p-single-body h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-top: var(--spacing-12);
    margin-bottom: var(--spacing-4);
  }
  .p-single-body h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-top: var(--spacing-8);
    margin-bottom: var(--spacing-4);
  }
  .p-single-body p {
    font-size: var(--text-base);
    margin-bottom: var(--spacing-6);
  }
  .p-single-body ul {
    list-style: disc;
    padding-left: var(--spacing-6);
    margin-bottom: var(--spacing-6);
  }
  .p-single-body ol {
    list-style: decimal;
    padding-left: var(--spacing-6);
    margin-bottom: var(--spacing-6);
  }
  .p-single-body img {
    max-width: 100%;
    height: auto;
  }
  .p-single-body a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .p-single-footer {
    margin-top: var(--spacing-16);
    padding-top: var(--spacing-8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
  }
  .p-single-terms {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    flex-wrap: wrap;
  }
  .p-single-terms-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    flex-shrink: 0;
  }
  .p-single-terms-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
  }
  .p-single-terms-item a {
    display: inline-block;
    font-size: var(--text-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2px var(--spacing-3);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .p-single-terms-item a:hover {
    background: #fff;
    color: #000;
  }
  .p-single-nav {
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding-inline: var(--spacing-16);
    padding-block: var(--spacing-12);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-8);
  }
  @media screen and (max-width: 768px) {
    .p-single-nav {
      padding-inline: var(--spacing-6);
      flex-direction: column;
      gap: var(--spacing-6);
    }
  }
  .p-single-nav-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    max-width: 45%;
    transition: opacity 0.2s ease;
  }
  @media screen and (max-width: 768px) {
    .p-single-nav-item {
      max-width: 100%;
    }
  }
  .p-single-nav-item:hover {
    opacity: 0.7;
  }
  .p-single-nav-item.-next {
    text-align: right;
    margin-left: auto;
  }
  .p-single-nav-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
  }
  .p-single-nav-title {
    font-size: var(--text-base);
    color: var(--color-white);
    line-height: 1.5;
  }
}
@layer pages {
  .p-top-fv {
    margin-top: var(--spacing-36);
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: visible;
  }
  @media screen and (max-width: 768px) {
    .p-top-fv {
      margin-top: var(--spacing-12);
    }
  }
  .p-top-fv .swiper {
    height: 100%;
    overflow: visible;
    margin-top: var(--spacing-4);
  }
  .p-top-fv-scroll {
    position: absolute;
    bottom: 100px;
    right: 7px;
    z-index: 10;
    transform: rotate(90deg);
  }
  @media screen and (max-width: 768px) {
    .p-top-fv-scroll {
      bottom: -10px;
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-fv-scroll {
      display: none;
    }
  }
  .p-top-fv-slide {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .p-top-fv-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
  }
  .p-top-fv-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-top-fv-video[data-src] {
    border: none;
  }
  .p-top-fv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .p-top-fv-play-btn[hidden] {
    display: none;
  }
  .p-top-fv-play-btn svg {
    margin-left: 5px;
  }
  .p-top-fv-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: #fff;
  }
  .p-top-fv-meta-container {
    position: relative;
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
    z-index: 5;
    display: flex;
    justify-content: center;
    padding-inline: var(--spacing-8);
    color: #fff;
    overflow: visible;
  }
  @media screen and (min-width: 1024px) {
    .p-top-fv-meta-container {
      padding-inline: var(--spacing-16);
    }
  }
  .p-top-fv-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .p-top-fv-meta.is-active .p-top-fv-logo {
    opacity: 1;
    transform: translateY(0);
  }
  .p-top-fv-meta.is-active .p-top-fv-title {
    opacity: 1;
    transform: translateY(0);
  }
  .p-top-fv-nav {
    width: 100%;
    height: 125px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: flex-end;
  }
  @media screen and (max-width: 1024px) {
    .p-top-fv-nav {
      height: 90px;
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-fv-nav {
      width: 150px;
      height: 20px;
      top: auto;
      bottom: -30px;
    }
  }
  .p-top-fv-nav-inner {
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-4);
  }
  .p-top-fv-nav-current {
    display: none;
  }
  .p-top-fv-nav-arrow-number {
    font-size: var(--text-sm);
  }
  @media screen and (max-width: 768px) {
    .p-top-fv-nav-arrow-number {
      display: none;
    }
  }
  .p-top-fv-nav-arrow.-next {
    text-align: right;
  }
  .p-top-fv-nav-btn {
    cursor: pointer !important;
  }
  .p-top-fv-logo {
    display: block;
    max-width: 160px;
    height: 40px;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    transition: all 0.3s ease 0.3s;
    transform: translateY(50px);
  }
  @media screen and (max-width: 768px) {
    .p-top-fv-logo {
      max-width: 100px;
      max-height: 30px;
    }
  }
  .p-top-fv-title {
    font-size: var(--text-7xl);
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease 0.3s;
  }
  @media screen and (max-width: 1280px) {
    .p-top-fv-title {
      font-size: var(--text-5xl);
    }
  }
  @media screen and (max-width: 1024px) {
    .p-top-fv-title {
      font-size: var(--text-3xl);
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-fv-title {
      font-size: var(--text-2xl);
    }
  }
  .p-top-about {
    padding-block: var(--spacing-36) var(--spacing-80);
    background: url("../img/bg-noise-light.webp") no-repeat top center/100% auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 800px;
  }
  .p-top-about:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0) 100%);
  }
  @media screen and (max-width: 1024px) {
    .p-top-about:after {
      height: 100px;
    }
  }
  @media screen and (max-width: 1024px) {
    .p-top-about {
      padding-block: var(--spacing-24) var(--spacing-40);
      padding-inline: var(--spacing-4);
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-about {
      min-height: auto;
      background-size: auto 100%;
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-about {
      text-align: left;
    }
  }
  .p-top-about-scroll {
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: flex-end;
  }
  @media screen and (max-width: 768px) {
    .p-top-about-scroll {
      bottom: -50px;
    }
  }
  .p-top-about-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
  }
  @media screen and (max-width: 640px) {
    .p-top-about-inner {
      width: var(--container-min-width);
    }
  }
  .p-top-about-subtitle {
    font-size: var(--text-sm);
  }
  @media screen and (max-width: 768px) {
    .p-top-about-subtitle {
      padding-inline: var(--spacing-4);
    }
  }
  .p-top-about-title {
    font-size: var(--text-3xl);
    font-weight: 500;
    color: #fff;
    margin-top: var(--spacing-10);
    letter-spacing: 0.08em;
  }
  @media screen and (max-width: 1440px) {
    .p-top-about-title {
      font-size: var(--text-2xl);
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-about-title {
      font-size: var(--text-xl);
      padding-inline: var(--spacing-4);
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-about-title {
      margin-top: var(--spacing-8);
      font-size: var(--text-lg);
    }
    .p-top-about-title br {
      display: none;
    }
  }
  .p-top-about-text {
    font-size: var(--text-base);
    margin-top: var(--spacing-16);
    line-height: 2.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-4);
  }
  @media screen and (max-width: 768px) {
    .p-top-about-text {
      padding-inline: var(--spacing-4);
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-about-text {
      line-height: 2.2;
      margin-top: var(--spacing-8);
      text-align: justify;
      align-items: flex-start;
    }
    .p-top-about-text br {
      display: none;
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-about-images {
      display: flex;
      margin-top: var(--spacing-12);
      gap: var(--spacing-4);
    }
  }
  .p-top-about-images-item {
    position: absolute;
  }
  @media screen and (max-width: 768px) {
    .p-top-about-images-item {
      position: initial;
    }
  }
  .p-top-about-images-item:first-child {
    top: 100px;
    left: -15px;
    width: 215px;
    height: auto;
  }
  @media screen and (max-width: 1280px) {
    .p-top-about-images-item:first-child {
      top: 80px;
      left: -10px;
      width: 150px;
    }
  }
  @media screen and (max-width: 1024px) {
    .p-top-about-images-item:first-child {
      top: 40px;
      width: 130px;
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-about-images-item:first-child {
      top: auto;
      left: auto;
      width: auto;
    }
  }
  .p-top-about-images-item:nth-child(2) {
    bottom: 250px;
    left: 100px;
    width: 150px;
    height: auto;
  }
  @media screen and (max-width: 1280px) {
    .p-top-about-images-item:nth-child(2) {
      width: 120px;
      bottom: 100px;
    }
  }
  @media screen and (max-width: 1024px) {
    .p-top-about-images-item:nth-child(2) {
      width: 110px;
      left: 50px;
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-about-images-item:nth-child(2) {
      bottom: auto;
      left: auto;
      width: auto;
    }
  }
  .p-top-about-images-item:nth-child(3) {
    top: 200px;
    right: 0;
    width: 180px;
    height: auto;
  }
  @media screen and (max-width: 1280px) {
    .p-top-about-images-item:nth-child(3) {
      top: 180px;
      width: 140px;
    }
  }
  @media screen and (max-width: 1024px) {
    .p-top-about-images-item:nth-child(3) {
      top: 80px;
      width: 100px;
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-about-images-item:nth-child(3) {
      top: auto;
      right: auto;
      width: auto;
    }
  }
  .p-top-about-images-item:last-child {
    bottom: 200px;
    right: 100px;
    width: 150px;
    height: auto;
  }
  @media screen and (max-width: 1280px) {
    .p-top-about-images-item:last-child {
      width: 120px;
    }
  }
  @media screen and (max-width: 1024px) {
    .p-top-about-images-item:last-child {
      width: 90px;
      right: 50px;
      bottom: 80px;
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-about-images-item:last-child {
      bottom: auto;
      right: auto;
      width: auto;
    }
  }
  .p-top-about-images-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .p-top-works {
    padding-block: var(--spacing-12) var(--spacing-36);
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
  }
  @media screen and (max-width: 768px) {
    .p-top-works {
      width: 100%;
      padding-block-start: var(--spacing-8);
    }
  }
  .p-top-works-title {
    font-size: var(--text-4xl);
    font-weight: 500;
    color: #fff;
    margin-top: var(--spacing-10);
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    .p-top-works-title {
      padding-inline: var(--spacing-6);
      text-align: left;
      font-size: var(--text-2xl);
    }
  }
  .p-top-works-list {
    margin-top: var(--spacing-24);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
  }
  @media screen and (min-width: 1024px) {
    .p-top-works-list {
      gap: var(--spacing-16);
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-works-list {
      padding-inline: var(--spacing-4);
      margin-top: var(--spacing-8);
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-works-list {
      grid-template-columns: 1fr;
      padding-inline: var(--spacing-6);
    }
  }
  .p-top-works-item {
    position: relative;
    overflow: hidden;
  }
  .p-top-works-item.is-hidden {
    display: none;
  }
  .p-top-works-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    display: block;
  }
  .p-top-works-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
  }
  .p-top-works-video-thumb:hover .p-top-works-video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
  }
  .p-top-works-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    pointer-events: none;
  }
  .p-top-works-video-play-btn svg {
    margin-left: 4px;
  }
  .p-top-works-item-youtube-badge {
    display: inline-flex;
    align-items: center;
    font-size: var(--text-sm);
    font-weight: bold;
    background: #ff0000;
    color: #fff;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-left: var(--spacing-2);
    text-decoration: none;
    vertical-align: middle;
    transition: opacity 0.2s ease;
  }
  .p-top-works-item-youtube-badge:hover {
    opacity: 0.8;
  }
  .p-top-works-item-logo {
    margin-top: var(--spacing-6);
    max-height: 40px;
    object-fit: contain;
    object-position: left center;
    z-index: 1;
  }
  @media screen and (max-width: 768px) {
    .p-top-works-item-logo {
      margin-top: var(--spacing-4);
    }
  }
  .p-top-works-item-title {
    margin-top: var(--spacing-6);
    font-weight: bold;
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
  }
  @media screen and (min-width: 1024px) {
    .p-top-works-item-title {
      font-size: var(--text-lg);
    }
  }
  @media screen and (max-width: 768px) {
    .p-top-works-item-title {
      margin-top: var(--spacing-4);
    }
  }
  .p-top-works-item-subtitle {
    margin-top: var(--spacing-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
  }
  @media screen and (min-width: 1024px) {
    .p-top-works-item-subtitle {
      font-size: var(--text-base);
    }
  }
  .p-top-works-more {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-12);
  }
  @media screen and (min-width: 1024px) {
    .p-top-works-more {
      margin-top: var(--spacing-16);
    }
  }
  .p-top-works-more .button {
    color: #fff;
    background: #000;
    border: 1px solid #fff;
    padding: var(--spacing-4) var(--spacing-16);
    border-radius: var(--radius-2xl);
    transition: all 0.3s ease;
  }
  .p-top-works-more .button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
  }
  .p-top-maker-logos {
    overflow: hidden;
    width: 100%;
  }
  .p-top-maker-logos-list {
    display: flex;
    gap: var(--spacing-6);
    animation: scroll-left 40s linear infinite;
    will-change: transform;
  }
  @media screen and (min-width: 1024px) {
    .p-top-maker-logos-list {
      gap: var(--spacing-8);
      animation-duration: 50s;
    }
  }
  @media screen and (min-width: 640px) {
    .p-top-maker-logos-list.-reverse {
      display: none;
    }
  }
  .p-top-maker-logos-list.-reverse {
    margin-top: var(--spacing-16);
    animation-name: scroll-right;
  }
  .p-top-maker-logos-item {
    flex-shrink: 0;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media screen and (min-width: 1024px) {
    .p-top-maker-logos-item {
      min-width: 160px;
    }
  }
  .p-top-maker-logos-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .p-top-cando {
    padding-block: var(--spacing-36);
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
  }
  @media screen and (max-width: 640px) {
    .p-top-cando {
      padding-inline: var(--spacing-4);
    }
  }
  .p-top-cando-content {
    width: 50%;
    max-width: 500px;
  }
  @media screen and (max-width: 768px) {
    .p-top-cando-content {
      width: 100%;
      max-width: 100%;
    }
  }
  .p-top-cando-subtitle {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
  }
  .p-top-cando-title {
    font-size: var(--text-3xl);
    font-weight: 500;
    color: #fff;
    margin-top: var(--spacing-10);
  }
  .p-top-cando-text {
    font-size: var(--text-base);
    margin-top: var(--spacing-10);
    line-height: 2;
  }
  .p-top-cando-list-wrapper {
    margin-top: var(--spacing-10);
    display: flex;
    justify-content: flex-end;
  }
  @media screen and (max-width: 768px) {
    .p-top-cando-list-wrapper {
      justify-content: flex-start;
    }
  }
  .p-top-cando-list {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-24) var(--spacing-16);
  }
  @media screen and (max-width: 768px) {
    .p-top-cando-list {
      width: 100%;
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-cando-list {
      grid-template-columns: 1fr;
      gap: var(--spacing-10);
    }
  }
  .p-top-cando-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
  }
  @media screen and (max-width: 640px) {
    .p-top-cando-item {
      gap: var(--spacing-2);
    }
  }
  .p-top-cando-item-number {
    font-size: var(--text-sm);
    font-weight: bold;
  }
  .p-top-cando-item-title {
    font-size: var(--text-2xl);
  }
  .p-top-cando-item-text {
    color: var(--color-text-muted);
  }
  .p-top-reality {
    margin-top: var(--spacing-36);
    display: flex;
    gap: var(--spacing-36);
  }
  @media screen and (max-width: 768px) {
    .p-top-reality {
      flex-direction: column;
      gap: var(--spacing-16);
    }
  }
  .p-top-reality-content {
    width: 50%;
    max-width: 625px;
  }
  @media screen and (max-width: 768px) {
    .p-top-reality-content {
      width: 100%;
      max-width: 100%;
    }
  }
  .p-top-reality-title {
    font-size: var(--text-xl);
    font-weight: 500;
    color: #fff;
  }
  .p-top-reality-title br {
    display: none;
  }
  .p-top-reality-text {
    font-size: var(--text-base);
    margin-top: var(--spacing-16);
    line-height: 2;
  }
  @media screen and (max-width: 640px) {
    .p-top-reality-text .sp-none {
      display: none;
    }
  }
  .p-top-reality-nums {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-12);
  }
  @media screen and (max-width: 768px) {
    .p-top-reality-nums {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: var(--spacing-16);
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-reality-nums {
      grid-template-columns: 1fr;
      gap: var(--spacing-12);
    }
  }
  .p-top-reality-nums-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
  }
  .p-top-reality-nums-label {
    font-size: var(--text-sm);
  }
  .p-top-reality-nums-value {
    font-size: var(--text-7xl);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
  }
  .p-top-reality-nums-value.-people::before {
    order: 2;
    content: "人";
    display: inline-block;
    font-size: var(--text-4xl);
    margin-top: var(--spacing-4);
  }
  .p-top-reality-nums-value::after {
    order: 3;
    content: "＋";
    display: block;
    font-size: var(--text-4xl);
  }
  .p-top-cta {
    background: url("../img/bg-noise-light.webp") no-repeat top center/100% auto;
    padding-block: var(--spacing-40) var(--spacing-80);
    padding-inline: var(--spacing-4);
    text-align: center;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    .p-top-cta {
      background-size: auto 100%;
    }
  }
  .p-top-cta:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0) 100%);
  }
  @media screen and (max-width: 1024px) {
    .p-top-cta:after {
      height: 150px;
    }
  }
  .p-top-cta-subtitle {
    font-size: var(--text-sm);
  }
  .p-top-cta-title {
    font-size: var(--text-7xl);
    font-weight: 700;
    color: #fff;
    margin-top: var(--spacing-10);
    letter-spacing: 0.02em;
  }
  @media screen and (max-width: 768px) {
    .p-top-cta-title {
      font-size: var(--text-4xl);
    }
  }
  @media screen and (max-width: 640px) {
    .p-top-cta-title {
      font-size: var(--text-3xl);
    }
  }
  .p-top-cta-text {
    font-size: var(--text-base);
    margin-top: var(--spacing-10);
    line-height: 2;
  }
  .p-top-cta-buttons {
    max-width: 600px;
    margin-inline: auto;
    margin-top: var(--spacing-10);
    display: flex;
    justify-content: center;
    gap: var(--spacing-4);
  }
  @media screen and (max-width: 640px) {
    .p-top-cta-buttons {
      flex-direction: column;
      width: 300px;
    }
  }
  .p-top-cta-buttons .button {
    width: calc(50% - var(--spacing-2));
    color: #fff;
    background: #000;
    border: 1px solid #fff;
    padding: var(--spacing-4) var(--spacing-16);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
  }
  @media screen and (max-width: 640px) {
    .p-top-cta-buttons .button {
      width: 300px;
      margin-inline: auto;
    }
  }
  .p-top-cta-buttons .button.-white {
    background: #fff;
    color: #000;
    border-color: #000;
  }
  .p-top-cta-buttons .button.-white-arrow {
    background: #fff;
    color: #000;
    border-color: #000;
  }
  .p-top-cta-buttons .button.-white-arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    background: url("../img/icon-arrow.svg") no-repeat center center/100% auto;
    display: inline-block;
    margin-left: var(--spacing-2);
  }
  .p-top-cta-buttons .button.-border {
    background: transparent;
    border-color: var(--color-text-muted);
  }
  .p-top-cta-buttons .button.-border-arrow {
    background: transparent;
    border-color: var(--color-text-muted);
  }
  .p-top-cta-buttons .button.-border-arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: var(--spacing-2);
    background-color: var(--color-text-muted);
    -webkit-mask-image: url("../img/icon-arrow.svg");
    mask-image: url("../img/icon-arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
  .p-top-works-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .p-top-works-modal[aria-hidden=false] {
    opacity: 1;
    pointer-events: auto;
  }
  .p-top-works-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
  }
  .p-top-works-modal-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
  }
  .p-top-works-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  .p-top-works-modal-close:hover {
    opacity: 1;
  }
  .p-top-works-modal-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
  }
  .p-top-works-modal-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
}
@layer pages {
  .p-404-inner {
    padding: var(--spacing-16);
    text-align: center;
  }
  .p-404-title {
    font-size: 10vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
  }
  .p-404-subtitle {
    font-size: 5vw;
    font-weight: 700;
    color: var(--color-white);
  }
  .p-404-text {
    font-size: var(--text-base);
    color: var(--color-white);
    margin-top: var(--spacing-24);
  }
  .p-404-btn {
    margin-top: var(--spacing-16);
  }
}
@layer layout {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding-block: var(--spacing-8);
    transition: transform 0.3s ease;
  }
  .l-header.is-hide {
    transform: translateY(-100%);
  }
  .l-header-inner {
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  @media screen and (max-width: 1024px) {
    .l-header-inner {
      align-items: flex-start;
    }
  }
  @media screen and (max-width: 640px) {
    .l-header-inner {
      gap: var(--spacing-16);
    }
  }
  .l-header-nav {
    width: 80%;
    display: flex;
    justify-content: center;
  }
  @media screen and (max-width: 1024px) {
    .l-header-nav {
      width: 60%;
    }
  }
  .l-header-nav-list {
    display: flex;
    gap: var(--spacing-28);
  }
  @media screen and (max-width: 1024px) {
    .l-header-nav-list {
      flex-direction: column;
      gap: var(--spacing-4);
    }
  }
  @media screen and (max-width: 640px) {
    .l-header-nav {
      display: none;
    }
  }
  .l-header-logo-img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  @media screen and (max-width: 640px) {
    .l-header-logo-img {
      max-width: 150px;
      max-height: 72px;
    }
  }
  .l-mobile-header {
    width: 50%;
    display: none;
    gap: var(--spacing-4);
    padding-block: var(--spacing-8) 0;
    align-items: flex-start;
  }
  @media screen and (max-width: 640px) {
    .l-mobile-header {
      display: flex;
      justify-content: space-between;
    }
  }
  @media screen and (max-width: 640px) {
    .l-mobile-header-info-list {
      display: flex;
      gap: var(--spacing-8);
    }
    .l-mobile-header-info-list a {
      color: #fff;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }
    .l-mobile-header-info-list a:hover {
      opacity: 0.7;
    }
  }
  .l-mobile-header-menu-btn {
    align-self: flex-start;
    background: none;
    border: none;
    color: #fff;
    font-size: var(--text-base);
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .l-mobile-header-menu-btn:hover {
    opacity: 0.7;
  }
  .l-mobile-header-menu-btn.is-open {
    opacity: 0.7;
  }
  .l-mobile-header-inner {
    position: relative;
  }
  .l-mobile-header-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    padding-block: var(--spacing-4);
    z-index: 100;
  }
  .l-mobile-header-nav.is-open {
    max-height: 500px;
  }
  .l-mobile-header-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    padding-block: var(--spacing-4);
  }
  .l-mobile-header-nav-list a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .l-mobile-header-nav-list a:hover {
    opacity: 0.7;
  }
}
@layer layout {
  .l-footer-inner {
    padding-block: var(--spacing-16) var(--spacing-4);
    width: var(--container-min-width);
    max-width: var(--container-max-width);
    margin-inline: auto;
  }
  .l-footer-top {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-16);
  }
  @media screen and (min-width: 1024px) {
    .l-footer-top {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  }
  @media screen and (max-width: 640px) {
    .l-footer-top {
      flex-direction: column;
      gap: var(--spacing-16);
      padding-inline: var(--spacing-4);
    }
  }
  @media screen and (max-width: 640px) {
    .l-footer-top-left {
      order: 2;
      width: 100%;
    }
  }
  .l-footer-top-right {
    width: 30%;
    display: flex;
    gap: var(--spacing-16);
  }
  @media screen and (max-width: 1024px) {
    .l-footer-top-right {
      width: 50%;
    }
  }
  @media screen and (max-width: 640px) {
    .l-footer-top-right {
      order: 1;
      width: 100%;
      flex-direction: column;
      gap: var(--spacing-8);
    }
  }
  .l-footer-nav {
    font-size: var(--text-base);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
  }
  .l-footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
  }
  .l-footer-nav-link {
    display: block;
  }
  .l-footer-group-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
  }
  .l-footer-sns {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-8);
  }
  .l-footer-sns-list {
    display: flex;
    gap: var(--spacing-2);
  }
  .l-footer-sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background-color: #fff;
  }
  .l-footer-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .l-footer-logo-img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .l-footer-bottom {
    text-align: center;
    margin-top: var(--spacing-8);
    border-top: 1px solid var(--color-text-muted);
    padding-block: var(--spacing-4);
  }
}

/*# sourceMappingURL=style.css.map */
