@charset "utf-8";
/* CSS Document */

.fuji-letter-intro{
    line-height: 2em;
    margin-top: 25px;
}

#fuji-letter{
    margin-top: 80px;
}

ul.letter-grid {
    display: grid;
    gap: clamp(24px, 5vw, 40px);
    grid-template-columns: repeat(3, 1fr);
}

ul.letter-grid li a {
    color: #000000;
    text-decoration: none;
}

ul.letter-grid li a:hover{
    opacity: 0.7;
}

ul.letter-grid li figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: bottom;
}

.letter-grid-card .info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:16px 0 8px 0 ;
}

.letter-grid-card .info p{
    margin: 0;
    font-size: 12px;
}

.letter-grid-card .info .vol-num{
    padding: 4px 16px;
    background: #0F368E;
    color: #ffffff;
}

ul.letter-grid li .date{
    color: #0F368E;
}

ul.letter-grid li h3 {
    margin-block:0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    margin-top: 40px;
    padding: 0;
}
.pagination a {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-radius: 1px;
    background-color: #f2f2f2;
    color: #0F368E;
}
.pagination a:not(:hover) {
    text-decoration: none;
}
.pagination .current a {
    background-color: #0F368E;
    color: #fff;
    pointer-events: none;
}


