.c-hamburger {
    position: relative;
    width: inherit;
    height: inherit;
    margin: 0;
    cursor: pointer;
  }
  
  
  .c-hamburger span {
    display: block;
    position: relative;
    left: 50%;
    height: 4px;   
    transform: translateX(-50%);
    background: #fff;
    transition: all 0.4s;
    border-radius: 2px;
  }
  
  
  .c-hamburger span:nth-of-type(1) {
    width: 60px;
    top: -16px;
  }
  
  .c-hamburger span:nth-of-type(2) {
    width: 45px;
    top: -2px;
  }
  
  
  .c-hamburger span:nth-of-type(3) {
    width: 60px;
    top: 12px;
  }
  
  
  .c-hamburger .c-hamburger__text {
    display: block;
    top: 12px;
    background: transparent;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }
  
  
  .c-hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
    background: #F68995;
  }
  
  
  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  
  
  .c-hamburger.is-active span:nth-of-type(3) {
    top: -7px;
    transform: translateX(-50%) rotate(-225deg);
    background: #F68995;
  }
  
  .p-header__nav {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: transparent;
    font-weight: 700;
    opacity: 0;
    transition: 0.6s;
  }
  
  
  @media screen and (min-width:769px) {
    .p-header__nav {
      position: static;
      width: 36%;
      max-width: 600px;
      height: 100%;
      opacity: initial;
      align-items: flex-end;
    }
  }
  @media screen and (max-width:768px) {
    .c-hamburger span:nth-of-type(1){
      width: 40px;
      top: -10px;
    }
    .c-hamburger span:nth-of-type(2){
      width: 25px;
    }

    .c-hamburger span:nth-of-type(3){
      width: 40px;
      top: 6px;
    }
    .c-hamburger .c-hamburger__text{
      top: 8px;
    }

    .c-hamburger.is-active span:nth-of-type(3){
      top: -8px;
    }
  }
  
  .p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    padding: 13px 20px;
  }
  
  
  .p-header__title {
    width: 100%;
    min-width: 120px;
    height: 48px;
    background: lightgray;
  }
  
  
  .p-header__title a {
    display: block;
    width: 100%;
    height: auto;
  }
  
  
  .p-header__title a img {
    height: 100%;
  }
  
  
  .p-header__hamburger {
    z-index: 100;
    width: 65px;
    height: 100%;
    position: relative;
  }
  
  .p-header__nav{
    display: none;
  }

  .p-header__nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    background: rgb(255 255 255 / 98%);
    padding: 85px 0 40px;
    height: 100%;
    opacity: 1;
    transition: 0.6s;
    overflow: hidden;
    display: block;
  }

  .p-nav .menu {
    text-align: left;
}

  .p-nav .p-nav__inner {
    overflow: auto;
    width: 100%;
}

 .p-header__nav.is-active li{
    font-size: 2.1rem;
    padding: 0 0 5px;
    display: block;
}
 .p-header__nav.is-active a {
    color: #1e2022;
}

.menu-s-nav-container {
    width: 100%;
    padding: 0 0 0 20px;
}

.p-nav__inner .m_menu {
  background: #F68995;
    margin-top: 10px;
    padding: 15px 0 30px 20px;
}

.p-header__nav.is-active .m_menu a{
    color: #ffffff;
}

.p-nav__inner .m_menu h3{
    font-size: 2.6rem;
    color: #fff;
}

.p-nav .p-nav__inner ul#log li{
  margin: 15px 0;
}
  
  @media screen and (min-width:769px) {
    .p-nav {
      padding-top: 16px;
      padding-bottom: 16px
    }


  }
  
  
  .p-nav__list {
    display: block;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    background: lightblue;
  }
  
  @media screen and (min-width:769px) {
    .p-nav__list {
      display: flex;
      background: #fff;
      padding-right: 0;
    }
  }
  
  .p-nav__item {
    position: relative;
    width: 100%;
  }
  
  .p-nav__link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
  }