/* Cameraman Page Styles */
.cameraman-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ヒーローセクション */
.cameraman-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cameraman-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cameraman-hero-title {
  position: absolute;
  top: 60%;
  left: 25%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
               0 0 40px rgba(0, 0, 0, 1),
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 30px rgba(255, 255, 255, 0.4);
}

/* Main Container */
.cameraman-container {
  max-width: var(--container-width-standard);
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
}

/* Intro Section */
.cameraman-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.cameraman-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-text-primary);
  margin: 0 0 3rem 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* About Section - 2 Columns */
.cameraman-about {
  margin-bottom: 5rem;
}

.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-text p {
  font-size: 1rem;
  color: #555;
  line-height: 2;
  margin: 0 0 1.5rem 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Message Section */
.cameraman-message {
  text-align: center;
  margin-bottom: 5rem;
  padding: 3rem 0;
}

.large-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-text-primary);
  margin: 0 0 2rem 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.message-text {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 2;
  margin: 0 auto;
  max-width: 800px;
}

/* Features Section - Vertical 4 Items */
.cameraman-features {
  margin-bottom: 5rem;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

.feature-item {
  text-align: left;
  width: 100%;
}

.cameraman-features .feature-title {
  position: relative;  /* 追加：疑似要素の基準点 */
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-text-primary);
  margin: 0 0 2rem 0;
  padding-left: 20px;  /* ボーダー分の余白 */
  padding-bottom: 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.cameraman-features .feature-title::before {
  content: '';  /* 追加：必須 */
  position: absolute;  /* 追加：配置方法 */
  left: 0;  /* 追加：左端に配置 */
  top: 0.2rem;  /* 追加：上端 */
  width: 8px;  /* 追加：ボーダーの幅 */
  height: 60%;  /* 追加：高さ（テキストと同じ） */
  background-color: #bfbfbf;  /* border-leftの代わり */
}

.title-underline {
  width: 100%;
  height: var(--underline-height);
  background-color: var(--underline-color);
  margin-bottom: 1rem;
}

/* Application Section */
.cameraman-application {
  text-align: center;
  padding: 3rem 0;
}

.application-button {
  display: inline-block;
  padding: 1.5rem 4rem;
  background-color: var(--color-accent-pink);
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.application-button:hover {
  background-color: #c00070;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.application-note {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Gallery Slideshow - Full Width */
.cameraman-gallery {
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
  background-color: var(--color-bg-secondary);
}

.gallery-slider {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  animation: scroll 40s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  flex-shrink: 0;
  width: 12.5%; /* 100% / 8 = 12.5% (8 items visible) */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cameraman-hero-title {
    font-size: 2rem;
    left: 5%;
  }

  .cameraman-container {
    padding: 3rem 1rem;
  }

  .cameraman-section-title {
    font-size: 1.5rem;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .large-title {
    font-size: 1.8rem;
  }

  .message-text {
    font-size: 1rem;
  }

  .features-grid {
    gap: 2.5rem;
  }

  .application-button {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
  }

  .gallery-item {
    width: 25%; /* 100% / 4 = 25% (4 items visible on mobile) */
  }
}
