@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%);
}
.worries-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.worries-card {
	width: calc(50% - 10px);
	padding: 24px 10px;
	border-radius: 10px;
	border: 1px solid #f2d7df;
}
.worries-title {
	padding-left: 32px;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	letter-spacing: 0.5px;
	position: relative;
}
.worries-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #db5e81;
}
.worries-title::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 50%;
	width: 8px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-65%) rotate(-45deg);
}
.worries-txt {
	padding-left: 32px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}

.possible-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.possible-card {
	width: calc((100% - 60px) / 4);
	padding: 24px 20px;
	border-radius: 10px;
	border: 1px solid #f2d7df;
}
.impossible-box .possible-card {
	background: #fff5f5;
	border-color: #f3c9c9;
}
.possible-card .img-box {
	width: 80px;
	margin: 0 auto;
}
.possible-card .possible-title {
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #666;
}
#possible .c-txt {
	margin-top: 20px;
	padding-left: 15px;
	position: relative;
	font-size: 14px;
	color: #666;
}
#possible .c-txt::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
.impossible-box .possible-card .img-box {
	position: relative;
}
.impossible-box .possible-card .img-box::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 78%;
	aspect-ratio: 1;
	border: 5px solid rgba(231, 76, 60, 0.55);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.impossible-box .possible-card .img-box::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 72%;
	height: 5px;
	background: rgba(231, 76, 60, 0.55);
	transform: translate(-50%, -50%) rotate(-45deg);
	border-radius: 999px;
	pointer-events: none;
}
#price .flexbox {
	margin-top: 20px;
	flex-wrap: wrap;
	gap: 10px;
}
.pack-card {
	width: calc((100% - 30px) / 4);
	padding: 0 0 15px 0;
	border-radius: 10px;
	background-color: #fffdfd;
	border: 1px solid #e8dfe2;
	overflow: hidden;
	text-align: center;
}
.pack-card .pack-title {
	text-align: center;
	background: #fff7fa;
	padding: 5px 0;
	font-weight: 600;
	color: #666;
}
.pack-card .item-size {
	margin-top: 10px;
	font-size: 18px;
	font-weight: bold;
}
.pack-card .item-price {
	line-height: 1;
	font-weight: bold;
	margin-top: 10px;
}
.pack-card .item-price strong {
	color: #db5e81;
	font-size: 2em;
	padding-right: 3px;
}
.pack-card .item-txt {
	margin-top: 15px;
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}
.packing-note {
	margin-top: 1em;
	padding: 15px 20px;
	border-radius: 10px;
	background-color: #fffdfd;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 10px;
}
.packing-note li {
	width: calc(50% - 10px);
	padding: 5px 5px 5px 25px;
	border-bottom: 1px dashed #eaeaea;
	font-size: 14px;
	color: #666;
	position: relative;
}
.packing-note li::before {
	content: "※";
	position: absolute;
	top: 5px;
	left: 5px;
}

@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;
	}
	.fv_con {
		width: 100%;
	}
	.worries-card,
	.packing-note li {
		width: 100%;
	}
	.possible-card,
	.pack-card {
		width: calc(50% - 10px);
	}
}