@charset "utf-8";

.stalker {
  background-color: rgba(236, 231, 220, .5);
  border-radius: 50%;
  height: 40px;
  left: -15px; 
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -15px;
  transition: transform .1s ease;
  width: 40px; 
  z-index: 999999;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
}

.header ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 25px 40px;
  position: relative;
  top: 0;
  right: 0;
  gap: 20px;
  z-index: 9999999;
}

.header-icon {
  width: 140px;
  padding-bottom: 10px;
}

.header-icon img {
  width: 100%;
  margin: auto;
}

.header ul li {
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  color: #ece7dc;
  font-size: 14px;
  transition: .5s;
  position: relative;
  bottom: 0;
  letter-spacing: 2px;
}

.header ul li::after {
  content: "";
  height: 1px;
  width: 0%;
  background-color: #ece7dc;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: .3s ease;
}

.header ul li:hover::after {
  width: 100%;
}

.top-header li[data-text="TOP"],
.company-header li[data-text="COMPANY"],
.products-header li[data-text="PRODUCTS"],
.stores-header li[data-text="STORES"] ,
.contact-header li[data-text="CONTACT"] {
  opacity: .5;
  pointer-events: none;
}

/* メディアクエリ - ヘッダー */
@media screen and (max-width: 768px) {
  .sp-header {
    color: #ece7dc;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    font-size: 40px;
  }

  .sp-header-icon {
    width: 140px;
    padding-bottom: 10px;
  }

  .sp-header-icon img {
    width: 100%;
    margin: auto;
  }
    
  .sp-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    pointer-events: none;
  }
  
  .sp-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .sp-menu ul li a{
    color: #ece7dc;
  }
  
}