/* --- Aboutページ 専用スタイル --- */

/* --- 1. 理念・哲学セクション --- */
.about-section {
  padding: 80px 20px;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h1 {
  font-family: 'Anton', sans-serif;
  font-size: 5rem;
  color: #FFD700;
  margin: 0 0 40px 0;
  letter-spacing: 3px;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 2.2;
  margin-bottom: 30px;
}

.about-content p strong {
  color: #FFD700;
  font-weight: bold;
}


/* --- 2. インタビュー依頼セクション --- */
.cta-section {
  background-color: #1e1e1e;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #FFD700;
  margin: 0 0 20px 0;
}

.cta-section p {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFD700;
  color: #121212;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 15px 30px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button .fab {
  font-size: 1.5rem;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #fff;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 3.5rem;
  }
  .cta-section h2 {
    font-size: 2.5rem;
  }
}