html, body, div, header, nav, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12pt;
    font-style: normal;
    line-height: 140%;
    background-color: #FFFFFF;
    color: #333333;
    width: 100%;
}

#container {
    width: 75%;
    border: solid 1px;
    box-shadow: 0.5em 0.5em 0.5em 0 #696969;
    padding: 1em;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    text-align: center;
    display: flex;
    flex-direction: column;
}
p{
    text-align: left;
    margin: 1em 0em 1.5em 3em;
}
.issue-table {
    width: 80%;              /* containerに対して80%幅 */
    margin: 0 auto;          /* 中央寄せ */
    border-collapse: collapse;
    table-layout: fixed;     /* colgroupの比率を安定させる */
}

.issue-table td {
    padding: 0px 1px;
    text-align: left;        /* セル内は左寄せ */
    color: #000000; /* 常に黒文字 */
    vertical-align: top;
}

/* 列の比率 3:7 */
.issue-table .col-issue { width: 30%; }
.issue-table .col-title { width: 70%; }

/* 奇数行 */
.issue-table tr:nth-child(odd) {
    background-color: #CCCCCC;
}

/* 偶数行 */
.issue-table tr:nth-child(even) {
    background-color: #FFFFFF;
}

h1 {/*見出し（著者紹介）*/
    text-align: right;
}
h2 {/*冒頭著者名*/
    margin-top: 0;
    margin-bottom: 2em;
    text-align: center;
}

a {
    text-decoration: none;
}

a:link {
    color: #0000FF;
}

a:visited {
    color: #c5004c;
}

a:active {
    color: #FF0000;
}
