@charset "utf-8";
/* CSS Document */

html,body {
  font-size:62.5%;
  }
body {
	-webkit-text-size-adjust : auto; /* iPhone用 */
  min-width: 1000px;
  color: #717171;
  line-height:1.8em;
	}

/* 共通の指定
--------------------------------------------------------*/

/* リンク */
a {
  color: #0075c1;
  text-decoration: none;
  }
a,a img {
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
	transition: 0.4s;
}
a:hover {
  color: #b5b4b4;
  text-decoration: underline;
  }
a:hover img {
  opacity:0.6;
}

/* クリアー */
.clearfix,
.header,
.footer-list {zoom:1;}
.clearfix:after,
.header:after,
.footer-list:after { content: ""; display: block; clear: both; }


/* 調整用
-------------------*/
.mb10 { margin-bottom:10px; }
.mb20 { margin-bottom:20px; }
.mb30 { margin-bottom:30px; }
.mb40 { margin-bottom:40px; }
.mb50 { margin-bottom:50px; }
.mb60 { margin-bottom:60px; }
.mb70 { margin-bottom:70px; }
.mb80 { margin-bottom:80px; }


/* 背景画像指定 */
.inner { width:1000px; margin:0 auto; }
.pd-off .inner { padding: 0 20px; }


/* header
--------------------------------------------------------*/
.header {
  width: 100%;
  height: 88px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);  /* Safari, Chrome用 */
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);  /* CSS3草案 */
  position: fixed;
  z-index: 100;
  background-color: #FFF;
  top:0;
  min-width: 1000px;
  /* opacity: 0.2; */
	}

.header-logo {
  float: left;
  margin: 20px 0 0 26px;
  }

  .header-nav a,
  .header-nav .nolink {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: .05em;
    color: #717171;
  }


/* ロゴ
------------------------*/
p.logo {
  float:left;
  width:216px;
  height:42px;
  background-color:#000;
  display:block;
  margin:18px 0 0 34px;
  }

/* nav
--------------------------------------------------------*/
nav {
  float: right;
  position:relative;
  top: 22px;
	}

/* サブメニュー
------------------------*/
  
.header-nav {
  display: table;
}
.header-nav > li {
  display: table-cell;
  position: relative;
}
.header-nav > li > a,
.header-nav > li > .nolink {
  padding: 0 30px;
  height: 66px;
  display: table-cell;
  vertical-align: middle;
  border-bottom: 4px solid #FFF;
  color: #434242;
  cursor:pointer;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
	transition: 0.4s;
}
.header-nav > li > a:hover {
  border-bottom: 4px solid #0075c1;
  }
.header-nav > li > .nolink:hover {
  border-bottom: 4px solid #0075c1;
  opacity:0.6;
}

.header-nav > li:before {
  content: url(../img/common/header-nav-border.png);
  position:absolute;
  top:50%;
  margin-top: -8px;
  }
.header-nav > li:first-child:before {
  content: '';
  }

.header-nav li .sub-nav {
  list-style: none;
  position: absolute;
  top: 100%;
  right: -40px;
  margin: 0;
  padding: 0;
  border-radius: 0 0 3px 3px;
	}
 
  .header-nav li.sub .sub-nav:last-child {
    right: -100px;
  }
.header-nav li .sub-nav-box {
  overflow: hidden;
  height: 0;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
.header-nav li .sub-nav-box.company {
  width: 200px;
}
.header-nav li .sub-nav-box.service {
  /* width: 590px; */
  /* display: flex; */
  /* min-width: 760px; */
  /* width: 960px; */
  /* justify-content: space-around; */
  /* height: 420px; */
}


.header-nav li .sub-nav-box.service .list-wrapper {
  display: flex;
  justify-content: space-around;
  min-width: 960px;
}
.header-nav li .sub-nav-box.recruit {
  width: 200px;
}
.header-nav li ul li {
  margin-bottom: 2px;
  }
  .header-nav li ul.mb-clear li:last-child {
  margin-bottom: 0px;
  }
header .list-right li {
  margin-left: 2px;
  }
.header-nav li ul li a {
  text-align: left;
  width: 100%;
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  background-color: #FFF;
  text-decoration: none;
  padding: 8px 4px 8px 20px;
  position: relative;
  color: #424242;
  line-height: 1;
}
.header-nav li ul li a:hover {
  color: #424242;
  }
.header-nav li ul li a:after {
  position: absolute;
  top: 0.7em;
  left: 0.8em;
  display: block;
  content: '';
  background: transparent;
  border-left: 6px solid #0075c1;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
}

.header-nav li h3 {
  margin: 9px 4px 9px 10px;
  line-height: 1;
  }
.header-nav li h3 img {
  vertical-align: bottom;
  }

.header-nav li:hover .sub-nav {
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
.header-nav li:hover .sub-nav-box {
  overflow: visible;
  background-color: #e5f4fd;
  box-shadow:0 4px 6px -4px rgba(0,0,0,0.4) inset;
  padding-top: 12px;
  height: auto;
  }
  .header-nav li:hover .sub-nav-box.company {
    height: 198px;
  }
  .header-nav li:hover .sub-nav-box.service {
    /* height: 261px; */
    height: auto;
  }
  .header-nav li:hover .sub-nav-box.recruit {
    height: 106px;
  }
#dropmenu li:hover ul li:first-child {
  border-top: 0;
}
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}

.header-nav li li a:hover {
  opacity: 0.7;
  }

/* サブナビの中身 */
header .list-left,
header .list-right {
  /* width: 50%; */
  width: 33.3%;
  float: left;
  }

  header .list-left h3,
  header .list-right h3 {
    font-size: 14px;
    color: #2383c4;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: .1em;
  }

/* #contents
--------------------------------------------------------*/
/* タイトルの画像 */
.main-img-box {
  width: 100%;
  height: 175px;
  overflow: hidden;
  position: fixed;
  top:0;
  z-index: -1;
  margin-top: 88px;
  }
.main-img {
  width: 100%;
  height: 175px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  }
.main-img-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  }

#contents {
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 40px;
  background: #FFF;
  line-height: 1.8em;
  margin-top: 260px;
  }

h1 {
  text-align: center;
  /* padding-top: 80px; */
  }

#contents h1,
#contents h2,
#contents h3 {
  text-align: center;
  }
#contents h2 {
  margin-bottom: 50px;
  }
#contents h3 {
  font-weight: normal;
  color: #0075c1;
  font-size: 24px;
  font-size: 2.4rem;
  }

b {
  color: #0075c1;
  font-weight: normal;
  }


img.figure {
  margin-bottom: 60px;
  }

.icon {
  display: block;
  }

.cont {
  padding: 80px;
  }
.cont.pd-off {
  padding: 80px 0px;
  }
.cont.center {
  text-align: center;
  }

/* スペック表 */
table.spec {
  width: 100%;
  margin: 0 auto;
  background-color: #FFF;
  }
table.spec th {
  width: 35%;
  font-weight: normal;
  }
table.spec.spec-blue th {
  color: #0075c1;
  }
table.spec th,
table.spec td {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid #b0afaf;
  padding: 20px;
  }
table.spec.spec-blue.border_n th,
table.spec.spec-blue.border_n td {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
	border: 1px solid #FFFFFF;
	text-decoration:underline;
  }
table.spec.spec-blue.border_n td img {
	border: 2px solid #0075c1;
}
/* 図のテーブル */
table.figure {
  width: 100%;
  margin: 0 auto 80px;
  background-color: #FFF;
  }
table.figure th,
table.figure td {
  font-size: 16px;
  font-size: 1.6rem;
  width: 50%;
  text-align: center;
  border: 1px solid #b5b4b4;
  font-weight: normal;
  padding: 20px 0;
  }
/* 会社概要テーブル */
table.spec.company th {
  font-weight: bold;
  color: #717171;
  }
table.spec.company th,
table.spec.company td {
  text-align: left;
  padding: 10px 18px;
  }
#contents .company h3 {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: left;
  }

.company dt {
  position: relative;
  padding-left: 16px;
  }
.company dt:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background-color: #0075c1;
  position:absolute;
  left:0;
  top: 0.55em;
  }
.company ol {
  padding: 0;
  }
.company ol li {
  list-style-position: inside;
  list-style-type: decimal;
  }
#contents .company ul li {
  position: relative;
  padding-left: 12px;
  }
#contents .company ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  display: block;
  background-color: #0075c1;
  position:absolute;
  left:0;
  top: 0.55em;
  }


/* 背景の色 */
.bg-gray {
  background-color: #e7e6e6 !important;
  }
/* .bg-gray:last-child {
  background-color: #000;
  } */
.box-w {
  background-color: #FFF;
  }

/* リストのアイコン */
.list-sq li {
  padding-left: 20px;
  position: relative;
  white-space: nowrap;
  }
.list-sq li:before {
  content:"";
  width: 14px;
  height: 14px;
  display: block;
  background-color: #0075c1;
  position: absolute;
  left:0;
  top:0.4em;
  }
.list-cir li {
  padding-left: 20px;
  position: relative;
  }
.list-cir li:before {
  content:"";
  width: 14px;
  height: 14px;
  display: block;
  background-color: none;
  border:1px solid #717171;
  border-radius: 7px;
  position: absolute;
  left:0;
  top:0.4em;
  }

/* PDFアイコン */
.icon-pdf {
  background:url(../img/common/icon-pdf.png) left center no-repeat;
  padding-left: 40px;
  }

/* layout
--------------------------------------------------------*/
.col-layout {
  width: 100%;
  display: table;
  }
.col {
  display: table-cell;
  }
.col-3 .col {
  width: 33.333333%;
  }
.col-2 .col {
  width: 50%;
  }

.col-3 .col,
.col-2 .col {
  padding: 20px;
  }


/* 中面共通の指定
--------------------------------------------------------*/
.cont li { font-size: 16px; font-size: 1.6rem; }
.cont .fz18 li { font-size: 18px; font-size: 1.8rem; margin-bottom: 8px;}

.col-layout.white-box {
  border-collapse: separate;
  border-spacing: 30px 0;
  }
.white-box .col {
  display: table-cell;
  background-color: #FFF;
  }
.white-box ul {
  padding: 20px 30px;
  }
.white-box h3 {
  border-bottom: 1px solid #e7e6e6;
  padding: 20px;
  }

img.pic {
  border: 1px solid #bcbcbc;
  padding: 6px;
  }

/* ナンバーリスト*/
.list-number {
  display: table;
  text-align: left;
  }
.list-number li {
  width: 49.5%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 60px;
  }
.list-number li:last-child {
  margin-bottom: 0;
  }
.list-number li:nth-child(odd) { padding-right: 28px; }
.list-number li:nth-child(even) { padding-left: 28px; }
.icon-number {
  padding: 10px;
  background-position: left center;
  background-repeat: no-repeat;
  text-align: left !important;
  padding-left: 60px;
  margin-bottom: 20px;
  }
.list-number p {
  padding-left: 60px;
  text-align:justify;
  }
.in-1 { background-image: url(../img/product/icon-number-1.png);}
.in-2 { background-image: url(../img/product/icon-number-2.png);}
.in-3 { background-image: url(../img/product/icon-number-3.png);}
.in-4 { background-image: url(../img/product/icon-number-4.png);}
.in-5 { background-image: url(../img/product/icon-number-5.png);}
.in-6 { background-image: url(../img/product/icon-number-6.png);}
.in-7 { background-image: url(../img/product/icon-number-7.png);}

/* 注意書き */
.notes {
  font-size: 12px;
  font-size: 1.2rem;
  }

/* お問合せ箇所 */
.contact {
  text-align: center;
  color: #0075c1;
  font-size: 15px;
  font-size: 1.5rem;
  border-top: 1px solid #b5b4b4;
  padding-top: 40px;
  }
.contact h2 {
  margin-bottom: 10px !important;
  }
.contact li {
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: inline-block;
  margin: 0px 12px 0;
  letter-spacing: 2px;
  font-weight: bold;
  }
.contact a {
  text-decoration: none;
  color: #0075c1;
  }
.contact a:hover {
  text-decoration: underline;
  color: #b5b4b4;
  }


/* footer
--------------------------------------------------------*/
footer {
  background:#e7e6e6;
  padding: 60px 0 40px 0;
	}

.footer-list {
  width: 1000px;
  display: table;
  background: url(../img/common/footer-list-border.png) right top repeat-y;
  }
.footer-list-box {
  /* padding: 0 50px; */
  padding: 0 30px;
  background: url(../img/common/footer-list-border.png) left top repeat-y;
  /* width: 20%; */
  white-space: nowrap;
  }

  .footer-list-box .list-wrapper {
    display: flex;
    width: fit-content;
    margin-top: 30px;
  }
/* .footer-list-box:first-child {
  width: 60%;
  } */

.footer-list-box,
footer .list-left,
footer .list-right {
  display: table-cell;
  }
footer .list-left,
footer .list-right {
  /* width: 50%; */
   width: 40%;
  }
/* footer .list-left {
  padding-right: 50px;
  } */

.footer-list h2 {
  /* margin-bottom: 22px; */
  font-size: 20px;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  margin: 3px 0 22px;
  }
.footer-list h3 {
  /* margin-bottom: 2px; */
  margin-bottom: 10px;
  font-size: 14px;
  color: #2383c4;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: .1em;
  }
.footer-list ul {
  margin-bottom: 14px;
  }
  .footer-list ul.mb {
  margin-bottom: 60px;
  }
  .footer-list ul.mb-clear {
    margin-bottom: 0;
    }
.footer-list li {
  /* line-height: 2.4em; */
  }
.footer-list a {
  color: #434242;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 1.9em;
  }

.footer-list a:hover {
  opacity: 0.5;
  text-decoration: underline;
  }  

.footer-list a:after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 3px;
  display: block;
  background-color: #0075c1;
  position:absolute;
  left:0;
  top: 0.75em;
  }
.footer-list .br {
  content: "<br>";
  display: block;
  }

footer .copy {
  color:#fff;
  font-size:10px;
	}


/* コピーライト */
p.copyright {
  margin-top: 60px;
  text-align: right;
  }

/* ページの先頭へ */
#pagetop {
  width: 60px;
  /* width: 4.5%; */
  position: fixed;
  right:20px;
  bottom:20px;
  }
#pagetop a {
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 60px;
  border-radius: 30px;
  display: block;
  position:relative;
  }
#pagetop a:after {
  border-left: 3px solid #FFF;
  border-top: 3px solid #FFF;
  border-radius: 2px;
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -10px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  }
#pagetop a:hover {
  background-color: #0075c1;
  }
