@charset "utf-8";
/* layout
==================================*/
  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;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	}
	body,form,fieldset {
		margin: 0;
		padding:0;
	  -webkit-text-size-adjust: none;
	}
	fieldset {
		border:none;
	}
	blockquote,li,dt,dd {
		margin:0;
		padding:0;
	}
	li {
		list-style:none;
	}
	input,textarea {
		font-size:1em;
	}
	img {
		margin:0px;
		padding:0px;
		border: 0px;
		vertical-align:bottom;
	}
	table {
	  border-collapse:collapse;
	}

/* font
==================================*/
  /* コピー用 Sassならmixinsを使うと良い
  font-family: 'Oswald';
  font-weight: 300;   light
  font-weight: 400;   regular
  font-weight: 600;   semi-bold

  以下、Notoではない場合など、不要な場合は適宜削除してください
  */
  @font-face {
	  font-family: Noto Sans JP;
	  font-style: normal;
	  font-weight: 400;
	  src: local("Noto Sans CJK JP Regular"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format("opentype")
	}

	@font-face {
	  font-family: Noto Sans JP;
	  font-style: normal;
	  font-weight: 700;
	  src: local("Noto Sans CJK JP Medium"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf) format("opentype")
	}
	textarea {
		font-style:normal;
		font-family: Noto Sans, Noto Sans JP, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", "MS P Gothic", san-serif;
	}
	body {
		color:#000;
		background-color:#ffffff;
		font-family: Noto Sans, Noto Sans JP, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", "MS P Gothic", san-serif;
	  line-height: 1;
	}

	/*游ゴシック・游明朝を指定する場合Mediumの指定が必要↓
		font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体";
	  font-family: "Yu Mincho Medium", "游明朝 Medium", YuMincho, "游明朝体";
	*/


/* float, clear
==================================*/
	.cf { zoom:1; }
	.cf:before, .cf:after { content:""; display:table; }
	.cf:after { clear:both; }
	.clear { clear: both;	visibility: visible; }
	.left {	float:left;	}
	.right { float:right; }
	@media print{
		body{
			_zoom: 70%;
			background: none;
		}
		img.hover {
			display:none;
		}
	}