  .heading-type--02 {
    margin-top: 7rem;
    margin-bottom: 4rem;
    background: unset;
    color: unset;
    text-align: center;
    z-index: 2;
    position: relative;
}
.heading-type--02:after {
    display: none;
}
.note-list {
    margin-bottom: 4rem;
    z-index: 2;
    position: relative;
}
.note-list li {
    text-indent: 0;
    padding-left: 0;
    font-size: 1.6rem;
}



/* /////////////// */
/*    一覧画面    */
/* /////////////// */
.column_width {
    width: 118rem;
    max-width: 118rem;
    z-index: 2;
    position: relative;
}
.column_flex {
    display: flex;
    justify-content: space-between;
}
.column_leftblock {
    display: block;
    width: 100%;
}
.column_rightblock {
    display: block;
    width: 380px;
    margin-left: 50px;
    margin-bottom: 50px;
    display: none;
}

/* 記事一覧 */
#news {
    margin: 0 auto;
    padding: 0 0 100px;
}
.news_contanier {
	margin-right: auto;
	margin-left: auto;
	display: block;
}
.news_contanier ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 3;
}
.news_contanier ul li a {
    text-decoration: none;
    color: #2B2B2B;
    transition: 0.6s;
}
.news_contanier ul li a:hover {
    opacity: 0.7;
}
.news_contanier hr {
    width: 100%;
    margin-left:auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 2px solid #EADCCF;
}
.news_flex {
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
}
.column_flex2 {
    display: flex;
    padding: 20px 0;
}
.gray_box{
    height: 130px;
    width: 230px;
    overflow: hidden;
    position: relative;
}
.gray_box img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.column_txt_area {
    display: block;
    width: calc(100% - 230px - 30px);
    padding-left: 20px;
    padding-right: 50px;
}
.news_category {
    padding: 5px;
    color: #fafafa;
    font-size: 1.2rem;
    /* 平行四辺形に */
    position: relative;
    z-index: 1;
    width: 150px;
    text-align: center;
    font-weight: 700;
    left: 5px;
}
.news_category::before {
    transform: skewX(-45deg);
    content: ""; /*ボックスを作る*/
    position: absolute; /*ポジションで中央に配置*/
    top: 0; bottom: 0; left: 0; right: 0;
    z-index: -1; /* 親要素の後ろに来るように-1 */
    background-color:#C7361D;
    border-radius: 10px;
}

.news_category2 {
    color: #fafafa;
    background-color: #c7361d;
    display: inline-block;
    top: -17px;
    left: -11px;
    font-size: 16px;
    border-radius: 30px 0;
    text-align: center;
    padding: 0 20px;
    line-height: 26px;
    font-weight: 700;
}

.news_diary {
    font-size: 1.6rem;
    margin: 5px 0 5px;
    text-align: left;
    font-weight: 500;
}
.news_numbering {
    font-size: 1.6rem;
    text-align: left;
    font-weight: 500;
}
.news_title{
    font-size: 2.1rem;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 700;
}
.news_text {
    line-height: 22px;
    color: #1a1a1a;
    text-align: left;
    margin-top: 5px;
    font-size: 14px;
}
.column_arrow_area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}
.round_arrow {
    position: relative;
    padding-left: 30px;
}   
.round_arrow::before { /* 背景の表示設定 */
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 3px;
    width: 23px; /* 横幅 */
    height: 23px; /* 高さ */
    border-radius: 50%; /* 角の丸み */
    background: #1a1a1a;
}   
.round_arrow::after { /* くの字の表示設定 */
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fafafa;
    border-right: 2px solid #fafafa;
    transform: rotate(45deg);
}

.wp-pagenavi {
    margin: 30px 0;
    text-align: center;
    z-index: 10;
    position: relative;
    display: none;
}
.wp-pagenavi a, .wp-pagenavi span{
    margin: 0 7px;
    font-size: 12px;
    border: none;
    font-weight: 700;
}

/* 選択中ページ */
.wp-pagenavi span.current {
    border: none;
    background-color:#C7361D;
    color: #fafafa;
    border-radius: 90%;
    display: inline-block;
    width: 26px;
    height: 26px;
}

/* 未選択ページ */
.page {
    border: none;
    background-color:#EADCCF;
    border-radius: 90%;
    display: inline-block;
    width: 26px;
    height: 26px;
}

/* < > ボタン */
.previouspostslink, 
.nextpostslink {
    border: none!important;
    display: inline-block;
    width: 26px;
    height: 26px;
}

/* カテゴリ一覧 */
#category {
    background: #fafafa;
    padding: 20px;
    padding-bottom: 0;
}
.category_title {
    font-size: 2.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}
#category ul {
    padding-bottom: 20px;
}
#category li {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 500;
}
.category_hr {
    padding-bottom: 20px;
    margin: 0;
    border-top: 2px solid #EADCCF;
}

/* よく読まれている記事 */
#popular {
    background: #fafafa;
    padding: 20px;
    padding-bottom: 10px;
    padding-top: 0;
}
.pop_li {
    display: flex;
    margin-bottom: 15px;
}
.pop_li a {
    display: block;
}
.pop_li a img {
    width: 100px;
    height: 60px;
}

.ranking-box-right{
    padding-left: 10px;
    padding-bottom: 20px;
}
.ranking-box-right .news_category {
    width: 130px;
    font-size: 1.0rem;
}
.ranking-box-right .news_category a {
    color: #fafafa;
}
.ranking-box-right .news_diary {
    font-size: 1.4rem;
    margin: 3px 0;
}
.pop_txt {
    font-size: 1.4rem;
    font-weight: 500;
}

.unhit {
    z-index: 2;
    position: relative;
    background-color: #EADCCF;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    font-weight: 500;
    font-size: 1.6rem;
}

/* 月ごと取得 */
#month {
    background: #fafafa;
    padding: 20px;
    padding-top: 0;
}
#month li {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
}


/* ////////////////////// */
/* 詳細画面 */
/* ////////////////////// */
.topics_title {
    margin-top: 8rem;
    padding-bottom: 3rem;
    border-bottom: solid 2px #eadccf;
    position: relative;
    z-index: 2;
}
.topics_title h2 {
    font-weight: 700;
    font-size: 3rem;
    text-align: left;
    margin-bottom: 2rem;
}
.topics_title_flex {
    display: flex;
}
.topics_title .news_category {
    font-size: 12px;
    height: 26px;
    width: 150px;
}
.topics_title .news_diary {
    margin-left: 24px;
    font-size: 14px;
    font-weight: 500;
}
.topics_numbering {
    font-size: 1.6rem;
}

.topics_main {
    margin-top: 8rem;
    padding-bottom: 3rem;
    border-bottom: solid 2px #eadccf;
    position: relative;
    z-index: 2;
}
.topics_main p {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.topics_main p b {
    font-weight: bold;
}
.column_border {
    border: 1px solid;
    padding: 10px;
    margin-bottom: 30px;
    width: auto;
    display: table;
}
.column_border p {
    margin-bottom: 0;
}
.column_border span {
    text-align: right;
    display: block;
    font-weight: 500;
}
.topics_main h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.topics_main h3 {
    font-size: 2.0rem;
}
.topics_main h4 {
    font-size: 1.6rem;
    font-weight: 500;
}
.topics_main strong {
    font-weight: 700;
}
.wp-block-image img {
    width: 60%;
    display: block;
    margin: 0 auto;
}
.wp-block-image .aligncenter>figcaption {
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
}

/* ボタン */
.topics_btn {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.btn {
    display: flex;
    justify-content: center;
}
.btn p {
    font-weight: 700;
    text-align: right;
}

.single_link_flex {
    display: flex;
    justify-content: center;
}
.single_link_flex a {
    width: 32rem;
    height: 7.5rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c7361d;
    border: 0.4rem solid #c7361d;
    border-radius: 5.2rem;
    font-weight: 700;
    font-size: 2.2rem;
    color: #fafafa;
    line-height: 1;
    text-align: center;
    position: relative;
    height: 6rem;
    font-size: 1.8rem;
    margin: 4rem 1rem 3rem;
}

.single_link_flex a:after {
    display: block;
    content: "";
    width: 0.7rem;
    height: 1.2rem;
    background: url(/dprivate/living-service/column/images/icn_arrow_b_r_01.png) no-repeat 0 0;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);

    display: none;
}


#toc_container {
    background: #f9f9f9;
    border: 1px solid #aaa;
    padding: 10px;
    margin-bottom: 8rem;
    width: auto;
    display: table;
    font-size: 95%;
}
#toc_container p.toc_title {
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
#toc_container ul ul {
    margin-left: 1.5em;
}
.toc_list {
    font-size: 1.6rem;
}
.profile-box {
    margin-bottom: 0;
    padding-bottom: 5px;
}
.prof_btn {
    margin-bottom: 0;
}

.space20 {
    display: block;
    height: 20px;
}
.space30 {
    display: block;
    height: 30px;
}
.space50 {
    display: block;
    height: 50px;
}
.space70 {
    display: block;
    height: 70px;
}
.space100 {
    display: block;
    height: 70px;
}

.hosoku_image img {
    width: 35%;
}


/* /////////// */
/*  小さいPC  */
/* /////////// */
@media screen and (max-width: 1280px) {
    .column_width {
        width: 100%;
    }
}
@media screen and (max-width: 1150px) {
    .news_category2 {
        font-size: 13px;
    }
    .pop_li a img {
        width: 90px;
        height: 60px;
    }
}
@media screen and (max-width: 1000px) {
    .column_flex {
        display: block;
    }
    .column_leftblock {
        width: 100%;
    }
    .column_rightblock {
        margin: 0 auto 50px;
        width: 100%;
    }
    #news {
        padding-bottom: 50px;
    }
    .gray_box {
        height: 100px;
        width: 180px
    }
    .column_txt_area {
        width: calc(100% - 180px - 10px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .single_link_flex {
        display: block;
    }
    .single_link_flex a {
        margin: 0 auto 3rem;
    }
}

/* モバイル */
@media screen and (max-width:767px){
    .column_flex2 {
        display: block;
    }
    .gray_box {
        width: 100%;
        height: 180px;
    }
    .column_txt_area {
        width: 100%;
        padding: 20px 0 0;
    }
    .news_category {
        left: 10px;
    }
    .news_category2 {
        font-size: 13px;
    }
    .column_arrow_area {
        display: none;
    }

    .wp-block-image img {
        width: 100%;
    }
    .btn .column_arrow_area {
        display: flex;
    }

    .single_link_flex a {
        width: 30.4rem;
    }

    .app-btn--01 .btn {
        font-size: 1.6rem;
    }
    .app-btn--01 .btn:after {
        display: none;
    }

    .hosoku_image img {
        width: 100%;
    }
}