@charset "UTF-8";

/*  /////////////////////////////////////////////////////////////// 
       基本レイアウト                      
//////////////////////////////////////////////////////////////// */



body {/*背景色　フォント情報とサイズ*/
	/*background-color: #ecf3fe;*/
	font-family:  "YakuHanJP",'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3';
	font-size: 14px;
	line-height: 16px;
	margin:0;padding:0;
}
header{
      position: fixed;
  z-index: 10;
  top: 0;
	/*height: 80px;*/
    width: 100%;
	box-sizing: border-box;
    /*background-color: #ffffff;*/
	border-bottom: solid 0px;
}
/*フッター位置固定用*/
#wrapper_flex {
    min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 26px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}
#footer {
  position: absolute;/*←絶対位置*/
	background-color: #ffffff;
    bottom: 0; /*下に固定*/
}

/*メインの幅サイズと余白*/
#main_contents {/* header,footerを除く */
    width: 95%;
	max-width: 1000px;
	padding: 80px 0px 0px 0px;
    margin-top: 0px;
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	border: solid 0px;

}



