﻿#content {display:flex;}
.news_list {
	display: block;
	margin-bottom: 40px;
    padding: 0 40px;
    width:70%;
}
.news_item {
    transition: all 0.3s;
    width: 100%;
    position: relative;
    display:flex;
    height: fit-content;
}
.news_item:not(:last-child){margin-bottom:20px;}
.news_item:hover {
	opacity: 0.9;
    	-webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow:    0px 0px 16px 0px rgba(0, 0, 0, 0.1);
box-shadow:         0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}
.news_itm_img {
    margin: 0;
    width:40%;
    position:relative;
}
.news_itm_img img {
	width: 100%;
    height:100%;
}
.idx_date{
    position:absolute;
    width:50px;
    height:50px;
    color: #da251c;
    background:#fff;
    border:2px solid #da251c;
    text-align:center;
    font-weight:700;
    line-height: normal;
    padding-top: 5px;
    top: 15px;
    left: -10px;
}
.idx_date span{
    font-weight:100;
    font-size:90%;
}
.news_itm_main {
    background: #fff;
    position: relative;
	-webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow:    0px 0px 16px 0px rgba(0, 0, 0, 0.1);
box-shadow:         0px 0px 16px 0px rgba(0, 0, 0, 0.1);
	color: #666;
    width:60%;
    padding:10px;
}
.news_itm_ttl {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 8px;
}
.news_itm_txt {
    margin: 0;
    line-height: 1.3em;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.news_item a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.b05_list{flex-wrap:wrap;}
.b05_item{width: calc(33% - 30px);margin-bottom:30px;}
.b05_item:nth-child(3n){margin-right:0;}

/*.news-date {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #ff9d57;
    color: #fff;
    width: 150px;
    text-align: center;
    font-size: 16px;
    padding: 3px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: all 0.5s ease;
}*/

@media screen and (max-width:768px) {

    .news_itm_main{padding:10px;}

    .news_itm_date{font-size:10.5px;}

    .news_itm_ttl{font-size:16px;}

    .news_itm_txt{font-size:12px;}

    .b05_item{width:100%;}
}

@media screen and (max-width:480px) {    
    #content{display:block;}
    .news_list {
        display: block;
        width:100%;
        padding:0;
    }
    .idx_date {
        font-size: 10px;
        width: 40px;
        height: 40px;
    }
    .news_item {
        width: 100%;

    }   
    .b05_item{margin-bottom:20px;}
}
