@charset "utf-8";

/**
 *
 *  reset.css
 *  resetスタイル
 *
 */

/* @pc wide **************************************************/
@media all and (min-width: 1626px){
}
/* @pc **************************************************/
@media all and (max-width: 1260px){
}
/* @sp **************************************************/
@media all and (max-width: 1100px){
}



/*--------------------------------------------------------------------------
	アニメーション
---------------------------------------------------------------------------*/
/* @pc wide **************************************************/
@media all and (min-width: 1626px){
}
/* @sp **************************************************/
@media all and (max-width: 1100px){
}
/* @tween **************************************************/
#Page.page_anime{
}
.sec[data-anime="on"] h2 span{
}
/* tween@pc wide **************************************************/
@media all and (min-width: 1626px){
	#Page.page_anime{
	}
}
/* tween@sp **************************************************/
@media all and (max-width: 1100px){
	#Page.page_anime{
	}
}


/*--------------------------------------------------------------------------
	reset
---------------------------------------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{background-color:#ff9;color:#000;text-decoration:none;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
img{border:0;vertical-align:top;}
em{font-style:italic;}
del{text-decoration:line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:0;padding:0;}
input,select,textarea{font-family:inherit;font-style:inherit;font-weight:inherit;font-size:100%;margin:0;padding:0;vertical-align:middle;}
input:focus,textarea:focus,select:focus{outline:none;}

svg:not(:root) {
    overflow: hidden;
}


/*--------------------------------------------------------------------------
	head
---------------------------------------------------------------------------*/
/* font-familyは消さない jsのメディアクエリ切り替えのトリガーです */
html{
	font-family: pc;
}
/* @sp*/
@media all and (max-width: 1100px){
	html{
		font-family: sp;
	}
}


/*--------------------------------------------------------------------------
	body
---------------------------------------------------------------------------*/
body{
	/*overflow: auto;*/
	/*overflow-y: scroll;*/
	min-width: 1100px;
	color: #1C1C1C;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'YuGothic', 'Yu Gothic', 游ゴシック体, 游ゴシック, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', Osaka, 'MS PGothic', Arial, Helvetica, Verdana, sans-serif;
	/*	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Verdana,sans-serif;
	font-family: 'Lato',"Helvetica Neue", Helvetica, "Droid Sans", Arial, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,"ＭＳ Ｐゴシック",Sans-Serif;*/
	font-size: 14px;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
			-ms-text-size-adjust: 100%;
					text-size-adjust: 100%;
}
::-moz-selection{
	color: #fff;
	background: #F5E52B;
}
::selection{
	color: #fff;
	background: #F5E52B;
}
/* @sp **************************************************/
@media all and (max-width: 1100px){
	body{
		min-width: 100%;
		font-size: 12px;
		line-height: 1.8;
	}
}
/* @tablet **************************************************/
html.dev-tb body{
	min-width: 100%;
	font-size: 12px;
	line-height: 1.8;
}


/*--------------------------------------------------------------------------
	base link
---------------------------------------------------------------------------*/
a{
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:link,
a:visited{
	color: #292C30;
	text-decoration: underline;
}
a:hover{
	color: #292C30;
	text-decoration: none;
	outline: none;
}
a:active{
	outline: none;
}


/* clearfix
-----------------------------------------------------------------*/
.cf:before,
.cf:after{
	content: "";
	display: table;
}
.cf:after{
	clear: both;
}
.cf{
	zoom: 1;
}