@charset "UTF-8";

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


/*ローディング画面全体*/
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #111111;
  display: flex;
  font-family: "noto-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

/*フェードアウト時*/
#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

/*ローディング*/
.loading-content {
  text-align: center;
}

.loading-logo {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.loading-text {
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  animation: blink 1s infinite ease-in-out;
  opacity: 1;
}

/*点滅アニメーション*/
@keyframes blink {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
}


#tokushu {
  font-family: "aw-conqueror-didot", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  background-color: #000;
  color: #111;
  line-height: 1.6;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded #tokushu {
  opacity: 1;
}

#tokushu a, #tokushu img, #tokushu video{
  display: block;
}

#tokushu img, #tokushu video{
  width: 100%;
  height: 100%;
  object-fit: cover;  
}

body.modal-open {
  overflow: hidden;
}


/*ヒーローセクション*/
.hero {
  position: relative;
  height: 100vh;
}

/*初期状態(ズームイン＋非表示)*/
.hero-image {
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1s ease, transform 1s ease;
}

/*アクティブ*/
.hero-image.visible {
  opacity: 1;
  transform: scale(1);
}

.hero-image img{
  height: 100vh !important;
}

/*テキスト・ロゴ初期状態*/
.hero-text,
.hero-logo {
  opacity: 0;
  transform: translate(-50%, -35%);
  transition: opacity 1.2s ease 0.5s, transform 1.2s ease 0.5s;
}
/*アクティブ*/
.hero-text.visible,
.hero-logo.visible {
  opacity: 1;
  transform: translate(-50%, -35%);
}

/*画像初期状態*/
.fade-in-target {
  opacity: 0;
  transition: opacity 1s ease;
}
/*アクティブ*/
.fade-in {
  opacity: 1;
}
/*hero-image初期状態*/
.zoom-out-target {
  transform: scale(1.2);
  transition: opacity 1s ease, transform 1s ease;
}
.zoom-out {
  transform: scale(1);
  opacity: 1;
}


.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.5;
}

.hero-text p {
  font-size: 2rem;
  margin-top: 0.5em;
}

.hero-logo {
  position: absolute;
  top: 5rem;
  left: 12rem;
  width: 300px !important;
  height: auto !important;
}

/*ギャラリー画像*/
.gallery-section {
  width: 100%;
  overflow: hidden;
}

/*1カラムセクション*/
.gallery-section.single {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/7;
}

.gallery-section.single.full-video {
  height: 100vh;
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
}

.image-wrapper img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.image-wrapper .caption-wrapper {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0 1rem;
  z-index: 1;
}

.caption a {
  display: block;
  font-size: 0.8rem;
  font-family: Helvetica, 'sans-serif';
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.caption a:hover {
  color: #B3B3B3;
}

/*2カラムセクション*/
.gallery-section.two-col {
  display: flex;
  width: 100%;
  aspect-ratio:16/7;
}

.gallery-section.two-col .media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/*比率指定*/
.gallery-section.two-col .media.left {
  width: 66.65%;
  margin-bottom: -1px;
}

.gallery-section.two-col .media.right {
  width: 33.35%;
}

.gallery-section.two-col .media.right img {
  aspect-ratio: 3/4;
}

.gallery-section.two-col.equal .media.left,
.gallery-section.two-col.equal .media.right {
  flex: 1;
}

/*縦2動画+1画像レイアウト*/
.gallery-section.three-split {
  display: flex;
  width: 100%;
  aspect-ratio: 16/7;
}

.image-frame {
  flex: 2;
}

.video-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aspect-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.aspect-box img{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-box-v {
  width: 100vw;
  overflow: hidden;
}

.aspect-box-v video{
  object-fit: contain;
}


/*スマホ用VIEW MOREボタン*/
.view-more-btn {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 10px -5rem auto;
  bottom: 15%;
  background: transparent;
  border: none;
	border-bottom: 1px solid #fff;
	width: 150px;
  font-size: 0.7rem;
  text-align: center;
  color: #fff;
  font-family: 'Helvetica', sans-serif;
}

.view-more-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 1px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  border-radius: 300px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1.1px) 50%;
}


/*スマホ用モーダル背景*/
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 1rem;
}

/*スマホ用モーダルの中身*/
.modal-content {
  background: white;
  padding: 0;
  max-width: 600px;
  height: fit-content;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/*スマホ用商品画像*/
.modal-content img {
  width: 100% !important;
  height: 90% !important;
  aspect-ratio: 3/4;
  margin: 0 auto;
  display: block;
}

/*スマホ用商品情報*/
.product-info {
  padding: 1rem;
  text-align: left;
  font-family: 'Helvetica', sans-serif;
  font-size: 0.6rem;
  color: #111;
  background: white;
}

.product-info a {
  color: #111;
  text-decoration: none;
  line-height: 1.6;
}

/*スマホ用モーダルの×ボタン*/
.close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #777;
  color: #ffffff;
  font-family: 'Helvetica', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  z-index: 20;
}

/*パララックス*/
.parallax-section {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7;
  background-image: url('https://ruirue-co-jp.prm-ssl.jp/img/dresslook/imges/img10.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg1 {
  background-image: url('https://ruirue-co-jp.prm-ssl.jp/img/dresslook/imges/img2.webp');
}

.bg3 {
  background-image: url('https://ruirue-co-jp.prm-ssl.jp/img/dresslook/imges/img8.webp');
}

/*フッター*/
.closing-section {
  height: 100vh;
  background-image: url('https://ruirue-co-jp.prm-ssl.jp/img/dresslook/imges/img12.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-text-wrapper {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 500px !important;
  height: auto !important;
}

.catchcopy {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
}



/*レスポンシブ*/
@media (max-width: 768px) {
  
  .loading-logo {
    width: 170px;
    margin: 0 auto 10px;
  }
  
  .loading-text {
    font-size: 12px;
  }
  
  .hero {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .hero-image img{
    height: auto !important;
    aspect-ratio: 4/3;
  }
  
  /*初期状態*/
  .hero-text,
  .hero-logo {
    transform: none;
  }
  /*アクティブ*/
  .hero-text.visible,
  .hero-logo.visible {
    transform: none;
  }

  .hero-text {
    position: static;
    top: auto;
    left: auto;
    padding: 2rem 1rem;
    text-align: center;
    color: #fff;
    background: url('https://ruirue-co-jp.prm-ssl.jp/img/dresslook/imges/img13.webp');
    background-size: contain;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
    margin-top: 0;
  }
  
  .hero-logo {
    display: none !important;
  }
    
  .gallery-section {
    height: auto;
  }

  .gallery-section.single{
    height: auto;
    align-items: stretch;
    aspect-ratio: 3/2;
  }
  
  .single-image {
    aspect-ratio: auto;
    width: 100%;
  }

  .single-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .gallery-section.two-col {
    aspect-ratio: 1.5/1;
  }
  
  .gallery-section.three-split {
    aspect-ratio: 1/1;
  }
  
  .image-frame {
    flex: 1.5;
  }
  
  .gallery-section.two-col .media.right {
    width: 45%;
  }
  
  .aspect-box {
    aspect-ratio: 3/4;
  }

  
  .caption-wrapper {
    display: none;
  }
  
  .closing-section {
    height: 50vh;
  }

  .logo {
    width: 200px !important;
  }

  .catchcopy {
    padding: 0 3rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) {
  .view-more-btn {
    display: none;
  }
  
  .parallax-section {
    background-attachment: fixed;
  }
}