@charset "UTF-8";
/* CSS Document */
.inner {
  width: 90%;
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
/* header */
#top-head {
  top: -70px;
  position: absolute;
  width: 100%;
  margin: auto 0;
  padding: 0 0;
  line-height: 1;
  z-index: 999;
  background: white;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.1);
  /*	border-bottom:2px solid #61B29F;*/
}
#top-head a, #top-head {
  color: #343434;
  text-decoration: none;
}
#top-head .inner {
  position: relative;
}
#top-head img {
  height: 40px;
}
#global-nav ul {
  list-style: none;
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 0;
  font-size: 14px;
}
#global-nav ul li {
  float: left;
}
#global-nav ul li span {
  padding: 0 30px;
}
/* Fixed */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  padding: 10px 0;
  /*
    height: 80px;
    background: #5B596E;
*/
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo img {
  padding: 8px 0;
  height: 65px;
  border-radius: 0 !important;
}
#top-head.fixed #global-nav ul li span {
  color: #343434;
  padding: 0px 10px;
}
#top-head.fixed #global-nav ul li span a {
  color: #343434;
  padding: 0px 10px;
}
/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 24px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #58446E;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}
/*sp -------------------------------------------------------*/
@media screen and (max-width: 769px) {
  #top-head, .inner {
    width: 100%;
    padding: 0;
  }
  #top-head {
    top: -100px;
    position: fixed;
    margin-top: 0;
    border-bottom: none;
  }
  /* Fixed reset */
  #top-head.fixed {
    padding: 0;
    opacity: 0.95;
  }
  #mobile-head {
    background: white;
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.05);
    /*
		border-bottom:2px solid #61B29F;
*/
  }
  #top-head.fixed .logo, #top-head .logo {
    position: absolute;
    left: 13px;
    top: 0px;
    color: #fff;
    font-size: 26px;
  }
  #top-head.fixed .logo img {
    height: 60px;
    padding: 7px 0 7px 0;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    border-bottom: 2px solid #58446E;
    opacity: 0.95;
  }
  #global-nav ul {
    width: 90%;
    margin: 0 auto;
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #top-head #global-nav ul li span, #top-head.fixed #global-nav ul li span {
    width: 100%;
    display: block;
    color: #343434;
    padding: 18px 0;
  }
  #top-head.fixed #global-nav ul li span a {
    color: #343434;
    padding: 0px 10px;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }
}