@charset "utf-8";

/* ページネーション見た目 */

.pagination{
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
}

.pagination li{
    margin: 0.5rem;
    /* border: 3px solid #1E0405; */
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a{
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    color: #1E0405;
    padding: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.pagination a:hover{
    background-color: #1E0405;
    color: #fff;
}

/* 現在どの番号のページに自分がいるのか位置を特定しやすくする設定 */
.active{
    background-color: #ad976e;
    border-radius: 50%;
}

.active a{
    color: #fff;
}

/* ハンバーガーメニューの円の色（.active）の差別化 */
.openbtn{
background-color: transparent;
}

@media screen and (max-width:480px){

    .pagination a{
        font-size: 1.4rem;
    }
}