header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  padding: 30px;
  background-color: #FFF;
}
.headerNav{
  justify-content: end;
  align-items: center;
  margin-left: auto;
}
.head_menu{
  gap: 1rem;
  margin-right: 60px;
}
.breadcrumbs{
  border-top: 1px solid #CCC;
  padding: 0 1rem;
  color: #FFF;
}

/* ============================================================== */
/* ハンバーガーメニュー */
/* ============================================================== */
.hamburger{
  width: 40px;
  height: 25px;
  position: fixed;
  right: 30px;
}
.hamburger span{
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: 0.5s;
}
.hamburger span:first-of-type{
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.hamburger span:nth-of-type(2){
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.hamburger span:last-of-type{
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.slide-menu{
  background-color: rgba(0, 0, 0, .8);
  position: fixed;
  top: 99px;
  width: 40%;
  height: 100%;
  left: 0;
  transform: translateX(250%);
  transition: 0.5s;
  text-align: center;
}
.slide-menu-ec{
  background-color: rgba(0, 0, 0, .8);
  position: fixed;
  top: 110px;
  width: 40%;
  height: 100%;
  left: 0;
  transform: translateX(250%);
  transition: 0.5s;
  text-align: center;
}
.slide-menu li{
  color: #fff;
  line-height: 300%;
  text-align: center;
}

/* ============================================================== */
/* アクティブ後 */
/* ============================================================== */
.hamburger.active span:first-of-type{
  /* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2){
  /* ハンバーガーメニューの2番目の線 */
  opacity: 0;/* 透明にする */
}
.hamburger.active span:last-of-type{
  /* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-45deg);
}
.slide-menu.active{
  transform: translateX(150%); 
}

/* ============================================================== */
/* Woo commerceのヘッダー */
/* ============================================================== */
.shop-menu{
  display: flex;
  gap: 0.5rem;
  margin-right: 2rem;
  align-items: center;
}
.shop-menu li{
  border-right: 1px solid #090909;
  padding-right: 0.5rem;
}
.shop-menu li:last-of-type{
  border-right: none;
}
.shop_main{
  padding-top: 190px;
}
.serch_box{
  padding: 30px;
  margin-left: auto;
  width: fit-content;
}
.serch_box input{
  border: 1px solid;
  padding: 10px;
}
.serch_box button{
  background-color: #000;
  color: #FFF;
  padding: 7px;
}
.top150{
  top: 150px;
}

/* ============================================================== */
/* ==============  2023タプレット 601-1024px   ==================== */
/* ============================================================== */
@media screen and (max-width:1024px){
  .slide-menu{
    width: 100%;
    transform: translateX(100%);
  }
  .slide-menu.active{
    transform: translateX(0%); 
  }
  .shop-menu{
    display: none;
  }
}

/* ============================================================== */
/* ==============  2023スマホ     375-600px   ==================== */
/* ============================================================== */
@media screen and (max-width:600px){
  .serch_box {
    padding: 30px 0;
    margin: 0 auto;
    width: fit-content;
}
}