.post_content figure {
    margin-top: 24px;
    display: block;
}
.post_content figure img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}
.post_content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    border-left: 3px solid var(--primary);
    padding-inline: 12px 0;
} 
.post_content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.post_content h3::before {
    content: "";
    background: var(--primary);
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 4px;
    flex: 0 0 auto;
}
.post_content p {
    margin-top: 16px;
    line-height: 2;
    font-size: 14px;
}
.post_content ul, .post_content ol {
    margin-top: 24px;
    padding-left:14px;
}
.post_content li {
    list-style: disc;
    margin-top: 8px;
}
.post_content a {
    color: var(--primary);
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .post_content a:hover {
        text-decoration: decimal;
    }
}
.post_content blockquote {
    background: var(--dark-000);
    padding-inline: 20px;
    padding-block: 28px;
    margin-top: 24px;
    border-radius: 8px;
    position: relative;
}
.post_content blockquote::before {
    content: "";
    background: url(../img/post/icon_quarto.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    opacity: 0.3;
    z-index: 1;
}
.post_content blockquote p {
    margin-top: 0;
    position: relative;
    z-index: 2;
}
.post_content blockquote cite {
    margin-top: 16px;
    font-size: 14px;
    text-align: right;
}
/* ----- 再利用ブロック ----- */
.post_content .post_cta {
    background: var(--blue50);
    border-radius: 8px;
    padding-inline: 40px;
    padding-block: 24px;
    margin-top: 40px;
    align-items: center!important;
}
.post_content .post_cta .wp-block-button {
    width: 100%;
}
.post_content .post_cta .wp-element-button {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: var(--primary);
    border-radius: 6px;
    display: block;
    margin-top: 16px;
    transition-duration: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .post_content .post_cta .wp-element-button:hover {
        background: var(--primary-deep);
    }
}
.post_content .post_cta ul {
    padding: 0;
    margin-top: 12px;
}
.post_content .post_cta ul li {
    font-size: 14px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.post_content .post_cta ul li::before {
    content: "";
    background: url(../img/post/icon_check.svg);
    background-repeat: none;
    background-size: cover;
    width: 12px;
    height: 8px;
    display: block;
    margin-right: 8px;
}
.post_content .post_cta .wp-block-heading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
}
.post_content .post_cta .wp-block-heading::before {
    content: none;
}
.post_content .post_cta .has-small-font-size {
    font-size: 12px;
    line-height: 1.3;
}
.post_content .post_cta p {
    margin-top: 20px;
}
/* 監修者情報 */
.reviewd_photo {
    width: calc( ( 110 / 680 ) * 100% );
}
.reviewd {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.post_content .reviewd_name {
    margin-top: 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
}
.post_content .reviewd_name span {
    font-size: 16px;
    font-weight: 600;
    margin-right: 6px;
    display: inline-block;
    line-height: 1.45;
}
.post_content .reviewd_desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
}
.post_content .reviewd_affiliation {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
}
.reviewd {
    border: 1px solid var(--dark-000);
    padding-inline: 16px;
    padding-block: 20px;
    border-radius: 6px;
}
/* ページネーション */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.nav-links .current {
    color: #ffff;
    background: var(--primary);
}
.page-numbers {
    color: var(--primary);
    display: block;
    border: 1px solid var(--primary);
    width: 28px;
    height: 28px;
    padding-block: 4px;
    text-align: center;
    border-radius: 6px;
    transition-duration: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .page-numbers:hover {
        color: #ffff;
        background: var(--primary);
    }
}
.nav-links .next {
    position: relative;
    display: inline-block;
    padding: 10px;
}
.nav-links .next::before {
content: '';
width: 8px;
height: 8px;
border-top: solid 1px var(--primary);
border-right: solid 1px var(--primary);
position: absolute;
left: 6.5px;
top: 8.5px;
transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
    .nav-links .next:hover::before,
    .nav-links .prev:hover::before  {
        border-top: solid 1px #fff;
        border-right: solid 1px #fff;
    }
}
.nav-links .prev {
    position: relative;
    display: inline-block;
    padding: 10px;
}
.nav-links .prev::before {
content: '';
width: 8px;
height: 8px;
border-top: solid 1px var(--primary);
border-right: solid 1px var(--primary);
position: absolute;
left: 10.5px;
top: 8.5px;
transform: rotate(-135deg);
}
.bottom-fixd-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding-block: 12px;
}
.bottom-fixd-nav .btn {
    font-size: 16px;
    color: #fff;
    background:var(--primary);
    display: block;
    width: 320px;
    text-align: center;
    border-radius: 8px;
    padding-inline: 16px;
    padding-block: 12px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .post {
        margin-top: 32px;
    }
    .post_wrapper {
        display: block;
    }
    .post_container {
        width: 100%;
    }
    .post_page-nav {
        display: block;
    }
    .post_page-nav_item {
        width: 100%;
        margin-top: 16px;
    }
    .post-sidebar {
        width: 100%;
        margin-bottom: 80px;
    }
    .post_content h2 {
        font-size: 20px;
    } 
    .post_content h3 {
        font-size: 18px;
    } 
    .post_content h4 {
        font-size: 16px;
    } 
}

