/* お問い合わせページ */

.contact-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #0066cc;
  padding-bottom: 0.5rem;
}

.contact-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* 連絡方法セクション */
.contact-method {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.method-icon {
  font-size: 1.8rem;
}

.method-content {
  margin-top: 1rem;
}

.method-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* お題箱ボタン */
.method-link {
  display: flex;
  justify-content: center;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-contact.odaibako {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.btn-contact.odaibako:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-icon {
  font-size: 1.3rem;
}

.btn-arrow {
  font-size: 1.2rem;
  margin-left: 0.3rem;
}

/* メールアドレス */
.method-email {
  text-align: center;
}

.email-address {
  background: #f5f5f5;
  border: 2px dashed #999;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 0.5rem;
}

.email-address code {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  font-family: 'Courier New', monospace;
}

.email-note {
  font-size: 0.9rem;
  color: #666;
}

/* 迷ったら */
.contact-tip {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.contact-tip p {
  margin: 0;
  color: #1976d2;
}

/* 注意事項 */
.contact-notes {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-notes h2 {
  font-size: 1.2rem;
  color: #856404;
  margin-bottom: 1rem;
}

.notes-list {
  margin: 0;
  padding-left: 1.5rem;
  color: #856404;
  line-height: 1.8;
}

.notes-list li {
  margin-bottom: 0.5rem;
}

/* テンプレート */
.contact-template {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-template h2 {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 1rem;
}

.template-box {
  background: #fff;
  border-radius: 4px;
  padding: 1.5rem;
}

.template-list {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  line-height: 2;
}

.template-list li {
  margin-bottom: 0.8rem;
  color: #495057;
}

.template-note {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}

/* 戻るリンク */
.contact-actions {
  text-align: center;
  margin-top: 3rem;
}

.back-link {
  display: inline-block;
  color: #0066cc;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #0066cc;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: #0066cc;
  color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .contact-page {
    padding: 1rem 0.5rem;
  }

  .contact-page h1 {
    font-size: 1.5rem;
  }

  .contact-method {
    padding: 1rem;
  }

  .contact-method h2 {
    font-size: 1.3rem;
  }

  .btn-contact {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .email-address code {
    font-size: 1rem;
    word-break: break-all;
  }
}
