/* ul.makernews {
  list-style: disc;
  padding: 0 0 0 2em;
  margin: 0 0;
}
ul.makernews:has('li'){
    margin-bottom: 10px;
}
.news_item {
  padding: 0 0 3px;
  cursor: pointer;
}

.news_item:hover {
  background-color: #f5f5f5;
}

.news_item news_title {
  font-size: 90%;
  color: #333;
  margin-bottom: 5px;
}

.news_item date {
  font-size: 80%;
  color: #666;
}
.news_item date::before{
    content: '(';
    font-size: 80%;
    color: #666;
  }
.news_item date::after{
    content: ')';
    font-size: 80%;
    color: #666;
  }
*/
.corpname{
	display: block;
	background-color: #eee;
	text-align: center;
	margin: 0.5em 0;
}
ul.makernews {
	display: flex;
	margin: 0 0;
	flex-wrap: wrap;
	row-gap: 1.5em;
	column-gap: 10px;
}
ul.makernews:has('li'){
    margin-bottom: 10px;
}

.news_item{
    display: block;
    width: calc(33% - 5px);
    padding: 10px;
    padding-bottom: 20px;
    border-radius: 8px;
    cursor: pointer;
}
.news_item:hover{
    padding: 9px;
    padding-bottom: 19px;
    border:solid 1px #ccc;
}
.news_item img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}
.news_item news_title{
    display: block;
    font-size: 100%;
    margin-bottom: 0.5em; 
}
.news_item brand{
    display: block;
    text-align: right;
    font-size: 80%;
}
.news_item date{
    display: block;
    text-align: right;
    font-size: 80%;
}

@media screen and (max-width: 640px) {
  ul.makernews {
    row-gap: 0px;
    column-gap: 0;
    display: block
  }
    .news_item {
        width: 100%;
        display: block;
        border-bottom: dotted 1px #666;
        padding-bottom: 10px;
        margin-bottom: 10px;
        min-height: 140px;
    }
    
    .news_item img {
        width: 120px;
        height: 120px;
        margin-bottom: 0;
        display: block;
        float: left;
    }
    
    .news_item news_title {
        width: calc(100% - 130px);
        font-size: 90%;
        margin-left: 130px;
        margin-bottom: 1em;
    }
    
    .news_item date {
        width: calc(100% - 130px);
        margin-left: auto;
        font-size: 80%;
    }
    
    .news_item brand {
        width: calc(100% - 130px);
        margin-left: auto;
    }
}

/*------*/
.contents-full{
    float: none !important;
    width:100% !important;
}
div.caption{
    display: block;
    margin: 1em;
    padding: 1em 0;
    line-height: 150%;
}
.pdf_link{
    display: block;
    text-align: center;
    margin: 1.5em 0;
}
.hasshin{
    display: block;
    padding: 2em 0;
    text-align: center;
    background-color: #efefef;
}