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

/* レスポンシブ表示切替ユーティリティ */
.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  color: #000;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  font-size: clamp(12px, 0.5vw + 10px, 14px);
}

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

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.inner {
  max-width: 1035px;
  margin: 0 auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* セクション共通ブロック */
.section-block {
  padding: 3rem 0 2rem;
}
#cast.section-block {
  padding-top: 1rem;
  padding-bottom: 100px;
}
#staff.section-block {
  font-weight: 600;
}
#comment.section-block {
  padding: 3rem 0 5rem;
}
#movie-info.section-block {
  font-weight: 600;
}
#narration.section-block {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

@media (max-width: 768px) {
  #narration.section-block {
    padding-bottom: 0;
  }
}

/* トップビジュアル */
.hero {
  position: relative;
  width: 100%;
}

#top {
  background: url("../images/bg-01.png") no-repeat center center / cover;
}

#top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.hero img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

/* 上映情報 */
.screening-info {
  background: #88dedb;
  text-align: center;
}

.screening-title {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
  .screening-title {
    font-size: 1.05rem;
  }
}

.screening-sub {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2.7rem;
}
@media (max-width: 768px) {
  .screening-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

.screening-btn {
  display: inline-block;
  padding: 0.2rem 1rem;
  border: 2px solid #241815;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  background: #241815;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.screening-btn:hover {
  opacity: 0.8;
}

/* セクション見出し */
.title {
  font-size: 1.9rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.6rem;
  }
}

.subtitle.no-margin {
  margin-bottom: -0.8rem;
  letter-spacing: -0.1rem;
}

.subtitle {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 1rem 0 2.8rem;
  letter-spacing: 0rem;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 1.2rem;
    text-align: left;
  }
}

.text {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .text {
    font-size: 1.1rem;
    text-align: left;
  }
}

/* Introduction + Narration 共通固定背景 */
.intro-narration-bg {
  background: url("../images/bg-02.png") no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.intro-narration-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.84);
  pointer-events: none;
}

.intro-narration-bg > * {
  position: relative;
}

/* Introduction */
.introduction {
  text-align: center;
}

.intro-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 3rem;
}

@media (max-width: 768px) {
  .intro-images {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 80%;
    margin: 1.5rem auto 3rem;
  }
}

.intro-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ナレーションセクション */
.narration-layout {
  display: grid;
  grid-template-columns: 1.4fr 3.7fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .narration-layout {
    margin-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  .narration-photo {
    width: 80%;
    margin: 0 auto;
  }
}

.narration-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.narration-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 5rem;
}

.narration-title-gothic {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
}

@media (max-width: 768px) {
  .narration-title {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.narration-text {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: -0.05rem;
}
@media (max-width: 768px) {
  .narration-text {
    font-size: 1rem;
  }
}

.narration-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
}

.narration-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .narration-layout {
    grid-template-columns: 1fr;
  }
  .narration-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comments-block {
  margin-bottom: 4rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .comments-block {
    margin-bottom: 3rem;
  }
}

.comments-section :last-child {
  margin-bottom: 0;
}

.comments {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.comments-author {
  text-align: center;
  font-size: 1.4rem;
}
.comments-author span {
  display: block;
  margin-top: -2px;
  font-size: 1rem;
}

/* コメントセクション */
.comments-section {
  background: #e2ecc9;
}

.comments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1035px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .comments-grid {
    grid-template-columns: 1fr;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}

/* キャストセクション */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1rem;
}

@media (max-width: 768px) {
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cast-item {
  text-align: center;
}

.cast-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.cast-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .cast-name {
    font-size: 0.9rem;
  }
}

.cast-role {
  font-size: 1rem;
  margin-top: 0.2rem;
  line-height: 1.4;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cast-role {
    font-size: 0.7rem;
  }
}

/* スタッフセクション */
.staff {
  background: url("../images/bg-03.png") no-repeat center center / cover;
  position: relative;
}

.staff::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.staff > * {
  position: relative;
}

.staff-card {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.staff-card--wide-photo {
  grid-template-columns: 1.3fr 3fr;
}

.staff-photo {
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .staff-photo {
    width: 80%;
    margin: 0 auto;
  }
}

.staff-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .staff-card,
  .staff-card--wide-photo {
    grid-template-columns: 1fr;
  }
}

.staff-copyright {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 0.7rem;
  font-weight: normal;
  color: #fff;
  text-align: right;
  margin-top: 0.3rem;
}

.staff-info {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.staff-header {
  /* role + name をまとめて上部に配置 */
}

.staff-role {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.staff-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.staff-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.staff-description {
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .staff-description {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .staff-achievements {
    font-size: 0.9rem;
  }
}

/* テキストのみスタッフ */
.staff-text-list {
  margin-top: 1rem;
}

.staff-text-item {
  padding: 1.2rem 0;
}

.staff-text-item + .staff-text-item {
  margin-top: 0.5rem;
}

/* 作品情報 */
.movie-info {
  text-align: center;
}

.movie-info-label {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .movie-info-label {
    font-size: 0.7rem;
  }
}

.movie-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .movie-info-title {
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }
}

.movie-info-main {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .movie-info-main {
    margin-bottom: 1.6rem;
  }
}

.movie-info-main p {
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .movie-info-main p {
    font-size: 0.9rem;
  }
}

.movie-info-sub {
  margin-bottom: 1.5rem;
}

.movie-info-sub p {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 700;
}

.movie-info-support p {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 700;
}
/* SNSリンク */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 100px 0;
}

@media (max-width: 768px) {
  .social-links {
    margin: 50px 0;
  }
}

.social-links img {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}

.social-links img:hover {
  opacity: 0.6;
}

/* フッター */
.footer {
  text-align: center;
  padding: 2rem 1rem 2rem;
  font-size: 0.7rem;
}
.footer p {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
}

/* 動画埋め込み */
.hero-video {
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  margin: 1rem auto;
}
@media (max-width: 768px) {
  .video-wrapper {
    margin: 0rem auto;
  }
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mb-4 {
  margin-bottom: 2rem;
}

.news-list {
  list-style: none;
  padding: 0;
}

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

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.2rem;
}

.news-title {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* セクション見出し（装飾付き） */
.section-heading {
  text-align: center;
  padding: 2rem 0;
}

.section-heading h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.section-heading .heading-line {
  display: block;
  width: 110px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}

/* ナビゲーション */
.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  padding: 0.8rem 0.5rem;
  font-size: 1rem;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition:
    background 0.3s,
    border-color 0.3s,
    backdrop-filter 0.3s;
  font-weight: bold;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-nav a {
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.site-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-nav {
    gap: 0.4rem 0.8rem;
    padding: 0.5rem 0.3rem;
    font-size: 0.75rem;
  }
  .site-nav a {
    letter-spacing: 0;
  }
}

/* ==============================
         サブページ共通
         ============================== */

.content {
  flex: 1;
}

.content > .page-content {
  padding-top: 6rem;
}

/* サブページ背景 */
body.subpage {
  background: url("../images/bg-01.png") no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
}

body.subpage::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  pointer-events: none;
  z-index: -1;
}

/* ==============================
         劇場情報ページ
         ============================== */
.theater-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  border: 1px solid #cfcfcf;
  background: #fff;
}

.theater-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  line-height: 1.6;
  background: #fff;
}

.theater-table th,
.theater-table td {
  white-space: nowrap;
}

.theater-table thead th {
  background: #262626;
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  text-align: center;
  letter-spacing: 0.03em;
  border: 1px solid #555;
}

.theater-table tbody td {
  padding: 0.65rem 0.8rem;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.theater-table tbody tr:last-child td {
  border-bottom: 1px solid #ddd;
}

.theater-td-pref {
  text-align: center;
  font-weight: 700;
  width: 10rem;
}

.theater-td-name {
  text-align: center;
  font-weight: 700;
  width: 18rem;
}

.theater-td-name a {
  text-decoration: underline;
}

.theater-td-date {
  text-align: center;
  width: 13rem;
}

.theater-td-event {
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: left;
  width: 20rem;
}

/* ==============================
         サポーターページ
         ============================== */
.supporter-section {
  padding: 0;
}

.supporter-heading-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.supporter-block {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  text-align: left;
  white-space: normal;
}

.supporter-list {
  margin-top: 1.5rem;
}

/* ==============================
         スクロールアニメーション
         ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.subpage .text {
  font-weight: 500;
  font-size: 1rem;
}

.subpage .page-content {
  padding-top: 8rem;
}

.theater-content > .page-content {
  min-height: calc(100vh - 20rem);
}

@media (max-width: 768px) {
  .theater-content > .page-content {
    min-height: calc(100vh - 16rem);
  }
}
