@charset "utf-8";
/* CSS Document */
.sp_block {
	display: none;
}
/*==========================
パンくずリスト
==========================*/
#breadcrumb {
	background-color: #fff;
	border-bottom: 1px solid #ddd;
}
ul.breadcrumb {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-content: center;
	padding: 12px 20px;
}
ul.breadcrumb li {
	list-style: none;
	font-size: 13px;
}
ul.breadcrumb li a {
	text-decoration: none;
	color: #666;
}
ul.breadcrumb li:first-child a::before {
	font-family: FontAwesome;
	content: "\f015";
	font-weight: normal;
	font-size: 1em;
	color: #666;
	padding-right: 3px;
}
ul.breadcrumb li::after {
	content: ">";
	padding: 0 8px;
	color: #666;
}
ul.breadcrumb li:last-child::after {
	content: "";
}
ul.breadcrumb li a:hover {
	color: var(--accent-color);
}

/*==========================
FV
==========================*/
.fv-inner {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content:space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}
.fv-section {
	padding: 50px 20px;
}
.fv-contents {
	width: calc(67% - 30px);
}
.fv-img {
	width: 33%;
}
.fv-image img {
	width:100%;
}
.fv-sub {
	text-align: left;
}

/*====================================
CTA
=====================================*/
.cta {
	padding-bottom: 40px;
}
.cta-inner {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	border-radius: 4px;
	padding: 24px 20px;
	background-color: var(--bg-light);
	border: 1px solid #ddd;
	text-align: center;
}
.cta-title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}
.cta-txt {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
}
.cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.cta-btns div {
	width: calc((100% - 40px) / 3);
	text-align: center;
}
.cta-btns div a {
	display: block;
	border-radius: 4px;
	padding: 15px 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: .25s ease;
	border: 2px solid;
}
.cta-btns div.tel-btn a {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: #fff;
}
.cta-btns div.line-btn a {
	background-color: #fff;
	border-color: #06C755;
	color: #06C755;
}
.cta-btns div.mail-btn a {
	background-color: #fff;
	border-color: var(--main-color);
	color: var(--main-color);
}
.cta-btns div a:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.cta-btns div i {
	padding-right: 15px;
}
.cta-time-txt {
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	color: #555;
}

/* =====================================
SP
===================================== */
@media screen and (max-width:768px){
	.sp_block {
		display: block;
	}
	.fv-section {
		padding: 30px 20px;
	}
	.fv-contents {
		width: 100%;
	}
	.fv-catch {
		font-size: 16px;
	}
	.fv-title {
		font-size: 22px;
		letter-spacing: 0.05em;
		line-height: 1.5;
	}
	.fv-img {
		width: 90%;
		margin: 0 auto;
	}
	.cta-title {
		font-size: 20px;
	}
	.cta-txt {
		font-size: 14px;
	}
	.cta-btns div {
		margin-bottom: 0;
	}
	.cta-btns div.tel-btn {
		width: calc(50% - 10px);
		order: 2;
	}
	.cta-btns div.line-btn {
		width: 100%;
		order: 1;
	}
	.cta-btns div.mail-btn {
		width: calc(50% - 10px);
		order: 3;
	}
	.cta-btns div a {
		font-size: 14px;
	}
}