@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  /*
  box-sizeing:border-box;      */
}
body { font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 75%;
  line-height: 2;
  color: #333333;
  background-color: #212121;
 /* background-color: #eeeeee; */
  margin: 0px;
  padding: 0px;
  text-align: center;
  /* background-image: url(../images/bg.gif);
  background-repeat: repeat-x;
  background-position: top; */
}
/*----------
body#top {
  background-image: url(../images/bgtop.gif);
  background-repeat: repeat-x;
  background-position: top;
}
----------*/
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
  margin: 0px;
  padding: 0px;
}
ul{
  list-style-type: none;
}
img {
  border: none;
}
input,textarea,select {
  font-size: 1em;
}
form {
  margin: 0px;
}
table {
  border-collapse:collapse;
  font-size: 100%;
  border-spacing: 0;
}
/*リンク設定
---------------------------------------------------------------------------*/
a {
  color: #333333;
}
a:hover {
  text-decoration: none;
  color: #0375a2;
}
/*コンテナー
---------------------------------------------------------------------------*/
#container {
  text-align: left;
  width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
}
/*ヘッダー
---------------------------------------------------------------------------*/
#header {
  text-align: left;
  height: 86px;
  width: 100%;
  position: relative;
  background: #212121 url(../images/bg_top.png);
/*--
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-bottomright: 6px;
  --*/
}
#header #logo {
  position: absolute;
  left: 5px;
  top: 4px;
}
#header h1 {
  font-size: 11px; /*-- 9px --*/
  line-height: 10px;
  position: absolute;
  top: 34px;
  right: 0px;
  font-weight: normal;
  color: #999;
}
#header h1 a {
  text-decoration: none;
  /*--color: #999;   20241110--*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
ul#menu {
  padding-left: 33px;
  padding-top: 10px;
}
ul#menu li {
  float: left;
}
ul#menu img {
  vertical-align: bottom;
}
/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
  position: relative;
  height: 300px;
  width: 900px;
}
#mainimg .slide_file {
  display: none;
}
#slide_image {
  z-Index:2;
  position: absolute;
  left:0px;
  top:0px;
}
#slide_image2 {
  z-Index:1;
  position: absolute;
  left:0px;
  top:0px;
}
/*コンテンツ（#mainと#subと#footermenuと#footerを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
  clear: left;
  width: 890px;
  /*width: 896px;*/
  background-color: #FFFFFF;
  border: 2px solid #6c6c6c;
/* background-image: url(../images/contents_bg.gif); */
/* background-repeat: repeat-y; */
}
/*メインコンテンツ（右側ブロック）
---------------------------------------------------------------------------*/
#main {
  float: left; /*right;*/
  width: 867px; /*620px;*/
  display: inline;
  padding-right: 10px;
  /*margin-right: 10px;*/
  padding-top: 30px;
  padding-left: 5px;
  /*暫定処理*/
  border: 5px solid #002eff;
}
#main h2 {
  font-size: 100%;
  color: #FFFFFF;
  background-image: url(../images/midashi1_bg.gif);
  background-color: #009AD7;
  background-position: left;
  /* background-position: center;*/
  background-repeat: no-repeat;
  padding-left: 30px;
  line-height: 30px;
  border: 1px solid #025373;
}
#main p {
  padding: 0.5em 10px 1em;
}
#main ol {
  padding: 0.5em 20px 1em;
}

/*お知らせポップアップ
---------------------------------------------------------------------------*/
.open {
  cursor:pointer;
  display: inline-block;
  padding: 10px 30px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 3px;
  border: 0;
  transition: 0s;
}
.open:hover {
  background-color: #0375a2;
  color: #fff;
}
#pop-up {
  display: none;
}
.overlay {
  display: none;
}
#pop-up:checked + .overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}
.window {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 360px;
  padding: 30px;
  height: 270px;
  background-color: #fff;
  border-radius: 4px;
  align-items: center;
  transform: translate(-50%, -50%);
}
.close {
  position: absolute;
  top: 4px;
  right: 4px;
  cursor:pointer;
}

/*お知らせポップアップ画像表示
---------------------------------------------------------------------------*/
.open2 {
  cursor:pointer;
  display: inline-block;
  color: red;
  background-color: #fff;
  cursor: pointer;
  border-radius: 3px;
  border: 0;
  transition: 0s;
}
.open2:hover {
  background-color: #0375a2;
  color: #fff;
}
#pop-up2 {
  display: none;
}
.overlay2 {
  display: none;
}
#pop-up2:checked + .overlay2 {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}
.window2 {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 510px;
  padding: 2px 4px 2px 2px;
  height: 500px;
  background-color: #fff;
  border-radius: 4px;
  align-items: center;
  transform: translate(-50%, -50%);
  /* background-color: red; */
}
.close2 {
  position: absolute;
  top: 4px;
  right: 4px;
  cursor:pointer;
}
/*製品仕様
---------------------------------------------------------------------------*/
ul#pleaseread {
  display:table; 
  width: 100%;
  line-height: 60px;
}
ul#pleaseread li {
  display:table-cell; 
}
/*フッターメニュー
---------------------------------------------------------------------------*/
ul#footermenu {
  text-align: center;
  clear: both;
  width: 100%;
  line-height: 60px;
  background-image: url(../images/footermenu_bg.gif);
  background-repeat: repeat-x;
  background-position: top;
  border-top: 1px solid #6c6c6c;
}
ul#footermenu li {
  display: inline;
  margin-right: 5px;
  margin-left: 5px;
}
/*フッター
---------------------------------------------------------------------------*/
#footer {
  background-color: #000000;
  text-align: center;
  color: #FFFFFF;
}
#footer a {
  color: #FFFFFF;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#main .new dl {
  height: 150px;
  overflow: auto;
  padding-right: 10px;
  padding-left: 10px;
}
#main .new dt {
  font-weight: bold;
  float: left;
}
#main .new dd {
  border-bottom: 1px solid #cccccc;
  padding-left: 8em;
}
/*テーブル
----------------------------------------------------------------------*/
.ta1 {
  /* width: 620px; */
  /* width:60%; */
  margin: 0 auto;
  line-height: 1.3;
}
.ta1, .ta1 td, .ta1 th{
  border: 1px solid #999999;
}
.ta1 td, .ta1 th{
  padding: 10px 5px;
}
.ta1 th{
  background-color: #f5f5f5;
  width: 150px;
  text-align: center;
  font-weight: normal; /*ckckckck*/
}
.ta1 th.tamidashi{
  width: auto;
  font-size: 120%;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  background-color: #369fc9;
  padding: 1px 5px;
}
/*製品案内テーブル
----------------------------------------------------------------------*/
.ta2 {
/*-  width: 620px; */
  width:70%;
  margin: 0 auto;
}
.ta2, .ta2 td, .ta2 th{
  border: 1px solid #999999;
} 
.ta2 td, .ta2 th{
  padding: 1px 5px;
  text-align: center; 
}
.ta2 th{
  background-color: #f5f5f5;
  width: 150px;
  text-align: center;
}
.ta2 th.tamidashi{
  width: auto;
  font-size: 100%;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  background-color: #369fc9;
  padding: 1px 5px;
}
/*DLテーブル
---------------------------------------------------------------------------*/
.ta3 {
/*  width: 620px; */
  /* width:70%; */
  margin: 0 auto;  
}
.ta3, .ta3 td, .ta3 th{
  border: 1px solid #999999;
}
.ta3 td, .ta3 th{
  padding: 10px 30px;
}
.ta3 th{
  background-color: #f5f5f5;
  width: 170px;
}
.ta3 th.tamidashi{
  width: auto;
  font-size: 120%;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #369fc9;
  padding: 1px 5px;
}
.ta3 td div {
  font-size: 100%;
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
.ta3 td.taspace {
  width: auto;
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
.ta3 th img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.ta3 th span {
  display: inline-block;
  vertical-align: middle;
}
/*製品紹介のボックス
---------------------------------------------------------------------------*/
.box1 {
  padding: 5px;
  margin-bottom: 1em;
  border: 1px solid #333333;
  overflow: hidden;
  background-image: url(../images/box1_bg.gif);
  background-repeat: repeat-x;
  background-position: bottom;
  width: 608px;
}
.box1 img {
  float: left;
  width: 150px;
}
.box1 h3 {
  font-size: 100%;
  margin-left: 155px;
  background-color: #333333;
  padding-left: 5px;
  border-left: 4px solid #009ad7;
  color: #FFFFFF;
  margin-bottom: 0.5em;
}
.box1 h3 a {
  color: #FFFFFF;
}
.box1 p {
  line-height: 1.6;
  padding: 0px !important;
  margin-left: 160px;
}
h3.product {
  font-size: 100%;
  background-color: #333333;
  padding-left: 5px;
  border-left: 4px solid #009ad7;
  color: #FFFFFF;
  margin-bottom: 0.5em;
}
/*その他
---------------------------------------------------------------------------*/
.color1 {
  color: #0375a2;
}
.look {
  color: #ffffff;
}
.mb1em {
  margin-bottom: 1em;
}
.clear {
  clear: both;
}
.pagetop {
  text-align: right;
  margin-top: 2em;
}
ul.disc {
  padding: 0.5em 10px 1em 25px;
  font-size: 120%;
  font-weight: normal;
  list-style: none;
}
.acrobat_box {
/* border:1px dotted #E0E0E0; */
  border:none;
  font-size:80%;
  margin-bottom:30px;
  padding:7px; 
}
ul#disccolor li {
  position: relative;
  padding-left:13px;/* 文字移動 */
}
ul#disccolor li::before {  /* after */
  display: block;
  content: '';
  position: absolute;
  top: .6em;
  left: 0px;/* -1.2em */
  width: 9px;
  height: 9px;
  background-color: #0a0a0a8a;
 /*border-radius: 100%; */
}
.order_box {
  width: 160px;
  margin-right: 0;
  margin-left: auto;
  border:1px solid #E0E0E0;
  font-size:120%;
  padding-left: 30px;
}
/* arrow x disc */
ul#arrowdisc li {
  position: relative;
}
ul#arrowdisc li::after,
ul#arrowdisc li::before {
  display: block;
  content: '';
  position: absolute;
}
ul#arrowdisc li::after {
  top: .45em;
  left: -1.5em;
  width: 18px;
  height: 18px;
  background-color: #3498db;
  border-radius: 100%;
}
ul#arrowdisc li::before {
  z-index: 2;
  top: .725em;
  left: -1.3em;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.imgL {
  float:left;
  margin:0 15px 15px 0;
}
.reset {
  margin:0;
  padding:0;
}
/*-----popup-----*/
label.open {
  color: red;
  padding: 0;
/*  line-height: 15px;*/
}
