/** Shopify CDN: Minification failed

Line 64:3 Unexpected "="

**/
/* ==============================================
   カスタムWebフォント - 最終実装版
   ファイル名: custom-font.css.liquid
   ============================================== */

/* 1. SmartFont フォント定義 */
@font-face {
  font-family: "SmartFont";
  src: url("//vdjmx1-k0.myshopify.com/cdn/shop/files/smartfont.woff2?v=14668885992908207106") format('woff2'),
       url("//vdjmx1-k0.myshopify.com/cdn/shop/files/smartfont.woff?v=12407521396612143007") format('woff'),
       url("//vdjmx1-k0.myshopify.com/cdn/shop/files/smartfont.otf?v=12991768094551807599") format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 2. デバッグ用クラス（動作確認後削除してください） */
.font-debug {
  font-family: "SmartFont", Arial, sans-serif !important;
  color: #ffffff !important;
  background: #007bff !important;
  font-size: 18px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  display: inline-block !important;
  margin: 5px !important;
}

/* 3. ヘッダーナビゲーション（メインメニュー） */
.header__nav .nav__link,
.nav__link,
.navlink.navlink--toplevel,
.navigation__link,
.main-nav__link {
  font-family: "SmartFont", san-serif !important;
}

/* 4. モバイルメニュー */
.mobile-nav__link,
.drawer__nav-link,
.mobile-nav a {
  font-family: "SmartFont", var(--FONT-STACK-NAV, Arial, sans-serif) !important;
}

/* 5. 見出し要素（h1-h6） */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.heading,
.heading-large,
.heading-medium,
.sliderow__title,
.section__heading,
.hero__title {
  font-family: "SmartFont", san-serif !important;
  font-weight:300!important;
}


   ============================================== */
/* 7. ボタンテキスト */
.btn,
.button,
.cart__checkout,
.product__form__cart-submit,
.btn--primary,
.btn--secondary {
  font-family: "SmartFont", var(--BTN-FONT-STACK, Arial, sans-serif) !important;
}

/* 8. サブヘッディング */
.subheading,
.section__subheading,
.product__subtitle {
  
  font-family: "SmartFont", san-serif !important;
  font-weight:300!important;
}

/* 9. フッターナビゲーション */
.footer__nav-link,
.footer__link,
.footer a {
  
  font-family: "SmartFont", san-serif !important;
  font-weight:300!important;
}

/* 10. カスタムクラス（手動で使用可能） */
.custom-font,
.myFontClass,
.sliderow__title,
.smart-font {
  
  font-family: "SmartFont", san-serif !important;
  font-weight:300!important;
}


/* 12. レスポンシブ調整 */
@media screen and (max-width: 768px) {
  .header__nav .nav__link,
  .mobile-nav__link {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* 13. フォント読み込み状態の視覚確認 */
@supports (font-display: swap) {
  .font-loaded-indicator::after {
    content: " ✓ SmartFont適用済み";
    color: #28a745;
    font-size: 12px;
    font-weight: normal;
  }
}