/* ============================================================
   ATTRATTI-VA — Renewal CSS
   エレガント＆グラマラス アパレルブランド
   ============================================================ */

/* ─── Custom Properties ─── */
:root {
  /* Colors */
  --c-bg:        #ffffff;
  --c-cream:     #F4EDE5;
  --c-dark:      #141210;
  --c-dark-mid:  #1E1A18;
  --c-body:      #2A2320;
  --c-muted:     #7A6D65;
  --c-gold:      #C4A96E;
  --c-gold-lt:   #D4BA86;
  --c-gold-dk:   #A88854;
  --c-border:    #E2D8D0;
  --c-white:     #FFFFFF;

  /* Typography */
  --f-serif:     'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --f-sans:      'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
  --f-eng:       'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl:  96px;
  --sp-2xl: 128px;

  /* Radius */
  --r-sm: 2px;
  --r-md: 4px;

  /* Shadow */
  --shadow-soft: 0 4px 32px rgba(20,18,16,0.08);
  --shadow-card: 0 2px 16px rgba(20,18,16,0.10);

  /* Transition */
  --t-base:  0.3s ease;
  --t-slow:  0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  --t-enter: 0.8s cubic-bezier(0.16,1,0.3,1);
}


/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--c-body);
  background-color: var(--c-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul { list-style: none; }
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
figure { margin: 0; }
iframe { display: block; }


/* ─── Containers ─── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 600px;
}


/* ─── Section Common ─── */
.section {
  padding: 72px 0;
}
.section-light  { background-color: var(--c-bg); }
.section-cream  { background-color: var(--c-cream); }
.section-dark   {
  background-color: var(--c-dark);
  color: var(--c-white);
}

.section-head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.section-head--left {
  text-align: left;
  margin-bottom: var(--sp-md);
}
.section-label {
  display: block;
  font-family: var(--f-eng);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.section-label-light { color: var(--c-gold-lt); }

.section-title {
  font-family: var(--f-eng);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
}
.section-title-light { color: var(--c-white); }

.title-rule {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: 20px auto 0;
}
.section-head--left .title-rule {
  margin-left: 0;
}
.title-rule-light { background: var(--c-gold-lt); }


/* ─── CTA Row ─── */
.cta-row {
  text-align: center;
  margin-top: var(--sp-lg);
}


/* ─── Buttons ─── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  border: 1px solid var(--c-body);
  font-family: var(--f-eng);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-body);
  transition: background var(--t-base), color var(--t-base);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--c-body);
  color: var(--c-white);
}
.btn-outline:hover svg {
  stroke: var(--c-white);
}

.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
  font-family: var(--f-eng);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-white);
  transition: background var(--t-base), border-color var(--t-base);
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--c-gold-dk);
  border-color: var(--c-gold-dk);
}

.btn-hero {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.7);
  font-family: var(--f-eng);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--c-white);
  margin-top: var(--sp-md);
  margin-left: 450px;
  transition: background var(--t-base), border-color var(--t-base);
}
.btn-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--c-white);
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


/* ─── Reveal Animations ─── */
.reveal-fade,
.reveal-up {
  opacity: 0;
  transition: opacity var(--t-enter), transform var(--t-enter);
  transition-delay: var(--delay, 0s);
}
.reveal-fade { transform: none; }
.reveal-up   { transform: translateY(30px); }

.is-visible.reveal-fade { opacity: 1; transform: none; }
.is-visible.reveal-up   { opacity: 1; transform: translateY(0); }


/* ============================================================
   HEADER — 2段構成
   上段: ロゴ中央 + アイコン右
   下段: ナビゲーション
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-base);
}
.header.header--solid {
  box-shadow: 0 2px 20px rgba(20,18,16,0.08);
}

/* ─ 上段 ─ */
.header-top {
  border-bottom: 1px solid var(--c-border);
}
.header-top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 左スペーサー（ロゴ中央寄せ用） */
.header-spacer {
  /* 幅は .header-actions と揃えるため min-width で調整 */
}

/* ロゴ（画像） */
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-img {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--t-base);
}
.header-logo:hover .logo-img { opacity: 0.8; }

/* 右アイコン群 */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-body);
  transition: color var(--t-base);
  padding: 4px;
}
.header-icon-btn:hover { color: var(--c-gold-dk); }

/* ─ 下段：ナビ ─ */
.header-nav-row {
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-desktop {
  display: flex;
  justify-content: center;
}
.nav-desktop ul {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-desktop ul li {
  position: relative;
}
.nav-link {
  display: block;
  font-family: var(--f-eng);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  padding: 14px 18px;
  position: relative;
  transition: color var(--t-base);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.nav-link:hover { color: var(--c-dark); }
.nav-link:hover::after { transform: scaleX(1); }

/* ONLINE STORE — ゴールドアクセント */
.nav-store {
  color: var(--c-gold-dk);
}
.nav-store:hover { color: var(--c-gold); }
.nav-store::after { background: var(--c-gold-lt); }

/* ─ ハンバーガー（モバイルのみ） ─ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 20px;
  flex-shrink: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-dark);
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ─ モバイルナビ オーバーレイ ─ */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.nav-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile ul {
  text-align: center;
}
.nav-mobile ul li {
  margin-bottom: 4px;
}
.nav-mobile-link {
  font-family: var(--f-eng);
  font-size: clamp(1.5rem, 5vw, 2.6rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--c-dark);
  display: inline-block;
  padding: 8px 0;
  transition: color var(--t-base), letter-spacing var(--t-base);
}
.nav-mobile-link:hover {
  color: var(--c-gold);
  letter-spacing: 0.2em;
}

.nav-mobile-footer {
  margin-top: 40px;
  text-align: center;
}
.nav-mobile-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.nav-mobile-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  transition: color var(--t-base), border-color var(--t-base);
}
.nav-mobile-icon-btn:hover {
  color: var(--c-gold-dk);
  border-color: var(--c-gold);
}
.nav-mobile-address {
  font-size: 0.68rem;
  color: var(--c-muted);
  letter-spacing: 0.05em;
  line-height: 1.8;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  /* ヘッダー2段分の高さを引いてビューポートを埋める */
  height: calc(100svh - 132px);
  min-height: 500px;
  margin-top: 132px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Overlay — gradient from bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(14,11,9,0.25) 0%,
      rgba(14,11,9,0.30) 50%,
      rgba(14,11,9,0.65) 100%
    );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: 0 var(--sp-md);
}

/* Split layout: logo left / text right */
.hero-content--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 60px;
  gap: 48px;
  text-align: left;
}
.hero-logo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.hero-logo-img {
  width: clamp(180px, 22vw, 300px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.hero-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  font-family: var(--f-eng);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  opacity: 0.75;
  margin-bottom: 20px;
  margin-left: 450px;
}
.hero-title {
  font-family: var(--f-eng);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 200;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 20px;
}
.hero-title-dash {
  font-weight: 100;
  margin: 0 6px;
  opacity: 0.6;
}
.hero-title-va { font-style: italic; }

.hero-tagline {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 12px;
  margin-left: 450px;
}
.hero-desc {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 2;
  opacity: 0.8;
  margin-bottom: 4px;
  margin-left: 450px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
}
.hero-scroll-text {
  font-family: var(--f-eng);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  writing-mode: horizontal-tb;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Pagination dots */
.hero-pagination {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background var(--t-base), transform var(--t-base);
  padding: 0;
}
.hero-dot.active {
  background: var(--c-gold-lt);
  transform: scale(1.3);
}


/* ============================================================
   TOPICS
   ============================================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.topics-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* ─── Topics Slider ─── */
.topics-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 0 140px;
  box-sizing: border-box;
}

.topics-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.topics-slide {
  flex-shrink: 0;
  width: calc(100vw - 280px);
  display: flex;
  min-height: 460px;
  margin-right: 20px;
}

.topics-slide-img {
  position: relative;
  width: 50%;
  overflow: hidden;
  margin: 0;
}
.topics-slide-img img,
.topics-slide-img .topic-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topics-slide-body {
  width: 50%;
  padding: 60px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-white);
}

/* 矢印ボタン */
.topics-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.85);
  color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-base), border-color var(--t-base);
  z-index: 2;
}
.topics-slider-btn:hover {
  background: var(--c-white);
  border-color: var(--c-border);
}
.topics-slider-prev { left: 160px; }
.topics-slider-next { right: 160px; }

/* ドット */
.topics-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 70px 0 8px;
}
.topics-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--c-border);
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-base);
  padding: 0;
}
.topics-dot.active {
  background: var(--c-gold-dk, #8B6F47);
  transform: scale(1.3);
}

/* プレースホルダー画像（TESTカード用） */
.topic-thumb-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background: #ede9e4;
}

.topic-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.topic-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.topic-link {
  display: block;
}

.topic-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.topic-card:hover .topic-thumb img {
  transform: scale(1.06);
}

.topic-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--f-eng);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  color: var(--c-white);
}
.tag-collection { background: var(--c-gold); }
.tag-press       { background: #8B7B6A; }
.tag-new         { background: #6B8A7A; }
.tag-info        { background: #7A8090; }
.tag-special     { background: #9A7A85; }

.topic-body {
  padding: 20px 22px 24px;
}
.topic-date {
  display: block;
  font-family: var(--f-eng);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.topic-ttl {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--c-dark);
}
.topic-text {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.topic-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-eng);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--c-gold-dk);
  transition: gap var(--t-base);
}
.topic-card:hover .topic-more { gap: 10px; }


/* ============================================================
   COLLECTION
   ============================================================ */
.collection-filter {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--f-eng);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--c-text);
  padding: 10px 24px;
  border: 1px solid var(--c-border);
  background: transparent;
  transition: color var(--t-base), border-color var(--t-base), background var(--t-base);
  cursor: pointer;
}
.filter-btn:hover {
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.filter-btn.active {
  color: var(--c-dark);
  background: var(--c-gold-lt);
  border-color: var(--c-gold-lt);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.collection-card {
  transition: opacity var(--t-base), transform var(--t-base);
}
.collection-card.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

.collection-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 14px;
}

.collection-img-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
  position: absolute;
  inset: 0;
}
.collection-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.collection-card:hover .collection-img-wrap img {
  transform: scale(1.07);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,11,9,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}
.collection-card:hover .collection-overlay { opacity: 1; }
.collection-overlay-text {
  font-family: var(--f-eng);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--c-white);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 6px;
}

.collection-caption {
  text-align: center;
}
.collection-caption h3 {
  font-family: var(--f-eng);
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--c-white);
  margin-bottom: 4px;
}
.collection-caption h3 span {
  opacity: 0.5;
  font-weight: 100;
}
.collection-caption p {
  font-family: var(--f-eng);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
}

/* NEW ARRIVALS キャプション（テキストのみ・日本語） */
.collection-caption--text {
  text-align: left;
  padding-top: 12px;
}
.collection-caption--text p {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: var(--c-body);
}

/* NEW ARRIVALS 上段（バッグ）— 正方形・全体表示 */
.new-arrivals-grid .collection-img-wrap {
  aspect-ratio: 1 / 1;
  background: #fff;
}
.new-arrivals-grid .collection-img-wrap img {
  object-fit: contain;
  object-position: center;
}

/* NEW ARRIVALS 下段（アパレル着用）— ポートレート・カバー */
.new-arrivals-grid .collection-card--apparel .collection-img-wrap {
  aspect-ratio: 3 / 4;
  background: #f5f4f2;
}
.new-arrivals-grid .collection-card--apparel .collection-img-wrap img {
  object-fit: contain;
  object-position: center;
}

/* PICK UP マーキー */
.pickup-marquee {
  overflow: hidden;
  width: 100vw;
  margin-top: 40px;
  margin-left: calc(-50vw + 50%);
}
.pickup-marquee-track {
  display: flex;
  animation: pickup-scroll 20s linear infinite;
  width: max-content;
}
.pickup-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes pickup-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pickup-marquee-item {
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 3 / 4;
  margin-right: 16px;
  overflow: hidden;
}
.pickup-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 下段キャプション：中央揃え */
.collection-caption--center {
  text-align: center;
  padding-top: 12px;
}
.collection-caption--center p {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: var(--c-body);
}


/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-visual {
  position: relative;
  overflow: hidden;
}
.about-img-main {
  width: 100%;
  height: 100%;
  min-height: 600px;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-sub {
  position: absolute;
  bottom: 40px;
  right: 24px;
  width: 260px;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--c-white);
}
.about-img-sub img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.about-sub-label {
  background: var(--c-dark);
  padding: 8px 14px;
}
.about-sub-label p {
  font-family: var(--f-eng);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
}

.about-content-col {
  display: flex;
  align-items: center;
  padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) calc(var(--sp-xl) + var(--sp-md));
  background: #ffffff;
}

.about-quote {
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-gold-dk);
  margin-bottom: var(--sp-md);
  letter-spacing: 0.05em;
  border: none;
}

.about-text-block p {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--c-body);
  margin-bottom: var(--sp-sm);
}

.about-designer {
  margin-top: var(--sp-md);
}
.designer-rule {
  width: 32px;
  height: 1px;
  background: var(--c-gold);
  margin-bottom: var(--sp-sm);
}
.designer-label {
  font-family: var(--f-eng);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--c-gold-dk);
  margin-bottom: 8px;
}
.designer-name {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 8px;
}
.designer-name-en {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--c-muted);
  margin-left: 8px;
}
.designer-bio {
  font-size: 0.78rem;
  line-height: 2;
  color: var(--c-muted);
}


/* ============================================================
   SERVICE
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: var(--sp-xl);
  background: var(--c-border);
}

.service-card {
  background: var(--c-white);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: background var(--t-base);
}
.service-card:hover { background: var(--c-cream); }

.service-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-gold);
}
.service-name {
  font-family: var(--f-eng);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.service-name-jp {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.service-desc {
  font-size: 0.82rem;
  line-height: 2;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.service-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-eng);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--c-gold-dk);
  transition: gap var(--t-base);
}
.service-link-arrow:hover { gap: 10px; }

/* Service Banner */
.service-banner {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.service-banner-bg {
  position: absolute;
  inset: 0;
}
.service-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,11,9,0.85) 40%, rgba(14,11,9,0.4));
}
.service-banner-body {
  position: relative;
  z-index: 1;
  padding: var(--sp-lg) var(--sp-xl);
  color: var(--c-white);
}
.service-banner-sub {
  font-family: var(--f-eng);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--c-gold-lt);
  margin-bottom: 12px;
}
.service-banner-ttl {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.service-banner-desc {
  font-size: 0.82rem;
  line-height: 2;
  opacity: 0.8;
  margin-bottom: var(--sp-md);
}


/* ============================================================
   ACCESS
   ============================================================ */
.access-instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--ff-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--c-dark);
  text-decoration: none;
  border: 1px solid var(--c-border);
  padding: 10px 22px;
  transition: background 0.3s, border-color 0.3s;
}
.access-instagram-btn:hover {
  background: rgba(0,0,0,0.04);
  border-color: var(--c-dark);
}

.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.access-map-col {
  overflow: hidden;
}
.access-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.access-map iframe { height: 100%; }

.access-info-col {
  display: flex;
  align-items: center;
  background: #ffffff;
}
.access-info-inner {
  padding: var(--sp-xl);
  width: 100%;
  max-width: 520px;
}

.access-list {
  margin-bottom: var(--sp-md);
}
.access-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.access-item:first-child { border-top: 1px solid var(--c-border); }
.access-item dt {
  font-family: var(--f-eng);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--c-gold-dk);
  padding-top: 3px;
}
.access-item dd {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--c-body);
}
.access-item dd small {
  font-size: 0.75rem;
  color: var(--c-muted);
}
.access-mail {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1px;
  transition: color var(--t-base), border-color var(--t-base);
}
.access-mail:hover {
  color: var(--c-gold-dk);
  border-color: var(--c-gold-dk);
}

.access-btns { margin-top: var(--sp-md); }


/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-eng);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  margin-top: 14px;
  margin-bottom: 4px;
  transition: color var(--t-base);
}
.insta-handle:hover { color: var(--c-gold-dk); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.insta-post {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
}
.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.insta-post:hover img { transform: scale(1.08); }

.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(14,11,9,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}
.insta-post:hover .insta-hover { opacity: 1; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-dark-mid);
  color: rgba(255,255,255,0.75);
  padding: var(--sp-xl) 0 var(--sp-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--sp-xl);
  align-items: start;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-md);
}

.footer-logo-img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  /* フッター背景が暗いのでロゴを白く反転 */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand-text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--c-gold-lt);
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  gap: var(--sp-lg);
}
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-ttl {
  font-family: var(--f-eng);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: var(--c-gold-lt);
  opacity: 0.7;
  margin-bottom: 16px;
}
.footer-nav a {
  font-family: var(--f-eng);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-base);
}
.footer-nav a:hover { color: var(--c-white); }

.footer-contact {
  min-width: 200px;
}
.footer-addr {
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-mail {
  display: block;
  font-family: var(--f-eng);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  transition: color var(--t-base);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 14px;
}
.footer-mail:hover { color: var(--c-gold-lt); }

.footer-sns { display: flex; gap: 12px; }
.footer-sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.footer-sns-btn:hover {
  border-color: var(--c-gold-lt);
  color: var(--c-gold-lt);
  background: rgba(196,169,110,0.08);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-copy {
  font-family: var(--f-eng);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}


/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--c-dark);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), background var(--t-base), transform var(--t-base);
  cursor: pointer;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  transform: translateY(-3px);
}


/* ============================================================
   RESPONSIVE — Tablet ( ≤ 1100px )
   ============================================================ */
@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
  }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  /* ヘッダー：ナビ行を隠してハンバーガーを表示 */
  .header-nav-row { display: none; }
  .hamburger      { display: flex; }

  /* IG/メールアイコンは隠す（モバイルオーバーレイに移動） */
  .header-icon-btn:not(:last-child) { display: none; }

  /* モバイルはヘッダー1段（約72px）分だけ下げる */
  .hero {
    margin-top: 72px;
    height: calc(100svh - 72px);
  }

  /* FV：tablet では margin-left をリセット */
  .hero-eyebrow  { margin-left: 0; }
  .hero-tagline  { margin-left: 0; }
  .hero-desc     { margin-left: 0; }
  .btn-hero      { margin-left: 0; }

  /* FV split：tablet では横並びを維持しつつ padding 縮小 */
  .hero-content--split {
    padding: 0 32px;
    gap: 32px;
  }

  .header-top-inner { padding: 10px 20px; }
  .logo-img { height: 62px; }

  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-img-main { min-height: 360px; }
  .about-img-sub  {
    right: var(--sp-sm);
    width: 180px;
    bottom: 20px;
  }
  .about-img-sub img { height: 120px; }
  .about-content-col {
    padding: var(--sp-lg) var(--sp-md);
  }

  .access-layout {
    grid-template-columns: 1fr;
  }
  .access-map-col { height: 300px; }
  .access-map { height: 100%; }
  .access-map iframe { height: 300px; }
  .access-info-inner { padding: var(--sp-lg) var(--sp-md); }
}

@media (max-width: 768px) {
  :root {
    --sp-xl: 64px;
    --sp-lg: 48px;
  }
  .section { padding: 52px 0; }


  .topics-grid {
    grid-template-columns: 1fr;
  }

  .topics-carousel .topic-card {
    flex: 0 0 calc(50% - 14px);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    text-align: left;
  }
  .footer-nav { flex-direction: column; gap: var(--sp-sm); }
  .footer-contact { grid-column: auto; }

  .service-banner-body {
    padding: var(--sp-md);
  }

  .hero-pagination {
    bottom: 20px;
    right: 20px;
  }
  .hero-scroll { bottom: 24px; }
}

@media (max-width: 640px) {
  .section { padding: 40px 0; }

  .topics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .topics-carousel .topic-card {
    flex: 0 0 calc(80% - 14px);
  }
  .topics-carousel {
    margin-right: -20px;
  }

  /* ─── Topics Slider SP ─── */
  .topics-slider {
    padding: 0 40px;
  }
  .topics-slide {
    flex-direction: column;
    min-height: unset;
    width: calc(100vw - 80px);
    margin-right: 12px;
  }
  .topics-slide-img {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .topics-slide-body {
    width: 100%;
    padding: 28px 24px 32px;
  }
  .topics-slider-btn {
    top: calc((100vw - 80px) * 3 / 8); /* 4:3アスペクト画像の中央 */
    width: 38px;
    height: 38px;
  }
  .topics-slider-prev { left: 50px; }
  .topics-slider-next { right: 50px; }
  .topics-dots { padding-top: 20px; }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* NEW ARRIVALS SP：2列表示 */
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .new-arrivals-grid .collection-img-wrap {
    aspect-ratio: 1 / 1;
  }
  .new-arrivals-grid .collection-card--apparel .collection-img-wrap {
    aspect-ratio: 4 / 5;
  }
  .collection-caption--text p,
  .collection-caption--center p {
    font-size: 0.75rem;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  /* FV split → 縦積み・中央揃え */
  .hero-content--split {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    gap: 20px;
  }
  .hero-logo-col {
    justify-content: center;
  }
  .hero-logo-img {
    width: clamp(140px, 55vw, 220px);
  }
  .hero-text-col {
    align-items: center;
    width: 100%;
  }

  /* margin-left リセット（デスクトップ用の450px値を上書き） */
  .hero-eyebrow {
    margin-left: 0;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    margin-bottom: 12px;
  }
  .hero-tagline {
    margin-left: 0;
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .hero-desc {
    display: block;
    margin-left: 0;
    font-size: 0.75rem;
    line-height: 1.9;
    text-align: center;
  }
  .btn-hero {
    margin-left: 0;
    padding: 13px 32px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .access-item {
    grid-template-columns: 70px 1fr;
  }
}

/* ─── Tablet Topics 2-col ─── */
@media (min-width: 641px) and (max-width: 960px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   NISHIJINORI FEATURE (TOP page)
   ============================================================ */

.nishi-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--c-bg);
}

/* 左カラム：大画像 */
.nishi-feature-img {
  overflow: hidden;
  position: relative;
}

.nishi-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s ease;
}

.nishi-feature:hover .nishi-feature-img img {
  transform: scale(1.04);
}

/* 右カラム：テキスト＋サブ画像 */
.nishi-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

.nishi-feature-content {
  padding: 80px 64px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nishi-feature-label {
  font-family: var(--f-eng);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}

.nishi-feature-title {
  font-family: var(--ff-jp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--c-dark);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.nishi-feature-rule {
  width: 32px;
  height: 1px;
  background: var(--c-border);
  margin-bottom: 28px;
}

.nishi-feature-catch {
  font-family: var(--ff-jp);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: var(--c-dark);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.nishi-feature-text {
  font-family: var(--ff-jp);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--c-text);
  line-height: 2;
  margin-bottom: 40px;
}

.nishi-feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-en);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-dark);
  text-decoration: none;
  border: 1px solid var(--c-border);
  padding: 14px 36px;
  transition: background 0.3s, border-color 0.3s;
  align-self: flex-start;
}

.nishi-feature-btn:hover {
  background: rgba(0,0,0,0.05);
  border-color: var(--c-dark);
}

/* 右下サブ画像 */
.nishi-feature-sub-img {
  overflow: hidden;
  max-height: 280px;
}

.nishi-feature-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.nishi-feature-sub-img:hover img {
  transform: scale(1.04);
}

/* ABOUTセクション内「もっと見る」ボタン */
.about-more-btn {
  margin-top: 36px;
}

/* ─── Ordermade Panel ─── */
.ordermade-panel {
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 60px 0 20px;
}

.ordermade-panel-img {
  flex: 0 0 48%;
  max-width: 48%;
}

.ordermade-panel-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ordermade-panel-body {
  flex: 1;
}

.ordermade-panel-title {
  font-family: var(--ff-jp);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--c-dark);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.ordermade-panel-text {
  font-family: var(--ff-jp);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 40px;
}

.ordermade-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid var(--c-body);
  font-family: var(--f-eng);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--c-body);
  text-decoration: none;
  transition: background var(--t-base), color var(--t-base);
  cursor: pointer;
}

.ordermade-panel-link:hover {
  background: var(--c-body);
  color: var(--c-white);
}
.ordermade-panel-link:hover svg {
  stroke: var(--c-white);
}

@media (max-width: 768px) {
  .ordermade-panel {
    flex-direction: column;
    gap: 40px;
  }
  .ordermade-panel-img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

/* ─── Nishijinori テキストのみ ─── */
.nishi-feature--text-only {
  display: block;
  min-height: auto;
  padding: var(--sp-xl) 40px;
  max-width: 800px;
  margin: 0 auto;
}

/* ─── Nishijinori テキスト左・画像右 ─── */
.nishi-feature--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  align-items: center;
  padding: var(--sp-xl) 40px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.nishi-feature--split .nishi-feature-content {
  padding: 0;
}

.nishi-feature-right-img {
  overflow: hidden;
  border-radius: 2px;
}

.nishi-feature-right-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.nishi-feature--split:hover .nishi-feature-right-img img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .nishi-feature--split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: var(--sp-lg) 20px;
  }
}

/* ─── Nishijinori Feature Mobile ─── */
@media (max-width: 960px) {
  .nishi-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nishi-feature-img {
    aspect-ratio: 16/9;
    min-height: 280px;
  }

  .nishi-feature-content {
    padding: 56px 32px;
  }

  .nishi-feature-sub-img {
    max-height: 220px;
  }
}

@media (max-width: 640px) {
  .nishi-feature-content {
    padding: 48px 24px;
  }

  .nishi-feature-btn {
    width: 100%;
    justify-content: center;
  }
}
