/** Shopify CDN: Minification failed

Line 419:0 Unexpected "}"

**/
/* === BASE === */
body {
  font-family: 'Playfair Display', sans-serif;
  background-color: #FAFAFA;
  margin: 0;
  padding: 0;
}

/* HEADER */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu {
  font-size: 18px;
  color: #000;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  margin-right: auto;
  font-family: 'Playfair Display', sans-serif;
}

.menu-items {
  position: absolute;
  top: 30px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 10px 15px;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 999;
  min-width: 160px;
}

.menu-items a {
  display: block;
  padding: 6px 4px;
  text-decoration: none;
  color: #fff !important;
  font-size: 14px;
  white-space: nowrap;
  font-family: 'Playfair Display', sans-serif;
}

.menu.active .menu-items {
  display: flex;
}

.logo {
  font-family: 'Playfair Display', sans-serif;
  font-size: 34px;
  text-decoration: none;
}

.logo a {
  text-decoration: none;
  color: #000;
  font-family: 'Playfair Display', sans-serif;
  font-size: 40px;
}

.center-logo {
  text-align: center;
  width: 100%;
}

/* カートアイコン */
.cart-link {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cart-link:hover {
  opacity: 0.8;
}

.cart-icon {
  width: 28px;
  height: 28px;
  stroke: #000;
}

/* COLLECTION TITLE */
.collection-title {
  text-align: center;
  margin-top: 100px;
}

.collection-heading {
  font-family: 'Playfair Display', sans-serif;
  font-size: 33px;
  margin-bottom: 10px;
}

.underline {
  width: 60px;
  height: 2px;
  background-color: black;
  margin: 0 auto;
}

/* PRODUCTS */
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 40px 0;
  padding: 0 20px;
}

.product-card {
  width: 22%;
  margin: 1%;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Playfair Display', sans-serif;
}

.product-card a {
  text-decoration: none;
}

.product-card img {
  width: 100%;
  display: block;
  transition: opacity 0.5s ease;
}

.product-card img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover img.hover-img {
  opacity: 1;
}

.product-card:hover img.main-img {
  opacity: 0;
}

.product-name,
.product-price,
.product-new {
  margin: 4px 0;
  font-size: 13px;
  font-family: 'Playfair Display', sans-serif;
}

.product-new {
  color: black;
  font-weight: normal;
}

/* FOOTER */
.footer {
  background-color: #fff;
  padding: 60px 80px 20px 80px;
  font-family: 'Playfair Display', sans-serif;
  color: #000;
}

.footer-columns {
  display: flex;
  justify-content: flex-start;
  gap: 120px;
  margin-bottom: 30px;
  transform: translateY(-20px);
}

.footer-column h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
  font-family: 'Playfair Display', sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: opacity 0.3s ease;
  font-family: 'Playfair Display', sans-serif;
}

.footer-column ul li a:hover {
  opacity: 0.6;
}


.footer-bottom {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
  color: #555;
  font-family: 'Playfair Display', sans-serif;
}

.footer-back {
  text-align: right;
  padding: 10px 60px 0;
}

.footer-back a {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
  font-family: 'Playfair Display', sans-serif;
}

/* HERO IMAGE */
.hero-section {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HEADER 横並び */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-container a {
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  color: black;
  font-family: 'Playfair Display', sans-serif;
}

/* LEGAL PAGES */
.legal-page {
  max-width: 800px;
  margin: 80px auto 100px;
  padding: 0 40px;
  text-align: left;
  line-height: 1.8;
  font-family: 'Playfair Display', sans-serif;
}

.legal-page h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.legal-page h3 {
  margin-top: 32px;
  font-size: 18px;
}

.legal-page p,
.legal-page ul {
  font-size: 15px;
  margin-top: 12px;
}

.legal-page ul {
  padding-left: 20px;
  list-style-type: disc;
}

/* === フッターの見出しだけ太字にする === */
.footer-column h3 {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}

/* === フッターのリンクは細字にする === */
.footer-column ul li a {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
}

/* === コピーライトなども細字に === */
.footer-bottom,
.footer-back a {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
}
/* PCとスマホでトップ画像を切り替える */
.hero-image-mobile {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }

  .hero-image-mobile {
    display: block;
  }
  .hero-section {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 0; /* ← 追加 */
}
    body {
    background-color: #FAFAFA !important;
  }
}


  /* ヘッダー */
  .menu {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .center-logo {
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .logo a {
    font-size: 26px;
    line-height: 1;
  }

  .cart-link {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
  }

  .cart-icon {
    width: 24px;
    height: 24px;
  }

  .footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }

  .footer-section {
    flex: 1 1 45%;
  }

  .footer-section h4 {
    margin-bottom: 8px;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 4px;
  }
}