@charset "UTF-8";

.contents {
	padding-top:80px;
}
.blog_title {
	font-size: 2.6rem;
	font-weight: bold;
	color: #72ae2d;
	margin-bottom: 50px;
	text-align: center;
}
.blog_main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
}
.blog_main-left {
	width: 100%;
	margin-right: 20px;
	flex: 1;
}
.blog_main-left iframe {
	width: 100%;
	height: 350px;
}

.blog_main-right {
	width: 230px;
}
.blog_main-right .title {
	font-size: 2.4rem;
	text-align: center;
	color: #fff;
	background: #72ae3d;
	padding: 10px 0;
	box-sizing: border-box;
	border-radius: 5px 5px 0 0;
}
.blog_main-right .items {
	padding: 10px;
	background: #fff6e9;
	box-sizing: border-box;
	list-style: none;
	border-radius: 0 0 5px 5px;
}
.blog_main-right .items_item {
	padding: 10px 0;
	margin-bottom: 10px;
	border-bottom: 2px solid #72ae2d;
	font-size: 1.6rem;
	display: flex;
	justify-content: flex-start;
	color: #a47434;
}
.blog_main-right .items_item:before {
	content: "●";
	margin-right: 5px;
}
.blog_main-right .items_item:hover {
	opacity: 0.7;
}
.blog_main-right .items_item a {
	text-decoration: none;
	color: #a47434;
}
