@charset "utf-8";
#contant main{
	gap:50px;
}

section{
	flex:1;
	width: initial;
}

#isyoku article{
	width:100%;
	/*background-color: #F5F5F5;*/
	padding:80px 0;
	text-align: center;
	/*margin-bottom:50px;*/
	font-size: 1.15rem;
	
}

#isyoku article:first-of-type{
	padding:0 0 80px 0;
}

#isyoku article h2{
	color:#000;
	font-family:var(--manchou);
	font-size:1.8rem;
	font-weight: 700;
	line-height: normal;
	margin-bottom:15px;
	display: flex;
	align-items: center;
	gap:15px;
}

#isyoku article h2::before,
#isyoku article h2::after{
	content: '';
	flex:1;
	height: 2px;
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd;
}

#isyoku article ul{
	width:100%;
	display: flex;
	gap:10px 5px;
	margin-top:20px;
}

#isyoku article li{
	flex:1;
	border:1px solid #ddd;
	border-radius: 3px;
	padding:5px;
	font-size:1rem;
	line-height: normal;
	position: relative;
	display: flex;
	flex-direction: column;
}

#isyoku article li .photo{
	flex:1;
}

#isyoku article li::before{
	content: '';
	width:40px;
	height: 50px;
	display: block;
	background: url("img/arrow.png");
	background-size: 100% 100%;
	position: absolute;
	left:-20px;
	top:calc(50% - 25px);
}

#isyoku article li:first-of-type::before{
	content:none;
}

#isyoku article .photo img{
	width:auto;
	max-width:100%;
	height: auto;
	max-height: 100%;
	border-radius: 3px;
}

/*------------------------------

	レスポンシブ

------------------------------*/
@media screen and (max-width: 430px){
	#contant main{
		padding:100px 0;
	}
	
	section{
		padding:0;
	}
	
	#isyoku article{
		padding:40px 0 0 0;
	}
	#isyoku article ul{
		width:min(95%,320px);
		margin:20px auto 0 auto;
		flex-direction: column;
		gap:30px;
	}
	
	#isyoku article li{
		width:100%;
	}
	
	#isyoku article li::before{
		width:80px;
		height: 20px;
		background:#83BAA6;
		clip-path: polygon(100% 0, 0 0, 50% 100%);
		/*transform: rotate(90deg);*/
		left:50%;
		top:-25px;
		transform: translateX(-50%);
	}
	
	#isyoku article h2{
		font-size:1.5rem;
	}
}