/*  news_list
------------ */
#news_list{}
#news_list ul.news_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
#news_list ul.news_list li{ border-top: 1px dashed #eee;}
#news_list ul.news_list li:first-child{ border-top: 1px solid #eee;}
#news_list ul.news_list li:last-child{ border-bottom: 1px solid #eee;}
#news_list ul.news_list li a{
    padding: 20px 40px 20px 0;
    text-decoration: none;
    display: block;
    position: relative;
}
#news_list ul.news_list li a::after{
    content: "\f105";
    font-family: "font awesome 5 free";
    font-weight: 600;
    font-size: 1rem;
    color: #aaa;
    line-height: 16px;
    text-align: center;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    display: block;
    position: absolute;
    top: 50%;
    right: 4px;
    transition: right 0.2s ease;
}
#news_list ul.news_list li .inner{
    display: flex;
    flex-direction: row;
}
#news_list ul.news_list li .inner .date{
    width: 160px;
    padding-right: 40px;
}
#news_list ul.news_list li .inner .date time{
    color: #333;
    font-size: 1.6rem;
}
#news_list ul.news_list li .inner .ttl{
    flex: 1;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    color: #333;
}

/*  news_single
------------ */
#news_single{}
#news_single .top{
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
#news_single .top .eyecatch{}
#news_single .top .ttl{}
#news_single .top .ttl h1{}
#news_single .top .status{}
#news_single .top .status .date{}
#news_single .top .status .date time{}
#news_single article{}
#news_single article p{
    font-size: 1.6rem;
    line-height: 1.8;
}
#news_single article{}
#news_single article a{
    word-break: break-all;
}
#news_single .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#news_single .youtube iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
#news_single .bottom{
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #ddd;
}
#news_single .bottom .more{
    text-align: center;
}
#news_single .bottom .more a{
    padding: 12px 20px;
    display: inline-block;
    text-decoration: none;
    color: #333;
    background: #eee;
    transition: background 0.2s ease;
}

@media (pointer: fine) {
    #news_list ul.news_list li a:hover{
        opacity: 0.8;
    }
    #news_list ul.news_list li a:hover::after{
        right: 0;
    }
    #news_single .bottom .more a:hover{
        background: #ddd;
    }
}
@media screen and (max-width: 1024px){
    #news_single .top .ttl h1{
        font-size: 2rem;
    }
}
@media screen and (max-width: 767.98px){
    #news_list ul.news_list li a{
        padding-right: 20px;
    }
    #news_list ul.news_list li a::after{
        right: 0;
    }
    #news_list ul.news_list li .inner{
        flex-direction: column;
    }
    #news_list ul.news_list li .inner .date{
        width: 100%;
        padding-right: 0;
    }
    #news_list ul.news_list li .inner .date time{
        font-size: 1.2rem;
    }
    #news_list ul.news_list li .inner .ttl{
        margin: 10px 0 0;
        font-size: 1.4rem;
    }
}