div#item_main{
	max-width: 1140px;
	margin:0 auto;
}
h2{
	font-size: 2rem;
	width:96%;
}
#item_wrap{
	width:100%;
	margin-top:30px;
	margin-bottom:100px;
}
#item_wrap>div{
	width:100%;
}
@media screen and (min-width:576px){/*PC表示*/
	#item_col_wrap{
		display: flex;
		flex-direction: row-reverse;
		width:100%;
	}
	#item_col1,#item_col2{
		display:inline-flex;
		width:50%;
		flex-wrap:wrap;
		padding:1%;
	}
}
@media screen and (max-width:575px){/*スマホ表示*/
	#item_col_wrap{
		width:100%;
	}
	#item_col1,#item_col2{
		width:100%;
	}
}
#item_col1>div{
	width:100%;
	padding:10px 0;
}
#item_col1>p{
	width:100%;
	padding:10px;
}
#item_explain2{
	background-color: #EEFAFF;
}
.item_property_list{
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.item_property_list>img{
	width:10%;
	align-self: center;
}
.item_property_list>div{
	width:80%;
}

#item_col2{
	align-self:center;
}
#main_img{
	display: block;
	width:100%;
	margin:0 auto;
}

/*水平線+タイトルの作成*/
	.sub_title{
		margin:30px 0;
		display: flex;  /* 横並びにする */
		align-items: center;  /* 垂直方向に中央 */
		text-align: center;  /* 文字のセンタリング(複数行になったとき用) */
	}
	/* 共通部分はまとめる */
	.sub_title::before,.sub_title::after{
		content:"";
		flex-grow: 1;  /* 線の伸び率 */
		border-bottom: 1px solid #333;
	}
	/* 左側の線 */
	.sub_title::before{
		margin-right: 10px;  /* 線と文字の間のスペース */
		padding-left: 15px;  /* 線の長さが、最低でも15px以上になるように余白をとる */
	}
	/* 右側の線 */
	.sub_title::after{
		margin-left: 10px;  /* 線と文字の間のスペース */
		padding-right: 15px;  /* 線の長さが、最低でも15px以上になるように余白をとる */
	}
/*水平線+タイトルの作成 ここまで*/

#variation{
	display:flex;
	flex-wrap: wrap;
}
@media screen and (min-width:576px){/*PC表示*/
	.img_wrap{
		border: 1px solid #ddd;
		box-sizing: border-box;
		width: 24%;
		overflow: hidden;
		margin:0.5%;
	}
}
@media screen and (max-width:575px){/*スマホ表示*/
	.img_wrap{
		border: 1px solid #ddd;
		box-sizing: border-box;
		width: 32.3%;
		overflow: hidden;
		margin:0.5%;
	}
}


/*画像載せると動く*/
.img_wrap img{
  width: 100%;
  transition-duration: 0.5s;
}
.img_wrap:hover img{
  transform: scale(1.2);
  transition-duration: 0.5s;
}
/*画像載せると動くここまで*/






/*ポップアップここから*/
.popup_wrap input {
  display: none;
}
.popup_overlay {
  	display: flex;
  	justify-content: center;
  	overflow: auto;
  	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 9999;
  	width: 100%;
	height: 100%;
  	background: rgba(0, 0, 0, 0.7);
 	opacity: 0;
  	transform: scale(0);
}


.popup_trigger {
  	position: absolute;
  	width: 100%;
  	height: 100%;
}
.popup_content {
  	position: relative;
  	align-self: center;
  	width: 90%;
  	max-width: 700px;
  	padding: 30px 30px 15px;
  	box-sizing: border-box;
  	background: #fff;
  	line-height: 1.4em;
	text-align: center;
}
.popup_content>img{
	width:90%;
}

.close_btn {
  	position: absolute;
  	top: 14px;
  	right: 16px;
  	font-size: 30px;
  	cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
	 display:flex;
	 opacity: 1;
	 transform: scale(1);
	 transition: opacity 0.5s;
}
/*ポップアップココまで*/
