@charset "UTF-8";
/*-------------------- color --------------------*/
/*-------------------- 共通 --------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "source-han-sans-japanese", "bilo", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #0d0d0d;
  font-feature-settings: "palt";
}
@media (min-width: 600px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: #0d0d0d;
}
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;
  }
}

@media (min-width: 600px) {
  .pc {
    max-width: 700px;
    margin: 0 auto;
  }
}

.tax {
  font-size: 1.3rem;
  margin-left: 2px;
}

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

/*-------------------- font --------------------*/
.font-jp {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.08em;
}

.font-eg {
  font-family: bilo, sans-serif;
  letter-spacing: 0.05em;
}

/*-------------------- アニメーション --------------------*/
.fade {
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animated.fadeinUp {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1.8s;
}

.animated.fadeinUp.active {
  opacity: 1;
  transform: translate(0, 0);
}

/*-------------------- navigation --------------------*/
/* ハンバーガーメニューのスタイル */
#navigation {
  position: fixed; /* 絶対位置から固定位置に変更 */
  top: 30px;
  right: 30px;
  z-index: 1000; /* スライダーの上に表示するため */
}
@media (min-width: 600px) {
  #navigation {
    right: 40px;
  }
}

.toggle {
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 10;
  text-align: center;
  z-index: 1010; /* トグルボタンをメニューより前面に表示 */
}

.toggle i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  margin: 10.8px 0;
  transition: 0.3s;
}

/* 背景が暗い場合のハンバーガーメニュー */
.toggle.light i {
  background-color: #0d0d0d; /* 白に変更 */
}

.menu-text.light {
  color: #0d0d0d; /* 白に変更 */
}

/* menuテキストのスタイル */
.menu-text {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
  color: #ffffff;
  transition: 0.3s;
}

/* クリック時にcloseに変更される */
.open .menu-text {
  content: "close";
  color: #0d0d0d;
}

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 画面全体を占める */
  height: 100svh; /* スライダーの高さを全画面高さに */
  overflow: hidden; /* はみ出た部分を隠す */
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999; /* メニュー自体はトグルボタンの次に前面 */
}

.nav__link-wrap {
  text-align: center; /* 中央揃え */
  display: flex;
  flex-direction: column; /* 縦に並べる */
  justify-content: center; /* 垂直中央揃え */
  align-items: center; /* 水平中央揃え */
  height: 100svh; /* 高さを100%に設定 */
}

.nav__look {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 599px) {
  .nav__look {
    margin: 0 auto;
    gap: 10px;
    width: 80%;
  }
}
@media (min-width: 600px) {
  .nav__look {
    max-width: 500px;
    gap: 10px;
  }
}
@media (max-height: 800px) {
  .nav__look {
    width: 70%;
  }
}

.nav__link {
  width: 30%;
}

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

.nav__credit {
  position: absolute;
  text-align: right;
  bottom: 40px;
  right: 10%;
  width: 100%;
}
@media (min-width: 600px) {
  .nav__credit {
    font-size: 1.8rem;
    right: 20%;
    bottom: 14vh;
    width: 100%;
  }
}
@media (max-height: 800px) {
  .nav__credit {
    right: 15%;
  }
}

.nav__insta {
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .nav__insta {
    margin-bottom: 15px;
  }
}

/* 3つ目の線を削除 */
.open .toggle i:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #0d0d0d;
}

.open .toggle i:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #0d0d0d;
}

.toggle i:nth-child(3) {
  display: none; /* 3本目を非表示にする */
}

.open .nav {
  display: block;
}

/*-------------------- mv --------------------*/
.mv {
  z-index: -1;
  position: relative;
}
@media (min-width: 600px) {
  .mv__img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

.mv__img.sp_show {
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: url(https://www.rakuten.ne.jp/gold/osharewalker/lookbook/norlabel_2024winter/image/sp-mv.jpg?1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

/*-------------------- look --------------------*/
@media (min-width: 600px) {
  .look {
    max-width: 500px;
    margin: 0 auto;
  }
}
.look__img {
  width: 100%;
  height: auto;
  padding: 200px 0;
}
@media (min-width: 600px) {
  .look__img {
    max-width: 780px;
    margin: 0 auto;
  }
}
.look__number {
  text-align: right;
  font-size: 4rem;
  letter-spacing: -0.05rem;
  font-weight: 400;
  padding-bottom: 15px;
}
@media (max-width: 599px) {
  .look__number {
    padding-right: 55px;
  }
}
@media (min-width: 600px) {
  .look__number {
    font-size: 5rem;
  }
}

/*-------------------- swiper --------------------*/
.container {
  position: relative;
  margin: 0 auto;
}

.swiper-slide {
  width: auto; /* スライドの幅を自動調整 */
}

.swiper-pagination {
  bottom: -30px !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #0d0d0d;
}

/*-------------------- credit --------------------*/
.credit {
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  margin: 70px 0 100px;
}
@media (max-width: 599px) {
  .credit {
    padding-left: 55px;
  }
}
@media (min-width: 600px) {
  .credit {
    font-size: 1.7rem;
    margin: 100px 0 130px;
  }
}
.credit__wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 600px) {
  .credit__wrap {
    gap: 20px;
  }
}
.credit__item {
  display: flex;
  align-items: center;
}
.credit__item-name {
  width: 25vw;
}
@media (min-width: 600px) {
  .credit__item-name {
    width: 10vw;
  }
}
.credit__item-buy {
  text-decoration: underline;
  margin-left: 10px;
}

.tax {
  font-size: 1rem;
}
@media (min-width: 600px) {
  .tax {
    font-size: 1.2rem;
  }
}

.bottom {
  margin: 100px 0 0;
}

/*-------------------- special --------------------*/
.last {
  padding: 100px 0 50px;
}
@media (min-width: 600px) {
  .last {
    padding: 180px 0 100px;
  }
}
.last__title {
  width: 50%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .last__title {
    width: 15%;
  }
}
.last__text {
  text-align: center;
  text-decoration: underline;
  padding: 50px 0 100px;
}
@media (min-width: 600px) {
  .last__text {
    padding: 50px 0 180px;
  }
}
.last__logo {
  width: 20%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .last__logo {
    width: 6%;
  }
}

.back {
  max-width: 400px;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px;
}
.back__item {
  width: 45%;
}
@media (min-width: 600px) {
  .back__item {
    width: 40%;
  }
}

@media (min-width: 600px) {
  .back {
    max-width: 650px;
    margin: 0 auto;
  }
}
.insta {
  width: 25%;
}
@media (min-width: 600px) {
  .insta {
    width: 20%;
  }
}

/*-------------------- footer --------------------*/
.playfair {
  color: #0d0d0d;
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 20px;
}