/* ================================================
   Re:luster Page Styles
   ================================================ */

/* ---------- 1. CONCEPT ---------- */
/* FV後の最初のセクション：動画固定背景の上に白背景で被せる（SALONSページと同じ構造） */
.nc-reluster-concept {
  position: relative;
  z-index: 1;
  background: #faf9f7;
  margin-top: 120px;
  padding: var(--section-padding-pc) 80px;
  text-align: center;
}

.nc-reluster-concept__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b5a48a;
  text-transform: uppercase;
  margin-bottom: 80px;
}

.nc-reluster-concept__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 40px;
}

.nc-reluster-concept__title em {
  font-style: normal;
  color: #b5a48a;
}

.nc-reluster-concept__body {
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 2.5;
  letter-spacing: 0.08em;
  max-width: 640px;
  margin: 0 auto 60px;
}

/* コンセプト 3つのキーワード */
.nc-reluster-concept__keywords {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 120px;
}

.nc-reluster-concept__kw {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nc-reluster-concept__kw-icon {
  width: 56px;
  height: 56px;
  border: 1px solid #b5a48a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-reluster-concept__kw-icon svg {
  width: 40px;
  height: 40px;
  stroke: #b5a48a;
  fill: none;
  stroke-width: 1.2;
}

.nc-reluster-concept__kw-label {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--color-text);
  letter-spacing: 0.1em;
}

/* ---------- 2. PRODUCTS ---------- */
.nc-reluster-products {
  position: relative;
  z-index: 5;
  background-color: #fdfcfb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");
  /* 上下に膨らむ曲線で前後セクションに被せる */
  margin-top: -6vw;
  margin-bottom: -6vw;
  padding: calc(var(--section-padding-pc) + 6vw) 80px;
  border-radius: 50% 50% 50% 50% / 6vw 6vw 6vw 6vw;
}

.nc-reluster-section-head {
  text-align: center;
  margin-bottom: 100px;
}

.nc-reluster-section-head__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #b5a48a;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.nc-reluster-section-head__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.nc-reluster-section-head__sub {
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #b5a48a;
  margin-bottom: 8px;
}

/* ---------- 2. PRODUCTS グリッド ---------- */
.nc-reluster-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px solid #d8d2c8;
  border-left: 1px solid #d8d2c8;
}

/* ---------- カード：画像全体＋テキストオーバーレイ ---------- */
.nc-reluster-product-card {
  position: relative;
  border-right: 1px solid #d8d2c8;
  border-bottom: 1px solid #d8d2c8;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.nc-reluster-product-card--coming {
  opacity: 0.5;
  background: #ffffff;
}

/* 画像：カード全体を埋める */
.nc-reluster-product-card__img-default,
.nc-reluster-product-card__img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.nc-reluster-product-card__img-hover {
  opacity: 0;
}

.nc-reluster-product-card:hover .nc-reluster-product-card__img-default {
  opacity: 0;
}

.nc-reluster-product-card:hover .nc-reluster-product-card__img-hover {
  opacity: 1;
}

/* 上部テキスト：画像の上に重なる */
.nc-reluster-product-card__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 20px;
  text-align: center;
  z-index: 2;
}

.nc-reluster-product-card__name-en {
  font-family: var(--font-en);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

/* 商品名の改行制御：PCはスペース、スマホは改行 */
.nc-sp-br {
  display: none; /* PCでは改行しない */
}
.nc-sp-br-space {
  display: inline; /* PCではスペースを表示 */
}

.nc-reluster-product-card__name-sub {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
  display: block;
}

/* 下部テキスト：画像の上に重なる */
.nc-reluster-product-card__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 48px;
  text-align: center;
  z-index: 2;
}

.nc-reluster-product-card__name-jp {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 12px;
  line-height: 1.7;
}

.nc-reluster-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.nc-reluster-product-card__tag {
  font-family: var(--font-jp);
  font-size: 11px;
  padding: 3px 10px;
  border: 1px solid #ccc5b8;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.6);
}

/* Coming Soon */
.nc-reluster-product-card__img-wrap {
  position: absolute;
  inset: 0;
}

.nc-reluster-product-card__coming-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.nc-reluster-product-card__coming-badge span {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #b5a48a;
  border: 1px solid #b5a48a;
  padding: 8px 20px;
}

/* ホバー時：テキストを白に */
.nc-reluster-product-card:hover .nc-reluster-product-card__name-en,
.nc-reluster-product-card:hover .nc-reluster-product-card__name-sub,
.nc-reluster-product-card:hover .nc-reluster-product-card__name-jp,
.nc-reluster-product-card:hover .nc-reluster-product-card__tag {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
  transition: color 0.5s ease, border-color 0.5s ease;
}

.nc-reluster-product-card:hover .nc-reluster-product-card__tag {
  background: rgba(0,0,0,0.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nc-reluster-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nc-reluster-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- 3. VOICES ---------- */
.nc-reluster-voices {
  position: relative;
  z-index: 1;
  background: #f7f8f9;
  padding-top: calc(var(--section-padding-pc) + 6vw);
  padding-bottom: var(--section-padding-pc);
  padding-left: 80px;
  padding-right: 80px;
}

/* SALONS VOICE 見出し：上下に余白を大きく */
.nc-reluster-voices__head {
  margin-bottom: 100px;
}

/* 実績：PC 上2・下3 の5つレイアウト */
.nc-reluster-voices__metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 48px 32px;
  max-width: 900px;
  margin: 80px auto 120px;
  justify-items: center;
}

/* 上段2つ：3列ずつ使って中央寄せ */
.nc-reluster-voices__metric:nth-child(1) { grid-column: 2 / 4; grid-row: 1; }
.nc-reluster-voices__metric:nth-child(2) { grid-column: 4 / 6; grid-row: 1; }
/* 下段3つ：2列ずつ */
.nc-reluster-voices__metric:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
.nc-reluster-voices__metric:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
.nc-reluster-voices__metric:nth-child(5) { grid-column: 5 / 7; grid-row: 2; }

.nc-reluster-voices__metric {
  text-align: center;
}

.nc-reluster-voices__metric-num {
  font-family: var(--font-en);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--color-text);
  line-height: 1.1;
  display: block;
  white-space: nowrap;
}

.nc-reluster-voices__metric-num span {
  font-size: 0.6em;
  color: #b5a48a;
}

.nc-reluster-voices__metric-label {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 6px;
  letter-spacing: 0.1em;
}

/* 声カード スライダー */
.nc-reluster-voices__slider {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.nc-reluster-voices__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.nc-reluster-voice-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  padding: 32px;
  position: relative;
  border-top: 3px solid #b5a48a;
  display: flex;
  flex-direction: column;
}

.nc-reluster-voice-card__quote {
  font-family: var(--font-en);
  font-size: 48px;
  color: #e8e2d8;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.nc-reluster-voice-card__heading {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.nc-reluster-voice-card__body {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: 24px;
  flex-grow: 1;
}

.nc-reluster-voice-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.nc-reluster-voice-card__author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d4ccc0;
  flex-shrink: 0;
  overflow: hidden;
}

.nc-reluster-voice-card__author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-reluster-voice-card__author-name {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

/* スライダーナビ */
.nc-reluster-voices__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.nc-reluster-voices__nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #b5a48a;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.nc-reluster-voices__nav-btn:hover {
  background: #b5a48a;
}

.nc-reluster-voices__nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: #b5a48a;
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.2s;
}

.nc-reluster-voices__nav-btn:hover svg {
  stroke: #ffffff;
}

/* ---------- 4. SALONS（左タイトル・右80%アコーディオン） ---------- */
.nc-reluster-salons {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: var(--section-padding-pc) 80px;
}

.nc-reluster-salons__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* 左：タイトル */
.nc-reluster-salons__header {
  flex-shrink: 0;
  width: 20%;
}

.nc-reluster-salons__title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.nc-reluster-salons__title-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--color-text-sub);
  letter-spacing: 0.15em;
  display: block;
  margin-top: 12px;
}

/* 右80%：アコーディオン */
.nc-reluster-salons__areas {
  width: 80%;
}

.nc-reluster-salons__area {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
}

.nc-reluster-salons__area:last-child {
  border-bottom: 1px solid var(--color-border);
}

.nc-reluster-salons__area-header {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.nc-reluster-salons__area-jp {
  min-width: 180px;
}

.nc-reluster-salons__area-name {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #b5a48a;
  text-transform: uppercase;
  white-space: nowrap;
}


.nc-reluster-salons__area-jp {
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--color-text);
}

.nc-reluster-salons__area-count {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-text-sub);
  margin-left: auto;
  letter-spacing: 0.1em;
}

.nc-reluster-salons__area-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.nc-reluster-salons__area-toggle::before,
.nc-reluster-salons__area-toggle::after {
  content: '';
  position: absolute;
  background: #b5a48a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nc-reluster-salons__area-toggle::before {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nc-reluster-salons__area-toggle::after {
  width: 1px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nc-reluster-salons__area.is-open .nc-reluster-salons__area-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.nc-reluster-salons__area-list {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 24px;
  background: #ffffff;
}

.nc-reluster-salons__area-list::after {
  content: '';
  display: block;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.nc-reluster-salons__area.is-open .nc-reluster-salons__area-list {
  display: grid;
}

.nc-reluster-salon-item {
  background: #ffffff;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.nc-reluster-salon-item:nth-child(even) {
  border-right: none;
}

.nc-reluster-salon-item__name {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.nc-reluster-salon-item__address {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--color-text-sub);
}

/* ---------- 5. AGENCY / OEM ---------- */
.nc-reluster-agency {
  position: relative;
  z-index: 1;
  background: #1a1814;
  color: #ffffff;
  padding: var(--section-padding-pc) 80px;
}

.nc-reluster-agency .nc-reluster-section-head__en {
  color: #b5a48a;
}

.nc-reluster-agency .nc-reluster-section-head__title {
  color: #ffffff;
}

.nc-reluster-agency .nc-reluster-section-head {
  margin-bottom: 120px;
  padding-top: 40px;
}

/* 3つのポイント */
.nc-reluster-agency__points {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1500px;
  margin: 0 auto 72px;
  border: 1px solid rgba(181,164,138,0.3);
}

.nc-reluster-agency__point {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(181,164,138,0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nc-reluster-agency__point-text--large {
  font-family: var(--font-jp-serif) !important;
  font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
  color: #b5a48a !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.nc-reluster-agency__point:last-child {
  border-right: none;
}

.nc-reluster-agency__point-num {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b5a48a;
  margin-bottom: 16px;
  display: block;
}

.nc-reluster-agency__point-text {
  font-family: var(--font-jp);
  font-size: 14px;
  color: #ffffff;
  line-height: 1.8;
}

/* 縦型動画 */
.nc-reluster-agency__videos {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 72px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.nc-reluster-agency__video-wrap {
  flex: 1;
  aspect-ratio: 9 / 16;
  background: #2a2822;
  border: 1px solid rgba(181,164,138,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.nc-reluster-agency__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-reluster-agency__video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nc-reluster-agency__video-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: rgba(181,164,138,0.5);
  fill: none;
  stroke-width: 1;
}

.nc-reluster-agency__video-placeholder span {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(181,164,138,0.5);
}

/* 申し込みフロー */
.nc-reluster-agency__flow {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
}

.nc-reluster-agency__flow-title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.nc-reluster-agency__flow-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.nc-reluster-agency__flow-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.nc-reluster-agency__flow-step-num {
  font-family: var(--font-en);
  font-size: 11px;
  color: #b5a48a;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 8px;
}

.nc-reluster-agency__flow-step-label {
  font-family: var(--font-jp);
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
}

.nc-reluster-agency__flow-arrow {
  width: 32px;
  flex-shrink: 0;
  text-align: center;
  color: #b5a48a;
  font-size: 18px;
}

.nc-reluster-agency__flow-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1px solid rgba(181,164,138,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-reluster-agency__flow-icon svg {
  width: 22px;
  height: 22px;
}

/* ---------- AGENCY 動画：サムネイル＋再生＋音声ボタン ---------- */
.nc-reluster-agency__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* サムネイル段階：うっすら暗くするオーバーレイ */
.nc-reluster-agency__video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* カーソルを合わせたとき／再生中はオーバーレイを消す */
.nc-reluster-agency__video-wrap:hover::before,
.nc-reluster-agency__video-wrap.is-playing::before {
  opacity: 0;
}

/* 中央：再生ボタン */
.nc-reluster-agency__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(26,24,20,0.45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.nc-reluster-agency__video-play:hover {
  background: rgba(181,164,138,0.85);
  transform: translate(-50%, -50%) scale(1.06);
}

.nc-reluster-agency__video-play svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  stroke: none;
  margin-left: 3px; /* 三角形を視覚的に中央へ */
}

/* 再生中は再生ボタンを隠す */
.nc-reluster-agency__video-wrap.is-playing .nc-reluster-agency__video-play {
  opacity: 0;
  pointer-events: none;
}

/* 右下：音声ON/OFFボタン（再生開始後に表示） */
.nc-reluster-agency__video-sound {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(26,24,20,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 3;
}

.nc-reluster-agency__video-wrap.is-playing .nc-reluster-agency__video-sound {
  opacity: 1;
  pointer-events: auto;
}

.nc-reluster-agency__video-sound:hover {
  background: rgba(181,164,138,0.85);
}

.nc-reluster-agency__video-sound svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nc-reluster-agency__video-sound svg polygon {
  fill: #ffffff;
  stroke: #ffffff;
}

/* ミュート時はミュートアイコン表示・サウンドアイコン非表示 */
.nc-reluster-agency__icon-sound { display: none; }
.nc-reluster-agency__icon-muted { display: block; }

/* 音声ON時はサウンドアイコン表示・ミュートアイコン非表示 */
.nc-reluster-agency__video-wrap.is-unmuted .nc-reluster-agency__icon-sound { display: block; }
.nc-reluster-agency__video-wrap.is-unmuted .nc-reluster-agency__icon-muted { display: none; }


/* ---------- 6. CONTACT FORM ---------- */
.nc-reluster-contact {
  position: relative;
  z-index: 1;
  background: #faf9f7;
  padding: var(--section-padding-pc) 80px;
}

.nc-reluster-contact__form {
  max-width: 1500px;
  margin: 0 auto;
}

.nc-reluster-contact__type-label {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ラジオ選択ボタン */
.nc-reluster-contact__type {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.nc-reluster-contact__type-btn {
  flex: 1;
  min-width: 140px;
}

.nc-reluster-contact__type-btn input[type="radio"] {
  display: none;
}
.nc-reluster-contact__type-btn label {
  display: block;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--color-text-sub);
  border: 1px solid var(--color-border);
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.nc-reluster-contact__type-btn label:hover {
  border-color: #b5a48a;
  color: #b5a48a;
  background: rgba(181,164,138,0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.nc-reluster-contact__type-btn input[type="radio"]:checked + label {
  border-color: #b5a48a;
  color: #b5a48a;
  background: rgba(181,164,138,0.06);
}

/* フォームフィールド */
.nc-reluster-contact__field {
  margin-bottom: 28px;
}

.nc-reluster-contact__label {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.nc-reluster-contact__label span {
  color: #b5a48a;
  margin-left: 4px;
}

.nc-reluster-contact__input,
.nc-reluster-contact__textarea {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.nc-reluster-contact__input:focus,
.nc-reluster-contact__textarea:focus {
  border-color: #b5a48a;
}

.nc-reluster-contact__textarea {
  min-height: 240px;
  resize: vertical;
}


.nc-reluster-contact__submit {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #ffffff;
  background: #333333;
  border: none;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 12px;
}

.nc-reluster-contact__submit:hover {
  background: #b5a48a;
}

.nc-reluster-contact__privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  margin-top: 8px;
}

.nc-reluster-contact__privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #b5a48a;
  cursor: pointer;
  flex-shrink: 0;
}

.nc-reluster-contact__privacy label {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--color-text-sub);
  cursor: pointer;
  letter-spacing: 0.05em;
}

.nc-reluster-contact__privacy label a {
  color: #b5a48a;
  text-decoration: underline;
}

.nc-reluster-contact__privacy label span {
  color: #b5a48a;
  margin-left: 4px;
}

/* フォーム送信メッセージ */
.nc-reluster-contact__success {
  display: none;
  text-align: center;
  padding: 40px;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--color-text);
  line-height: 2;
}

.nc-rl-input-error {
  border-color: #c0392b !important;
}

.nc-rl-error {
  font-family: var(--font-jp);
  font-size: 12px;
  color: #c0392b;
  letter-spacing: 0.05em;
  display: inline;
}


/* ---------- SCROLL REVEAL ---------- */
.nc-rl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nc-rl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nc-reluster-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nc-reluster-concept,
  .nc-reluster-products,
  .nc-reluster-voices,
  .nc-reluster-salons,
  .nc-reluster-agency,
  .nc-reluster-contact {
    overflow-x: hidden;
  }
  /* 基本の左右余白はHOMEに合わせて40px */
  .nc-reluster-concept,
  .nc-reluster-voices,
  .nc-reluster-salons,
  .nc-reluster-agency,
  .nc-reluster-contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  /* PRODUCTSだけは20pxで別管理 */
  .nc-reluster-products {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 768px) {
  .nc-reluster-concept {
    margin-top: 100vh; /* SP: fv.cssに合わせてビューポート分下げる */
    padding: var(--section-padding-sp) 40px;
  }
  .nc-reluster-salons__area-header {
    gap: 8px;
  }

  .nc-reluster-salons__area-jp {
    min-width: unset;
  }

  .nc-reluster-voices,
  .nc-reluster-salons,
  .nc-reluster-agency,
  .nc-reluster-contact {
    padding: var(--section-padding-sp) 40px;
  }

  .nc-reluster-products {
    padding: var(--section-padding-sp) 20px;
  }

  .nc-reluster-concept__keywords {
    gap: 32px;
  }

  .nc-reluster-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  /* SP 2カラム：カードを縦長にしてテキストの重なりを防ぐ */
  .nc-reluster-product-card {
    aspect-ratio: 10 / 16;
  }

  /* SP 2カラム：カード内テキストの余白を詰める */
  .nc-reluster-product-card__header {
    padding: 14px 12px 10px;
  }
  .nc-reluster-product-card__footer {
    padding: 10px 12px 14px;
  }
  .nc-reluster-product-card__name-en {
    font-size: 15px;
  }
  /* SP：商品名は改行する（スペース非表示・改行表示） */
  .nc-sp-br {
    display: inline;
  }
  .nc-sp-br-space {
    display: none;
  }
  /* SP：ふりがなを小さく */
  .nc-reluster-product-card__name-sub {
    font-size: 9px;
  }
  .nc-reluster-product-card__name-jp {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 8px;
    /* 必ず2行に収めて高さを揃える */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 30px; /* 10px × 1.5 × 2行ぶん */
  }

  /* SP：商品画像は全体表示（contain）＋カード背景色で透け防止 */
  .nc-reluster-product-card {
    background: #ffffff;
  }
  .nc-reluster-product-card__img-default,
  .nc-reluster-product-card__img-hover {
    object-fit: contain;
    transform: translateY(8%) scale(1.05);
  }

  /* SP：タップでの画像切り替えを無効化（hover画像を常に隠す） */
  .nc-reluster-product-card__img-hover {
    display: none;
  }
  .nc-reluster-product-card:hover .nc-reluster-product-card__img-default {
    opacity: 1;
  }
  /* SP：ホバー時のテキスト白化も無効化 */
  .nc-reluster-product-card:hover .nc-reluster-product-card__name-en {
    color: var(--color-text);
  }
  .nc-reluster-product-card:hover .nc-reluster-product-card__name-sub,
  .nc-reluster-product-card:hover .nc-reluster-product-card__name-jp {
    color: var(--color-text-sub);
  }

  /* SP：タグは非表示 */
  .nc-reluster-product-card__tags {
    display: none;
  }

  /* SP：お客様の声カード見出しの強制改行を無効化（自然な折り返しのみ） */
  .nc-reluster-voice-card__heading br {
    display: none;
  }

  .nc-reluster-voice-card {
    flex: 0 0 100%;
    box-sizing: border-box;
  }

  /* SP：スライダーのトラックgapを無くしてはみ出し防止 */
  .nc-reluster-voices__track {
    gap: 0;
  }

  /* SP：スライダー枠を画面内に確実に収める */
  .nc-reluster-voices__slider {
    max-width: 100% !important;
    overflow: hidden !important;
    overflow: clip !important;
  }

  /* SP：VOICESセクション自体もはみ出しを断つ */
  .nc-reluster-voices {
    overflow-x: clip;
  }

  /* 実績：SP 上1・中2・下2 の五角形レイアウト */
  .nc-reluster-voices__metrics {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 40px 16px;
    max-width: 360px;
  }

  /* 1段目：中央1つ */
  .nc-reluster-voices__metric:nth-child(1) { grid-column: 2 / 4; grid-row: 1; }
  /* 2段目：2つ */
  .nc-reluster-voices__metric:nth-child(2) { grid-column: 1 / 3; grid-row: 2; }
  .nc-reluster-voices__metric:nth-child(3) { grid-column: 3 / 5; grid-row: 2; }
  /* 3段目：2つ */
  .nc-reluster-voices__metric:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .nc-reluster-voices__metric:nth-child(5) { grid-column: 3 / 5; grid-row: 3; }

  /* SP: タイトル上・リスト下の縦積み */
  .nc-reluster-salons__inner {
    flex-direction: column;
    gap: 32px;
  }

  .nc-reluster-salons__header,
  .nc-reluster-salons__areas {
    width: 100%;
  }

  .nc-reluster-salons__area-list {
    grid-template-columns: 1fr;
  }

  .nc-reluster-agency__points {
    flex-direction: column;
    border: none;
    gap: 0;
  }

  .nc-reluster-agency__point {
    border-right: none;
    border-bottom: 1px solid rgba(181,164,138,0.3);
    padding: 28px 20px;
  }

  .nc-reluster-agency__point:last-child {
    border-bottom: none;
  }

  .nc-reluster-agency__videos {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nc-reluster-agency__video-wrap {
    flex: 0 0 70%;
    max-width: 260px;
    width: auto;
    scroll-snap-align: center;
  }

  /* スマホでは常に明るい状態（オーバーレイ非表示） */
  .nc-reluster-agency__video-wrap::before {
    display: none;
  }

  .nc-reluster-agency__flow-steps {
    flex-direction: column;
    gap: 8px;
  }

  .nc-reluster-agency__flow-arrow {
    transform: rotate(90deg);
  }

  .nc-reluster-contact__type {
    flex-direction: column;
    gap: 8px;
  }

  .nc-reluster-voices__nav-btn {
    display: flex;
  }
}

/* ---------- FOOTER（全ページ共通） ---------- */
#commonFooter {
  position: relative;
  z-index: 1;
  background: #ffffff !important;
}

/* ---------- CTA section wrapper ---------- */
.nc-reluster-page-cta {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* ---------- このページ全体の横スクロール防止 ---------- */
html:has(.page-template-page-reluster),
.page-template-page-reluster {
  overflow-x: clip;
  max-width: 100%;
}

/* ================================================
   コンセプト アイコン アニメーション
   ================================================ */

/* アイコン円 */
.nc-reluster-concept__kw-icon {
  width: 80px !important;
  height: 80px !important;
  border: 1px solid #b5a48a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: #faf9f7;
}



/* --- 1. 雫＋波紋 --- */
.nc-icon-water__svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nc-water-drop {
  opacity: 1;
  animation: nc-drop-float 3s ease-in-out infinite;
  transform-origin: 24px 30px;
}

@keyframes nc-drop-float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.nc-water-ripple {
  transform-origin: 24px 47px;
  opacity: 0;
}

.nc-water-ripple--1 { animation: nc-ripple 2.6s ease-out 0.62s infinite; }
.nc-water-ripple--2 { animation: nc-ripple 2.6s ease-out 0.88s infinite; }
.nc-water-ripple--3 { animation: nc-ripple 2.6s ease-out 1.14s infinite; }

@keyframes nc-ripple {
  0%   { transform: scale(0.2); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --- 2. 毛根＋キラキラ --- */
.nc-icon-hair__svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nc-hair-sparkle {
  opacity: 1;
}

.nc-hair-sparkle--1 { animation: nc-sparkle-pulse 4s ease-in-out 0s    infinite; }
.nc-hair-sparkle--2 { animation: nc-sparkle-pulse 4s ease-in-out 1.3s  infinite; }
.nc-hair-sparkle--3 { animation: nc-sparkle-pulse 4s ease-in-out 2.6s  infinite; }

@keyframes nc-sparkle-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  60%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* --- 3. 時計の針 --- */
.nc-icon-clock__svg {
  width: 100%;
  height: 100%;
}

.nc-clock-minute {
  animation: nc-clock-spin 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-origin: 24px 24px;
}

@keyframes nc-clock-spin {
  0%   { transform: rotate(0deg); }
  75%  { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

/* ---------- PRODUCTS 英字タイトル ---------- */
.nc-reluster-section-head__title--en {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: 0.15em;
  color: var(--color-text);
  font-weight: 400;
}