@charset "UTF-8";
@media (min-width: 600px) {
  .sp-show {
    display: none;
  }
}

@media (max-width: 599px) {
  .pc-show {
    display: none;
  }
}

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;
  overflow: scroll;
}

.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: center;
}
@media (max-width: 599px) {
  .nav__look {
    margin: 0 auto;
    gap: 10px;
  }
}
@media (min-width: 600px) {
  .nav__look {
    width: 70%;
    max-width: 1000px;
    gap: 20px;
    position: relative;
  }
}

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

@media (max-width: 599px) {
  .nav__credit {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .nav__credit {
    position: absolute;
  }
}

.nav__link {
  width: 25%;
}

@media (min-width: 600px) {
  .nav__link {
    flex: 1 0 calc(14.285% - 20px); /* PCでは7個並べる（100% ÷ 7 - gap） */
    max-width: 14.285%; /* 最大幅を7等分に制限 */
  }
}

.nav__credit {
  flex: 0 0 calc(30% - 20px); /* PCでは右側に配置 */
  margin-left: 20px; /* 左隙間 */
  align-self: center; /* 縦方向の中央揃え */
}
@media (min-width: 600px) {
  .nav__credit {
    position: absolute;
    text-align: left;
    left: 77%;
    margin: 0 auto;
    margin-top: 30vh;
  }
}
@media (max-width: 599px) {
  .nav__credit {
    width: 100%; /* SPでは横幅いっぱい */
    margin-top: 20px; /* 上に隙間を追加 */
    text-align: center; /* 中央揃え */
  }
}

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

.nav__item {
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .nav__item {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: left;
  }
}
@media (max-width: 1000px) {
  .nav__item {
    font-size: 1.6rem;
  }
}

.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;
  }
}
@media (max-width: 1000px) {
  .copyright__text {
    font-size: 1rem;
  }
}

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

.swiper {
  width: 100vw; /* スライダーの幅を全画面幅に */
  height: 100svh; /* スライダーの高さを全画面高さに */
  overflow: hidden; /* スライド部分を隠す */
}

.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: 90%; /* 画像の高さも100%に */
  -o-object-fit: cover;
     object-fit: cover; /* 画像がスライドを覆うように */
  pointer-events: auto; /* クリックイベントを有効にする */
  z-index: 1; /* 必要に応じて適切な値を設定 */
  cursor: pointer;
}

.main-swiper {
  width: 100%;
  height: calc(100vh - env(safe-area-inset-bottom)); /* iOSの安全領域を考慮 */
  overflow: hidden;
  position: relative;
}
@media (max-width: 599px) {
  .main-swiper {
    height: calc(100svh - env(safe-area-inset-bottom)); /* スマホで安全領域に対応 */
  }
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  height: 100%; /* ラッパーの高さも画面いっぱい */
}

.swiper-slide {
  flex-shrink: 0; /* スライドの縮小を無効化 */
  height: 100%; /* スライドの高さを画面全体に一致 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto; /* スライド幅を自動調整 */
}
@media (max-width: 599px) {
  .swiper-slide {
    width: auto;
  }
}

.main-swiper-slide img {
  height: 100vh; /* 画像の高さを画面いっぱいに */
  width: auto; /* 幅を縦横比に応じて調整 */
  -o-object-fit: cover;
     object-fit: cover; /* 縦横比を維持しながら埋める */
  display: block;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .main-swiper-slide img {
    height: 100svh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1); /* 滑らかで減速する動き */
}

.main-swiper-slide {
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1); /* スライド拡大も同様に滑らかに */
}

.main-swiper-slide.swiper-slide-active {
  transform: scale(1.015); /* 中央スライドを拡大 */
}
@media (max-width: 599px) {
  .main-swiper-slide.swiper-slide-active {
    transform: scale(1); /* 中央スライドを拡大 */
  }
}

.swiper-pagination-bullet {
  background-color: #000000;
  border: 1.5px solid #E6E6E6; /* 線の縁を追加 */
}

.swiper-pagination-bullet-active {
  background-color: #404040; /* アクティブ時の色 */
}

/*-------------------- logo --------------------*/
.main-logo {
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  position: absolute;
  width: 75%;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.8s ease-in-out;
}
@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: 70%; /* スライダーの高さ */
  margin-top: 60px;
}
@media (min-width: 600px) {
  .popup .swiper {
    width: 35%;
    height: 100%;
    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;
}

/* swiper-pagination のスタイルを調整 */
.swiper-pagination {
  position: absolute; /* 絶対位置を指定 */
  bottom: 6% !important; /* 画像の下部から 10px の位置に配置 */
  left: 0;
  right: 0;
  text-align: center; /* 中央揃え */
  z-index: 10; /* 画像の上に重なるようにする */
}
@media (min-width: 600px) {
  .swiper-pagination {
    bottom: 7% !important;
  }
}

/* 必要に応じて画像内での高さ調整 */
.popup .swiper img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.sub-item__wrap {
  margin: 0 auto;
  width: 90%;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 600px) {
  .sub-item__wrap {
    max-width: 800px;
  }
}
.sub-item__category {
  text-align: center;
  padding: 20px 0;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 30px;
}
@media (min-width: 600px) {
  .sub-item__category {
    font-size: 3rem;
    margin-bottom: 90px;
  }
}

.recommend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .recommend {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
  }
}
.recommend__content {
  width: 48%;
}
@media (min-width: 600px) {
  .recommend__content {
    width: 24%;
  }
}
.recommend__detail {
  text-align: center;
  margin: 20px 0 30px;
}
.recommend__name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
  text-align: left;
  margin-bottom: 4px;
}
@media (min-width: 600px) {
  .recommend__name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-align: left;
  }
}
.recommend__price {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: left;
}
@media (min-width: 600px) {
  .recommend__price {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: left;
  }
}

.recommend__btn {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}
@media (min-width: 600px) {
  .recommend__btn {
    width: 40%;
    border-radius: 10px;
    margin-top: 50px;
  }
}
.recommend__btn a {
  margin: 0 auto;
  width: 70%;
  border-radius: 40px;
  display: block;
  padding: 10px 0px;
  text-align: center;
  background-color: #fff;
  font-weight: bold;
  border: solid 1px #333333;
}
@media (min-width: 600px) {
  .recommend__btn a {
    width: 80%;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 18px 0px;
  }
}

@media (max-width: 599px) {
  .recommend__btn2 a:nth-child(2) {
    margin-top: 1.4rem;
  }
}
@media (min-width: 600px) {
  .recommend__btn2 {
    display: flex;
    width: 80%;
  }
}
@media (min-width: 600px) {
  .recommend__btn2 a {
    width: 40%;
  }
}

.last {
  text-align: center;
  padding-bottom: 80px;
  text-decoration: underline;
}
@media (min-width: 600px) {
  .last {
    padding-bottom: 100px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer small {
  display: block;
  text-align: center;
  padding-bottom: 20px;
}

@media (min-width: 600px) {
  .footer small {
    font-size: 1.3rem;
    padding-bottom: 30px;
  }
}