@charset "UTF-8";

.flexBox {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	column-gap: 1.5rem;
}
.flexBox figure:first-child img { height:100%; }
.ico_arrow { position:relative; }
.ico_arrow:after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 0 20px 20px;
	border-color: transparent transparent transparent #F39800;
	position: absolute;
	left: calc(100% + 6px);
	top: 89px;
}

@media screen and (max-width: 767px) {
	.flexBox {
		flex-direction: column;
		align-items: center;
	}
	.flexBox figure {
		margin: 1rem 0;
	}
}
@media screen and (max-width: 900.9px) {
	.ico_arrow:after {
		border-width: 20px 40px 0 40px;
		border-color: #F39800 transparent transparent transparent ;
		left: calc(50% - 40px);
		top: calc(100% + 8px );
	}
}