@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: Maecenas, sans-serif;
  letter-spacing: 0.05em;
}

/*-------------------- アニメーション --------------------*/
.fade {
  animation: fadeIn 0.3s 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: 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 600px) {
  .animated.fadeinUp {
    transform: translate(0, 40px);
  }
}

.animated__delay.fadeinUp__delay {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
@media (min-width: 600px) {
  .animated__delay.fadeinUp__delay {
    transition: 1.3s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
    transform: translate(0, 40px);
  }
}

.animated__delay-layer.fadeinUp__delay-layer {
  opacity: 0;
  transform: translate(-50%, -45%);
  transition: 1.3s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
@media (min-width: 600px) {
  .animated__delay-layer.fadeinUp__delay-layer {
    transition: 1.3s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
    transform: translate(-50%, -43%);
  }
}

.animated__delay-4.fadeinUp__delay-4 {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1.3s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
@media (min-width: 600px) {
  .animated__delay-4.fadeinUp__delay-4 {
    transition: 1.3s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
    transform: translate(0, 40px);
  }
}

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

.animated__delay.fadeinUp__delay.active {
  opacity: 1;
  transform: translate(0, 0);
}

.animated__delay-layer.fadeinUp__delay-layer.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.animated__delay-4.fadeinUp__delay-4.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: 30px;
  height: 30px;
  position: relative;
  z-index: 10;
  text-align: center;
  z-index: 1010; /* トグルボタンをメニューより前面に表示 */
}

.toggle i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 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に変更される */
.nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%; /* 画面全体を占める */
  height: 100svh; /* スライダーの高さを全画面高さに */
  overflow: hidden; /* はみ出た部分を隠す */
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999; /* メニュー自体はトグルボタンの次に前面 */
}
@media (min-width: 600px) {
  .nav {
    width: 40%;
  }
}

.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;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 599px) {
  .nav__look {
    margin: 0 auto;
    gap: 5vh;
    width: 100%;
  }
}
@media (min-width: 600px) {
  .nav__look {
    max-width: 500px;
    gap: 5vh;
    width: 100%;
  }
}
.nav__link {
  width: 50%;
}

.nav__look img {
  width: 60%; /* メニューアイコンの幅を調整 */
  height: auto; /* アスペクト比を維持 */
}
@media (min-width: 600px) {
  .nav__look img {
    width: 45%;
  }
}

.nav__credit {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 100%;
  left: 50%; /* 横方向の中央揃え */
  transform: translateX(-50%); /* 中心基準に調整 */
}
.nav__credit__contain {
  position: relative;
  bottom: 0;
  display: inline-block;
}
@media (min-width: 600px) {
  .nav__credit {
    font-size: 1.8rem;
    right: 20%;
    bottom: 12vh;
    width: 100%;
  }
}
.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(6px, 6px);
  background-color: #0d0d0d;
}

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

.open .toggle i:nth-child(2) {
  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/mdr_2025spring/image/mv_sp.jpg?1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.mv__img img {
  width: 100%; /* 横幅いっぱい */
  height: auto; /* 高さを自動調整 */
  display: block; /* 画像の下部の隙間を防ぐ */
}

.mv__ttl {
  position: absolute;
  top: 9%;
  left: 29%;
  z-index: 10;
  width: 15vw;
  animation: fadeIn 0.6s 0.3s forwards; /* フェードインアニメーション */ /* 2s: アニメーション時間, 1s: 遅延時間 */
}
@media (max-width: 599px) {
  .mv__ttl {
    top: 10%;
    left: 6%;
    width: 30vw;
  }
}
.mv__ttl__img {
  opacity: 0;
  animation: fadeIn 1.2s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards; /* フェードインアニメーション */ /* 2s: アニメーション時間, 1s: 遅延時間 */
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
  width: 33vw;
}
@media (min-width: 600px) {
  .mv__ttl__img {
    width: 13vw;
  }
}
.mv__ttl__text {
  opacity: 0;
  animation: fadeIn 1.2s 1.1s cubic-bezier(0.33, 1, 0.68, 1) forwards; /* フェードインアニメーション */ /* 2s: アニメーション時間, 1s: 遅延時間 */
  width: 62vw;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .mv__ttl__text {
    width: 26vw;
    margin-top: 36px;
  }
}
.mv__ttl__title {
  opacity: 0;
  animation: fadeIn 1.2s 1.35s cubic-bezier(0.33, 1, 0.68, 1) forwards; /* フェードインアニメーション */ /* 2s: アニメーション時間, 1s: 遅延時間 */
  width: 38vw;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .mv__ttl__title {
    width: 16vw;
    margin-top: 18px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 完全に透明な状態 */
  }
  100% {
    opacity: 1; /* 完全に表示される状態 */
  }
}

/*-------------------- comcept --------------------*/
.comcept {
  margin: 100px auto;
  align-items: center;
  text-align: center;
}
@media (min-width: 600px) {
  .comcept {
    margin-top: 200px;
    margin-bottom: 100px;
  }
}
.comcept__ttl {
  font-size: 2.7rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .comcept__ttl {
    font-size: 5rem;
  }
}
.comcept__ttl__sub {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .comcept__ttl__sub {
    font-size: 1.6rem;
    letter-spacing: 0.5rem;
  }
}
.comcept__text {
  font-size: 1.1rem;
  line-height: 3.4rem;
  letter-spacing: 0.2rem;
}
@media (min-width: 600px) {
  .comcept__text {
    font-size: 1.6rem;
    margin-top: 60px;
    line-height: 4.4rem;
  }
}

/*-------------------- look --------------------*/
.look {
  margin-bottom: 200px;
}
@media (min-width: 600px) {
  .look {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 100px;
    padding-top: 100px;
  }
}
.look__img {
  width: 100%;
  height: auto;
  padding-top: 100px;
}
@media (min-width: 600px) {
  .look__img {
    max-width: 780px;
    margin: 0 auto;
    padding: 200px 0;
  }
}
.look__img__small {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .look__img__small {
    max-width: 400px;
  }
}
.look__img__small__02 {
  width: 80%;
  margin: 0 0 0 auto;
}
@media (min-width: 600px) {
  .look__img__small__02 {
    max-width: 500px;
    padding: 0;
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.look__img__small__03 {
  width: 60%;
  margin: 0;
  padding-top: 40px;
}
@media (min-width: 600px) {
  .look__img__small__03 {
    max-width: 350px;
    padding: 0;
  }
}
.look__img__small__04 {
  width: 80%;
  margin: 0;
}
@media (min-width: 600px) {
  .look__img__small__04 {
    max-width: 500px;
    padding: 0;
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.look__img__small__05 {
  width: 60%;
  margin: 0 0 0 auto;
  padding-top: 40px;
}
@media (min-width: 600px) {
  .look__img__small__05 {
    max-width: 350px;
    padding: 0;
  }
}
@media (min-width: 600px) {
  .look__img__small__set {
    max-width: 700px;
    margin: 0 auto;
  }
}
.look__number {
  font-size: 4rem;
  letter-spacing: 0.2rem;
  font-weight: regular;
  padding-bottom: 15px;
  position: absolute;
  color: #ffffff;
  z-index: 15;
  top: 10px;
  left: 10px;
  padding: 10px 20px;
}
@media (min-width: 600px) {
  .look__number {
    font-size: 5rem;
  }
}
@media (min-width: 600px) {
  .look__set {
    display: flex;
  }
}
.look__set__child {
  position: relative;
}
.look__set__child__layer__top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

/*-------------------- 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 {
  position: absolute;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  position: absolute;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  padding: 10px 20px;
}
.credit p {
  color: #ffffff;
}
.credit__bk p {
  color: #0d0d0d;
}
@media (min-width: 600px) {
  .credit {
    font-size: 1.2rem;
    bottom: 20px;
    right: 10px;
    padding: 10px 20px;
  }
}
.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: 30vw;
}
@media (min-width: 600px) {
  .credit__item-name {
    width: 8vw;
  }
}
.credit__item-buy {
  text-decoration: underline;
  margin-left: 10px;
}
.credit__item-buy-noline {
  text-decoration: none;
}

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

.bottom {
  margin: 100px 0 0;
}

/*-------------------- special --------------------*/
.last {
  padding: 0 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;
  margin: 0 0 100px;
}
@media (min-width: 600px) {
  .last__text {
    margin: 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: 70%;
}
@media (min-width: 600px) {
  .back__item {
    width: 40%;
  }
}

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

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