/*連載長編インデックス用*/

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: 90%;
    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: 0 1em 1em;
}

.series-table {
    width: 98%;              /* containerに対しての%幅 */
    margin: 0 auto;          /* 中央寄せ */
    border-collapse: collapse;
    table-layout: fixed;     /* colgroupの比率を安定させる */
}

/* --- ヘッダ部 --- */
.series-table thead th {
    background-color: #666666;
    color: #ffffff;
    text-align: center;
    padding: 2px;
    border: none;
    font-weight: 600;
    font-size: 14px;
}
/* --- データ部 --- */
.series-table tbody td {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 4px 8px;
    vertical-align: middle;
}

/* 各列の調整 */
.series-table .col-issue {
    width: 20%;
    text-align: center;
    white-space: nowrap;
}

.series-table .col-title {
    width: 60%;
}
.series-table thead .col-title {
    font-size: 18px;
}
.series-table tbody .col-title {
    text-align: left;
}

.series-table .col-link {
    width: 20%;
    text-align: center;
    line-height: 0.3;
}

/* 画像＋サイズの整列 */
.series-table .col-link img {
    display: block;
    margin: 0 auto;
    height: 16px;
    width: 16px;
    
}

.series-table .filesize {
    font-size: 0.9rem;
    color: #555;
    line-height: 1;
}

/* 行ホバーで読みやすく */
.series-table tbody tr:hover td {
    background-color: #f5f5f5;
}

/* クリック可能な行の見た目をわかりやすく */
.series-table tbody tr.is-clickable {
  cursor: pointer;
}

h1 {/*見出し（著者紹介）*/
    text-align: right;
}
h2 {/*冒頭作品名*/
    font-size: 24pt;
    margin-top: 0;
    margin-bottom: 0.5em;
    text-align: center;
    font-weight: 700;
}

h2.eng {/*冒頭英文作品名*/
    font-size: 12pt;
    margin-top: 0;
    margin-bottom: 2em;
    text-align: center;
}
h3 {/*著者名*/
    font-size: 18pt;
    margin-top: 0;
    margin-bottom: 1.5em;
    text-align: center;
}

a {
    text-decoration: none;
}

a:link {
    color: #0000FF;
}

a:visited {
    color: #c5004c;
}

a:active {
    color: #FF0000;
}


/* モバイル対応 */
@media screen and (max-width: 640px) {
    .series-table {
        font-size: 0.85rem;
    }
    .series-table thead {
        display: none;
    }
    .series-table tbody td {
        display: block;
        width: 100%;
        border: none;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }
    .series-table tbody tr {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        padding: 6px;
        display: block;
    }
    .series-table .col-link img {
        display: inline-block;
        vertical-align: middle;
    }
}