/* =============================================================================
   ADAM ET ROPÉ – WISH LIST LP
   style.css  |  Breakpoint: 768px (PC) / 767px (SP)
   Color: #EA3204 (brand red-orange)
============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;700&display=swap');

/* --------------------------------------------------------------------------
   0. Base
---------------------------------------------------------------------------- */
.lp-wl {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  overflow-x: hidden;
}

.lp-wl *,
.lp-wl *::before,
.lp-wl *::after {
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   1. KV
---------------------------------------------------------------------------- */
.wl-kv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #b8b0a6;
  /* isolation/translateZ は marquee コンテナ側で対処するため不要 */
}

/* 後ろの背景（拡大・全画面） */
.wl-kv__rear {
  position: absolute;
  inset: 0;
  background-color: #b8b0a6;
  background-size: 130% auto;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 1.0s ease;
}

/* rear z-index をCSSで固定（JSで変更するとGPUレイヤー再ソートが起きるためCSS側で定義） */
#kvRear  { z-index: 2; }
#kvRear2 { z-index: 1; }

/* 中央メイン写真（ドロップシャドウ付き） */
.wl-kv__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(240px, 34.97vw, 503px);   /* 503/1440 */
  height: clamp(300px, 66.9vh, 667px);   /* 629/940 */
  background-color: #b8b0a6;
  background-size: cover;
  background-position: center top;
  box-shadow:
    8px 16px 48px rgba(0, 0, 0, 0.28),
    24px 40px 100px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 5;
  transition: opacity 1.0s ease;
  will-change: opacity;
}

/* ADAM ET ROPÉ ロゴ（右上） */
.wl-kv__logo {
  position: absolute;
  top: 39px;
  right: 48px;
  z-index: 30;
}

.wl-kv__logo svg {
  height: 15px;
  width: auto;
  display: block;
}

/* What's on my radar（スクランブル・中央写真左上に合わせる） */
.wl-kv__sub-top {
  position: absolute;
  /* 中央写真の上端から19px上 = 50% - half_h - 19px */
  bottom: calc(50% + clamp(150px, 33.45vh, 333.5px) + 19px);
  top: auto;
  left: calc(50% - clamp(120px, 17.49vw, 251.5px));  /* 503/2 */
  z-index: 30;
  color: #EA3204;
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(18px, 3.75vw, 54px);
  letter-spacing: 0;
  white-space: nowrap;
  min-height: 1.2em;
  display: flex;
  align-items: flex-end;
}

/* WISH LIST マーキー */
.wl-kv__marquee {
  position: absolute;
  top: 50%;
  /* translateZ(0)をtranslateYと合成 → コンテナごとGPUレイヤーに昇格し
     z-index:10が確実にコンポジターに反映されるようにする */
  transform: translateY(-50%) translateZ(0);
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
  opacity: 1 !important;
  visibility: visible !important;
}

.wl-kv__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  /* animation: wl-marquee 14s linear infinite; */ /* ★アニメ停止中 — 別アプローチ検討中 */
}

.wl-kv__marquee-item {
  flex-shrink: 0;
}

.wl-kv__marquee-item svg {
  display: block;
  height: clamp(120px, 56vh, 530px);
  width: auto;
}

@keyframes wl-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* right now.（スクランブル・中央写真右下に合わせる） */
.wl-kv__sub-bottom {
  position: absolute;
  /* 中央写真の下端から19px下 = 50% + half_h + 19px */
  top: calc(50% + clamp(150px, 33.45vh, 333.5px) + 19px);
  bottom: auto;
  right: calc(50% - clamp(120px, 17.49vw, 251.5px));  /* 503/2 */
  z-index: 30;
  color: #EA3204;
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(18px, 3.75vw, 54px);
  letter-spacing: 0;
  white-space: nowrap;
  min-height: 1.2em;
  display: flex;
  align-items: flex-start;
}

/* スクランブル中の揺らぎ文字 */
.wl-kv .s-char {
  display: inline-block;
  color: rgba(234, 50, 4, 0.4);
}

/* WISH LIST マーキー – 半角スペーサー */
.wl-kv__marquee-spacer {
  flex-shrink: 0;
  width: clamp(150px, 12vw, 400px);
}

/* --------------------------------------------------------------------------
   KV リードテキスト フェードイン (.wl-kv__lead のみ)
---------------------------------------------------------------------------- */
@keyframes wl-kv-text-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* KV リードコピー（左下） */
.wl-kv__lead {
  position: absolute;
  left: 30px;
  bottom: 25px;
  z-index: 3;  /* center photo (z=5) の後ろ */
  width: min(460px, calc(50% - 30px));
  opacity: 0;
  animation: wl-kv-text-in 0.7s ease forwards 1.4s;
}

.wl-kv__lead p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(9px, 0.76vw, 11px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  color: #EA3204;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   2. リード
---------------------------------------------------------------------------- */
.wl-read {
  background: #fff;
  padding: 120px 20px;
}

.wl-read__inner {
  text-align: center;
}

.wl-read__title {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #EA3204;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.wl-read__sub {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #EA3204;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 40px;
}

.wl-read__text {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #000;
}

/* --------------------------------------------------------------------------
   3. ギャラリー
---------------------------------------------------------------------------- */
.wl-gallery {
  background: #fff;
  padding: 0 30px 30px;
}

.wl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* PC: フッターインセット（ギャラリー最終行 右2列） */
.wl-gallery__footer-inset {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 30px 40px;
}

.wl-gallery__item {
  position: relative;
  aspect-ratio: 272 / 340;
  overflow: hidden;
}

.wl-gallery__btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.wl-gallery__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wl-gallery__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.wl-gallery__item:hover .wl-gallery__btn::after {
  background: rgba(0, 0, 0, 0.12);
}

.wl-gallery__item:hover .wl-gallery__btn img {
  transform: scale(1.04);
}

.wl-gallery__plus {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.wl-gallery__item:hover .wl-gallery__plus {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   4. LP フッター
---------------------------------------------------------------------------- */

/* PC: オリジナルフッターはインセット表示のため非表示 */
.wl-footer {
  display: none;
}

.wl-footer__inner {
  text-align: center;
}

.wl-footer__credits {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 64px;
}

.wl-footer__credits span {
  display: block;
}

.wl-footer__logo {
  display: inline-block;
  margin-bottom: 48px;
}

.wl-footer__logo svg {
  height: 26px;
  width: auto;
  display: block;
}

.wl-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.wl-footer__nav a {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}

.wl-footer__nav a:hover {
  opacity: 0.5;
}

.wl-footer__sep {
  font-size: 13px;
  color: #999;
  padding: 0 14px;
}

.wl-footer__copy {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #000;
}

/* --------------------------------------------------------------------------
   5. モーダル
---------------------------------------------------------------------------- */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.wl-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* 閉じるボタン（×）— 画面右下・赤い正方形 */
.wl-modal__close {
  position: fixed;
  bottom: 30px;
  right: 40px;
  top: auto;
  z-index: 1010;
  width: 72px;
  height: 72px;
  background: #EA3204;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}

.wl-modal__close:hover {
  opacity: 0.8;
}

.wl-modal__close::before,
.wl-modal__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #fff;
}

.wl-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.wl-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内スクロールコンテナ */
.wl-modal__scroll {
  width: 100%;
  padding-top: 88px;  /* 閉じるボタン高さ分 */
  padding-bottom: 100px;
}

/* 各LOOKセクション */
.wl-modal__look {
  width: 100%;
  padding: 60px 0 72px;
}

.wl-modal__look--border {
  border-bottom: 1px solid #e8e4e0;
}

/* LOOK番号（非表示） */
.wl-modal__look-num {
  display: none;
}

/* スライダーラッパー */
.wl-modal__slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 50px 0; /* scale(1.11)の上下はみ出し分を padding で吸収 */
}

/* Slick スライダー */
.wl-modal__slider .slick-track {
  display: flex;
  align-items: center;
}

.wl-modal__slider .slick-slide {
  outline: none;
  padding: 0;
  transform: scale(0.62);
  transform-origin: center center;
  opacity: 0.7;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.45s ease;
}

.wl-modal__slider .slick-center {
  transform: scale(1.11);
  opacity: 1;
}

/* center slide のスケールアップが上下でクリップされないよう visible に */
.wl-modal__slider .slick-list {
  overflow: visible !important;
}

.wl-modal__slider .slick-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 矢印ボタン非表示 */
.wl-modal__slider .slick-arrow {
  display: none !important;
}

/* 商品情報エリア — 幅を中央スライドの表示幅に合わせる（100vw/3 × 1.11） */
.wl-modal__info {
  width: min(533px, calc(100vw * 0.37));
  margin: 44px auto 0;
  padding: 0;
}

.wl-modal__logo-wrap {
  margin-bottom: 16px;
  min-height: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
}

/* LOOK5・10はモーダルロゴ非表示 */
.wl-modal__look[data-look="5"] .wl-modal__logo-wrap,
.wl-modal__look[data-look="10"] .wl-modal__logo-wrap {
  display: none;
}

.wl-modal__logo {
  height: 42px;
  width: auto;
  max-width: 223px;
  display: block;
}

/* ロゴ高さ: 面積ベースで視覚的な重さを統一
   基準: look6 (132×38, 42px表示) → 目標面積 ≈ 6130px²
   各 height = sqrt(面積 / 縦横比) */
.wl-modal__look[data-look="1"] .wl-modal__logo { height: 34px; } /* 161:30 */
.wl-modal__look[data-look="2"] .wl-modal__logo { height: 26px; } /* 136:15 */
.wl-modal__look[data-look="3"] .wl-modal__logo { height: 35px; } /* 94:19  */
.wl-modal__look[data-look="4"] .wl-modal__logo { height: 37px; } /* 132:29 */
.wl-modal__look[data-look="6"] .wl-modal__logo { height: 42px; } /* 132:38 (基準) */
.wl-modal__look[data-look="7"] .wl-modal__logo { height: 39px; } /* 111:28 */
.wl-modal__look[data-look="8"] .wl-modal__logo { height: 39px; } /* 79:20  */
.wl-modal__look[data-look="9"] .wl-modal__logo { height: 64px; } /* 98:41  */

.wl-modal__name-block {
  margin-bottom: 8px;
}

/* ブランド名テキストはFigmaに存在しないので非表示 */
.wl-modal__brand {
  display: none;
}

.wl-modal__item-name {
  display: block;
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  color: #000;
}

/* 価格行：インラインテキスト "¥00,000 in tax [ BUY ]" */
.wl-modal__price-row {
  display: block;
  margin-bottom: 4px;
  line-height: normal;
}

.wl-modal__price-text {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.wl-modal__buy-group {
  display: inline-block;
  white-space: nowrap;
}

.wl-modal__buy-bracket {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #EA3204;
}

.wl-modal__buy-link {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #EA3204;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.wl-modal__buy-link:hover {
  opacity: 0.7;
}

.wl-modal__stock {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1.6;
}

.wl-modal__comment {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.93;
  letter-spacing: 0;
  color: #000;
}

/* "for ADAM ET ROPÉ" — ロゴ右隣 */
.wl-modal__brand-sub {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  line-height: 1;
}

/* スライダー画像タップでBUYリンクへ */
.wl-modal__slide-link {
  display: block;
  cursor: pointer;
}

/* ITEM'S COMMENT ラベル */
.wl-modal__comment-label {
  display: block;
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 16px; /* comment(14px) + 2px */
  font-weight: 700;
  color: #000;
  letter-spacing: 0.04em;
  border-top: 1px solid #000;
  padding-top: 16px;
  margin-top: 20px;
  margin-bottom: 6px;
}

/* コメント下クレジット */
.wl-modal__credits {
  margin-top: 20px;
}

.wl-modal__credit-row {
  display: block;
  margin-bottom: 3px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wl-modal__credit-name,
.wl-modal__credit-price {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #000;
}

.wl-modal__credit-bracket {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #EA3204;
}

.wl-modal__credit-link {
  font-family: 'roboto-condensed', 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #EA3204;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.wl-modal__credit-link:hover {
  opacity: 0.7;
}

/* body scroll lock */
body.wl-modal-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   6. SP（767px 以下）
---------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {

  /* KV — SP: ファーストビュー全面表示（100svh / 最低680px確保） */
  .wl-kv {
    height: 100svh;
    min-height: 680px;
    background: #c8b9ad;
  }

  /* Figma SP: 背景画像を248%に拡大（フレーム393pxに対して画像973px） */
  .wl-kv__rear {
    background-color: #c8b9ad;
    background-size: 248% auto;
    background-position: center 30%;
  }

  /* KV center — Figma SP: 310px × 388px, top: 146px */
  .wl-kv__center {
    width: 79%;
    height: 388px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #c8b9ad;
  }

  .wl-kv__logo {
    top: 20px;
    right: 16px;
  }
  .wl-kv__logo svg { height: 11px; }

  /* WISH LIST マーキー — SP縮小 (Figma: 360px font → KV 680px の約53%) */
  .wl-kv__marquee-item svg {
    height: 200px;
  }

  /* Figma SP: "What's on my radar" top:120px left:39px */
  .wl-kv__sub-top {
    bottom: auto;
    top: calc(50% - 242px);
    left: 10.5%;
    transform: none;
    font-size: 34px;
    text-align: left;
  }

  /* SP: "right now." 右端をKV center画像右端に揃える (center width:79% → right:10.5%) */
  .wl-kv__sub-bottom {
    bottom: auto;
    top: calc(50% + 199px);
    left: auto;
    right: 10.5%;
    transform: none;
    font-size: 34px;
  }

  /* リード — Figma: 10px / line-height 26px (2.6) */
  .wl-read {
    padding: 48px 20px;
  }

  .wl-read__title {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .wl-read__sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .wl-read__text {
    font-size: 10px;
    line-height: 2.1;
  }

  .wl-read__text br { display: inline; }  /* SP: 改行を表示 */

  /* ギャラリー */
  .wl-gallery {
    padding: 0 4px;
  }

  .wl-gallery__grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  /* SP: フッターインセットは非表示、オリジナルフッターを復元 */
  .wl-gallery__footer-inset {
    display: none;
  }

  .wl-footer {
    display: block;
  }

  /* フッター — Figma: logo 16px / nav 12px / copy 8px / 上余白2倍 */
  .wl-footer {
    padding: 64px 20px 40px;
  }

  .wl-footer__credits {
    font-size: 10px;
    margin-bottom: 48px;
  }

  .wl-footer__logo {
    margin-bottom: 24px;
  }

  .wl-footer__logo svg {
    height: 16px;
  }

  .wl-footer__nav {
    margin-bottom: 16px;
  }

  .wl-footer__nav a {
    font-size: 12px;
  }

  .wl-footer__sep {
    font-size: 12px;
    padding: 0 8px;
  }

  .wl-footer__copy {
    font-size: 8px;
  }

  /* モーダル全体 — 幅広スライダーの横はみ出しを隠す */
  .wl-modal {
    overflow-x: hidden;
  }

  /* 閉じるボタン — 画面右下固定、Figma: 37×37px */
  .wl-modal__close {
    bottom: 16px;
    right: 16px;
    top: auto;
    width: 37px;
    height: 37px;
  }
  .wl-modal__close::before,
  .wl-modal__close::after { width: 16px; }

  .wl-modal__scroll {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .wl-modal__look {
    padding: 40px 0 56px;
    overflow: visible;
  }

  .wl-modal__slider .slick-track {
    overflow: visible;
  }

  /* スライダーラップ — Figma: 577px / 393px = 146.8% / scale拡大分の上下余裕 */
  .wl-modal__slider-wrap {
    width: 147%;
    margin: 0 -24%;
    padding: 80px 0;
  }

  /* SPスケール — しっかり重なるよう拡大、z-indexでcenterを前面へ */
  .wl-modal__slider .slick-slide {
    position: relative;
    z-index: 1;
    transform: scale(0.72);
    transform-origin: center center;
    opacity: 0.7;
    padding: 0;
  }

  .wl-modal__slider .slick-center {
    transform: scale(1.45);
    transform-origin: center center;
    opacity: 1;
    z-index: 5;
  }

  /* 情報エリア — Figma center image 262px / 393px = 66.7% */
  .wl-modal__info {
    width: 66.7%;
    margin: 24px auto 0;
    min-width: 0;
    padding: 0;
  }

  /* テキストサイズ — Figma Mobile modal 値 */
  .wl-modal__item-name {
    font-size: 14px;
  }

  /* クレジット行 — SP: 小さめに */
  .wl-modal__credit-name,
  .wl-modal__credit-price,
  .wl-modal__credit-bracket,
  .wl-modal__credit-link {
    font-size: 9.5px;
  }

  .wl-modal__price-text,
  .wl-modal__buy-bracket,
  .wl-modal__buy-link {
    font-size: 14px;
  }

  .wl-modal__comment {
    font-size: 10px;
    line-height: 2;
  }

  /* KVリードテキスト — Figma SP: left:14px top:603px */
  .wl-kv__lead {
    left: 14px;
    top: auto;
    bottom: 30px;
    width: 72%;
    z-index: 20;
  }

  .wl-kv__lead p { font-size: 10px; line-height: 1.3; }
}


/* =============================================================================
   JUN CMS 共通要素 上書き
============================================================================= */

/* ご相談はこちら！ 浮動ボタン (Chameleon) を非表示 */
.Launcherstyled__LauncherButtonWrapper-ch-front__sc-1kx6op4-0,
#ch-plugin-launcher {
  display: none !important;
}

/* JUN CMS 共通フッター — テキスト・リンクカラー修正 */
.pc-menu a,
.sp-menu a {
  color: #333;
  text-decoration: none;
}
.pc-menu a:hover,
.sp-menu a:hover {
  opacity: 0.65;
}

.sns-area__title,
.help-area__title,
.help-area__text,
.help-area__list-item {
  color: #000 !important;
}

/* CMS base.css が付与するヘッダー分マージンを打ち消す */
.wrapper {
  margin-top: 0 !important;
}

/* ご相談はこちら！ボタン位置調整 */
/* PC: 右に10px、下に20px */
@media only screen and (min-width: 768px) {
  #ch-plugin-script.ch-desk-messenger {
    bottom: 141px !important;  /* 161 - 20 */
    right: 62px !important;    /* 72 - 10 */
  }
}
/* SP: ストアメニュー上10px（nav高さ約60px + 10px） */
@media only screen and (max-width: 767px) {
  #ch-plugin-script {
    bottom: 70px !important;
  }
}

/* モーダル表示中はご相談ボタンを非表示 */
body.wl-modal-open #ch-plugin-script {
  display: none !important;
}

/* ご相談はこちら！ボタン — 常に非表示 */
#ch-plugin-script {
  display: none !important;
}
