@charset "utf-8";
/*初期化の設定
------------------------------------------------------------------------------*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,
cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,
ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video
{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,picture{display:block;}
body{line-height:1.4;}ol,ul{list-style:none;}blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
table{border-collapse:collapse;border-spacing:0;}

/*基本レイアウト
------------------------------------------------------------------------------*/
html,body{}
/*基本フォント設定
------------------------------------------------------------------------------*/
html{
	font-size: 62.5%;
	font-size: 10px;
	font-family: 'Noto Sans Japanese','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Meiryo','ＭＳ Ｐゴシック','sans-serif';
	font-weight: 300;
	line-height: 1em;
	color: #000000;
}
img{vertical-align: bottom;}
br{letter-spacing: 0;}

a{color: #000; text-decoration: none; word-break: break-all; word-wrap:break-word;}
a:hover{text-decoration: none;}
a:focus{outline: none;}
a:hover,a:active{outline: 0;}

table {font-size:inherit;}

pre,code,kbd,samp,tt {font:inherit;*font-size:108%;line-height:100%;}
strong{font-weight: bold;}
textarea,input {font:inherit}
h1,h2,h3,h4,h5,h6,strong,th,button,select{
	font-weight:bold;
	line-height: 1.3em;
	font-family: 'Noto Sans Japanese','ヒラギノ角ゴ Pro W6','HiraKakuPro-W6','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Meiryo','ＭＳ Ｐゴシック','sans-serif';
}
p{
	line-height: 1.6em;
	text-align: justify;

}

select{
	font-size:100%;
	font-weight:normal;
}
/*ページフェード・イン
------------------------------------------------------------------------------*/
body{
	animation: fadeIn 3s ease 0s 1 normal;
	-webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn{
	0%{
		opacity: 0
	}
	100%{
		opacity: 1
	}
}
@-webkit-keyframes fadeIn{
	0%{
		opacity: 0
	}
	100%{
		opacity: 1
	}
}
/*リンク
------------------------------------------------------------------------------*/
.hover{
	vertical-align: top;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: opacity .4s ease;
	   -moz-transition: opacity .4s ease;
	    -ms-transition: opacity .4s ease;
	     -o-transition: opacity .4s ease;
	        transition: opacity .4s ease;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}
.hover:hover{
	opacity: 0.5;
}
