/* Movie Page Styles */
.movie-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Video Section */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-video-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
}

/* Main Container */
.movie-container {
  max-width: var(--container-width-standard);
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
}

/* Intro Section */
.movie-intro {
  text-align: center;
  margin-bottom: 4rem;
}

/* About Section - 2 Columns */
.movie-about {
  margin-bottom: 4rem;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-text {
  padding: 1rem 0;
}

.about-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 2;
  margin: 0 0 1.5rem 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Button Wrapper */
.button-wrapper {
  text-align: center;
  margin: 4rem 0;
}

.results-button {
  background-color: var(--color-button-primary);
  color: #666;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
}

.results-button:hover {
  background-color: var(--color-button-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Features Box */
.movie-features {
  margin-bottom: 5rem;
}

.features-box {
  border: 2px solid #ccc;
  padding: 3rem 4rem;
  border-radius: 0;
  background-color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.feature-category {
  padding: 0;
  padding-left: 1.2rem;
  border-left: 2px solid #333;
}

.category-title {
  font-size: 1.3rem;
  font-weight: normal;
  color: #333;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.features-list li {
  font-size: 1rem;
  color: #555;
  line-height: 2;
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.features-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

.category-note {
  font-size: 0.9rem;
  color: #666;
  margin: 0.3rem 0;
  line-height: 1.6;
}

/* Filming Area Section */
.filming-area-section {
  margin-top: 4rem;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}

.area-badge {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #ee8176;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 auto 2rem;
}

.area-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: #333;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.area-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Flow Section */
.movie-flow {
  margin-bottom: 5rem;
}

.movie-flow .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Results Section */
.movie-results {
  margin-bottom: 4rem;
}

.movie-results .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.results-content {
  text-align: center;
  padding: 3rem;
  background-color: #f5f5f5;
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-content p {
  font-size: 1.1rem;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-video-container {
    height: 50vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .movie-container {
    padding: 3rem 1rem;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .results-button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .features-box {
    padding: 2rem 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-title {
    font-size: 1.2rem;
  }

  .features-list li {
    font-size: 0.95rem;
    line-height: 2;
  }

  .category-note {
    font-size: 0.85rem;
  }

  .area-badge {
    width: 70px;
    height: 70px;
    font-size: 0.9rem;
  }

  .area-title {
    font-size: 1.2rem;
  }

  .area-description {
    font-size: 0.95rem;
  }

  /* ステップの2個目の画像を非表示 */
  .movie-flow .step-flow-image {
    display: none;
  }
}
