@charset "UTF-8";

body{
    color:#949087;
    background:#faf6ed url(../images/bg.png);
    
}
/* header
----------------------- */
header{
    max-width:1000px;
    margin:2.5rem auto 0;
    background:url(../images/header.svg)
        no-repeat center top/cover;
    height:170px;
}
.title{
    font-family: 'Amatic SC', cursive;
    font-size:3.5rem;
    font-weight:normal;
}
.header{
    text-align:center;
    padding-top: 20px;
}
.header-p{
    margin-top:20px;
}

/* contents
------------------------- */
.contents{
    display:flex;
    justify-content:space-between;
    margin-bottom: 50px;
    padding:1.5rem;
    background-color:#fff;
}
p{
    line-height:1.6rem;
}
/* メイン */
article{
    width:74%;
}
h2{
    margin:0;
}
.post-home{
    margin-bottom:3rem;
}
.post-title{
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(179, 179, 179, 1) 3px, rgba(179, 179, 179, 1) 6px );
    padding-bottom: 10px;
    margin-bottom:1.5rem;
}
.contents h2{
    padding:0.5rem .875rem;
    background-color:#fff;
}
article img{
    max-width:100%;
    border-radius: 50px;
}
.post-image{
    position:relative;
    padding-top:4px;
    margin-bottom:40px;
}
.post-img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:40% 70% 50% 30%/50%;
}
.post-date{
    background:lightseagreen;
    border-radius:50%;
    color:#fff;
    width:100px;
    height:100px;
    font-size:2.3rem;
    text-align:center;
    position:absolute;
    top:0;
    padding-top:10px;
    font-family: 'Amatic SC', cursive;
    margin:0;
}

.post-date span{
    font-size:1.6rem;
    border-bottom:1px solid;
    padding-bottom:6px;
    display:block;
    width:60%;
    margin:0 auto;
    margin-bottom:15px;
}
.btn{
    text-align:right;
}
.btn a{
    background: #eda1a1;
    padding:10px 20px;
    border-radius:5px;
    text-decoration: none;
    display:inline-block;
    box-shadow:0 0 0 5px #eda1a1;
    border:2px dashed #e38787;
    color:#fff;
}

.pagination{
    display:flex;
    list-style:none;
    justify-content:center;
    font-size:1.5rem;
}
.pagination .current{
    background:#ccc;
    color:#fff;
}
.current{
    margin:0 6px;
}

/* サイド */
aside{
    width:22%;
}