body{
  margin: 0;
}
a{
  color: #040404;
  text-decoration:underline;
}
.mainView{
  width: 100vw;
  height: 100vh;
  background-color: #fff;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
/*  right : 13px;*/
/*  top   : 12px;*/
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  opacity: 0.90;
  background-color:#444;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -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  : 0;
  left : 0;
/*  font-weight:bold;*/
  color: #fff;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
	opacity: 0.90;
	letter-spacing:0.6em;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #003146; /*バーガーカラー濃い*/
  margin: 0 auto;
  padding: 0;
  width: 100%;
 /*overflow: auto;
 -webkit-overflow-scrolling: touch;*/
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#004664; /*バーガーカラー薄い*/
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0.6em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}





