@charset "utf-8";
/* CSS Document */

/*h2タイトル設定*/
#diagnosis 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;	/*枠線の幅、線種、色*/
}
#diagnosis h2 span {
    font-size: 70%;	/*文字サイズ*/
	line-height: 1em;
}
#diagnosis h2 span::before {
	content: "\A" ;
	white-space: pre;
}

#diagnosis h3, #diagnosis02 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;
}
#diagnosis h3::first-letter {
	border-left: none;	/*左の線の幅、線種、色*/
	padding-left: 0px;				/*線とテキストとの余白*/
}

#diagnosis 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;
}
#diagnosis 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タグ設定*/
#diagnosis02 h4 {
	clear: both;
	color: #1f2c5c;
    font-size: 110%;	/*文字サイズ*/
    margin-left: 20px;
    margin-bottom: 6px;
    border-bottom: 1px solid #1f2c5c;	/*枠線の幅、線種、色*/
}
#diagnosis02 h4:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  margin-right: 8px;
}


/*
------------------------------------------------------------------------------------------------------------------------------------------------------*/

.question_no_wrap {
	text-align: center;
	width: 100%;
}

.question_no {
	display: inline-block;
	font-size: 2em;
	color: #0000FF;
	text-align: center;
	font-weight: bold;
	border-bottom: solid 2px #0000FF;
	line-height: 1.2em;
	margin: 30px 0;
}

.toi_wrap {
	background: #f9f9f9;
	text-align: center;
	font-weight: bold;
	font-size: 1.25em;
	padding: 1em 0em;
}

.puestion_icon {
	
	background: url(../diagnosis/images/diagnosis_p01.png) no-repeat center bottom; 
	background-size: 16rem; 
	padding:2rem 0 23rem;

}

.sw_wrap {
    width: 520px;
    margin: 40px auto 0;
    text-align: center;
}

form .yn_sw,form .yn_sw02 {
    float: left;
	width: 240px;
    padding: 10px 0;
    text-align: center;
    border:none;
    color: #FFFFFF;
    background: #113893;
}
form .yn_sw03 {
	width: 300px;
    padding: 14px 0;
    text-align: center;
    border:none;
    color: #FFFFFF;
    background: #113893;
}
form .yn_sw:hover, form .yn_sw02:hover, form .yn_sw03:hover {
    background: #96a9d5;
	cursor:pointer;
}
form .yn_sw02 {
    margin-left: 40px;
}

/*
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.btn_area {
    width: 610px;
	margin: 0 auto;
}
.btn01 {
	float: left;
	width: 280px;		/*幅*/
	overflow: auto;
	background: #fff;	/*背景色*/
	/*margin-left: 1.5%;	ボックス同士の左右間の余白*/
	margin: 0 10px 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 0px;		/*角丸のサイズ。とりあえず未使用（直角）*/
	height: 60px;	/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
    color: #1f2c5c;		/*文字色*/
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);			/*同上*/
}
.btn01 a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 60px;	/*高さ（上の「.list」の高さと揃える）*/
}
.btn01 a:hover {
	background: #1f2c5c;	/*背景色*/
    background: linear-gradient(#d3d7e1, 60% , #1f2c5c);	/*背景グラデーション*/
	color: #fff;		/*マウスオン時の文字色*/
}
.btn01 .sw {
	font-size: 20px;	/*文字サイズ*/
    line-height: 60px;
    text-align: center;
}


/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){




}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){




}


/*画面幅767px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:767px){

    .toi_wrap {
        text-align: left;
    }

    .sw_wrap {
        width: 100%;
    }
    form .yn_sw,form .yn_sw02,form .yn_sw03 {
        float: none;
        width: 100%;
    }
    form .yn_sw02 {
        margin-top: 20px;
		margin-left: 0px;
    }
	
	.btn_area {
        width: 100%;
	}
	.btn01 {
        float: none;
        width: 96%;
    }
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){




}