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

/*
Theme Name: original
*/


.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;
}




/* h2 */
.wp_box h2 {
    font-size: 1.6rem;
    padding: 0.6em 0.8em;
    border-left: 6px solid var(--c_main);
    background: #f7f7f7;
    margin: 2em 0 1em;
    font-weight: bold;
}

/* h3 */
.wp_box h3 {
    font-size: 1.4rem;
    padding-bottom: .3em;
    border-bottom: 2px solid var(--c_main);
    margin: 2em 0 1em;
    font-weight: bold;
}

/* h4（必要に応じて） */
.wp_box h4 {
    font-size: 1.2rem;
    margin: 1.6em 0 1em;
    padding-left: 1em;
    border-left: 3px solid var(--c_main);
    font-weight: bold;
}

/* ------------------------------
   リスト（ul / ol）
------------------------------ */

/* ul の基本 */
.wp_box ul {
    margin: 1em 0 1.5em;
    padding-left: 1.4em;
}

.wp_box ul li {
    margin-bottom: .5em;
    position: relative;
}

/* ul のドット（カスタム） */
.wp_box ul li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--c_main);
    border-radius: 50%;
    position: absolute;
    left: -1.2em;
    top: .6em;
}

/* ol の基本 */
.wp_box ol {
    margin: 1em 0 1.5em;
    padding-left: 1.6em;
}

.wp_box ol li {
    margin-bottom: .6em;
}

/* ol の数字スタイル */
.wp_box ol {
    counter-reset: num;
}

.wp_box ol li {
    counter-increment: num;
    position: relative;
}

.wp_box ol li::before {
    content: counter(num) ".";
    position: absolute;
    left: -1.4em;
    color: var(--c_main);
    font-weight: bold;
}