@charset "UTF-8";

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

.hamburger {
  display: block;
  position: fixed;
  z-index: 99999;
  right: 13px;
  top: 7px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background-color: #04BA9C;
  border-radius: 50%;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 3px;
}

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

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 27px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 21px;
  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: 21px;
  -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: rgba(7, 186, 156,0.9);
  z-index: 500;
  display: none;
  overflow: scroll;
}

.globalMenuSp_main_menu_box .inner {
  padding: 90px 20px 0 20px;
  height: 100%;
}

.globalMenuSp_main_menu_box ul {
  width: 100%;
  padding-bottom: 10vw;
}

.globalMenuSp_main_menu_box ul li a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 3.7vw;
  letter-spacing: 0.1em;
  border-bottom: solid 1px;
}

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

/* サブメニュー */

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

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

.sp_sub_menu .inner p.ttl {
  font-weight: bold;
  font-size: 4.5vw;
  letter-spacing: 0.1em;
  color: #fff;
}

.globalMenuSp_sub_menu_box ul {
  width: 100%;
  padding: 0 10vw;
  margin-top: 8vw;
}

.globalMenuSp_sub_menu_box ul li {
  border-bottom: 1px solid #fff;
}

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

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

.js-sp_sub_menu.sp_sub_menu.menu4 .inner {
  height: 125%;
}

nav.js-sp_sub_menu.sp_sub_menu.menu5 .inner {
  height: 360%;
}

/* 戻るボタン */

.sp_sub_menu .inner p.back_btn {
  width: 80vw;
  text-align: center;
  font-weight: bold;
  margin: 10vw auto 0;
  border: 1.5px solid #fff;
  border-radius: 100px;
  padding: 2vw 0;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 3.6vw;
}