#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);

}

.type01
{
	text-align: center;
}

.type01 img
{
	width: 100%;
	height: auto;
}

.type02 ul
{
	display: flex;
	column-gap: 30px;
	padding: 0px;
	margin: 0px;
}

.type02 li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
  	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

.type02 li:first-child
{
	background-color: var(--body-bg-color);
}

.type02 li:last-child
{
	flex-shrink: 0;
}

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

section .type03 ul li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

section .type01 img,
section .type02 ul li img,
section .type03 ul li img
{
  	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

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

}



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



}

/* デフォルトサイズ以下 */
@media screen and (max-width: 1399px) 
{

}

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

.type02 ul
{
	column-gap: 20px;
}

.type02 ul li:last-child
{
	width: 32%;

}

section .type03 ul
{
	column-gap: 20px;
}

}

/* 横置きの場合 */
@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;
}

.type02 ul
{
	column-gap: 0px;
}

.type02 ul li:first-child
{
	margin-right: 16px;
}

}


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

section .type03 ul
{
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px;
	row-gap: 10px;
}

.type02 ul
{
	column-gap: 0px;
	row-gap: 0px;
	flex-direction: column;
}

.type02 ul li
{
	margin-bottom: 10px;
}



.type02 ul li:last-child
{
	width: calc(50% - 5px);
}


}