/* CSS Document */

/*2020.03.05追加------------------------------------------------------------*/
.news_container {
	text-align: center;
	margin: 0 auto;
	padding: 20px 40px;
    border: red double;
    border-radius: 20px;
	width: 80%;
	max-width: 700px;
	font-size: 120%;
	box-sizing: border-box;
    background: #fff;
}
.news_container h2 {
	font-weight: bold;
	margin-bottom: 1em;
	font-size: 110%;
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.news_container {
		padding: 15px;
		width: calc(100% - 30px);
		font-size: 110%;
	}
	.news_container h2 {
		font-weight: bold;
		margin-bottom: 0.5em;
	}

}
/*2020.10.23追加------------------------------------------------------------*/
.news_section {
    padding: 20px 0 0px;
}
.banner_section {
    width: calc(100% - 60px);
    max-width: 720px;
    margin: 0  auto  20px; 
	display: flex;
	justify-content: center;
}
.banner_section a {
    transition: all 0.2s ease-in-out;
}
.banner_section a:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
    opacity: 0.8;
}
.banner_section img {
    width: 100%;
    height: auto;
}
.banner_section--notice {
	width: 48%;
	margin-right: 4%;
}
.banner_section--eat,
.banner_section--coupon {
	width: 24%;
}
@media screen and (max-width: 768px) {
    .banner_section {
        width: calc(100% - 30px);
        max-width: 400px;
		min-width: 290px;
		flex-wrap: wrap;
    }
    .banner_section--notice {
		width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
	.banner_section--eat,
	.banner_section--coupon {
		width: 50%;
	}
}