@charset "utf-8";
/* CSS Document */
:root {
	--accent: #0d489e;
	--l-accent: #e7f3f7;
}
.fv-catch {
	background: var(--accent);
}
.sec-title span {
	color: var(--accent);
}
.cate {
	padding: 60px 0;
}
.cate-txt {
	font-size: 16px;
	line-height: 1.8;
}

#about,
#merit {
	background-color: var(--bg-gray);
}

/*=========================
こんなお悩みありませんか？
=========================*/
#concerns {
	margin-top: 40px;
	background-color: #f5f5f5;
}
#concerns .flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
#concerns .concerns-card {
	width: calc((100% - 60px) / 3);
	padding: 24px 20px;
	border-radius: 4px;
	background-color: #fff;
	transition: .3s;
}
#concerns .concerns-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#concerns .concerns-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 120px;
	width: 100%;
	margin: 0 auto 15px;
}
#concerns .concerns-icon img {
	display: block;
	width: 120px;
	object-fit: contain;
}
#concerns .concerns-txt {
	margin-top: 20px;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	color: #555;
	letter-spacing: 0.5px;
}

/*=========================
選ばれる理由
=========================*/
#reason .reason-box {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-top: 40px;
	padding: 40px 50px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
}
#reason .reason-box:nth-of-type(2) {
	flex-direction: row-reverse;
}
#reason .reason-txt-box {
	flex: 1;
}
#reason .reason-number {
	font-weight: bold;
	font-size: 3em;
	line-height: 1.2;
	color: var(--accent);
}
#reason .reason-title {
	font-size: 24px;
	font-weight: bold;
	color: var(--main-color);
	margin-bottom: 15px;
	line-height: 1.5;
}
#reason .reason-txt {
	font-size: 16px;
	line-height: 1.8;
}
#reason .reason-img-box {
	width: 300px;
	flex-shrink: 0;
}
#reason .reason-img-box img {
	display: block;
	width: 100%;
	aspect-radio: 1 / 1;
	object-fit: cover;
	border-radius: 4px;
}

/*=========================
粉骨とは
=========================*/
#about .cate-txt {
	text-align: center;
}
#about .about-box {
	margin-top: 40px;
	padding: 24px 20px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #ddd;
}
#about h3 {
	font-size: 22px;
	font-weight: bold;
	color: var(--main-color);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
	margin-bottom: 20px;
}
#about .about-box .flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
#about .about-box .flexbox .box-txt {
	width: calc(100% - 330px);
	line-height: 1.8;
}
#about .about-box .flexbox .box-img {
	width: 300px;
	flex-shrink: 0;
}
#about .about-box .flexbox .box-img img {
	display: block;
	width: 100%;
	aspect-radio: 1 / 1;
	object-fit: cover;
	border-radius: 4px;
}
#about .about-need-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
}
#about .about-need-list li {
	width: calc((100% - 48px) / 3);
	padding: 24px 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	transition: .3s;
}
#about .about-need-list li:hover {
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#about .about-need-list li .about-icon {
	max-width: 120px;
	width: 100%;
	margin: 0 auto;
}
#about .about-need-title {
	text-align: center;
	margin-top: 15px;
	font-size: 20px;
	font-weight: bold;
}
#about .about-caution-txt {
	margin-top: 10px;
	padding-left: 20px;
	position: relative;
	color: #555;
	font-size: 14px;
	margin-bottom: 20px;
}
#about .about-caution-txt::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
#about .about-step-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}
#about .about-step-list li {
	width: calc((100% - 80px) / 3);
	border-radius: 4px;
	border: 1px solid #ddd;
	padding: 24px 20px;
	position: relative;
	text-align: center;
}
#about .about-step-list li::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	margin: auto;
	background-color: var(--accent);
	width: 20px;
	height: 20px;
	clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
	transform: translateY(-50%);
	transition: transform .25s ease;
}
#about .about-step-list li:last-child::before {
	background-color: transparent;
}
#about .about-step-number {
	display: inline-block;
	padding: 5px 20px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	margin-bottom: 15px;
	font-weight: bold;
}
#about .about-step-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: var(--main-color);
	margin-bottom: 15px;
}
#about .about-step-list .about-icon {
	max-width: 120px;
	width: 100%;
	margin: 0 auto 20px;
}
#about .about-step-txt {
	text-align: left;
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}

/*=========================
料金について
=========================*/
#price .cate-txt {
	text-align: center;
}
.price-main-box {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.price-main-txt-box {
	width: calc(60% - 20px);
	padding: 20px;
	border-radius: 4px;
	background-color: var(--l-accent);
}
.price-main-txt1 {
	text-align: center;
	color: var(--accent);
	font-weight: bold;
	font-size: 22px;
	letter-spacing: 1px;
	line-height: 1.2;
}
.price-main-txt2 {
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
}
.price-main-txt3 {
	text-align: center;
	margin-top: 10px;
}
.price-red {
	font-size: 2em;
	padding: 0 3px;
	color: #d9534f;
}
.price-sub-txt {
	margin-top: 10px;
	padding: 15px;
	padding-left: 35px;
	border-radius: 4px;
	background: #fff;
	color: #555;
	font-size: 15px;
	line-height: 1.7;
	position: relative;
}
.price-sub-txt::before {
	content: "※";
	position: absolute;
	top: 15px;
	left: 15px;
}
.price-main-img-box {
	width: 40%;
	border-radius: 4px;
	overflow: hidden;
}
#price .cate-box {
	margin-top: 40px;
	padding: 24px 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #fff;
}
#price h3 {
	font-size: 22px;
	font-weight: bold;
	color: var(--main-color);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
}
.pet-price-box .flexbox {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.pet-price-img-box {
	width: 40%;
	border-radius: 4px;
	overflow: hidden;
}
.pet-price-txt-box {
	width: calc(60% - 20px);
}
.pet-price-box-txt {
	line-height: 1.8;
}
.price-caution-list {
	margin-top: 20px;
	padding:10px 20px 20px;
	border-radius: 4px;
	background: #f5f5f5;
}
.price-caution-list li {
	padding: 10px 0 10px 27px;
	border-bottom: 1px dashed #ddd;
	position: relative;
}
.price-caution-list li::before {
	content: "✓";
	color: var(--accent);
	position: absolute;
	top: 7px;
	left: 0;
	font-size: 20px;
	font-weight: bold;
}
.additional-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.additional-list li {
	width: calc(50% - 10px);
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	transition: .3s;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.additional-list li:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.additional-list li .price-icon {
	width: 100px;
}
.additional-list li .additonal-txt-box {
	width: calc(100% - 120px);
}
.additonal-txt-box h4 {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	letter-spacing: 0.5px;
}
.additional-price-txt {
	font-weight: bold;
}
.additional-price-sub-txt {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}
.pet-price-list li {
	font-size: 18px;
	font-weight: bold;
	padding-left: 25px;
	position: relative;
	padding-bottom: 10px;
}
.pet-price-list li::before {
	content: "■";
	position: absolute;
	top: 7px;
	left: 0;
	color: var(--accent);
	font-size: 22px;
}
.pet-price-list li .price-red {
	font-size: 1.5em;
}

/*=========================
粉骨のメリットと注意点
=========================*/
#merit .cate-txt {
	text-align: center;
}
#merit .cate-box {
	margin-top: 40px;
	padding: 24px 20px;
	border-radius: 4px;
	background: #fff;
	border: 1px solid #ddd;
}
#merit h3 {
	font-size: 22px;
	font-weight: bold;
	color: var(--main-color);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
}
.merit-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.merit-list li {
	width: calc((100% - 40px) / 3);
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	transition: .3s;
}
.merit-list li:hover {
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.merit-number {
	font-weight: bold;
	font-size: 2.5em;
	color: var(--accent);
	line-height: 1;
}
.merit-icon {
	max-width: 150px;
	width: 100%;
	margin: 0 auto;
}
.merit-list-title {
	margin-top: 20px;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	color: var(--main-color);
}
.merit-list-txt {
	margin-top: 15px;
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}
.merit-caution-box .flexbox {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.merit-caution-card {
	width: calc(50% - 10px);
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #f5f5f5;
}
.merit-caution-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.merit-caution-box-txt {
	font-size: 16px;
	line-height: 1.8;
}

/*=========================
ご利用の流れ
=========================*/
#flow .cate-txt {
	text-align: center;
}
#flow .flow-content-box {
	padding-top: 40px;
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 30px;
}
#flow .flow-content-box::before {
	content: "";
	width: 1px;
	height: 100%;
	border-left: 1px dashed #999;
	position: absolute;
	top: 0;
	left: 30px;
	z-index: 0;
}
#flow .flow-content-box:first-of-type::before {
	height: calc(100% - 40px);
	top: 40px;
}
#flow .flow-content-box:last-of-type::before {
	height: 40px;
}
#flow .step-number {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	background-color: var(--accent);
	position: relative;
	z-index: 1;
}
#flow .flow-inner {
	width: calc(100% - 90px);
	padding: 24px 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
	background-color: #fff;
}
#flow .flow-inner .img-box {
	width: 35%;
	aspect-ratio: 16 / 9;
	border-radius: 4px;
	overflow: hidden;
	order: 2;
}
#flow .flow-inner .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#flow .flow-inner .txt-box {
	width: calc(65% - 24px);
}
#flow .step-label {
	display: inline-block;
	padding: 8px 20px 5px;
	border-radius: 999px;
	color: #fff;
	background: var(--accent);
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
}
#flow .flow-title {
	margin-top: 10px;
	font-size: 22px;
	color: var(--main-color);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
}
#flow .flow-txt {
	margin-top: 20px;
	line-height: 1.8;
}

/*=========================
よくある質問
=========================*/
.faq-icon::before,
.faq-icon::after {
	background-color: var(--accent);
}
.faq-item summary::before {
	color: var(--accent);
}

/*=========================
CTA
=========================*/
.cta {
	padding: 40px 0 0 0;
}

/* =====================================
SP
===================================== */
@media screen and (max-width:768px){
	.sec-title {
		font-size: 24px;
	}
	#concerns .flexbox {
		justify-content: flex-start;
		gap: 20px;
	}
	#concerns .concerns-card {
		width: calc(50% - 10px);
	}
	#concerns .concerns-txt {
		font-size: 14px;
		letter-spacing: 0;
	}
	#reason .reason-box {
		display: block;
		padding: 24px 20px;
		margin-top: 30px;
	}
	#reason .reason-title {
		font-size: 22px;
	}
	#reason .reason-img-box {
		max-width: 300px;
		width: 100%;
		margin:15px auto 0;
		text-align: center;
	}
	#about .cate-txt {
		text-align: left;
	}
	#about .about-box .flexbox .box-txt {
		width: 100%;
		margin-bottom: 20px;
		order: 2;
	}
	#about .about-box .flexbox .box-img {
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
		text-align: center;
		order: 1;
	}
	#about .about-need-list li {
		width: 100%;
	}
	#about .about-step-list li {
		width: 100%;
		padding: 24px 10px;
	}
	#about .about-step-list li::before {
		top: auto;
		right: 50%;
		bottom: -30px;
		width: 20px;
		height: 20px;
		transform: translateX(50%);
		clip-path: polygon(0 40%, 50% 90%, 100% 40%, 90% 30%, 50% 70%, 10% 30%);
	}
	#price .cate-txt {
		text-align: left;
	}
	.price-main-txt-box {
		width: 100%;
	}
	.price-main-txt1 {
		font-size: 18px;
		letter-spacing: 0.5px;
	}
	.price-main-txt2 {
		font-size: 20px;
	}
	.price-main-img-box {
		width: 100%;
	}
	.additional-list li {
		width: 100%;
	}
	.additional-list li .price-icon {
		max-width: 100px;
		width: 100%;
		margin: 0 auto;
	}
	.additional-list li .additonal-txt-box {
		width: 100%;
	}
	.additonal-txt-box h4,
	.additional-price-txt {
		text-align: center;
	}
	.pet-price-img-box {
		width: 100%;
	}
	.pet-price-txt-box {
		width: 100%;
	}
	.pet-price-list li {
		font-size: 16px;
		padding-left: 20px;
	}
	.pet-price-list li::before {
		font-size: 18px;
		top: 8px;
	}
	#merit .cate-txt {
		text-align: left;
	}
	.merit-list li,
	.merit-caution-card {
		width: 100%;
	}
	
	
	#flow .cate-txt {
		text-align: left;
	}
	#flow .flow-content-box {
		gap: 10px;
	}
	#flow .flow-inner {
		width: calc(100% - 60px);
		padding: 12px;
	}
	#flow .flow-inner .img-box {
		width: 100%;
		order: inherit;
	}
	#flow .flow-inner .txt-box {
		width: 100%;
	}
	#flow .step-number {
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
}