@charset "UTF-8";
/* news_one.css */


/* --- 本文コンテンツ --- */
.article_cont p,
.article_cont img {
	font-size: clamp(14px,1.6vw,16px);
	line-height: 2;
}
.article_cont img {
	width: 80%;
	display: block;
	margin-left:  auto;
	margin-right: auto;
}
.article_cont p + p,
.article_cont p + img,
.article_cont img + p {
	margin-top: 2em;
}


/* --- 横並びボタン --- */
.btn_flex {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
.btn_flex .btn:first-of-type {
	margin-right: 40px;
}





@media screen and (max-width:768px) {
	/* --- 本文コンテンツ --- */
	.article_cont img {
		width: 100%;
	}


	/* --- 横並びボタン --- */
	.btn_flex {
		width: 100%;
		text-align: center;
		display: inline-block;
	}
	.btn_flex .btn:first-of-type {
		margin-right: 0;
	}
}