@charset "utf-8";
.flex_box {
	display: flex;
	flex-direction: column;
	gap: 10px 10px;
}
.banner_box {
	box-sizing: border-box;
	border: 1px solid #FF6699;
	border-radius: 8px;
	padding: 10px;
	color: #222222;
}
.banner_box a {
	color: #222222;
}
.box img {
	border-radius: 8px;
	border: 2px solid #FF6699;
}
.box h4 {
	padding: 20px;
	font-size: 1.5em;
	font-weight: 700;
}
.box h5 {
	padding-bottom: 10px;
	font-size: 1.25em;
	font-weight: 700;
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 768px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	.flex_box {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
	}
	.banner_box {
		width: calc(100% / 2 - 10px);
	}
} 
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
	.banner_box {
		width: calc(100% / 3 - 10px);
	}
}