/* =========================
   Base
========================= */

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

.site-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.7;
}

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

img {
  max-width: 100%;
}

/* =========================
   Layout
========================= */

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   Header
========================= */

.header {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding-top: 30px;
}

.site-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.festival-date {
  margin-top: 12px;
  font-size: 1rem;
  color: #d0d0d0;
}

/* =========================
   Navigation
========================= */

.nav {
  margin-top: 30px;
}

.nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.85;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
}

/* =========================
   Top
========================= */

.top {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)),
    url('../images/top.webp');

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.top-overlay {
  width: 100%;
}

.top-copy {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 300;
  margin-top: 180px;
  letter-spacing: 0.05em;
}

/* =========================
   Main Content
========================= */

.main-content {
  padding: 100px 0;
}

.info-section,
.sns-section {
  margin-bottom: 80px;
}

.info-section h2,
.sns-section h2 {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: #bbbbbb;
}

.info-card {
  background: #1c1c1c;
  padding: 40px;
  border-radius: 14px;
}

.info-card p + p {
  margin-top: 16px;
}

/* =========================
   SNS
========================= */

.sns-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sns-links a {
  border: 1px solid #666;
  padding: 12px 24px;
  border-radius: 999px;
  transition: 0.3s;
}

.sns-links a:hover {
  background: #fff;
  color: #111;
}

/* =========================
   Footer
========================= */

.footer {
  border-top: 1px solid #333;
  padding: 30px 0;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {

  .header {
    padding-top: 20px;
  }

  .nav ul {
    gap: 14px;
  }

  .hero-copy {
    margin-top: 120px;
  }

  .info-card {
    padding: 28px;
  }

}
/* =========================
   Films Page
========================= */

.page-header {
  padding: 140px 0 60px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.08em;
}

.films-page {
  padding-bottom: 100px;
}

.film-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;

  background: #1a1a1a;
  border: 1px solid #2f2f2f;
  border-radius: 18px;

  padding: 32px;

  margin-bottom: 48px;
}

.film-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.copyright {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #888;
}

.film-title {
  font-size: 2rem;
  margin-bottom: 18px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.film-info {
  color: #bbbbbb;
  margin-bottom: 20px;
}

.film-caption {
  margin-bottom: 24px;
  line-height: 1.9;
}

.film-description {
  color: #dddddd;
  line-height: 2;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

  .film-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .film-title {
    font-size: 1.6rem;
  }

}
/* =========================
   Guest Page
========================= */

.guest-page {
  padding-bottom: 100px;
}

.guest-card {
  background: #1a1a1a;
  border: 1px solid #2f2f2f;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 48px;
}

.guest-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.guest-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.guest-name-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.guest-ruby {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

.guest-name {
  font-size: 2rem;
  line-height: 1.4;
}

.guest-comment {
  margin-top: 30px;
  line-height: 2;
}

.guest-divider {
  margin: 28px 0;
  border-top: 1px solid #333;
}

.guest-profile {
  color: #cccccc;
  line-height: 2;
  text-align: justify;
  word-break: normal;
  overflow-wrap: break-word;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {

  .guest-top {
    grid-template-columns: 1fr;
  }

  .guest-name {
    font-size: 1.6rem;
  }

}