	/*-----

	box-sizing

	-----*/

div,span,
ul,ol,li,dl,dd,dt
font,p,span,
img,
table,tr,th,td,
form,input,select,option,
blockquote,
nav,header,footer,article,section{
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	}


	/*-----

	flex

	-----*/


	.flex{
		display: -o-flex;
		display: -ms-flex;
		display: -moz-flex;
		display: -webkit-flex;
		display: flex;
	}

	.flex_inline{
		display: -o-inline-flex;
		display: -ms-inline-flex;
		display: -moz-inline-flex;
		display: -webkit-inline-flex;
		display: inline-flex;
	}

	/*-----左から右-----*/


	.flex_row{
		-o-flex-direction: row;
		-ms-flex-direction: row;
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;
	}


	/*-----右から左-----*/


	.flex_reverse{
		-o-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		-moz-flex-direction: row-reverse;
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}




	/*-----上から下-----*/

	.flex_column{
		-o-flex-direction: column;
		-ms-flex-direction: column;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		flex-direction: column;
	}

	/*-----左上から複数行-----*/

	.flex_wrap{
		-o-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}


	/*-----右揃え-----*/

	.flex_right{
		-o-justify-content: flex-end;
		-ms-justify-content: flex-end;
		-moz-justify-content: flex-end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}


	/*-----両端揃え等間隔-----*/

	.flex_between{
		-o-justify-content: space-between;
		-ms-justify-content: space-between;
		-moz-justify-content: space-between;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	/*-----横に等間隔-----*/

	.flex_around{
		-o-justify-content: space-around;
		-ms-justify-content: space-around;
		-moz-justify-content: space-around;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}

	/*-----縦に等間隔-----*/

	.flex_align{
		-o-align-content: space-around;
		-ms-align-content: space-around;
		-moz-align-content: space-around;
		-webkit-align-content: space-around;
		align-content: space-around;
	}

	/*-----縦横中央-----*/

	.flex_center{
		-o-justify-content: center;
		-ms-justify-content: center;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		justify-content: center;
		-o-align-items: center;
		-ms-align-items: center;
		-moz-align-items: center;
		-webkit-align-items: center;
		align-items: center;
	}

	/*-----下揃え-----*/

	.flex_bottom{
		-o-align-items: flex-end;
		-ms-align-items: flex-end;
		-moz-align-items: flex-end;
		-webkit-align-items: flex-end;
		align-items: flex-end;
	}

	/* clearfix */
	.clearfix:after {
	  visibility: hidden;
	  display: block;
	  font-size: 0;
	  content: " ";
	  clear: both;
	  height: 0;
	}


	body{
		width: 100%;
		margin: 0px;
		padding: 0px;
		color: #5e5e5e;
		font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳＰゴシック', 'MS PGothic', Arial, Helvetica, Verdana, sans-serif;
		letter-spacing: 1pt;
	}

	header{
		padding-top: 40px;
	}

	header #logo{
		width: 300px;
		margin: 0 auto;
		text-align: center;
	}

	header #logo .logo_img{
		margin-bottom: 5px;
	}

	header #logo .logo_text{
		margin: 0 auto;
	}

	header #logo .logo_p{
		font-size: 16pt;
		font-weight: lighter;
		color: #999;
	}


	footer{
		background: #3b3b3b;
		color: #fff;
		padding: 20px;
		margin-top: 40px;
		font-size: 8pt;
		letter-spacing: 0pt;
	}

	/*---背景---*/
	#wrapper{
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: -999;
		-webkit-filter: blur(1px);
		-moz-filter: blur(1px);
		-ms-filter: blur(1px);
		filter: blur(1px);
	}

	a{
		color: #1e33f7;
	}

	img{
		border: 0;
	}

	#work{
		width: 100%;
	}

	#work a{
		font-weight: bold;
		text-decoration: none;
		color: #f9661c;
		width: 100%;
		padding: 20px 60px;
		border: 3px solid #f9661c;
		margin-bottom: 10px;
		background: rgba(255,255,255,0.7);
	}

	#work a div{
		text-align: center;
		margin: auto;
		font-size: 14pt;
	}

	/*---page_foot---*/

	.page_foot{
		margin: 60px 0 0;
	}

/*-----

タブレット

-----*/


@media only screen and (min-width: 600px){


	footer{
		text-align: center;
	}

	#work a{
		width: 31%;
		padding: 40px 0;
	}

	/*---page_foot---*/

	.page_foot #work a{
		width: 48%;
	}

}


/*-----

pc

-----*/


@media only screen and (min-width: 960px){

	header{
		padding-top: 80px;
	}

	/*---page_foot---*/

	.page_foot #work a{
		width: 23%;
	}

	.page_foot{
		margin: 100px 0 0;
	}

}
