/* css/page-index.css - トップページ専用のスタイル */

/* --- プロフィールカードのデザイン --- */
.profile-card {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-card h1 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 2.5em;
  color: #333;
}

.profile-card h3 {
  margin-top: 5px;
  font-size: 1.5em;
  color: #851530;
  font-weight: normal;
}

.profile-card p {
  margin-top: 20px;
  font-size: 1.1em;
  color: #555;
}