@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LYX */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	bg
------------------------------------------------------------*/
.bg {
	position: relative;
	background: #FFFBEE;
}
@media all and (min-width: 897px) {
	.bg {
		z-index: 1;
		margin: 0 auto;
		max-width: 75rem;
	}
	.bg::after {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
		pointer-events: none;
		background-color: #FFFBEE;
		content: "";
		width: 750px;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 4.3rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 2.2rem;
	}
}