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

#works,
#price,
#points {
	background-color: var(--bg-gray);
}
#faq {
	background-color: #fff;
}

/*=========================
こんなお悩みありませんか？
=========================*/
#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,.08);
}
#concerns .icon-img {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 120px;
	width: 100%;
	height: auto;
	margin: 0 auto 15px;
	overflow: auto;
	border-radius: 0;
	border: none;
	box-shadow: none;
}
#concerns .icon-img img {
	display: block;
	width: 120px;
	object-fit: contain;
}
#concerns .card-txt {
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
	color: #555;
	letter-spacing: 0.5px;
}
#concerns .concerns-main-txt {
	margin-top: 40px;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 1px;
}

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

/*=========================
施工事例
=========================*/
#works .cate-txt {
	text-align: center;
}
#works .flexbox {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
}
#works .flexbox .work-card {
	width: calc((100% - 48px) / 3);
	border-radius: 4px;
	background-color: #fff;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
}
#works .work-card .work-place {
	margin-top: 10px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	color: var(--main-color);
}
#works .work-card .work-img {
	width: 100%;
	flex-shrink: 0;
}
#works .work-card .work-img img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 4px;
}
#works .work-card .work-list {
	margin: 10px 0;
}
#works .work-card .work-list dt {
	font-size: 15px;
	font-weight: bold;
	padding-left: 15px;
	position: relative;
	color: #555;
}
#works .work-card .work-list dt::before {
	content: "■";
	color: var(--accent);
	position: absolute;
	top: -1px;
	left: 0;
}
#works .work-card .work-list dd {
	padding-left: 20px;
}
#works .work-card .work-list dd ul li {
	color: #555;
	font-size: 14px;
	padding: 3px 0 3px 15px;
	position: relative;
}
#works .work-card .work-list dd ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #70952e;
	position: absolute;
	top: 10px;
	left: 0;
}
#works .work-card .work-list dd ul li::after {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	top: 12px;
	left: 2px;
}
#works .work-card .work-price {
	margin-top: auto;
	text-align: right;
	font-weight: bold;
	font-size: 15px;
	line-height: 1;
}
#works .work-card .work-price span {
	font-size: 1.8em;
	padding-right: 3px;
	color: #d9534f;
}
#works .work-card .work-note {
	margin-top: 10px;
	font-size: 13px;
	color: #555;
	padding-left: 15px;
	position: relative;
	line-height: 1.7;
}
#works .work-card .work-note::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
#works .work-tax {
	margin-top: 24px;
	font-size: 14px;
	color: #555;
	text-align: right;
}

/*=========================
お墓処分とは
=========================*/
#about .cate-txt {
	text-align: center;
}
#about .about-box {
	margin-top: 40px;
	padding: 24px 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
#about .about-box h3 {
	font-size: 22px;
	font-weight: bold;
	color: var(--main-color);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#about .about-box .box-txt {
	line-height: 1.8;
	margin-bottom: 20px;
}
#about .about-box .box-list-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
#about .about-box ul,
#price .content-box-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
#about .about-box ul li,
#price .content-box-list li {
	border-radius: 4px;
	border: 1px solid #ddd;
	padding: 24px 15px;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	color: #555;
}
#about .content-box-list li,
#price .content-box-list li {
	width: calc((100% - 80px) / 4);
}
#about .procedure-list li {
	width: calc((100% - 80px) / 5);
}
#about .content-box-list .icon-img,
#price .content-box-list .icon-img {
	border-radius: 0;
	box-shadow: none;
	border: none;
	max-width: 100px;
	width: 100%;
	margin: 0 auto;
}
#about .procedure-list li::before {
	content:"✓";
	display:block;
	width:80px;
	height:80px;
	margin:0 auto 10px;
	border:2px solid var(--accent);
	border-radius:50%;
	line-height:85px;
	color: var(--accent);
	font-size: 50px;
	margin-bottom: 20px;
}
#about .difference-table table {
	width:100%;
	border-collapse: collapse;
}
#about .difference-table th,
#about .difference-table td {
	padding:15px;
	border:1px solid #ddd;
}
#about .difference-table thead th {
	background-color: var(--accent);
	color:#fff;
}
#about .difference-table tbody th {
	background-color:#f5f5f5;
}

/*=========================
料金について
=========================*/
#price .cate-txt {
	text-align: center;
}
#price .price-box {
	margin-top: 40px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #fff;
	padding: 24px 20px;
}
#price .price-box .price-title {
	text-align: center;
	font-weight: bold;
	font-size: 22px;
	letter-spacing: 1px;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 2px solid var(--accent);
	color: var(--main-color);
}
#price .flexbox {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
#price .flexbox div {
	width: calc(50% - 15px);
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #fff;
	padding: 24px 20px;
}
#price .flexbox .list-title {
	text-align: center;
	font-weight: bold;
	color: var(--accent);
	border-bottom: 2px solid var(--accent);
	font-size: 18px;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
#price .price-main-list ul li {
	padding: 10px 5px;
	border-bottom: 1px dashed #ddd;
}
#price .price-main-list ul li:first-child {
	padding-top: 0;
}
#price .price-main-list ul li dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	font-size: 18px;
	font-weight: bold;
}
#price .price-main-list ul li dl dt {
	width: calc(70% - 20px);
}
#price .price-main-list ul li dl dd {
	width: 30%;
}
#price .price-main-list ul li dl dt small {
	font-size: 14px;
	color: #555;
	font-weight: normal;
	padding-right: 5px;
}
#price .price-main-list ul li dl dd span {
	font-size: 1.5em;
	color: #d9534f;
	font-weight: bold;
	padding-right: 3px;
}
#price .list-txt {
	color: #555;
	font-size: 14px;
}
#price .price-caution-list ul {
	margin: 15px 0;
}
#price .price-caution-list ul li {
	padding: 10px 0 10px 25px;
	position: relative;
	border-bottom: 1px dashed #ddd;
}
#price .price-caution-list ul li:first-child {
	padding-top: 0;
}
#price .price-caution-list ul li::before {
	content: "✓";
	color: var(--accent);
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 0;
}
#price .price-caution-list ul li:first-child::before {
	top: 0;
}
#price .price-caution-txt {
	font-size: 14px;
	color: #555;
	margin-top: 20px;
}
#price .content-box-list {
	margin-top: 20px;
}
#price .price-point-list {
	margin-top: 20px;
}
#price .price-point-list li {
	padding: 10px 5px;
	border-bottom: 1px dashed #ddd;
}
#price .price-point-list li:first-child {
	padding-top: 0;
}
#price .price-point-list .price-point-title {
	font-weight: bold;
	padding-left: 20px;
	position: relative;
}
#price .price-point-list .price-point-title::before {
	content:"";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	position: absolute;
	top: 9px;
	left: 0;
}
#price .price-point-list .price-point-txt {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin-top: 5px;
	padding-left: 20px;
}
#price .cate-sub-txt {
	margin-top: 20px;
	text-align: center;
	font-size: 18px;
	line-height: 1.8;
}
#price .cate-sub-txt span {
	font-weight: bold;
	background:linear-gradient(transparent 60%, #ff6 60%);
}

/*=========================
ご利用の流れ
=========================*/
#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 #ddd;
	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;
}
#flow .flow-inner .img-box {
	width: 40%;
	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(60% - 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;
}

/*=========================
お墓処分で確認しておきたいこと
=========================*/
#points .cate-txt {
	text-align: center;
}
#points .point-card-list {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}
#points .point-card {
	width: calc((100% - 48px) / 3);
	padding: 24px 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #fff;
}
#points .img-icon {
	max-width: 120px;
	width: 100%;
	margin: 0 auto;
}
#points .point-title {
	margin-top: 20px;
	text-align: center;
	color: var(--main-color);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
}
#points .point-txt {
	margin-top: 20px;
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}

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


/*=========================
CTA
=========================*/
.cta {
	padding: 40px 0 0 0;
}
#faq + .cta {
	padding-top: 0;
	padding-bottom: 60px;
}


/* =====================================
SP
===================================== */
@media screen and (max-width:768px){
	#concerns .flexbox {
		justify-content: flex-start;
		gap: 20px;
	}
	#concerns .concerns-card {
		width: calc(50% - 10px);
	}
	#concerns .card-txt {
		font-size: 15px;
		letter-spacing: 0;
	}
	#concerns .concerns-main-txt {
		margin-top: 20px;
		font-size: 18px;
		letter-spacing: 0;
	}
	#reason .reason-box {
		display: block;
		padding: 24px 20px;
		margin-top: 30px;
	}
	#reason .txt-box .reason-txt {
		margin-bottom: 20px;
	}
	#works .cate-txt,
	#about .cate-txt,
	#price .cate-txt,
	#flow .cate-txt,
	#points .cate-txt {
		text-align: left;
	}
	#works .flexbox .work-card {
		width: 100%;
	}
	#works .work-tax {
		text-align: left;
	}
	#about .about-box ul li, 
	#price .content-box-list li {
		width: calc(50% - 10px);
	}
	#about .procedure-list li {
		width: calc(50% - 10px);
	}
	#price .flexbox div {
		width: 100%;
	}
	#price .price-main-list ul li dl {
		gap: 0;
	}
	#price .price-main-list ul li dl dt {
		width: calc(45% - 10px);
	}
	#price .price-main-list ul li dl dd {
		width: 55%;
	}
	#price .cate-sub-txt {
		font-size: 16px;
		text-align: left;
	}
	#flow .flow-content-box {
		gap: 10px;
	}
	#flow .flow-inner {
		width: calc(100% - 60px);
	}
	#flow .flow-inner .img-box {
		width: 100%;
		order: inherit;
	}
	#flow .flow-inner .txt-box {
		width: 100%;
	}
	#flow .step-number {
		width: 50px;
		height: 50px;
		text-align: 50px;
	}
	#points .point-card {
		width: 100%;
	}
	
	
}