@charset "UTF-8";
/*Header*/
.header-sp-only {
  display: none;
}
#header {
  z-index: 999;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #0b3065;
  height: 0px;
}
a.meanmenu-reveal {
  display: none;
}
header {
  width: 100%;
}
.header-inner {
  width: 100%;
  margin: 0 auto;
  height: 110px;
  border-bottom: 1px solid #0b3065;
  background: #0b3065;
}
.header-inner .main_logo {
  width: 109px;
  float: left;
  padding: 0;
  background-color: #0b3065;
}
.header-inner .main_logo img {
  width: 100%;
  height: auto;
}
.main-navigation {
  float: right;
}
.header-inner h1 {
  float: left;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05rem;
  padding: 35px 0 0 25px;
}
.header-inner h1 a {
  color: #FFF;
  text-decoration: none;
}
.header-inner:after, .header-contents:after, .gnavi__wrap:before {
  content: "";
  display: block;
  clear: both;
}
.main-navigation:before, .main-navigation:after, .main-navigation .menu:after, header:after, nav:after {
  content: "";
  display: block;
  clear: both;
}
/*==ナビゲーション全体の設定*/
nav {
  position: relative;
  top: 0px;
  color: #fff;
  text-align: center;
  margin-bottom: -20px
}
/*ナビゲーションを横並びに*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
nav ul ul {
  display: block;
}
nav ul li {
  position: relative;
}
nav ul li a {
  text-align: left;
  display: block;
  text-decoration: none;
  color: #FFF;
  padding: 0px 15px 0px 15px;
  transition: all .3s;
  font-size: 0.8rem;
}
nav ul li li a {
  padding: 10px 35px;
}
nav ul li a:hover {}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
/*nav ul li a:hover::before {
  color: #b3cd05;
  content: '';
  position: absolute;
  left: 48%;
  top: 110px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #b3cd05;
  border-right: 2px solid #b3cd05;
  transform: rotate(135deg);
}
nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 48%;
  top: 110px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(135deg);
}*/
nav ul li ul li a span {
  position: relative;
  left: -20px;
}
nav ul li ul li a::before {
  color: #FFF;
  content: '';
  position: absolute;
  left: 180px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
nav ul li ul li a:hover::before {
  color: #FFF;
  content: '';
  position: absolute;
  left: 180px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
/*== 2・3階層目の共通設定 */
nav li.has-child ul {
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 4;
  background: #0b3065;
  width: 200px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul, nav li.has-child ul li:hover > ul, nav li.has-child:active > ul, nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
nav li.has-child ul li:last-child a {
  border-bottom: none;
}
nav li.has-child ul li a:hover, nav li.has-child ul li a:active {
  background-color: #4d9bd3;
}
/*==3階層目*/
/*3階層目の位置*/
nav li.has-child ul ul {
  top: 0;
  left: 182px;
  background: #0b3065;
}
nav li.has-child ul ul li a:hover, nav li.has-child ul ul li a:active {
  background: #0b3065;
}
/*==768px以下の形状*/
@media screen and (max-width:768px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav li.has-child ul, nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  nav ul li a {
    border-bottom: 1px solid #ccc;
  }
  /*矢印の位置と向き*/
  nav ul li.has-child::before {
    left: 20px;
  }
  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}
.menu {
  width: 100%;
  position: relative;
  right: 30px;
}
.menu-item {
  font-size: 0.8rem;
  color: #FFF;
  flex-grow: 1;
  padding: 6px;
  float: right;
}
.menu-item a {
  color: #FFF;
  text-decoration: none;
}
.menu-item .info::before {
  content: "";
  display: inline-block;
  width: 55px;
  height: 55px;
  background: url(../img/icon-info.png) no-repeat;
  background-size: contain;
  margin-right: -10px;
  vertical-align: middle;
}
.menu-item .access::before {
  content: "";
  display: inline-block;
  width: 55px;
  height: 55px;
  background: url(../img/icon-access.png) no-repeat;
  background-size: contain;
  margin-right: -10px;
  vertical-align: middle;
}
.menu-item .mail::before {
  content: "";
  display: inline-block;
  width: 55px;
  height: 55px;
  background: url(../img/icon-mail.png) no-repeat;
  background-size: contain;
  margin-right: -10px;
  vertical-align: middle;
}
.menu-item .links::before {
  content: "";
  display: inline-block;
  width: 55px;
  height: 55px;
  background: url(../img/icon-links.png) no-repeat;
  background-size: contain;
  margin-right: -10px;
  vertical-align: middle;
}
.sp_sns, .language_sp {
  display: none !important;
}