@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;
}
#kaiyo,
#hayama {
	background-color: var(--bg-gray);
}
#kaiyo .cate-txt,
#shinrin .cate-txt,
#hayama .cate-txt {
	text-align: center;
}
.fv-img {
	width: 31%;
}

/*=========================
散骨方法から探す
=========================*/
.type-list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	justify-content: space-between;
	gap: 30px;
}
.type-card a {
	display: block;
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	transition: transform .25s ease;
}
.type-card a:hover {
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	transform: translateY(-4px);
}
.type-img {
	width:　100%;
	margin:0 auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 4px;
}
.type-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.type-title {
	margin-top: 10px;
	font-size: 22px;
	letter-spacing: 1px;
	text-align: center;
	color: var(--main-color);
	padding-bottom: 5px;
	border-bottom: 2px solid var(--accent);
}
.type-txt {
	margin-top: 10px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.8px;
	line-height: 1.8;
}
.type-link-btn {
	margin-top: 15px;
	text-align: center;
	padding: 12px 0;
	border-radius: 4px;
	border: 2px solid var(--accent);
	font-size: 18px;
	letter-spacing: 0.5px;
	font-weight: bold;
	color: var(--accent);
	position: relative;
	transition: transform .25s ease;
}
.type-card a:hover .type-link-btn {
	color: #fff;
	background-color: var(--accent);
}
.type-link-btn::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;
}
.type-card a:hover .type-link-btn::before {
	background-color: #fff;
	transform: translate(4px, -50%);
}



.area-list {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}
.tab-contents .area-list {
	margin-top: 0;
}
#hayama .area-list {
	grid-template-columns: 1fr;
	justify-items: center;
}
.area-card {
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
#hayama .area-card {
	max-width: 360px;
	width: 100%;
}
.area-sub-box {
	margin-top: 60px;
}
.area-sub-box .area-sub-title {
	font-size: 28px;
	text-align: center;
	font-weight: bold;
	padding-bottom: 15px;
	position: relative;
}
.area-sub-box .box-txt {
	margin-top: 30px;
	text-align: center;
}
.area-sub-box .area-sub-title::before {
	content: "";
	width: 100px;
	height: 5px;
	background-color: var(--accent);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.area-label {
	max-width: 130px;
	width: 100%;
	text-align: center;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.5px;
}
.area-img {
	margin-top: 10px;
	border-radius: 4px;
	overflow: hidden;
	width: 100%;
}
.area-img img {
	width: 100%;
}
.area-title {
	margin-top: 10px;
	text-align: center;
	font-size: 20px;
	color: var(--main-color);
	letter-spacing: 0.5px;
	padding-bottom: 5px;
	border-bottom: 2px solid var(--accent);
}
.price-txt {
	margin-top: 5px;
	line-height: 1.2;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.price-red {
	font-size: 2em;
	padding: 0 3px;
	color: #d9534f;
}
.area-txt {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.7;
}
.area-dl-list {
	margin-top: 10px;
}
.area-dl-list dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border: 1px solid #ddd;
	font-size: 14px;
}
.area-dl-list dl:not(:first-child) {
	border-top: none;
}
.area-dl-list dl dt {
	width: 37%;
	padding: 8px;
	font-weight: bold;
	background-color: #eee;
}
.area-dl-list dl dd {
	width: 63%;
	padding: 8px;
}
.area-dl-list dl dd span {
	font-weight: bold;
	color: #d9534f;
}
.area-option-list {
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 10px;
}
.option-four-list {
	grid-template-columns: repeat(4,1fr);
}
.area-option-card {
	padding: 5px;
	border-radius: 4px;
	border: 1px solid var(--accent);
	text-align: center;
}
.area-option-card img {
	max-width: 70px;
	width: 100%;
}
.area-option-card figcaption {
	font-size: 13px;
	font-weight: bold;
	color: var(--accent);
}
.font-mini {
	font-size: 11px!important;
	margin-top: 3px;
}
.option-four-list .area-option-card figcaption {
	font-size: 12px;
}
.area-link-btn {
	margin-top: auto;
	padding-top: 10px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
	text-align: center;
}
.area-link-btn:not(:has(.area-more-btn)) {
	grid-template-columns: 1fr;
}
.area-link-btn div a {
	display: block;
	padding: 12px 5px;
	border-radius: 4px;
	border: 2px solid;
	font-weight: bold;
	letter-spacing: 0.5px;
	transition: .25s ease;
}
.area-link-btn div a:hover {
	color: #fff;
}
.area-more-btn a {
	border-color: var(--accent);
	color: var(--accent);
}
.area-more-btn a:hover {
	background-color: var(--accent);
}
.area-entry-btn a {
	border-color: #ff8500;
	color: #ff8500;
}
.area-entry-btn a:hover {
	background-color: #ff8500;
}
.area-note {
	margin-top: 30px;
	padding: 20px 30px;
	border-radius: 4px;
	background: var(--l-accent);
	border: 1px solid var(--accent);
}
.area-note li {
	padding: 10px 0 10px 20px;
	font-size: 14px;
	color: #555;
	border-bottom: 1px dashed #ddd;
	position: relative;
}
.area-note li:first-child {
	padding-top: 0;
}
.area-note li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.area-note li::before {
	content: "※";
	position: absolute;
	top: 10px;
	left: 0;
}
.area-note li:first-child::before {
	top: 0;
}

/*=========================
タブ切替
=========================*/
.area-tab {
	margin-top: 40px;
}
.tab-buttons {
	display: flex;
	border: 1px solid #ddd;
}
.tab-buttons button {
	width: calc(100% / 6);
	padding: 20px;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s;
	background-color: #fff;
	border-left: 1px solid #ddd;
	font-weight: bold;
	color: var(--main-color)
}
.tab-buttons button:first-of-type {
	border-left: none;
}
.tab-buttons button:hover {
	background: var(--l-accent);
}
.tab-buttons button.active {
	background-color: var(--accent);
	color: #fff;
}
.tab-contents .content {
	display: none;
	padding: 20px 0;
	animation: fadeIn 0.3s ease-in-out;
}
.tab-contents .content.active {
	display: block;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


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

@media screen and (max-width:960px){
	.tab-scroll {
		overflow-x: auto;
	}
	.tab-buttons {
		display: flex;
		width: max-content;
	}
	.tab-buttons::-webkit-scrollbar {
		display: none; /* Chrome / Safari */
	}
	.tab-buttons button {
		flex: 0 0 auto;
		white-space: nowrap;
		width: 140px;
		font-size: 15px;
		padding: 20px 10px;
	}
	
}

/* =====================================
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;
		gap: 20px;
	}
	.type-img {
		width:100%;
		aspect-ratio: 16 / 9;
	}
	.type-img img {
		width: 100%;
		height: 100%;
		object-position: center;
	}
	#kaiyo .cate-txt,
	#shinrin .cate-txt,
	#hayama .cate-txt {
		text-align: left;
	}
	.area-list {
		grid-template-columns: 1fr;
	}
	.area-card {
		padding: 10px;
	}
	.area-note {
		padding: 15px;
	}
}