@charset "utf-8";
.content_box {
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.box_title {
	color: #FF6699;
	font-size: 1.25em;
	font-weight: bold;
	padding: 20px 0;
}
.box {
	line-height: 1.5em;
	letter-spacing: 0.15em;
}
.box p {
	text-align: justify;
}
.comment_bold {
	font-size: 1.2em;
	padding: 10px 0;
	display: block;
	font-weight: bold;
}
.comment_box {
	max-width: 650px;
	margin: auto;
}
.comment_box p {
	line-height: 1.5em;
	letter-spacing: 0.15em;
	text-align: justify;
}
.box_t {
	font-size: 1.25em;
	font-weight: bold;
	padding: 20px 0;
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 768px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	.content_box {
		flex-direction: row;
		justify-content: space-between;
		gap: 20px;
	}
	.reverse {
		flex-direction: row-reverse;
	}
	.box {
		width: 48%;
	}
	.comment_box {
	}
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
	
	.box {
	}
	.comment_box {
	}
}