/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: relative;
  z-index : 3;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 58px;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  z-index: 5000;
}

nav.globalMenuSp ul {
  background: #fff;
  margin: 0 auto;
  padding: 20px 20px 0;
  width: 100%;
  box-sizing: border-box;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
  z-index: 30000;
}

nav.globalMenuSp ul li:first-child {
  box-sizing: border-box;
  background: #3363a1;
  border:3px double #fff;
  font-size: 16px;
  text-align: center;
  padding:0px 12px;
  color:#fff;
  font-weight: bold;
  width: 100%;
  transition: .5s;
  letter-spacing: 2px;
}

nav.globalMenuSp ul li:first-child a{
	color:#fff;
}

nav.globalMenuSp ul li:first-child:hover{
	background-color: #3363a1;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  font-size: 16px;
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

.corp{position: relative;}

.corp:after{
  content: '';
    position: absolute;
    right: 60px;
    top: 16px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/link.png);
    background-size: contain;
    vertical-align: middle;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

@media screen and (max-width:750px) {

  .button_wrapper:hover{
  	background: #3363a1;;
  }
}

@media screen and (max-width:600px) {
	.hamburger{display: block;}
}


