header{
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
}
.headerNav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerLogoHolder{
  width: 14em;
  padding: 0.5em 1em;
}
.headerLogoHolder img{
  width: 100%;
}
.headerNavItemsPC{
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 2rem;
  margin-inline-end: 2rem;
}
/* ############ */
/* ボタン付加 */
/* ############ */
.navBtn a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 1em;
  column-gap: 1em;
  color: #fff;
  background-color: #164c56;
  transition: 0.3s;
}
.navBtn a:hover {
  text-decoration: none;
  background-color: #bbbbbb;
}

.navBtnCon a::before{
  content: '\f0e0';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.navBtnTel a::before{
  content: '\f095';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ============================================================== */
/* SP用ヘッダーメニュー */
/* ============================================================== */
.hamburger{
  width: 35px;
  height: 20px;
  position: fixed;
  right: 30px;
  display: none;
  right: 12px;
  top: 22px;
}
.hamburger span{
  position: absolute;
  width: 100%;
  height: 3px;
  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: 55px;
  width: 100%;
  height: 100%;
  left: 0;
  transform: translateX(100%);
  transition: 0.5s;
  text-align: center;
}
.slide-menu li{
  color: #fff;
  line-height: 400%;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid;
}

/* ============================================================== */
/* アクティブ後 */
/* ============================================================== */
.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(0); 
}

/* ============================================================== */
/* ==============  2021タプレット 800-959px   ==================== */
/* ============================================================== */
@media screen and (max-width:1024px){
  .headerNavItemsPC{
    display: none;
  }
  .hamburger{
    display: block;
  }
  .navBtn a{
    justify-content: center;
    margin: 0.5rem auto;
    width: 30%;
  }

}



/* ============================================================== */
/* ==============  2021スマホ     320-519px   ==================== */
/* ============================================================== */
@media screen and (max-width:600px){
  .navBtn a{
    width: 50%;
  }
}