@charset "utf-8";
/* CSS Document */
.main-wrap{
	position: relative;
}
.main-wrap > .flower_item1{
	position: absolute;
	top: 10%;
	left: 0;
	z-index: 2;
}
.main-wrap .contents{
	position: relative;
	z-index: 3;
}
.main-wrap .contents .boxwrap .box{
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px solid #D3CDBC;
}
.main-wrap .contents .boxwrap .box h3{
	width: 300px;
}
.main-wrap .contents .boxwrap .box > div{
	width: calc(100% - 300px);
}


/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.main-wrap .contents .boxwrap .box h3{
		width: 240px;
	}
	.main-wrap .contents .boxwrap .box > div{
		width: calc(100% - 240px);
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.main-wrap .contents .boxwrap .box h3{
		width: 180px;
	}
	.main-wrap .contents .boxwrap .box > div{
		width: calc(100% - 180px);
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.main-wrap .contents .boxwrap .box h3{
		width: 100%;
		padding-bottom: 5px;
		margin-bottom: 5px;
		border-bottom: 1px solid #eee;
	}
	.main-wrap .contents .boxwrap .box > div{
		width: 100%;
	}
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

