@charset "UTF-8";

/* ----------------------------------------
 *  Core Style:
 * ---------------------------------------- */
.lastSidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 19998;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #002030;
  color: #fff;
}

.lastSidebar a {
  color: #fff;
}

#lastOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.5);
}
body.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* ----------------------------------------
 *  Responsive Style:
 * ---------------------------------------- */
@media only screen and (max-width: 769px) {
  .lastSidebar {
    width: 55%;
  }
}
@media only screen and (max-width: 768px) {
  .lastSidebar {
    width: 65%;
  }
}
@media only screen and (max-width: 480px) {
  .lastSidebar {
    width: 80%;
  }
}

/* ----------------------------------------
 *  User Style:
 * ---------------------------------------- */
#slideMenu {
	display: none;
}
#slideMenu nav {
  margin: 0 2.4%;
}
.globalNavi {
	margin-bottom: 15.1%;
	margin-top: 24%;
}
.globalNavi li {
}
.globalNavi li a {
	display: block;
	padding: 0 16px;
	line-height: 3.2em;
}

.nav_slidemenu_gray {
	display: block;
	padding: 5.1% 0;
	width: calc(195 / 720 * 100%);
	text-align: center;
	margin: 0 auto;
}
.nav_slidemenu_gray a {
	color: #fff;
}

/* 三ボタン関係 */
.triggerBtn {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 19999;
  background: none;
}
/* 旧設定：旧設定だと画面の動きに併せて動的に変化させずらいので変更 */
.triggerBtn_old {
  display: block;
  position: fixed;
  top: 12px;
  right: 5%;
  width: 32px;
  height: 32px;
  left: auto;
  z-index: 19999;
  background: none;
}

#menuTrigger,
#menuTrigger span {
  display: inline-block;
  box-sizing: border-box;
  transition: all .4s;
}
#menuTrigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#menuTrigger:active {
  background: none;
}
#menuTrigger span {
  position: absolute;
  left: 2px;
  width: 28px;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
}
#menuTrigger span:nth-of-type(1) { top: 4px; }
#menuTrigger span:nth-of-type(2) { top: 15px; }
#menuTrigger span:nth-of-type(3) { bottom: 4px; }
#menuTrigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}
#menuTrigger.active span:nth-of-type(2) {
  opacity: 0;
}
#menuTrigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}
