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

    body {
      font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
      background-color: #0a0a0a;
      color: #fff;
      line-height: 1.8;
    }
    /* ノイズオーバーレイ */
    .noise-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    /* ===== スライダー ===== */
    .slider {
      position: relative;
      overflow: hidden;
    }

    .slider-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

    .slide.active {
      opacity: 1;
    }

    .slide span {
      color: rgba(255, 255, 255, 0.3);
      font-size: 1.5rem;
      letter-spacing: 0.3em;
    }

    .slider-nav {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.75rem;
      z-index: 10;
    }

    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .slider-dot.active {
      background: #fff;
      width: 2rem;
    }

    .slider-dot:hover {
      background: rgba(255, 255, 255, 0.6);
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 3rem;
      cursor: pointer;
      transition: color 0.3s ease;
      z-index: 10;
    }

    .slider-arrow:hover {
      color: #fff;
    }

    .slider-arrow.prev { left: 1.5rem; }
    .slider-arrow.next { right: 1.5rem; }
.slide picture,
.slide img {
  width: 100%;
  height: auto;
  display: block;
}
.slide.active {
  position: relative;
}
    /* ===== セクション共通 ===== */
    .section {
      padding: 6rem 1.5rem;
    }

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title img {
  max-width: 500px;
  height: auto;
}
@media (max-width: 768px) {
  .section-title img {
    max-width: min(100%);
  }
}
    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .container-narrow {
      max-width: 800px;
      margin: 0 auto;
    }

    /* ===== 公開作品 ===== */
    .works-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    @media (max-width: 640px) {
      .works-grid {
        grid-template-columns: 1fr;
      }
    }
.work-item {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.work-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.work-item:hover::after {
  opacity: 0.2;
}
.work-item:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.work-year {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}
.comingsoon {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.work-title {
  max-width: 70%;
  height: auto;
}
.work-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(100%);
}

.work-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.is-coming-soon {
  pointer-events: none;
}
.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
    /* ===== ニュース ===== */
    .news-section {
      background: #f5f5f5;
      color: #1a1a1a;
    }

    .news-list {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .news-item {
      border-bottom: 1px solid #ddd;
      padding-bottom: 2.5rem;
    }

    .news-item-inner {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .news-item.has-image .news-item-inner {
      flex-direction: column;
    }
.leos {
  margin-bottom: 3rem;
}
.leos img {
  width: 40%;
  height: auto;
  display: block;
  margin: 0px auto 2px auto;
  animation: fadeInScale 1.6s ease-out forwards;
  opacity: 0;
}
.leos figcaption {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .leos img {
    width: calc(100% - 60px);
  }
}
@media (min-width: 640px) {
  .news-item.has-image .news-content {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 0.5rem 2rem;
  }
  .news-item.has-image .news-image {
    grid-column: 1;
    grid-row: 1 / 4;
  }
  .news-item.has-image .news-date {
    grid-column: 2;
    grid-row: 1;
  }
  .news-item.has-image .news-title {
    grid-column: 2;
    grid-row: 2;
  }
  .news-item.has-image .news-text-wrap {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (max-width: 639px) {
  .news-item.has-image .news-content {
    display: flex;
    flex-direction: column;
  }
  .news-item.has-image .news-image {
    order: 2;
  }
  .news-item.has-image .news-text-wrap {
    order: 3;
  }
}
.news-image {
  flex-shrink: 0;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: auto;
  display: block;
}
    .news-content {
      flex: 1;
    }

    .news-date {
      font-size: 0.875rem;
      color: #888;
      letter-spacing: 0.1em;
    }

    .news-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0.5rem 0 1rem;
    }
    .txbl {
      font-weight: 600;
    }
 .txsm {
      font-size: 0.85rem;
    }
    .border-box {
  background-color: #efefef;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 10px 0;
}
    .news-text {
      color: #555;
      margin: 0.5rem 0rem 1rem 0rem;
      font-size: 0.85rem;
    }
    /* ===== 監督概略 ===== */
    .about-list {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .about-item h3 {
      font-size: 1.25rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
      padding-left: 1rem;
      border-left: 2px solid rgba(255, 255, 255, 0.4);
    }

    .about-item p {
      color: rgba(255, 255, 255, 0.7);
      padding-left: 1.5rem;
    }

    /* ===== フッター ===== */
    .footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.footer p {
    margin: 0;
}
.footer-logo {
    margin-bottom: 100px;
}
.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
    margin: 40px auto;
    opacity: 0;
    transform: scale(0.5);
}
.footer.is-visible .footer-logo img {
    animation: slowGrowOnce 2.5s ease-out forwards;
}
@keyframes slowGrowOnce {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}