@charset "UTF-8";
/*==================================================================*/
/* style css　*/
/*==================================================================*/
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 0.95);
  transition: .15s all ease;
  transform: translateY(-100%);
  z-index: 9999;
}
.topnav.fixed {
  transform: translateY(0);
}
.topnavIn {
  max-width: 1120px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topnav__logo a {
  display: block;
}
.topnav__logo a img {
  max-height: 30px;
  height: auto;
  width: auto;
}
.topnavList {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.topnavList__btn a {
  display: block;
  margin: 0 0.5em;
  padding: .2em .5em .3em;
  color: #000;
}
.topnavList__btn--overview {
  display: none;
}
.topnavList__btn--cart a {
  padding: .2em 1.5em .3em;
  border-radius: 7px;
  background-color: #ff6600;
  color: #fff;
}

.page-detail .topnav__logo {
  margin: 0;
}
.page-detail .topnavList {
  margin: 0;
}
.page-detail .topnavList__btn--overview {
  display: block;
}
.page-detail .topnavList__btn--scene, .page-detail .topnavList__btn--spec, .page-detail .topnavList__btn--cart {
  display: none;
}

/*===========================================================================*/
/*  media quary:767px  */
/*===========================================================================*/
@media screen and (max-width: 767px) {
  .topnav {
    padding: .8em 0;
  }
  .topnav__logo a img {
    max-height: 23px;
  }
  .topnavList__btn--overview, .topnavList__btn--scene, .topnavList__btn--spec {
    display: none;
  }
}
