@charset "utf-8";
/* CSS Document */
.cate {
	padding: 60px 0;
}
.cate-txt {
	font-size: 16px;
	line-height: 1.8;
}
#about .cate-txt {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}
#services,
#reason {
	background-color: var(--bg-gray);
}
#services .flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
#services .service-card {
	width: calc((100% - 40px) / 3);
	background: #fff;
	border: 1px solid #eee;
	border-top:4px solid var(--accent-color);
	border-radius: 4px;
	padding: 30px 20px;
	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 .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-bottom: 15px;
}
#services .service-list {
	text-align: left;
	font-size: 14px;
	margin-bottom: 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:hover {
	color: var(--accent-color);
}
#services .more-btn {
	margin-top: auto;
}
#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){
	#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;
	}
}