@charset "utf-8";
/* CSS Document */
#fv {
	background-image: url(../img/fv_bg.png);
}
.cate-box {
	margin-top: 1.5em;
}
h3.box-title {
	font-size: 1.1em;
	font-weight: bold;
	color: #333;
	padding: 8px 12px;
	background-color: #fff3f7;
	border-left: 5px solid #db5d81;
	margin-bottom: 15px;
}
.under-yellow {
	font-weight: bold;
	background: linear-gradient(transparent 60%, #ff9 60%);
}
.under-pink {
	font-weight: bold;
	background: linear-gradient(transparent 60%, #ffd0d1 60%);
}

#price .flexbox {
	margin-top: 15px;
	align-items: stretch;
	gap: 20px;
}
#price .cate-box {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(50% - 20px);
	text-align: center;
	padding: 20px 20px 30px 20px;
	border: 2px solid #f0d7df;
	margin: 0;
}
#price .box-txt {
	text-align: center;
	font-size: 18px;
}
#price .price-txt {
	text-align: center;
	color: #db5e81;
	font-size: 24px;
	line-height: 1;
	margin-top: 5px;
}
#price .price-txt strong {
	font-size: 2.3em;
	font-weight: bold;
	color: #db5e81;
}
.included-box {
	margin-top: 2em;
	padding: 25px 20px 20px;
	position: relative;
	border-radius: 10px;
	border: 4px dashed #e8dfe2;
}
.included-box-title {
	display: inline-block;
	background: #fff;
	padding: 0 10px;
	font-weight: bold;
	color: #555;
	font-size: 18px;
	position: absolute;
	top: -18px;
	left: 10px;
}
.included-sub-box ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.included-sub-box ul li {
	width: calc((100% - 96px) / 5);
	margin: 0;
	text-align: center;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #eaeaea;
}
.included-box figure {
	margin: 0;
}
.included-box img {
	max-width: 80px;
	width: 100%;
	margin: 0 auto;
}
.included-box figcaption {
	margin-top: 5px;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: bold;
	color: #db5e81;
}
.c-txt {
	font-size: 14px;
	margin-top: 10px;
	color: #555;
	padding-left: 20px;
	position: relative;
}
.c-txt::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
#preparation {
	margin-top: 2em;
}
#preparation .p-item-list {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
#preparation .p-card {
	width: calc((100% - 60px) / 4);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #f0d5de;
	box-shadow: 0 3px 10px rgba(0,0,0,0.04);
	text-align: center;
	transition: .25s;
}
#preparation .p-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
#preparation .p-card img {
	max-width: 80px;
	width: 100%;
	margin: 0 auto;
}
#preparation .p-card .p-txt {
	margin-top: 10px;
	text-align: center;
	font-size: 14px;
	color: #555;
	line-height: 1.8;
}
#preparation .caution-box {
	margin-top: 20px;
	background-color: #fff7f9;
	border: 1px solid #f4d6df;
	border-radius: 10px;
	padding: 20px 24px;
}
#preparation .c-title {
	font-size: 18px;
	letter-spacing: 0.5px;
	font-weight: 600;
}
#preparation .c-list {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
#preparation .c-list li {
	width: calc(50% - 20px);
	position: relative;
	padding-left: 25px;
	line-height: 1.8;
}
#preparation .c-list li::before {
	content: "\2714";
	position: absolute;
	left: 0;
	top: -2px;
	font-size: 18px;
	font-weight: 700;
	color: #db5e81;
}



@media screen and (max-width: 480px) {
	#fv {
		margin-top: 0;
		min-height: 300px;
	}
	#fv .fv-sub-txt,
	#fv .fv-sub-txt2 {
		font-size: 16px;
	}
	#top-service {
		padding: 0!important;
		border: none!important;
	}
	#price .flexbox {
		flex-wrap: wrap;
	}
	#price .flexbox .cate-box {
		width: 100%;
	}
	.included-box ul li {
		width: calc((100% - 24px) / 2);
	}
	#preparation .p-card {
		width: calc((100% - 20px) / 2);
	}
	#preparation .c-list li {
		width: 100%;
	}
}