/* =====================================
   BIG MOON GLOBAL
   Chrono24-inspired listing
===================================== */

/* =========================
   CSS Variables (Status)
========================= */

:root {
  --status-instock-color: #111111;
  --status-reserved-color: #b00000;
  /* Reserved = red */
  --status-sold-color: #777777;
  /* Sold = gray */
}

/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #111;
}

/* =========================
   Header
========================= */

.site-header {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 18px 24px;
}

.site-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px;
}

.site-subtitle {
  font-size: 14px;
  color: #555;
}

/* =========================
   Filter Bar
========================= */

.filter-bar {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 14px 16px;
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 10px;
}

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

.filter-label {
  font-weight: 600;
  margin-right: 8px;
  font-size: 13px;
}

.filter-link {
  padding: 4px 12px;
  border: 1px solid #d5d5d5;
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  background: #fff;
  font-size: 13px;
  transition: background .15s ease, border-color .15s ease;
}

.filter-link:hover {
  border-color: #111;
}

.filter-link.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ===============================
   Pagination (Watches list)
=============================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0 24px;
}

.page-link {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  border: 1px solid #e5e5e5;
  text-align: center;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

.page-link:hover {
  background: #f5f5f5;
}

.page-link.is-current {
  background: #111;
  color: #fff;
  border-color: #111;
  pointer-events: none;
}

.page-link.prev,
.page-link.next {
  font-weight: 600;
}

/* =========================
   Layout
========================= */

.product-list-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================
   Card
========================= */

.watch-image {
  border: 1px solid #e5e5e5;
  background: #fafafa;
  overflow: hidden;
}

.watch-image img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

/* hover時だけ少し拡大 */
.watch-card:hover .watch-image img {
  transform: scale(1.06);
}

.watch-meta {
  padding: 12px 2px 0;
  /* 少し余白を上品に */
}

.watch-brand {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.watch-model {
  font-size: 14px;
  margin-bottom: 4px;
}

.watch-ref {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

/* =========================
   Price / Status (Unified)
========================= */

.watch-price .currency {
  font-size: 12px;
  font-weight: 400;
  margin-left: 2px;
  color: #555;
}

/* Status text */
.watch-price .status {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Reserved / Sold */
.watch-price .status.reserved {
  color: var(--status-reserved-color);
}

.watch-price .status.sold {
  color: var(--status-sold-color);
}

/* =========================
   Footer
========================= */

.site-footer {
  max-width: 1400px;
  margin: 64px auto 0;
  font-size: 13px;
  color: #666;
}

/* =========================
   Responsive
========================= */

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

/* ======================================
   BRAND INDEX
====================================== */

.brand-index {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.brand-index h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* ======================================
   Featured Brands (LP cards)
====================================== */

.brand-lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* CARD BASE */
.brand-lp-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  min-height: 280px;
  padding: 28px 24px;

  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;

  text-decoration: none;
  color: #111;

  transition: .2s;
}

.brand-lp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

/* ======================================
   Featured Logo (COMMON)
====================================== */

.brand-feature-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

/* ======================================
   Brand Text Area
====================================== */

.brand-lp-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  /* ← 追加（超重要） */
}

.brand-lp-title {
  font-family: "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-lp-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-top: auto;
  /* ←追加 */
}

/* ======================================
   ROLEX
====================================== */

.brand-feature-logo.rolex-logo {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 4px;
  color: #0a5c2f;
  text-transform: uppercase;
  position: relative;
}

.brand-feature-logo.rolex-logo::before {
  content: "♛";
  display: block;
  font-size: 22px;
  color: #c6a45d;
  margin-bottom: 6px;
}

/* ======================================
   OMEGA
====================================== */

.brand-feature-logo.omega-logo {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ======================================
   PATEK PHILIPPE
====================================== */

.brand-feature-logo.patek-logo {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ======================================
   SEIKO
====================================== */

.brand-feature-logo.seiko-logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ======================================
   VACHERON CONSTANTIN
====================================== */

.brand-feature-logo.vacheron-logo {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 2.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ======================================
   ALL BRANDS GRID
====================================== */

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.brand-card {
  text-decoration: none;
  color: inherit;
}

.brand-card-inner {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 18px;
  text-align: center;
  transition: .25s;
}

.brand-card-inner:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.brand-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ======================================
   Featured Brand Background Themes
====================================== */

/* 共通（少し高級感UP） */
.brand-lp-card {
  position: relative;
  overflow: hidden;
}

/* ROLEX */
.brand-lp-card.brand-rolex {
  background: linear-gradient(135deg,
      #0b2f1f 0%,
      #144d33 100%);
  color: #fff;
}

.brand-lp-card.brand-rolex .brand-lp-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* OMEGA */
.brand-lp-card.brand-omega {
  background: linear-gradient(135deg,
      #1a1a1a 0%,
      #2b2b2b 100%);
  color: #fff;
}

.brand-lp-card.brand-omega .brand-lp-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* PATEK PHILIPPE */
.brand-lp-card.brand-patek-philippe {
  background: linear-gradient(135deg,
      #0f0f10 0%,
      #1d1d1f 100%);
  color: #fff;
}

.brand-lp-card.brand-patek-philippe .brand-lp-desc {
  color: rgba(255, 255, 255, 0.82);
}

/* SEIKO */
.brand-lp-card.brand-seiko {
  background: linear-gradient(135deg,
      #f6f6f6 0%,
      #ffffff 100%);
}

/* VACHERON */
.brand-lp-card.brand-vacheron-constantin {
  background: linear-gradient(135deg,
      #faf8f4 0%,
      #ffffff 100%);
}

/* ======================================
   Brand Model Section
====================================== */

.brand-models {
  margin: 60px 0;
}

.brand-models h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.brand-model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.brand-model-card {
  display: block;
  padding: 14px;
  border: 1px solid #e5e5e5;
  text-align: center;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: all .25s ease;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.brand-model-card:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ======================================
   Status
====================================== */

.watch-status {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.status {
  font-weight: 500;
}

.status.available {
  color: #1e3a2f;
  /* 深緑（控えめ） */
}

.status.reserved {
  color: #b08d57;
  /* 落ち着いたゴールド */
}

.status.sold {
  color: #999;
}

/* ======================================
   Trust Elements (Aligned Version)
====================================== */

.watch-trust {
  margin-top: 14px;
  display: grid;
  row-gap: 6px;

  font-size: 11px;
  color: #666;
  letter-spacing: 0.3px;
  line-height: 1.7;
}

.watch-trust span {
  display: flex;
  align-items: center;
  /* ← ここが重要 */
  gap: 8px;
}

/* Perfect center dot */
.watch-trust span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #9a9a9a;
  flex: 0 0 4px;
}

/* ======================================
   CTA – Luxury Full Underline
====================================== */

.watch-cta {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;

  position: relative;
  display: inline-block;

  color: #111;
}

/* underline */
.watch-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: #b08d57;
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
}

/* hover → 文字幅いっぱい */
.watch-card:hover .watch-cta::after {
  width: 100%;
}

/* ======================================
   Price
====================================== */

.watch-price {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.3px;
  color: var(--status-instock-color);
}

.currency {
  font-size: 11px;
  margin-left: 4px;
  color: #888;
}

/* ======================================
   Card Layout
====================================== */

.watch-card {
  text-decoration: none;
  color: inherit;
  display: block;

  padding: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

.watch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.watch-model {
  font-weight: 500;
  margin-top: 4px;
}

/* =========================================
   SOLD ARCHIVE
========================================= */

body.sold-archive {
  background: #f2f2f2;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: #111;
}

.sold-archive header {
  padding: 60px 16px 54px;
  background: linear-gradient(180deg, #0e0e0f 0%, #161616 100%);
  color: #fff;
  text-align: center;
}

.sold-archive header h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 500;
}

.sold-archive .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.sold-archive .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sold-archive .card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sold-archive .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.sold-archive .img {
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sold-archive .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sold-archive .meta {
  padding: 18px 16px 22px;
}

.sold-archive .brand {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .85;
}

.sold-archive .model {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
}

.sold-archive .ref {
  font-size: 11px;
  opacity: .55;
  margin-top: 8px;
}

.sold-archive .badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  border: none;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover {
  text-decoration: none;
}

.card {
  cursor: pointer;
}

.card-price-original {
  text-decoration: line-through;
  font-size: 13px;
  color: #888;
}

.card-price-sale {
  font-size: 18px;
  font-weight: 700;
  color: #8b0000;
}

.card-price-main {
  font-size: 18px;
  font-weight: 600;
}

.card-sale-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  font-size: 11px;
  background: #8b0000;
  color: #fff;
  border-radius: 3px;
}

/* ===============================
   HERO
=============================== */



.hero h1 {
  font-size: 44px;
}

.hero p {
  color: #ccc;
  margin-bottom: 30px;
}

/* ===============================
   BUTTON
=============================== */

.btn {
  display: inline-block;
  padding: 14px 26px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ddd;
}

/* ===============================
   TRUST
=============================== */

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trust-item {
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

/* ===============================
   ABOUT
=============================== */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 10px;
}

/* ===============================
   CARD
=============================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
}

/* ===============================
   CTA
=============================== */

.cta {
  background: #f5f5f5;
  text-align: center;
  padding: 80px 20px;
}

/* ===============================
   FOOTER
=============================== */

.footer {
  text-align: center;
  font-size: 14px;
  color: #777;
  padding: 40px 20px;
}

/* =====================================
   TOP PAGE ONLY (SAFE)
===================================== */

/* カード全体 */
.top-page .watch-card {
  display: block;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 18px;
  transition: all .25s ease;
}

.top-page .watch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* 画像 */
.top-page .watch-image {
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 16px;
}

.top-page .watch-image img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.top-page .watch-card:hover .watch-image img {
  transform: scale(1.05);
}

/* ブランド */
.top-page .watch-brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}

/* モデル */
.top-page .watch-model {
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

/* リファレンス */
.top-page .watch-ref {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

/* 価格 */
.top-page .watch-price {
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.top-page .currency {
  font-size: 11px;
  margin-left: 4px;
  color: #888;
}

/* ステータス */
.top-page .watch-status {
  margin-top: 6px;
  font-size: 12px;
}

.top-page .status.available {
  color: #1e3a2f;
}

.top-page .status.reserved {
  color: #b08d57;
}

.top-page .status.sold {
  color: #999;
}

/* TRUST */
.top-page .watch-trust {
  margin-top: 12px;
  font-size: 11px;
  color: #777;
  line-height: 1.6;
}

/* CTA */
.top-page .watch-cta {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

/* 下線アニメ */
.top-page .watch-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #b08d57;
  transition: width .3s ease;
}

.top-page .watch-card:hover .watch-cta::after {
  width: 100%;
}

.payment-page {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.page-sub {
  color: #666;
  margin-bottom: 40px;
}

.payment-block {
  margin-bottom: 40px;
}

.payment-block h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.payment-block p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.payment-block ul {
  padding-left: 18px;
}

.payment-block li {
  margin-bottom: 6px;
}

.payment-block.highlight {
  background: #f8f8f8;
  padding: 20px;
  border-left: 4px solid #111;
}

.payment-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== UPGRADE（追加） ===== */

/* カード化 */
.payment-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 6px;
}

/* Wise強調 */
.payment-card.highlight {
  border: 1px solid #111;
  background: #fafafa;
}

/* テキスト調整 */
.payment-card p {
  margin-bottom: 10px;
  color: #444;
}

.payment-card ul {
  padding-left: 20px;
  color: #555;
}

/* CTA強化 */
.payment-cta {
  text-align: center;
  margin-top: 50px;
}

.bank-box {
  margin: 20px 0;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.8;
}

.bank-box div {
  margin-bottom: 6px;
}

.bank-note {
  margin-top: 15px;
  color: #666;
  font-size: 13px;
}

.bank-note.subtle {
  font-size: 12px;
  color: #888;
}

.wise-note {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
}

.wise-link a {
  display: inline-block;
  margin-top: 10px;
  color: #111;
  font-weight: 600;
  text-decoration: underline;
}

/* ===============================
   SHIPPING PAGE
=============================== */

.shipping-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.shipping-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.shipping-card.highlight {
  border: 1px solid #111;
  background: #fafafa;
}

.shipping-box {
  margin: 15px 0;
  padding: 15px;
  background: #111;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 4px;
}

.shipping-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.note {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

.shipping-cta {
  text-align: center;
  margin-top: 40px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 12px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===============================
   UPGRADE (LUXURY TUNING)
=============================== */

/* ページ余白アップ（重要） */
.shipping-page {
  margin: 80px auto;
}

/* カードを浮かせる */
.shipping-card {
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

/* ホバーでほんの少し浮く（高級サイトっぽい） */
.shipping-card:hover {
  transform: translateY(-2px);
}

/* タイトル強化 */
.page-title {
  font-size: 38px;
  font-weight: 600;
}

/* サブテキスト */
.page-sub {
  color: #666;
  margin-bottom: 40px;
}

/* 金額を主役に */
.shipping-box {
  margin: 25px 0;
  padding: 20px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* テキストの行間（読みやすさUP） */
.shipping-card p {
  line-height: 1.7;
}

/* リストも少し上品に */
.shipping-card ul {
  margin-top: 10px;
}

.shipping-card li {
  margin-bottom: 6px;
}

/* 注意カード強調 */
.shipping-card.highlight {
  padding: 40px;
}

/* ===============================
   WARRANTY PAGE
=============================== */

.warranty-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.warranty-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.warranty-card.highlight {
  border: 1px solid #111;
  background: #fafafa;
}

.warranty-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.warranty-card p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.warranty-card ul {
  padding-left: 18px;
}

.warranty-card li {
  margin-bottom: 6px;
}

.warranty-cta {
  text-align: center;
  margin-top: 40px;
}

.site-footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px;
  margin-top: 60px;
}

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

.footer-brand {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 12px;
  font-size: 13px;
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

.footer-copy {
  font-size: 12px;
  color: #666;
}

/* ===== FOOTER UPGRADE ===== */

.site-footer {
  padding: 50px 20px;
  margin-top: 80px;
  background: #0f0f0f;
}

/* ブランド強化 */
.footer-brand {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* ナビ調整 */
.footer-links a {
  margin: 0 14px;
  color: #aaa;
  letter-spacing: 1px;
}

/* 新規：連絡先 */
.footer-contact {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* 新規：信頼 */
.footer-trust {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

/* コピー少し弱める */
.footer-copy {
  font-size: 11px;
  color: #666;
}

/* ===============================
   HEADER
=============================== */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo a {
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-decoration: none;
  color: #111;
}

/* 小さく補足 */
.header-logo a::after {
  content: " JAPAN";
  font-size: 10px;
  margin-left: 6px;
  letter-spacing: 1px;
  color: #777;
}

.header-nav a {
  margin-left: 20px;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: #555;
}

.header-nav a:hover {
  color: #000;
}

.brand-lp-title,
.brand-feature-logo,
.brand-item span {
  font-family: "Cinzel", serif;
}

/* ===============================
   BRAND HERO（超重要）
=============================== */

.brand-hero {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.rolex-hero {
  background: linear-gradient(135deg, #0b2f1f, #144d33);
}

.omega-hero {
  background: linear-gradient(135deg, #7a0c0c, #b31212);
}

.patek-hero {
  background: linear-gradient(135deg, #0f0f10, #1d1d1f);
}

.iwc-hero {
  background: linear-gradient(135deg, #1c1f26, #3a3f4b);
}

.grand-seiko-hero {
  background: linear-gradient(135deg, #111111, #2a2a2a);
}

.brand-hero h1 {
  font-family: "Cinzel", serif;
  font-size: 40px;
  letter-spacing: 4px;
}

.brand-hero p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===============================
   INTRO
=============================== */

.brand-lp-intro {
  margin: 80px auto;
}

.brand-intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.brand-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.brand-lp-intro h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.brand-lp-intro p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #444;
}


/* ===============================
   MODELS（少し格上げ）
=============================== */

.brand-models {
  margin: 80px 0;
}

.brand-models h2 {
  text-align: center;
  margin-bottom: 30px;
}

.brand-model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.brand-model-card {
  padding: 14px;
  border: 1px solid #e5e5e5;
  text-align: center;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: all .25s ease;
  font-size: 13px;
  letter-spacing: 1px;
}

.brand-model-card:hover {
  background: #111;
  color: #fff;
}

.brand-products {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===============================
   BRAND PAGE CARD SIZE FIX
   LPページのカードをTOPと同じ大きさに揃える
=============================== */

.brand-products .watch-card {
  display: block;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 18px;
  transition: all .25s ease;
}

.brand-products .watch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.brand-products .watch-image {
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 16px;
}

.brand-products .watch-image img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.brand-products .watch-card:hover .watch-image img {
  transform: scale(1.05);
}

.brand-products .watch-brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}

.brand-products .watch-model {
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.brand-products .watch-ref {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.brand-products .watch-price {
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.brand-products .currency {
  font-size: 11px;
  margin-left: 4px;
  color: #888;
}

.brand-products .watch-status {
  margin-top: 6px;
  font-size: 12px;
}

.brand-products .status.available {
  color: #1e3a2f;
}

.brand-products .status.reserved {
  color: #b08d57;
}

.brand-products .status.sold {
  color: #999;
}

.brand-products .watch-trust {
  margin-top: 12px;
  font-size: 11px;
  color: #777;
  line-height: 1.6;
}

.brand-products .watch-cta {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.brand-products .watch-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #b08d57;
  transition: width .3s ease;
}

.brand-products .watch-card:hover .watch-cta::after {
  width: 100%;
}

/* ===============================
   GRAND SEIKO CTA
=============================== */

.gs-cta {
  margin: 60px auto;
}

.gs-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 40px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 6px;

  gap: 30px;
}

.gs-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.gs-cta-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.gs-cta-text p {
  color: #555;
  font-size: 14px;
}

.gs-button {
  display: inline-block;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: .2s;
}

.gs-button:hover {
  background: #333;
}

/* ===============================
   TOP SEARCH
=============================== */

.top-search-wrap {
  max-width: 900px;
  margin: -40px auto 60px;
  /* HEROに少し重ねる */
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.top-search {
  display: flex;
  border: 1px solid #ddd;
  background: #fff;
}

.top-search input {
  flex: 1;
  padding: 16px 18px;
  font-size: 14px;
  border: none;
  outline: none;
}

.top-search button {
  padding: 0 26px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
}

.top-search button:hover {
  background: #333;
}

/* ===============================
   HEADER SEARCH
=============================== */

/* 横並びの余白 */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ナビと検索のバランス */
.header-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* 検索 */
.header-search {
  display: flex;
  align-items: center;
}

/* 入力 */
.header-search input {
  width: 160px;
  padding: 8px 12px;
  font-size: 12px;
  border: 1px solid #ddd;
  outline: none;
  transition: all .2s ease;
}

/* フォーカスで伸びる（高級UX） */
.header-search input:focus {
  width: 220px;
  border-color: #111;
}

/* ===============================
   MOBILE CLEAN（唯一のスマホCSS）
=============================== */
@media (max-width: 768px) {

  /* ===== BODY ===== */
  body {
    margin: 0;
    padding: 0;
  }

  .container {
    padding: 0 16px;
  }

  /* ===== HEADER ===== */
  .site-header {
    padding: 12px 16px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-logo a {
    font-size: 18px;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-nav a {
    font-size: 12px;
  }

  .header-search {
    width: 100%;
  }

  .header-search input {
    width: 100%;
    padding: 10px;
  }

}

/* ===============================
   HOW TO BUY PAGE
=============================== */

.howto-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.howto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.howto-hero {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 50px;
}

.howto-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.howto-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.howto-hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: #fff;
}

.howto-hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.howto-hero-text p {
  font-size: 16px;
  opacity: 0.9;
}

/* TEXT */
.howto-text {
  margin-bottom: 40px;
  line-height: 1.8;
  color: #333;
}

/* STEP FLOW */
.howto-store {
  margin-bottom: 50px;
}

.howto-store h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.howto-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin: 30px 0;
  position: relative;
}

.howto-gallery div {
  position: relative;
  background: #fff;
  padding: 30px 15px 20px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #e5e5e5;

  transition: all 0.25s ease;
}

/* STEP DETAIL */
.howto-visual {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.howto-visual-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.howto-visual-content p {
  line-height: 1.7;
  color: #444;
}

/* TRUST */
.howto-trust {
  margin: 60px 0;
}

.howto-trust h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

/* CTA */
.howto-cta {
  margin-top: 60px;
}

/* ホバー */
.howto-gallery div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* STEP番号（丸） */
.howto-gallery div::before {
  content: attr(data-step);
}

/* 番号自動生成 */
.howto-gallery div:nth-child(1)::before {
  content: "1";
}

.howto-gallery div:nth-child(2)::before {
  content: "2";
}

.howto-gallery div:nth-child(3)::before {
  content: "3";
}

.howto-gallery div:nth-child(4)::before {
  content: "4";
}

.howto-gallery div:nth-child(5)::before {
  content: "5";
}

.howto-gallery div::before {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: #111;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 矢印（→） */
.howto-gallery div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .howto-gallery {
    grid-template-columns: 1fr;
  }

  .howto-gallery div:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(-50%);
  }
}

/* ===============================
   HOW TO BUY – LUXURY FINISH
=============================== */

/* 見出しにライン追加（高級感） */
.howto-store h2,
.howto-trust h2,
.howto-text h2 {
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

.howto-store h2::after,
.howto-trust h2::after,
.howto-text h2::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #111;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* STEPカードをさらに洗練 */
.howto-gallery div {
  background: #fff;
  border: 1px solid #eaeaea;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ホバー強化（浮遊感） */
.howto-gallery div:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}

/* STEPの矢印を少し上品に */
.howto-gallery div:not(:last-child)::after {
  font-size: 16px;
  color: #bbb;
}

/* STEP DETAILを高級カード化 */
.howto-visual {
  border-left: 3px solid #111;
  transition: all 0.25s ease;
}

.howto-visual:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* テキストを少し上品に */
.howto-visual-content p {
  color: #555;
}

/* TRUSTカード強化 */
.trust-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 30px;
}

.trust-list li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* CTAを一気に高級化 */
.howto-cta .cta-box {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.howto-cta .cta-box h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.howto-cta .cta-lead {
  opacity: 0.9;
  margin-bottom: 25px;
}

/* ボタン */
.howto-cta .cta-btn.primary {
  background: #fff;
  color: #111;
  border-radius: 6px;
  padding: 12px 22px;
  margin-right: 10px;
}

.howto-cta .cta-btn.secondary {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 6px;
  padding: 12px 22px;
}

/* HOWTO 内リンク（高級化） */
.howto-section a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: all 0.2s ease;
}

.howto-section a:hover {
  color: #000;
  border-bottom: 1px solid #111;
}

/* ===============================
   HOWTO STEP – FINAL LUXURY UPGRADE
=============================== */

/* カードをガラス風に */
.howto-gallery div {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 38px 20px 24px;
  font-weight: 500;
}

/* 番号を重厚に */
.howto-gallery div::before {
  width: 42px;
  height: 42px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(145deg, #111, #2a2a2a);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* 矢印を“線っぽく”上品に */
.howto-gallery div:not(:last-child)::after {
  content: "";
  width: 26px;
  height: 1px;
  background: #ddd;
  right: -18px;
}

/* STEPカード内の文字を整える */
.howto-gallery div {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

/* Payment / Shippingリンク専用（重要） */
.howto-gallery a {
  color: #111;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

/* ホバー時（高級リンク） */
.howto-gallery a:hover {
  border-bottom: 1px solid #111;
}

/* STEPカード全体ホバー時にリンクも連動 */
.howto-gallery div:hover a {
  border-bottom: 1px solid #111;
}

/* ほんの少し影を追加（立体感） */
.howto-gallery div:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* CTA内は例外（最優先で上書き） */
.howto-cta a {
  color: #fff !important;
}

/* ボタン個別 */
.howto-cta .cta-btn.primary {
  color: #111 !important;
  background: #fff;
}

.howto-cta .cta-btn.secondary {
  color: #fff !important;
  border: 1px solid #fff;
}

/* ホバーも整える */
.howto-cta .cta-btn.primary:hover {
  background: #f2f2f2;
}

.howto-cta .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* CTA内リンクの全体リセット */
.howto-cta .cta-actions a {
  text-decoration: none;
  border-bottom: none;
}

/* CTA配置 */
.howto-cta .cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* メインCTA：上品なアウトライン */
.howto-cta .cta-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 28px;
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

/* サブCTA：文字リンク寄り */
.howto-cta .cta-btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  padding: 14px 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88) !important;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  transition: all 0.25s ease;
}

.howto-cta .cta-btn.secondary::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
}

/* hover */
.howto-cta .cta-btn.primary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-1px);
}

.howto-cta .cta-btn.secondary:hover {
  color: #fff !important;
}

.howto-cta .cta-btn.secondary:hover::after {
  background: rgba(255, 255, 255, 0.75);
}

/* スマホ */
@media (max-width: 768px) {
  .howto-cta .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .howto-cta .cta-btn.primary,
  .howto-cta .cta-btn.secondary {
    width: 100%;
    max-width: 260px;
  }
}

/* SVGアイコン */
.step-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  color: #111;
  opacity: 0.85;
}

/* SVGサイズ */
.step-icon svg {
  width: 100%;
  height: 100%;
}

/* カード内配置 */
.howto-gallery div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ホバーでほんの少し反応 */
.howto-gallery div:hover .step-icon {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===============================
   SORT BAR
=============================== */
.sort-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.sort-btn {
  padding: 8px 16px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.2s;
}

.sort-btn:hover {
  background: #f5f5f5;
}

.sort-btn.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ===============================
   SUPPORT PAGE
=============================== */

.support-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.support-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.support-card.highlight {
  border: 1px solid #111;
  background: #fafafa;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.support-cta {
  text-align: center;
  margin-top: 40px;
}

.support-note {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

/* ===============================
   CONTACT PAGE
=============================== */

.contact-page form {
  max-width: 700px;
  margin-top: 40px;
}

.contact-page input,
.contact-page textarea,
.contact-page select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-page textarea {
  min-height: 140px;
}

.contact-page .btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.contact-page .btn-primary:hover {
  background: #333;
}

.contact-page ul {
  margin: 20px 0;
  padding-left: 20px;
}

.contact-page li {
  margin-bottom: 6px;
}

/* ===============================
   MOBILE MENU FINAL
   BIG MOON LUXURY VERSION
=============================== */

/* 初期 */
.mobile-nav {
  display: none;
}

/* ===============================
   PC
=============================== */
@media (min-width: 769px) {

  /* ハンバーガー非表示 */
  .menu-toggle {
    display: none;
  }

  /* モバイルメニュー非表示 */
  .mobile-nav {
    display: none !important;
  }
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

  /* ===== HEADER ===== */

  .site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    padding: 14px 18px;
  }

  /* ヘッダー分余白 */
  body {
    padding-top: 78px;
  }

  /* 横並び */
  .header-inner {
    position: relative;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: space-between;
  }

  /* ===== LOGO ===== */

  .header-logo a {
    font-size: 20px;
    letter-spacing: 2px;
  }

  /* ===== HAMBURGER ===== */

  .menu-toggle {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-left: auto;

    background: transparent;
    border: none;

    color: #111;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;

    z-index: 10001;

    transition: opacity .2s ease;
  }

  .menu-toggle:active {
    opacity: 0.6;
  }

  /* ===== PC NAV 非表示 ===== */

  .desktop-nav {
    display: none !important;
  }

  /* ===== SEARCH 非表示 ===== */

  .header-search {
    display: none;
  }

  /* ===============================
     MOBILE NAV PANEL
  ================================ */

  .mobile-nav {
    display: none;
    flex-direction: column;

    position: absolute;

    top: calc(100% + 1px);
    left: 0;

    width: 100%;

    background:
      linear-gradient(180deg,
        rgba(14, 14, 14, 0.98) 0%,
        rgba(8, 8, 8, 0.985) 100%);

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    padding: 8px 0 12px;

    z-index: 10000;

    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.35);
  }

  /* 開いた時 */
  .mobile-nav.active {
    display: flex;
  }

  /* ===============================
     NAV LINKS
  ================================ */

  .mobile-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 0 24px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.4px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.045);

    background:
      rgba(255, 255, 255, 0.012);

    transition:
      background .2s ease,
      padding-left .2s ease,
      color .2s ease;
  }

  /* GOLD BAR */
  .mobile-nav a::before {
    content: "";
    width: 3px;
    height: 18px;
    margin-right: 14px;
    border-radius: 999px;
    background:
      linear-gradient(180deg,
        #d7bb7a 0%,
        #b99249 100%);
    opacity: 0.75;
    flex-shrink: 0;
  }

  /* hover */
  .mobile-nav a:hover {
    color: #ffffff;
    background:
      rgba(255, 255, 255, 0.04);
    padding-left: 30px;
  }

  /* tap */
  .mobile-nav a:active {

    background:
      rgba(255, 255, 255, 0.08);
  }

  /* 最後の線削除 */
  .mobile-nav a:last-child {
    border-bottom: none;
  }
}

/* ===============================
   MOBILE SEARCH
=============================== */

.mobile-search {
  padding: 0 0 14px;
  margin-bottom: 10px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);
}

.mobile-search form {
  display: flex;
}

.mobile-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  background:
    rgba(255, 255, 255, 0.05);
  border:
    1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all .2s ease;
}

.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.mobile-search input:focus {
  border-color:
    rgba(200, 169, 107, 0.65);

  background:
    rgba(255, 255, 255, 0.08);
}