#flexbox{
	display: flex;
	z-index: 2;		/* 必須 */
	position: relative;	/* 必須 */
	min-height: 100vh;
	flex-direction: column;	/* 縦並び */
//	border: 1px solid #000;
}
#flex_middle{
	flex: 1;
//	border: 1px solid #000;
}
#flex_lower{
//	border: 1px solid #000;
}
#flexbox_row{}

#flex_left{
	min-height: 100vh;
	background-image: url("../img/background1_mobile.webp");
	background-repeat: no-repeat;
//	background-size: contain;
	background-size: cover;
//	background-position: center center;/* 画像を常に天地左右の中央に配置 */
//	background-attachment: fixed;/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
//	border: 1px solid rgba( 255, 255, 255, 0);
}

#flex_right{}

#flexbox_row1{
	margin-top: 1rem;
//	border: 1px solid #000;
}
#flex_left1{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	border: 0px solid #000;
}
#flex_right1{
	width: 90%;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
//	border: 1px solid #000;
}

/*  PC向けのスタイル：1024px以上 */
@media only screen and (min-width: 1024px){
.flexbox{
//	background-color: rgba( 255, 255, 255, 0.9);
	/* 画像を常に天地左右の中央に配置 */
//	background-position: center center;
//	background-repeat: no-repeat;
	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
//	background-attachment: fixed;
//	background-size: cover;
}
#flexbox_row{
	display: flex;
	z-index: 1;		/* 必須 */
	position: relative;	/* 必須 */
	min-height: 100vh;
	flex-direction: row;	/* 横並び */
	justify-content:center;	/* 中央揃え */
//	border: 1px solid #f00;
}
#flex_left{
	flex-basis: 50%;	/* 要素の幅 */
	background-image: url("../img/background1_pc_20210220.webp");
	background-size: contain;
//	background-position: center center;/* 画像を常に天地左右の中央に配置 */
//	background-repeat: no-repeat;
//	background-attachment: fixed;/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
//	background-size: cover;
//	border: 0px solid #000;
}
#flex_right{
	flex-basis: 50%;	/* 要素の幅 */
//	border: 1px solid #000;
}
#flexbox_row1{
	display: flex;
	z-index: 1;
	width: 1200px;
	position: relative;	/* 必須 */
	min-height: 100vh;
	margin-top: 8rem;
	margin-left: auto;
	margin-right: auto;
	flex-direction: row;	/* 横並び */
	justify-content:center;	/* 中央揃え */
}
#flex_left1{
//	flex-basis: 70%;	/* 要素の幅 */
	width: 70%;
//	padding-right: 8rem;
	margin-left: 0;
	margin-right: 0;
	border: 0px solid #000;/* 確認用 */
}
#flex_right1{
//	flex-basis: 30%;	/* 要素の幅 */
	width: 25%;
	margin-top: 0rem;
	margin-left: 5%;
	margin-right: 0;
	border: 0px solid #000;/* 確認用 */
}





}
