@charset "utf-8";
/* CSS Document */
:root {
	--accent: #416396;
	--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;
}
#reason,
#area,
#points {
	background-color: var(--bg-gray);
}

.fv-img {
	width: 31%;
}

/*=========================
こんなお悩みありませんか
=========================*/
#concerns {
	margin-top: 40px;
	background-color: #f5f5f5;
}
.concerns-list {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 30px;
}
.concerns-card {
	padding: 24px 20px;
	border-radius: 4px;
	background: #fff;
}
.concerns-icon {
	max-width: 120px;
	width: 100%;
	margin: 0 auto;
}
.concerns-icon img {
	width: 100%;
}
.concerns-title {
	margin-top: 20px;
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
	color: var(--main-color);
}

/*=========================
散骨とは
=========================*/
#about .cate-txt {
	text-align: center;
}
.about-box {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #ddd;
}
.about-txt-box {
	flex: 1;
	padding: 40px;
}
.about-box-title {
	font-size: 22px;
	font-weight: bold;
	color: var(--main-color);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.about-box-txt {
	line-height: 1.8;
	color: #555;
}
.about-box-list {
	margin: 5px auto 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.about-box-list li {
	width: calc(50% - 10px);
	padding: 5px 0 5px 15px;
	position: relative;
	font-weight: bold;
	border-bottom: 1px dashed #ddd;
}
.about-box-list li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	position: absolute;
	top: 14px;
	left: 0px;
}
.about-box-list li a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.about-box-list li a:hover {
	opacity: .7;
}
.about-box-img {
	width: 500px;
	flex-shrink: 0;
}
.about-box-img img {
	max-width: 100%;
	height: auto;
}
.about-box:nth-of-type(2) .about-box-img {
	order: 1;
}
.about-box:nth-of-type(2) .about-txt-box {
	order: 2;
}

/*=========================
選ばれる理由
=========================*/
.reason-box-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.reason-box-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #fff;
}
.reason-icons {
	max-width: 100px;
	width: 100%;
}
.reason-txt-box {
	width: calc(100% - 120px);
}
.reason-title {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	margin-bottom: 15px;
	line-height: 1.5;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
}
.reason-txt {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
}

/*=========================
料金について
=========================*/
#price .cate-txt {
	text-align: center;
}
.price-main {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px;
}
.price-txt-box {
	width: calc(100% - 468px);
	padding: 20px;
	border-radius: 4px;
	background-color: var(--l-accent);
}
.price-title {
	text-align: center;
	color: var(--accent);
	font-weight: bold;
	font-size: 22px;
	letter-spacing: 1px;
	line-height: 1.2;
}
.price-num,
.option-price-num {
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 5px;
}
.price-num span,
.charter-price-num span,
.option-price-num span {
	font-size: 2em;
	padding: 0 3px;
	color: #d9534f;
}
.price-txt {
	padding: 15px;
	border-radius: 4px;
	background: #fff;
	font-size: 15px;
	line-height: 1.7;
	text-align: center;
	color: #555;
}
.price-link,
.charter-link {
	margin: 20px auto 0;
	text-align: center;
	max-width: 400px;
	width: 100%;
}
.price-link a,
.charter-link a {
	display: block;
	padding: 12px 0;
	border-radius: 4px;
	background-color: #fff;
	border: 2px solid var(--accent);
	font-weight: bold;
	color: var(--accent);
	position: relative;
	transition: .25s ease;
}
.price-link a:hover,
.charter-link a:hover {
	background: var(--accent);
	color: #fff;
}
.price-link a::before,
.charter-link a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin: auto;
	background-color: var(--accent);
	width: 15px;
	height: 15px;
	clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
	transform: translateY(-50%);
	transition: transform .25s ease;
}
.price-link a:hover::before,
.charter-link a:hover::before {
	transform: translate(4px, -50%);
	background-color: #fff;
}
.price-img {
	width: 448px;
	border-radius: 4px;
	overflow: hidden;
}
.price-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.charter-price {
	margin-top: 50px;
}
#price .sub-title {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: var(--main-color);
	padding-bottom: 5px;
	border-bottom: 2px solid var(--accent);
	margin-bottom: 20px;
}
.charter-list {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.charter-card {
	width: calc(50% - 15px);
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
}
.charter-img {
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}
.charter-img img {
	width: 100%;
}
.charter-title {
	margin-top: 15px;
	font-size: 22px;
	text-align: center;
	letter-spacing: 0.5px;
	padding-bottom: 5px;
	border-bottom: 2px solid var(--accent);
}
.charter-price-num {
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 5px;
}
.charter-txt {
	padding: 15px;
	border-radius: 4px;
	background: var(--l-accent);
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}
.charter-link {
	margin-top: auto;
	padding-top: 20px;
}
.other-price {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.price-included,
.option-price{
	width: calc(50% - 15px);
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
}
.price-included-txt {
	text-align: center;
}
.price-included ul {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 15px;
}
.price-included ul li {
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #ddd;
}
.price-included ul li figure {
	max-width: 90px;
	width: 100%;
	margin: 0 auto 10px;
	text-align: center;
}
.price-included ul li figcaption {
	font-size: 15px;
	font-weight: bold;
	color: var(--main-color);
	text-align: center;
}
.option-card h4 {
	text-align: center;
	color: var(--accent);
	font-weight: bold;
	font-size: 22px;
	letter-spacing: 1px;
	line-height: 1.2;
}
.option-card .option-price-num + p {
	padding: 15px;
	border-radius: 4px;
	background: var(--l-accent);
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}

/*=========================
対応エリア
=========================*/
#area .cate-txt {
	text-align: center;
}
.area-list {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
.area-card {
	width: calc((100% - 60px) / 3);
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
.area-label {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	background: var(--accent);
	letter-spacing: 0.5px;
	max-width: 130px;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}
.area-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.area-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.area-title {
	margin-top: 10px;
	text-align: center;
	font-size: 22px;
	color: var(--main-color);
	letter-spacing: 1px;
	padding-bottom: 5px;
	border-bottom: 2px solid var(--accent);
}
.area-price-label {
	margin-top: 10px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 0.5px;
	color: var(--accent);
}
.area-price {
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 1.2;
}
.area-price span {
	font-size: 2em;
	padding: 0 3px;
	color: #d9534f;
}
.area-txt {
	font-size: 14px;
	line-height: 1.7;
}
.area-note {
	margin-top: 5px;
	font-size: 13px;
	color: #555;
	padding: 5px;
	background-color: var(--l-accent);
	border-radius: 4px;
}
.area-link-btn {
	margin-top: auto;
	padding-top: 15px;
	text-align: center;
}
.area-link-btn a,
.common-btn a {
	display: block;
	padding: 12px 0;
	border-radius: 4px;
	background-color: #fff;
	border: 2px solid var(--accent);
	font-weight: bold;
	color: var(--accent);
	position: relative;
	transition: .25s ease;
}
.area-link-btn a:hover,
.common-btn a:hover {
	background: var(--accent);
	color: #fff;
}
.area-link-btn a::before,
.common-btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin: auto;
	background-color: var(--accent);
	width: 15px;
	height: 15px;
	clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
	transform: translateY(-50%);
	transition: transform .25s ease;
}
.area-link-btn a:hover::before,
.common-btn a:hover::before {
	transform: translate(4px, -50%);
	background-color: #fff;
}
.area-more-txt {
	margin-top: 40px;
	text-align: center;
}
.common-btn {
	max-width: 400px;
	width: 100%;
	margin: 20px auto 0;
	text-align: center;
}
.common-btn a {
	font-size: 18px;
	letter-spacing: 1px;
	padding: 16px 0;
}

/*=========================
散骨までの流れ
=========================*/
#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;
}
#flow .flow-sub-txt {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #555;
	padding-left: 15px;
	position: relative;
}
#flow .flow-sub-txt::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

/*=========================
散骨で確認しておきたいこと
=========================*/
#points .cate-txt {
	text-align: center;
}
.point-list {
	max-width: 1000px;
	width: 100%;
	margin: 40px auto 0;
	padding: 30px 60px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #fff;
}
.point-card {
	padding: 30px 0;
	border-bottom: 1px solid #ddd;
}
.point-card:first-of-type {
	padding-top: 0;
}
.point-card:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
}
.point-title {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 1px;
	padding-left: 32px;
	position: relative;
}
.point-title::before {
	content: "✓";
	font-weight: bold;
	font-size: 26px;
	color: var(--accent);
	position: absolute;
	top: -3px;
	left: 0;
}
.point-txt {
	margin-top: 10px;
	line-height: 1.8;
	padding-left: 32px;
	color: #555;
}
.point-check-list {
	padding-left: 32px;
	margin-top: 20px;
}
.point-check-list dt {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 1.3;
	border-left: 5px solid var(--accent);
	padding-left: 10px;
}
.point-check-list dd {
	margin-top: 10px;
}
.point-check-list dd ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
}
.point-check-list dd ul li {
	width: calc(50% - 10px);
	padding: 10px 0 10px 15px;
	position: relative;
	border-bottom: 1px dashed #ddd;
}
.point-check-list dd ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--accent);
	position: absolute;
	top: 18px;
	left: 0;
}
.point-sub-txt {
	font-size:14px;
	color:#666;
	background:#f8f8f8;
	padding:10px 15px 10px 27px;
	border-radius:4px;
	margin-top: 20px;
	position: relative;
}
.point-sub-txt::before {
	content: "※";
	position: absolute;
	top: 10px;
	left: 10px;
}

/*=========================
関連サービス
=========================*/
#related .cate-txt {
	text-align: center;
}
.related-list {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.related-card {
	width: calc((100% - 60px) / 3);
	padding: 24px 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
}
.related-img {
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
}
.related-title {
	font-size: 22px;
	color: var(--main-color);
	text-align: center;
	margin: 15px auto 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
}
.related-txt {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-top: 15px;
}
.related-btn a {
	display: block;
	margin-top: 20px;
	text-align: center;
	padding: 15px;
	border-radius: 4px;
	border: 2px solid var(--accent);
	color: var(--accent);
	font-weight: bold;
	position: relative;
	transition: .25s ease;
}
.related-btn a:hover {
	background: var(--accent);
	color: #fff;
}
.related-btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin: auto;
	background-color: var(--accent);
	width: 15px;
	height: 15px;
	clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
	transform: translateY(-50%);
	transition: transform .3s ease;
}
.related-btn a:hover::before {
	transform: translate(4px, -50%);
	background-color: #fff;
}

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

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

/* =====================================
SP
===================================== */
@media screen and (max-width:768px){
	ul.breadcrumb {
		width: 100%;
	}
	.fv-img {
		width: 90%;
	}
	.sec-title {
		font-size: 24px;
	}
	.type-list {
		grid-template-columns: 1fr;
	}
	.concerns-list {
		grid-template-columns: repeat(2,1fr);
		gap: 15px;
	}
	.concerns-title {
		font-size: 14px;
		letter-spacing: 0;
	}
	#about .cate-txt {
		text-align: left;
	}
	.about-box {
		margin-top: 30px;
	}
	.about-txt-box {
		padding: 20px;
	}
	.about-box-title {
		font-size: 20px;
	}
	.about-box-img {
		width: 100%;
		padding: 0 20px 20px;
	}
	.about-box:nth-of-type(2) .about-box-img {
		order: 2;
	}
	.about-box:nth-of-type(2) .about-txt-box {
		order: 1;
	}
	.about-box-list li {
		width: 100%;
	}
	.reason-box-list {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.reason-box-card {
		padding: 15px;
	}
	.reason-icons {
		max-width: 80px;
	}
	.reason-txt-box {
		width: calc(100% - 100px);
	}
	.reason-title {
		margin-bottom: 10px;
	}
	.reason-title {
		padding-bottom: 5px;
	}
	.reason-txt {
		font-size: 14px;
	}
	#price .cate-txt {
		text-align: left;
	}
	.price-txt-box {
		width: 100%;
		order: 2;
	}
	.price-txt {
		text-align: left;
	}
	.price-img {
		order: 1;
	}
	.charter-card {
		width: 100%;
	}
	.price-included,
	.option-price {
		width: 100%;
	}
	.price-included-txt {
		text-align: left;
	}
	.price-included ul {
		grid-template-columns: repeat(2,1fr);
	}
	.price-included ul li figcaption {
		font-size: 14px;
	}
	.price-note {
		text-align: left;
	}
	
	#area .cate-txt {
		text-align: left;
	}
	.area-card {
		width: 100%;
	}
	#flow .cate-txt {
		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;
		line-height: 50px;
	}
	#flow .step-label {
		padding: 5px 20px 3px;
		font-size: 12px;
	}
	#flow .flow-title {
		font-size: 20px;
	}
	#flow .flow-txt {
		margin-top: 15px;
		font-size: 14px;
		line-height: 1.7
	}
	#points .cate-txt {
		text-align: left;
	}
	.point-list {
		margin-top: 30px;
		padding: 25px 20px;
	}
	.point-card {
		padding: 25px 0;
	}
	.point-title {
		font-size: 18px;
		line-height: 1.6;
		letter-spacing: 0;
		padding-left: 27px;
	}
	.point-title::before {
		font-size: 22px;
		top: -1px;
	}
	.point-txt {
		margin-top: 8px;
		padding-left: 27px;
		font-size: 14px;
		line-height: 1.8;
	}
	.point-check-list dt {
		font-size: 16px;
	}
	.point-check-list dd ul li {
		width: 100%;
		font-size: 14px;
	}
	#related .cate-txt {
		text-align: left;
	}
	.related-card {
		width: 100%;
	}
}