﻿/*---------------------------------------------
	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;
}

* {
	min-height: 0%;
}


/*---------------------------------------------
	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;
}
}
/*
body {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	*font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	color: #333;
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
	-webkit-text-size-adjust: none;
}
*/

/* zen-kaku-gothic-new-300 - latin_japanese */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	   font-display:swap;
}
/* zen-kaku-gothic-new-regular - latin_japanese */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	   font-display:swap;
}
/* zen-kaku-gothic-new-500 - latin_japanese */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 500;
  src: local(''),
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	   font-display:swap;
}
/* zen-kaku-gothic-new-700 - latin_japanese */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	   font-display:swap;
}
/* zen-kaku-gothic-new-900 - latin_japanese */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 900;
  src: local(''),
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/zen-kaku-gothic-new-v7-latin_japanese-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	   font-display:swap;
}

/*---------------------------------------------
	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;
}

