@charset "utf-8";
/*-----------------------------------------------------------------------/
	Description: initial setting
	Version: 2.0
	Author: AdTECHNICA
/*----------------------------------------------------------------------*/

/*-----------------------------------------------------------------------/
	CONTENTS
	1: body and base setting
		: general params
		: acronyms and abbreviations styles
	2: form setting
	3: link setting
/*----------------------------------------------------------------------*/

/*-----------------------------------------------------------------------/
	1: body and base setting
/*----------------------------------------------------------------------*/
html {
	box-sizing: border-box;
	overflow-y: scroll;
	font-size: 62.5%; /* 10px = 1rem */
	-webkit-text-size-adjust: 100%;
}
body {
	font-family:"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","游ゴシック", YuGothic, "Verdana", "Arial", "メイリオ", "Meiryo",  sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* general params
--------------------*/
*,
::before,
::after {
	box-sizing: inherit;
}
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
img {
	border: none;
	vertical-align: top;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}

/*-----------------------------------------------------------------------/
	2: form setting
/*----------------------------------------------------------------------*/
input, textarea, select, optgroup, option, button {
	font: inherit;
}
button, input[type="button"], input[type="submit"] {
	border: none;
	cursor: pointer;
}

/*-----------------------------------------------------------------------/
	3: link setting
/*----------------------------------------------------------------------*/
a:link{
	color: #006699;
}