header {
  width: 100%;
  padding: 0 0 0 0;
  background-color: #FFEEFF;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 999;
}
.nav-logo {
  margin: 0;
  padding: 0 0 0 4%;
  text-align: left;
}
.nav-logo img {
  width: 10%;
}
  @media screen and (max-width: 768px) {
  .nav-logo { margin: 0; }
  .nav-logo img { width: 70%; }
}
/*ヘッダー*/
.l-mainHeader{
  background-size: cover;
  width:100%;
  height:80px;
  position:fixed;
  z-index:999;
  text-align: center;
  background-color: rgba(255, 245, 251, 0.8);
}
.pc_header {
  display:flex;
  color:#ffffff;
  margin: 0 0 0 auto;
  padding:0;
  justify-content: space-around;
  padding:0;
}
.head_menu a {
  text-decoration: none;
  color: #FF69B4;
}
ul {
  list-style:none;
}
.pc_header li {
  width: 80px;
}
.none {
  background-color: #fff;
  height: 80px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-left: #FF69B4 solid 2px;
  width: 80px;
  font-weight: bold;
}
.none1 {
  background-color: #FF69B4;
  height: 80px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-left: #FF69B4 solid 2px;
  width: 80px;
  font-weight: bold;
}
.head_menu {
  width: 90px;
  text-align: center;
}
.head_menu p{
  margin: 0;
}
#mobile_header{
  display:none;
}
@media screen and (max-width: 768px) {
  .l-mainHeader{
    margin: 0;
    padding: 0;
    height: 60px;
  }
  .pc_header{
    display: none;
  }
  #mobile_header{
    display:inline-flex;
    justify-content: space-between;
    width:100%;
    top:0px;
  }
  .hamburger_menu{
    height: 80px;
    width: 200px;
    order: 2;
  }
  .menu-btn{
      position: fixed;
      top: 0;
      right: 0;
      display: flex;
      height: 60px;
      width: 60px;
      justify-content: center;
      align-items: center;
      z-index: 90;
      background-color: #ffffff;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
      content: "";
      display: block;
      height: 3px;
      width: 25px;
      border-radius: 3px;
      background-color: #FF69B4;
      position: absolute;
  }
  .menu-btn span:before {
      bottom: 8px;
  }

  .menu-btn span:after {
      top: 8px;
  }

  #menu-btn-check:checked ~ .menu-btn span {
      background-color: rgba(255, 255, 255, 0);
  }

  #menu-btn-check:checked ~ .menu-btn span::before {
      bottom: 0;
      transform: rotate(45deg);
  }

  #menu-btn-check:checked ~ .menu-btn span::after {
      top: 0;
      transform: rotate(-45deg);
  }

  #menu-btn-check {
      display: none;
  }
  
  #menu-content {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 100%;
      z-index: 80;
      transition: all 0.5s;
      background-color:#ec94bc;
  }
  #menu-content ul {
      padding: 70px 10px 0;
      display: flex;
      flex-flow: column;
      border: none;
  }
  #menu-content ul li {
      border-bottom: solid 1px #ffffff !important;
      list-style: none;
      border: none;
  }
  #menu-content ul li a {
      display: block;
      width: 100%;
      color: #ffffff !important;
      font-size: 15px;
      box-sizing: border-box;
      text-decoration: none;
      padding: 20px 0;
      position: relative;
  }
  #menu-content ul li a::before {
      content: "";
      width: 7px;
      height: 7px;
      border-top: solid 2px #ffffff;
      border-right: solid 2px #ffffff;
      transform: rotate(45deg);
      position: absolute;
      right: 20px;
      top: 30px;
  }
  #menu-btn-check:checked ~ #menu-content {
      left: 0;
  }
}

 /*------------------------------
 
   ここから下がハンバーガーメニューに関するCSS
 
 ------------------------------*/
   
 /* チェックボックスは非表示に */
 .drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 10px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 10px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background-color:#ec94bc;
  transition: .5s;
  color: #fff;
}
.drawer-list li {
  width: 20%;
  color: #fff;
  border-bottom: solid #fff 1px;
  padding: 20px 0;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 70%;/* メニューを画面に入れる */
}

.drawer-item {
  margin: 10px 0;
  text-decoration: none;
}
.drawer-item a {
  color: #fff;
  text-decoration: none;
  display: block;
}