@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: #151515;
  -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: #151515;
  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 {
  width: 100%;
}

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

.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: #151515;
  display: none;
}

.sp_sub_menu .inner p.ttl {
  font-weight: bold;
  font-size: 6vw;
  color: #fff;
}

.sp_sub_menu .inner ul {
  margin-top: 10vw;
}

.sp_sub_menu .inner ul li a {
  color: #fff;
  font-weight: bold;
  display: block;
  text-align: center;
  font-size: 4.5vw;
}

.sp_sub_menu .inner ul li+li {
  margin-top: 5vw;
}

/* 戻るボタン */

.sp_sub_menu .inner p.back_btn {
  display: block;
  width: 80vw;
  margin: 8vw auto 0;
  background-color: #fff;
  line-height: 13vw;
  text-align: center;
  color: #151515;
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.05em;
}