/* CSS Document */

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


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

#faq ul li
{
	margin: 0px;
	list-style-type: none;
	border: 3px solid var(--base-color01);
	background-color: #eaf6fd;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 80px;
	padding-left: 20px;
	position: relative;
}

#faq ul li h3
{
	color: var(--base-color01);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: var(--base-color01);
	line-height: 1.2;
	margin-bottom: 20px;
	padding-left: 90px;
	position: relative;
	min-height: 3.6em;
	display: flex;
	align-items: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}

#faq ul li h3 big
{
	font-size: 22px;
	line-height: 1.2;
	font-weight: bold;
	display: block;
}

#faq ul li h3 .icon
{
	position: absolute;
	left: 0px;
	bottom: 0px;
}

#faq ul li p
{
	font-size: 18px;
	line-height: 1.4;
}

#faq ul li .foot_img
{
	position: absolute;
	right: 20px;
	bottom: 0px;
}


@media screen and (min-width:1920px)
{

}

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


}



/* タブレットレイアウト : 768 px 〜 959 px*/
@media screen and (max-width:1199px)
{
#faq ul
{
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
}

}


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

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

#faq ul
{
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
}

}


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

#faq ul
{
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px; /* 横のスペース */
	row-gap: 10px; /* 縦のスペース */
}


}

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

#faq ul
{
	grid-template-columns: repeat(1, 1fr);
	column-gap: 0px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
}

#faq ul li
{
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

#faq ul li .foot_img
{
	position: static;
	text-align: right;
	margin-top: -20px;
}

}