/* ===========================
   全体
=========================== */
body {
    line-height: 1.8;
}

/* ===========================
   画像
=========================== */
img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

/* ===========================
   文章
=========================== */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li {
    text-align: left;
}

/* ===========================
   テーブル
=========================== */
table {
    margin: 20px auto;
    border-collapse: collapse;
    border-spacing: 0;
}

table th,
table td {
    padding: 10px 16px;
    text-align: left;
    vertical-align: top;
    border: none;
    border-bottom: 1px solid #cccccc;
}

/* 見出し */
table th {
    font-weight: bold;
    white-space: nowrap;
}

/* 最終行の下線を消したくない場合はコメントアウトしてください */
/*
table tr:last-child th,
table tr:last-child td {
    border-bottom: none;
}
*/