@charset "UTF-8";

/* =========================================================
   [ Section 1 ] First View
========================================================= */
.fv-scroll-area {
  height: 300vh; 
  position: relative;
  background-color: #fff;
}

.fv-sticky-area {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fv-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 65vw; 
  height: 80vh;
  z-index: 1;
  background-color: #ffffff;
  will-change: width, height; 
  transform: translateZ(0); 
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out; /* JSが .is-active を付け替えてフェード */
}

/* JS制御：表示中のスライドだけ .is-active で表示 */
.slide-item.is-active {
  opacity: 1;
}

/* スライドが1枚だけの場合：常時表示（点滅防止）。
   画像は静止、動画はループ再生。 */
.slide-item.is-solo {
  opacity: 1;
}

/* FV スライダー PC/スマホ 出し分け */
.slideshow-pc { display: block; }
.slideshow-sp { display: none; }

/* FV スライダー PC/スマホ 出し分け（スマホ） */
@media (max-width: 768px) {
  .slideshow-pc { display: none; }
  .slideshow-sp { display: block; }
}

.fv-logo-area {
  position: absolute;
  left: 45vw;
  top: 45vh; 
  z-index: 10;
  pointer-events: none; 
  will-change: transform, opacity;
}

.fv-logo-area img {
  width: clamp(300px, 50vw, 900px); 
  height: auto;
}

@media (max-width: 768px) {
  .fv-image-wrapper {
    width: 75vw;
    height: 70vh;
  }
  .fv-logo-area {
    left: 5vw;
    top: 40vh;
    bottom: auto; 
  }
  .fv-logo-area img {
    width: 90vw;
    max-width: none;
  }
}


/* =========================================================
   [ Section 2 ] Showcase
========================================================= */
.showcase-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

/* --- 背景レイヤー --- */
.bg-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.bg-item {
  position: absolute;
  inset: -50px; 
  background-size: cover;
  background-position: center;
  filter: blur(21px);
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.6s ease-in-out; 
  transform: translateZ(0); 
}
.bg-item.is-active { opacity: 1; }
.bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* --- 十字架装飾 --- */
.cross-mark {
  position: absolute;
  width: 120px;
  height: 60px;
  z-index: 3;
}
.cross-mark::before, .cross-mark::after {
  content: ""; position: absolute; background-color: rgba(255, 255, 255, 0.5);
}
.cross-mark::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.cross-mark::after { top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.cross-top-right { top: 10%; right: 5%; }
.cross-bottom-left { bottom: 5%; left: 5%; }

.cross-top-right::after { left: 80%; }
.cross-bottom-left::after { left: 20%; }

/* --- コンテンツレイヤー --- */
.content-layer {
  position: relative;
  width: 100%; height: 100%;
  z-index: 10;
}
.showcase-card {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  transform-origin: center center;
  will-change: transform;
  pointer-events: none; 
}
.card-inner {
  position: relative;
  width: 100%; 
  height: 100%;
  pointer-events: auto; 
}

.showcase-card:nth-child(1) { z-index: 10; }
.showcase-card:nth-child(2) { z-index: 9; }
.showcase-card:nth-child(3) { z-index: 8; }
.showcase-card:nth-child(4) { z-index: 7; }

/* 左：画像エリア */
.card-image {
  position: absolute;
  top: 50%;
  left: 0; 
  transform: translateY(-50%);
  width: 55vw; 
  height: 65vh;
  box-shadow: 20px 20px 40px rgba(0,0,0,0.2); 
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
}

/* 右：テキストエリア */
.card-text {
  position: absolute;
  top: 50%;
  right: 6vw; 
  transform: translateY(-50%);
  width: 50vw; 
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; 
  text-align: right;
  will-change: opacity;
  z-index: 2; 
}

/* タイポグラフィ */
.card-title-wrap {
  display: flex;
  flex-direction: column;   /* PCでも縦並び：カテゴリ名の下に「新作」等 */
  align-items: flex-end;
  gap: 12px; 
  margin-bottom: 0;
}
.card-title-wrap .en {
  font-family: 'Marcellus', serif;
  font-size: 40px;          /* ABOUT US / NEWS と同じサイズに縮小 */
  color: #fff;
  text-align: right;
  line-height: 1.1; 
}
.card-title-wrap .ja-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
}
.card-title-wrap .dot {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}
.card-title-wrap .ja {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
}

/* 1枚目（NEW COLLECTION）のみの配置調整 */
.showcase-card:nth-child(1) .card-title-wrap { align-items: flex-end; }
.showcase-card:nth-child(1) .ja-wrap { margin-bottom: 1.5em; }

/* Showcaseカード内のView More配置（カード固有の上書き。共通定義はcommon.css） */
.showcase-card .view-more {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* =========================================================
   [ Section 2 ] Showcase カード内リンク（画像・カテゴリ名）
   タスク5/7：画像とカテゴリ名にもリンクを付与。
   <a> 化に伴うデフォルト装飾（色・下線）を打ち消し、元の見た目を維持する。
========================================================= */
/* 画像リンク：既存 .card-image の配置・見た目はそのまま活かす */
.card-image-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
/* カテゴリ名リンク：.en のタイポはそのまま、a のデフォルト装飾のみ打ち消し */
.card-title-link {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.card-title-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .bg-item { filter: blur(21px); }
  .cross-mark { width: 40px; height: 40px; }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 50vh; 
  }
.card-image {
    width: 50vw; /* 横幅は現状を維持 */
    height: auto; /* 100% から auto に変更し、縦横比に従うようにする */
    aspect-ratio: 192 / 265; /* ★ 追加：ご希望の縦横比を指定 */
    left: 0;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1); 
  }
  /* タスク7：スマホでは画像リンクを無効化（文字と矢印のみリンク有効） */
  .card-image-link {
    pointer-events: none;
  }
  .card-text {
    width: 45vw;
    height: 63%;
    right: 5vw;
  }
  
  .card-title-wrap {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 0; 
  }
  .card-title-wrap .en { font-size: clamp(24px, 6.5vw, 40px); }
  .card-title-wrap .dot { width: 3px; height: 3px; }
  .card-title-wrap .ja { font-size: 13px; }
  
  .showcase-card:nth-child(1) .ja-wrap { margin-bottom: 0; }
  
  .view-more { width: 140px; }
  .view-more-lines { width: 100%; }
  .view-more .line-w { flex-grow: 1; }
  /* Showcaseカード内の矢印のみ、スマホで右寄せ・70%幅に狭める */
  .showcase-card .view-more {
    width: 70%;
    margin-left: auto;
  }
}


/* =========================================================
   [ Section 3 ] About
========================================================= */
.about-section {
  background-color: #fff;
  padding: 200px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.about-inner {
  width: 90%;
  max-width: 1080px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-heading {
  color: #090909;
  font-family: 'Zen Old Mincho', serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.64; 
  letter-spacing: 0.03em; 
  margin: 0 0 90px 0;
}

/* ABOUT US 英字タイトル（news-heading 流用。見出しへの間隔を調整） */
.about-heading-en {
  margin: 0 0 24px 0;
}
.about-desc {
  color: #090909;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75; 
  letter-spacing: 0.03em; 
  margin: 0 0 90px 0;
}
.about-image {
  width: 366px;
  flex-shrink: 0; 
}
.about-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .about-section { padding: 120px 0; }
  .about-inner { flex-direction: column; gap: 0; }
  .about-image { display: none; }
  .about-heading { font-size: 18px; margin-bottom: 40px; }
  .about-desc { font-size: 14px; margin-bottom: 60px; }
}


/* =========================================================
   [ Section 4 ] News
========================================================= */
.news-section {
  background-color: #fff;
  padding-top: 100px;      /* 区切り線とNEWSタイトルの間に余白 */
  padding-bottom: 200px; 
  display: flex;
  justify-content: center;
  width: 100%;
}
.news-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news-heading {
  color: #090909;
  font-family: 'Marcellus', serif;
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 40px 0;
}
.news-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.news-item {
  width: 100%;
  border-bottom: 1px solid #BFBFBF; 
  padding-bottom: 15px;
}
.news-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news-link:hover { opacity: 0.6; }
.news-date {
  color: #858585;
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
}
.news-title {
  color: #090909;
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .news-section { padding: 78px 0 107px 0; }
  .news-inner { width: 100%; padding: 0 20px; }
  .news-heading { font-size: 24px; margin-bottom: 30px; }
  .news-list { gap: 18px; margin-bottom: 41px; }
  .news-item { padding-bottom: 15px; }
}


/* =========================================================
   [ Section 5 ] Action Links
========================================================= */
.action-links-section {
  background-color: #fff;
  padding: 150px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
/* NEWSセクションとの境目に独立した区切りライン（薄グレー・コンテンツ幅） */
.action-links-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 60px;   /* セクション下端から少し上げ、線の下にも余白を作る */
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 1px;
  background-color: #E0E0E0;
}
.action-links-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  gap: 0;   /* 縦ラインで区切るため gap は 0（CTAと同じ仕様） */
}
/* 2カラムの区切り：1つ目のボックス右端に縦ライン（薄グレー） */
.action-links-inner .action-box:first-child {
  border-right: 1px solid #E0E0E0;
}
.action-box {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* 文字＋矢印のリンク（ボックス全体ではなくここだけがリンク） */
.action-box-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  padding: 20px 0;
}
.action-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.action-title {
  color: #090909;
  font-family: 'Marcellus', serif;
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  transition: color 0.4s ease; 
}
.action-desc {
  color: #090909;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  transition: color 0.4s ease; 
}

/* 矢印（横長画像） */
.action-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.action-arrow .arrow {
  width: 133px; 
  height: auto;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* ホバーアニメーション */
/* ホバー反転は廃止（ボックス仕様解除に伴い、背景反転・色反転なし） */

@media (max-width: 768px) {
  .action-links-section { padding: 50px 0; }
  .action-links-inner {
    flex-direction: column;
    align-items: center;
    gap: 0; 
    width: 100%;
    padding: 0 20px;
  }
  /* スマホは縦積みのため、区切りは横ラインに切り替え */
  .action-links-inner .action-box:first-child {
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
  }
  .action-box {
    width: 100%;
    max-width: 400px;
    height: auto;
    gap: 20px;
  }
  .action-box-content {
    gap: 20px;
  }
  .action-title {
    font-size: 24px;
  }
  .action-desc {
    font-size: 14px;
    line-height: 28px;
  }
  /* Action矢印の線幅もCTAと統一（スマホ80px） */
  .action-box .view-more .view-more-lines {
    width: 80px;
  }
	.action-links-section::after {

  bottom: 0px;   /* セクション下端から少し上げ、線の下にも余白を作る */

}
	
	.action-box-link {
  padding: 32px 0;
}
	
}


/* =========================================================
   [ Section 6 ] Instagram
========================================================= */
.instagram-section {
  background-color: #F8F8F8;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.instagram-heading {
  color: #090909;
  font-family: 'Marcellus', serif;
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 40px 0; 
  text-align: center;
}
.instagram-inner {
  width: 90%;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .instagram-section { padding: 60px 0; }
  .instagram-inner {
    width: 100%; 
    padding: 0 20px;
  }
}




/* =========================================================
   [ TOP ] CONTACT CTA セクション
   （Action セクションのレイアウトを踏襲・白背景カード）
========================================================= */
.cta-section {
  width: 100%;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.cta-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* CONTACT 見出し＋リードのまとまり（左揃え・タイトルとリードを近接配置） */
.cta-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* リード文（先方指定によりタイトルと共に左揃え） */
.cta-lead {
  width: 100%;
  text-align: left;
  color: #090909;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

/* CONTACT 英字タイトル（news-heading 流用。左揃え＋余白リセット） */
.cta-heading-en {
  width: 100%;
  text-align: left;
  margin: 0;
}

/* カード2枚（横並び） */
.cta-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;   /* 縦ラインで区切るため gap は 0 */
}
/* 2カラムの区切り：1つ目のボックス右端に縦ライン（薄グレー） */
.cta-list .cta-box:first-child {
  border-right: 1px solid #E0E0E0;
}

/* カード本体 */
.cta-box {
  flex: 1 1 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 文字＋矢印のリンク（ボックス全体ではなくここだけがリンク） */
.cta-box-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}


/* カード内テキストのまとまり */
.cta-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px 20px;
  text-align: center;
}

/* 見出し（ホバーで白に反転） */
.cta-box-title {
  color: #090909;
  font-family: 'Zen Old Mincho', serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  transition: color 0.4s ease;
}


/* サブテキスト（ホバーで白に反転） */
.cta-box-text {
  color: #090909;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  transition: color 0.4s ease;
}


/* CTA内の矢印は見出しから少し離す */
.cta-box-inner .view-more {
  margin-top: 20px;
}

/* CTA矢印：ホバーで白に反転＋右に動く（Action Boxと統一） */
.cta-box .view-more .line-d,
.cta-box .view-more .line-w {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, border-color 0.4s ease;
}



/* =========================================================
   [ スマホ対応 ] CTA セクション
========================================================= */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 40px;
  }
  .cta-lead {
    font-size: 16px;
    line-height: 28px;
    text-align: left;
  }
  /* カードは縦積みに */
  .cta-list {
    flex-direction: column;
    gap: 0;
  }
  /* スマホは縦積みのため、区切りは横ラインに切り替え */
  .cta-list .cta-box:first-child {
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
  }
  .cta-box {
    width: 100%;
  }
  .cta-box-inner {
    gap: 20px;
    padding: 32px 20px;
  }
  .cta-box-title {
    font-size: 24px;
  }
  .cta-box-text {
    font-size: 14px;
    line-height: 28px;
  }
  .cta-box-inner .view-more {
    margin-top: 20px;
  }
  /* CTA矢印の線幅（デザインデータ w-20 = 80px） */
  .cta-box .view-more .view-more-lines {
    width: 80px;
  }
}


/* Action Box 内の共通矢印：ホバーで白に反転＋右に動く（CTAと統一） */
.action-box .view-more .line-d,
.action-box .view-more .line-w {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, border-color 0.4s ease;
}
/* Action Box 矢印のホバー白反転は廃止（ボックス反転なしのため常に黒線のまま） */

.action-box .view-more.is-center {
  margin: 0 auto;
}



/* =========================================================
   [ TOP ] オープニングアニメーション
========================================================= */
.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  opacity: 1;
  visibility: visible;
transition: opacity 1.2s ease-in-out 0.8s, visibility 1.2s ease-in-out 0.8s;
/* 	transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out; */
}
/* 明けた状態（JSで .is-hidden を付与） */
.opening.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* 中央ロゴ */
.opening-logo {
  width: min(280px, 60vw);
  opacity: 0;
  animation: openingLogoIn 1.2s ease forwards;
	transition: opacity 0.8s ease-in-out;
}

/* ★追加：オープニングが明ける時に、ロゴを先に透明にする */
.opening.is-hidden .opening-logo {
  opacity: 0;
}

@keyframes openingLogoIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* オープニング表示中はスクロールを止める */
body.opening-active {
  overflow: hidden;
}
@media (max-width: 768px) {
  .opening-logo { width: min(220px, 66vw); }
}

/* =========================================================
   [ TOP ] 見出しリンク（ABOUT US / NEWS / CONTACT）
   見出しテキスト自体を <a> 化したため、a のデフォルト装飾を打ち消す。
   色は見出しの色を継承、下線なし。ホバーでわずかに不透明度を下げる。
========================================================= */
.news-heading a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news-heading a:hover {
  opacity: 0.6;
}


/* =========================================================
   [ TOP ] 矢印リンクを短く（PC/スマホ共通・絶対値）
   TOP限定（.no-header-pad スコープ）。共通 .view-more には影響させない。
   線の長さ(.view-more-lines)だけを短くする。配置は各所そのまま。
   右揃えにするのは showcard のみ（別途指定）。
========================================================= */
.no-header-pad .view-more-lines {
  width: 90px;   /* 現状の約半分に短縮（PC） */
}

/* showcard の矢印のみ：短くした上で、上のカテゴリ名の右端に右揃え */
.no-header-pad .showcase-card .view-more {
  width: auto;
  right: 0;               /* 絶対配置の右端基準（既存踏襲） */
}
.no-header-pad .showcase-card .view-more-lines {
  width: 90px;
  margin-left: auto;      /* 器内で線を右寄せ → 右端がテキスト右端に揃う */
}


/* =========================================================
   [ TOP ] 矢印リンクを短く（スマホ用の絶対値）
========================================================= */
@media (max-width: 768px) {
  .no-header-pad .view-more-lines {
    width: 80px;   /* スマホは少し短め */
  }
  .no-header-pad .showcase-card .view-more-lines {
    width: 80px;
    margin-left: auto;
  }
}
