@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%);
}
.recommend-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.recommend-card {
	width: calc((100% - 60px) / 4);
	padding: 24px 10px;
	border-radius: 10px;
	border: 1px solid #f2d7df;
	text-align: center;
}
.recommend-card .img-box {
	max-width: 80px;
	width: 100%;
	margin: 0 auto;
}
.recommend-card .recommend-title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #333;
	margin-top: 8px;
}
.recommend-card .recommend-txt {
	margin-top: 10px;
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}
.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;
}
.reassurance-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.reassurance-card {
	width: calc(50% - 10px);
	padding: 24px 20px;
	border-radius: 10px;
	border: 1px solid #f2d7df;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.reassurance-card .img-box {
	width: 80px;
}
.reassurance-card .txt-box {
	width: calc(100% - 90px);
}
.reassurance-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #333;
}
.reassurance-txt {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}

.price-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.price-flex .price-box {
	width: calc(50% - 10px);
	border-radius: 10px;
	border: 1px solid;
	overflow: hidden;
}
.price-flex .price-box h3 {
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	letter-spacing: 0.5px;
	color: #333;
	padding: 10px 0;
}
.price-flex .price-box:first-of-type {
	border-color: #efb1c4;
}
.price-flex .price-box:nth-of-type(2) {
	border-color: #d8d0c2;
}
.price-flex .price-box:first-of-type h3 {
	background: #efb1c4;
}
.price-flex .price-box:nth-of-type(2) h3 {
	background: #d8d0c2;
}
.price-flex .price-box .price-txt {
	margin-top: 8px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #db5e81;
}
.price-flex .price-box .price-txt strong {
	font-size: 2.3em;
	padding-right: 3px;
}
.price-flex .price-box .price-txt2 {
	margin-top: 10px;
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	padding: 0 20px;
}
.price-flex .price-box .price-txt2 span {
	font-size: 14px;
	color: #333;
	background: linear-gradient(transparent 65%, #fff2a8 65%);
	font-weight: 700;
}
.price-flex .price-box .sample-btn {
	margin: 10px 20px 20px;
	text-align: center;
}
.price-flex .price-box .sample-btn a {
	display: block;
	padding: 15px 0;
	font-weight: bold;
	letter-spacing: 0.5px;
	border-radius: 10px;
	color: #333;
	position: relative;
	transition: .25s ease;
}
.price-flex .price-box:first-of-type .sample-btn a {
	background-color: #efb1c4;
}
.price-flex .price-box:nth-of-type(2) .sample-btn a {
	background-color: #d8d0c2;
}
.price-flex .price-box .sample-btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin: auto;
	background-color: #333;
	width: 15px;
	height: 15px;
	clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
	transform: translateY(-50%);
}
.price-flex .price-box .sample-btn a:hover {
	transform: translateY(-4px);
	box-shadow: 0 8 20px rgba(0,0,0,.12);
}
.service-option .flexbox {
	flex-wrap: wrap;
	gap: 20px;
}
.option-card {
	width: calc((100% - 40px) / 3);
	border-radius: 10px;
	padding: 20px;
	border: 1px solid #f2d7df;
}
.option-card h4 {
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	color: #333;
}
.option-card .price-txt {
	margin-top: 7px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #db5e81;
}
.option-card .price-txt strong {
	font-size: 2em;
	padding-right: 3px;
}
.option-card .option-txt {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}
.shipping-title{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	color: #333;
	margin: 35px 0 15px;
	padding-bottom: 6px;
	border-bottom: 2px solid #db5d81;
}
.shipping-toggle summary{
	margin-top: 20px;
	font-family: "Noto Sans JP", sans-serif;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:12px 20px;
	font-weight:700;
	color:#333;
	cursor:pointer;
	list-style:none;
	border: 1px solid #f2d7df;
	border-radius: 10px;
	transition:.2s;
}
.shipping-toggle summary::-webkit-details-marker{
	display:none;
}
.shipping-toggle summary::after{
	content:"+";
	font-size:1.4rem;
	color:#db5d81;
	font-weight:400;
}
.shipping-toggle[open] summary::after{
	content:"−";
}
.shipping-toggle summary:hover{
	color:#db5d81;
}
.shipping-content .sample-txt {
	margin: 5px auto 10px;
	font-size: 16px;
	line-height: 1.8;
}
.shipping-content .flex-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.shipping-content dl {
	width: calc(50% - 10px);
}
.shipping-content dt {
	text-align: center;
	font-weight: bold;
	padding: 8px;
	background-color: #db5e81;
	color: #fff;
	display: flex;
	align-items: center;
}
.shipping-content dt span {
	font-weight: bold;
	color: #db5e81;
	background-color: #fff;
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	line-height: 28px;
	text-align: center;
}
.shipping-content dd audio {
	width: 100%;
}

#flow .c-txt {
	margin-top: 15px;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	padding-left: 15px;
	position: relative;
}
#flow .c-txt::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

@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%;
	}
	.shipping-content .flex-wrap {
		gap: 10px;
	}
	.recommend-card,
	.option-card{
		width: calc(50% - 10px);
	}
	.worries-card,
	.reassurance-card,
	.price-flex .price-box,
	.shipping-content dl {
		width: 100%;
	}
}