/** Shopify CDN: Minification failed

Line 154:25 Expected ":"

**/
/* ヘッダー非表示 */
#shopify-section-group-header-group,
#shopify-section-header,
.site-header {
  display: none !important;
}

/* 固定ヘッダー全体 */
.tmt-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  padding-bottom: 15px;
}

/* ページヘッダー（ロゴ・カート） */
.tmt-page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: relative;
}

.tmt-page-logo-link {
  display: flex;
  align-items: center;
}

.tmt-page-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.tmt-cart-btn {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.tmt-cart-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.tmt-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* タブナビ */
.tmt-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior: contain none;
  -webkit-overflow-scrolling: auto;
  touch-action: pan-x;
  align-items: stretch;
  background: transparent;  /* 親に任せる */
  z-index: 999;
}
.tmt-tabs::-webkit-scrollbar { display: none; }


.tmt-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: #999;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.tmt-tab-btn:hover { color: #000; }
.tmt-tab-btn.is-active { color: #000; border-bottom-color: #000; }

/* タブパネル */
.tmt-tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.tmt-tab-panel.is-active {
  display: block;
  opacity: 1;
}
.tmt-tab-content {
  overflow: hidden;
}

/* ページ全体 */
.tmt-tab-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 40px;
}

/* 商品グリッド */
.tmt-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 商品カード */
.tmt-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}
.tmt-product-card:hover .tmt-product-image { opacity: 0.85; }

.tmt-product-image {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: contain;　/*coverに変えたら強制的に画像の高さを揃える*/
  display: block;
  transition: opacity 0.2s;
  background: #f5f5f5;
  position: relative;
  z-index: 1;
  background: #fff;
}
.tmt-no-image { background: #f0f0f0; }

.tmt-product-info {
  padding: 10px 4px 16px;
  text-align: center;
}
.tmt-product-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
  line-height: 1.4;
}
.tmt-product-price {
  font-size: 12px;
  color: #666;
  margin: 0 0 8px;
}

/* スウォッチ */
.tmt-swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.tmt-swatch {
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 50%;
}
.tmt-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 空状態 */
.tmt-empty {
  text-align: center;
  color: #999;
  padding: 60px 0;
  font-size: 13px;
}

/* Motionテーマのオーバーレイ系要素を抑制 */
.page-container,
.transition-body,
#MainContent {
  position: relative;
  z-index: 0;
}

/* スマホ */
@media (max-width: 768px) {
  .tmt-page-header {
    height: 60px;
  }
  .tmt-page-logo {
    height: 28px;
  }
  .tmt-tabs {
    justify-content: flex-start;
    padding-left: 0px;
    padding-right: 0px;
  }
  .tmt-tab-page {
    padding: 104px 0 40px;
  }
  .tmt-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .tmt-product-info {
    padding: 10px 8px 16px;
  }
}


