/* style.css (最終確定版) */

/* サイト共通の基本設定 */
body {
    background-color: #fdf5e6 !important;
    color: black !important;
    font-family: serif !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* index.html の「百年」リンクのスタイル */
.site-title a {
    /* リンクの色を黒に設定 */
    color: black !important;
    /* リンクに下線はなし */
    text-decoration: none !important;
}

/* top.html のメニューリンクのスタイル */
.menu a {
    /* メニュー内のリンクの色は黒 */
    color: black !important;
    /* リンクに下線はなし */
    text-decoration: none !important;
    display: block !important;
    padding: 10px !important;
    margin-bottom: 5px !important;
    border-bottom: 1px solid #ddd !important;
}

/* その他の全てのリンク */
a:link, a:visited, a:hover, a:active {
    /* 万が一のために、全てのリンクの状態に対して下線をなしに設定 */
    text-decoration: none !important;
    color: black !important;
}

li {
  list-style: none;
}
