@charset "Shift_JIS";



/*　ハンバーガーボタン */
.hamburger {
	display : block;
	position: fixed;
	right : 5px;
	top   : 5px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
	z-index: 102;  
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
}
.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) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}


.hamburger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 80px;
  height: 80px;
  margin: -45px 0 0 -43px;
  transition: all .75s;
/* 丸枠中止 
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
*/
}
/* 丸枠中止 
.hamburger.active::after {
  border: 2px solid #555;
}
*/

nav.globalMenuSp {
  position: fixed;
  top  : 0;
  left : 0;
  color: #000;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100%;
	z-index: 101;  
}

nav.globalMenuSp ul {
	padding: 0;
	width: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
	background: #fff;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	width: 100%;
	text-align: left;
	box-sizing: border-box;
	padding: 0;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li a:hover{
}

nav.globalMenuSp ul li a {
	display: block;
	text-decoration :none;
	padding-top: 1em;
	padding-right: 0;
	padding-bottom: 1em;
	padding-left: 2em;
	font-size: 1.4em;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

.mainmenu a{
	color: #1f2f52;
	background: #fff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1f2f52;
}
.submenu a{
	color: #1f2f52;
	background: #fff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1f2f52;
}
.mainmenu strong{
	font-size: 1.6em;
	font-weight: normal;
}

