@charset "utf-8";

.flow-area {
	display: block;
	margin-bottom: 100px;
	margin-left: 20px;
    margin-right: 20px;
}

#blue-border{

	border: 4px solid #1479b9;

    padding: 10px; /* 余白を調整（必要に応じて調整） */

	margin-top: 20px;

	border-radius: 30px;
}




/* アニメーション */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 450ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.h3_back {
	font-size: 31px;
	font-weight: bold;
	background: #fff;
	position: relative;
	color: #1479b9;
	text-align: center;
	padding: 15px;

}
.flow_content {
	display: flex;
	text-align: left;
	padding: 0 20px 20px 20px;
	background: #fff; 
}
.flow_content p {
	color:#4a2c07;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.7em;
	padding-left: 20px;
}
.flow_content p a.btn{
	line-height: 3em;
	margin: 10px;
}
.flow-img{
	align-self: flex-start;
	width: 220px;
}

.flow-arrow{
	width: 54px;
	height: 33px;
	margin: 25px auto;
}


/*==============================================
	メディアクエリ
==============================================*/
@media screen and (max-width: 825px){

}
@media screen and (max-width: 730px){
	.br-sp {
		display: block;
	}
	.h2_bottom_line {
		font-size: 20px;
	}

	.h2_bottom_line:before {
		width: 30px; /*下線の幅*/
		bottom: -6.5px; /*下線の上下位置調整*/
	}
	.h3_back {
		font-size: 21px;
	}
	.flow_content p {
		font-size: 15px;
		padding-left: 0px;
	}
	.btn {
		font-size: 13px;
	}
	.flow_content {
		flex-direction: column;
	}
	.flow-img {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
}