/* CSS Document */
#h1_area
{
	background-image: url(images/h1_bg.jpg);
}


article h2
{
	font-size: 42px;
	color: var(--point-color);
	line-height: 1.4;
	margin-bottom: 50px;
	font-weight: normal;
}

article section dl
{
	margin-bottom: 20px;
}

article section dl dt
{
	font-size: 20px;
	line-height: 1.2;
	background-color: #f5f5f5;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 80px;
	position: relative;	border: 1px solid #f5f5f5;
	cursor: pointer;
}

article section dl dt:before
{
	font-family: "Font Awesome 6 Free";
	content: '\51';
	font-weight: 900;
	margin-right: 10px;
	font-size: 32px;
	line-height: 1;
	color: var(--point-color);
	position: absolute;
	left: 20px;
	top: 14px;

}

article section dl .open
{
	background-color: var(--point-color);
	position: relative;
	border: 1px solid var(--point-color);
	color: #FFF;
}

article section dl .open:before
{
	color: #FFF;
}

article section dl dd
{
	font-size: 20px;
	line-height: 1.2;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: var(--point-color);
	border-bottom-color: var(--point-color);
	border-left-color: var(--point-color);
	margin: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 80px;
	position: relative;
}

article section dl dd:before
{
	font-family: "Font Awesome 6 Free";
	font-size: 32px;
	line-height: 1;
	content: '\41';
	font-weight: 900;
	margin-right: 10px;
	color: var(--point-color);
	position: absolute;
	left: 20px;
	top: 20px;

}


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



}

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


article h2
{
	font-size: 38px;
	line-height: 1.2;
	margin-bottom: 40px;
}


}

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

article h2
{
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 50px;
	letter-spacing: 0em;
}



}

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



}