/* ========== About セクション ========== */

.about-section {
  padding: 80px 20px;
  background-color: var(--color-bg);
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: var(--color-text);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-text {
  flex: 1 1 55%;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.about-highlight {
  background-color: var(--color-accent);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 1.5rem;
}

/* SP対応 */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 24px;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
  }
}
