@charset "UTF-8";


.content article {
	margin: 0px auto;
	clear: both;
}

header div .header_title h2,
header div .header_title h2 *{
	line-height: 1.3;
    font-weight: bold;
}

article > div {
    background: #e8f7ee;
    padding: 40px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
article > div h3 {
	font-size: 18px;
    background: #1ea853;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    color: #FFF;
    text-align: center;
    margin-bottom: 1em;
    font-weight: bolder;
}
article p {
	font-size: 16px;
	margin: 1em 0;
}

article ul {
	font-size: 16px;
    background: #fff;
    padding: 20px 40px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
	list-style: none;
}
article ul li {
	margin: 0.5em 0;
	padding-left: 1.2em;
	position: relative;
}
article ul li:before {
	content: "●";
	color: #1ea853;
	position: absolute;
	left: 0px;
	top: 0px;
}
article p.incho {
	margin: 1em 0 0;
	text-align: right;
}

@media screen and (max-width: 1199px) {
header div .header_title p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
header div .header_title p span {
	width: 10em;
	display: inline-block;
}
article > div h3 {
	font-size: 16px;
}
article p,article ul {
	font-size: 14px;
}
}

@media screen and (max-width: 767px) {
header div .header_title p {
	display: block;
	margin-top: 5px;
}
header div .header_title p span {
	width: auto;
}
article > div {
    padding: 20px;
}
article > div h3 {
	font-size: 14px;
}
article p {
	font-size: 12px;
}
article ul {
	font-size: 12px;
    padding: 10px 20px;
}
}



