@charset "UTF-8";

/*-----------------------------------

	flow_block

-----------------------------------*/
#flow_block {
	padding: 100px 0;
}
#flow_block h2 {
	font-size: 32px;
	font-weight: 700;
	font-family: "Zen Maru Gothic", serif;
	line-height: 1.7;
	letter-spacing: 0.04em;
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 50px;
	position: relative;
}
#flow_block h2::after {
	content: "";
	width: 200px;
	height: 1px;
	border-bottom: 2px dashed #F0B0BE;
	position: absolute;
	bottom: 0;
	left: calc(50% - 100px);
}
#flow_block .flow_inner01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 145px;
	font-family: "Zen Maru Gothic", serif;
	letter-spacing: 0.04em;
}
#flow_block .flow_inner01 .text {
	width: calc(100% - 350px);
}
#flow_block .flow_inner01 .text h3 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	padding-left: 25px;
	margin-bottom: 30px;
	position: relative;
}
#flow_block .flow_inner01 .text h3::before {
	content: "";
	width: 14px;
	height: 14px;
	background: #F0B0BE;
	border-radius: 50%;
	position: absolute;
	top: 7px;
	left: 0;
}
#flow_block .flow_inner01 .text .flow_list {
	width: fit-content;
	background: #F8F4E8;
	border-radius: 20px;
	padding: 30px 40px;
	display: flex;
	column-gap: 40px;
	margin-bottom: 20px;
}
#flow_block .flow_inner01 .text .flow_list ul li {
	font-size: 20px;
	line-height: 2;
	padding-left: 20px;
	position: relative;
}
#flow_block .flow_inner01 .text .flow_list ul li::before {
	content: "";
	width: 10px;
	height: 10px;
	background: #F0B0BE;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 0;
}
#flow_block .flow_inner01 .text p {
	font-size: 20px;
}
#flow_block .flow_inner01 .image {
	width: 350px;
}
#flow_block .flow_inner01 .image img {
	display: block;
	width: 285px;
	margin: 0 auto;
}
#flow_block .flow_inner02 {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 2.66%;
	margin-bottom: 50px;
}
#flow_block .flow_inner02 .box {
	width: 23%;
	background: #F8F4E8;
	border-radius: 20px;
	position: relative;
}
#flow_block .flow_inner02 .box:not(:last-child)::after {
	content: "";
	width: 20px;
	height: 50px;
	background: #F0B0BE;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
}
#flow_block .flow_inner02 .box:nth-of-type(4)::after {
	width: 0;
	height: 0;
}
#flow_block .flow_inner02 .box .step {
	width: 90px;
	height: 90px;
	background: #F0B0BE;
	color: #FFF;
	font-weight: 700;
	font-family: "Zen Maru Gothic", serif;
	line-height: 1;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: -45px;
	left: calc(50% - 45px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#flow_block .flow_inner02 .box .step span {
	font-size: 36px;
}
#flow_block .flow_inner02 .box img {
	border-radius: 20px 20px 0 0;
}
#flow_block .flow_inner02 .box .text {
	padding: 20px 25px 40px;
}
#flow_block .flow_inner02 .box .text .ttl {
	text-align: center;
	font-size: 23px;
	font-weight: 700;
	font-family: "Zen Maru Gothic", serif;
	line-height: 1.2;
	letter-spacing: -0.05em;
	padding-bottom: 10px;
	margin-bottom: 20px;
	position: relative;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#flow_block .flow_inner02 .box .text .ttl::after {
	content: "";
	width: 40px;
	height: 3px;
	background: #F0B0BE;
	border-radius: 3px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 20px);
}
#flow_block .contents_inner > p {
	text-align: center;
}
@media screen and (max-width: 1200px) {
	#flow_block .flow_inner01 .text {
		width: 520px;
	}
	#flow_block .flow_inner01 .text h3 {
		font-size: 24px;
		letter-spacing: 0;
	}
	#flow_block .flow_inner01 .text .flow_list {
		padding: 30px;
		flex-direction: column;
	}
	#flow_block .flow_inner01 .image {
		width: calc(100% - 520px);
	}
	#flow_block .flow_inner01 .image img {
		width: 240px;
	}
	#flow_block .flow_inner02 .box .text {
		padding: 20px 15px 30px;
	}
	#flow_block .flow_inner02 .box .text .ttl {
		font-size: 18px;
		letter-spacing: -0.12em;
		margin-bottom: 15px;
		height: 53px;
	}
}
@media screen and (max-width: 840px) {
	#flow_block {
		padding: 80px 0;
	}
	#flow_block h2 {
		font-size: 28px;
	}
	#flow_block .flow_inner01 {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 50px;
		margin-bottom: 100px;
	}
	#flow_block .flow_inner01 .text h3 {
		font-size: 22px;
		margin-bottom: 30px;
	}
	#flow_block .flow_inner01 .text h3::before {
		top: 6px;
	}
	#flow_block .flow_inner01 .image {
		width: 100%;
	}
	#flow_block .flow_inner01 .image img {
		max-width: 285px;
		width: 80%;
	}
	#flow_block .flow_inner02 {
		flex-wrap: wrap;
		gap: 50px 4%;
	}
	#flow_block .flow_inner02 .box {
		width: 48%;
	}
	#flow_block .flow_inner02 .box:not(:last-child)::after {
		width: 0;
		height: 0;
	}
	#flow_block .flow_inner02 .box .step {
		width: 80px;
		height: 80px;
		top: -40px;
		left: calc(50% - 40px);
	}
	#flow_block .flow_inner02 .box .step span {
		font-size: 32px;
	}
	#flow_block .flow_inner02 .box .text {
		padding: 20px 25px 30px;
	}
	#flow_block .flow_inner02 .box .text .ttl {
		letter-spacing: 0;
	}
}
@media screen and (max-width: 640px) {
	#flow_block {
		padding: 50px 0;
	}
	#flow_block h2 {
		font-size: 20px;
		padding-bottom: 15px;
		margin-bottom: 30px;
	}
	#flow_block h2::after {
		width: 150px;
		left: calc(50% - 75px);
	}
	#flow_block .flow_inner01 {
		row-gap: 30px;
		margin-bottom: 80px;
	}
	#flow_block .flow_inner01 .text {
		width: 100%;
	}
	#flow_block .flow_inner01 .text h3 {
		font-size: 16px;
		padding-left: 16px;
		margin-bottom: 20px;
	}
	#flow_block .flow_inner01 .text h3::before {
		width: 12px;
		height: 12px;
		top: 3px;
	}
	#flow_block .flow_inner01 .text .flow_list {
		padding: 20px;
		border-radius: 15px;
		margin-bottom: 10px;
	}
	#flow_block .flow_inner01 .text .flow_list ul li {
		font-size: 15px;
		padding-left: 15px;
	}
	#flow_block .flow_inner01 .text .flow_list ul li::before {
		width: 8px;
		height: 8px;
		top: 12px;
	}
	#flow_block .flow_inner01 .text p {
		font-size: 16px;
	}
	#flow_block .flow_inner02 {
		flex-wrap: wrap;
		gap: 40px 0;
		margin-bottom: 30px;
	}
	#flow_block .flow_inner02 .box {
		width: 100%;
	}
	#flow_block .flow_inner02 .box .step {
		width: 60px;
		height: 60px;
		top: -30px;
		left: calc(50% - 30px);
	}
	#flow_block .flow_inner02 .box .step span {
		font-size: 28px;
	}
	#flow_block .flow_inner02 .box .text .ttl {
		height: auto;
	}
}