#h1_area{	background-image: url(images/h1_bg_pc.jpg);}

/* 縦置きの場合 */
@media (orientation: portrait)
{
#h1_area{	background-image: url(images/h1_bg_sp.jpg);}
}

article section:nth-of-type(2n)
{
	background-color: transparent;
}

section h2
{
	padding-left: 40px;
   	border-left: solid 10px var(--base-color01);
}

section .head_img
{
	background-color: var(--body-bg-color);
	padding-top: 40px;
	padding-bottom: 40px;
}

section .head_img ul
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px; /* 横のスペース */
	row-gap: 0px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;
}

section .head_img ul li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}

section .head_img ul li p
{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.product_list
{
	padding-top: 30px;
}

.product_list h3
{
	text-align: center;
	margin-bottom: 10px;
}

.product_list p
{
	text-align: center;
	margin-bottom: 20px !important;
}

.product_list ul
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
	row-gap: 30px;
	align-items: stretch;
	margin: 0px;
	padding: 0px;
}

.product_list ul li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* 画面が2画面分になったとき */
@media screen and (min-width:1920px)
{

}



/* PCのみ設定  768 以上*/
@media screen and (min-width:1200px)
{



}

/* デフォルトサイズ以下 */
@media screen and (max-width: 1399px) 
{
.product_list ul
{
	column-gap: 20px;
	row-gap: 20px;
}


}

/* タブレット以下 */
@media screen and (max-width: 1199px) 
{

.product_list h3
{
	text-align: justify;
	margin-bottom: 10px;
}

.product_list p
{
	text-align: justify;
	margin-bottom: 20px !important;
}
}

/* 横置きの場合 */
@media (max-width: 1199px) and (orientation: landscape)
{
}

/* 縦置きの場合 */
@media (max-width: 1199px) and (orientation: portrait)
{

section h2
{
	padding-left: 20px;
}

}



/* タブレットレイアウト : 768 px ～ 959 px */
@media screen and (min-width:768px) and (max-width:1199px)
{


}


/* スマホ設定  767 以下*/
@media screen and (max-width:767px)
{
section h2
{
	padding-left: 20px;
}


}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{

section .head_img ul
{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	column-gap: 0px; /* 横のスペース */
	row-gap: 40px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;
}

.product_list ul
{
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px;
	row-gap: 30px;
	align-items: stretch;
	margin: 0px;
	padding: 0px;
}

}