@charset "UTF-8";
/* CSS Document */
#global-nav {
  position: absolute;
  top: -1000px;
  background: rgba(20, 45, 87, 0.8);
  width: 100%;
  text-align: center;
  padding: 0;
  transition: .5s ease-in-out;
}
#global-nav img {
  width: auto;
}
#global-nav ul {
  position: static;
  font-size: 1.25em;
  padding: 90px 0 1.5em;
  display: inline-block;
  text-align: left;
}
#global-nav ul > li {
  float: none;
  position: static;
  line-height: 2.125;
  padding: 0 1em;
  border-bottom: 1px dashed #bfaf86;
}
#global-nav ul > li a {
  width: 100%;
  display: block;
  padding: 0;
  font-weight: 700;
  color: #fff;
}
#global-nav ul > li a:hover {
  text-decoration: none;
}
#global-nav ul > li a:nth-child(n + 2) {
  position: relative;
  padding-left: 1em;
}
#global-nav ul > li a:nth-child(n + 2)::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  content: "・";
}
#global-nav ul > li ol {
  padding-left: 1em;
}
#global-nav ul > li ol li {
  padding-left: 1em;
  position: relative;
}
#global-nav ul > li ol li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  content: "＊";
  color: #fff;
}
#global-nav hr {
  border-top: 1px dotted #fff;
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin: 0.5em 0;
}

#mobile-head {
  width: 100%;
  height: 67px;
  z-index: 999;
  position: relative;
}

#nav-toggle {
  display: none;
  position: absolute;
  box-sizing: border-box;
  padding: 12px 0 0;
  right: 20px;
  top: 11px;
  width: 65px;
  height: 63px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle .menu {
  position: absolute;
  width: 100%;
  bottom: 6px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  #nav-toggle {
    display: block;
  }
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  position: absolute;
  left: 0;
  transition: .35s ease-in-out;
  width: 31px;
  left: 16px;
}
#nav-toggle span:nth-child(1) {
  height: 5px;
  background: #fff;
  top: 0;
}
#nav-toggle span:nth-child(2) {
  height: 5px;
  background: #fff;
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  height: 5px;
  background: #fff;
  top: 22px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
  display: none;
}
.open #nav-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-315deg);
}

.open #global-nav {
  transform: translateY(1000px);
}
