/* ==============================
   全体
============================== */

body {
    font-family: "Yu Gothic", sans-serif;
    background: #f8f9fb;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 30px;
}

/* ==============================
   タイトル
============================== */

h1 {
    border-left: 8px solid #ff8c42;
    padding-left: 15px;
    margin-bottom: 15px;
}

.lead {
    color: #666;
    margin-bottom: 25px;
}

/* ==============================
   ページャー
============================== */

.navigation-top,
.navigation-bottom {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

.navigation-top a,
.navigation-bottom a {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    background: white;
    border: 1px solid #ddd;
    color: #333;
    transition: 0.2s;
}

.navigation-top a:hover,
.navigation-bottom a:hover {
    background: #ff8c42;
    color: white;
}

/* ==============================
   テーブル
============================== */

.illustration-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

.illustration-table th {
    background: #f0f3f8;
    padding: 12px;
    text-align: left;
}

.illustration-table td {
    border-top: 1px solid #eee;
    padding: 12px;
    vertical-align: middle;
}

.illustration-table tr:hover {
    background: #fafcff;
}

/* ==============================
   サムネール
============================== */

.illustration-table img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    transition: .2s;
}

.illustration-table img:hover {
    transform: scale(1.05);
}

/* ==============================
   タイトルリンク
============================== */

.illustration-table td a {
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
}

.illustration-table td a:hover {
    text-decoration: underline;
}

/* ==============================
   フッター
============================== */

.site-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
    color: #777;
}

.site-footer a {
    color: #0066cc;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}
