@charset "utf-8";

/* ニュース一覧エリア */

.news_result_area {
    display: block;
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.news_list {
    position: relative;
    padding: 0;
    margin: 0 0 70px;
    background: #fff;
    padding-top: 0;
    border-top: 1px solid #DDDDDD;
    display: block;
}

.news_list li {
    position: relative;
    border-bottom: 1px solid #DDDDDD;
    list-style: none;
    margin-bottom: 0;
}

.news_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    color: #222;
    padding: 25px 28px 26px 0;
    background: transparent;
    transition: all 0.3s;
    position: relative;
}

.news_link::after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    right: 18px;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #707070;
    border-right: 1px solid #707070;
    transform: rotate(-45deg);
    transition: border-color 0.3s;
}

.news_link:hover {
    background: #F8F8F8;
}

.news_date {
    display: inline-block;
    font-weight: 500;
    line-height: 1.6em;
    letter-spacing: 0.05em;
    min-width: 86px;
    margin-right: 25px;
}

.news_cate {
    display: block;
    font-weight: 500;
    letter-spacing: 0.1em;
    min-width: 99px;
    margin-right: 23px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 24px;
    padding: 2px 10px 3px;
    font-size: 1.3rem;
    color: #FFF;
    border: 1px solid #333;
    background-color: #333;
    border-radius: 15px;
}


.news_title {
    letter-spacing: 0.05em;
    line-height: 1.6em;
    display: block;
    width: calc(100% - 239px);
    margin: 0;
}
/* pagenaviが無い場合 */
.news_result_area .news_list:last-child {
    margin-bottom: 0;
}
/* archive.php */

/* single.php */

.single .cate_date {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.single .news_date {
    font-size: 1.5rem;
    margin-right: 15px;
}

.single .news_cate {
    margin: 0;
    letter-spacing: 0.05em;
}



.single .news_title {
    width: 100%;
    margin: 0 auto 55px;
}

.single .news_title h2 {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0;
    margin: 0;
}

.single .news_title h2::before {
    content: none;
}

.single .news_title h2::after {
    content: none;
}

.single .single_content {
    padding: 50px 0 60px;
    margin-bottom: 64px;
    border-bottom: 1px solid #ccc;
}

.single .single_content h2 {
    padding-left: 20px;
    padding-top: 0;
}

.single .single_content h2::before {
    content: '';
    position: absolute;
    top: 9px;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 27px;
    background: #FFB644;
}

.single .single_content h4 {
    padding-left: 12px;
}

.single .single_content h4::before {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 2px;
    margin: auto;
    background: #FFB644;
}

.single .single_content p {
    line-height: 2;
}

.single .single_content ul {
    list-style: inside;
    list-style-type: disc;
}

.single .single_content ol {
    list-style: inside;
    list-style-type: decimal;
}

.single .single_content>*:first-child {
    margin-top: 0;
}

.single .single_content>*:last-child {
    margin-bottom: 0;
}

.single_link_wrap {
    text-align: center;
}



@media screen and (max-width: 767px) {

    /* ニュース一覧エリア */
    .news_list {
        margin-bottom: 40px;
    }

    .news_link {
        padding: 12px 31px 13px 0;
    }

    .news_date {
        font-size: 1.3rem;
        margin-right: 10px;
        min-width: 85px;
    }

    .news_cate {
        font-size: 1.2rem;
    }

    .news_title {
        margin-top: 5px;
        width: 100%;
    }

    /* archive.php */

    /* single.php */

    .single .news_title {
        margin: 0 auto 14px;
    }

    .single .news_title h2 {
        font-size: 2.0rem;
    }

    .single .news_date {
        font-size: 1.3rem;
        margin-right: 15px;
        min-width: auto;
    }

    .single .single_content {
        padding: 35px 0;
        margin-bottom: 30px;
    }

    .single .single_content h2 {
        padding-left: 12px;
    }

    .single .single_content h2::before {
        top: 2px;
    }
}