@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* 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;
}
.lora {
	font-family: "Lora", serif;
	font-weight: 400;
}
.zenMin {
	font-weight: 700;
	font-family: "Zen Old Mincho", serif;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 85rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1rem;
		width: auto !important;
	}
}

/* comBtn */
.comBtn {
	margin: 0 auto;
	width: 30rem;
	max-width: 100%;
}
.comBtn a {
	width: 100%;
	min-height: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-size: 2.5rem;
	border-radius: 5rem;
	background: #ED848C;
}
@media all and (max-width: 896px) {
	.comBtn a {
		min-height: 5rem;
		font-size: 2rem;
	}
}

/* whiteBox */
.whiteBox {
	margin: 0 auto;
	padding: 3rem 0 11.3rem;
	max-width: 126rem;
	min-height: calc(100vh - 10.5rem);
	background-color: #FFF;
	border-radius: 8rem;
	border: 0.1rem solid #4E1C08;
	position: relative;
}
.whiteBox::before {
	position: absolute;
	left: 0;
	bottom: calc(100% - 1px);
	content: '';
	width: 100%;
	height: 6rem;
	background: url(../img/common/white_bg.png) no-repeat center bottom / auto 100%;
}
.whiteBox .heading {
	margin-bottom: 2rem;
	text-align: center;
}
.whiteBox .heading img {
	width: 32.2rem;
}
@media all and (max-width: 896px) {
	.whiteBox {
		margin: 0 1.2rem;
		min-height: calc(100vh - 4.7rem);
		border-radius: 2.7rem 2.7rem 0 0;
		border-bottom: none;
	}
	.whiteBox::before {
		height: 3.5rem;
		background-image: url(../img/common/white_bg_sp.png);
	}
	.whiteBox .heading {
		margin-bottom: 1.2rem;
	}
	.whiteBox .heading img {
		width: 11.5rem;
	}
}