@charset "utf-8";
/* CSS Document */

/*h2タイトル設定*/
#access h2 {
	clear: both;
	margin: 10px 20px 10px 20px;	/*上下、左右への余白*/
	font-size: 160%;	/*文字サイズ*/
    /*line-height: 0.8em;*/
	color: #1f2c5c;		/*文字色*/
    text-align: center;
    border-bottom: 1px solid #999999;	/*枠線の幅、線種、色*/
}

#access h2 span {
    font-size: 70%;	/*文字サイズ*/
	line-height: 1em;
}

#access h2 span::before {
	content: "\A" ;
	white-space: pre;
}

#access 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;
}
#access h3::first-letter {
	border-left: none;	/*左の線の幅、線種、色*/
	padding-left: 0px;				/*線とテキストとの余白*/
}

.gmap_aria {
  margin: 10px 0px 0px 0px;
}

/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

	#access h2 span::before {
		content: " (" ;
		white-space: normal;
	}
	
	#access h2 span::after {
		content: ")" ;
	}


}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){



}


/*画面幅767px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:767px){



}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){




}