#blogList{
    margin: 60px 0 100px;
}
#blogList .wrap{}
#blogList .wrap .set{}
#blogList .top{}
#blogList .top h2{
    margin: 40px 0;
    text-align: center;
    font-size: 2rem;
}
#blogList ul.post_list{
    width: 100%;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
#blogList ul.post_list li{
    position: relative;
}
#blogList ul.post_list li > a{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -9999px;
}
#blogList ul.post_list li .inner{
    display: flex;
    flex-direction: column;
}
#blogList ul.post_list li .inner .img{
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
}
#blogList ul.post_list li .inner .img img{
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.5s;
    will-change: transform;
}
#blogList ul.post_list li:hover .inner .img img{
    transform: translate(-50%,-50%) scale(1.05,1.05);
}
#blogList ul.post_list li .inner .txt{
    padding: 10px 0;
}
#blogList ul.post_list li .inner .txt .status{
    padding: 2px 0;
    font-size: 1.2rem;
    color: #aaa;
    display: flex;
    flex-direction: row;
}
#blogList ul.post_list li .inner .txt .status .date{}
#blogList ul.post_list li .inner .txt .status .date time{}
#blogList ul.post_list li .inner .txt .status .cat{
    margin-left: 20px;
}
#blogList ul.post_list li .inner .txt .status .cat span{
    padding: 1px 5px;
    border: 1px solid #aaa;
}
#blogList ul.post_list li .inner .txt .ttl{
    margin: 5px 0 0;
}
#blogList ul.post_list li .inner .txt .ttl h2{}
#blogList ul.post_list li:hover .inner .txt .ttl h2{
    text-decoration: underline;
}
#blogList .bottom_wrap{
    margin: 100px 0 0;
    padding: 40px 0;
    background: #222;
}
#blogList .bottom{}
#blogList .bottom h2{
    margin: 0 0 20px;
    padding: 20px 0;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
    transform: scale(0.9,1);
}
#blogList .bottom h2 span{
    padding: 0 20px;
    display: inline-block;
    position: relative;
}
#blogList .bottom * + h2{
    margin-top: 40px;
}
#blogList .bottom h2 span::before,
#blogList .bottom h2 span::after{
    content: "";
    width: 20px;
    height: 1px;
    background: #999;
    display: block;
    position: absolute;
    top: 50%;
}
#blogList .bottom h2 span::before{ left: -10px;}
#blogList .bottom h2 span::after{ right: -10px;}
#blogList .bottom ul.category_list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#blogList .bottom ul.category_list li{
    margin: 2px 2px;
    flex: 1 1 auto;
}
#blogList .bottom ul.category_list li a{
    width: 100%;
    padding: 4px 8px;
    display: inline-block;
    border: 1px solid #666;
    text-decoration: none;
    text-align: center;
    color: #999;
    font-size: 1.4rem;
}
#blogList .bottom ul.category_list li a:hover{
    background: #333;
    color: #fff;
}
#blogList .bottom .post_list_wrap{
    overflow-x: auto;
}
#blogList .bottom ul.post_list{
    width: 2000px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}
#blogList .bottom ul.post_list li{
    width: 390px;
    height: 300px;
    margin: 0;
}
#blogList .bottom ul.post_list li a{
    text-indent: 0px;
    text-decoration: none;
}
#blogList .bottom ul.post_list li a .inner .txt .ttl{
    width: calc(100% - 10px);
    color: #eee;
    font-size: 1.4rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.pager{
    padding: 40px 0 0;
    border-top: 1px solid #666;
}
.pager .wp-pagenavi{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.pager .wp-pagenavi a,
.pager .wp-pagenavi span{
    margin: 0 4px;
    padding: 8px 12px;
    color: #eee;
    font-size: 1.4rem;
    display: inline-block;
    border: 1px solid #333;
}
.pager .wp-pagenavi a{
    text-decoration: none;
}
.pager .wp-pagenavi span{}
.pager .wp-pagenavi span.pages{
    display: none;
}
.pager .wp-pagenavi a:hover,
.pager .wp-pagenavi span.current{
    background: #eee;
    border-color: #eee;
    color: #333;
}
#blogSingle_row{
    width: 1160px;
    min-width: calc(100% - (50% - 400px));
    margin: 60px 0 100px auto;
    display: flex;
    flex-direction: row;
    position: relative;
}
#blogSingle_row #main{
    width: 800px;
}
#blogSingle_row #sub{
    width: calc((100vw - 800px) / 2);
    min-width: 360px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
#blogSingle{}
#blogSingle .wrap{}
#blogSingle .wrap .set{}
#blogSingle .head{}
#blogSingle .head .status{
    margin: 20px 10px 10px;
    display: flex;
    flex-direction: row;
    font-size: 1.4rem;
}
#blogSingle .head .status .date{}
#blogSingle .head .status .date time{
    color: #aaa;
}
#blogSingle .head .status .cat{
    margin-left: 20px;
}
#blogSingle .head .status .cat span{
    padding: 2px 10px;
    background: #444;
}
#blogSingle .head .ttl{
    margin: 0 10px 40px;
}
#blogSingle .head .ttl h1{
    font-size: 2rem;
    line-height: 1.5;
}
#blogSingle .head .eyecatch{}
#blogSingle .head .eyecatch img{
    width: 100%;
    height: auto;
}
#blogSingle .body{
    padding: 60px 100px;
    background: #292929;
}
#blogSingle .foot{}
#blogSingle .foot .social{
    margin: 2px 0 0;
    padding: 20px;
    background: #292929;
}
#blogSingle .foot .social h2{
    text-align: center;
    letter-spacing: 0.2rem;
}
#blogSingle .foot .social ul{
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#blogSingle .foot .social ul li{
    flex: 1;
    padding: 0 2px;
}
#blogSingle .foot .social ul li a{
    width: 100%;
    height: 60px;
    background: #666;
    display: block;
    position: relative;
    text-indent: -9999px;
    transition: all 0.2s;
}
#blogSingle .foot .social ul li a::before{
    content: "";
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}
#blogSingle .foot .social ul li.facebook a::before{
    background-image: url(../img/common/social/facebook.svg);
}
#blogSingle .foot .social ul li.facebook a:hover{
    background-color: #1877f2;
}
#blogSingle .foot .social ul li.twitter a::before{
    background-image: url(../img/common/social/twitter.svg);
}
#blogSingle .foot .social ul li.twitter a:hover{
    background-color: #1DA1F2;
}
#blogSingle .foot .gotohome{
    padding: 40px 0 0;
    text-align: center;
}
#blogSingle .foot .gotohome a{
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    color: #eee;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    border: 1px solid #999;
}
#blogSingle .foot .gotohome a:hover{
    background: #333;
}
#blogSingle article{}
#blogSingle article h2{
    margin: 20px 0;
    padding: 30px 0 0;
    font-size: 2rem;
}
#blogSingle article h3{
    margin: 20px 0;
    padding: 30px 0 10px;
    font-size: 1.8rem;
    border-bottom: 2px solid #666;
}
#blogSingle article h4{}
#blogSingle article p{
    margin: 30px 0;
    line-height: 1.8;
    font-size: 1.6rem;
}
#blogSingle article p a{
    color: #eee;
}
#blogSingle article p a:hover{
    color: red;
}
#blogSingle article li{
    line-height: 1.8;
    font-size: 1.6rem;
}
#blogSingle article ul,
#blogSingle article ol{
    margin: 30px 0;
    padding: 10px 2rem;
}
#blogSingle article figure{
    width: 100% !important;
    margin: 0 0 30px;
}
#blogSingle article figure img{
    height: auto;
}
#blogSingle article figure figcaption{
    font-size: 1.2rem;
}
#blogSingle article cite{
    font-size: 1.4rem;
}
#blogSingle article blockquote{
    margin: 1em 0;
    padding: 60px 20px 20px;
    background: rgba(255,255,255,0.1);
    position: relative;
}
#blogSingle article blockquote::before{
    content: "\e244";
    font-family: "material icons";
    width: 40px;
    height: 40px;
    display: block;
    font-size: 3rem;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    transform: rotate(180deg);
}
#blogSingle article blockquote::after{}
#blogSingle article table{
    border-collapse: collapse;
}
#blogSingle article table th,
#blogSingle article table td{
    padding: 10px;
    font-size: 1.4rem;
    border: 1px solid #999;
}
#blogSingle_sub{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    position: sticky;
    top: 0;
    display: none;
}
#blogSingle_sub article{
    margin: 0 0 60px;
}
#blogSingle_sub article h2{
    margin: 0 0 20px;
    padding: 20px 0;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
    transform: scale(0.9,1);
}
#blogSingle_sub article h2 span{
    padding: 0 20px;
    display: inline-block;
    position: relative;
}
#blogSingle_sub article h2 span::before,
#blogSingle_sub article h2 span::after{
    content: "";
    width: 20px;
    height: 1px;
    background: #999;
    display: block;
    position: absolute;
    top: 50%;
}
#blogSingle_sub article h2 span::before{ left: -10px;}
#blogSingle_sub article h2 span::after{ right: -10px;}
#blogSingle_sub article h2 a{
    text-decoration: none;
    color: #ddd;
}
#blogSingle_sub article h2 a:hover{
    color: #999;
}
#blogSingle_sub ul.post_list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
#blogSingle_sub ul.post_list li{
    margin: 10px 0 0;
}
#blogSingle_sub ul.post_list li:first-child{
    margin-top: 0;
}
#blogSingle_sub ul.post_list li a{
    display: block;
    text-decoration: none;
}
#blogSingle_sub ul.post_list li a .inner{
    display: flex;
    flex-direction: row;
}
#blogSingle_sub ul.post_list li a .inner .img{
    width: 120px;
    height: 90px;
    position: relative;
    overflow: hidden;
}
#blogSingle_sub ul.post_list li a .inner .img img{
    height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: transform 0.5s ease;
    will-change: transform;
}
#blogSingle_sub ul.post_list li a:hover .inner .img img{
    transform: translate(-50%,-50%) scale(1.1,1.1);
}
#blogSingle_sub ul.post_list li a .inner .detail{
    padding: 10px;
    flex: 1;
}
#blogSingle_sub ul.post_list li a .inner .detail .ttl{
    color: #eee;
    font-size: 1.4rem;
}
#blogSingle_sub ul.post_list li a:hover .inner .detail .ttl{
    text-decoration: underline;
}
#blogSingle_sub ul.post_list li a .inner .detail time{
    color: #999;
    font-size: 1.2rem;
}
#blogSingle_sub ul.category_list{
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#blogSingle_sub ul.category_list li{
    flex: 1 1 auto;
    margin: 2px;
    display: inline-block;
}
#blogSingle_sub ul.category_list li a{
    width: 100%;
    padding: 4px 8px;
    display: inline-block;
    color: #eee;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid #999;
    transition: all 0.2s;
}
#blogSingle_sub ul.category_list li a:hover{
    background: #eee;
    color: #444;
}
#newsList{
    background: #292929;
}
#newsList .wrap{}
#newsList .wrap .set{}
#newsList ul.news_list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#newsList ul.news_list li{
    padding: 30px 0;
    position: relative;
    border-bottom: 1px solid #333;
}
#newsList ul.news_list li:last-child{
    border-bottom: none;
}
#newsList ul.news_list li > a{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
#newsList ul.news_list li .inner{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}
#newsList ul.news_list li .inner .ttl{
    padding-left: 40px;
    flex: 1;
}
#newsList ul.news_list li .inner .ttl h2{}
#newsList ul.news_list li:hover .inner .ttl h2{
    text-decoration: underline;
}
#newsList ul.news_list li .inner .status{
    min-width: 160px;
    display: flex;
    flex-direction: row;
}
#newsList ul.news_list li .inner .status .date{}
#newsList ul.news_list li .inner .status .date time{
    font-size: 1.4rem;
}
#newsList ul.news_list li .inner .status .cat{
    margin-left: 20px;
}
#newsList ul.news_list li .inner .status .cat span{
    padding: 2px 8px;
    font-size: 1.4rem;
    background: #444;
}
#newsList .pager{
    padding: 40px 0;
}

#newsSingle{
    padding: 60px 0 100px;
    background: #292929;
}
#newsSingle .wrap{}
#newsSingle .wrap .set{}
#newsSingle .head{
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}
#newsSingle .head .ttl{}
#newsSingle .head .ttl h1{
    font-size: 2.4rem;
    line-height: 1.5;
}
#newsSingle .head .status{
    margin: 20px 0 0;
    display: flex;
    font-size: 1.4rem;
}
#newsSingle .head .status .date{}
#newsSingle .head .status .date time{
    color: #999;
}
#newsSingle .head .status .cat{
    margin: 0 0 0 20px;
}
#newsSingle .head .status .cat span{
    padding: 2px 4px;
    border: 1px solid #999;
}
#newsSingle .body{}
#newsSingle .foot{
    border-top: 1px solid #999;
}
#newsSingle .foot .gotohome{
    padding: 40px 0 0;
    text-align: center;
}
#newsSingle .foot .gotohome a{
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    color: #eee;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    border: 1px solid #999;
}
#newsSingle .foot .gotohome a:hover{
    background: #333;
}
#newsSingle article{}
#newsSingle article h2{
    margin: 20px 0;
    padding: 30px 0 0;
    font-size: 2rem;
}
#newsSingle article h3{
    margin: 20px 0;
    padding: 30px 0 10px;
    font-size: 1.8rem;
    border-bottom: 2px solid #666;
}
#newsSingle article h4{}
#newsSingle article p{
    margin: 30px 0;
    line-height: 1.8;
    font-size: 1.6rem;
}
#newsSingle article p a{
    color: #eee;
}
#newsSingle article p a:hover{
    color: red;
}
#newsSingle article li{
    line-height: 1.8;
    font-size: 1.6rem;
}
#newsSingle article ul,
#newsSingle article ol{
    margin: 30px 0;
    padding: 10px 2rem;
}
#newsSingle article figure{
    width: 100% !important;
    margin: 0 0 30px;
}
#newsSingle article figure figcaption{
    font-size: 1.2rem;
}

@media screen and (max-width:1199.98px) {
    #blogSingle_row{
        width: 100%;
        min-width: inherit;
        margin: 60px auto 0;
        flex-direction: column;
    }
    #blogSingle_row #main{
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    #blogSingle_row #sub{
        width: 100%;
        min-width: inherit;
        margin: 60px auto 0;
        padding: 40px 20px 60px;
        position: relative;
        background: #222;
    }
    #blogSingle_sub{
        max-width: 800px;
        padding: 0 0;
    }
    #blogSingle_sub article:last-child{
        margin: 0;
    }
    #blogSingle_sub ul.post_list li{
        margin: 0;
        border-bottom: 1px solid #333;
    }
    #blogSingle_sub ul.post_list li:first-child{
        border-top: 1px solid #333;
    }
    #blogSingle_sub ul.post_list li a{
        padding: 10px;
    }
}
@media screen and (max-width:767.98px) {
    #blogSingle .wrap .set{
    }
    #blogSingle .body{
        padding: 20px 16px 60px;
    }
    #blogSingle .foot .social{
        margin: 2px 0 0;
        padding: 10px 10px 20px;
    }
    #blogSingle_row #sub{
        margin: 60px auto 0;
        padding: 40px 10px 60px;
        position: relative;
        background: #222;
    }
    #newsList{
        padding: 0 0;
    }
    #newsList .wrap .set{
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    #newsList ul.news_list{
        margin: 0;
        border-top: none;
    }
    #newsList ul.news_list li{
        padding: 20px 10px 10px;
    }
    #newsList ul.news_list li .inner{
        flex-direction: column;
    }
    #newsList ul.news_list li .inner .ttl{
        padding-left: 0;
    }
    #newsList ul.news_list li .inner .status{
        margin: 10px 0 0;
        min-width: inherit;
    }
    #newsList ul.news_list li .inner .status .date time{
        color: #999;
    }
    #newsSingle{
        padding: 0 0 100px;
    }
    #blogList .bottom{}
    #blogList .bottom ul.post_list{
        width: 1600px;
    }
    #blogList .bottom ul.post_list li{
        width: 310px;
        height: 260px;
        margin: 0;
    }
}