@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
html {
	overflow-y: scroll;
}
body {
	color: #666;
	background-color: #FFF;
	background-image: url(../images/bg.gif);
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
}
a:hover {
	color: #0e36ca;
	text-decoration: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 989px;
	margin: 0px auto;
	background: #FFF;
	border-top: 5px solid #0e36ca;
	border-right: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
	border-left: 1px solid #d2d2d2;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 80px;
	width: 100%;
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-size: 9px;
	line-height: 10px;
	position: absolute;
	top: 34px;
	left: 20px;
	font-weight: normal;
	color: #999;
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 20px;
	top: 24px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fff, #e5e5e5);
	background-image: linear-gradient(#fff, #e5e5e5);
	border-top: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;

}
nav#menubar ul {
	display:-ms-flexbox;
	display:-webkit-box;
	display: -webkit-flex;
	display: flex;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 164px;	/*幅*/
	border-left: 1px solid #d2d2d2;
}
nav#menubar ul li a {
	height: 46px;
	padding-top: 12px;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;
	background-color: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fff, #e5e5e5);
	background-image: linear-gradient(#fff, #e5e5e5);
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li#current a {
	background: #e6ebfa url(../images/menu_bg_on.png) no-repeat left center;
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 9px;
	display: block;
	font-weight: normal;
	color: #0e36ca;
}
nav#menubar ul li:last-child {


	border-left: 1px solid #d2d2d2;
	border-right: 1px solid #d2d2d2;
}
/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 950px;
	padding-top: 30px;
	margin: 0px auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;
	width: 700px;
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #0925ba;
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#1b50d4), to(#0925ba));
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-linear-gradient(#1b50d4, #0925ba);
	background: url(../images/midashi_bg1.png) no-repeat left center, linear-gradient(#1b50d4, #0925ba);
	-webkit-box-shadow: 1px 2px 5px #CCC;
	box-shadow: 1px 2px 5px #CCC;
	font-size: 100%;
	color: #FFF;
	padding: 7px 15px 7px 30px;
	border-radius: 4px;
	clear: both;
	margin-bottom: 30px;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	background-color: #FFF;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));
	background-image: -webkit-linear-gradient(#FFF, #e8e8e8);
	background-image: linear-gradient(#FFF, #e8e8e8);
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;
	box-shadow: 1px 2px 5px #e2e2e2;
	font-size: 100%;
	padding: 4px 15px;
	border-radius: 4px;
	clear: both;
	border: 1px solid #CCC;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;
  text-indent: 10px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list section {
	border: 3px double #CCC;
	margin-bottom: 15px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);
	background-image: linear-gradient(#FFF, #e3e3e3);
	-webkit-box-shadow: 0px 2px 5px #CCC;
	box-shadow: 0px 2px 5px #CCC;
}
#main section.list section a {
	padding: 10px;
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list section a:hover {
	background-color: #fff;
}
/*ボックス内の段落タグ設定*/
#main section.list section p {
	padding: 0px;
	margin-left: 34%;
}
/*ボックス内の写真設定*/
#main section.list section figure img {
	float: left;
	background-color: #FFF;
	padding: 5px;
	border: 1px solid #CCC;
	width: 30%;
	height: auto;
}
/*ボックス内のh4タグ設定*/
#main section.list section h4 {
	padding: 2px 0px 2px 10px;
	font-size: 100%;
	border-bottom: 1px solid #CCC;
	border-left: 3px solid #0e36ca;
	margin-bottom: 0.5em;
	color: #0e36ca;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;
	width: 220px;
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding: 15px 10px;
	background: #eee;
	border-bottom: 1px solid #d2d2d2;
	border-top: 5px solid #0e36ca;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border-bottom: 1px solid #d2d2d2;
	text-decoration: none;
	display: block;
	padding: 2px 10px;
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #0e36ca;
	color: #fff;
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	border: 1px solid #CCC;
	padding: 10px;
	margin-bottom: 15px;
	background-color: #FFF;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eaeaea));
	background-image: -webkit-linear-gradient(#FFF, #eaeaea);
	background-image: linear-gradient(#FFF, #eaeaea);
	-webkit-box-shadow: 0px 0px 1px #FFF inset;
	box-shadow: 0px 0px 0px 1px #FFF inset;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;
	background-color: #0e36ca;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}
.footer-info {
	text-align: left;
	padding-left: 30px;
	line-height: 150%;
}
.footer-info p {
	margin-bottom: 10px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	margin-top: 10px;
	padding-left: 15px;
	line-height: 250%;
}
/*日付設定*/
#new dt {
	font-weight: bold;
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #e2e2e3;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;
	background-color: #333;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));
	background-image: -webkit-linear-gradient(#4b4b4b, #333);
	background-image: linear-gradient(#4b4b4b, #333);
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	text-align: left;
	background-color: #e9ddae;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);
	background-image: linear-gradient(#efe6c5, #e9ddae);
	font-weight: bold;
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 30px;
	background-color: #e5e5e5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);
	background-image: linear-gradient(#FFF, #e5e5e5);
	-webkit-box-shadow: 1px 2px 7px #ccc;
	box-shadow: 1px 2px 7px #ccc;
	font-size: 16px;
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);
	background-image: linear-gradient(#e5e5e5, #FFF);
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;
	font-size: 10px;
	background-color: #0e36ca;
	text-decoration: none;
	text-align: center;
	width: 12em;
	display: block;
	float: right;
	letter-spacing: 0.1em;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}

.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #1424f6;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}



/*タブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

	/*ヘッダー（サイト名ロゴが入ったブロック）
	---------------------------------------------------------------------------*/
	/*h1見出しタグ設定*/
	header h1 {
		display: none;
	}

	/*コンテナー（HPを囲むブロック）
	---------------------------------------------------------------------------*/
	#container {
		width: auto;
		border-right: none;
		border-bottom: none;
		border-left: none;
	}

	/*メインメニュー
	---------------------------------------------------------------------------*/
	nav#menubar {
		border-bottom: 1px solid #d2d2d2;
		overflow: hidden;
	}
	/*メニュー１個ごとの設定*/
	nav#menubar ul li {
		width: 50%;
		border-bottom: none;
		border-left: none;
	}
	/*奇数番目のメニューの設定*/
	nav#menubar ul li:nth-child(odd) {
		border-right: 1px solid #d2d2d2;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}


	/*コンテンツ（main,subを囲むブロック）
	---------------------------------------------------------------------------*/
	#contents {
		width: auto;
		padding: 30px 10px 10px;
	}

	/*main,subコンテンツ
	---------------------------------------------------------------------------*/
	#main, #sub {
		float: none;
		width: auto;
	}

	/*その他
	---------------------------------------------------------------------------*/
	/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
	body.s-n #sub {
		display: none;
	}
}



/*スマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

	/*ヘッダー（サイト名ロゴが入ったブロック）
	---------------------------------------------------------------------------*/
	/*ヘッダーブロック*/
	header {
		height: auto;
		text-align: center;
	}
	/*h1見出しタグ設定*/
	header h1 {
		display: none;
	}
	/*ロゴ画像の設定*/
	header #logo {
		position: static;
	}
	header #logo img {
		width: 70%;	/*ロゴ画像の幅*/
		height: auto;
		margin: 10px 0px;
	}

	/*コンテナー（HPを囲むブロック）
	---------------------------------------------------------------------------*/
	#container {
		width: auto;
		border-right: none;
		border-bottom: none;
		border-left: none;
	}

	/*メインメニュー
	---------------------------------------------------------------------------*/
	nav#menubar {
		border-bottom: 1px solid #d2d2d2;
		overflow: hidden;
	}
	/*メニュー１個ごとの設定*/
	nav#menubar ul li {
		width: 50%;
		border-bottom: none;
		border-left: none;
	}
	/*奇数番目のメニューの設定*/
	nav#menubar ul li:nth-child(odd) {
		border-right: 1px solid #d2d2d2;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}

	/*コンテンツ（main,subを囲むブロック）
	---------------------------------------------------------------------------*/
	#contents {
		width: auto;
		padding: 30px 10px 10px;
	}

	/*main,subコンテンツ
	---------------------------------------------------------------------------*/
	#main, #sub {
		float: none;
		width: auto;
	}

	/*mainコンテンツ
	---------------------------------------------------------------------------*/
	/*mainコンテンツの段落タグ設定*/
	#main p {
		padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
	}

	/*service.html内の製品紹介の各ブロック
	---------------------------------------------------------------------------*/
	/*ボックス内の段落タグ設定*/
	#main section.list section p {
		margin-left: 0;
	}
	/*ボックス内の写真設定*/
	#main section.list section figure img {
		float: none;
		width: 100%;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}

	/*トップページ内「更新情報・お知らせ」ブロック
	---------------------------------------------------------------------------*/
	section#new h2.open {
		background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#1b50d4), to(#0925ba));
		background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#1b50d4, #0925ba);
		background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, linear-gradient(#1b50d4, #0925ba);
	}
	section#new h2.close {
		background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#1b50d4), to(#0925ba));
		background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#1b50d4, #0925ba);
		background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, linear-gradient(#1b50d4, #0925ba);
	}
	/*ブロック全体の設定*/
	#new dl {
		height: auto;
		margin: 5px 5px 0px;
	}
	/*日付設定*/
	#new dt {
		float: none;
		width: auto;
	}
	/*記事設定*/
	#new dd {
		padding-left: 0;
	}

	/*テーブル１
	---------------------------------------------------------------------------*/
	.ta1 {
		width: 100%;
	}
	/*テーブル内の右側*/
	.ta1 td{
		width: auto;
		padding: 2px;
	}
	/*テーブル内の左側の見出し部分*/
	.ta1 th{
		width: 100px;
		padding: 2px;
	}

	/*その他
	---------------------------------------------------------------------------*/
	/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
	body.s-n #sub {
		display: none;
	}
	/*メニュー折りたたみ設定*/
	#top #menubar_hdr {
		display: none;
	}
	#menubar_hdr {
		display: inline;
		position: absolute;
		top: 0px;
		right: 10px;
		background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
		background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
		background-image: linear-gradient(#fbfbfb, #e5e5e5);
		padding: 10px;
		border: 1px solid #cfcfcf;
		border-radius: 0px 0px 6px 6px;
	}
}

/*ベージ別
---------------------------------------------------------------------------*/
section#soshiki section {
	text-align: center;
}
section#soshiki section .soshiki_img2 {
	margin: 10px auto 10px auto;
	height: 100px;
	display: block;
	width: 272px;
}
section#soshiki  section#adobe {
	text-align: left;
}

section#policy section h3 {
	margin-top: 20px;
	margin-bottom: 5px;
}

section#download section h3 {
	margin-bottom: 10px;
	margin-top: 30px;
}

section#aisatsu p {
	padding: 0 30px;
	margin-bottom: 20px;
}
section#aisatsu img {
	margin: 10px 30px 30px 20px;
}
section#adobe {
	margin-top: 50px;
	padding: 20px 10px;;
	border: 2px dotted #ccc;
}
section#adobe img {
	display: inline-block;
	margin-top: 10px;
}

section#news img {
	margin: 15px 10px;
}
section#sanjyo {
	margin-top: 30px;
}
section#sanjyo .banners {
	margin-top: 30px;
}
section#sanjyo .banners .banner {
	width: 150px;
	height: 50px;
	line-height: 50px;
	text-align:center;
	display: inline-block;
	border: #eee 1px solid;
	margin-right: 10px;
	margin-bottom: 10px;
}