﻿#global > ul {
    display: table;
    font-size: 0;
}
#global > ul > li {
	margin:0;
	padding: 10px 0 20px;
    display: inline-block;
    font-size: 1.6rem;
}
#global > ul > li:hover {
    cursor: pointer;
}
#global > ul > li > a {
	text-align:center;
	display:block;
	padding:0 20px;
    color: #023E79;
	position: relative;
    border-left: #000 solid 1px;
	transition: all 0.2s ease-in;
}
#global > ul > li:hover > a{
    color: #023E79;
	opacity: 1.0!important;
}

#global > ul > li > a::after{
    width: calc(100% + 1px);
    height: 0;
    content: '';
    position: absolute;
    top: 100%;
    left: -1px;
    opacity: 0;
    transition: all 0.3s ease-out;
    margin: auto;
background: #465cab; /* Old browsers */
background: -moz-linear-gradient(left,  #465cab 0%, #466892 100%);
background: -webkit-linear-gradient(left,  #465cab 0%,#466892 100%);
background: linear-gradient(to right,  #465cab 0%,#466892 100%);
}
#global > ul > li:hover > a::after,#global > ul > li.current > a::after {
    opacity: 0.95;
    top: calc(100% + 14px);
    height: 5px;
}
header nav a:hover {
	opacity: 1.0;
}

#global > ul ul {
  transition: opacity 0.2s ease-in;
  opacity: 0;
  width: max-content;
  min-width: 500px;
  height: 0;
  top: 100%;
  right: 100px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#global > ul > li:hover > ul {
  padding: 20px;
  height: auto;
}
#global > ul li:hover ul {
  opacity: 1.0;
}
#global > ul ul li {
    font-size: 1.4rem;
    margin: 2px 20px;
    box-sizing: border-box;
}
#global > ul ul li a{
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
    display: block;
    color: #000;
    font-weight: 300;
}
#global > ul ul li a:hover{
    color: #466892; transition: all 0.5s;
}