@charset "UTF-8";
.box + .box{
	margin-top:32px;
}

.flex-img-box {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    align-items: center;
    justify-content: space-around;
}

.flex-img-box img{
	border: 1px solid #DFE4EB;
	min-width:0;
}

.img-box{
	margin-top:16px;
}

.img-box img{
	border: 1px solid #DFE4EB;
	max-width:369px;
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.arrow:before{
    content: "";
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 26px solid #b7bbc1;
}


@media (max-width:599px){
	.flex-img-box {
		flex-direction: column;
	}
	.img-box img{
		width:100%;
	}
	.arrow:before{
		content: "";
		border-top: 26px solid #b7bbc1;
		border-right: 40px solid transparent;
		border-left: 40px solid transparent;
		border-bottom:0;
	}
}