@charset "utf-8";
/* CSS Document */
:root {
	--accent: #007943;
}
.fv-catch {
	background: var(--accent);
}
.sec-title span {
	color: var(--accent);
}
.cate {
	padding: 60px 0;
}
.cate-txt {
	font-size: 16px;
	line-height: 1.8;
}

/*=========================
○○とは（ABOUT）
=========================*/
#about .cate-box {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #ddd;
}
#about .cate-box .txt-box {
	flex: 1;
	padding: 40px;
}
#about .cate-box .img-box {
	width: 500px;
	flex-shrink: 0;
}
#about .cate-box:nth-of-type(2) .txt-box {
	order: 2;
}
#about .cate-box:nth-of-type(2) .img-box {
	order: 1;
}
#about h3.box-title {
	font-size: 22px;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 10px;
	margin-bottom: 15px;
}
#about .box-txt {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
}
#about .about-list {
	padding: 10px 0;
}
#about .about-list li {
	padding: 5px 0 5px 15px;
	position: relative;
	font-size: 15px;
	color: #555;
}
#about .about-list li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--accent);
	position: absolute;
	top: 15px;
	left: 0;
}
#about .cate-txt2 {
	margin-top: 40px;
	text-align: center;
	line-height: 1.8;
	font-size: 16px;
}

/*=========================
涙そうそうが選ばれる理由
=========================*/
.reason-card {
	border-color: var(--accent);
}
.reason-icon {
	width: 100px;
	height: 100px;
}
.reason-icon img {
	width: 80px;
}
.reason-title span {
	color: var(--accent);
}
.reason-desc {
	text-align: center;
	line-height: 1.8;
}

/*=========================
関連サービス
=========================*/
#related .cate-txt {
	text-align: center;
}
#related .related-list {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	text-align: center;
}
#related .related-card a {
	display: flex;
	align-items: center;
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#related .related-card a:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#related .related-card .icon-img {
	flex-shrink: 0;
	margin: 0 20px 0 0;
	width: 80px;
	height: 80px;
}
#related .related-card .icon-img img {
	width: 70px;
}
#related .related-card .related-title {
	margin: 0;
	width: calc(100% - 100px);
	font-size: 18px;
	text-align: left;
}

/*=========================
ご利用の流れ
=========================*/
#flow {
	margin-bottom: 40px;
}
#flow .flow-list {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 20px;
}
#flow .flow-card {
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #fff;
	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;
	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;
}
.lower-layer-flow .flow-card .step-txt {
	background-color: var(--accent)!important;
}

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

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

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

/* =====================================
SP
===================================== */
@media screen and (max-width:768px){
	#about .cate-box .txt-box {
		padding: 20px 20px 0 20px;
	}
	#about .cate-box .img-box {
		padding: 20px;
		width: 100%;
	}
	#about .cate-txt2 {
		text-align: left;
		margin-top: 20px;
	}
	#about .cate-box:nth-of-type(2) .img-box {
		order: 2;
	}
	#related .cate-txt {
		text-align: left;
	}
	#related .related-list {
		grid-template-columns: repeat(2,1fr);
	}
	#related .related-card a {
		height: 180px;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 15px 10px;
		
	}
	#related .related-card .icon-img {
		margin: 0 auto;
	}
	#related .related-card .related-title {
		font-size: 16px;
		width: 100%;
		margin-top: 15px;
		height: 51px;
		display: flex;
		align-items: center;
		text-align: center;
		justify-content: center;
	}
	
	#flow .flow-list {
		grid-template-columns: 1fr;
	}
	#flow .flow-card:not(:last-child)::after {
		right: 50%;
		top: auto;
		bottom: -20px;
		width: 1px;
		height: 20px;
	}
}
