@charset "utf-8";
/*!
 * CSS for the entire website.
 *
 * @author    Kaoru Ishikura <ishikura at sakura-creative dot com>
 * @copyright Copyright © 2015, SAKURA Creative Inc.
 * @link      http://www.sakura-creative.com/
 * @package   Palette Site Framework
 * @since     HTML5
 * @version   1.0.0
 */

/* Table of contents ---- *//*

  - core
    - Structure Module
    - Presentation Module
    - Hypertext Module
    - Tables Module
    - Assistive Text
    - Utilities
    - Selection
    - Utilities
  - page
  - header
    - logo
    - header-nav
  - content
    - main
      - inquiry-info
    - sidebar
      - sidebar-nav
  - footer
    - back-to-top
    - footer-nav
    - copy

*//* ---------------------- */

/* core
=========================== */
  /*** Structure Module ***/
  body {
    color: #333;
    font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  }
  /*** Presentation Module ***/
  hr {
    display: none;
  }
  #main hr {
    display: block;
  }
  /*** Hypertext Module ***/
  a:link {
    color: #0066cc;
    text-decoration: none;
  }
  a:hover,
  a:active {
    color: #0066cc;
    text-decoration: underline;
  }
  a:visited {
    color: #0066cc;
    text-decoration: none;
  }
  /*** Tables Module ***/
  table:not([class="ui-table-none"]) tr:nth-child(even) {
    background-color: transparent;
  }
  table th {
    padding: 8px 10px;
    background-color: #3399ff;
    color: #fafafa;
    text-align: left;
  }
  table:not([class="ui-table-none"]) th {
    text-shadow: none;
  }
  table td {
    padding: 8px 10px;
  }
  table:not([class="ui-table-none"]) td {
    text-shadow: none;
  }
  /*** Assistive Text ***/
  .assistive-text {
    position: absolute !important;
    z-index: -1;
    clip: rect(1px, 1px, 1px, 1px);
  }
  .assistive-text:focus {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 100000;
    padding: 12px;
    color: #333;
    background: #fff;
    border: 2px solid #333;
    border-radius: 3px;
    font-size: 12px;
    clip: auto !important;
  }
  /*** Utilities ***/
  .msg-bar {
    border-bottom: none;
    background-color: #000;
    color: #fafafa;
    -webkit-box-shadow: 0 0 8px #000;
    -moz-box-shadow: 0 0 8px #000;
    box-shadow: 0 0 8px #000;
  }
  /*** Selection ***/
  ::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
  }
  ::selection {
    background: #b3d4fc;
    text-shadow: none;
  }
  /*** Utilities ***/
  .clearfix > .left {
    float: left;
  }
  .clearfix > .right {
    float: right;
  }

/* page  960px
=========================== */
#page {
  width: auto;
  margin: 0 auto;
}

/* header
=========================== */
/*** header ***/
#header {
}
  /*** header>logo ***/
  #logo {
    float: left;
/*    width: 320px;   */
    width: 100%;
    max-width: 3000px; 
    margin: 0;
    padding-top: 7px;
    padding-left: 14px;
    line-height: 1;
    vertical-align: middle;
  }
  #logo a {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
  }
  #logo a img {
    line-height: 1;
    vertical-align: middle;
  }
  /*** header>header-nav ***/
  #header-nav {
    float: right;
/*    width: 450px; */
      width: 60%;
    padding-top: 54px;
  }
  #header-nav .header-nav-title {
    position: absolute !important;
    z-index: -1;
    clip: rect(1px, 1px, 1px, 1px);
  }
  #header-nav .header-nav-title:focus {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 100000;
    padding: 12px;
    font-size: 12px;
    clip: auto !important;
  }
  #header-nav ul {
    width: 100%;
    text-align: right;
  }
  #header-nav li {
  }
  #header-nav li:first-child {
    margin-left: 0;
  }
  #header-nav li a {
   }

/* content
=========================== */
  /*** content ***/
  #content {
    margin-bottom: 75px;
    padding-top: 18px;
  }
  /*** content>main ***/
  #main {
    float: left;
    width: 100%;
    max-width: 3000px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #main h1 {
    margin-top: 0;
    margin-bottom: 1.1em;
    padding: 11px 10px;
    border-top: 3px solid #FFFFFF;
    background-color: #FF0000;
    color: #FFFFFF;
    font-size: 25px;
    font-size: 2.5rem;
  }

  #main h1 span:before,
  #main h1 span:after {
    display: block;
    content: " ";
    position: absolute;
    left: -7px;
    z-index: 2;
    width: 7px;
    height: 7px;
    background-color: #000066;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  #main h1 span:before {
    top: -3px
  }
  #main h1 span:after {
    bottom: -3px;
  }
  #main h2 {
    width: auto;
    margin-bottom: 1.15em;
    padding: 9px 10px 11px 12px;
    border-bottom: 1px solid #000066;
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #f2f2f2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
    font-size: 18px;
    font-size: 1.8rem;
  }
  #main h2 span {
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 18px;
    line-height: 1.3;
    border-left: 4px solid #000066;
  }
  #main h2 span:before,
  #main h2 span:after {
    display: block;
    content: " ";
    position: absolute;
    left: -4px;
    z-index: 2;
    width: 4px;
    height: 4px;
    background-color: #000066;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  #main h2 span:before {
    top: -2px;
  }
  #main h2 span:after {
    bottom: -2px;
  }
  #main h3 {
    width: auto;
    margin-bottom: 1.15em;
    padding: 9px 10px 11px 12px;
    border-bottom: 1px solid #000066;
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #f2f2f2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
    font-size: 18px;
    font-size: 1.8rem;
  }
  #main h3 span {
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 18px;
    line-height: 1.3;
    border-left: 4px solid #000066;
  }
  #main h3 span:before,
  #main h3 span:after {
    display: block;
    content: " ";
    position: absolute;
    left: -4px;
    z-index: 2;
    width: 4px;
    height: 4px;
    background-color: #000066;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  #main h3 span:before {
    top: -2px;
  }
  #main h3 span:after {
    bottom: -2px;
  }
  #main h4 {
    width: auto;
    margin-bottom: 1.15em;
    padding: 9px 10px 11px 12px;
    border-bottom: 1px solid #000066;
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #f2f2f2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
    font-size: 18px;
    font-size: 1.8rem;
  }
  #main h4 span {
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 18px;
    line-height: 1.3;
    border-left: 4px solid #000066;
  }
  #main h4 span:before,
  #main h4 span:after {
    display: block;
    content: " ";
    position: absolute;
    left: -4px;
    z-index: 2;
    width: 4px;
    height: 4px;
    background-color: #000066;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  #main h4 span:before {
    top: -2px;
  }
  #main h4 span:after {
    bottom: -2px;
  }
  #main h5 {
    width: auto;
    margin-bottom: 1.15em;
    padding: 9px 10px 11px 12px;
    border-bottom: 1px solid #000066;
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #f2f2f2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
    font-size: 18px;
    font-size: 1.8rem;
  }
  #main h5 span {
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 18px;
    line-height: 1.3;
    border-left: 4px solid #000066;
  }
  #main h5 span:before,
  #main h5 span:after {
    display: block;
    content: " ";
    position: absolute;
    left: -4px;
    z-index: 2;
    width: 4px;
    height: 4px;
    background-color: #000066;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  #main h5 span:before {
    top: -2px;
  }
  #main h5 span:after {
    bottom: -2px;
  }
  #main p,
  #main li {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
  }
  #main section {
    margin-bottom: 30px;
  }
    /*** content>main>inquiry-info ***/
    #main #inquiry-info {
      margin-top: 40px;
      padding: 17px 63px 17px 67px;
      border: 1px solid #999;
      border-top: 4px solid #000066;
      background-color: #f2f2f2;
    }
    #main #inquiry-info dt {
      float: left;
      width: 300px;
      margin-top: 12px;
      font-size: 13px;
      font-size: 1.3rem;
    }
    #main #inquiry-info dt:before {
      display: inline-block;
      content: " ";
      width: 5px;
      height: 5px;
      margin-right: 10px;
      overflow: hidden;
      background-color: #000066;
      vertical-align: middle;
    }
    #main #inquiry-info dd {
      float: right;
      width: 246px;
      overflow: hidden;
      border: 1px solid #ccc;
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px;
    }
    #main #inquiry-info dd a {
      display: block;
      padding: 10px 14px 7px;
      background: #ffffff;
      background: -moz-linear-gradient(top,  #ffffff 0%, #f2f2f2 100%);
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
      background: -webkit-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
      background: -o-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
      background: -ms-linear-gradient(top,  #ffffff 0%,#f2f2f2 100%);
      background: linear-gradient(to bottom,  #ffffff 0%,#f2f2f2 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
      border: 1px solid #fff;
      color: #333;
      text-decoration: none;
    }
    #main #inquiry-info dd a:hover,
    #main #inquiry-info dd a:active {
      background: #3399ff;
      filter: none;
      color: #fafafa;
    }
    #main #inquiry-info dd a span {
      display: block;
      padding-right: 5px;
      padding-left: 18px;
      background: url("https://machinery.hitachizosen.co.jp/rs/757-KRM-129/images/icon-arrow-square-01common.png") no-repeat left center;
      font-size: 17px;
      font-size: 1.7rem;
      font-weight: bold;
      text-align: center;
    }
    #main #inquiry-info dd a:hover span,
    #main #inquiry-info dd a:active span {
      background-image: url("https://machinery.hitachizosen.co.jp/rs/757-KRM-129/images/icon-arrow-square-02common.png");
    }
  /*** content>sidebar ***/
  #sidebar {
    float: left;
    width: 200px;
  }
    /*** content>sidebar>sidebar-nav ***/
    #sidebar-nav {
      font-size: 14px;
      font-size: 1.4rem;
    }
    #sidebar-nav .sidebar-nav-title a {
      display: block;
      padding: 17px 5px 17px 27px;
      background: #000066 url("https://machinery.hitachizosen.co.jp/rs/757-KRM-129/images/sidebar-nav-icon-arrow-01common.png") no-repeat 7px center;
      color: #fafafa;
    }
    #sidebar-nav ul {
      padding-top: 1px;
    }
    #sidebar-nav li a {
      display: block;
      margin-top: -1px;
      padding: 10px 4px 10px 26px;
      border: 1px solid #ddd;
      background: #daeef3 url("https://machinery.hitachizosen.co.jp/rs/757-KRM-129/images/sidebar-nav-icon-arrow-02common.png") no-repeat 9px center;
    }
    #sidebar-nav li a:hover,
    #sidebar-nav li a:active,
    #u-tec #sidebar-nav li.u-tec a,
    #rollfit #sidebar-nav li.rollfit a,
    #autopac #sidebar-nav li.autopac a,
    #autopac-pro #sidebar-nav li.autopac-pro a,
    #ecopac #sidebar-nav li.ecopac a,
    #tempac #sidebar-nav li.tempac a,
    #tfap-mk3 #sidebar-nav li.tfap-mk3 a,
    #tfa #sidebar-nav li.tfa a,
    #tftp-mk3 #sidebar-nav li.tftp-mk3 a,
    #tft #sidebar-nav li.tft a,
    #tfop-mk3 #sidebar-nav li.tfop-mk3 a,
    #tfo #sidebar-nav li.tfo a,
    #tfp-mk2 #sidebar-nav li.tfp-mk2 a,
    #tf #sidebar-nav li.tf a {
      border: 1px solid #3399ff;
      background-color: #3399ff;
      background-image: url("https://machinery.hitachizosen.co.jp/rs/757-KRM-129/images/sidebar-nav-icon-arrow-03common.png");
      color: #fafafa;
      text-decoration: none;
    }

/* footer
=========================== */
/*** footer ***/
#footer {
  position: relative;
  padding: 13px 20px 10px;
  border-top: 2px solid #000066;
  background-color: #e2e2e2;
    width: 100%;
    max-width: 3500px;
}
  /*** footer>back-to-top ***/
  #back-to-top {
    position: absolute;
    top: -36px;
    right: 0;
  }
  #back-to-top a {
    display: block;
    height: 13px;
    padding: 10px 12px 10px 34px;
    line-height: 1;
    overflow: hidden;
    background: #3399ff url("https://machinery.hitachizosen.co.jp/rs/757-KRM-129/images/back-to-top-icon-arrowcommon.png") no-repeat 10px center;
    color: #fafafa;
    text-decoration: none;
  }
  /*** footer>footer-nav ***/
  #footer-nav {
    float: left;
    width: 350px;
  }
  #footer-nav ul {
    width: 100%;
  }
  #footer-nav li {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px dotted #999;
  }
  #footer-nav li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  /*** footer>copy ***/
  #copy {
    float: right;
    width: 400px;
    color: #666;
    font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 10px;
    font-size: 1rem;
    text-align: right;
  }