@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 {
		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;
}
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%; */
		-webkit-font-smoothing: antialiased; /*Safariのマウスオーバーでチラつき対処*/
}
body {
		font-size: 1.6rem;
		line-height: 2;
		font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif, "Meiryo", "ＭＳ ゴシック", "Osaka", sans-serif, Verdana, “Droid Sans”;
		color: #000;
		text-align: left;
		font-feature-settings: "palt";
		background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
		font-size: 2.1rem;
		font-weight: 700;
		line-height: 1.2;
}
#english h1, #english h2, #english h3, #english h4, #english h5, #english h6 {
		font-family: 'Roboto', sans-serif;
}
p, li, dt, dd, th, td, figcaption {
		font-size: 1.4rem;
		font-weight: 400;
}
span {
	font-size: 1.2rem;
	font-weight: 400;
}
@media (min-width: 600px) {
	span {
	font-size: 1.6rem;
	font-weight: 400;
}
}
#english p, #english li, #english dt, #english dd, #english th, #english td, #english figcaption {
		font-family: 'Roboto', sans-serif;
}
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: 700;
}
/* =======================================

	リンク

======================================= */
a, a img, a div {
		text-decoration: none;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transition: background 0.5s ease, color 0.5s ease, opacity 0.5s ease;
		color: #000;
}
a:visited {
		text-decoration: none;
}
a:hover, a img:hover, a div: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: 1rem;
		text-indent: -1rem;
}
/* =======================================

	Google tag manager用

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

	Google fonts

======================================= */
.notoSansJP {
		font-family: 'Noto Sans JP', sans-serif;
}
.Roboto {
		font-family: 'Roboto', sans-serif;
}
.thin {
		font-weight: 100;
}
.light {
		font-weight: 300;
}
.regular {
		font-weight: 400;
}
.medium {
		font-weight: 500;
}
.semiBold {
		font-weight: 600;
}
.bold {
		font-weight: 700;
}
.extraBold {
		font-weight: 800;
}
.black {
		font-weight: 900;
}