﻿/*---------------------------------------------
	Browser Default Initialization
  ---------------------------------------------*/

html {
	/*overflow-y: scroll;*/
}

body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, hgroup, header, address,
figure, figcaption {
	margin: 0;
	padding: 0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before ,q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
legend {
	display: none;
}
hr {
	height: 1px;
	border: none;
	background-color: #333;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img {
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}
ul li {
	list-style-type: none;
}
i {
	font-style:normal;
}



/*---------------------------------------------
	body
---------------------------------------------*/

body , html { height: 100%; }
body {
	/*font-family: '游ゴシック','Yu Gothic','Noto Sans JP', sans-serif;*/
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.8;
	word-break: break-word;
    overflow-wrap: break-word;
	color: #000;
	margin: 0;
	background: #FFF;
}

body * {
	box-sizing:border-box;
}

@media only screen and (max-width: 767px) {
body {
	font-size: 16px;
}
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
	outline: none;
}
a:link {
	/*
	color: #000;
	text-decoration: underline;
	*/
	text-decoration: none;
	color: #0066cc;
}
a:visited {
	color: #660099;
}
a:hover {
	text-decoration: underline;
	color: #0068b7;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
a:active {
	color: #0068b7;
}

