@charset "utf-8";
/* CSS Document */



.item-wrapper-div{
	display: flex;
	justify-content: space-between;
	padding-top: 200px;
	padding-bottom: 100px;
}

.item-wrapper-div div:nth-of-type(1){
	width: 35%;
}
.item{
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 30px;
}

.item-wrapper-div div:nth-of-type(2){
	width: 55%;
	
}

.sub-title{
	font-size: 1.2rem;
	text-align: center;
	padding-bottom: 20px;
}
.item-wrapper-div div:nth-of-type(2) p:not(:first-of-type){
	padding-bottom: 30px;
}


@media screen and (max-width:990px){
	
	.item-wrapper-div{
		display: block;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.item-wrapper-div div:nth-of-type(1){
		width: 100%;
		padding-bottom: 20px;
	}
	.item{
		width: 600px;
		height: 450px;
		object-fit: cover;
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	.item-wrapper-div div:nth-of-type(2){
		width: 100%;

	}
	
	
}


