/* =========================
   Apple Inspired Minimal
   ========================= */

/* 全体 */
body{
    background:#fafafa;
    color:#1d1d1f;
    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Yu Gothic",
    sans-serif;
    line-height:2;
}

/* 記事 */
.entry{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:
    0 2px 20px rgba(0,0,0,.04);
}

/* 本文 */
.entry-content{
    font-size:18px;
}

.entry-content p{
    margin:1.8em 0;
}

/* H2 */
.entry-content h2{
    font-size:2em;
    font-weight:700;
    border:none;
    background:none;
    color:#1d1d1f;
    margin-top:70px;
    margin-bottom:25px;
    padding:0;
}

/* H3 */
.entry-content h3{
    font-size:1.35em;
    font-weight:600;
    border:none;
    margin-top:45px;
    margin-bottom:15px;
    padding:0;
    color:#1d1d1f;
}

/* リンク */
a{
    color:#0066cc;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

/* リスト */
.entry-content ul,
.entry-content ol{
    background:none;
    padding-left:25px;
}

/* 引用 */
blockquote{
    background:#f5f5f7;
    border:none;
    border-radius:18px;
    padding:25px;
    color:#555;
}

/* コード */
pre{
    background:#f5f5f7;
    color:#1d1d1f;
    border-radius:18px;
    padding:20px;
    overflow:auto;
}

code{
    background:#f0f0f0;
    padding:3px 6px;
    border-radius:6px;
}

/* テーブル */
table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
}

th{
    background:#f5f5f7;
    color:#1d1d1f;
}

th,td{
    border-bottom:1px solid #e5e5e5;
    padding:14px;
}

/* 画像 */
.entry-content img{
    border-radius:24px;
    box-shadow:
    0 4px 20px rgba(0,0,0,.08);
}

/* サイドバー */
#box2 .hatena-module{
    background:#fff;
    border-radius:20px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:
    0 2px 15px rgba(0,0,0,.04);
}

/* ボタン */
.apple-btn{
    display:inline-block;
    background:#0071e3;
    color:white !important;
    padding:12px 26px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
}

.apple-btn:hover{
    opacity:.85;
}

/* スマホ */
@media screen and (max-width:768px){

.entry{
    padding:20px;
}

.entry-content{
    font-size:16px;
}

.entry-content h2{
    font-size:1.6em;
}

}