@charset "UTF-8";
.sp_only {
	display: block;
}
.pc_only {
	display: none;
}


/* ==========================================================================
ヘッダー
=========================================================================== */
.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 68px;
  padding-left: 20px;
  position: fixed;
  top: 0;
  z-index: 101;
  transition: all 0.3s;
}

.header.is-invisible {
  opacity: 0;
}

.header__logo {
  width: 134px;
  height: auto;
  position: relative;
  z-index: 101;
}


/* ==========================================================================
ハンバーガーメニュー
=========================================================================== */
/* ボタン */
.hamburger__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 101;
}

.hamburger__btn-inner {
  width: 100%;
  height: 22px;
  position: relative;
}

.hamburger__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--Main);
  position: absolute;
  transition: .5s;
}

.hamburger__btn span:first-of-type {
  top: 0;
}

.hamburger__btn span:nth-of-type(2) {
  top: 50%;
}

.hamburger__btn span:last-of-type {
  top: 100%;
}

.hamburger__btn.active span:first-of-type {
  top: 50%;
}

.hamburger__btn.active span:last-of-type {
  top: 50%;
}

/* メニュー */
.hamburger__content {
  background: #fff;
  width: 100dvw;
  height: 100dvh;
  padding: 108px 20px 28px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: .5s;
  z-index: 100;
}

.hamburger__content.active {
  overflow-y: auto;
  transform: translateX(0);
}

.hamburger__content-wrap {
  text-align: center;
}

.hamburger__pageLinks a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.hamburger__pageLinks-item::after {
  content: attr(data-en);
  font-family: var(--fontFamily_sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 2px;
  color: var(--gray);
}

.hamburger__snsLinks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 13px;
  margin-top: 32px;
}

.hamburger__snsLinks-item {
  font-family: var(--fontFamily_sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger__snsLinks-item::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  width: 28px;
  height: auto;
  aspect-ratio: 1;
}

.hamburger__snsLinks-item[data-type="ig"]::before {
  background-image: url(../img/instagram_icon_gray.png);
}

.hamburger__snsLinks-item[data-type="yt"]::before {
  background-image: url(../img/youtube_icon_gray.png);
}

.hamburger__snsLinks-item[data-type="x"]::before {
  background-image: url(../img/x_icon_gray.png);
}

.hamburger__snsLinks-item[data-type="tt"]::before {
  background-image: url(../img/tiktok_icon_gray.png);
}

.hamburger__shopLinks {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.hamburger__shopLinks-item {
  font: var(--BodySmallRegular);
  line-height: 100%;
  display: flex;
  align-items: center;
  background: #F6F7F8;
  border-radius: 4px;
  height: 50px;
  padding: 0 16px;
  position: relative;
}

.hamburger__shopLinks-item::after {
  content: "";
  background: url(../img/jump_icon.svg) no-repeat center / 100% auto;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 16px;
}

.hamburger__shopLinks-item span {
  font: var(--BodyMediumMedium);
  line-height: 100%;
}


@media screen and (min-width: 769px) {

  /* ==========================================================================
  ベース設定
  =========================================================================== */
  .body {
  }

  .forSP {
    display: none;
  }

  .forSP-inline {
    display: none;
  }

  .forPC {
    display: block;
  }

  .forPC-inline {
    display: inline;
  }

  .body a:hover {
    opacity: 0.6;
  }


  /* ==========================================================================
  ヘッダー
  =========================================================================== */
  .header {
    display: none;
  }


  /* ==========================================================================
  PC用
  =========================================================================== */
  .pc_only {
	  display: block;
  }
  .sp_only {
	  display: none;
  }
  .pcBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: -1;
  }

  .pcBg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pcLogo {
    width: 238px;
    position: fixed;
    top: 50%;
    left: calc((100% - 1440px) / 2 + 120px);
  }

  .pcSnsLinks {
    position: fixed;
    bottom: min(5.2vh, 68px);
    left: calc((100% - 1440px) / 2 + 145px);
  }

  .pcSnsLinks .custom-html-widget {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .pcSnsLinks a {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    width: 26px;
    height: 26px;
  }

  .pcSnsLinks a[data-type="ig"] {
    background-image: url(../img/instagram_icon_gray.png);
  }

  .pcSnsLinks a[data-type="yt"] {
    background-image: url(../img/youtube_icon_gray.png);
  }

  .pcSnsLinks a[data-type="x"] {
    background-image: url(../img/x_icon_gray.png);
  }

  .pcSnsLinks a[data-type="tt"] {
    background-image: url(../img/tiktok_icon_gray.png);
  }

  .pcSnsLinks-icon {
    width: auto;
    height: 26px;
  }



  .pcMenu {
    position: fixed;
    bottom: 60px;
    bottom: min(5vh, 60px);
    left: calc((100% - 500px) / 2 + 500px + 78px);
  }

  .pcMenu__pageLinks .menu {
    display: inline-flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 15px;
  }

  .pcMenu__pageLinks .menu li {
    font-family: var(--fontFamily_ABeeZee);
    font-size: 25px;
    line-height: 170%;
    letter-spacing: 2px;
    color: var(--gray);
  }

  .pcMenu__shopLinks .custom-html-widget {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    gap: 16px;
    padding-left: 15px;
    margin-top: 52px;
  }

  .pcMenu__shopLinks a {
    font: var(--BodyMediumMedium);
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    height: 50px;
    padding: 0 17px;
    position: relative;
  }

  .pcMenu__shopLinks a::after {
    content: "";
    background: url(../img/jump_icon.svg) no-repeat center / 100% auto;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
  }

  .pcMenu__legalLinks .custom-html-widget {
    display: flex;
    gap: 24px;
    margin-top: 80px;
  }

  .pcMenu__legalLinks a {
    font-family: var(--fontFamily_ZenKaku);
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    color: var(--gray);
    transform: scale(0.9);
  }


  /* ==========================================================================
  トップページ
  =========================================================================== */
  .container {
    width: 500px;
    margin: 0 auto;
  }

  /* FV */
  .fv__img {
    height: auto;
  }

  /* topSns */
  .sby_item a:hover {
    opacity: 1;
  }


  /* ==========================================================================
  固定ページ
  =========================================================================== */
  .page:not(.page.home) .container,
  .archive .container,
  .single .container {
    padding-top: 0;
  }


  /* ==========================================================================
  FAQ
  =========================================================================== */
  .faq__tag {
    cursor: pointer;
    transition: all 0.2s;
  }

  .faq__tag:hover {
    opacity: 0.6;
  }

}
