@charset "utf-8";

/*========== 越後交通共通ヘッダー(2020～) ==========*/
/*---------- フォント ----------*/
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap&subset=japanese');

/*---------- 各スタイル ----------*/
/* ヘッダー */
header {
  display: block;
  width: 100%;
  height: 70px;
  margin: 5px auto;
}

@media screen and (min-width:820px), print {
  header {
    height: 115px;
  }
}

header a,
header {
  color: #333;
  text-decoration: none;
}

header a:hover {
  color: #777;
}

header #header-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width:820px), print {
  header #header-container {
    width: auto;
    min-width: 800px;/*垂直スクロールバー分-20px*/
    max-width: 1100px;
  }
}

/* ヘッダー内各パーツの画面幅による表示制御(ラッパー) */
/** ～599px **/
header #header-logo-anzen-slogan {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
}

header #gnav-1-wrapper {
  display: none;
}

header #gnav-2-wrapper {
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  margin-right: 5px;
}

header #gnav-2-wrapper #gnav-2-side-add {
  display: none;
}

header #gnav-2-wrapper #gnav-2-toggle-btn {
  display: block;
}

/** 600～819px **/
@media screen and (min-width:600px) {
  header #gnav-1-wrapper {
    display: inline;
    position: relative;
    float: right;
    top: 0;
    right: 55px;
  }
}

/** 820px～/印刷 **/
@media screen and (min-width:820px), print {
  header #gnav-1-wrapper {
    display: inline;
    right: 0;
  }
  
  header #gnav-2-wrapper {
    display: inline;
    position: absolute;
    top: 70px;
    margin: 0 auto;
    width: 100%;
    height: 40px;
  }
  
  header #gnav-2-wrapper #gnav-2-toggle-btn {
    display: none;
  }
}

/* ヘッダーロゴ */
#header-logo {
  display: inline-block;
  width: 200px;
  height: 50px;
}

/* 安全スローガン */
#anzen-slogan {
  position: relative;
  top: -2px;
  left: 2px;
  vertical-align: top;
}

#anzen-slogan:after {
  /*安全スローガン文言はekk_anzen_slogan.cssに記載*/
  font-family: 'Noto Serif JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'MS P ゴシック', 'MS P Gothic', sans-Serif;
  font-size: 13px;/*サイズ変動せず固定*/
  font-weight: 500;
}

/* グローバルナビゲーション */
/** 各グロナビ共通 **/
.gnav {
  display: block;
}

.gnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gnav ul li {
  float: left;/*横並び*/
}

.gnav ul li a {
  position: relative;
  display: inline-block;
  text-align: center;
}

/*** アイコン(文字の上に表示) ***/
.gnav .icon-top:before {
  content: '';
  display: block;
  margin: 0 auto 2px auto;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center top;
}

/*** アイコン(文字の左に表示) ***/
.gnav .icon-left:before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
}

/*** hover時下線 ***/
.gnav .hover-line:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  /*縮尺*/
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}

.gnav .hover-line:hover:after {
  width: 100%;
  /*縮尺*/
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  /*アニメーション*/
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

/** グロナビ1 **/
#gnav-1 {
  /*テキスト選択不可*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#gnav-1 ul {
  float: right;
  height: 68px;
}

/*** ナビアイテム ***/
#gnav-1 .nav-item {
  padding: 1px;
}

#gnav-1 .nav-item > a > span {
  text-shadow: 1px 2px 2px #ccc;/*文字影*/
}

/**** hover時 ****/
#gnav-1 .nav-item > a:hover > span,
#gnav-1 .nav-item > a:focus > span {
  color: #666;/*文字色*/
}

#gnav-1 a.icon-left:before {
  vertical-align: middle;
}

#gnav-1 a.icon-left > span {
  display: inline-block;
  vertical-align: middle;
}

/*** ルート階層 ***/
#gnav-1 ul.nav-root > li {
  height: 66px;
  padding: 0 5px;
}

#gnav-1 ul.nav-root > li {
  border-left: dotted 1px #777;
}

#gnav-1 ul.nav-root > li:first-child {
  border-left: none;
}

@media screen and (max-width:819px) {
  #gnav-1 .inquiry-tel {
    display: inline;
  }
  
  #gnav-1 .inquiry-mail,
  #gnav-1 .recruit,
  #gnav-1 .office {
    display: none;
  }
}

@media screen and (min-width:820px), print {
  #gnav-1 .inquiry-tel,
  #gnav-1 .inquiry-mail,
  #gnav-1 .recruit,
  #gnav-1 .office {
    display: inline;
  }
}

/*** 電話によるお問い合わせ ***/
#gnav-1 .inquiry-tel > a > span {
  width: 180px;
}

/**** アイコン ****/
nav .inquiry-tel > a:before {
  width: 24px;
  height: 54px;
  margin: 6px 3px 6px 0;
  background-image: url('/contents/img/icon/inquiry_tel.png');
}

/*** メールによるお問い合わせ ***/
#gnav-1 .inquiry-mail > a > span {
  width: 100px;
}

/**** アイコン ****/
nav .inquiry-mail > a:before {
  width: 24px;
  height: 54px;
  margin: 6px 3px 6px 0;
  background-image: url('/contents/img/icon/inquiry_mail.png');
}

/*** 採用情報 ***/
nav .recruit {
  line-height: 2em;
}

@media screen and (min-width:820px) and (max-width:840px) {
  #gnav-1 .recruit {
    line-height: 1em;
  }
  
  #gnav-1 .recruit span.specialized-break-bfr:before {
    content: '\a';
    white-space: pre;
  }
}

/**** アイコン ****/
nav .recruit > a:before {
  width: 32px;
  height: 32px;
  background-image: url('/contents/img/icon/recruit.png');
}

/*** 事業所 ***/
nav .office {
  line-height: 2em;
}

/**** アイコン ****/
nav .office > a:before {
  width: 32px;
  height: 32px;
  background-image: url('/contents/img/icon/office.png');
}

/** グロナビ2 **/
#gnav-2 {
  display: none;
  position: fixed;
  top: 60px;
  left: auto;
  right: 0;
  width: 300px;
  height: 90%;
  height: calc(100% - 60px);
  padding-bottom: 20px;
  overflow-x: hidden;
  overflow-y: scroll;
  /*テキスト選択不可*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*枠線*/
  border-left: 1px solid rgb(225,225,225);
  /*背景色*/
  background: rgb(238,238,238); /* Old browsers */
  background: -webkit-linear-gradient(left, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: -moz-linear-gradient(left, rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%); /* FF3.6-15 */
  background: linear-gradient(to right, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=1); /* IE6-9 */
  /*スクロールチェーン防止*/
  -ms-scroll-chaining: none;
  overscroll-behavior-y: contain;
}

@media screen and (min-width:820px), print {
  #gnav-2 {
    display: block;
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    height: 40px;
    margin-top: 1px;
    padding-bottom: 0;
    overflow: visible;
    /*枠線*/
    border-left: none;
    border-top: 1px solid rgb(225,225,225);
    border-bottom: 1px solid rgb(225,225,225);
    /*背景色*/
    background: rgb(225,225,225); /* Old browsers */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(225,225,225,1) 0%,rgba(255,255,255,1) 10%,rgba(255,255,255,1) 83%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 90%,rgba(225,225,225,1) 99%); /* Chrome10-25,Safari5.1-6 */
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(225,225,225,1) 0%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 83%, rgba(255,255,255,1) 90%, rgba(255,255,255,1) 90%, rgba(225,225,225,1) 99%); /* FF3.6-15 */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(225,225,225,1) 0%,rgba(255,255,255,1) 10%,rgba(255,255,255,1) 83%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 90%,rgba(225,225,225,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e1e1e1', GradientType=0); /* IE6-9 */
  }
}

/*** 横表示用ヘッダー ***/
#gnav-2-side-header {
  display: none;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  width: 300px;
  height: 60px;
  border-bottom: solid 1px #999;
  overflow: hidden;
  /*テキスト選択不可*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*枠線*/
  border-left: 1px solid rgb(225,225,225);
  /*背景色*/
  background: rgb(238,238,238); /* Old browsers */
  background: -webkit-linear-gradient(left, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: -moz-linear-gradient(left, rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%); /* FF3.6-15 */
  background: linear-gradient(to right, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=1); /* IE6-9 */
}

#gnav-2-side-header > a {
  display: inline-block;
  width: 120px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  margin: 10px;
}

/*** ナビトグルボタン用チェックボックス ***/
#gnav-2-toggle-check {
  display: none;
}

/*** ナビトグルボタン ***/
#gnav-2-toggle-btn {
  position: relative;
  float: right;
  width: 50px;
  height: 50px;
  padding: 2px 4px;
  cursor: pointer;
  z-index: 2;
  overflow: hidden;
  /*背景色*/
  background: rgb(255,255,255); /* Old browsers */
  background: -moz-linear-gradient(-45deg,  rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=1); /* IE6-9 fallback on horizontal gradient */
  /*角丸枠*/
  border: solid 1px #777;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

#gnav-2-toggle-btn:hover * {
  /*半透明*/
  -ms-filter: "alpha(opacity=70)";/*IE 8,9*/
  zoom: 1;/*IE*/
  -moz-opacity: 0.7;/*FF lt 1.5, Netscape*/
  -khtml-opacity: 0.7;/*Safari 1.x*/
  opacity: 0.7;
}

#gnav-2-toggle-btn .wrapper-nav-toggle-bar {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

#gnav-2-toggle-btn .nav-toggle-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333;
  /*角丸*/
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  /*アニメーション*/
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#gnav-2-toggle-btn .nav-toggle-bar.bar-top {
  top: 3px;
}

#gnav-2-toggle-btn .nav-toggle-bar.bar-middle {
  top: 15px;
}

#gnav-2-toggle-btn .nav-toggle-bar.bar-bottom {
  bottom: 3px;
}

#gnav-2-toggle-btn .wrapper-nav-toggle-title {
  position: absolute;
  left: -1px;
  bottom: 2px;
  width: 50px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}

#gnav-2-toggle-btn .nav-toggle-title:after {
  text-align: center;
}

#gnav-2-toggle-btn .nav-toggle-title.title-menu:after {
  content: 'メニュー';
  display: block;
}

#gnav-2-toggle-btn .nav-toggle-title.title-close:after {
  content: '閉じる';
  display: none;
}

/**** ナビトグルボタンクリック時 ****/
#gnav-2-toggle-check:checked + #gnav-2-toggle-btn {
  position: fixed;
  right: 5px;
}

#gnav-2-toggle-check:checked + #gnav-2-toggle-btn .nav-toggle-bar.bar-top,
#gnav-2-toggle-check:checked + #gnav-2-toggle-btn .nav-toggle-bar.bar-bottom {
  top: 14px;
  left: -5px;
  width: 40px;
}

#gnav-2-toggle-check:checked + #gnav-2-toggle-btn .nav-toggle-bar.bar-top {
  /*回転角*/
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  transform: rotate(315deg);
}

#gnav-2-toggle-check:checked + #gnav-2-toggle-btn .nav-toggle-bar.bar-middle {
  width: 0;
  left: 50%;
}

#gnav-2-toggle-check:checked + #gnav-2-toggle-btn .nav-toggle-bar.bar-bottom {
  /*回転角*/
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  -o-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

#gnav-2-toggle-check:checked + #gnav-2-toggle-btn .nav-toggle-title.title-menu:after {
  display: none;
}

#gnav-2-toggle-check:checked + #gnav-2-toggle-btn .nav-toggle-title.title-close:after {
  display: block;
}

@media screen and (max-width:819px) {
  #gnav-2-toggle-check:checked ~ #gnav-2-background {
    display: block;
    z-index: 11;/*swiperより前面にするため+10*/
  }
  
  #gnav-2-toggle-check:checked ~ #gnav-2-side-header {
    display: block;
    z-index: 12;
  }
  
  #gnav-2-toggle-check:checked ~ #gnav-2 {
    display: block;
    z-index: 12;
  }
  
  #gnav-2-toggle-check:checked ~ #gnav-2 #gnav-2-side-add {
    display: inline-block;
  }
  
  #gnav-2-toggle-check:checked + #gnav-2-toggle-btn {
    z-index: 13;
  }
}

/*** ナビ背景 ***/
#gnav-2-background {
  display: none;
  position: fixed;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-color: #555;
  overflow: hidden;
  /*半透明*/
  -ms-filter: "alpha(opacity=50)";/*IE 8,9*/
  zoom: 1;/*IE*/
  -moz-opacity: 0.5;/*FF lt 1.5, Netscape*/
  -khtml-opacity: 0.5;/*Safari 1.x*/
  opacity: 0.5;
  /*ぼかし*/
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

/*** リスト全体 ***/
@media screen and (min-width:820px), print {
  #gnav-2 ul {
    width: 800px;/*li:160px×5*/
    margin: 0 auto;
    vertical-align: middle;
  }
}

@media screen and (min-width:870px) {
  #gnav-2 ul {
    width: 850px;/*li:170px×5*/
  }
}

#gnav-2 ul li {
  float: none;/*縦並び*/
}

@media screen and (min-width:820px), print {
  #gnav-2 ul li {
    float: left;/*横並び*/
  }
}

/*** ナビアイテム ***/
#gnav-2 .nav-item {
  display: inline-block;
  height: 44px;
  margin: 5px;
  /*角丸枠*/
  border-width: 2px;
  border-style: solid;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  /*影*/
  box-shadow: 3px 3px 2px 1px rgba(128,128,128,.5);
}

#gnav-2 .nav-item > a {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 0.25em 0.5em;
  color: #000;
  text-shadow: 1px 2px 2px #aaa;/*文字影*/
  /*アニメーション*/
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  transition: .2s ease;
}

/**** 路線バス ****/
#gnav-2-route-bus .nav-item {
  border-color: rgb(255,173,173);
}

#gnav-2-route-bus .nav-item > a {
  background-color: rgb(255,173,173);
}

/***** hover時 *****/
#gnav-2-route-bus .nav-item > a:hover,
#gnav-2-route-bus .nav-item > a:focus {
  background-color: white;/*Old Browser*/
  background-color: rgba(255,173,173,.5);
}

/**** 高速バス ****/
#gnav-2-hw-bus .nav-item {
  border-color: rgb(191,255,127);
}

#gnav-2-hw-bus .nav-item > a {
  background-color: rgb(191,255,127);
}

/***** hover時 *****/
#gnav-2-hw-bus .nav-item > a:hover,
#gnav-2-hw-bus .nav-item > a:focus {
  background-color: white;/*Old Browser*/
  background-color: rgba(191,255,127,.5);
}

/**** 物販・広告等 ****/
#gnav-2-enterprise .nav-item {
  border-color: rgb(255,220,0);
}

#gnav-2-enterprise .nav-item > a {
  background-color: rgb(255,220,0);
}

/***** hover時 *****/
#gnav-2-enterprise .nav-item > a:hover,
#gnav-2-enterprise .nav-item > a:focus {
  background-color: white;/*Old Browser*/
  background-color: rgba(255,220,0,.3);
}

/*** ナビSNS ***/
#gnav-2 .nav-include-sns {
  display: inline;
  white-space: nowrap;
}

#gnav-2 .wrapper-nav-sns {
  position: relative;/*「＜」相対位置の対象*/
  display: inline-block;
  vertical-align: middle;
  margin-left: -4px;
  background-color: white;
  /*角丸*/
  border: solid 1px #555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/**** 「＜」 ****/
:root #gnav-2 .wrapper-nav-sns::before {/*「:root」「::before」でIE8以下は無効化*/
  content: '';
  position: absolute;
  z-index: 1;/*吹き出し枠より前*/
  display: inline-block;
  top: 24px;
  left: -6px;
  width: 10px;
  height: 10px;
  margin-right: -6px;
  border-left: solid 1px #555;
  border-bottom: solid 1px #555;
  background-color: white;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#gnav-2 a.nav-sns {
  display: inline-block;
  width: 30px;/*Instagram最小サイズ*/
  height: 30px;/*Instagram最小サイズ*/
  line-height: 30px;
  margin: 7.5px;/*Instagramアイコンは上下左右に1/2の余白が必要*/
}

#gnav-2 img.nav-sns-logo {
  margin: 0;
}

/*** ルート階層 ***/
#gnav-2 ul.nav-root > li {
  line-height: 32px;
  padding: 3px;/*=hover時の枠線幅*/
}

#gnav-2 ul.nav-root > li > div > a {
  height: 33px;/*フォーカス矩形が曲がる為+1px*/
  color: #000;/*文字色*/
  text-shadow: 1px 2px 2px #aaa;/*文字影*/
}

@media screen and (max-width:819px) {
  #gnav-2 ul.nav-root > li {
    border-bottom: double 3px #999;
  }
  
  #gnav-2 ul.nav-root > li > div {
    height: 60px;
    padding: 14px 3px;
  }
}

@media screen and (min-width:820px), print {
  #gnav-2 ul.nav-root {
    position: relative;/*.nav-child-2相対位置の対象*/
    height: 40px;
  }
  
  #gnav-2 ul.nav-root > li {
    width: 160px;
    height: 38px;
    line-height: 32px;
    padding: 3px;/*=hover時の枠線幅*/
  }
  
  #gnav-2 ul.nav-root > li > div > a {
    width: 154px;/*=li:width-padding*/
  }
}

@media screen and (min-width:870px) {
  #gnav-2 ul.nav-root > li {
    width: 170px;
  }
  
  #gnav-2 ul.nav-root > li > div > a {
    width: 164px;/*=li:width-padding*/
  }
}

@media screen and (min-width:820px), print {
  /**** ルート階層hover時囲み ****/
  #gnav-2 ul.nav-root > li:hover,
  #gnav-2 ul.nav-root > li:focus-within {
    padding: 0;/*枠線表示の為パディング解除*/
    /*枠線*/
    border-width: 3px;
    border-style: solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
  /*@IE,@Edge*/
  #gnav-2 ul.nav-root > li:hover,
  #gnav-2 ul.nav-root > li.focus-within {
    padding: 0;/*枠線表示の為パディング解除*/
    /*枠線*/
    border-width: 3px;
    border-style: solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
  /**** ルート階層hover時▲吹き出し ****/
  #gnav-2 ul.nav-root > li.nav-has-child:hover:after,
  #gnav-2 ul.nav-root > li.nav-has-child:focus-within:after {
    content: '';
    float: left;
    position: relative;/*liに対する相対位置*/
    display: inline-block;
    top: -20px;
    left: 50%;
    margin-left: -18px;
    height: 0;
    cursor: default;
    z-index: 2;/*背景より前*/
    /*▲の左右余白*/
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    /* アニメーション */
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    transition: .2s ease;
  }
  
  /*@IE,@Edge*/
  #gnav-2 ul.nav-root > li.nav-has-child:hover:after,
  #gnav-2 ul.nav-root > li.nav-has-child.focus-within:after {
    content: '';
    float: left;
    position: relative;/*liに対する相対位置*/
    display: inline-block;
    top: -20px;
    left: 50%;
    margin-left: -18px;
    height: 0;
    cursor: default;
    z-index: 2;/*背景より前*/
    /*▲の左右余白*/
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    /* アニメーション */
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    transition: .2s ease;
  }
  
  #gnav-2 ul.nav-root > li.nav-has-child:hover > div:after,
  #gnav-2 ul.nav-root > li.nav-has-child:focus-within > div:after {/*▲背景(マウスオーバー時に消えないように)*/
    content: '';
    float: left;
    position: relative;/*liに対する相対位置*/
    display: inline-block;
    top: 2px;
    left: -3px;
    width: 160px;
    height: 23px;/*▲height:18px+.nav-child-2:border-radius:5px*/
    z-index: 1;/*▲背景*/
    background: white;
    background: rgba(255,255,255,.01);
  }
  
  /*@IE,@Edge*/
  #gnav-2 ul.nav-root > li.nav-has-child:hover > div:after,
  #gnav-2 ul.nav-root > li.nav-has-child.focus-within > div:after {/*▲背景(マウスオーバー時に消えないように)*/
    content: '';
    float: left;
    position: relative;/*liに対する相対位置*/
    display: inline-block;
    top: 2px;
    left: -3px;
    width: 160px;
    height: 23px;/*▲height:18px+.nav-child-2:border-radius:5px*/
    z-index: 1;/*▲背景*/
    background: white;
    background: rgba(255,255,255,.1);
  }
  
  /**** ルート階層に子階層がある場合に「∨」描画 ****/
  :root #gnav-2 ul.nav-root > li.nav-has-child > div > a:after {/*「:root」でIE8以下は無効化*/
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 5px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@media screen and (min-width:870px) {
  #gnav-2 ul.nav-root > li.nav-has-child:hover > div:after,
  #gnav-2 ul.nav-root > li.nav-has-child:focus-within > div:after {/*▲背景(マウスオーバー時に消えないように)*/
    width: 170px;
  }
  
  /*@IE,@Edge*/
  #gnav-2 ul.nav-root > li.nav-has-child:hover > div:after,
  #gnav-2 ul.nav-root > li.nav-has-child.focus-within > div:after {/*▲背景(マウスオーバー時に消えないように)*/
    width: 170px;
  }
}

/**** 路線バス ****/
/***** カレント時下線 *****/
@media screen and (max-width:819px) {
  #gnav-2-route-bus.nav-current {
    border-left: solid 3px rgb(255,173,173);
  }
}

@media screen and (min-width:820px), print {
  #gnav-2-route-bus.nav-current {
    border-bottom: solid 3px rgb(255,173,173);
  }
}

@media screen and (max-width:819px) {
  /***** 横メニュー時左枠線 *****/
  #gnav-2-route-bus,
  #gnav-2-route-bus .nav-item {
    border-left: solid 2px rgb(255,173,173);
  }
}

@media screen and (min-width:820px), print {
  /***** hover時囲み *****/
  #gnav-2-route-bus:hover,
  #gnav-2-route-bus:focus-within {
    border-color: rgb(255,173,173);
    background-color: rgba(255,173,173,.1);
  }
  
  /*@IE,@Edge*/
  #gnav-2-route-bus:hover,
  #gnav-2-route-bus.focus-within {
    border-color: rgb(255,173,173);
    background-color: rgba(255,173,173,.1);
  }
  
  /***** hover時▲吹き出し *****/
  #gnav-2-route-bus:hover:after,
  #gnav-2-route-bus:focus-within:after {
    border-bottom: 18px solid rgb(255,173,173);
  }
  
  /*@IE,@Edge*/
  #gnav-2-route-bus:hover:after,
  #gnav-2-route-bus.focus-within:after {
    border-bottom: 18px solid rgb(255,173,173);
  }
}

/***** アイコン *****/
#gnav-2-route-bus > div > a:before {
  width: 32px;
  height: 32px;
  background-image: url('/contents/img/icon/route_bus.png');
}

/**** 高速バス ****/
/***** カレント時下線 *****/
@media screen and (max-width:819px) {
  #gnav-2-hw-bus.nav-current {
    border-left: solid 3px rgb(191,255,127);
  }
}

@media screen and (min-width:820px), print {
  #gnav-2-hw-bus.nav-current {
    border-bottom: solid 3px rgb(191,255,127);
  }
}

@media screen and (max-width:819px) {
  /***** 横メニュー時左枠線 *****/
  #gnav-2-hw-bus,
  #gnav-2-hw-bus .nav-item {
    border-left: solid 2px rgb(191,255,127);
  }
}

@media screen and (min-width:820px), print {
  /***** hover時囲み *****/
  #gnav-2-hw-bus:hover,
  #gnav-2-hw-bus:focus-within {
    border-color: rgb(191,255,127);
    background-color: rgba(191,255,127,.1);
  }
  
  /*@IE,@Edge*/
  #gnav-2-hw-bus:hover,
  #gnav-2-hw-bus.focus-within {
    border-color: rgb(191,255,127);
    background-color: rgba(191,255,127,.1);
  }
  
  /***** hover時▲吹き出し *****/
  #gnav-2-hw-bus:hover:after,
  #gnav-2-hw-bus:focus-within:after {
    border-bottom: 18px solid rgb(191,255,127);
  }
  
  /*@IE,@Edge*/
  #gnav-2-hw-bus:hover:after,
  #gnav-2-hw-bus.focus-within:after {
    border-bottom: 18px solid rgb(191,255,127);
  }
}

/***** アイコン *****/
#gnav-2-hw-bus > div > a:before {
  width: 32px;
  height: 32px;
  background-image: url('/contents/img/icon/hw_bus.png');
}

/**** ゴールデンツアー ****/
@media screen and (max-width:819px) {
  #gnav-2-golden-tour > div {
    width: 100%;
    height: 100%;
  }
  
  #gnav-2-golden-tour > div > a {
    width: 100%;
    height: 100%;
    text-align: left;
  }
}

/***** カレント時下線 *****/
@media screen and (max-width:819px) {
  #gnav-2-golden-tour.nav-current {
    border-left: solid 3px rgb(255,215,0);
  }
}

@media screen and (min-width:820px), print {
  #gnav-2-golden-tour.nav-current {
    border-bottom: solid 3px rgb(255,215,0);
  }
}

@media screen and (max-width:819px) {
  /***** 横メニュー時左枠線 *****/
  #gnav-2-golden-tour,
  #gnav-2-golden-tour .nav-item {
    border-left: solid 2px rgb(255,215,0);
  }
  
  /*** hover時下線 ***/
  #gnav-2-golden-tour .hover-line:hover:after {
    background-color: rgb(255,215,0);
  }
}

@media screen and (min-width:820px), print {
  /***** hover時囲み *****/
  #gnav-2-golden-tour:hover,
  #gnav-2-golden-tour:focus-within {
    border-color: rgb(255,215,0);
    background-color: rgba(255,215,0,.1);
  }
  
  /*@IE,@Edge*/
  #gnav-2-golden-tour:hover,
  #gnav-2-golden-tour.focus-within {
    border-color: rgb(255,215,0);
    background-color: rgba(255,215,0,.1);
  }
}

/***** アイコン *****/
#gnav-2-golden-tour > div > a:before {
  width: 48px;
  height: 24px;
  background-image: url('/contents/img/logo/gt.png');
}

/**** 貸切バス ****/
@media screen and (max-width:819px) {
  #gnav-2-chartered-bus > div {
    width: 100%;
    height: 100%;
  }
  
  #gnav-2-chartered-bus > div > a {
    width: 100%;
    height: 100%;
    text-align: left;
  }
}

/***** カレント時下線 *****/
@media screen and (max-width:819px) {
  #gnav-2-chartered-bus.nav-current {
    border-left: solid 3px rgb(175,238,238);
  }
}

@media screen and (min-width:820px), print {
  #gnav-2-chartered-bus.nav-current {
    border-bottom: solid 3px rgb(175,238,238);
  }
}

@media screen and (max-width:819px) {
  /***** 横メニュー時左枠線 *****/
  #gnav-2-chartered-bus,
  #gnav-2-chartered-bus .nav-item {
    border-left: solid 2px rgb(175,238,238);
  }
  
  /*** hover時下線 ***/
  #gnav-2-chartered-bus .hover-line:hover:after {
    background-color: rgb(175,238,238);
  }
}

@media screen and (min-width:820px), print {
  /***** hover時囲み *****/
  #gnav-2-chartered-bus:hover,
  #gnav-2-chartered-bus:focus-within {
    border-color: rgb(175,238,238);
    background-color: rgba(175,238,238,.1);
  }
  
  /*@IE,@Edge*/
  #gnav-2-chartered-bus:hover,
  #gnav-2-chartered-bus.focus-within {
    border-color: rgb(175,238,238);
    background-color: rgba(175,238,238,.1);
  }
}

/***** アイコン *****/
#gnav-2-chartered-bus > div > a:before {
  width: 48px;
  height: 32px;
  background-image: url('/contents/img/icon/chartered_bus.png');
}

/**** 物販・広告等 ****/
/***** カレント時下線 *****/
@media screen and (max-width:819px) {
  #gnav-2-enterprise.nav-current {
    border-left: solid 3px rgb(255,241,0);
  }
}

@media screen and (min-width:820px), print {
  #gnav-2-enterprise.nav-current {
    border-bottom: solid 3px rgb(255,241,0);
  }
}

@media screen and (max-width:819px) {
  /***** 横メニュー時左枠線 *****/
  #gnav-2-enterprise,
  #gnav-2-enterprise .nav-item {
    border-left: solid 2px rgb(255,241,0);
  }
}

@media screen and (min-width:820px), print {
  /***** hover時囲み *****/
  #gnav-2-enterprise:hover,
  #gnav-2-enterprise:focus-within {
    border-color: rgb(255,241,0);
    background-color: rgba(255,241,0,.1);
  }
  
  /*@IE,@Edge*/
  #gnav-2-enterprise:hover,
  #gnav-2-enterprise.focus-within {
    border-color: rgb(255,241,0);
    background-color: rgba(255,241,0,.1);
  }
  
  /***** hover時▲吹き出し *****/
  #gnav-2-enterprise:hover:after,
  #gnav-2-enterprise:focus-within:after {
    border-bottom: 18px solid rgb(255,241,0);
  }
  
  /*@IE,@Edge*/
  #gnav-2-enterprise:hover:after,
  #gnav-2-enterprise.focus-within:after {
    border-bottom: 18px solid rgb(255,241,0);
  }
}

/*** ナビゲーション 2階層目 ***/
#gnav-2 ul.nav-root > li {
  position: static;/*2階層目の表示位置のためにrelative解除*/
}

#gnav-2 .nav-child-2 {
  display: block;
  /*可視*/
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width:819px) {
  #gnav-2 .nav-child-2 {
    position: relative;
    width: 100%;
  }
}

@media screen and (min-width:820px), print {
  #gnav-2 .nav-child-2 {
    position: absolute;/*ul.nav-rootに対する絶対位置*/
    top: 55px;
    left: 0;
    min-height: 300px;
    padding: 10px;
    background-color: white;
    z-index: 3;/*swiperより前*/
    overflow-x:hidden;
    /*枠線*/
    border-width: 3px;
    border-style: solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    /*影*/
    box-shadow: 5px 5px 2px 1px rgba(64,64,64,.2);
    /*不可視*/
    visibility: hidden;
    opacity: 0;
  }
  
  #gnav-2 li:hover > .nav-child-2,
  #gnav-2 li:focus-within > .nav-child-2 {
    overflow: hidden;/*背景用*/
    /*可視*/
    visibility: visible;
    opacity: 1;
  }
  
  /*@IE,@Edge*/
  #gnav-2 li:hover > .nav-child-2,
  #gnav-2 li.focus-within > .nav-child-2 {
    overflow: hidden;/*背景用*/
    /*可視*/
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width:819px) {
  /**** リストタイトル ****/
  #gnav-2 .nav-child-2 > li.list-title {/*1段上に詰め.nav-rootに重ねる*/
    margin-top: -57px;
    padding-left: 120px;
  }
}

/**** リスト段落 ****/
#gnav-2 .nav-child-2 > li > .list-para:before {
  content: '◆';
  font-size: 1.1em;
  margin-right: 0.15em;
}

#gnav-2 .nav-child-2 > li > .list-para {
  line-height: 1.2em;
  border-bottom: dotted 1px #777;
}

@media screen and (max-width:819px) {
  #gnav-2 .nav-child-2 > li > .list-para {
    margin: 1em 5px 0.25em 0;
  }
}

@media screen and (min-width:820px), print {
  #gnav-2 .nav-child-2 > li > .list-para {
    margin: 1em 30px 0.25em 0;
  }
}

#gnav-2 .nav-child-2 > li > .list-para.no-margin-top {
  margin-top: 0;
}

@media screen and (min-width:820px), print {
  #gnav-2 .nav-child-2 > li > .list-para.w50 {
    width: 50%;
  }
  
  #gnav-2 .nav-child-2 > li > .list-para.w70 {
    width: 70%;
  }
}

@media screen and (min-width:820px), print {
  /**** 背景イメージ ****/
  #gnav-2 .nav-child-2.nav-has-bg-img:before,
  #gnav-2 .nav-child-2.nav-has-bg-img:after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    /*半透明*/
    -ms-filter: "alpha(opacity=50)";/*IE 8,9*/
    zoom: 1;/*IE*/
    -moz-opacity: 0.5;/*FF lt 1.5, Netscape*/
    -khtml-opacity: 0.5;/*Safari 1.x*/
    opacity: 0.5;
  }
  
  #gnav-2 .nav-child-2.nav-has-bg-img:after {
    z-index: -2;
    background-repeat: no-repeat;
  }
  
  /***** 路線バス *****/
  #gnav-2-route-bus .nav-child-2.nav-has-bg-img:before {
    z-index: -1;
    background-repeat: no-repeat;
    background-position: right 20px bottom 20px;
    background-size: 120px auto;
  }
  
  /***** 高速バス *****/
  #gnav-2-hw-bus .nav-child-2.nav-has-bg-img:before {
    z-index: -1;
    background-repeat: no-repeat;
    background-position: left 150px top 10px;
    background-size: 250px auto;
  }
  
  /***** 物販・広告等 *****/
  #gnav-2-enterprise .nav-child-2.nav-has-bg-img:before {
    z-index: -1;
    background-repeat: no-repeat;
    background-position: right 20px bottom 20px;
    background-size: auto 250px;
  }
}

/**** 路線バス ****/
#gnav-2-route-bus > .nav-child-2 {
  border-color: rgb(255,173,173);
}

@media screen and (min-width:820px), print {/*「:root」でIE8以下は無効化*/
  :root #gnav-2-route-bus.img-area-nagaoka > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/area_nagaoka.png');
  }
  
  :root #gnav-2-route-bus.img-area-tochio-mitsuke > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/area_tochio_mitsuke.png');
  }
  
  :root #gnav-2-route-bus.img-area-sanjo > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/area_sanjo.png');
  }
  
  :root #gnav-2-route-bus.img-area-ojiya > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/area_ojiya.png');
  }
  
  :root #gnav-2-route-bus.img-area-tokamachi > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/area_tokamachi.png');
  }
  
  :root #gnav-2-route-bus.img-area-kashiwazaki > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/area_kashiwazaki.png');
  }
  
  :root #gnav-2-route-bus > .nav-child-2:after {
    /*背景*/
    background-image: url('/contents/img/picture/route_bus.jpg');
    background-repeat: no-repeat;
    background-position: 200% center;
    background-size: 400px auto;
  }
  
  :root #gnav-2-route-bus:hover > .nav-child-2:after,
  :root #gnav-2-route-bus:focus-within > .nav-child-2:after {
    /*背景*/
    background-position: right center;
    /*アニメーション*/
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  
  /*@IE,@Edge*/
  :root #gnav-2-route-bus:hover > .nav-child-2:after,
  :root #gnav-2-route-bus.focus-within > .nav-child-2:after {
    /*背景*/
    background-position: right center;
    /*アニメーション*/
    transition: .5s ease;
  }
}

/**** 高速バス ****/
#gnav-2-hw-bus > .nav-child-2 {
  border-color: rgb(191,255,127);
}

@media screen and (min-width:820px), print {/*「:root」でIE8以下は無効化*/
  :root #gnav-2-hw-bus:hover > .nav-child-2:after,
  :root #gnav-2-hw-bus:focus-within > .nav-child-2:after {
    /*背景*/
    background-position: 95% center;
  }
  
  /*@IE,@Edge*/
  :root #gnav-2-hw-bus:hover > .nav-child-2:after,
  :root #gnav-2-hw-bus.focus-within > .nav-child-2:after {
    /*背景*/
    background-position: 95% center;
  }
  
  :root #gnav-2-hw-bus.img-hw-in > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/hw_in.jpg');
  }
  
  :root #gnav-2-hw-bus.img-hw-out > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/hw_out.jpg');
  }
  
  :root #gnav-2-hw-bus > .nav-child-2:after {
    /*背景*/
    background-image: url('/contents/img/picture/hw_bus.jpg');
    background-repeat: no-repeat;
    background-position: 200% center;
    background-size: 400px auto;
  }
  
  :root #gnav-2-hw-bus:hover > .nav-child-2:after,
  :root #gnav-2-hw-bus:focus-within > .nav-child-2:after {
    /*アニメーション*/
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  
  /*@IE,@Edge*/
  :root #gnav-2-hw-bus:hover > .nav-child-2:after,
  :root #gnav-2-hw-bus.focus-within > .nav-child-2:after {
    /*アニメーション*/
    transition: .5s ease;
  }
}

/**** 物販・広告等 ****/
#gnav-2-enterprise > .nav-child-2 {
  border-color: rgb(255,241,0);
}

@media screen and (min-width:820px), print {/*「:root」でIE8以下は無効化*/
  :root #gnav-2-enterprise.img-eplaza > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/eplaza.jpg');
  }
  
  :root #gnav-2-enterprise.img-furusato > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/furusato.jpg');
    background-size: auto 200px;
  }
  
  :root #gnav-2-enterprise.img-otodoke > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/otodoke.jpg');
    background-size: auto 200px;
  }
  
  :root #gnav-2-enterprise.img-hanaten > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/hanaten.jpg');
    background-size: auto 200px;
  }
  
  :root #gnav-2-enterprise.img-kakusan > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/kakusan.jpg');
    background-size: auto 200px;
  }
  
  :root #gnav-2-enterprise.img-fudosan > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/fudosan.jpg');
    background-size: auto 150px;
  }
  
  :root #gnav-2-enterprise.img-kawaguchi-sa > .nav-child-2:before {
    /*背景*/
    background-image: url('/contents/img/picture/kawaguchi_sa.jpg');
    background-size: auto 200px;
  }
}

/**** サイドメニュー追加 ****/
#gnav-2-side-add a.icon-left:before {
  vertical-align: middle;
}

#gnav-2-side-add a.icon-left > span {
  display: inline-block;
  vertical-align: middle;
}

#gnav-2-side-add .nav-item {
  width: 271px;
  margin-right: 0;
  border-style: none;
  box-shadow: none;
}

#gnav-2-side-add .nav-item > a {
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

/***** hover時 *****/
#gnav-2-side-add .nav-item > a:hover > span,
#gnav-2-side-add .nav-item > a:focus > span {
  color: #666;/*文字色*/
}

/***** 電話によるお問い合わせ *****/
#gnav-2-side-add .nav-item.inquiry-tel {
  height: 66px;
}

#gnav-2-side-add .nav-item.inquiry-tel > a:before {
  margin-top: 1px;
}

#gnav-2-side-add .nav-item.inquiry-tel > a > span {
  width: 240px;
  line-height: 1em;
}

/***** メールによるお問い合わせ *****/
#gnav-2-side-add .nav-item.inquiry-mail {
  height: 66px;
}

/****** アイコン ******/
#gnav-2-side-add .nav-item.inquiry-mail > a:before {
  margin-top: 1px;
}

#gnav-2-side-add .nav-item.inquiry-mail > a > span {
  line-height: 1em;
}

/*** ナビゲーション 3階層目 ***/
/**** 高速バス ****/
@media screen and (min-width:820px), print {
  #gnav-2-hw-bus .hw-bus-type .nav-child-3 {
    margin-top: 1em;
  }
}

#gnav-2-hw-bus .nav-child-3 > li {
  border-color: rgb(191,255,127);
}

@media screen and (min-width:820px), print {
  #gnav-2-hw-bus .hw-bus-type .nav-child-3 > li {
    /*縦並び*/
    clear: both;
    display: block;
  }
}

/**** 物販・広告等 ****/
#gnav-2-enterprise .nav-child-3 li.eplaza > a,
#gnav-2-enterprise .nav-child-3 li.otodoke > a,
#gnav-2-enterprise .nav-child-3 li.furusato > a,
#gnav-2-enterprise .nav-child-3 li.hanaten > a,
#gnav-2-enterprise .nav-child-3 li.kakusan > a {
  height: 40px;
  vertical-align: middle;
  padding: 0;
  /*角丸*/
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#gnav-2-enterprise .nav-child-3 li.eplaza > a {
  width: 125px;
  background-color: rgb(255,0,0);
}

#gnav-2-enterprise .nav-child-3 li.otodoke > a {
  width: 204px;
  background-color: rgb(0,46,138);
}

#gnav-2-enterprise .nav-child-3 li.furusato > a {
  width: 229px;
  background-color: rgb(0,148,111);
}

#gnav-2-enterprise .nav-child-3 li.eplaza > a > img {
  margin: 7px 0;
}

#gnav-2-enterprise .nav-child-3 li.otodoke > a > img {
  margin: 2px 0;
}

#gnav-2-enterprise .nav-child-3 li.furusato > a > img {
  margin: 3px 0;
}

#gnav-2-enterprise .nav-child-3 li.hanaten > a > img,
#gnav-2-enterprise .nav-child-3 li.kakusan > a > img {
  /*角丸*/
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/***** hover時 *****/
#gnav-2-enterprise .nav-child-3 li.eplaza > a:hover,
#gnav-2-enterprise .nav-child-3 li.eplaza > a:focus {
  background-color: rgb(255,0,0);
}

#gnav-2-enterprise .nav-child-3 li.otodoke > a:hover,
#gnav-2-enterprise .nav-child-3 li.otodoke > a:focus {
  background-color: rgb(0,46,138);
}

#gnav-2-enterprise .nav-child-3 li.furusato > a:hover,
#gnav-2-enterprise .nav-child-3 li.furusato > a:focus {
  background-color: rgb(0,148,111);
}

#gnav-2 #gnav-2-enterprise .wrapper-nav-sns {
  padding: 5px 5px 5px 6px;
}
