/* =========================================================
   About ページ固有スタイル
   ========================================================= */

/* 全体レイアウト */
.profile-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background-color: #f8f9fa; /* 落ち着いたグレー背景 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* わずかな立体感 */
}

/* タイトル */
.page-title {
  font-family: "Playwrite US Modern", cursive;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: #333;
}

/* 定義リストの見た目調整 */
dl {
  margin: 0;
}

dt {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

dd {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

/* SNSアイコン */
#icon {
  width: 35px;
  height: 35px;
  object-fit: cover;
  vertical-align: middle;
}

/* バナー画像 */
#banner {
  max-width: 200px;
  height: auto;
  border-radius: 0.25rem;
}

/* リンク色 */
.link_blue {
  color: #00abd9;
  text-decoration: none;
}

.link_blue:hover {
  text-decoration: underline;
}

/* =========================================================
   レスポンシブ対応
   ========================================================= */
@media (max-width: 768px) {
  .profile-container {
    padding: 2rem 1.2rem;
  }

  dt {
    margin-top: 0.5rem;
  }
}