body {
  background-color: #202a3b;
  font-family: 'Noto Serif JP', serif;
  color: #000;
  margin: 0;
  padding: 0;
}

/* 白枠コンテナ */
.about-container {
  background-color: #fff;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* ページタイトル */
.about-container h1 {
  text-align: center;
  font-size: 2.4em;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 0.05em;
}

/* セクション全体 */
.about-section {
  margin-bottom: 40px;
}

/* セクション見出し＋ライン */
.about-section h2 {
  font-size: 1.3em;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  color: #222;
}

/* 箇条書き */
.about-section ul {
  padding-left: 20px;
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.about-section li {
  margin-bottom: 8px;
}

/* 説明文・プロフィール・リンク注意文 */
.about-section p {
  line-height: 1.8;
  color: #444;
}

@media screen and (max-width: 600px) {
  .about-container {
    padding: 30px 20px;
    margin: 0;
    border-radius: 0;
  }
}