@charset "utf-8";
/* ==========================================================================
 *
 * リセット/ベーススタイル
 *
========================================================================== */
/* ==========================================================================
Reset & Base Setting
========================================================================== */
/* default style reset
-------------------------------------*/
html{background: #fff;font-size:100%;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,input,button,textarea,p,figure,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
img{vertical-align:top;}
section,nav,article,aside,hgroup,header,footer{display:block;}
address,caption,em,strong,th{font-style:normal;font-weight:normal;}
ol,ul{list-style:none;}
caption,th,td{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-style:normal;font-weight:normal;}
br{letter-spacing:0;}
input,textarea,select,button{font-family:inherit;font-style:inherit;font-weight:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline;}
* {box-sizing:border-box;}
*:focus{outline: none;}

/* body setting
-------------------------------------*/
html{
	overflow: hidden;
	overflow-y: scroll;
	font-size: 10px;
}
body{
	text-align: left;
	font-family: 'Noto Sans JP','Noto Sans','Yu Gothic', sans-serif;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 2.0;
	color: #5A5A5A;

	letter-spacing: 0;
	-webkit-text-size-adjust: 100%;
	word-break: normal;
	overflow-wrap: break-word;
}


/* link style
-------------------------------------*/
a{
	color: #5A5A5A;
	text-decoration: none;
	outline:none;
}
a:link,
a:visited{
	text-decoration:none;
}
a:hover{
	text-decoration:none;
}
a:active{
	text-decoration:none;

}


/* text
-------------------------------------*/
strong{
	font-weight: 700;
}

sup{
	font-size: 1.2rem;
}

/* img setting
-------------------------------------*/
img {
	max-width: 100%;
	height: auto;
	backface-visibility: hidden;
}


/* form
----------------------- */
input, button, textarea, select{
	margin: 0;
	padding: 0;

	background: none;
	border: none;
	border-radius: 0;
	outline: none;

	font-size: 1.6rem;
	color: #5A5A5A;

	appearance: none;
}
::-webkit-input-placeholder{
	font-size: 1.6rem;
	font-weight: 300;
	color: #c4c4c4;
}
:-ms-input-placeholder{
	font-size: 1.6rem;
	font-weight: 300;
	color: #c4c4c4;
}
select::-ms-expand{
	display: none;
}

/* selection
-------------------------------------*/
::selection {
}


/* pre
-------------------------------------*/
pre{
	white-space: pre-wrap;
}