@charset "UTF-8";

/**
 * オリジナルcss
 */

/* page */
.flow_detail_contents {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.flow_detail_content_elements {
	display: flex;
	flex-wrap: wrap;
	gap: 0 4%;
	align-items: center;
}

.flow_detail_content {
	background: var(--c3);
	/* border: 1px solid #1E3932; */
	padding: 60px 60px;
	position: relative;
}


.flow_detail_content_info {
	flex: 1;
}

.flow_detail_content_image {
	width: 30%;
}

.flow_detail_content_info_title {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	margin-bottom: 30px;
}

.flow_detail_content_info_title_step {
	width: 85px;
	height: 85px;
	position: relative;
	background: var(--c2);
	color: #fff;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
}

.flow_detail_content_info_title_step_detail {
	font-family: var(--en);
	/* font-weight: 700; */
	line-height: 1;
	font-size: 1.7rem;
	position: absolute;
	width: 100%;
	left: 0;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.flow_detail_content_info_title_step_detail_title {
	display: block;
	font-size: 1em;
}

.flow_detail_content_info_title_step_detail_number {
	display: block;
	font-size: 2.2em;
	margin-top: 0.1em;
}

.flow_detail_content_info_title h3 {
	margin: 0;
	width: calc(100% - 115px);
	font-size: 1.5em;
}

.flow_detail_content_info_content {
	font-size: 1.6rem;
	line-height: 2;
}

.flow_detail_content_arrow img {
	display: block;
	filter: grayscale(100%);
	filter: brightness(0);
}

.flow_detail_contents .flow_detail_content_arrow:last-child {
	display: none;
}

.flow_step_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	list-style: none;
	padding: 0;
}

.flow_step_buttons li {
	width: calc(50% - 5px);
}

.flow_step_buttons li a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 1em;
	color: #fff;
	text-align: center;
	padding: 18px 6px;
}

.flow_step_buttons li:nth-child(1) a {
	background: var(--c1);
}

.flow_step_buttons li:nth-child(2) a {
	background: #6C6C6C;
}

.flow_step_buttons li a img {
	display: inline-block;
	height: 1.5em;
	margin-right: 1em;
}

.flow_step_note {
	width: 100%;
	text-align: right;
	font-size: 0.8em;
	margin-top: 12px;
}

.flow_step_element_info_add_content {
	margin-top: 20px;
}

.flow_step_element_info_add_content a {
	display: block;
	color: #fff;
	background: #3E3E3E;
	text-decoration: none;
	padding: 28px 6px;
	text-align: center;
}

.flow_step_element_info_add_content a img {
	vertical-align: middle;
	margin-left: 12px;
}

.flow_detail_content_image_sp {
	display: none;
}

@media screen and (max-width: 1110px) {
	.content_flow_list {
		gap: 16px;
	}

	.content_flow_element_wrap {
		width: calc((100% - 141px) / 4);
	}

	.content_flow_element_number {
		font-size: 22px;
	}

	.content_flow_element_icon img {
		max-width: 100px;
	}
}

@media screen and (max-width:940px) {
	.before_flow {
		.before_flow_image {
			width: 100%;
		}

		.before_flow_text {
			width: 100%;
			padding-left: 0;
			padding-right: 0;
		}
	}

	.content_flow_list {
		gap: 40px 16px;
	}

	.content_flow_element_wrap {
		width: calc((100% - 78px) / 2);
	}
}

@media screen and (max-width:850px) {
	.flow_detail_content_info {
		width: 100%;
	}

	.flow_detail_content_image {
		display: none;
	}

	.flow_detail_content_image_sp {
		display: block;
		margin: 0 auto;
		margin-bottom: 20px;
		text-align: center;
		width: 80%;
	}
}

@media screen and (max-width:768px) {
	.flow_detail_contents {
		gap: 24px;
	}

	.flow_detail_content_info_title {
		gap: 12px;
	}

	.flow_detail_content_info_title_step_detail_number {
		font-size: 1em;
	}

	.content_body .flow_detail_content_info_title h3 {
		/* width: calc(100% - 72px); */
		text-align: left;
		font-size: 1.1em;
		flex: 1;
	}

	.flow_detail_contents {
		margin-top: 40px;
	}

	.flow_detail_content_info_title_step {
		width: 72px;
		height: 72px;
	}

	.flow_detail_content_info_content {
		font-size: 1.4rem;
	}

}

@media screen and (max-width:639px) {
	.content_flow_list {
		gap: 32px 10px;
	}

	.content_flow_element_arrow {
		width: 10px;
	}

	.content_flow_element_wrap {
		width: calc((100% - 50px) / 2);
	}

	.content_flow_element_number {
		font-size: 16px;
	}

	.content_flow_element_icon img {
		max-width: 80px;
	}

	.content_flow_element_body h4 {
		margin-top: 0;
	}

	.flow_detail_content {
		padding: 20px 15px;
	}
}

@media screen and (max-width:500px) {
	.flow_step_buttons li {
		width: 100%;
	}
}