/* 共通設定 */
ul{
  list-style: none;
}
body {
  margin: 0;
  font-family: "ヒラギノ明朝 ProN W6";
  background-color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
  background-color: #00bfff;
  text-align: center;
  padding: 20px 0;
}

header h1 {
  color: white;
  font-size: 3em;
  margin: 0;
  font-weight: bold;
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 10px 0 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: blue;
  font-size: 1.2em;
  font-weight: bold;
}

/* プロフィールページのメイン */
.profile-page {
  padding: 170px 0;
  text-align: center;
}

.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}


.image-section{
  display: flex;
  width: 20%;
  height: auto;
  flex-direction: column;

}

/* 経歴リスト */
.profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile p {
  display: flex;
  margin: auto;
}

li{
  line-height: 1.9;
}

/* フッター */
footer {
  background-color: #00bfff;
  text-align: center;
  padding: 20px;
}

footer p {
  margin: 0;
  color: yellow;
  font-weight: bold;
}
