@charset "UTF-8";
/* CSS Document */

/*----------------------------------------------------

  #font

----------------------------------------------------*/

html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
body {
	font-size: 1.6rem;/* 16px */
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #383838;
	line-height: 1.5;
	letter-spacing: 0.03em;
	background-color:#fff; 
}
@media (max-width: 768px) {
	body {font-size: 1.6rem;}
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {font-feature-settings: "pkna";}
}


/*----------------------------------------------------

  #reset

----------------------------------------------------*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset, img {
	border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
caption, th {
	text-align: left;
}
a {
	text-decoration: none;
}

area{
	border:none;outline:none;
}


/*----------------------------------------------------

  #tag

----------------------------------------------------*/
img {
	vertical-align: bottom;

}
@media (max-width: 768px) {
	img {
		max-width: 100%;
		height: auto;
	}
}
strong {
	font-weight: bold;
}
th,td {
	vertical-align: top;
}

/*----------------------------------------------------

  #box-sizing

----------------------------------------------------*/
section,div{box-sizing: border-box;}

