.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
/*op-header*/
.op-header{
    position: fixed;
    top:0px;
    left: 0px;
    width: 100%;
    padding-right: 60px;
    background: white;
    z-index: 200;
  }
  .op-header-list{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0px;
    padding: 15px 0px;
  }
  .fs-pt-menu__link{
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  .op-header-list > li{
    position: relative;
    padding: 0px 10px;
  }
  .op-header-list > li::after{
    content: "";
      position: absolute;
      right: 0;
      top: 50%;
      display: block;
      height: 15px;
      width: 1px;
      background: #6a696c;
      transform: translateY(-50%);
  }
  .op-header-list li a{
    text-decoration: none;
    color: black;
    font-size: 14px;
    vertical-align: middle;
  }
  .sp-logo{
    display: none;
  }
  .op-header-list .sp-logo::after{
    width: 0px;
  }
  .pc{
    display: block;
  }
  .op-sp-menu,.op-sp-menu span{
    display: inline-block;
    transition: all .3s;
  }
  .op-sp-menu{
    position: relative;
    width: 30px;
    height: 18px;
  }
  .op-sp-menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    border-radius: 1px;
  }
  .cart-svg{
    width: 25px;
  }
  .cart-btn{
    border-right:1px solid black;
    padding-right: 5px;
    margin-right: 10px;
  }
  .sp{
    display: none;
  }
  .op-sp-menu span:nth-of-type(1) {
    top: 0;
  }
  .op-sp-menu span:nth-of-type(2) {
    top: 8px;
  }
  .op-sp-menu span:nth-of-type(3) {
    bottom: 0;
  }
  .op-sp-menu.op-sp-menu-active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .op-sp-menu.op-sp-menu-active span:nth-of-type(2) {
    opacity: 0;
  }
  .op-sp-menu.op-sp-menu-active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  
  @media screen and (max-width: 768px) { 
    .op-header{
      padding-right: 5px;
    }
    .op-header-list{
      padding: 10px 0px;
    }
    .sp-logo{
      display: block;
      width: 120px;
    }
    .op-header-list .sp-logo{
      margin-right: auto;
    }
    .pc{
      display: none;
    }
    .sp{
      display: block;
    }
    .op-header-list li::after{
      display: none;
    }
  }
  /*op-header*/