@charset "UTF-8";

/* ボタン表示・線 */
#blog_type03 + div .content_wrapper .mymore {
    position: relative;
    margin-top: 10px;
    display: block !important;
    visibility: visible !important;
}

#blog_type03 + div .content_wrapper .mymore:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--i_border_color);
    position: absolute;
    top: 50%;
    left: 0;
}

/* ボタンラベル */
#blog_type03 + div .content_wrapper .mymore a {
padding: 3px 5px !important;
    background: var(--i_btn_color);
    color: var(--i_btn_txt_color);
    width: 180px !important;
    display: block;
    margin: 0 auto;
    z-index: 99999;
    position: relative;
}

#blog_type03 + div .content_wrapper .mymore a:after {
    content: '続きを見る';
}

/* 開いた状態 */
#blog_type03 + div .content_wrapper .mymore.open a:after {
    content: '閉じる';
}

#blog_type03 + div .content_wrapper .myhide {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.8s ease;
}