.header {
  position: relative;
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 10;
}
/* gnavi */
.navi_line{border-top: none;}
  nav {
    position: fixed;
    top: 0;
    left: -700px;
    bottom: 0;
    width: 60%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    background: #777;
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
  }
  nav .inner ul li a {
    display: block;
    text-align: left;
    color: #fff;
    font-size: 16px!important;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .toggle_btn{
    display: block;
    position: absolute;
    top: 30px;
    right: 270px;
    width: 50px;
    height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    position: absolute;
    left: 0;
    width: 50px;
    height: 4px;
    background: #4c4c4c;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .toggle_btn span:nth-child(1) {
    top: 0;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: -2px;
  }
  .open .toggle_btn span {
    background-color: #4c4c4c;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(14px) rotate(-315deg);
    transform: translateY(14px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-14px) rotate(315deg);
    transform: translateY(-14px) rotate(45deg);
  }
  #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }
  #menu-content > li {
    width: 100%;
    /* margin-bottom: 15px; */
  }
  #menu-content > li:hover {
    background: rgba(203,0,0,0.5);;
  }
  #menu-content > li > a {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    border-left: none;
  }
  #menu-content > li > a span{font-size: 1.5rem;}
  #menu-content > li > ul.second-content {
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #menu-content > li > ul.second-content > li {
    width: 100%;
    text-align-last: left;
  }
  #menu-content > li > ul.second-content > li > a {
    font-size: 1.4rem!important;
    line-height: 2.8;
    padding-left: 20px;
  }
  #menu-content > li > ul.second-content > li > a:hover {
    background: rgba(255,255,255,0.4);
    color: #cb0000;
  }
  #menu-content > li > ul.second-content > li:last-child{
    border-bottom: 1px solid #ddd;
  }
  #menu-content li:last-child{
    border-right: none;
  }



/* Navbar Container */
.navtext_container {
  box-sizing: border-box;
  height: 100px;
  position: absolute;
  display: flex;
}
.nav_logo{
  position: relative;
  width: calc(100% - 340px);
}
.nav_area{
  position: relative;
  width: 340px;
}
.nav_area .containerbox{
  justify-content: center;
  align-items: center;
}
.navi_link:first-child{
  width: 100px;
}
.navi_link{width: 120px;}
.bg_navired,
.bg_navigray{
  text-align: center;
  font-size: 2.0rem;
  height: 100px;
  line-height: 100px;
}
.bg_navired{background: #cb0000;}
.bg_navigray{background: #4c4c4c;}

a:hover.bg_navired,
a:hover.bg_navigray{
  opacity: 0.7;
  color: #fff;
}


.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}


@media screen and (max-width: 768px){
  header.header .wrapper{
    width: 100%;
    padding: 0;
  }
  .header,
  .navtext_container{height: 75px;}

  .navi_link{display: none;}
  .recruit_main {padding-top: 125px!important;}
  .nav_logo{width: 85%;
    padding-left: 20px;
  }
  .nav_area{width: 50%;}

  nav{width: 100%;}
  .toggle_btn{
    top: 20px;
    right: 20px;
  }

  header .item02{
    width: 50%;
    margin-bottom: 0;
  }
  .bg_navired,
  .bg_navigray{
line-height: 50px;
height: 50px;
  }




}