/** Shopify CDN: Minification failed

Line 1036:56 Unexpected "*"

**/
/* カスタムスタイル - tacksamycket */

/* GW休業告知バナー（〜2026-05-06、theme.liquid側で日付条件で非表示） */
.holiday-notice-banner {
  background: #2C2A27;
  color: #FAF8F5;
  border-bottom: 3px solid #b8985a;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-body-family), sans-serif;
  line-height: 1.6;
  position: relative;
  z-index: 6;
}
.holiday-notice-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.holiday-notice-banner__title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.holiday-notice-banner__body {
  display: block;
  font-size: 0.9rem;
}
.holiday-notice-banner__body strong {
  color: #f4d28a;
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 750px) {
  .holiday-notice-banner { padding: 12px 16px; }
  .holiday-notice-banner__title {
    display: inline;
    margin-right: 14px;
    margin-bottom: 0;
  }
  .holiday-notice-banner__body { display: inline; font-size: 0.95rem; }
}

/* セールバッジのみ赤色に（売り切れバッジは変更しない） */
.badge.price__badge-sale {
  background-color: #dc2626 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: bold;
}

/* コレクションカードのセールバッジのみ赤色に */
.card__badge .badge[id^="NoMediaStandardBadge"] + .badge,
.price--on-sale + .badge.price__badge-sale {
  background-color: #dc2626 !important;
  color: #ffffff !important;
}

/* 現在の販売価格（<s>でないもの）を赤字・太字に */
.price--on-sale .price__sale .price-item:not(s) {
  color: #dc2626 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* 定価/比較価格（<s>タグ内）をグレー・小さく */
.price--on-sale s.price-item,
.price--on-sale s .price-item {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #aaa !important;
}

/* 売り切れ商品の価格を非表示（コレクション・商品ページ共通） */
.price--sold-out .price__container {
  display: none !important;
}

/* 売り切れ商品カードを薄く表示し、後ろに並べる */
.sold-out-item {
  order: 999 !important;
}

.sold-out-item .card-wrapper {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.sold-out-item .card-wrapper:hover {
  opacity: 0.85;
}

/* =============================================
   Refined Product Card Styling
   ============================================= */

/* --- Card wrapper: hover lift + shadow --- */
.product-card-wrapper {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

/* --- Image: rounded corners --- */
.card--standard .card__inner,
.card--card {
  border-radius: 10px !important;
  overflow: hidden;
}
.card--standard .card__media {
  border-radius: 10px !important;
  overflow: hidden;
}
.card--card .card__media {
  border-radius: 10px 10px 0 0 !important;
}

/* --- Title: 2-line clamp, refined typography --- */
.card__heading a {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.01em !important;
  color: #333 !important;
}
.card__heading.h5 {
  margin-top: 8px !important;
  margin-bottom: 4px !important;
}

/* --- Vendor: subtle accent --- */
.card-information .caption-with-letter-spacing {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  color: #8b7e6a !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}

/* --- Price: clean, bold --- */
.card-information .price .price-item--regular,
.card-information .price .price-item--sale {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
  letter-spacing: 0.02em !important;
}
/* Sale price (current) stays red — unified with <s>-based rules above */
/* Compare-at price — handled by s.price-item rules above */

/* --- Badges: pill style --- */
.card__badge .badge {
  border-radius: 12px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 3px 10px !important;
  text-transform: uppercase !important;
}

/* --- Card info area spacing --- */
.card__content .card__information {
  padding: 0 2px !important;
}
.card__content .card-information {
  gap: 2px !important;
}

/* --- Sold-out card: subtle fade --- */
.card-wrapper.sold-out-item {
  opacity: 0.55 !important;
  transition: opacity 0.3s ease !important;
}
.card-wrapper.sold-out-item:hover {
  opacity: 0.8 !important;
}

/* =============================================
   Collection Banner Refinement
   ============================================= */

/* Banner container: breathing room */
.collection-hero__inner {
  padding: 24px 20px 20px !important;
}

/* Title: lighter weight, proper sizing */
.collection-hero__title {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.01em !important;
  margin-bottom: 12px !important;
}

/* Description: relaxed, readable */
.collection-hero__description {
  font-size: 13px !important;
  line-height: 1.9 !important;
  color: #555 !important;
  letter-spacing: 0.02em !important;
}
.collection-hero__description a {
  color: #8b7e6a !important;
  text-decoration-color: rgba(139,126,106,0.3) !important;
  text-underline-offset: 3px !important;
  transition: text-decoration-color 0.2s ease !important;
}
.collection-hero__description a:hover {
  text-decoration-color: #8b7e6a !important;
}
.collection-hero__description strong {
  font-weight: 600 !important;
  color: #333 !important;
}

/* Pill links inside description (from styled collections) */
.collection-hero__description a[style*="border-radius"] {
  text-decoration: none !important;
}

/* Desktop: cap width for readability */
@media screen and (min-width: 750px) {
  .collection-hero__title {
    font-size: 22px !important;
  }
  .collection-hero__description {
    max-width: 680px !important;
    font-size: 14px !important;
  }
}

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

/* Footer overall */
.footer {
  padding-top: 32px !important;
  padding-bottom: 24px !important;
}

/* Menu heading: accent style */
.footer-block__heading {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #8b7e6a !important;
  margin-bottom: 12px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(139,126,106,0.15) !important;
}

/* Menu list: compact spacing */
.footer-block__details-content > li {
  margin: 0 !important;
  padding: 0 !important;
}
.footer-block__details-content > li:not(:last-child) {
  margin-bottom: 0 !important;
}

/* Menu links */
.footer-block__details-content .list-menu__item--link {
  font-size: 13px !important;
  color: #555 !important;
  padding: 12px 0 !important;
  transition: color 0.2s ease, padding-left 0.2s ease !important;
  display: block !important;
  line-height: 1.4 !important;
}
.footer-block__details-content .list-menu__item--link:hover {
  color: #8b7e6a !important;
  padding-left: 4px !important;
}

/* Active link */
.footer-block__details-content .list-menu__item--active {
  color: #8b7e6a !important;
  font-weight: 600 !important;
}

/* Footer bottom (copyright, payment) */
.footer__copyright {
  font-size: 11px !important;
  color: #999 !important;
  letter-spacing: 0.02em !important;
}

/* Social links in footer */
.footer .list-social {
  gap: 10px !important;
}
.footer .list-social__link {
  padding: 12px !important;
  color: #999 !important;
  transition: color 0.2s ease !important;
}
.footer .list-social__link:hover {
  color: #8b7e6a !important;
}

/* Footer localization (language/currency selectors) */
.footer__localization h2 {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #8b7e6a !important;
}

/* Payment icons */
.footer__payment .list-payment {
  gap: 4px !important;
}
.footer__payment .list-payment__item {
  opacity: 0.6 !important;
  transition: opacity 0.2s ease !important;
}
.footer__payment .list-payment__item:hover {
  opacity: 1 !important;
}

/* Mobile: tighter layout */
@media screen and (max-width: 749px) {
  .footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .footer-block__details-content .list-menu__item--link {
    padding: 10px 0 !important;
  }
}

/* =============================================
   Product Metafield Pages: Unified Font Size
   ============================================= */

/* Normalize all text in metafield-referenced page content */
.section-main-product-custom .rte,
.section-main-product-custom .rte p,
.section-main-product-custom .rte span,
.section-main-product-custom .rte li,
.section-main-product-custom .rte div {
  font-size: 17px !important;
  line-height: 1.9 !important;
  letter-spacing: 0.02em !important;
}

/* Headings inside metafield pages */
.section-main-product-custom .rte h1,
.section-main-product-custom .rte h2,
.section-main-product-custom .rte h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-top: 24px !important;
  margin-bottom: 12px !important;
}

/* Section titles (page name as h2) */
.section-main-product-custom .page-title.h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 16px !important;
}

/* Links inside metafield content */
.section-main-product-custom .rte a {
  color: #8b7e6a !important;
  text-decoration-color: rgba(139,126,106,0.3) !important;
  text-underline-offset: 3px !important;
}
.section-main-product-custom .rte a:hover {
  text-decoration-color: #8b7e6a !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .section-main-product-custom .rte,
  .section-main-product-custom .rte p,
  .section-main-product-custom .rte span,
  .section-main-product-custom .rte li,
  .section-main-product-custom .rte div {
    font-size: 15.5px !important;
    line-height: 1.9 !important;
    letter-spacing: 0.02em !important;
  }
  .section-main-product-custom .page-title.h2 {
    font-size: 19px !important;
  }
}

/* =============================================
   Collapsible Metafield Content
   ============================================= */

.metafield-collapsible__content {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.metafield-collapsible__content.is-expanded {
  max-height: 5000px;
}
.metafield-collapsible__content:not(.is-expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgb(var(--color-background)));
  pointer-events: none;
}
.metafield-collapsible__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #8b7e6a;
  background: transparent;
  border: 1px solid #e0dcd6;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.02em;
}
.metafield-collapsible__toggle:hover {
  background: #faf9f7;
  border-color: #c8c3bb;
}
.metafield-collapsible__toggle .toggle-icon {
  transition: transform 0.3s ease;
  font-size: 11px;
}
.metafield-collapsible__toggle.is-expanded .toggle-icon {
  transform: rotate(180deg);
}
.metafield-section {
  border-top: 1px solid #f0ede8;
  padding-top: 24px;
  margin-top: 8px;
}
.metafield-section__title {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #333;
}

/* =============================================
   Product Headline (Editorial Title)
   ============================================= */

.product-headline {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e4de;
}
.product-headline__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  color: #2c2c2c;
  letter-spacing: 0.04em;
  white-space: pre-line;
}

@media screen and (max-width: 749px) {
  .product-headline__text {
    font-size: 20px;
    line-height: 1.75;
  }
  .product-headline {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
}

/* Tax included - inline with price */
.price--large .price-item--regular::after {
  content: "（税込）";
  font-size: 13px;
  font-weight: 400;
  color: #777;
  margin-left: 4px;
}
.price--large .price-item--sale + .price-item--regular::after {
  content: "";
}
.price--large .price--on-sale .price-item--sale::after {
  content: "（税込）";
  font-size: 13px;
  font-weight: 400;
  color: #777;
  margin-left: 4px;
}
/* Section headings - refined style */
.collection .title-wrapper,
.blog-scroll .title-wrapper {
  text-align: center;
  margin-bottom: 8px;
}
/* Tighten spacing between title and description */
.collection .collection__description {
  margin-top: 0;
}
.collection .collection__description .rte,
.collection .collection__description.rte {
  margin-top: 0;
  margin-bottom: 8px;
}
.collection .title-wrapper .title,
.section .title-wrapper .title {
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 20px;
}
@media screen and (max-width: 749px) {
  .collection .title-wrapper .title,
  .section .title-wrapper .title {
    font-size: 18px;
  }
}
/* Desktop layout balance */
@media screen and (min-width: 750px) {
  .collection .collection__description {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 24px;
  }
  .collection__view-all {
    text-align: center;
    margin-top: 32px;
  }
}

/* View all button - match blog button style */
.collection .button--tertiary,
.collection__view-all a.button {
  border: 1px solid #d4cfc7 !important;
  border-radius: 24px;
  background: transparent !important;
  color: #8b7e6a !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 28px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.collection .button--tertiary:hover,
.collection__view-all a.button:hover {
  background: #f5f3f0 !important;
  color: #6b6050 !important;
  border-color: #d4cfc7 !important;
}

/* Remove rectangular outlines from all buttons */
.collection__view-all a.button,
.collection__view-all a.button--secondary,
.banner__buttons .button,
.banner__buttons .button--primary,
.banner__buttons .button--secondary {
  outline: none !important;
  box-shadow: none !important;
}
.banner__buttons .button:after,
.collection__view-all a.button:after,
.banner__buttons .button:before,
.collection__view-all a.button:before {
  display: none !important;
}
/* Slideshow banner box - remove border */
.banner__box,
.banner__box.content-container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* =============================================
   Product Title Area - Refined
   ============================================= */

/* Vendor name above title */
.product__info-wrapper .caption-with-letter-spacing {
  font-size: 11px;
  color: #8b7e6a;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

/* Product title */
.product__title h1 {
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.03em;
  color: #2c2c2c;
}

/* Price area spacing */
.product__info-wrapper .price--large {
  margin-top: 12px;
}

@media screen and (max-width: 749px) {
  .product__title h1 {
    font-size: 18px !important;
    line-height: 1.55 !important;
  }
}

/* Product page - compact spacing & quantity selector */
.product-form__quantity {
  margin-top: 4px !important;
  margin-bottom: 0 !important;
}
.product-form__quantity .quantity {
  max-width: 110px;
}
.product-form__quantity .quantity__input {
  min-height: 36px !important;
  height: 36px !important;
  font-size: 14px;
}
.product-form__quantity .quantity__button {
  min-height: 36px !important;
  height: 36px !important;
  width: 32px !important;
}
.product-form__quantity label {
  font-size: 13px;
  margin-bottom: 2px;
}
/* Tighter spacing between product info blocks */
.product__info-wrapper .product-form__input {
  margin-top: 6px;
}
.product__info-wrapper .price--large {
  margin-top: 6px;
  margin-bottom: 2px;
}
/* Add to cart button - outlined style */
.product-form__submit {
  border: 1px solid #2c2c2c !important;
  border-radius: 6px !important;
  margin-top: 10px !important;
}
/* Reduce gap between buy buttons */
.product-form__buttons {
  margin-top: 8px !important;
  gap: 8px !important;
}
/* Reduce spacing around buy button area */
.product-form {
  margin-top: 4px !important;
}

/* Quantity box - remove bottom stretch */
.product-form__quantity .quantity {
  height: auto !important;
  min-height: unset !important;
}
.product-form__quantity {
  padding-bottom: 0 !important;
}

/* Footer newsletter - remove outer border from .field wrapper */
.newsletter-form__field-wrapper .field {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* SOLD OUT price hiding */
.price.price--sold-out .price__regular .price-item--regular {
  display: none;
}

/* =============================================
   Judge.me Testimonials Carousel - Fixed Height
   ============================================= */

/* Fix carousel height to prevent layout shift during transitions */
.jdgm-testimonials-carousel .jdgm-content {
  min-height: 380px;
}

/* Clamp review body text to prevent varying card heights */
.jdgm-testimonials-carousel .jdgm-testimonials-container [class*="body"],
.jdgm-testimonials-carousel .jdgm-testimonials-container [class*="text"] {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 749px) {
  .jdgm-testimonials-carousel .jdgm-content {
    min-height: 350px;
  }
}

/* Judge.me - レビュアー名：JSでイニシャル変換するまで非表示 */
.jdgm-testimonials-carousel .jdgm-reviewer-name {
  opacity: 0;
  transition: opacity 0.2s;
}
.jdgm-testimonials-carousel .jdgm-reviewer-name.jdgm-name-converted {
  opacity: 1;
}

/* Judge.me - メダルバッジ非表示（レビューページ） */
.jdgm-medals-section,
.jdgm-medal,
.jdgm-medals {
  display: none \!important;
}

/* Judge.me - メダルバッジ非表示（レビューページ） */
.jdgm-medals,
.jdgm-medals-wrapper,
.jdgm-medals__container,
.jdgm-medal,
.jdgm-medal-wrapper,
[class*="jdgm-medal"] {
  display: none !important;
}

/* Judge.me - カルーセル店名非表示 */
.jdgm-testimonials-carousel .jdgm-product-name {
  display: none !important;
}

/* Judge.me - レビューページ「ストアレビューを書く」ボタン非表示 */
.jdgm-write-rev-link {
  display: none !important;
}

/* Judge.me - レビュアー名を「お客様」表示（全ページ共通） */
/* Judge.me - レビュアーアイコンの文字を非表示 */
.jdgm-rev__icon {
  font-size: 0 !important;
}
.jdgm-rev__icon::after {
  content: "\1F464";
  font-size: 16px;
}
.jdgm-rev__author,
.jdgm-reviewer-name,
.jdgm-full-rev__reviewer-name,
.jm-reviewer-info__name,
.jdgm-carousel-item__reviewer-name,
[class*="jm-reviewer"][class*="name"] {
  font-size: 0 !important;
  display: inline-block;
}
.jdgm-rev__author::after,
.jdgm-reviewer-name::after,
.jdgm-full-rev__reviewer-name::after,
.jm-reviewer-info__name::after,
.jdgm-carousel-item__reviewer-name::after,
[class*="jm-reviewer"][class*="name"]::after {
  content: "ご購入者様";
  font-size: 14px !important;
}
/* ブログ記事アイキャッチ画像の顔切れ防止 */
.article-template__hero-container .media img,
.article-template__hero-medium img,
.article-template__hero-small img,
.article-template__hero-large img {
  object-position: top center !important;
}

/* ============================================
   Judge.me Featured Carousel 日本語化
   ============================================ */
/* H2「Let customers speak for us」→「お客様の声」 */
.jdgm-carousel-title {
  font-size: 0 !important;
  line-height: 0 !important;
}
.jdgm-carousel-title::after {
  content: "お客様の声";
  font-size: 26px !important;
  line-height: 1.3 !important;
}
/* 「from N reviews」→ 非表示（星評価は残す） */
.jdgm-carousel-number-of-reviews {
  font-size: 0 !important;
  line-height: 0 !important;
}

/* ============================================
   Judge.me Images - CLS Prevention (width/height)
   ============================================ */
/* Carousel product images: prevent layout shift by reserving space */
.jdgm-carousel-item__product-image {
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Popup card review pictures */
.jdgm-popup-card__pic {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Full review user pictures */
.jdgm-full-rev__pic-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* CLS Prevention: Judge.me popup widget container */
.jdgm-popup-widget {
  contain: layout style;
}
.jdgm-popup-widget__inner,
.jdgm-popup-widget__card {
  contain: layout style;
}

/* CLS Prevention: Judge.me all images must have dimensions */
.jdgm-carousel-item__product-image img,
.jdgm-popup-card__pic img,
.jdgm-full-rev__pic-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* CLS Prevention: Slideshow fixed aspect ratio */
slideshow-component {
  display: block;
  min-height: 100vw;
  contain: layout style paint;
  overflow: hidden;
}
.slideshow.banner {
  min-height: 100vw;
}
@media screen and (min-width: 750px) {
  slideshow-component {
    min-height: min(56.25vw, 600px);
  }
  .slideshow.banner {
    min-height: min(56.25vw, 600px);
  }
}

/* CLS Prevention: Collection page — override scroll-trigger initial hidden state */
@media (prefers-reduced-motion: no-preference) {
  .collection .scroll-trigger.animate--slide-in,
  .collection .scroll-trigger.animate--fade-in,
  .facets-vertical .scroll-trigger.animate--slide-in,
  .facets-vertical .scroll-trigger.animate--fade-in,
  #ProductGridContainer.scroll-trigger.animate--slide-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
#ProductGridContainer {
  min-height: 80vh;
}
#main-collection-filters {
  min-height: 48px;
}
facet-filters-form {
  display: block;
  min-height: 44px;
}

/* ============================================
   CLS Prevention: Stronger containment (2026-04-07)
   ============================================ */

/* Judge.me全ウィジェットのレイアウト隔離 */
.jdgm-widget,
.jdgm-review-widget,
.jdgm-carousel-wrapper,
.jdgm-testimonials-carousel,
[data-judgeme-widget] {
  contain: layout style paint;
  overflow: hidden;
}

/* Judge.meセクション：商品ページ下部のレビューセクションのみ最小高さ予約 */
/* 商品情報内のレビューバッジ（星表示）には適用しない */
.shopify-app-block[data-block-type="judgeme"] .jdgm-review-widget,
.shopify-app-block[data-block-type="judgeme"] .jdgm-carousel-wrapper {
  min-height: 400px;
  contain: layout style;
}
.shopify-app-block[data-block-type="judgeme"] .jdgm-preview-badge {
  min-height: auto !important;
  contain: none !important;
}

@media screen and (max-width: 749px) {
  .shopify-app-block[data-block-type="judgeme"] .jdgm-review-widget,
  .shopify-app-block[data-block-type="judgeme"] .jdgm-carousel-wrapper {
    min-height: 350px;
  }
}

/* スライドショーのaspect-ratio強制 */
.custom-slideshow,
.slideshow-wrapper,
section[class*="slideshow"] {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media screen and (max-width: 749px) {
  .custom-slideshow,
  .slideshow-wrapper,
  section[class*="slideshow"] {
    aspect-ratio: 4 / 3;
  }
}

/* MainContent内のアプリブロック全体を隔離 */
#shopify-section-template--main .shopify-app-block {
  contain: layout style;
}

/* ============================================
   CLS Prevention: Disable ALL scroll-trigger animations (2026-04-08)
   base.css sets .scroll-trigger.animate--fade-in/slide-in to opacity:0.01
   which causes massive CLS (0.98) when JS later makes them visible.
   ============================================ */
.scroll-trigger.animate--fade-in,
.scroll-trigger.animate--slide-in {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in,
.scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
  animation: none !important;
}

/* === LP Theme Additions (do not modify base font sizes) === */

/* Brand Showcase title */
.brand-showcase__title,
#shopify-section-slideshow_GPEbCb h2,
#shopify-section-slideshow_GPEbCb .brand-showcase__title {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  font-size: 1.8rem !important;
  letter-spacing: 0.08em !important;
  color: #2C2A27 !important;
  text-shadow: none !important;
}

/* Header: show logo small */
.header__heading-logo-wrapper {
  max-width: 60px !important;
}
.header__heading-link .h2 {
  display: none !important;
}

/* Hide dropdown caret arrows in header menu */
.header__menu-item .icon-caret,
.header__menu-item svg.icon-caret,
details.header__menu-item summary svg {
  display: none !important;
}

/* Header menu: no-wrap only */
.header__inline-menu .header__menu-item {
  white-space: nowrap !important;
  padding: 6px 12px !important;
}

/* Header compact padding */
@media screen and (min-width: 990px) {
  .header {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .header-wrapper {
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
}

/* Remove gap between header and store_header hero */
#MainContent > .shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* LP Section Spacing - force tight layout */
body.template-index .shopify-section {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
body.template-index .shopify-section .section-template--*,
body.template-index .shopify-section > div,
body.template-index .shopify-section > section {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
body.template-index .custom-liquid {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
body.template-index .brand-showcase {
  padding-top: 8px !important;
}

/* Reviews carousel spacing */
.jdgm-carousel-wrapper,
.jdgm-testimonials-carousel {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Unify view-all buttons to pill style */
.collection__view-all a,
.center a.link.underlined-link {
  display: inline-block !important;
  padding: 10px 28px !important;
  border: 1px solid #2C2A27 !important;
  border-radius: 40px !important;
  color: #2C2A27 !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.06em !important;
  transition: all 0.2s !important;
}
.collection__view-all a:hover,
.center a.link.underlined-link:hover {
  background: #2C2A27 !important;
  color: #FAF8F5 !important;
}

/* Remove gap between header and store_header hero */
.header-wrapper {
  margin-bottom: 0 !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.shopify-section-group-header-group {
  margin-bottom: 0 !important;
}
.shopify-section-group-header-group + main,
.shopify-section-group-header-group + #MainContent,
#MainContent {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#MainContent > .shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#MainContent > .shopify-section:first-child .shopify-section__custom-liquid,
#MainContent > .shopify-section:first-child .custom-liquid {
  padding-top: 0 !important;
}
.header.header--top-center,
.header {
  border-bottom: none !important;
}
.section-header {
  margin-bottom: 0 !important;
  border-bottom: none !important;
}
/* Fix もっと見る button centering and spacing */
.collection__view-all {
  text-align: center !important;
  width: 100% !important;
  margin-top: 16px !important;
}
.collection__view-all a {
  text-align: center !important;
}

/* Fix もっと見る button: center and add spacing */
.center.collection__view-all,
.collection__view-all {
  text-align: center !important;
  margin-top: 20px !important;
  display: block !important;
}

/* Lisa Larson nav heading size override */
.ll-home__title {
  font-size: 1.56rem !important;
}
@media (max-width: 749px) {
  .ll-home__title {
    font-size: 1.3rem !important;
  }
}

/* Fix: reviews_heading custom liquid title - hide if Judge.me shows its own */
.reviews-heading-custom {
  display: none !important;
}

/* Fix: はじめての方へ heading size to match others */
.ft__title {
  font-size: 1.56rem !important;
  font-family: Georgia, 'Times New Roman', serif !important;
}

/* Fix: ジャンル別一覧 heading font */
.tsm-cat-icon__title {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
}

/* Cart drawer: prevent from polluting document structure */
cart-drawer {
  position: fixed !important;
  z-index: 999 !important;
  contain: layout style paint !important;
}
cart-drawer .drawer {
  visibility: hidden;
}
cart-drawer .drawer.active {
  visibility: visible;
}

/* Country/region selector: collapse when not interacted */
.localization-form .disclosure__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.localization-form .disclosure[open] .disclosure__list {
  max-height: 300px;
}

/* Unify ALL "もっと見る" buttons to pill style */
.collection__view-all a,
.collection__view-all .button,
.collection__view-all .button--secondary,
.center a.link.underlined-link,
a.full-unstyled-link.underlined-link {
  display: inline-block !important;
  padding: 10px 28px !important;
  border: 1px solid #2C2A27 !important;
  border-radius: 40px !important;
  color: #2C2A27 !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.06em !important;
  transition: all 0.2s !important;
  background: transparent !important;
  min-width: auto !important;
  width: auto !important;
  min-height: auto !important;
}
.collection__view-all a:hover,
.collection__view-all .button:hover,
.collection__view-all .button--secondary:hover,
.center a.link.underlined-link:hover,
a.full-unstyled-link.underlined-link:hover {
  background: #2C2A27 !important;
  color: #FAF8F5 !important;
}

/* Lisa Larson special: merge nav + featured sections */
.ll-home {
  padding-bottom: 4px !important;
  margin-bottom: 0 !important;
}
/* Remove top padding/margin from the featured collection following lisa_larson_nav */
body.template-index .shopify-section + .shopify-section .featured-collection {
  padding-top: 4px !important;
}

/* Tighten gap between "いまご覧いただける作品" and product carousel */
.featured-collection:has(.title:empty),
.featured-collection .title:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.featured-collection .collection__title:empty + .slider-mobile-gutter {
  margin-top: 0 !important;
}
/* Target all featured-collection sections on index: reduce top spacing */
body.template-index .featured-collection .collection {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.template-index .featured-collection .slider-mobile-gutter {
  margin-top: 0 !important;
}

/* Lisa Larson guide link - make it clearly a link */
.ll-home__guide a {
  color: #2C2A27 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.ll-home__guide a:hover {
  color: #5C6B5E !important;
}

/* "いまご覧いただける作品" bridge text - larger font */
.ll-home p[style*="いまご覧いただける"] {
  font-size: 1.2rem !important;
}

/* Hide ALL country/region/localization selectors everywhere */
.localization-selector,
.localization-form,
localization-form,
.disclosure[data-disclosure-localization],
.footer__localization,
.header__icon--localization,
[data-disclosure-localization],
.country-selector,
noscript .localization-form,
.shopify-section-header-group localization-form {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  width: 0 !important;
}

/* Force remove gap between lisa nav bridge and featured carousel */
body.template-index .shopify-section .section[class*="section-"] {
  padding-top: 8px !important;
}
body.template-index .featured-collection .section-template--padding {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
body.template-index .collection.section-template--padding {
  padding-top: 8px !important;
}

/* Fix: lisa_larson_featured section padding - exact ID target */
#shopify-section-template--20510223302823__lisa_larson_featured {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#shopify-section-template--20510223302823__lisa_larson_featured .section-template--padding,
#shopify-section-template--20510223302823__lisa_larson_featured .collection {
  padding-top: 4px !important;
}

/* Mobile: remove ALL gaps between header and hero */
@media screen and (max-width: 749px) {
  .shopify-section-group-header-group {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  #MainContent {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  #MainContent > .shopify-section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .header-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }
}

/* FINAL: Force ALL index page h2 to Georgia serif weight 400 */
body.template-index h2,
body.template-index h2.h2,
body.template-index h2.title,
body.template-index h2.title.h2,
body.template-index h2.title.inline-richtext,
body.template-index h2.title.inline-richtext.h2,
body.template-index h2.section-title,
body.template-index h2.ll-home__title,
body.template-index h2.tsm-cat-icon__title,
body.template-index h2.ft__title,
body.template-index .shopify-section h2,
body.template-index .shopify-section h2.h2 {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
}

/* FINAL: Force remove ALL gaps on index page */
body.template-index .header-wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
body.template-index .shopify-section-group-header-group {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body.template-index #MainContent {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.template-index #MainContent > .shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.template-index #MainContent > .shopify-section {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}
body.template-index .section-template--padding {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
body.template-index #MainContent > .shopify-section:first-child .section-template--padding {
  padding-top: 0 !important;
}

/* ROOT FIX: Override heading CSS variables on index page */
body.template-index {
  --font-heading-family: Georgia, 'Times New Roman', serif;
  --font-heading-weight: 400;
  --font-heading-style: normal;
}

/* ROOT FIX: Remove section gaps on index page */
body.template-index #MainContent > .shopify-section:first-child {
  margin-top: -1px !important;
}

/* Force ll-home__title to use CSS variable (override inline style) */
.ll-home__title {
  font-family: var(--font-heading-family) !important;
  font-weight: var(--font-heading-weight) !important;
}

/* Cleanup: localization parent containers that may leave empty space */
.header__icon--localization,
.header__localization,
.footer__column--localization,
.footer__localization-wrapper,
.disclosure:has(localization-form),
li:has(.localization-form),
div:has(> localization-form):not(.header):not(.footer):not(#MainContent) {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Fix: gap between dark hero and brand showcase - target exact section IDs */
#shopify-section-template--20510223302823__store_header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#shopify-section-template--20510223302823__slideshow_GPEbCb {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#shopify-section-template--20510223302823__slideshow_GPEbCb .brand-showcase,
#shopify-section-template--20510223302823__slideshow_GPEbCb > div {
  padding-top: 4px !important;
  margin-top: 0 !important;
}

/* セクション見出しフォント統一 (2026-04-19) */
.na__title,
.ft__title,
.tsm-cat-icon__title {
  font-size: 1.8rem !important;
  color: #2C2A27 !important;
  letter-spacing: 0.08em !important;
  font-family: var(--font-heading-family) !important;
  font-weight: var(--font-heading-weight) !important;
}

