@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #0d0d0d;
  height: 100%;
  font-feature-settings: "palt";
}
@media (min-width: 600px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: #1a1a1a;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

ul {
  list-style: none;
}

.sp_show {
  display: block;
}
@media (min-width: 600px) {
  .sp_show {
    display: none;
  }
}

.pc_show {
  display: none;
}
@media (min-width: 600px) {
  .pc_show {
    display: block;
  }
}

/*web接客*/
#flipdesk_root {
  display: none;
}

.circle {
  z-index: 999;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 0;
  margin: 0 auto;
  pointer-events: none;
}

/*-------------------- font --------------------*/
.font-jp {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
}

.font-eg {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/*-------------------- navigation --------------------*/
/* ハンバーガーメニューのスタイル */
#navigation {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10; /* スライダーの上に表示するため */
}

.toggle {
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 10;
}

.toggle i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 6.6px 0;
  transition: 0.3s;
}

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 画面全体を占める */
  height: 100svh; /* スライダーの高さを全画面高さに */
  overflow: hidden; /* はみ出た部分を隠す */
  background-color: rgb(255, 255, 255);
  z-index: 8;
}

.nav__link-wrap {
  text-align: center; /* 中央揃え */
  display: flex;
  flex-direction: column; /* 縦に並べる */
  justify-content: center; /* 垂直中央揃え */
  align-items: center; /* 水平中央揃え */
  height: 100%; /* 高さを100%に設定 */
}
@media (max-width: 599px) {
  .nav__link-wrap {
    margin: 0 auto;
    max-width: 300px; /* 最大幅を設定して縮小 */
    height: auto; /* アスペクト比を維持 */
    padding: 50px 0;
  }
}

.nav__look {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
}
@media (max-width: 599px) {
  .nav__look {
    margin: 0 auto;
    gap: 20px;
  }
}
@media (min-width: 600px) {
  .nav__look {
    width: 50%;
    gap: 10px;
  }
}
@media (max-height: 800px) {
  .nav__look {
    width: 60%;
  }
}

.nav__link {
  width: 25%;
}
@media (min-width: 600px) {
  .nav__link {
    width: 15%;
  }
}

.nav__look img {
  width: 100%; /* メニューアイコンの幅を調整 */
  height: auto; /* アスペクト比を維持 */
}

@media (max-width: 599px) {
  .nav__credit {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .nav__credit {
    position: absolute;
    right: 10%;
    bottom: 22vh;
    width: 18%;
  }
}

.nav__wrap {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 599px) {
  .nav__wrap {
    width: 70%;
    margin: 0 auto;
    padding: 50px 0 10px;
  }
}
@media (max-width: 400px) {
  .nav__wrap {
    width: 60%;
    padding: 40px 0 0;
  }
}

.nav__item {
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .nav__item {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}

.nav__item.insta {
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .nav__item.insta {
    margin-bottom: 20px;
  }
}

.open .toggle i:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.open .toggle i:nth-child(2) {
  opacity: 0;
}

.open .toggle i:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.open .nav {
  display: block;
}

@media (max-width: 599px) {
  .copyright__text {
    font-size: 0.8rem;
    letter-spacing: 0.01rem;
  }
}
@media (min-width: 600px) {
  .copyright__text {
    font-size: 1.2rem;
  }
}

/*-------------------- slide --------------------*/
body {
  margin: 0;
  padding: 0;
  overflow: hidden; /* スクロールバーを隠す */
}

.swiper {
  width: 100vw; /* スライダーの幅を全画面幅に */
  height: 100svh; /* スライダーの高さを全画面高さに */
  overflow: hidden; /* スライド部分を隠す */
  touch-action: pan-y; /* 縦にスワイプを許可 */
}

.swiper-wrapper {
  display: flex; /* フレックスボックスを使用 */
  transition-timing-function: linear;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* スライドを他の要素の上に表示 */
  position: relative; /* スライドの位置を正しく設定 */
}

.swiper-slide img {
  width: 100%; /* 画像をスライドに合わせる */
  height: 100%; /* 画像の高さも100%に */
  object-fit: cover; /* 画像がスライドを覆うように */
  pointer-events: auto; /* クリックイベントを有効にする */
  z-index: 1; /* 必要に応じて適切な値を設定 */
}

/* メディアクエリ */
@media (max-width: 768px) {
  /* SP画面の場合 */
  .swiper {
    height: 100vh; /* 高さを全画面に */
  }
}
.swiper-pagination-bullet {
  background-color: #1a1a1a;
}

/*-------------------- logo --------------------*/
.main-logo {
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  position: absolute;
  width: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease;
}
@media (min-width: 600px) {
  .main-logo {
    width: 20%;
  }
}

.main-logo.fade-in {
  opacity: 1;
}

.main-logo.fade-out {
  opacity: 0;
}

/*-------------------- svg --------------------*/
.svg-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000; /* 他の要素の上に表示するための調整 */
  width: 200px;
  height: 200px;
}

/*-------------------- popup --------------------*/
/* ポップアップの初期状態を非表示に */
.popup {
  display: none; /* 非表示にする */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255); /* 背景を暗く */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* 他の要素の上に表示 */
}

.popup.active {
  display: flex; /* ポップアップ表示 */
  flex-wrap: wrap;
  align-content: center;
}

.popup .swiper {
  width: 80%; /* スライダーの幅 */
  height: 65%; /* スライダーの高さ */
  margin-top: 80px;
}
@media (min-width: 600px) {
  .popup .swiper {
    width: 30%;
    height: 90%;
    margin-top: 0px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

/* ポップアップの画像スタイル */
.popup-content {
  max-width: 100%;
  max-height: 100%;
  align-content: center;
}

/* 閉じるボタンのスタイル */
.popup-close {
  position: absolute;
  top: 20px; /* ボタンの位置を調整 */
  right: 0px; /* ボタンの位置を調整 */
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 60px; /* 幅を広げる */
  height: 60px; /* 高さを広げる */
  display: flex; /* 中央に配置するためのフレックスボックス */
  justify-content: center; /* 横中央に配置 */
  align-items: center; /* 縦中央に配置 */
}
@media (min-width: 600px) {
  .popup-close {
    top: 30px;
    right: 30px;
  }
}

.popup-close::before,
.popup-close::after {
  content: "";
  position: absolute;
  width: 1px; /* 棒の幅（太さ）を太くする */
  height: 30px; /* 棒の高さ */
  background: #1a1a1a;
}
@media (min-width: 600px) {
  .popup-close::before,
  .popup-close::after {
    top: 8%;
    right: 5%;
  }
}

.popup-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.credit {
  z-index: 99;
  width: 200px;
  padding-top: 30px;
}
@media (max-width: 599px) {
  .credit {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 600px) {
  .credit {
    position: absolute;
    right: 10%;
    bottom: 5%;
    width: 20%;
  }
}
.credit__name {
  width: 30%;
}
@media (min-width: 600px) {
  .credit__name {
    width: 40%;
  }
}
.credit__price {
  width: 70%;
}
@media (min-width: 600px) {
  .credit__price {
    width: 70%;
  }
}

.credit a {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.buy {
  text-decoration: underline;
  margin-left: 3px;
}