@charset "utf-8";

.sub_title {
	margin: 20px auto;
	letter-spacing: 0.2em;
	
}
.sub_title span {
	padding-left: 10px;
	font-size: 0.5em;
}
.sub_title h4 {
	font-size: 2em;
	font-weight: 800;
}
.sub_title p {
	max-width: 650px;
	margin: 10px auto;
	font-size: 1em;
	line-height: 2em;
	letter-spacing: 0.2em;
	text-align: justify;
}
.sub_title h5 {
	color: #FF6699;
	margin: 40px 0 0;
	font-size: 2em;
	font-weight: 800;
	border-bottom: 1px solid #FF6699;
	text-align: left;
}
.content_box {
	box-sizing: border-box;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}
.sp_box {
	margin: 20px 0;
}
.box {
}
.box img {
	display: none;
}
.box_title {
	font-size: 1.2em;
	color: #FF6699;
	font-weight: bold
}
.box_comment {
	box-sizing: border-box;
	margin: 20px 0;
	line-height: 2em;
	letter-spacing: 0.2em;
	text-align: justify;
}
.comment_bold {
	font-size: 1.2em;
	display: block;
	font-weight: bold;
	
}
.process_box {
	width: 100%;
	
}
.process_box ul {
	
	display: flex;
	align-items: center;
	flex-direction: column;
}
.process_box li {
	z-index: 0;
	width: 90%;
	padding: 20px;
	background: #FF6699;
	color: #FFE6EE;
	border-radius: 45px;
	font-size: 1.2em;
	font-weight: bold;
	position: relative;
	margin-bottom: 90px;
}
.process_box li::after {
	display: block;
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	bottom: -80px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 30px solid #FF6699;
	border-right: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
}
.process_box li:last-child::after {
	display: none;
}
.process_box_content {
	width: 100%;
	margin: 20px 0;
	line-height: 2em;
	letter-spacing: 0.2em;
}
.process_box_content h5 {
	font-size: 2em;
	font-weight: bold;
	margin: 20px 0;
}
.process_box_content p {
	text-align: justify;
	margin: auto;
	max-width: 650px;
}
.r_sp {
	display: block;
	padding-top: 10px;
	text-align: right;
}
.requ_box {
	width: 90%;
	line-height: 1.5em;
	letter-spacing: 0.15em;
}
.requ_box dl {
	margin: 20px 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 20px;
}
.requ_box dt {
	width: 100%;
	padding: 8px;
	background: #FF6699;
	color: #FFE6EE;
	border-radius: 8px;
}
.requ_box dd {
	width: 100%;
	text-align: left;
}
.newline {
	font-size: 0.5em;
}

.requ_btm dd {
	text-align: center;
}
.btm_c {
	text-align: center;
}
.btm_c p {
	text-align: justify;
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 768px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	.sub_title {
		text-align: left;
	}
	.content_box {
		flex-direction: row;
		align-items: flex-start;
	}
	.reverse {
		flex-direction: row-reverse;
	}
	.sp_box {
		display: none;
	}
	.box {
		box-sizing: border-box;
		width: 48%;		
		padding: 10px;
	}
	.box img {
		display: block;
	}
	.process_box li {
		width: 70%;
		letter-spacing: 0.2em;
	}
	.r_sp {
		display: inline-block;
	}
	.requ_box {
		width: 48%;
	}
	.requ_box dl {
		flex-direction: row;
		align-items: baseline;
		
	}
	.requ_box dt {
		width: 30%;

	}
	.requ_box dd {
		
		width: calc(100% - 30%);
	}
	.con_btm {
		width: 80%;
	}
	.requ_btm dd p {
		text-align: left;
	}
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
	.box {
		height: 350px;
	}
	.requ_box dt {
		width: calc(100% - 70%);

	}
	.requ_box dd {
		width: calc(100% - 30%);
	}
	.btm_c > .con_btm {
		width: 50%;
	}
}