@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-content {
	width: calc(75% - 30px);
}
.fv-img {
	width: 25%;
}
.fv-title {
	letter-spacing: 0;
	font-size: 40px;
}
.fv-image img {
	width:100%;
}
.fv-sub {
	text-align: left;
}
.cate {
	padding: 60px 0;
}
.cate-txt {
	font-size: 16px;
	line-height: 1.8;
}
#about .cate-txt {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
#services,
#reason {
	background-color: var(--bg-gray);
}
#services .flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 13px;
}
#services .service-card {
	width: calc((100% - 40px) / 4);
	background: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 0;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.03);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services .service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#services .service-card img {
	margin: 0 auto;
}
#services .service-card .service-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
	background-color: #f9f9f9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}
#services .service-card .service-icon img {
	width: 80px;
}
#services .service-title {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: var(--accent-color);
	margin: .5rem 0;
}
#services .service-list {
	text-align: left;
	font-size: 14px;
	margin: 0 1rem 20px;
}
#services .service-list li {
	padding: 5px 0 5px 13px;
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
}
#services .service-list li::before {
	content: "●";
	font-size: 10px;
	color: var(--accent-color);
	position: absolute;
	left: 0;
	top: 9px;
}
#services .service-list li a:hover {
	color: var(--accent-color);
}
#services .more-btn {
	margin: auto 1rem 1rem;
}
#services .more-btn a {
	display: block;
	background: var(--main-color);
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 14px;
}
#services .more-btn a:hover {
	opacity: 0.7;
}
#flow .flow-list {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 20px;
}
#flow .flow-card {
	border-radius: 4px;
	border: 1px solid #ddd;
	text-align: center;
	padding: 20px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#flow .flow-card:not(:last-child)::after{
	content:"";
	position:absolute;
	right: -20px;
	top:50%;
	width:20px;
	height:1px;
	background:#ddd;
}
#flow .flow-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#flow .flow-card .step-txt {
	display: inline-block;
	padding: 3px 10px;
	background-color: var(--accent-color);
	border-radius: 999px;
	color: #fff;
	font-weight: bold;
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 8px;
}
#flow .flow-card .flow-title {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	letter-spacing: 1px;
	margin-bottom: 10px;
}
#flow .flow-card .flow-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--bg-light);
	margin: 0 auto 10px;
	line-height: 90px;
}
#flow .flow-card .flow-icon img {
	width: 80px;
}
#flow .flow-card .flow-txt {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.5px;
	color: #555;
}
#reason .reason-icon img {
	max-width: 55px;
}
#reason .reason-desc {
	text-align: center;
	line-height: 1.8;
}
#faq {
	background-color: #fff;
}

@media screen and (max-width:1000px){
	#flow .flow-list {
		grid-template-columns: repeat(3,1fr);
	}
}

/* =====================================
SP
===================================== */
@media screen and (max-width:768px){
	.sp_block {
		display: block;
	}
	.fv-section {
		padding: 30px 20px;
	}
	.fv-content {
		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;
	}
	#services .service-card {
		width: 100%;
	}
	#services .service-title {
		font-size: 20px;
	}
	#services .service-list,
	#services .more-btn a {
		font-size: 16px;
	}
	#flow .flow-list {
		grid-template-columns: 1fr;
	}
	#flow .flow-card:not(:last-child)::after {
		right: 50%;
		top: auto;
		bottom: -20px;
		width: 1px;
		height: 20px;
	}
}