@charset "UTF-8";

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 99999;
  right: 5vw;
  top: 6.4vw;
  width: 11.2vw;
  height: 11.2vw;
  cursor: pointer;
  text-align: center;
  background: #D6B750;
  border-radius: 50%;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  left: 6px;
  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;
}

.hamburger span:nth-child(1) {
  top: 3.6vw;
}

.hamburger span:nth-child(2) {
  top: 5.333vw;
}

.hamburger span:nth-child(3) {
  top: 7.067vw;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 5.6vw;
  left: 0.533vw;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

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

nav.globalMenuSp {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 73.33%;
  height: 100vh;
  align-items: center;
  overflow: scroll;
  background-image: url(/wp-content/uploads/2022/07/sp_hum_back.jpg);
  background-position: center;
  background-size: cover;
}

.globalMenuSp_logo{
  position: absolute;
  top: 20px;
  left: 10px;
}

.globalMenuSp_logoInner{
  width: 60px;
}
.globalMenuSp_logoInner img{
  width: 100%;
  object-fit: contain;
}

/* nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
} */

.sp-head_hum_list >li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  text-align: left;
  background-color: #fff;
  filter: drop-shadow(2px 2px 2px #C1C1C1);
  border-radius: 13px;
}

.sp-head_hum_list >li + li{
  margin-top: 13px;
}

.ham-sub-list_sp >li{

}

.ham-sub-list_sp > li > a{
  display: block;
  color: #1A1311;
  padding: 1em 0 1em 40px;
  text-decoration: none;
  position: relative;
  font-size: 3vw;
}

.ham-sub-list_sp > li > a::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 20px;
  top: 0px;
  bottom: 0;
  margin: auto;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sp-head_hum_list> li > a,
nav.globalMenuSp ul li p {
  display: block;
  color: #1A1311;
  padding: 1em 0 1em 45px;
  text-decoration: none;
  position: relative;
  font-size: 3.5vw;
}

nav.globalMenuSp ul li p::after{
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
}

.ham-sub-list_sp{
  display: none;
}


.sp-head_hum_list p::before,
.sp-head_hum_list > li > a::before{
  content: "";
  width: 23px;
  height: 31px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/uploads/2022/07/ttl_sakana.png);
  position: absolute;
  left: 10px;
  top: 0px;
  bottom: 0;
  margin: auto;
}


/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}