@charset "utf-8";
/* =======================================

	reset

======================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;/*	outline: 0;*/
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
input, select {
	vertical-align: middle;
	box-sizing: border-box;
}
/* =======================================

	HTML5表示設定

======================================= */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
	box-sizing: border-box;
}
audio, canvas, video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
}
[hidden] {
	display: none;
}
/* 追加要素タグ */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* 文書内の該当テキストを目立たせるタグ */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
/* 削除された部分であることを示すタグ */
del {
	text-decoration: line-through;
}
/* 略語や頭字語であることを表すabbr,用語が使用されていることを示すdfnタグ */
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
/* =======================================

	レスポンシブWEBデザイン　フルードイメージ

======================================= */
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img {
	max-width: 100%;
	height: auto;/*	-webkit-backface-visibility: hidden;
*/
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width: 100%;
}
/* =======================================

	cliearfix

======================================= */
/* For modern browsers */
.cf:before, .cf:after {
	content: "";
	display: block;
	overflow: hidden;
}
.cf:after {
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
	zoom: 1;
}
div.clear {
	clear: both;
}
div.clear hr {
	display: none;
}
/* =======================================

	全体設定

======================================= */
html {
	font-size: 62.5%; /*ベースフォントサイズ10px*/
	/*overflow-y: scroll;*/
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;/* height:100%; */
}
body {
	font-size: 1.6rem;
	line-height: 2;
	/*font-family: YuGothic, YuGothicM, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ ゴシック", "Osaka", sans-serif, Verdana, “Droid Sans”;
	color: #fff;
	text-align: left;
	/*font-feature-settings: "palt";*/
	background-color: #000;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 2.4rem;
	font-weight: bold;
}
p, li, dt, dd, th, td {
	font-size: 1.4rem;
}
address {
	font-size: 1.6rem;
	font-style: normal;
}
img {
	vertical-align: bottom;
	border: none;
	background: transparent;
}
hr {
	height: 1px; /* 高さ */
	border-top: 1px solid #bbb;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
strong {
	font-weight: bold;
}
/* =======================================

	リンク

======================================= */
a, a img, a div,input[type="submit"] {
	text-decoration: none;
	-webkit-transition: background 0.5s ease, color 0.5s ease, opacity 0.5s ease;
	-moz-transition: background 0.5s ease, color 0.5s ease, opacity 0.5s ease;
	-o-transition: background 0.5s ease, color 0.5s ease, opacity 0.5s ease;
	-ms-transition: background 0.5s ease, color 0.5s ease, opacity 0.5s ease;
	transition: background 0.5s ease, color 0.5s ease, opacity 0.5s ease;
	-webkit-backface-visibility: hidden; 
	backface-visibility: hidden;
	color: #fff;
}
a:visited {
	text-decoration: none;
}
a:hover, a img:hover, a div:hover,input[type="submit"]:hover {
	text-decoration: none;
	opacity: 0.6;
}
a:active {
	text-decoration: none;
}
a:focus {
	outline: none;
}
/* すべてのブラウザーで、フォーカスの設定時およびホバー時の読みやすさを改善 : h5bp.com/h */
a:hover, a:active {
	outline: 0;
}
/* =======================================

	テーブル

======================================= */
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
/* =======================================

	要素を超えた分の背景が伸びないブラウザ用

======================================= */
body > div#wrapper {
	height: auto;
}
/* =======================================

	全てのimg要素を可変に

======================================= */
#wrapper img {
	display: block;
	width: 100%;
}
/* =======================================

	インラインブロックで横並び時スペースを消す

======================================= */
ul, ol {
	letter-spacing: -.40em; /* 親要素の文字間を詰めて隙間を削除する */
}
li {
	letter-spacing: normal; /* 文字間を通常に戻す */
}
/* =======================================

	画像の下に文字を回り込ませない方法

======================================= */
.floatImageText {
	overflow: hidden;
}
/* =======================================

	"※”などの場合、行頭をそろえる

======================================= */
.textIndent {
	padding-left: 1.6rem;
	text-indent: -1.6rem;
}
figure {
    display: block;
	margin: 0;
	padding: 0;
    margin-block-start: 0em !important;
    margin-block-end: 0em !important;
    margin-inline-start: 0px !important;
    margin-inline-end: 0px !important;
}
/* =======================================

	Google tag manager用

======================================= */
body > img {
	width: 0;
	sheight: 0;
}
