@charset "utf-8";
/* CSS Document */
.news {
    font-size: 13px;
    background-color: #fffeee;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    border: solid 1px #751c33;
    border-radius: 5px;
}
.news h3 {
    text-align: center;
    margin-bottom: 20px;
}
.news h3:after {
    content: '';
    display: block;
    width: 200px;
    height: 2px;
    background: #751c33;
    margin: 10px auto 0;
}
.news h4 {
    margin-bottom: 10px;
}
.news p:not(:last-of-type) {
    margin-bottom: 10px;
}

/* 815px 以下 */
@media (max-width: 815px) {

	.news {
		font-size: 10px;
		margin: 10px;
	}

}