/* 全体の設定 */
body {
  font-family: 'メイリオ', sans-serif;
  background-color: #f0f7f0;
  color: #333;
  margin: 0;
  padding: 0;
}

/* 中央のボックス */
.container {
  max-width: 800px;
  margin: 60px auto;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* タイトル */
h1 {
  color: #3a7d44;
  font-size: 28px;
  border-bottom: 3px solid #3a7d44;
  padding-bottom: 10px;
}

/* 本文 */
p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* セクション */
.section {
  margin-top: 40px;
}

h2 {
  color: #3a7d44;
  font-size: 22px;
  border-left: 5px solid #3a7d44;
  padding-left: 10px;
  margin-bottom: 16px;
}

/* サービスリスト */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  background-color: #f0f7f0;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 10px;
  font-size: 15px;
}

/* プロフィール画像 */
.profile-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #3a7d44;
  flex-shrink: 0;
}

/* 自己紹介の横並びレイアウト */
.profile-area {
  display: flex;
  align-items: center;
  gap: 24px;
}

.profile-text {
  flex: 1;
}

/* お問い合わせボタン */
.contact-button {
  display: inline-block;
  background-color: #3a7d44;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
}

.contact-button:hover {
  background-color: #2e6336;
}

/* セクション内の横長画像（共通） */
.section-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}