@charset "UTF-8";
/* グローバルメニュー調整：白背景・文字メニュー型 */
#topmenu,
#topmenu .topmenu_ul {
  background: #fff !important;
}

#topmenu .topmenu_ul {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

#topmenu .topmenu_ul li,
#topmenu .topmenu_ul li span {
  background: transparent !important;
  border: none !important;
  width: auto !important;
  flex: 0 0 auto !important;
}

#topmenu .topmenu_ul li a {
  display: inline-block !important;
  background: transparent !important;
  color: #666 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 8px !important;
  height: 50px !important;
  line-height: 50px !important;
  white-space: nowrap !important;
  position: relative !important;
}

#topmenu .topmenu_ul li a::after {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  right: 10px !important;
  bottom: 8px !important;
  height: 2px !important;
  background: #1688e0 !important;
  opacity: 0 !important;
  transition: opacity .25s ease !important;
}

#topmenu .topmenu_ul li a:hover {
  color: #333 !important;
}

#topmenu .topmenu_ul li a:hover::after {
  opacity: 1 !important;
}

/* SEARCH部分も白背景寄せ */
#topmenu .topmenu_ul li:last-child a {
  background: #fff !important;
  color: #555 !important;
  padding: 0 14px !important;
}

#topmenu .topmenu_ul li:last-child a:hover {
  color: #005b96 !important;
}
/* 子メニューの背景を復活 */
#topmenu .topmenu_ul li ul,
#topmenu .topmenu_ul li:hover ul,
#topmenu .topmenu_ul li ul li,
#topmenu .topmenu_ul li ul li span,
#topmenu .topmenu_ul li ul li a {
  background: #fff !important;
}

#topmenu .topmenu_ul li ul {
  box-shadow: 0 8px 18px rgba(0,0,0,.12) !important;
  border: 1px solid #e5eaf0 !important;
  z-index: 9999 !important;
}

#topmenu .topmenu_ul li ul li a {
  color: #555 !important;
  font-size: 12px !important;
  height: 42px !important;
  line-height: 42px !important;
  padding: 0 18px !important;
}

#topmenu .topmenu_ul li ul li a:hover {
  background: #f4f8fb !important;
  color: #005b96 !important;
}

/* SEARCHボタン対策 */
#topmenu a[href*="search"],
#topmenu .search a,
#topmenu li.search a {
  background: #fff !important;
  color: #555 !important;
  box-shadow: none !important;
  border: none !important;
}