body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

header {
     background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("header.jpg");

    background-size: cover;
    background-position: center;

    height: 350px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-weight: bold;
    margin-top: 24px;
    list-style: none;
}

.header-list a {
    color: white;
    text-decoration: none;
}

main {
    max-width: 1000px;
    margin: auto;
    padding: 30px;
    list-style: none;
}

section {
    margin-bottom: 60px;
}

h2 {
    border-bottom: 3px solid #1f4e79;
    padding-bottom: 10px;
}

.research-card {
    background-color: #f5f5f5;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
}

.container {
  display: flex; /* 横並びにする */
  align-items: center; /* 垂直方向の中央に合わせる */
}

.container img {
  width: 150px; /* 画像の幅を指定 */
  height: auto;
}

.container p {
  margin-left: 20px; /* 画像とテキストの間の余白 */
}

.hidelink{
    text-decoration: none;
    color:white;
}

.hidelink:hover{
    text-decoration: underline;
    color:Red;
}

footer {
    display: flex;             /* 横並びにする */
    justify-content: space-around; /* 中央に配置する */
    align-items: top;       /* 縦方向の中央に揃える */
    padding: 20px;
    background-color: #333;
}

.footer-left {
    width: 48%;                /* それぞれの幅を約半分にする */
    color: white;
    list-style: none;
}

.footer-left a {
    text-align: left; 
    color: white;
    text-decoration: none;
}

.footer-right {
    width: 48%;                /* それぞれの幅を約半分にする */
    text-align: left; 
    color: white;
}