@charset "UTF-8";
/* CSS Document */

/*
Theme Name: original
*/

.sec_send .block{
    display: block !important;
}

.sec_send .inner{
    width: 100% !important;
}

.send_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.send_item a {
    display: inline-block;
    padding: 8px 14px;
    background: #f2f2f2;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.send_item a:hover {
    background: #e0e0e0;
}


/* 外側の余白 */
.pager {
    margin: 40px 0;
}

/* WP の pagination を中央寄せに */
.pager .pagination {
    display: flex;
    justify-content: center;
}

/* nav-links の並び */
.pager .nav-links {
    display: flex;
    gap: 10px;
}

/* 各ページ番号の基本デザイン */
.pager .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

/* hover */
.pager .page-numbers:hover {
    background: #e0e0e0;
}

/* カレントページ */
.pager .page-numbers.current {
    background: #333;
    color: #fff;
    font-weight: bold;
}

/* 前へ・次へ（< > ） */
.pager .page-numbers.prev,
.pager .page-numbers.next {
    font-size: 16px;
}


.sec_send,
.pager{
    padding-top: 50px;
}
.ul_month{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.ul_month li{
    width: 25% !important;
    box-sizing: border-box;
    list-style-type: disc;
}

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

.ul_month li{
    width: 48% !important;
}
}

.entry_content ul,
.entry_content ol{
    margin-left: 1em;
}

.entry_content ul li{
    list-style-type: disc;

}
.entry_content ol li{
    list-style-type:decimal;

}