@charset "utf-8";


/* ---------------------------------
 レイアウト
------------------------------------ */
.fukushiyogu-flex01{
	display: flex;
	justify-content: space-between;
}
.fukushiyogu-flex01 .photo{
	width: 35%;
}
.fukushiyogu-flex01 .photo img{
	width:100%;
	border-radius:5px;
}
.fukushiyogu-flex01 .text{
	width:60%
}
.fukushiyogu-flex01 .text .fukushiyogu-type-text{
	margin-top:1em;
	background: linear-gradient(to bottom left, #bde8ff, #e4f7ff);
	padding:10px 15px;
	border-radius:5px;
}

@media screen and (max-width:1080px) {
	.fukushiyogu-flex01{
		flex-wrap: wrap;
	}
	.fukushiyogu-flex01 .photo{
		width: 100%;
		margin-top:1em;
		text-align:center;
	}
	.fukushiyogu-flex01 .photo img{
		width:70%;
		margin:0 auto;
	}
	.fukushiyogu-flex01 .text{
		width: 100%;
	}
	
}

