

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

.hamburger {
  position: fixed;
  top: 27px;
  right: 20px;
  z-index: 1000;
  width: 39px;
  height: 26px;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  right: 0;
  background: #fff;
  -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) {
  width: 39px;
  top: 0px;
}

.hamburger span:nth-child(2) {
  width: 33px;
  top: 12px;
}

.hamburger span:nth-child(3) {
  width: 27px;
  bottom: 0px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  background-color: #0068B7;
}

.hamburger.active span:nth-child(1) {
  top: 12px;
}

.hamburger.active span:nth-child(2) {
  width: 39px;
}

.hamburger.active span:nth-child(3) {
  width: 39px;
  bottom: 12px;
}

.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: #F5F5F5;
  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: #1F1F1F;
  font-weight: bold;
  text-align: center;
  font-size: 4vw;
}

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

.sp_sub_menu .inner p.ttl {
  font-weight: bold;
  font-size: 4.5vw;
  color: #0068B7;
}

.sp_sub_menu .inner ul {
  margin-top: 8vw;
  text-align: center;
}

.sp_sub_menu .inner ul li a {
  color: #1F1F1F;
  font-weight: bold;
  font-size: 4vw;
}

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

/* 戻るボタン */

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