/* ===== サービス紹介ページ共通スタイル ===== */

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.about-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
}

.about-text ul {
  padding-left: 1.2rem;
  list-style-type: disc;
  margin-bottom: 1rem;
}

.about-text a {
  color: #00bcd4;
  text-decoration: underline;
}

.about-text a:hover {
  text-decoration: none;
}

.profile-img {
  width: 280px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

/* タイトルをより目立たせる */
.welcome-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #111;
  text-align: center;
}

.welcome-text {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}

.site-main.container {
  padding: 2rem 1.5rem; /* 上下2rem 左右1.5rem */
}