body {
  font-family: "M PLUS Rounded 1c",
               "Yu Gothic",
               "Hiragino Kaku Gothic ProN",
               sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 30px;
  line-height: 1.8;
  color: #333333;
  background-color:  #fff7fa;
}

/* 名前（最上部） */
h1 {
  color: #b84c6a;
  border-bottom: 3px solid #d36c8a;
  padding-bottom: 10px;
}

/* セクション見出し */
h2 {
  color: #b84c6a;
  border-left: 6px solid #d36c8a;
  padding-left: 12px;
  margin-top: 50px;
}

/* リンク */
a {
  color: #d36c8a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 研究項目など */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* 画像 */
img {
  margin: 15px 0;
  border-radius: 6px;
}

/* フッター */
footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #f1cfd9;
  font-size: 0.9em;
  color: #777;
}
.social-links {
  display: flex;
  justify-content: flex-end; /* ← 右寄せ */
  gap: 12px;                /* アイコン間の余白 */
  margin-top: 0px;
}


.social-links a {
  display: inline-block;
  margin-right: 14px;
}

.social-links img {
  width: 26px;
  height: 26px;
  filter: invert(52%) sepia(28%) saturate(900%) hue-rotate(310deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ホバー時：少し濃く＆ふわっと */
.social-links a:hover img {
  opacity: 0.75;
  transform: translateY(-2px);
}
