@charset "UTF-8";

/* ハンバーガーボタン */

.hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10000;
  line-height: 30px;
  width: 30px;
  height: 35px;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 0;
  background : #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s 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 : 18px;
  left: 0;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
}

.hamburger p.ttl {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.globalMenuSp_main_menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  z-index: 500;
  display: none;
}

.globalMenuSp_main_menu_box .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100%;
}

.globalMenuSp_main_menu_box ul {
  width: 100%;
}

.globalMenuSp_main_menu_box ul li a {
  display: block;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.globalMenuSp_main_menu_box ul li + li {
  margin-top: 30px;
}

/* サブメニュー */

.sp_sub_menu .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.js-sp_sub_menu {position: fixed;z-index: 600;height: 100%;width: 100%;background-color: #ddd;display: none;}

.sp_sub_menu .inner p.ttl {
  font-weight: bold;
  font-size: 20px;
}

.sp_sub_menu .inner ul {
  margin-top: 50px;
}

.sp_sub_menu .inner ul li a {
  color: #000;
  font-weight: bold;
}

.sp_sub_menu .inner ul li + li {
  margin-top: 30px;
}

/* 戻るボタン */

.sp_sub_menu .inner p.back_btn {
  width: 150px;
  text-align: center;
  font-weight: bold;
  margin: 50px auto 0;
  border: 2px solid #000;
  border-radius: 100px;
  padding: 3px 0;
}