﻿@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}
body {
	margin: 0 auto;
	padding: 0px;
	background-color: #fff;
	overflow-x: hidden; /*　横スクロールを表示しない */
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	color: #262626;
	max-width: 1920px;
	width: 100%;
}
/* 文字選択したときの背景色を変える */ ::selection {
	background: #DCF0E1;
}
::-moz-selection {
	background: #DCF0E1;
}
a {
	border-width: 0px;
	text-decoration: none;
	color: #00997A;
}
a:visited {
	color: #1B909F;
}
a:hover {
	color: #1B909F;
	font-weight: bold;
}
b {
	/*	color: rgb(42,47,136);*/
	font-weight: bold;
}
.link_targetblank:after {
	content: url(https://icongr.am/octicons/link-external.svg?size=18px&color=808080);
	margin-left: 5px;
	vertical-align: -13%;
}
.link_pdf:after {
	content: url(https://icongr.am/material/pdf-box.svg?size=30&color=F04B4E);
	margin-left: 5px;
	vertical-align: -25%;
}
/*　Excel　*/
.link_excel {
	text-decoration: none;
}
.link_excel::after {
	content: url(https://icongr.am/simple/microsoftexcel.svg?size=20&color=008000&colored=true);
	margin-left: 5px;
	vertical-align: -13%;
}
/*　Word　*/
.link_word {
	text-decoration: none;
}
.link_word::after {
	content: url(https://icongr.am/simple/microsoftword.svg?size=20&color=008000&colored=true);
	margin-left: 5px;
	vertical-align: -13%;
}
img {
	border-width: 0px;
}
em {
	font-style: normal; /*IE対策*/
	font-weight: bold;
}
ul, li, ol {
	list-style: none;
}
div, p, h1, h2, h3, h4 {
	margin: 0px;
	padding: 0px;
}
p {
	margin-bottom: 10px;
	text-align: justify;
}
/* スクロールバーの一括設定 */
/* スクロールの幅の設定 */ ::-webkit-scrollbar {
	width: 13px;
	height: 10px;
	border-radius: 50px;
}
/* スクロールの背景の設定 */ ::-webkit-scrollbar-track {
	background: #E7E7E7;
}
/* スクロールのつまみ部分の設定 */ ::-webkit-scrollbar-thumb {
	background: #51907A;
}
/* ------------------------------
   クリッカブルマップ(レスポンシブ対応)
-----------------------------*/
img[usemap] {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}