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

.contact-card {
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 16px;
  margin-bottom: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(247, 200, 220, 0.1);
  border-radius: 50%;
  color: var(--color-primary-text);
  font-size: 24px;
}

.contact-info h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.contact-info .subtitle {
  font-size: 14px;
  color: #6b7280;
}

.contact-description {
  margin-top: 12px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  white-space: pre-line;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--color-primary);
  color: var(--color-foreground);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.15s;
}

.contact-email-link:hover {
  background-color: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}

/* FAQ */
.faq-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.faq-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-gray);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item .question {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-primary-text);
  margin-bottom: 8px;
}

.faq-item .answer {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

/* 対応時間 */
.response-time {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: rgba(165, 214, 217, 0.1);
  border: 1px solid rgba(165, 214, 217, 0.3);
  border-radius: 12px;
  margin-bottom: 24px;
}

.response-time-icon {
  color: var(--color-secondary);
  font-size: 20px;
  flex-shrink: 0;
}

.response-time h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.response-time p {
  font-size: 13px;
  color: #374151;
}

/* 不具合報告 */
.bug-report h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.bug-report .description {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 12px;
}

.bug-report ul {
  list-style: disc;
  padding-left: 32px;
  font-size: 14px;
  color: #374151;
}

.bug-report ul li {
  margin-top: 4px;
}
