@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, figure, figcaption, main {
	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;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 0;
	line-height: 1;
}

li {
	list-style-type: none;
}

input, select, textarea {
	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 {
	width: 100%;
	height: auto;
	display: block;
	/*	-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: 2.66667vw; */
	/*ベースフォントサイズ 375px幅 = 10px*/
	font-size: 62.5%;
	/*ベースフォントサイズ10px*/
	/*overflow-y: scroll;*/
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	/* height:100%; */
	-webkit-font-smoothing: antialiased;
	/*Safariのマウスオーバーでチラつき対処*/
}



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: 500;
}

/* =======================================

	リンク

======================================= */
a, a img, a div, a p {
	text-decoration: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: background 0.5s ease, color 0.5s ease, opacity 0.5s ease;
	color: #1558d6;
}


a:visited {
	text-decoration: none;
}

/* a:hover, a img:hover, a div:hover, a p:hover {
	text-decoration: none;
	opacity: 0.6;
} */
a:hover {
	text-decoration: none;
	opacity: 0.6;
}

@media screen and (max-width: 1000px) {
	a:hover, a img:hover, a div:hover, a p:hover {
		opacity: 1;
	}
}

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要素を可変に

======================================= */

/* =======================================

	インラインブロックで横並び時スペースを消す

======================================= */
ul, ol {
	letter-spacing: -.40em;
	/* 親要素の文字間を詰めて隙間を削除する */
}

li {
	letter-spacing: normal;
	/* 文字間を通常に戻す */
}

/* =======================================

	画像の下に文字を回り込ませない方法

======================================= */
.floatImageText {
	overflow: hidden;
}

/* =======================================

	Google tag manager用

======================================= */
body>img {
	width: 0;
	height: 0;
}