/* CSS Document */

article h2
{
	text-align: center;
	margin-bottom: 40px;
}

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

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

article .tab ul li img
{
	width:auto;
	height:auto;
}


#reason01 .body,
#reason02 .body,
#reason03 .body
{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

#reason02 .body
{
	flex-direction: row-reverse;
}

article section .title
{
	width: 205px;
	background-image: url(images/h3_bg.gif);
	background-repeat: repeat-y;
	background-position: right top;
	text-align: right;
}

article section .title h3
{
	text-align: right;
}


article section .content
{
	width: 920px;
}

article section .content .photo
{
	text-align: center;
	margin-bottom: 40px;
}

article section .title h3 img,
article section .content .photo img
{
	width:auto;
	height:auto;
}


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

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

article section .content ul li h4
{
	font-size: 22px;
	line-height: 1;
	text-align: center;
	padding: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	background-color: #F5F0E7;
	border: 1px solid #EBE3D3;
}

#procedure
{
	background-attachment: fixed;
	background-image: url(../images/bg_02.gif);
}

#procedure h2
{
	font-size: 42px;
	color: var(--point-color);
	line-height: 1;
	background-image: url(../images/h2_bg.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 20px;
	font-weight: normal;
}

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

#procedure ul li
{
	margin: 0px;
	list-style-type: none;
	background-color: #FFF;
	position: relative;
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}

#procedure ul li .no
{
	position: absolute;
	left: 0px;
	top: 0px;
}

#procedure ul li h3
{
	font-size: 22px;
	line-height: 1.6;
	text-align: center;
}

#procedure ul li .photo
{
	text-align: center;
	margin-bottom: 20px;
}

#procedure ul li .no img,
#procedure ul li .photo img
{
	width:auto;
	height:auto;
}

#procedure ul li p
{
	text-align: center;
	margin: 0px;
}

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



}

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

article section .title
{
	width: 20%;
}

article section .content
{
	width: 78%;
}

article section .content ul
{
	column-gap: 20px; /* 横のスペース */
	row-gap: 10px; /* 縦のスペース */
}


#procedure ul
{
	column-gap: 20px; /* 横のスペース */
}

#procedure ul li
{
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#procedure ul li .no
{
	width: 40px;
}


#procedure ul li h3
{
	font-size: 18px;
	line-height: 1.2;
	text-align: justify;
}

#procedure ul li p
{
	line-height: 1.2;
	text-align: justify;
}


}

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

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


}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{
article .tab ul
{
	column-gap: 10px; /* 横のスペース */
}

article section .content ul
{
	grid-template-columns: repeat(1, 1fr);
	column-gap: 0px; /* 横のスペース */
	row-gap: 10px; /* 縦のスペース */
}

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

}


}