@charset "UTF-8";
  header .header-cnt{
    display: flex;
    justify-content: space-between;
  }
  header nav.menu-open{
    background-color: #fff;
  }
  header .header-nav-cnt{
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
  header .header-cnt nav.pc-nav ul{
    margin-right: 120px;
    list-style: none;
    display: flex;
    gap: 2em;
  }
  header .header-cnt nav.pc-nav ul li a{
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: .3s;
  }
  header .header-cnt nav.pc-nav ul li a:hover{
    color: #666;
  }
  .header-nav-box-l{
    width: 400px;
    overflow: hidden;
    background: url(/common/img/head_nav_bg.jpg) left top no-repeat;
    background-size: cover;
  }
  .header-nav-box-r{
    padding: 50px;
    width: calc(100% - 400px);
  }
.sitemap-icon,
.sitemap-sub {
  padding: 0;
  list-style: none;
  display: flex;
}
.sitemap-sub {
  flex-wrap: wrap;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0 10px 50px;
}
.sitemap-sub > li {
  width: 50%;
}
.sitemap-sub > li > a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}
.sitemap-sub > li > a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: solid 2px #999;
  border-right: solid 2px #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}
.sitemap-sub > li > a:hover {
  color: #999;
}
  .header-nav-box-r ul li ul.sitemap-sub{
    display: flex;
  }
  .header-nav-box-r ul li ul.sitemap-sub li{
    width: auto;
    margin: 0;
    padding: 0;
  }
  #navBg{
    top:0;
  }
  @media only screen and (max-width:830px){
    header .header-cnt nav.pc-nav{
      display: none;
    }
    header .header-nav-box-l{
      display: none;
    }
    header .header-nav-box-r{
      padding: 30px;
      width: 100%;
    }
  }
  @media only screen and (max-width:600px){
    header .header-nav-box-r{
      padding: 0;
    }
  }