/* Cameraman Contact Page Styles */
.cameraman-contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ヒーローセクション */
.cameraman-contact-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cameraman-contact-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cameraman-contact-hero-title {
  position: absolute;
  top: 60%;
  left: 20%;
  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-contact-container {
  max-width: var(--container-width-standard);
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
}

/* Intro Section */
.cameraman-contact-intro {
  text-align: center;
  margin-bottom: 4rem;
}

/* Schedule Section */
.schedule-section {
  margin-bottom: 5rem;
  text-align: center;
}

.schedule-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
}

.title-underline {
  width: var(--underline-width);
  height: var(--underline-height);
  background-color: var(--underline-color);
  margin: 0 auto 3rem;
}

.schedule-image {
  margin-bottom: 2rem;
}

.schedule-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.schedule-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 2;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}

/* Notice Section */
.notice-section {
  margin-bottom: 4rem;
}

.notice-box {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 100%);
  border-left: 4px solid var(--color-accent-pink);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(228, 0, 127, 0.1);
}

.notice-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-accent-pink);
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
}

.notice-title::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--color-accent-pink);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  font-size: 0.95rem;
  color: #555;
  line-height: 2;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.notice-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-pink);
  font-weight: bold;
}

/* Form Section */
.form-section {
  margin-bottom: 3rem;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  padding: 3rem 0;
  border-radius: 12px;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.form-header-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.form-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-bg-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 400px;
}

.form-wrapper iframe {
  display: block;
  border: none;
}

/* Loading Animation */
.form-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 10;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--color-accent-pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-loading p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Form Support */
.form-support {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background-color: var(--color-bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
}

.support-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0 0 1rem 0;
}

.support-contact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.support-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: normal;
}

.support-value {
  font-size: 1rem;
  color: var(--color-text-primary);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cameraman-contact-hero-title {
    font-size: 1.8rem;
    left: 5%;
  }

  .cameraman-contact-container {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .schedule-title {
    font-size: 1.4rem;
  }

  .schedule-description {
    font-size: 0.95rem;
  }

  .notice-box {
    padding: 1.5rem;
  }

  .notice-title {
    font-size: 1.1rem;
  }

  .notice-list li {
    font-size: 0.9rem;
  }

  .form-header-title {
    font-size: 1.5rem;
  }

  .form-header-subtitle {
    font-size: 0.9rem;
  }

  .form-wrapper {
    border-radius: 8px;
  }

  .form-wrapper iframe {
    height: 2500px;
  }

  .support-contact {
    gap: 1.5rem;
  }
}
