@charset "utf-8";
/* CSS Document */

/*h2タイトル設定*/
#faq h2 {
	clear: both;
	margin: 10px 20px 40px 20px;	/*上下、左右への余白*/
	font-size: 160%;	/*文字サイズ*/
    line-height: 1.2em;
	color: #1f2c5c;		/*文字色*/
    text-align: center;
    border-bottom: 1px solid #999999;	/*枠線の幅、線種、色*/
}
#faq h2 span {
    font-size: 70%;	/*文字サイズ*/
	line-height: 1em;
}
#faq h2 span::before {
	content: "\A" ;
	white-space: pre;
}

#faq h3, #faq02 h3 {
	clear: both;
    color: #1f2c5c;
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	font-size: 120%;	/*文字サイズ*/  
    background: #eeeeee;
    text-align: center;
    border-bottom: 1px solid #999999;	/*枠線の幅、線種、色*/
    border-radius: 0px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
    border-left: none;
    border-top: none;
    border-right: none;
}
#faq h3::first-letter {
	border-left: none;	/*左の線の幅、線種、色*/
	padding-left: 0px;				/*線とテキストとの余白*/
}

#faq h4 {
  clear: both;
  position: relative;
  margin-top: 20px;
  margin-left: 0px;
  padding: 0.5rem 1rem;
  color: #1f2c5c;
  border-radius: 0 10px 10px 10px;
  background: #e9ecf4;
}
#faq h4:before {
  font-size: 14px;
  position: absolute;
  top: -22px;
  left: 0;
  height: 22px;
  padding: 0 0.5em;
  content: 'check!';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #1f2c5c;
}

/*コンテンツのh4タグ設定*/
#faq02 h4 {
	clear: both;
	color: #1f2c5c;
    font-size: 110%;	/*文字サイズ*/
    margin-left: 20px;
    margin-bottom: 6px;
    border-bottom: 1px solid #1f2c5c;	/*枠線の幅、線種、色*/
}
#faq02 h4:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  margin-right: 8px;
}


/*Q&A
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.faq_qa {
    margin-left: 26px;
}

.faq_qa *, .faq_qa *:after, .faq_qa *:before {
    font-family: 'FontAwesome', sans-serif;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.faq_qa dt {
	position: relative;
	margin: 0 0 1.5em 0.5em;
	padding-left: 2.5em;
	text-indent: -2.8em;
}
.faq_qa dd {
	position: relative;
	margin: 0 0 2em 0;
	padding: 0 0 1.5em 5em;
	border-bottom: 1px dotted #1f2c5c;
    text-indent: -3em;
	
}
.faq_qa dt::before, .faq_qa dd::before {
	font-size: 1.2em;
	margin: 0 0.5em 0 0;
	color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	width: 1.8em;
	height: 1.8em;
	line-height: 1.2em;
}
.faq_qa dt::before {
	padding: 0.28em 0.48em;
	content: 'Q';
	background: #f57c00;
	text-indent: 0.03em;
}
.faq_qa dd::before {
	padding: 0.27em 0.53em;
	content: 'A';
	background: #0097a7;
	text-indent: 0.03em;
}
.faq_qa dt::after, .faq_qa dd::after {
	position: absolute;
	top: 0.7em;
	display: inline-block;
	width: 0;
	height: 0;
	content: '';
	border-width: 5px 0 5px 5px;
	border-style: solid;
}
.faq_qa dt::after {
	left: 1.6em;
	border-color: transparent transparent transparent #f57c00;
}
.faq_qa dd::after {
	left: 4.1em;
	border-color: transparent transparent transparent #0097a7;
}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

  .faq_qa dt {
      margin: 3em 0;
  }
  .faq_qa dd {
      margin-left: -2.3em;
  }
  .faq_qa dt::after {
      left: 1.8em;
  }


}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){




}


/*画面幅767px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:767px){



}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){




}