/* ============================================
   CLARKS PACE キャンペーン LP
   縦スクロール ダイナミックアニメーション
   ============================================ */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --accent: #F7E563;
  --accent-alt: #535392;
  --gray: #888888;
  --dark: #141414;
  --purple: #535392;
  
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Bebas Neue', sans-serif;
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  font-weight: 500;
  background: var(--black);
  overflow-x: hidden;
}

/* LP専用ラッパー（本番環境で他の要素への影響を防ぐ） */
.pace-lp-wrapper {
  color: var(--white);
  line-height: 1.8;
}

/* ============================================
   UTILITY CLASSES（PC専用）
   ============================================ */
/* PC専用要素を表示 */
.pc { display: block; }
.pc-inline { display: inline; }
.pc-flex { display: flex; }
.pc-br::before { content: '\A'; white-space: pre; }

/* SP専用要素は非表示 */
.sp { display: none !important; }
.sp-inline { display: none !important; }
.sp-flex { display: none !important; }
.sp-br::before { content: none; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  display: block;
  width: clamp(200px, 40vw, 350px);
  height: auto;
  margin-bottom: 40px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  border-radius: 2px;
  animation: loaderFill 2s ease-out forwards;
}

@keyframes loaderFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: calc(100vh - 101px) !important;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-mask {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--black);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-lead {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  display: block;
  max-width: 500px;
  width: 25vw;
  height: auto;
}

.hero-sub {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-top: 40px;
  font-weight: 700;
  text-shadow: 0 0 40px rgba(247, 229, 99, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  padding: 0;
  font-size: clamp(1.5rem, 5vw, 4rem);
  letter-spacing: 0.15em;
  font-weight: 900;
  background: linear-gradient(
    90deg, 
    var(--accent) 0%, 
    var(--white) 25%, 
    var(--accent) 50%, 
    var(--white) 75%, 
    var(--accent) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  line-height: 1.25;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  display: block;
  width: 3px;
  height: 2.8em;
  background: var(--accent);
  -webkit-text-fill-color: initial;
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent);
  }
  100% {
    box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-hint span {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollMove 1.8s ease-in-out infinite;
}

@keyframes scrollMove {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   WALKING COURSE SECTION
   ============================================ */
.walking-course {
  position: relative;
  padding: 120px 40px;
  background: var(--black);
}

.walking-course-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.walking-course-header {
  margin-bottom: 60px;
}

.walking-course-label {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--accent);
  display: block;
  margin-bottom: 15px;
}

.walking-course-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
}

.walking-course-text {
  margin-bottom: 60px;
}

.walking-course-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.walking-course-text strong {
  color: var(--accent);
  font-weight: 700;
}

.walking-course-map {
  max-width: 700px;
  margin: 0 auto;
}

.walking-course-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.walking-course-map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  background: var(--dark);
  overflow: hidden;
}

.walking-course-map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.walking-course-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px 40px;
  background: var(--accent-alt);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.walking-course-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(83, 83, 146, 0.4);
}

.walking-course-link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
}

.walking-course-link-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-alt);
}

.walking-course-link:hover .walking-course-link-arrow {
  transform: translateX(5px);
}

/* ============================================
   CAMPAIGN PIN SECTION
   ============================================ */
.campaign-pin {
  position: relative;
  height: 200vh;
}

.campaign-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  overflow: hidden;
}

.campaign-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-size: cover;
  background-position: center bottom;
  transform: scale(1.2);
}

.campaign-bg-2 {
  top: 50%;
  height: 50%;
}

.campaign-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.campaign-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.campaign-inner {
  text-align: center;
  max-width: 900px;
}

.campaign-label {
  font-family: var(--font-en);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.5em;
  color: var(--accent);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.campaign-title {
  margin-bottom: 50px;
}

.campaign-title .line {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(50px);
}

.campaign-title .accent {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--accent);
  text-shadow: 0 0 60px rgba(247, 229, 99, 0.5);
}

.campaign-text {
  margin-bottom: 40px;
}

.campaign-text p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 2.2;
  opacity: 0;
  transform: translateY(20px);
}

.campaign-text strong {
  color: var(--accent);
  font-weight: 700;
}

.campaign-text .highlight {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--accent-alt);
  font-weight: 700;
  margin-top: 10px;
}

.campaign-notice {
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
}

/* ============================================
   PATTERNS
   ============================================ */
.patterns {
  position: relative;
  padding: 120px 40px;
  min-height: 100vh;
  overflow: hidden;
}

.patterns-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.patterns-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black), transparent 20%, transparent 80%, var(--black));
}

.patterns-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.patterns-header {
  text-align: center;
  margin-bottom: 80px;
}

.patterns-label {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  opacity: 0;
}

.patterns-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(30px);
}

.patterns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pattern-card {
  background: rgba(20, 20, 20, 0.9);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px) rotateX(10deg);
  transform-origin: top center;
}

.pattern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.pattern-card:hover::before {
  transform: scaleX(1);
}

.pattern-num {
  font-family: var(--font-en);
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
}

.pattern-type {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
}

.pattern-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.pattern-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
}

/* ============================================
   NOVELTY SECTION
   ============================================ */
.novelty-section {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
}

/* グラデーション背景（2レイヤーでフェード切り替え） */
.novelty-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

/* 指定店舗: イエロー系（上:濃い黄色、下:黒） */
.gradient-store {
  background: linear-gradient(180deg, 
    #c4a820 0%,
    #d9bc30 10%,
    #F7E563 25%,
    #F7E563 75%,
    #8a7a30 90%,
    var(--black) 100%
  );
}

/* 一部ホールセール: 紫系（上:黄色から、下:黒） */
.gradient-wholesale {
  background: linear-gradient(180deg, 
    #8a7a30 0%,
    #5a5a7a 15%,
    #535392 30%,
    #535392 70%,
    #2a2a50 85%,
    var(--black) 100%
  );
}

/* GIRL HOUYHNHNM: 白背景 */
.gradient-houyhnhnm {
  background: linear-gradient(180deg, 
    var(--black) 0%,
    #2a2a50 10%,
    #535392 20%,
    var(--white) 40%,
    var(--white) 100%
  );
}

/* アクティブ状態 */
.novelty-section[data-active-group="store"] .gradient-store {
  opacity: 1;
}

.novelty-section[data-active-group="wholesale"] .gradient-wholesale {
  opacity: 1;
}

.novelty-section[data-active-group="houyhnhnm"] .gradient-houyhnhnm {
  opacity: 1;
}

.novelty-bg-wrapper {
  display: none; /* 背景画像なし */
}

.novelty-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%);
}

/* 左右のグラデーションで境目をぼかす */
.novelty-bg-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--black));
  z-index: 1;
}

.novelty-bg-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left, transparent, var(--black));
  z-index: 1;
}

.novelty-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.novelty-header {
  text-align: center;
  margin-bottom: 100px;
}

.novelty-label {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  color: var(--accent);
  display: block;
  margin-bottom: 15px;
  opacity: 0;
}

.novelty-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(30px);
}

/* グループ */
.novelty-group {
  margin-bottom: 120px;
  padding: 60px 0;
}

.novelty-group:last-child {
  margin-bottom: 0;
}

.novelty-group-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}

.novelty-group-label {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.5em;
  display: block;
  margin-bottom: 12px;
  transition: color 0.5s ease;
}

/* 指定店舗（イエロー背景 → 黒文字） */
[data-group="store"] {
  color: var(--black);
}

[data-group="store"] .novelty-group-label {
  color: var(--accent-alt);
}

[data-group="store"] .novelty-item-name {
  color: var(--black);
}

/* ホールセール（紫背景 → 白文字） */
[data-group="wholesale"] {
  color: var(--white);
}

[data-group="wholesale"] .novelty-group-label {
  color: var(--accent);
}

[data-group="wholesale"] .novelty-item-name {
  color: var(--white);
}

.novelty-group-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* ノベルティグループ情報 */
.novelty-group-info {
  margin-top: 30px;
  padding: 25px 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.novelty-period {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  font-family: var(--font-en);
  color: var(--white);
}

.novelty-period .day,
.store-period .day {
  font-size: 0.65em;
  font-weight: 500;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  position: relative;
  top: -0.1em;
}

.period-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  background: var(--accent);
  color: var(--black);
  border-radius: 3px;
}

[data-group="wholesale"] .period-label {
  background: var(--white);
}

.novelty-stores {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--white);
}

.novelty-notice {
  font-size: 0.85rem;
  margin-top: 15px;
  opacity: 0.7;
  color: var(--white);
}

/* 百貨店リスト */
.novelty-store-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.novelty-store-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  gap: 10px;
}

.novelty-store-list li:last-child {
  border-bottom: none;
}

.novelty-comments {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--white);
  margin-top: 10px;
}

.store-name {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.store-gender {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 5px 7px 2px;
  background: var(--accent);
  color: var(--black);
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.store-period {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 1.8vw, 1.3rem);
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* カードグリッド */
.novelty-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.novelty-card {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 50px 30px;
  text-align: center;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}

.novelty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

.novelty-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-20deg) translateX(-150%);
  animation: cardShimmer 5s infinite;
  pointer-events: none;
}

@keyframes cardShimmer {
  0% {
    transform: skewX(-20deg) translateX(-150%);
  }
  30% {
    transform: skewX(-20deg) translateX(350%);
  }
  100% {
    transform: skewX(-20deg) translateX(350%);
  }
}

.novelty-card-content {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
}

.novelty-card-line {
  width: 280px;
  height: 3px;
  background: var(--white);
  margin: 0 auto 20px;
}

.novelty-card-content .novelty-card-line:last-child {
  margin: 20px auto 0;
}

.novelty-card-icon {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 2;
}

.novelty-card-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.2;
}

.novelty-card-sub {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--white);
}

.novelty-card-product {
  position: relative;
  z-index: 1;
}

.novelty-card-product img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.novelty-card:hover .novelty-card-product img {
  transform: scale(1.08);
}


.novelty-card-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* ノベルティセクション下部ボタン */
.novelty-cta {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  padding-bottom: 40px;
}

.novelty-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--accent-alt);
  color: var(--white);
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.novelty-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(83, 83, 146, 0.4);
}

.novelty-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
}

.novelty-btn-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-alt);
}

.novelty-btn:hover .novelty-btn-arrow {
  transform: translateX(5px);
}

/* ============================================
   GIRL HOUYHNHNM セクション
   ============================================ */
[data-group="houyhnhnm"] {
  color: var(--black);
  background: transparent;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}

[data-group="houyhnhnm"] .novelty-group-label {
  color: #df3628;
}

[data-group="houyhnhnm"] .novelty-group-header {
  margin-bottom: 40px;
}

.houyhnhnm-title {
  margin-top: 20px;
}

.houyhnhnm-logo {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.houyhnhnm-content {
  text-align: center;
}

.houyhnhnm-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: var(--black);
}

.houyhnhnm-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #df3628;
  color: var(--white);
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.houyhnhnm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(223, 54, 40, 0.4);
}

.houyhnhnm-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
}

.houyhnhnm-btn-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #df3628;
}

.houyhnhnm-btn:hover .houyhnhnm-btn-arrow {
  transform: translateX(5px);
}

/* ============================================
   VOICES
   ============================================ */
.voices {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
  background: var(--dark);
}

.voices-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.voices-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 80%, var(--black) 100%);
}

.voices-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.voices-header {
  text-align: center;
  margin-bottom: 80px;
}

.voices-label {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  opacity: 0;
}

.voices-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(30px);
}

.voices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.voice-card {
  background: var(--dark);
  padding: 50px 35px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
}

.voice-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out);
}

.voice-card:hover::after {
  width: 100%;
}

.voice-mark {
  font-family: var(--font-en);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 25px;
}

.voice-text {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 30px;
  padding-top: 30px;
}

.voice-author {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--gray);
}

.voice-age {
  font-weight: 700;
  color: var(--white);
}

/* VOICEセクション下部ボタン */
.voices-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.voices-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--accent-alt);
  color: var(--white);
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.voices-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(83, 83, 146, 0.4);
}

.voices-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
}

.voices-btn-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-alt);
}

.voices-btn:hover .voices-btn-arrow {
  transform: translateX(5px);
}

/* ============================================
   PRODUCT SECTION (リニューアル)
   ============================================ */
.product-section {
  background: var(--black);
}

/* --- イントロ --- */
.product-intro {
  position: relative;
  min-height: 100vh;
  padding: 180px 40px 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-bg {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.product-intro .product-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--black) 100%);
}

.product-intro-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.product-intro-header {
  margin-bottom: 80px;
}

.product-label {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  opacity: 0;
}

/* PACEロゴ画像 */
.product-logo {
  display: block;
  max-width: 400px;
  width: 70%;
  height: auto;
  margin: 0 auto 25px;
  opacity: 0;
  transform: translateY(40px);
}

.product-main-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.15em;
  color: var(--white);
  opacity: 0;
}

.product-intro-text {
  text-align: left;
}

.product-intro-text p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 2.2;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
}

.product-intro-text .intro-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
}

.product-intro-text strong {
  color: var(--accent);
}

/* --- 研究・開発背景 --- */
.product-research {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.research-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.research-visual {
  text-align: center;
}

.research-img {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
}

.research-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
}

.research-text p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 2.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.research-text strong {
  color: var(--accent);
}

/* --- テクノロジー --- */
.product-tech {
  padding: 120px 40px;
  background: var(--black);
}

.tech-header {
  text-align: center;
  margin-bottom: 80px;
}

.tech-label {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--accent-alt);
  display: block;
  margin-bottom: 15px;
  opacity: 0;
}

.tech-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(30px);
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-card {
  background: #1c1c1c;
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(247, 229, 99, 0.1);
}

.tech-card-num {
  display: none;
}

/* テクノロジーカード画像 */
.tech-card-img {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.tech-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tech-card-name {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.tech-card-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray);
}

.tech-card-desc strong {
  color: var(--white);
}

/* --- PACE RISE セクション（グラデーション背景） --- */
.product-rise-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 200px;
}

/* グラデーション背景（紫→イエロー） */
.rise-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    var(--black) 0%,
    #3a3a6a 8%,
    #535392 20%,
    #535392 35%,
    #6a6a8a 45%,
    #8a8a60 55%,
    #a89830 62%,
    #c4b040 70%,
    #c4b040 75%,
    #8a7a30 82%,
    #3a3a3a 90%,
    var(--black) 100%
  );
  z-index: 0;
}

/* ヒーロー部分 */
.rise-hero {
  position: relative;
  z-index: 1;
  padding: 200px 40px 0;
  text-align: center;
}

.rise-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.rise-logo {
  display: block;
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(30px);
}

.rise-product-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 50px;
  width: 140vw;
  max-width: 1200px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.rise-product-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
}

.rise-info-block {
  text-align: center;
}

.rise-product-title {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
}

.rise-product-sub {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  opacity: 0;
}

/* 商品情報（サイズ・価格） */
.rise-specs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 35px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  opacity: 0;
}

.rise-spec-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.rise-spec-label {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.rise-spec-value {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.rise-spec-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.rise-price {
  font-family: var(--font-en);
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.rise-tax {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.rise-description {
  max-width: 600px;
  margin: 0 auto;
}

.rise-description p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(15px);
}

.rise-description strong {
  color: var(--accent);
}

/* NEW バッジ */
.rise-new {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding: 10px 30px;
  margin-bottom: 25px;
  opacity: 0;
  transform: scale(0.8);
}

.product-rise-section{
  padding-bottom: 100px;
}

/* --- 締めメッセージ --- */
.product-closing {
  padding: 140px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 30%, var(--dark) 70%, var(--black) 100%);
}

.closing-content {
  max-width: 900px;
  margin: 0 auto;
}

/* 締めセクション画像 */
.closing-image {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
}

.closing-image img {
  max-width: 100%;
  height: auto;
}

/* ロゴ2つ + 縦線 */
.closing-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.closing-logo {
  width: 200px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
}

.closing-divider {
  width: 1px;
  height: 50px;
  background: var(--white);
  opacity: 0;
}

.closing-message {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  padding: 22px 55px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.product-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-alt);
  transition: left 0.5s var(--ease-out);
}

.product-cta:hover::before {
  left: 0;
}

.product-cta:hover {
  color: var(--white);
}

.product-cta span,
.product-cta svg {
  position: relative;
  z-index: 1;
}

.product-cta svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s var(--ease-out);
}

.product-cta:hover svg {
  transform: translateX(8px);
}

/* ============================================
   FOOTER
   ============================================ */
/* .footer {
  padding: 80px 40px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 2.5rem;
  letter-spacing: 0.4em;
  margin-bottom: 8px;
}

.footer-campaign {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
} */

/* ============================================
   PC専用 - メディアクエリなし
   ============================================ */
