/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 326:2 Unexpected "}"
Line 337:0 Unexpected "<"

**/
<style>
  /* ===== Reset & Base ===== */
  .dte-lp * { margin: 0; padding: 0; box-sizing: border-box; }
  .dte-lp {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "Noto Sans JP", sans-serif;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
  }
  .dte-lp a { text-decoration: none; color: inherit; }
  .dte-lp img { display: block; width: 100%; height: auto; }

  /* ===== Hero ===== */
  .dte-hero {
    background: #0a0a0a;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    min-height: 560px;
  }
  .dte-hero-img {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
  }
  .dte-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .dte-hero-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
  }
  .dte-hero-brand {
    font-size: 16px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
  .dte-hero-name {
    font-size: 54px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .dte-hero-tagline {
    font-size: 20px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
  }
  .dte-hero-detail {
    font-size: 15px;
    color: #777;
    letter-spacing: 1px;
    line-height: 2;
  }
  .dte-hero-cta {
    display: inline-block;
    width: fit-content;
    margin-top: 2.5rem;
    padding: 16px 56px;
    background: #ffffff;
    color: #0a0a0a !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
  }
  .dte-hero-cta:hover { opacity: 0.85; }

  /* ===== Collection ===== */
  .dte-collection {
    padding: 3rem 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .dte-collection-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .dte-collection-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #999;
    text-transform: uppercase;
  }
  .dte-collection-link {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .dte-collection-link:hover { color: #1a1a1a; }
  .dte-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .dte-card {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .dte-card:hover { border-color: #ccc; }
  .dte-card-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0f0ee;
  }
  .dte-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .dte-card:hover .dte-card-img img { transform: scale(1.03); }
  .dte-card-info { padding: 14px 16px 18px; }
  .dte-card-name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
  }
  .dte-card-sub {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  .dte-card-price {
    font-size: 13px;
    color: #666;
  }
  .dte-card-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
  }
  .dte-card-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
  }

  /* ===== Popup Banner ===== */
.dte-popup {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 3.5rem;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
  max-width: 860px; /* 100% → 860px */
  margin: 0 auto; 
}

.dte-popup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1D9E75;
  flex-shrink: 0;
  animation: dte-pulse 2s ease-in-out infinite;
}

.dte-popup-text {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
}

.dte-popup-text strong {
  font-weight: 500;
  color: #1a1a1a;
}

.dte-popup-link {
  margin-left: auto;
  font-size: 12px;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dte-popup-link:hover {
  opacity: 0.6;
}

  /* ===== Footer ===== */
  .dte-footer {
    padding: 2rem 3.5rem;
    text-align: center;
    font-size: 11px;
    color: #bbb;
    letter-spacing: 1.5px;
  }

  /* ===== SP Responsive ===== */
  @media screen and (max-width: 768px) {
    .dte-hero {
      flex-direction: column;
      min-height: auto;
    }
    .dte-hero-img {
      min-height: 480px;
    }
    .dte-hero-copy {
      padding: 2.5rem 1.5rem 2rem;
      text-align: center;
      align-items: center;
    }
    .dte-hero-name {
      font-size: 36px;
    }
    .dte-hero-tagline {
      font-size: 16px;
      margin-bottom: 1.5rem;
    }
    .dte-hero-cta {
      width: 100%;
      padding: 16px 24px;
    }
    .dte-collection {
      padding: 2rem 1.25rem;
    }
    .dte-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .dte-card-info {
      padding: 10px 10px 14px;
    }
    .dte-card-name {
      font-size: 14px;
    }
    .dte-card-sub {
      font-size: 11px;
      margin-bottom: 4px;
    }
    .dte-card-price {
      font-size: 12px;
    }
    .dte-card-btn {
      font-size: 11px;
      padding: 8px;
    }
    .dte-popup {
      padding: 1rem 1.25rem;
      flex-wrap: wrap;
    }
    .dte-popup-link {
      margin-left: 22px;
      margin-top: 4px;
      width: 100%;
    }
    .dte-footer {
      padding: 1.5rem 1.25rem;
    }
  /* 商品名・サブテキストを省略 */
  .dte-card-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dte-card-sub {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Popup SP用 */
  .dte-popup {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .dte-popup-text {
    flex: 1;
    min-width: 0;
  }
.dte-popup-link {
  margin-left: auto;
  margin-top: 0;
  width: auto;
  font-size: 11px;
  display: block;
  align-self: center;
}
}


  }

  /* 極小SP（SE等） */
  @media screen and (max-width: 375px) {
    .dte-hero-img { min-height: 400px; }
    .dte-hero-name { font-size: 30px; }
    .dte-hero-tagline { font-size: 14px; }
    .dte-grid { gap: 8px; }
    .dte-card-name { font-size: 13px; }
    .dte-card-btn { display: none; }
  }
</style>