body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    background-color: black;
    color: #f8f7f1;
    text-align: center;
}

#top {
    display: grid;
    align-items: center;
    margin: 0;
}

.topimg, .logo {
    grid-column: 1; /* gridの列を設定 */
    grid-row: 1; /* gridの行を設定 */
}

hr {
    width: 60%;
}

ul {
    list-style: none; /* ulの点を消す */
    padding-left: 0em; /* 中央寄せのために冒頭の余白を消す */
    margin: 30px;
    font-size: 14px;
}

.nav li {
    display: inline; /*横並び*/
    margin-left: 20px; /*liの間の余白を80pxに*/
    margin-right: 20px;
}

.container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

a {
    text-decoration: none; /* 下線を消す */
    color: inherit; /* テキスト色を親要素から継承 */
}

.contentbox {
    margin: 10px;
    width: 350px;
    height: 230px;
    padding: 20px;
    position: relative;
    display: inline-block;
    box-shadow: 3px 3px 5px 0 rgb(161, 161, 161);
    border-radius: 5px;
    transition: 0.3s;
    background-color: #f8f7f1;
    color: black;
    letter-spacing: 1px;
    text-indent: 1px;
}

.contentbox img {
    width: 80px;
    border-radius: 50%;
}

.contentbox h5 {
    margin: 5px;
}

.contentbox hr {
    border: none; /* デフォルトの枠をリセット */
    height: 1px; /* 太さを指定 */
    background-color: #999; /* 線の色 */
    margin: 10px auto; /* 位置の調整 */
}

.contentbox p {
    font-size: 10px;
}

.date {
    color: gray;
}

.content {
    margin: auto 5%;
    text-align: justify;

}

.contentbox:hover {
    scale: 0.97;
    box-shadow: none;
}

form {
    margin: 50px 0;
}

form p {
    font-size: 12px;
    letter-spacing: 1px;
    text-indent: 1px;
    line-height: 2em;
}

table {
    margin: 30px auto;
    font-size: 12px;
}

.item {
    padding: 15px 8px 15px 0;
}

input {
    height: 30px;
    color: #333;
    background-color: #F8F7F1;
    border-radius: 5px;
    font-size: 12px;
    border: none;
}

#btn_login {
    margin: 20px 0 20px 0;
    width: 150px;
    padding: 8px 0;
    border-radius: 20px;
    font-size: 12px;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    background-color: #c74838;
    color: white;
}

#signup {
    font-size: 12px;
    color: #f8f7f1;
}

footer {
    background-color: #242424;
    margin-top: 50px;
    height: auto;
    padding: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    font-size: 10px;
}