/* https://codepen.io/slimsmearlapp/pen/AyueF */
@charset "utf-8";

.flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	/*align-items: space-between;*/
	gap: 30px;
}

.flex-row {
	flex-direction: row;
}

.flex-column {
	flex-direction: column;
}

.paper-edge {}

.pager-edge .tit_sub {
	font-size: 1.15em;
	text-align: Center;
}

.paper-edge {
	width: 100%;
	height: auto;
	background-size: cover;
	background-clip: content-box;
	box-sizing: border-box;
	position: relative;
	text-align: center;

	/*margin-bottom: 10px;*/
}

.paper-edge img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.paper-edge .wrap {
	width: 23%;
	border-radius: 10px;
	background: #ffffff9e;
	padding: 40px 40px 20px 40px;
	backdrop-filter: blur(5px);
}

.paper-edge .wrap p {
	clear: both;
	font-size: 22px;
	font-weight: 500;
	margin-top: 20px;
	/*border: 1px solid red;*/
}

@media screen and (max-width:992px) {
	.flexbox {
		gap: 10px;
		justify-content: space-between;
	}


	.paper-edge .wrap {
		width: 48%;
		padding: 20px 20px 10px 20px;
	}


	.paper-edge .wrap p {
		font-size: 16px;
		margin-top: 10px;
	}

}