/* 見出し */
.post_content>h2 {
    margin-right: 0;
    margin-left: 0;
}

.post_content h2 {
    font-size: var(--tunag-font-size-lg);
    margin-bottom: 40px;
}

.post_content h3 {
    font-size: var(--tunag-font-size-md);
}

/* ボタン */
.is-style-btn_line .swell-block-button__link {
    font-size: var(--tunag-font-size-base);
    text-align: center;
    width: min(280px, 100%);
    padding: 20px 40px 20px 20px;
    background-color: var(--tunag-color-secondary-white);
    position: relative;
}

.is-style-btn_line .swell-block-button__link::before {
    content: "";
    display: block;
    width: 8px;
    height: 16px;
    background-image: url(../img/chevron-right-bk.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 960px) {
    .is-style-btn_line .swell-block-button__link:hover:before {
        background-image: url(../img/chevron-right-wh.svg);
    }
}