@import url('https://fonts.googleapis.com/css?family=Alegreya|Andada');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: normal;
    box-sizing: border-box;
    transition: all .3s;
}

a {
    text-decoration: none;
    color: #888;
}

body {
    font-family: "Andada", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ 明朝", serif;
    text-align: justify;
}

body * {
    font-size: 12px;
}

header {
    text-align: center;
    padding: 10px 20px;
    background: rgba(239, 239, 239,0.9);
    position: fixed;
    width: 100%;
    z-index: 10;
}

header span.lnr {
    position: absolute;
    left: 20px;
    top: 12px;
    font-size: 20px !important;
}

h1 {
    font-size: 20px;
    font-family: 'Alegreya', serif;
    letter-spacing: 1px;
}

nav {
    padding: 8px 20px 18px;
    text-align: center;
    background:
        linear-gradient(-135deg, #efefef 4px, transparent 0) 0 4px,
        linear-gradient(135deg, #efefef 4px, #fff 0) 0 4px;
    background-color: #efefef;
    background-position: left bottom !important;
    background-repeat: repeat-x !important;
    background-size: 8px 8px;
    position: fixed;
    width: 100%;
    opacity: 0;
    top: 0;
    z-index: -10;
}

nav ul li {
    display: inline;
    font-size: 12px;
    margin-right: 5px;
}

nav ul li::after {
    content: '－';
    color: #888;
    font-size: 10px;
    margin-left: 8px;
}

nav ul li:last-child::after {
    display: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

article {
    position: relative;
    top: 100px;
    width: 75%;
    max-width: 400px;
    margin: 0 auto;
}

section {
    margin-bottom: 80px;
}

section h2 {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

section main h3 {
    font-weight: bold;
    position: relative;
    padding: 5px 5px 5px 42px;
    background: #efefef;
    margin: 40px 0 10px -30px;
    line-height: 1.3;
    z-index: -1;
}

section main h3::before {
    position: absolute;
    content: '';
    left: -2px;
    top: -2px;
    border: none;
    border-left: 40px solid #fff;
    border-bottom: 80px solid transparent;
    z-index: -2;
}

section p.date {
    padding: 3px 0;
    margin: 0 auto 25px;
    width: 100px;
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

section main img {
    max-width: 100%;
    padding: 4px;
    margin: 20px 0;
    box-shadow: 0 0 1px rgba(0,0,0,0.15);
}

section main p {
    margin-bottom: 15px;
}

section main a {
    border-bottom: 1px solid #efefef;
}

section main .foot {
    position: relative;
    margin: 20px 0 40px;
    padding-top: 10px;
    border-top: 1px dotted #efefef;
}

section main .foot p {
    position: absolute;
}

section main .foot a {
    border: none;
}

section main .foot .more {
    right: 0;
}

section main .foot .more a {
    padding: 5px 10px;
    background: #efefef;
}

section main .foot .more a:hover {
    background: #333;
    color: #fff;
}

section main .foot .social {
    left: 0;
}

section .social a .lnr {
    font-size: 16px;
    margin-right: 5px;
}

section .social a .lnr-smile:hover {
    color: #FFC057;
}

section .social a .lnr-heart:hover {
    color: #FC5185;
}

section .social a .lnr-bubble:hover {
    color: #333;
}

.pager {
    text-align: center;
    margin: -20px 0 50px;
}

.pager li {
    display: inline-block;
    margin-right: 25px;
}

.pager li:last-child {
    margin-right: 0;
}

.pager li .lnr {
    display: block;
    font-size: 20px;
    color: #333;
}

.pager li i {
    font-size: 10px;
    font-style: normal;
    letter-spacing: 2px;
}

.pager li.top {
    cursor: pointer;
}