/** Shopify CDN: Minification failed

Line 1845:0 All "@import" rules must come first

**/
/* ============================================
   Hello Song Brand CSS — LP品質の共通スタイル
   2026-04-24 サイ(CD) + レン(COO) 策定
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&family=Shippori+Mincho:wght@400;500;600&display=swap');

:root {
  --hs-bg:        #ffffff;
  --hs-bg-cream:  #faf7f0;
  --hs-bg-alt:    #f3ede2;
  --hs-bg-deep:   #1a1612;
  --hs-text:      #1a1612;
  --hs-text-sub:  #5a5147;
  --hs-text-muted:#9c9388;
  --hs-accent:    #b24a2e;
  --hs-line:      #e4ddd0;
}

/* 和欧混植 root */
.hs-brand, .hs-brand * {
  font-family: 'Shippori Mincho', 'Inter', -apple-system, serif;
  color: var(--hs-text);
  line-height: 1.85;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

/* 和文改行の整え */
.hs-brand { line-break: strict; hanging-punctuation: allow-end; }
.hs-brand h1, .hs-brand h2, .hs-brand h3, .hs-brand .hs-h {
  text-wrap: balance; word-break: auto-phrase;
}
.hs-brand p, .hs-brand .hs-body {
  text-wrap: pretty; word-break: auto-phrase; overflow-wrap: anywhere;
}

/* 雑誌的 Section label（Hello! 01 — Philosophy 等） */
.hs-section-label {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--hs-text-muted); font-weight: 500;
  margin-bottom: 32px;
}
.hs-section-label::before {
  content: ''; width: 32px; height: 1px; background: var(--hs-text-muted);
}

/* Eyebrow（小さな頭書き） */
.hs-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px; letter-spacing: 0.3em;
  color: var(--hs-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* 大見出し */
.hs-h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 500; line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}
.hs-h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 500; line-height: 1.45;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
}
.hs-h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500; line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}

/* 欧文イタリック（英語副題・引用 等） */
.hs-english {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.1em;
  color: var(--hs-text-sub);
}

/* 本文 */
.hs-body {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px; line-height: 2.1;
  color: var(--hs-text-sub);
  letter-spacing: 0.03em;
}
.hs-body + .hs-body { margin-top: 18px; }
.hs-body em { font-style: italic; color: var(--hs-text); }
.hs-body strong { font-weight: 500; color: var(--hs-text); }

/* Spec list（英米雑誌風 dl） */
.hs-spec { margin: 24px 0; border-top: 1px solid var(--hs-line); }
.hs-spec dl { display: grid; grid-template-columns: 180px 1fr; }
.hs-spec dt, .hs-spec dd {
  padding: 14px 0; border-bottom: 1px solid var(--hs-line);
  font-size: 13px;
}
.hs-spec dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; letter-spacing: 0.18em;
  color: var(--hs-text-muted); font-weight: 400;
}
.hs-spec dd {
  font-family: 'Inter', sans-serif;
  color: var(--hs-text); letter-spacing: 0.02em; line-height: 1.6;
}
@media (max-width: 640px) {
  .hs-spec dl { grid-template-columns: 110px 1fr; }
  .hs-spec dt, .hs-spec dd { font-size: 12px; padding: 11px 0; }
}

/* Spaced Title（大型装飾タイトル） */
.hs-spaced {
  text-align: center;
  padding: clamp(60px, 10vh, 120px) 20px;
}
.hs-spaced-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 7vw, 92px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--hs-text);
}
.hs-spaced-title.italic { font-style: italic; }
.hs-spaced-tag {
  font-family: 'Shippori Mincho', serif;
  font-size: 12px; letter-spacing: 0.4em;
  color: var(--hs-text-muted);
  margin-top: 28px;
}

/* Pairing cards（暗背景のカード群） */
.hs-pair-section {
  background: var(--hs-bg-deep);
  color: white;
  padding: 72px 24px;
  margin: 32px 0;
}
.hs-pair-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hs-pair-card { padding: 32px 20px; }
.hs-pair-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hs-pair-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px; font-weight: 500;
  color: white;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.hs-pair-card p {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px; line-height: 1.9;
  color: rgba(255,255,255,0.62);
}
@media (max-width: 640px) { .hs-pair-grid { grid-template-columns: 1fr; } }

/* セクション共通の内側余白 */
.hs-section { padding: clamp(60px, 8vh, 100px) 0; }
.hs-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.hs-wide   { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* 2カラム grid（左=ラベル/見出し、右=本文） */
.hs-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: start;
}
@media (max-width: 760px) { .hs-2col { grid-template-columns: 1fr; gap: 32px; } }

/* Divider */
.hs-divider {
  text-align: center; margin: 48px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 11px; letter-spacing: 0.4em;
  color: var(--hs-text-muted); text-transform: uppercase;
}
.hs-divider::before, .hs-divider::after {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--hs-text-muted);
  vertical-align: middle; margin: 0 12px;
}

/* CTA ボタン */
.hs-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--hs-text);
  color: white !important;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--hs-text);
  text-decoration: none !important;
}
.hs-btn:hover { background: transparent; color: var(--hs-text) !important; }
.hs-btn.outline { background: transparent; color: var(--hs-text) !important; }
.hs-btn.outline:hover { background: var(--hs-text); color: white !important; }

/* 段組み内の写真枠 */
.hs-photo {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--hs-bg-alt);
}
.hs-photo.wide { aspect-ratio: 4/3; }

/* fade-in on scroll（IntersectionObserver 連動） */
.hs-fade { opacity: 0; transform: translateY(20px); transition: all .8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hs-fade.is-visible { opacity: 1; transform: translateY(0); }


/* ============================================
   Footer - バランス調整（2026-04-24）
   ============================================ */

/* フッター全体の呼吸を広げる */
.footer {
  padding-top: clamp(48px, 7vh, 80px) !important;
  padding-bottom: clamp(36px, 5vh, 60px) !important;
  font-family: 'Shippori Mincho', 'Inter', serif;
}

/* フッター内のカラム間隔を広げる */
.footer .page-width,
.footer__content-top {
  padding-left: clamp(20px, 4vw, 48px) !important;
  padding-right: clamp(20px, 4vw, 48px) !important;
}
.footer__blocks-wrapper,
.footer .grid {
  gap: clamp(32px, 4vw, 64px) !important;
}

/* 各ブロックの高さ合わせ＋上部余白 */
.footer-block {
  padding-top: 8px;
}

/* 見出しの品良く */
.footer-block__heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 12px !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
/* 色 scheme-1 が白背景のとき */
.color-background-1 .footer-block__heading,
.footer.color-background-1 .footer-block__heading {
  color: var(--hs-text-muted, #9c9388) !important;
}

/* 本文テキストの改行・行間・サイズ */
.footer-block__details-content,
.footer-block__details-content p,
.footer-block li,
.footer-block a {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 13.5px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.035em !important;
}

/* <p> 要素ごとの下余白で視覚的リズム */
.footer-block__details-content p {
  margin-bottom: 10px !important;
}
.footer-block__details-content p:last-child {
  margin-bottom: 0 !important;
}

/* strong は太すぎ問題 → 上品に */
.footer-block__details-content strong {
  font-weight: 500 !important;
}

/* link_list のリンク間隔 */
.footer-block__details-content ul,
.footer-block--menu ul {
  display: grid !important;
  gap: 6px !important;
  padding: 0 !important;
  list-style: none !important;
}
.footer-block__details-content ul li,
.footer-block--menu ul li {
  padding: 2px 0 !important;
}

/* newsletter 欄の余白 */
.footer__blocks-wrapper + .footer__content-bottom-wrapper,
.footer__content-bottom {
  margin-top: 40px !important;
  padding-top: 32px !important;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ブランド情報ブロックの改行 */
.footer-block--brand-information p {
  line-height: 2.05 !important;
  letter-spacing: 0.03em !important;
}

/* SNSアイコン */
.footer .list-social__link {
  padding: 8px 12px 8px 0 !important;
}

/* モバイル */
@media (max-width: 749px) {
  .footer { padding-top: 56px !important; padding-bottom: 40px !important; }
  .footer-block { margin-bottom: 32px !important; }
  .footer-block__heading { margin-bottom: 16px !important; }
  .footer-block__details-content,
  .footer-block__details-content p,
  .footer-block li,
  .footer-block a {
    font-size: 13px !important;
    line-height: 1.95 !important;
  }
}

/* フッターのコピーライト */
.copyright__content {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  opacity: 0.5 !important;
}


/* ============================================
   Product / Collection / Blog — LP タイポ統一
   ============================================ */

/* 商品説明エリア・コレクション説明・記事本文 */
.product__description,
.product__description p,
.product__description ul,
.product__description li,
.product__description strong,
.product__description em,
.collection__description,
.collection__description p,
.article__content,
.article__content p,
.article-card__content,
.article-card__excerpt,
.rte,
.rte p,
.rte ul,
.rte li {
  font-family: 'Shippori Mincho', serif !important;
  line-height: 1.95 !important;
  letter-spacing: 0.025em !important;
  font-feature-settings: "palt";
}

.product__description,
.collection__description,
.article__content,
.rte {
  color: var(--hs-text-sub, #5a5147) !important;
}

.product__description p,
.article__content p,
.rte p {
  margin-bottom: 14px !important;
}
.product__description strong,
.article__content strong,
.rte strong {
  font-weight: 500 !important;
  color: var(--hs-text, #1a1612) !important;
}
.product__description em,
.article__content em,
.rte em {
  font-style: italic !important;
  color: var(--hs-text, #1a1612) !important;
}

/* 商品タイトル */
.product__title h1,
.product__title {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.45 !important;
}

/* 商品価格 */
.product__info-wrapper .price,
.price__regular .price-item {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
}

/* 商品ページ内の <hr> を品よく */
.product__description hr,
.article__content hr,
.rte hr {
  border: none !important;
  height: 1px !important;
  background: var(--hs-line, #e4ddd0) !important;
  margin: 32px auto !important;
  max-width: 100px !important;
}

/* 商品の variant 選択 */
.product-form__input {
  font-family: 'Shippori Mincho', serif !important;
}
.product-form__input .form__label {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  color: var(--hs-text-muted, #9c9388) !important;
}

/* variant_pills の上品化 */
.variant-input-wrapper label,
input[type=radio] + label {
  font-family: 'Shippori Mincho', serif !important;
  letter-spacing: 0.04em !important;
}

/* 購入ボタン */
.product-form__submit,
.shopify-payment-button__button {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

/* カード共通（一覧） */
.card__heading,
.card__heading a,
.card-information__heading,
.card-information__text {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.55 !important;
}
.card .price {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  font-size: 14px !important;
}

/* コレクション一覧タイトル */
.collection-hero__title,
.main-page-title,
.collection__title h1 {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.4 !important;
}

/* 記事 card */
.article-card__title,
.article-card__title a,
.blog-title {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.5 !important;
}
.article-card__info,
.article-template__author,
.article-card-wrapper time {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  letter-spacing: 0.12em !important;
  font-size: 12px !important;
}

/* 記事本文の見出し */
.article__content h2,
.article-template__title {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.4 !important;
  margin: 40px 0 20px !important;
}
.article__content h3 {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  margin: 30px 0 14px !important;
}

/* 引用 */
blockquote {
  border-left: 2px solid var(--hs-accent, #b24a2e) !important;
  padding-left: 20px !important;
  font-style: italic !important;
  color: var(--hs-text-sub, #5a5147) !important;
  margin: 20px 0 !important;
}


/* ============================================
   Header Menu — バランス調整
   ============================================ */
.header__menu-item,
.header__menu-item span {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  font-weight: 400 !important;
}
.header__inline-menu {
  gap: 2px !important;
}
.header__inline-menu > li {
  padding: 0 4px !important;
}
.header__menu-item {
  padding: 10px 10px !important;
}
.header__menu-item:hover {
  color: var(--hs-accent, #b24a2e) !important;
}

/* アナウンスバー品良く */
.announcement-bar__message,
.announcement-bar__announcement {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  font-weight: 400 !important;
  padding: 10px 16px !important;
}

/* モバイル */
@media (max-width: 749px) {
  .announcement-bar__message,
  .announcement-bar__announcement {
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
  }
}


/* ============================================
   Targeted Fixes — 違和感解剖と修正（2026-04-25）
   ============================================ */

/* ---- 違和感1: Hero の文字 contrast 弱い・line-height 詰まり ---- */
.banner__heading {
  font-family: 'Shippori Mincho', serif !important;
  letter-spacing: 0.06em !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.banner__text.rte.body {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  letter-spacing: 0.12em !important;
  font-size: clamp(14px, 1.6vw, 20px) !important;
  font-weight: 400 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
/* Hero の overlay opacity 40 → 50（視認性UP） */
.banner__media::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45)) !important;
}

/* ---- 違和感2: rich-text セクション（Subscription/Story）の余白詰まり ---- */
.rich-text__caption {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  letter-spacing: 0.32em !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: var(--hs-text-muted, #9c9388) !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  position: relative;
  padding-left: 44px;
  display: inline-block;
}
.rich-text__caption::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 32px; height: 1px;
  background: var(--hs-text-muted, #9c9388);
}

.rich-text__heading {
  font-family: 'Shippori Mincho', serif !important;
  letter-spacing: 0.06em !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  font-size: clamp(28px, 4vw, 52px) !important;
  margin-bottom: 24px !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text__text {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 15px !important;
  line-height: 2.1 !important;
  letter-spacing: 0.04em !important;
  color: var(--hs-text-sub, #5a5147) !important;
  max-width: 580px;
  margin: 0 auto 32px !important;
}

/* セクション間の padding を強める */
.shopify-section .rich-text {
  padding-top: clamp(72px, 10vh, 120px) !important;
  padding-bottom: clamp(72px, 10vh, 120px) !important;
}

/* ---- 違和感3: Featured Collection 「Shop」タイトル弱い ---- */
.collection .title-wrapper-with-link h2,
.collection h2.title {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.5 !important;
  text-align: center !important;
  margin-bottom: 48px !important;
}
.section-template--27069915529495__featured_collection-padding,
.collection .page-width {
  padding-top: clamp(60px, 8vh, 100px) !important;
  padding-bottom: clamp(60px, 8vh, 100px) !important;
}

/* ---- 違和感4: 商品カードの h5 → 上品化 ---- */
.card__heading.h5,
.card__heading,
.card__heading a {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.55 !important;
  font-size: 15px !important;
}
.card .price__regular,
.card-information .price {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 13.5px !important;
  letter-spacing: 0.05em !important;
  font-weight: 400 !important;
  margin-top: 6px !important;
}
.card-information {
  padding: 14px 8px 0 !important;
}
/* グリッド内のカード間隔 */
.product-grid {
  gap: clamp(20px, 3vw, 40px) !important;
}

/* ---- 違和感5: ボタンのコントラスト・余白 ---- */
.banner__buttons .button,
.rich-text__buttons .button {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 16px 36px !important;
  border-radius: 0 !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.banner__buttons .button--secondary,
.rich-text__buttons .button--secondary {
  background: transparent !important;
  border: 1px solid currentColor !important;
}

/* ---- 違和感6: Newsletter セクション 上品化 ---- */
.newsletter__wrapper {
  padding-top: clamp(60px, 7vh, 80px) !important;
  padding-bottom: clamp(60px, 7vh, 80px) !important;
}
.newsletter h2 {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 16px !important;
}
.newsletter__subheading,
.newsletter p {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 14px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.03em !important;
  color: var(--hs-text-sub, #5a5147) !important;
  margin-bottom: 28px !important;
}
.newsletter-form__field-wrapper input {
  font-family: 'Shippori Mincho', serif !important;
  border-radius: 0 !important;
  border: 1px solid var(--hs-line, #e4ddd0) !important;
}
.newsletter-form__button {
  border-radius: 0 !important;
}

/* ---- 違和感7: モバイル mobile のセクション padding 削減 ---- */
@media (max-width: 749px) {
  .shopify-section .rich-text { padding: 56px 16px !important; }
  .rich-text__heading { font-size: 26px !important; }
  .product-grid { gap: 16px !important; }
  .card__heading.h5 { font-size: 13.5px !important; }
}

/* ---- 違和感8: ページ全体のスクロール感 / リンクhover ---- */
a { transition: color 0.2s ease !important; }
a:hover { color: var(--hs-accent, #b24a2e) !important; }

/* ---- 違和感9: 全セクションに微フェードイン ---- */
.scroll-trigger.animate--fade-in,
.scroll-trigger.animate--slide-in {
  transition-duration: 0.6s !important;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ---- 違和感10: 余白の最終調整（セクション境目） ---- */
.shopify-section + .shopify-section { margin-top: 0; }
.shopify-section .color-background-2 { background: var(--hs-bg-cream, #faf7f0) !important; }


/* ============================================
   Product Detail Page — エディトリアル品質化（2026-04-25）
   ============================================ */

/* 商品ページ全体の上下余白 */
.product {
  padding-top: clamp(40px, 6vh, 72px) !important;
  padding-bottom: clamp(60px, 8vh, 100px) !important;
}

/* 商品タイトル */
.product__title h1,
.product__title {
  font-family: 'Shippori Mincho', serif !important;
  font-size: clamp(24px, 3.5vw, 40px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.4 !important;
  margin-bottom: 24px !important;
  text-wrap: balance;
  word-break: auto-phrase;
}

/* バリアント選択（容量など）の枠 */
.product-form__input--pill input[type=radio] + label,
.product-form__input--swatch label {
  border-radius: 0 !important;
  border: 1px solid var(--hs-line, #e4ddd0) !important;
  font-family: 'Shippori Mincho', serif !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  padding: 12px 18px !important;
  transition: all .25s ease !important;
}
.product-form__input--pill input[type=radio]:checked + label {
  background: var(--hs-text, #1a1612) !important;
  color: white !important;
  border-color: var(--hs-text, #1a1612) !important;
}
.product-form__input--pill input[type=radio]:hover + label,
.product-form__input--swatch label:hover {
  border-color: var(--hs-accent, #b24a2e) !important;
}

/* "Variant" ラベル */
.product-form__input .form__label,
.product-form__input legend {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 12px !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--hs-text-muted, #9c9388) !important;
  margin-bottom: 10px !important;
  font-weight: 400 !important;
}

/* 価格（大きく上品に） */
.price__regular .price-item--regular,
.product__info-wrapper .price {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 22px !important;
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
  color: var(--hs-text, #1a1612) !important;
}
.product__tax {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  color: var(--hs-text-muted, #9c9388) !important;
}

/* 数量入力 */
.quantity__input {
  font-family: 'Shippori Mincho', serif !important;
  border: 1px solid var(--hs-line, #e4ddd0) !important;
  background: white !important;
}

/* カートに追加ボタン */
.product-form__buttons .product-form__submit,
.product-form__submit {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  padding: 18px 32px !important;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* "詳細" 折りたたみエリア */
.product__accordion summary {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  font-weight: 500 !important;
  border-bottom: 1px solid var(--hs-line, #e4ddd0) !important;
  padding: 16px 0 !important;
}

/* 商品画像 */
.product__media {
  border-radius: 0 !important;
}
.product-media-modal {
  background: var(--hs-bg-cream, #faf7f0) !important;
}

/* 関連商品セクション "You may also like" */
.related-products h2,
.complementary-products h2 {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  font-size: clamp(20px, 2.5vw, 32px) !important;
  letter-spacing: 0.06em !important;
  text-align: center !important;
  margin: 60px 0 32px !important;
}
.related-products h2::before,
.complementary-products h2::before {
  content: 'You may also like — ';
  display: block;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--hs-text-muted, #9c9388);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 12px;
}

/* ============================================
   Collection Page — エディトリアル品質化
   ============================================ */

/* コレクションヘッダー */
.collection-hero,
.collection .page-width {
  padding-top: clamp(40px, 6vh, 80px) !important;
}
.collection-hero__title,
.collection-hero h1 {
  font-family: 'Shippori Mincho', serif !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.4 !important;
  text-align: center !important;
  margin-bottom: 16px !important;
}
.collection-hero__description {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 14px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.04em !important;
  color: var(--hs-text-sub, #5a5147) !important;
  text-align: center !important;
  max-width: 580px;
  margin: 0 auto 48px !important;
}

/* コレクション内の商品グリッド */
.collection .product-grid {
  gap: clamp(20px, 3vw, 40px) !important;
}

/* コレクション内のフィルター */
.facets__heading,
.facets__display-button {
  font-family: 'Shippori Mincho', serif !important;
  letter-spacing: 0.06em !important;
}

/* ソートセレクト */
.facet-filters__field select {
  font-family: 'Shippori Mincho', serif !important;
  border: 1px solid var(--hs-line, #e4ddd0) !important;
  border-radius: 0 !important;
}

/* ============================================
   Common — モバイル調整
   ============================================ */
@media (max-width: 749px) {
  .product__title h1 { font-size: 22px !important; }
  .price__regular .price-item--regular { font-size: 18px !important; }
  .product-form__submit { font-size: 11px !important; padding: 16px !important; }
  .related-products h2,
  .complementary-products h2 { font-size: 18px !important; }
  .collection-hero h1 { font-size: 24px !important; }
}


/* ============================================
   Newsletter Form — 横並び（input + button）
   Footer Balance — カラム幅とリズム調整
   ============================================ */

/* Newsletter form: input と button を横並びに */
.newsletter-form__field-wrapper,
.footer-block__newsletter .newsletter-form__field-wrapper {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  max-width: 480px !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.newsletter-form__field-wrapper .field {
  flex: 1 1 auto !important;
  position: relative !important;
}
.newsletter-form__field-wrapper input[type=email] {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1px solid var(--hs-line, #e4ddd0) !important;
  border-right: none !important;
  border-radius: 0 !important;
  font-family: 'Shippori Mincho', serif !important;
  font-size: 14px !important;
  background: white !important;
}
.newsletter-form__button {
  flex: 0 0 auto !important;
  padding: 14px 24px !important;
  border-radius: 0 !important;
  background: var(--hs-text, #1a1612) !important;
  color: white !important;
  border: 1px solid var(--hs-text, #1a1612) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: all .25s ease !important;
}
.newsletter-form__button:hover {
  background: var(--hs-accent, #b24a2e) !important;
  border-color: var(--hs-accent, #b24a2e) !important;
}
.newsletter-form__button .icon {
  display: none !important;
}
.newsletter-form__button::after {
  content: 'Subscribe';
}

/* モバイル：縦に */
@media (max-width: 480px) {
  .newsletter-form__field-wrapper { flex-direction: column !important; gap: 8px !important; }
  .newsletter-form__field-wrapper input[type=email] { border-right: 1px solid var(--hs-line, #e4ddd0) !important; }
  .newsletter-form__button { width: 100% !important; }
}

/* ============================================
   Footer — 4ブロックの幅・リズム調整
   ============================================ */

/* デスクトップで 4等分でなく、ブランド広め・他コンパクト */
@media (min-width: 990px) {
  .footer__blocks-wrapper {
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: clamp(40px, 4vw, 72px) !important;
  }
}

/* タブレット */
@media (min-width: 750px) and (max-width: 989px) {
  .footer__blocks-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
}

/* ブランド情報ブロックの本文を読みやすく */
.footer-block--brand-information .footer-block__details-content,
.footer-block--brand-information p {
  line-height: 2.0 !important;
  letter-spacing: 0.025em !important;
  max-width: 320px;
}

/* 各ブロックの heading の左に細い縦線（雑誌的） */
.footer-block__heading {
  position: relative;
  padding-left: 0 !important;
}

/* 全段で本文の下余白統一 */
.footer-block__details-content > *:not(:last-child) {
  margin-bottom: 8px !important;
}

/* link list の調整 */
.footer-block--menu ul {
  display: grid !important;
  gap: 8px !important;
}
.footer-block--menu ul li a {
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  transition: color .2s ease !important;
}
.footer-block--menu ul li a:hover {
  color: var(--hs-accent, #b24a2e) !important;
}

/* Newsletter section コンテナ */
.footer-block__newsletter {
  text-align: center;
  padding: 0 !important;
  margin-top: 24px !important;
}
.footer-block__newsletter h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 12px !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: var(--hs-text-muted, #9c9388) !important;
  font-weight: 400 !important;
  margin-bottom: 16px !important;
}

/* ホームページの Newsletter セクション全体 */
.newsletter__wrapper {
  text-align: center !important;
}
.newsletter h2,
.newsletter__heading {
  font-family: 'Shippori Mincho', serif !important;
  font-weight: 500 !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 14px !important;
}


/* ============================================
   Hero — コントラスト・統一感の追加調整（2026-04-25 night）
   ============================================ */

/* Hero overlay を強めにグラデで（中央付近に文字が乗る前提） */
.banner__media::after {
  background: linear-gradient(180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.30) 100%) !important;
}

/* Hero heading: コントラスト確保 */
.banner__heading {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.25) !important;
  font-size: clamp(36px, 7vw, 80px) !important;
  letter-spacing: 0.08em !important;
  line-height: 1.5 !important;
}

/* Hero subtext: アナウンスバーと近い書式 (Cormorant Italic, uppercase) */
.banner__text.rte.body {
  color: rgba(255,255,255,0.9) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: clamp(13px, 1.5vw, 17px) !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  margin-top: 16px !important;
  margin-bottom: 32px !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5) !important;
  font-weight: 400 !important;
}

/* Hero ボタンも上品に */
.banner__buttons .button {
  background: rgba(255,255,255,0.95) !important;
  color: var(--hs-text, #1a1612) !important;
  border: 1px solid rgba(255,255,255,0.95) !important;
  letter-spacing: 0.32em !important;
  padding: 16px 36px !important;
}
.banner__buttons .button--secondary {
  background: transparent !important;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.85) !important;
}
.banner__buttons .button:hover {
  background: var(--hs-accent, #b24a2e) !important;
  color: white !important;
  border-color: var(--hs-accent, #b24a2e) !important;
}
.banner__buttons .button--secondary:hover {
  background: rgba(255,255,255,0.95) !important;
  color: var(--hs-text, #1a1612) !important;
}


/* ============================================
   Newsletter Button — 切れ問題修正（2026-04-25）
   ============================================ */

.newsletter-form__button {
  min-width: 130px !important;
  padding: 14px 24px !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
}

/* ::after で Subscribe を追加していた CSS は削除（重複防止） */
.newsletter-form__button::after { content: none !important; }

/* SVG arrow icon を表示・小さく */
.newsletter-form__button .icon,
.newsletter-form__button svg {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  fill: currentColor !important;
}

/* sr-only テキストは画面に出さない（既定通り） */
.newsletter-form__sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ボタンに視覚的な「→」 + "Subscribe" を表示する代替実装 */
.newsletter-form__button .icon {
  display: inline-block !important;
}

/* メールフィールドの幅も再確認 */
.newsletter-form__field-wrapper input[type=email] {
  font-size: 14px !important;
  min-width: 0 !important;
}


/* ============================================
   Footer — レイアウト・バランス徹底修正（2026-04-25）
   ============================================ */

/* デスクトップ：4ブロック を 横一列に並べる（ブランド広め） */
@media (min-width: 990px) {
  .footer__blocks-wrapper {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr !important;
    gap: clamp(40px, 4vw, 72px) !important;
    align-items: start !important;
  }
}

/* タブレット：2x2 grid */
@media (min-width: 750px) and (max-width: 989px) {
  .footer__blocks-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
}

/* ブランド情報ブロック：本文の改行・サイズ統一 */
.footer-block--brand-information .footer-block__details-content,
.footer-block--brand-information p {
  font-size: 13px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.025em !important;
  max-width: 100%;
  word-break: auto-phrase;
  text-wrap: pretty;
}

/* 各 block の見出し統一サイズ */
.footer-block__heading {
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 18px !important;
}

/* 各 block の本文サイズ統一 */
.footer-block__details-content,
.footer-block__details-content p,
.footer-block li,
.footer-block a {
  font-size: 13px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.03em !important;
}

/* link_list（Shop メニュー）：縦並びのまま、ただし詰めて美しく */
.footer-block--menu ul,
.footer-block ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;  /* 2列に分ける */
  gap: 8px 16px !important;
  padding: 0 !important;
  list-style: none !important;
}
.footer-block--menu ul li,
.footer-block ul li {
  padding: 0 !important;
  margin: 0 !important;
}
.footer-block--menu ul li a {
  font-size: 12.5px !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
  display: inline-block !important;
  padding: 4px 0 !important;
}

/* Newsletter 欄：センター配置・余白縮小 */
.footer-block__newsletter {
  margin-top: 0 !important;
  padding: 0 !important;
}
.footer-block__newsletter h2 {
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 14px !important;
}

/* Newsletter form コンパクト化 */
.footer-block__newsletter .newsletter-form__field-wrapper {
  max-width: 100% !important;
}
.footer-block__newsletter input[type=email] {
  font-size: 13px !important;
  padding: 10px 12px !important;
}
.footer-block__newsletter .newsletter-form__button {
  padding: 10px 16px !important;
  font-size: 10px !important;
  min-width: auto !important;
}

/* Footer 全体の上下余白を整える */
.footer {
  padding-top: clamp(64px, 8vh, 96px) !important;
  padding-bottom: clamp(40px, 5vh, 60px) !important;
}

/* Footer __content-bottom（コピーライト等）整理 */
.footer__content-bottom-wrapper,
.footer__content-bottom {
  margin-top: clamp(40px, 5vh, 60px) !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--hs-line, #e4ddd0) !important;
}

/* SNSアイコン余白 */
.footer .social-icons,
.footer-block .social-icons {
  margin-top: 16px !important;
  padding: 0 !important;
}
.footer .list-social__link {
  padding: 6px 12px 6px 0 !important;
}

/* モバイル（749px以下）でブロック間の余白を確保 */
@media (max-width: 749px) {
  .footer__blocks-wrapper {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .footer-block { margin-bottom: 0 !important; }
  .footer-block--menu ul {
    grid-template-columns: 1fr 1fr !important;
  }
}


/* ============================================
   Typography Refinement — 文字サイズ・バランス校正（2026-04-25）
   ============================================ */

/* 大見出し H1 — 雑誌のページタイトル相当 */
.hs-brand .hs-h1 {
  font-size: clamp(28px, 4.2vw, 56px) !important;
  line-height: 1.45 !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 16px !important;
}

/* 中見出し H2 — セクション見出し */
.hs-brand .hs-h2 {
  font-size: clamp(22px, 3.2vw, 38px) !important;
  line-height: 1.5 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 20px !important;
}

/* 小見出し H3 — 段落の見出し（縮小） */
.hs-brand .hs-h3 {
  font-size: clamp(16px, 1.7vw, 19px) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 10px !important;
}

/* 本文 hs-body — 統一して読みやすく */
.hs-brand .hs-body {
  font-size: 14px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.025em !important;
  color: var(--hs-text-sub, #5a5147) !important;
}
.hs-brand .hs-body + .hs-body {
  margin-top: 14px !important;
}

/* 2col grid — 左ラベル・右本文 のバランス改善 */
.hs-brand .hs-2col {
  grid-template-columns: 0.8fr 1.2fr !important;  /* 左ラベル細め */
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: start !important;
  margin-bottom: 28px !important;
}

/* 2col 内の h3 を「ラベル」スタイルに（雑誌的） */
.hs-brand .hs-2col > div:first-child .hs-h3 {
  font-family: 'Shippori Mincho', serif !important;
  font-size: clamp(15px, 1.6vw, 18px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.6 !important;
  padding-top: 4px;
}

/* Spec dl — 文字サイズ統一 */
.hs-brand .hs-spec dl { grid-template-columns: 160px 1fr !important; }
.hs-brand .hs-spec dt {
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
  padding: 14px 0 !important;
}
.hs-brand .hs-spec dd {
  font-size: 13px !important;
  line-height: 1.7 !important;
  padding: 14px 0 !important;
}

/* セクションラベル N°XX — 縮小 */
.hs-brand .hs-section-label {
  font-size: 10px !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 24px !important;
}

/* Eyebrow — 縮小 */
.hs-brand .hs-eyebrow {
  font-size: 12px !important;
  letter-spacing: 0.28em !important;
  margin-bottom: 14px !important;
}

/* Spaced title — 大装飾 */
.hs-brand .hs-spaced-title {
  font-size: clamp(28px, 5vw, 64px) !important;
  letter-spacing: 0.18em !important;
}
.hs-brand .hs-spaced-tag {
  font-size: 10px !important;
  letter-spacing: 0.36em !important;
  margin-top: 20px !important;
}

/* English テキスト */
.hs-brand .hs-english {
  font-size: clamp(13px, 1.4vw, 16px) !important;
  letter-spacing: 0.12em !important;
}

/* hs-section の上下余白を縮小 */
.hs-brand .hs-section {
  padding: clamp(48px, 7vh, 80px) 0 !important;
}

/* divider 余白 */
.hs-brand .hs-divider {
  margin: 32px 0 !important;
  font-size: 10px !important;
  letter-spacing: 0.36em !important;
}

/* モバイル：2col → 1col */
@media (max-width: 760px) {
  .hs-brand .hs-2col { grid-template-columns: 1fr !important; gap: 16px !important; }
  .hs-brand .hs-2col > div:first-child .hs-h3 { font-size: 17px !important; }
  .hs-brand .hs-h1 { font-size: 24px !important; }
  .hs-brand .hs-h2 { font-size: 20px !important; }
  .hs-brand .hs-h3 { font-size: 15px !important; }
  .hs-brand .hs-body { font-size: 13.5px !important; }
}

/* CTA ボタン縮小 */
.hs-brand .hs-btn {
  font-size: 10.5px !important;
  letter-spacing: 0.32em !important;
  padding: 14px 32px !important;
}


/* ============================================
   Typography Fix v2 — サイズ大幅縮小・折返バグ解消（2026-04-25）
   ============================================ */

/* 1文字ずつ縦並びバグの解消 — word-break/overflow-wrap を無効化 */
.hs-brand .hs-body,
.hs-brand p,
.hs-brand div {
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-wrap: pretty !important;
}

/* H1/H2/H3 を大幅縮小 */
.hs-brand .hs-h1 {
  font-size: clamp(22px, 3.2vw, 38px) !important;
  line-height: 1.5 !important;
}
.hs-brand .hs-h2 {
  font-size: clamp(20px, 2.5vw, 30px) !important;
  line-height: 1.55 !important;
}
.hs-brand .hs-h3 {
  font-size: clamp(15px, 1.4vw, 17px) !important;
  line-height: 1.6 !important;
}

/* 2col grid: 50:50 で安定 */
.hs-brand .hs-2col {
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(28px, 4vw, 48px) !important;
}
.hs-brand .hs-2col > div {
  min-width: 0 !important;  /* grid item の overflow バグ防止 */
}

/* 2col 内 H3 もコンパクトに */
.hs-brand .hs-2col > div:first-child .hs-h3 {
  font-size: clamp(15px, 1.5vw, 18px) !important;
}

/* spaced title は装飾を抑え目に */
.hs-brand .hs-spaced {
  padding: clamp(40px, 6vh, 80px) 20px !important;
}
.hs-brand .hs-spaced-title {
  font-size: clamp(22px, 3.5vw, 42px) !important;
  letter-spacing: 0.12em !important;
  text-transform: none !important;  /* 大文字変換やめる */
  font-style: normal !important;
}
.hs-brand .hs-spaced-title.italic {
  font-style: italic !important;
}

/* hs-section 余白も調整 */
.hs-brand .hs-section {
  padding: clamp(40px, 6vh, 72px) 0 !important;
}

/* hs-narrow / hs-wide のパディング調整 */
.hs-brand .hs-narrow,
.hs-brand .hs-wide {
  padding: 0 24px !important;
}

/* English subtitle もコンパクトに */
.hs-brand .hs-english {
  font-size: clamp(12px, 1.2vw, 15px) !important;
  letter-spacing: 0.1em !important;
}

/* eyebrow */
.hs-brand .hs-eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
}


/* ============================================
   uffu準拠リセット — 黒セクション全廃・文字最小化（2026-04-25）
   ============================================ */

/* hs-pair-section の黒背景を全廃 */
.hs-brand .hs-pair-section {
  background: transparent !important;
  color: var(--hs-text, #1a1612) !important;
  padding: clamp(40px, 6vh, 72px) 0 !important;
  margin: 0 !important;
  border-top: 1px solid var(--hs-line, #e4ddd0);
}
.hs-brand .hs-pair-section h2,
.hs-brand .hs-pair-section .hs-h2,
.hs-brand .hs-pair-section h3 {
  color: var(--hs-text, #1a1612) !important;
}
.hs-brand .hs-pair-section .hs-section-label {
  color: var(--hs-text-muted, #9c9388) !important;
}
.hs-brand .hs-pair-section .hs-section-label::before {
  background: var(--hs-text-muted, #9c9388) !important;
}
.hs-brand .hs-pair-card {
  background: var(--hs-bg-cream, #faf7f0) !important;
  padding: 28px 24px !important;
}
.hs-brand .hs-pair-card .num {
  color: var(--hs-text-muted, #9c9388) !important;
  font-size: 10px !important;
  letter-spacing: 0.32em !important;
}
.hs-brand .hs-pair-card h3 {
  color: var(--hs-text, #1a1612) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 8px !important;
}
.hs-brand .hs-pair-card p {
  color: var(--hs-text-sub, #5a5147) !important;
  font-size: 12.5px !important;
  line-height: 1.85 !important;
}

/* H1/H2/H3 を最小化（uffu準拠） */
.hs-brand .hs-h1 {
  font-size: clamp(20px, 2.6vw, 30px) !important;
  line-height: 1.55 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 14px !important;
}
.hs-brand .hs-h2 {
  font-size: clamp(17px, 2vw, 22px) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 14px !important;
}
.hs-brand .hs-h3 {
  font-size: clamp(13px, 1.3vw, 15px) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 8px !important;
}

/* hs-body も少し小さく */
.hs-brand .hs-body {
  font-size: 13.5px !important;
  line-height: 2.0 !important;
}

/* hs-eyebrow / hs-section-label も縮小 */
.hs-brand .hs-eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 12px !important;
}
.hs-brand .hs-section-label {
  font-size: 10px !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 18px !important;
}

/* English subtitle */
.hs-brand .hs-english {
  font-size: clamp(11px, 1.2vw, 13px) !important;
  letter-spacing: 0.12em !important;
}

/* Spec dl サイズ調整 */
.hs-brand .hs-spec dt {
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  padding: 12px 0 !important;
}
.hs-brand .hs-spec dd {
  font-size: 12.5px !important;
  padding: 12px 0 !important;
}

/* hs-section padding 縮小 */
.hs-brand .hs-section {
  padding: clamp(36px, 5vh, 60px) 0 !important;
}

/* hs-divider */
.hs-brand .hs-divider {
  font-size: 9px !important;
  letter-spacing: 0.36em !important;
  margin: 28px 0 !important;
}

/* hs-btn */
.hs-brand .hs-btn {
  font-size: 10px !important;
  letter-spacing: 0.3em !important;
  padding: 12px 28px !important;
}


/* ============================================
   Shopify テーマ全体（Hero/見出し/商品カード等）
   ============================================ */

/* Hero */
.banner__heading,
.banner__text.rte.body {
  font-family: 'Futura', 'Jost', 'Century Gothic', 'Avenir Next',
               'Noto Sans JP', sans-serif !important;
}
.banner__heading {
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}
.banner__text.rte.body {
  font-style: italic !important;
  font-weight: 400 !important;
}

/* rich-text */
.rich-text__heading,
.rich-text__text,
.rich-text__caption {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
}
.rich-text__heading {
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}
.rich-text__caption {
  font-style: italic !important;
}

/* 商品カード */
.card__heading.h5,
.card__heading,
.card__heading a,
.card-information,
.card .price {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
}
.card .price {
  font-style: italic !important;
}

/* 商品ページ */
.product__title,
.product__title h1,
.product__description,
.product__description p,
.product-form__input .form__label,
.price__regular .price-item--regular,
.product__info-wrapper .price,
.product-form__input legend,
.variant-input-wrapper label,
input[type=radio] + label {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
}
.product__title { font-weight: 500 !important; }
.price__regular .price-item--regular,
.product__info-wrapper .price {
  font-style: italic !important;
}

/* コレクションタイトル */
.collection-hero__title,
.main-page-title,
.collection__title h1,
.collection .title-wrapper-with-link h2 {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
  font-weight: 500 !important;
}

/* 記事 */
.article__content,
.article__content p,
.article-card__title,
.article-template__title {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
}
.article-card__info,
.article-template__author {
  font-family: 'Futura', 'Jost', 'Avenir Next', sans-serif !important;
  font-style: italic !important;
}

/* メニュー / ヘッダー */
.header__menu-item,
.header__menu-item span,
.announcement-bar__message {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
}
.header__menu-item,
.header__menu-item span {
  letter-spacing: 0.1em !important;
}
.announcement-bar__message {
  font-style: italic !important;
  letter-spacing: 0.14em !important;
}

/* フッター */
.footer-block__heading,
.footer-block__details-content,
.footer-block li,
.footer-block a,
.footer-block__newsletter h2 {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
}
.footer-block__heading,
.footer-block__newsletter h2 {
  font-style: italic !important;
}

/* ボタン */
.button,
.hs-btn,
.banner__buttons .button,
.rich-text__buttons .button,
.product-form__submit,
.shopify-payment-button__button,
.newsletter-form__button {
  font-family: 'Futura', 'Jost', 'Avenir Next', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.32em !important;
}

/* Spec dl */
.product__description hr,
.hs-brand .hs-spec dl,
.hs-brand .hs-spec dt,
.hs-brand .hs-spec dd,
.cheese-spec dt,
.cheese-spec dd {
  font-family: 'Futura', 'Jost', 'Avenir Next', 'Noto Sans JP', sans-serif !important;
}
.hs-brand .hs-spec dt {
  font-style: italic !important;
}


/* ============================================
   Logo-matched Typography — Futura系列に戻す（2026-04-25）
   優先順位: Futura (Mac) → Jost (Google・everyone) → fallback
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

.hs-brand,
.hs-brand *,
.banner__heading,
.banner__text.rte.body,
.rich-text__heading,
.rich-text__text,
.rich-text__caption,
.card__heading,
.card__heading a,
.card-information,
.card .price,
.product__title,
.product__title h1,
.product__description,
.product__description p,
.product-form__input .form__label,
.price__regular .price-item--regular,
.product__info-wrapper .price,
.product-form__input legend,
.collection-hero__title,
.main-page-title,
.collection__title h1,
.collection .title-wrapper-with-link h2,
.article__content,
.article__content p,
.article-card__title,
.article-template__title,
.article-card__info,
.header__menu-item,
.header__menu-item span,
.announcement-bar__message,
.footer-block__heading,
.footer-block__details-content,
.footer-block li,
.footer-block a,
.footer-block__newsletter h2,
.button,
.hs-btn,
.banner__buttons .button,
.rich-text__buttons .button,
.product-form__submit,
.shopify-payment-button__button,
.newsletter-form__button,
.hs-brand .hs-spec dl,
.hs-brand .hs-spec dt,
.hs-brand .hs-spec dd {
  font-family: 'Futura', 'Jost', 'Century Gothic', 'Avenir Next', 'Avenir',
               'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif !important;
  font-feature-settings: "palt";
}

/* italic 用要素 */
.hs-brand .hs-eyebrow,
.hs-brand .hs-section-label,
.hs-brand .hs-spec dt,
.hs-brand .hs-english,
.hs-brand .hs-divider,
.hs-brand .hs-spaced-tag,
.banner__text.rte.body,
.rich-text__caption,
.card .price,
.price__regular .price-item--regular,
.product__info-wrapper .price,
.article-card__info,
.article-template__author,
.announcement-bar__message,
.footer-block__heading,
.footer-block__newsletter h2 {
  font-style: italic !important;
}

/* 見出しウェイト */
.hs-brand .hs-h1,
.hs-brand .hs-h2,
.hs-brand .hs-h3,
.banner__heading,
.rich-text__heading,
.product__title h1,
.collection-hero h1,
.collection .title-wrapper-with-link h2,
.article-template__title {
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}

/* 本文 */
.hs-brand .hs-body,
.product__description,
.product__description p,
.article__content p,
.footer-block__details-content,
.footer-block__details-content p {
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
}

/* メニュー */
.header__menu-item,
.header__menu-item span {
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
}

/* ボタン */
.button,
.hs-btn,
.product-form__submit,
.newsletter-form__button {
  font-weight: 500 !important;
  letter-spacing: 0.32em !important;
}



/* ============================================
   Mobile Optimization — モバイル全面調整（2026-04-25 night）
   ============================================ */

@media (max-width: 749px) {

  /* ========== Header / Announcement Bar ========== */
  .announcement-bar__message,
  .announcement-bar__announcement {
    font-size: 10.5px !important;
    letter-spacing: 0.06em !important;
    padding: 8px 14px !important;
    line-height: 1.5 !important;
  }

  /* ヘッダー余白縮小 */
  .header {
    padding: 12px 16px !important;
  }
  .header__heading-logo {
    max-width: 110px !important;
  }

  /* ========== Hero ========== */
  .banner__heading {
    font-size: clamp(22px, 6vw, 32px) !important;
    line-height: 1.45 !important;
    letter-spacing: 0.04em !important;
    padding: 0 12px !important;
  }
  .banner__text.rte.body {
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    padding: 0 16px !important;
    line-height: 1.7 !important;
  }
  .banner__buttons {
    flex-direction: row !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 0 16px !important;
  }
  .banner__buttons .button {
    font-size: 9.5px !important;
    letter-spacing: 0.2em !important;
    padding: 12px 20px !important;
    min-width: 130px !important;
  }
  .banner--large .banner__media {
    height: 70vh !important;
    min-height: 480px !important;
  }

  /* ========== Category Grid (4列→2列) ========== */
  .collection-list .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .collection-list .card-wrapper {
    padding: 0 !important;
  }
  .collection-list .card__heading,
  .collection-list .card__heading a {
    font-size: 12.5px !important;
    letter-spacing: 0.04em !important;
  }

  /* ========== Featured Collection (商品グリッド) ========== */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .card__heading.h5,
  .card__heading,
  .card__heading a {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    letter-spacing: 0.03em !important;
  }
  .card-information {
    padding: 10px 4px 0 !important;
  }
  .card .price {
    font-size: 12px !important;
  }

  /* ========== Rich-text セクション ========== */
  .rich-text {
    padding: 48px 16px !important;
  }
  .rich-text__heading {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }
  .rich-text__text {
    font-size: 13px !important;
    line-height: 2.0 !important;
    padding: 0 !important;
  }
  .rich-text__caption {
    font-size: 10px !important;
    letter-spacing: 0.28em !important;
    margin-bottom: 12px !important;
  }
  .rich-text__buttons .button {
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    padding: 12px 24px !important;
  }

  /* Featured collection title */
  .collection .title-wrapper-with-link h2,
  .collection h2.title {
    font-size: 22px !important;
    margin-bottom: 28px !important;
  }

  /* ========== 商品ページ ========== */
  .product__title h1,
  .product__title {
    font-size: 20px !important;
    line-height: 1.45 !important;
  }
  .price__regular .price-item--regular,
  .product__info-wrapper .price {
    font-size: 17px !important;
  }
  .product__description,
  .product__description p {
    font-size: 13px !important;
    line-height: 1.95 !important;
  }
  .product-form__submit {
    font-size: 11px !important;
    letter-spacing: 0.22em !important;
    padding: 16px 24px !important;
  }

  /* ========== Hello Song ブランドページ (.hs-brand) ========== */
  .hs-brand .hs-section {
    padding: 32px 0 !important;
  }
  .hs-brand .hs-narrow,
  .hs-brand .hs-wide {
    padding: 0 18px !important;
  }
  .hs-brand .hs-h1 {
    font-size: 22px !important;
    line-height: 1.5 !important;
  }
  .hs-brand .hs-h2 {
    font-size: 18px !important;
    line-height: 1.55 !important;
  }
  .hs-brand .hs-h3 {
    font-size: 14px !important;
  }
  .hs-brand .hs-body {
    font-size: 13px !important;
    line-height: 1.95 !important;
  }
  .hs-brand .hs-section-label {
    font-size: 10px !important;
    margin-bottom: 14px !important;
  }
  .hs-brand .hs-2col {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-bottom: 22px !important;
  }
  .hs-brand .hs-2col > div:first-child .hs-h3 {
    font-size: 15px !important;
  }
  .hs-brand .hs-spec dl {
    grid-template-columns: 90px 1fr !important;
  }
  .hs-brand .hs-spec dt,
  .hs-brand .hs-spec dd {
    font-size: 11px !important;
    padding: 10px 0 !important;
  }
  .hs-brand .hs-pair-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .hs-brand .hs-pair-card {
    padding: 20px 18px !important;
  }
  .hs-brand .hs-divider {
    font-size: 9px !important;
    margin: 24px 0 !important;
  }
  .hs-brand .hs-btn {
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    padding: 12px 22px !important;
  }

  /* ========== Footer ========== */
  .footer {
    padding: 48px 18px 32px !important;
  }
  .footer__blocks-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-block__heading {
    font-size: 10px !important;
    letter-spacing: 0.26em !important;
    margin-bottom: 12px !important;
  }
  .footer-block__details-content,
  .footer-block__details-content p,
  .footer-block li,
  .footer-block a {
    font-size: 12.5px !important;
    line-height: 1.95 !important;
  }
  .footer-block--menu ul,
  .footer-block ul {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 14px !important;
  }
  .footer-block__newsletter {
    margin-top: 0 !important;
  }

  /* Newsletter mobile: 横並びキープしつつコンパクト */
  .footer-block__newsletter .newsletter-form__field-wrapper,
  .newsletter-form__field-wrapper {
    flex-direction: row !important;
    max-width: 100% !important;
  }
  .newsletter-form__field-wrapper input[type=email] {
    font-size: 12.5px !important;
    padding: 10px 12px !important;
  }
  .newsletter-form__button {
    font-size: 9.5px !important;
    padding: 10px 16px !important;
    letter-spacing: 0.18em !important;
    min-width: 100px !important;
  }

  /* ========== コレクションページ ========== */
  .collection-hero__title,
  .collection-hero h1 {
    font-size: 22px !important;
  }
  .collection-hero__description {
    font-size: 13px !important;
  }

  /* ========== ブログ記事 ========== */
  .article__content,
  .article__content p {
    font-size: 14px !important;
    line-height: 2.0 !important;
  }
  .article-template__title {
    font-size: 22px !important;
    line-height: 1.45 !important;
  }
  .article__content h2 {
    font-size: 18px !important;
  }
  .article__content h3 {
    font-size: 15px !important;
  }

  /* ========== Links ページ（独自スタイル） ========== */
  .hsl-root {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .hsl-hero {
    padding: 36px 24px 28px !important;
  }
  .hsl-hero h1 {
    font-size: 22px !important;
  }
  .hsl-list {
    padding: 28px 18px 18px !important;
  }
  .hsl-link {
    padding: 16px 18px !important;
  }
  .hsl-link .ttl {
    font-size: 14px !important;
  }
  .hsl-link .sub {
    font-size: 11px !important;
  }
  .hsl-foot {
    padding: 18px 18px 32px !important;
  }
}

/* iPhone SE / 小型 (320-380px) 専用 */
@media (max-width: 380px) {
  .banner__heading { font-size: 20px !important; }
  .banner__text.rte.body { font-size: 10px !important; letter-spacing: 0.14em !important; }
  .banner__buttons .button { font-size: 9px !important; padding: 10px 14px !important; min-width: 110px !important; }
  .product-grid { gap: 10px !important; }
  .card__heading.h5 { font-size: 11.5px !important; }
}


/* ============================================
   Footer Brand Description — 他ブロックと文字サイズ統一（2026-04-25）
   ============================================ */
.footer-block--brand-information .footer-block__details-content,
.footer-block--brand-information p,
.footer-block--brand-information .rte {
  font-size: 12.5px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.025em !important;
  font-style: normal !important;
}
.footer-block--brand-information .footer-block__details-content p:not(:last-child) {
  margin-bottom: 10px !important;
}


/* ============================================
   Hello Song ページ：自動 page-title を非表示
   （body_html 内に独自 Hero を持つため）
   ============================================ */

/* 該当 page handle のみ */
body.template-page-about-hello-song .main-page-title,
body.template-page-about-hello-song h1.title,
body.template-page-about-hello-song .page-width > h1.title,
body.template-page-about-hello-song .main-page > .page-width > h1,
body.template-page-brew-guide .main-page-title,
body.template-page-brew-guide h1.title,
body.template-page-contact .main-page-title,
body.template-page-contact h1.title,
body.template-page-wholesale .main-page-title,
body.template-page-wholesale h1.title,
body.template-page-shipping .main-page-title,
body.template-page-shipping h1.title,
body.template-page-links .main-page-title,
body.template-page-links h1.title {
  display: none !important;
}

/* main-page セクションの上余白も縮小 */
body.template-page-about-hello-song .main-page,
body.template-page-brew-guide .main-page,
body.template-page-contact .main-page,
body.template-page-wholesale .main-page,
body.template-page-shipping .main-page,
body.template-page-links .main-page {
  padding-top: 0 !important;
}

/* ============================================
   Footer 文字サイズ完全統一
   ============================================ */
.footer-block__heading,
.footer-block__newsletter h2,
.footer-block--newsletter h2 {
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
  font-style: italic !important;
  font-weight: 400 !important;
  margin-bottom: 18px !important;
  color: var(--hs-text-muted, #9c9388) !important;
}

.footer-block__details-content,
.footer-block__details-content p,
.footer-block__details-content li,
.footer-block__details-content a,
.footer-block li,
.footer-block li a,
.footer-block--menu li,
.footer-block--menu li a,
.footer-block--brand-information p,
.footer-block--brand-information .rte {
  font-size: 12.5px !important;
  line-height: 2.0 !important;
  letter-spacing: 0.025em !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* 段落間の余白統一 */
.footer-block__details-content p:not(:last-child),
.footer-block--brand-information p:not(:last-child) {
  margin-bottom: 10px !important;
}

/* リンクのhoverスタイル */
.footer-block a:hover {
  color: var(--hs-accent, #b24a2e) !important;
}


/* ============================================
   見出しの和文単語分割防止 v2（2026-04-25 night）
   ============================================ */
.rich-text__heading {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  text-wrap: balance !important;
  word-wrap: normal !important;
  line-break: strict !important;
  hanging-punctuation: allow-end !important;
  max-width: 14em !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.banner__heading,
.hs-brand .hs-h1,
.hs-brand .hs-h2,
.hs-brand .hs-h3 {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  text-wrap: balance !important;
  line-break: strict !important;
  hanging-punctuation: allow-end !important;
}



/* ============================================
   見出しの和文単語分割防止 v2（2026-04-25 night）
   ============================================ */
.rich-text__heading {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  text-wrap: balance !important;
  word-wrap: normal !important;
  line-break: strict !important;
  hanging-punctuation: allow-end !important;
  max-width: 14em !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.banner__heading,
.hs-brand .hs-h1,
.hs-brand .hs-h2,
.hs-brand .hs-h3 {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  text-wrap: balance !important;
  line-break: strict !important;
  hanging-punctuation: allow-end !important;
}


/* ============================================
   フッター ブランド説明の和文改行制御（2026-04-25 night）
   ============================================ */
.footer-block--brand-information,
.footer-block--brand-information .footer-block__details-content,
.footer-block--brand-information p {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  line-break: strict !important;
  hanging-punctuation: allow-end !important;
}

.footer-block--brand-information p {
  font-size: 12.5px !important;
  line-height: 1.95 !important;
  letter-spacing: 0.025em !important;
}

.footer-block--brand-information p:not(:last-child) {
  margin-bottom: 14px !important;
}

/* ブランド情報ブロックの最大幅を広げて折返点を減らす */
@media (min-width: 990px) {
  .footer-block--brand-information {
    max-width: 360px !important;
  }
}






/* ============================================
   Featured Collection 3列 — Flexbox方式の上書き（2026-04-25 night）
   Dawn は display:flex + .grid__item で width 制御
   ============================================ */

/* タブレット以上で .grid__item を強制 33.33% */
@media (min-width: 750px) {
  .product-grid > .grid__item,
  .grid.product-grid > .grid__item,
  ul.grid.product-grid > .grid__item {
    width: calc(33.33% - 1rem) !important;
    max-width: calc(33.33% - 1rem) !important;
    flex: 0 0 calc(33.33% - 1rem) !important;
  }
  .grid.product-grid {
    gap: 1.5rem !important;
  }
}

/* デスクトップ（990px以上）でさらに確実に */
@media (min-width: 990px) {
  .product-grid > .grid__item,
  .grid.product-grid > .grid__item {
    width: calc(33.33% - 1.5rem) !important;
    max-width: calc(33.33% - 1.5rem) !important;
    flex: 0 0 calc(33.33% - 1.5rem) !important;
  }
}

/* モバイル（749px以下）は 2列キープ */
@media (max-width: 749px) {
  .product-grid > .grid__item,
  .grid.product-grid > .grid__item {
    width: calc(50% - 0.5rem) !important;
    max-width: calc(50% - 0.5rem) !important;
    flex: 0 0 calc(50% - 0.5rem) !important;
  }
}


/* ============================================
   商品ページ Spec table — Uf-fuスタイル（2026-04-25）
   ============================================ */
.product__description table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 16px 0 !important;
}
.product__description table th,
.product__description table td {
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--hs-line, #e4ddd0) !important;
  text-align: left !important;
  vertical-align: top !important;
  font-size: 12.5px !important;
  line-height: 1.7 !important;
}
.product__description table th {
  width: 130px !important;
  font-family: 'Futura', 'Jost', 'Avenir Next', sans-serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--hs-text-muted, #9c9388) !important;
  letter-spacing: 0.16em !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  padding-right: 16px !important;
}
.product__description table td {
  font-family: 'Futura', 'Jost', 'Avenir Next', sans-serif !important;
  letter-spacing: 0.02em !important;
}
.product__description hr {
  border: none !important;
  height: 1px !important;
  background: var(--hs-line, #e4ddd0) !important;
  margin: 28px auto !important;
  max-width: 80px !important;
}


/* ============================================
   遊び心 5要素（2026-04-25 night）
   1. SVG装飾ディバイダー（hrの代わり）
   2. ホバー浮き上がり（カード）
   3. スクロールフェードイン
   4. テラコッタアクセント強化
   5. セクション番号の装飾
   ============================================ */

/* === 1. 装飾的ディバイダー === */
.hs-brand .hs-divider {
  position: relative;
  margin: 56px auto !important;
  width: 80px;
  height: 1px;
  background: var(--hs-text-muted, #9c9388);
  font-size: 0 !important;
}
.hs-brand .hs-divider::before,
.hs-brand .hs-divider::after {
  content: none !important;
}
.hs-brand .hs-divider > .ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 0 12px;
  font-family: 'Futura', 'Jost', sans-serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--hs-accent, #b24a2e);
  text-transform: uppercase;
}

/* product__description hr もエレガントに */
.product__description hr {
  background: linear-gradient(90deg, transparent 0%, var(--hs-line, #e4ddd0) 30%, var(--hs-text-muted, #9c9388) 50%, var(--hs-line, #e4ddd0) 70%, transparent 100%) !important;
  height: 1px !important;
  border: 0 !important;
  max-width: 120px !important;
  margin: 32px auto !important;
}

/* === 2. ホバーで浮く・揺れる === */
.card-wrapper,
.product-card-wrapper {
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow .4s ease !important;
}
.card-wrapper:hover,
.product-card-wrapper:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px -20px rgba(26, 22, 18, 0.15);
}
.card-wrapper:hover .card__heading {
  color: var(--hs-accent, #b24a2e) !important;
  transition: color .25s ease;
}

/* コレクションカードもホバー */
.collection-list .card-wrapper:hover .card__inner {
  transform: scale(1.02);
  transition: transform .4s ease;
}

/* リンク全般：装飾的アンダーライン */
.product__description a,
.hs-brand a:not(.hs-btn):not(.hs-link),
.article__content a {
  color: var(--hs-text, #1a1612) !important;
  background-image: linear-gradient(transparent 60%, rgba(178, 74, 46, 0.25) 60%) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  text-decoration: none !important;
  transition: background-size .35s ease, color .25s ease !important;
}
.product__description a:hover,
.hs-brand a:not(.hs-btn):not(.hs-link):hover,
.article__content a:hover {
  background-size: 100% 200% !important;
  color: var(--hs-accent, #b24a2e) !important;
}

/* === 3. スクロールフェードイン強化 === */
.scroll-trigger.animate--fade-in,
.scroll-trigger.animate--slide-in {
  transition-duration: 0.9s !important;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* === 4. テラコッタアクセント === */
.banner__heading::after {
  /* Hero見出し下のアクセント */
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  margin: 24px auto 0;
}

/* eyebrow に小さな丸 */
.hs-brand .hs-eyebrow,
.rich-text__caption {
  position: relative;
}
.hs-brand .hs-eyebrow::after {
  content: '·';
  position: absolute;
  margin-left: 8px;
  color: var(--hs-accent, #b24a2e);
  font-size: 1.4em;
}

/* === 5. セクション番号を装飾的に === */
.hs-brand .hs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
}
.hs-brand .hs-section-label::before {
  content: '';
  width: 24px !important;
  height: 1px;
  background: var(--hs-accent, #b24a2e) !important;
}
.rich-text__caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* === 6. ボタンに矢印アニメーション === */
.hs-btn,
.banner__buttons .button,
.rich-text__buttons .button {
  position: relative;
  overflow: hidden;
}
.hs-btn::after,
.button.button--secondary::after {
  content: ' →';
  display: inline-block;
  margin-left: 6px;
  transition: transform .3s ease;
  opacity: 0.7;
}
.hs-btn:hover::after,
.button:hover::after {
  transform: translateX(4px);
  opacity: 1;
}

/* === 7. 引用マーク装飾 === */
.hs-brand em,
.product__description em {
  font-style: italic;
  color: var(--hs-text, #1a1612);
  position: relative;
  padding: 0 2px;
}

/* 大きな引用ブロック */
.hs-brand blockquote,
.product__description blockquote {
  position: relative;
  font-family: 'Futura', 'Jost', serif !important;
  font-style: italic !important;
  font-size: 1.2em !important;
  line-height: 1.7 !important;
  padding: 24px 32px !important;
  margin: 24px 0 !important;
  border-left: 2px solid var(--hs-accent, #b24a2e) !important;
  color: var(--hs-text-sub, #5a5147) !important;
}
.hs-brand blockquote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 3em;
  font-family: 'Cormorant Garamond', serif;
  color: var(--hs-accent, #b24a2e);
  line-height: 1;
  opacity: 0.4;
}

/* === 8. アイテムカードにロゴウォーターマーク === */
.collection-list .card__inner {
  position: relative;
}
.collection-list .card__inner::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, transparent 50%, rgba(178, 74, 46, 0.08) 50%);
  pointer-events: none;
}

/* === 9. 文字選択時のアクセント === */
::selection {
  background: var(--hs-accent, #b24a2e);
  color: white;
}

/* === 10. カーソル（控えめ） === */
@media (hover: hover) and (pointer: fine) {
  a, button, .card-wrapper {
    cursor: pointer;
  }
}

/* === 11. アナウンスバー左右の小マーク === */
.announcement-bar__message::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--hs-accent, #b24a2e);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  opacity: 0.6;
}

/* === 12. フッターロゴ周りに装飾 === */
.footer-block--brand-information::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--hs-accent, #b24a2e);
  margin-bottom: 20px;
  opacity: 0.5;
}


/* ============================================
   さらなる遊び心 + Contact フォーム統合（2026-04-25 night）
   ============================================ */

/* Contact ページの自動 page-title を非表示（漏れ補正） */
body.template-page-contact .main-page-title,
body.template-page-contact .main-page > .page-width > h1,
body.template-page-contact .page-width > h1.title {
  display: none !important;
}

/* Shopify 自動 contact form をブランドに統一 */
.contact-form,
.contact form {
  max-width: 640px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  font-family: 'Futura', 'Jost', sans-serif !important;
}
.contact-form .field,
.contact form .field {
  margin-bottom: 16px !important;
  position: relative;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact form input,
.contact form textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1px solid var(--hs-line, #e4ddd0) !important;
  border-radius: 0 !important;
  font-family: 'Futura', 'Jost', sans-serif !important;
  font-size: 14px !important;
  background: white !important;
  transition: border-color .25s ease !important;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact form input:focus,
.contact form textarea:focus {
  border-color: var(--hs-accent, #b24a2e) !important;
  outline: none !important;
}
.contact-form .field__label,
.contact form label {
  font-family: 'Futura', 'Jost', sans-serif !important;
  font-style: italic !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--hs-text-muted, #9c9388) !important;
}
.contact-form .button,
.contact form button[type=submit] {
  font-family: 'Futura', 'Jost', sans-serif !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  padding: 16px 36px !important;
  border-radius: 0 !important;
  background: var(--hs-text, #1a1612) !important;
  color: white !important;
  border: 1px solid var(--hs-text, #1a1612) !important;
  transition: all .25s ease !important;
}
.contact-form .button:hover,
.contact form button[type=submit]:hover {
  background: var(--hs-accent, #b24a2e) !important;
  border-color: var(--hs-accent, #b24a2e) !important;
  transform: translateY(-2px);
}

/* ============================================
   さらに遊び心 — レイヤー2
   ============================================ */

/* 13. Hero 画像にゆらぎ（subtle） */
@keyframes hero-float {
  0%, 100% { transform: scale(1.0) translateY(0); }
  50% { transform: scale(1.02) translateY(-4px); }
}
.banner__media img {
  animation: hero-float 12s ease-in-out infinite;
}

/* 14. リンクhover時に小さな波紋 */
.product-card-wrapper {
  position: relative;
}
.product-card-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 70%, rgba(178, 74, 46, 0.04));
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card-wrapper:hover::before {
  opacity: 1;
}

/* 15. セクション headers に小さな装飾シンボル */
.hs-brand .hs-section-label::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--hs-accent, #b24a2e);
  border-radius: 50%;
  margin-left: 12px;
  vertical-align: middle;
  opacity: 0.5;
}

/* 16. 4コーナー ornament（ヘッダー直下） */
.banner--large::before,
.banner--large::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 5;
  pointer-events: none;
}
.banner--large::before {
  top: 24px; left: 24px;
  border-right: none;
  border-bottom: none;
}
.banner--large::after {
  bottom: 24px; right: 24px;
  border-left: none;
  border-top: none;
}

/* 17. ボタン押下時の小さな揺らぎ */
.button:active,
.hs-btn:active {
  transform: scale(0.98) translateY(0) !important;
}

/* 18. 画像 hover で微かなスケール */
.card__media img,
.collection-list .card__media img {
  transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.card-wrapper:hover .card__media img {
  transform: scale(1.04);
}

/* 19. footer Instagram アイコンに hover で揺らぎ */
.footer .list-social__link {
  transition: transform .25s ease, color .25s ease !important;
}
.footer .list-social__link:hover {
  transform: translateY(-3px) rotate(-5deg);
  color: var(--hs-accent, #b24a2e) !important;
}

/* 20. アナウンスバーのドットを呼吸 */
@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.announcement-bar__message::before {
  animation: pulse-dot 3s ease-in-out infinite;
}

/* 21. eyebrow に左右ライン装飾（中央寄せ時） */
.hs-narrow.hs-section[style*="text-align:center"] .hs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hs-narrow.hs-section[style*="text-align:center"] .hs-eyebrow::before,
.hs-narrow.hs-section[style*="text-align:center"] .hs-eyebrow::after {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--hs-accent, #b24a2e);
  opacity: 0.5;
}
.hs-narrow.hs-section[style*="text-align:center"] .hs-eyebrow::after {
  margin-left: 0;
}

/* 22. blockquote の引用マーク強化 */
.hs-brand em {
  background: linear-gradient(transparent 70%, rgba(178, 74, 46, 0.12) 70%);
  padding: 0 3px;
}


/* ============================================
   遊び心レイヤー3 — デザイナー本気（2026-04-25 night）
   ============================================ */

/* 23. 読書進捗バー（上部） */
@keyframes scaleX {
  from { transform: scaleX(0); }
  to { transform: scaleX(var(--scroll-progress, 0)); }
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hs-accent, #b24a2e);
  transform-origin: left;
  transform: scaleX(var(--scroll-progress, 0));
  z-index: 9999;
  pointer-events: none;
  transition: transform .1s linear;
}

/* 24. スクロールトップボタン（右下） */
.hs-scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--hs-text, #1a1612);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
  font-family: 'Futura', 'Jost', sans-serif;
}
body.scrolled-down .hs-scroll-top {
  opacity: 0.85;
  transform: translateY(0) scale(1);
}
.hs-scroll-top:hover {
  opacity: 1 !important;
  background: var(--hs-accent, #b24a2e) !important;
  transform: translateY(-3px) scale(1.05) !important;
}

/* 25. 背景にうっすらドットパターン（クリーム背景セクション） */
[class*="color-background-2"],
.color-background-2,
[style*="background:var(--hs-bg-cream)"],
[style*="background: var(--hs-bg-cream)"] {
  background-image: radial-gradient(circle, rgba(178, 74, 46, 0.04) 1px, transparent 1px) !important;
  background-size: 24px 24px !important;
  background-position: 12px 12px !important;
}

/* 26. ロゴ hover で軽く回転＋色変化 */
.header__heading-link {
  display: inline-block;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.header__heading-link:hover {
  transform: rotate(-2deg) scale(1.02);
}

/* 27. セクション番号が出現するアニメーション */
@keyframes drawLine {
  from { width: 0; opacity: 0; }
  to { width: 24px; opacity: 1; }
}
.hs-brand .scroll-trigger.is-visible .hs-section-label::before {
  animation: drawLine .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 28. 価格ホバーで小さく弾む */
@keyframes bounce-price {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.card .price:hover,
.product__info-wrapper .price:hover {
  animation: bounce-price .3s ease-in-out;
}

/* 29. 商品画像の hover で微パララックス */
.card__media {
  overflow: hidden !important;
}
.card-wrapper:hover .card__media img {
  transform: scale(1.06) translateY(-4px);
}

/* 30. ボタンに光のスイープ */
.hs-btn,
.banner__buttons .button,
.button {
  position: relative;
  overflow: hidden !important;
}
.hs-btn::before,
.banner__buttons .button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hs-btn:hover::before,
.banner__buttons .button:hover::before {
  left: 100%;
}

/* 31. card に微小なコーナーアクセント */
.card-wrapper,
.card-wrapper.product-card-wrapper {
  position: relative;
}
.card-wrapper::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 8px; height: 8px;
  border-top: 1px solid rgba(178, 74, 46, 0);
  border-right: 1px solid rgba(178, 74, 46, 0);
  transition: all .35s ease;
  pointer-events: none;
  z-index: 2;
}
.card-wrapper:hover::after {
  width: 16px; height: 16px;
  border-top-color: var(--hs-accent, #b24a2e);
  border-right-color: var(--hs-accent, #b24a2e);
}

/* 32. text selection の小演出（カラーグラデ） */
::selection {
  background: var(--hs-accent, #b24a2e);
  color: white;
  text-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

/* 33. リンク先頭に小さな矢印アイコン（外部リンクのみ） */
a[target="_blank"]:not(.hs-btn):not(.button):not(.hs-link)::after {
  content: ' ↗';
  font-size: 0.85em;
  margin-left: 2px;
  opacity: 0.6;
  transition: transform .25s ease;
  display: inline-block;
}
a[target="_blank"]:not(.hs-btn):not(.button):not(.hs-link):hover::after {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* 34. アニメーション disabled prefers-reduced-motion対応 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================
   遊び心レイヤー4 — デザイナーInstagrammer風（2026-04-25 night）
   ============================================ */

/* 35. 手書き風 squiggle 下線（強調語に） */
.hs-brand em,
.product__description em,
.article__content em {
  position: relative;
  background: none !important;
  padding: 0 !important;
  font-style: italic;
}
.hs-brand em::after,
.product__description em::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 6'><path d='M0,3 Q10,0 20,3 T40,3 T60,3 T80,3' stroke='%23b24a2e' stroke-width='1.5' fill='none' opacity='0.6'/></svg>");
  background-repeat: repeat-x;
  background-size: 80px 6px;
  pointer-events: none;
}

/* 36. ランダムな小さな星マーカー（セクションラベル横） */
.hs-brand .hs-section-label::after {
  content: '✦' !important;
  font-size: 8px !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  color: var(--hs-accent, #b24a2e) !important;
  margin-left: 8px !important;
  opacity: 0.7 !important;
  vertical-align: middle !important;
  display: inline-block !important;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* 37. 商品カードに微妙な傾き（ポラロイド感） */
.collection-list .card-wrapper {
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.collection-list .card-wrapper:nth-child(odd):hover {
  transform: translateY(-6px) rotate(-0.8deg) !important;
}
.collection-list .card-wrapper:nth-child(even):hover {
  transform: translateY(-6px) rotate(0.8deg) !important;
}

/* 38. h2/h3 大見出しに装飾用引用マーク（左側） */
.hs-brand .hs-h2,
.rich-text__heading {
  position: relative;
}
.hs-brand .hs-h2::before {
  content: '✿';
  position: absolute;
  top: -8px;
  left: -28px;
  font-size: 14px;
  color: var(--hs-accent, #b24a2e);
  opacity: 0.4;
}
@media (max-width: 749px) {
  .hs-brand .hs-h2::before { display: none; }
}

/* 39. ボタン hover で小さな揺れ */
@keyframes wiggle {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-2px) rotate(-0.5deg); }
  75% { transform: translateY(-1px) rotate(0.5deg); }
}
.hs-btn:hover,
.banner__buttons .button:hover {
  animation: wiggle .4s ease-in-out;
}

/* 40. 価格に手書き風装飾フレーム */
.product__info-wrapper .price__regular .price-item--regular,
.card .price__regular .price-item--regular {
  position: relative;
  display: inline-block;
}
.product__info-wrapper .price__regular .price-item--regular::before {
  content: '⌜';
  position: absolute;
  top: -8px; left: -10px;
  color: var(--hs-accent, #b24a2e);
  font-size: 0.7em;
  opacity: 0.5;
}
.product__info-wrapper .price__regular .price-item--regular::after {
  content: '⌟';
  position: absolute;
  bottom: -8px; right: -10px;
  color: var(--hs-accent, #b24a2e);
  font-size: 0.7em;
  opacity: 0.5;
}

/* 41. リンク hover で小さな雪の結晶 or 花が出る感じ → simple sparkle */
@keyframes sparkle {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}
.hs-brand a:not(.hs-btn):not(.hs-link) {
  position: relative;
}

/* 42. テラコッタの小さい三角アクセント（h1 の右上） */
.hs-brand .hs-h1::after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  width: 6px;
  height: 6px;
  background: var(--hs-accent, #b24a2e);
  border-radius: 50%;
  vertical-align: super;
  font-size: 0.5em;
  opacity: 0.7;
}

/* 43. ロゴが時々呼吸 */
@keyframes logo-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.header__heading-logo,
.header__heading-link img {
  animation: logo-breathe 8s ease-in-out infinite;
}

/* 44. 商品グリッドにランダム背景色アクセント */
.product-grid > .grid__item:nth-child(3n) .card__inner {
  background: linear-gradient(135deg, transparent 0%, transparent 80%, rgba(178, 74, 46, 0.05) 100%) !important;
}

/* 45. 段落間に小さな点装飾（連続段落の場合） */
.hs-brand p + p::before {
  content: '·';
  display: block;
  text-align: center;
  color: var(--hs-text-muted, #9c9388);
  margin: 8px 0;
  font-size: 1.4em;
  opacity: 0.4;
  letter-spacing: 0;
}

/* 46. footer Instagram アイコン強化 */
.footer .list-social__link svg {
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.footer .list-social__link:hover svg {
  fill: var(--hs-accent, #b24a2e) !important;
  transform: rotate(360deg) scale(1.2);
}

/* 47. アナウンスバー hover で背景がスライド */
.announcement-bar {
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(178, 74, 46, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 1.5s ease;
}
.announcement-bar:hover::before {
  transform: translateX(100%);
}


/* ============================================
   遊び心レイヤー5 — 𝗠𝗮𝗶 𝗦𝗵𝗶𝗯𝘂𝘆𝗮 風 typographic play（2026-04-25）
   ============================================ */

/* 48. 装飾的タイトル（特定の見出しに差別化） */
.banner__heading,
.hs-brand .hs-h1,
.rich-text__heading {
  font-feature-settings: "palt", "liga", "kern", "salt";
}

/* 49. ・ 中点 のリズム強化 */
.hs-brand .hs-body,
.product__description p {
  font-feature-settings: "palt";
}

/* 50. 数字 / 英字を Cormorant 風 italic に（混植美） */
.hs-brand .hs-body em + span,
.hs-brand .hs-body span[lang="en"] {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

/* 51. 引用ブロックを「ノートに書き留めたメモ」風 */
.hs-brand blockquote {
  background: linear-gradient(transparent calc(2.0em - 1px), rgba(178, 74, 46, 0.1) calc(2.0em - 1px), rgba(178, 74, 46, 0.1) 2.0em, transparent 2.0em);
  background-size: 100% 2.0em;
  padding: 4px 16px !important;
  border-left: 2px solid var(--hs-accent, #b24a2e);
  font-style: italic;
}

/* 52. セレクション項目に番号バッジ */
.hs-brand .hs-section-label {
  font-family: 'Futura', 'Jost', sans-serif;
}

/* 53. キャッチー：見出しの最初の文字を大きく */
.hs-narrow.hs-section[style*="text-align:center"] .hs-h1 {
  position: relative;
}
.hs-narrow.hs-section[style*="text-align:center"] .hs-h1::first-letter {
  /* ドロップキャップ風 */
  font-size: 1.05em;
  color: var(--hs-accent, #b24a2e);
}

/* 54. 商品ページ Spec table の値（td）を斜体英字 */
.product__description table td:has(span[lang="en"]),
.product__description table td {
  font-family: 'Futura', 'Jost', sans-serif;
}

/* 55. 「Style」「Shop」等のセクション内ラベル装飾 */
.hs-spec dt {
  position: relative;
}
.hs-spec dt::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--hs-accent, #b24a2e);
  border-radius: 50%;
  opacity: 0.4;
}

/* 56. クレジット欄を「フッター下のサイン」風に */
.hs-brand a {
  position: relative;
}


/* ============================================
   遊び心レイヤー6 — Hello Song 専用パーソナリティ（2026-04-25 night）
   ============================================ */

/* 57. ページ全体に微妙なペーパーテクスチャ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.04'/></svg>");
  z-index: 1;
  mix-blend-mode: multiply;
}

/* 58. ヒーロー上に小さな音符 SVG（Hello "Song" の遊び） */
.banner--large {
  position: relative;
}
.banner--large > .banner__media-wrapper::before {
  content: '♪';
  position: absolute;
  top: 80px;
  right: 60px;
  font-size: 36px;
  color: rgba(255,255,255,0.3);
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  pointer-events: none;
  animation: float-note 6s ease-in-out infinite;
}
@keyframes float-note {
  0%, 100% { transform: translateY(0) rotate(0); opacity: 0.3; }
  50% { transform: translateY(-12px) rotate(8deg); opacity: 0.5; }
}

/* 59. 商品画像 hover で vignette */
.card__media {
  position: relative;
  overflow: hidden;
}
.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(26, 22, 18, 0.15));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}
.card-wrapper:hover .card__media::after {
  opacity: 1;
}

/* 60. ブランドマークのシマー（フッターロゴ） */
@keyframes shimmer-logo {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}
.footer-block--brand-information::before {
  /* 既設の terracotta line */
  width: 32px !important;
  animation: pulse-line 4s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.5; width: 32px; }
  50% { opacity: 0.8; width: 48px; }
}

/* 61. セクション間の "ノート" マーク（オーガニック装飾） */
.hs-brand .hs-section + .hs-section {
  position: relative;
}
.hs-brand .hs-section + .hs-section::before {
  content: '⌇';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: var(--hs-accent, #b24a2e);
  opacity: 0.3;
  font-family: 'Futura', 'Jost', serif;
  pointer-events: none;
}

/* 62. ¥ 記号を欧文 italic に（数字は数字のまま） */
.price-item span[class*="currency"],
.price__regular .price-item--regular {
  font-feature-settings: "palt", "lnum", "tnum";
}

/* 63. ボタン左に小さな丸（ローディング感を装う decoration） */
.hs-btn,
.banner__buttons .button {
  position: relative;
}
.hs-btn:not(.outline)::before {
  /* 既存の光スイープを維持 */
}

/* 64. footer に小さな星座的ドット装飾 */
.footer::before {
  content: '· · ·';
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.2em;
  color: var(--hs-text-muted, #9c9388);
  opacity: 0.4;
  margin-bottom: 32px;
  margin-top: -24px;
}

/* 65. アナウンスバーのテキスト hover で微弱グロー */
.announcement-bar__message {
  transition: text-shadow .4s ease, color .4s ease;
}
.announcement-bar__message:hover {
  color: var(--hs-accent, #b24a2e) !important;
}

/* 66. 商品グリッドの偶数 / 奇数で微妙な動き差 */
.product-grid > .grid__item:nth-child(odd) .card-wrapper {
  transition-duration: .45s !important;
}
.product-grid > .grid__item:nth-child(even) .card-wrapper {
  transition-duration: .55s !important;
}

/* 67. リンク hover の終端に小さな星 */
.hs-brand a:not(.hs-btn):not(.hs-link):not([target="_blank"]):hover::after {
  content: ' ✦';
  font-size: 0.7em;
  color: var(--hs-accent, #b24a2e);
  opacity: 0;
  animation: appear-star .5s ease forwards;
}
@keyframes appear-star {
  to { opacity: 0.8; }
}

/* 68. ページ最初に薄いフェードイン（読み込み時の余韻） */
@keyframes page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
main, .shopify-section-group-header-group {
  animation: page-enter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

/* 69. 各セクションタイトルにロウ（rouge）アクセント */
.hs-brand .hs-h2,
.hs-brand .hs-h3,
.rich-text__heading {
  position: relative;
}
.hs-brand .hs-h2 {
  display: inline-block;
  background-image: linear-gradient(transparent 92%, rgba(178, 74, 46, 0.2) 92%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-right: 4px;
}

/* 70. 全体の z-index を整える（パターンが重なるため） */
.shopify-section,
main,
.footer { position: relative; z-index: 2; }


/* ============================================
   遊び心レイヤー7 — 細部の品質（2026-04-25 final layer）
   ============================================ */

/* 71. Hero に「scroll for more」インジケーター */
.banner--large {
  position: relative;
}
.banner--large::after {
  /* 既設のコーナー装飾を保持 */
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}
.banner--large > .banner__media-wrapper::after {
  content: '↓';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-family: 'Futura', 'Jost', sans-serif;
  letter-spacing: 0.3em;
  z-index: 5;
  animation: scroll-bounce 2.5s ease-in-out infinite;
  pointer-events: none;
}

/* 72. すべての画像に微妙な fadeIn */
@keyframes image-fade-in {
  from { opacity: 0.5; filter: blur(4px); }
  to { opacity: 1; filter: blur(0); }
}
img {
  animation: image-fade-in .6s ease-out;
}

/* 73. ナビメニュー hover で下線が左から右へ */
.header__menu-item {
  position: relative;
}
.header__menu-item span {
  position: relative;
  display: inline-block;
}
.header__menu-item span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hs-accent, #b24a2e);
  transition: width .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__menu-item:hover span::after {
  width: 100%;
}
.header__menu-item .header__active-menu-item::after {
  width: 100%;
}

/* 74. 各セクションラベルにフェードイン */
.scroll-trigger.is-visible .hs-section-label {
  animation: label-slide .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes label-slide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 75. カート数アイコン（バッジ）がある時 hover で揺れる */
.cart-count-bubble {
  transition: transform .25s ease !important;
}
.header__icon--cart:hover .cart-count-bubble {
  transform: scale(1.15) rotate(-5deg);
}

/* 76. ボタン2種の間に微妙な縦線（区切り） */
.banner__buttons {
  gap: 16px !important;
}

/* 77. すべてのカード読込時に微妙にずらしてフェードイン */
@keyframes card-stagger-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-grid .grid__item {
  animation: card-stagger-in .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}
.product-grid .grid__item:nth-child(1) { animation-delay: 0s; }
.product-grid .grid__item:nth-child(2) { animation-delay: .1s; }
.product-grid .grid__item:nth-child(3) { animation-delay: .2s; }
.product-grid .grid__item:nth-child(4) { animation-delay: .3s; }
.product-grid .grid__item:nth-child(5) { animation-delay: .4s; }
.product-grid .grid__item:nth-child(6) { animation-delay: .5s; }

/* 78. キーワードに小さなアンダーライン（ハイライト感） */
.hs-brand strong {
  background-image: linear-gradient(transparent 60%, rgba(178, 74, 46, 0.18) 60%);
  padding: 0 2px;
}

/* 79. 商品ページの variant-pills に微妙な上下動 */
.product-form__input--pill input[type=radio] + label,
.product-form__input--swatch label {
  transition: all .25s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.product-form__input--pill input[type=radio] + label:hover {
  transform: translateY(-2px);
}

/* 80. footer 右下に小さな ✦ マーク */
.footer .footer__content-bottom-wrapper::after {
  content: '✦';
  display: block;
  text-align: center;
  margin-top: 24px;
  font-size: 10px;
  color: var(--hs-accent, #b24a2e);
  opacity: 0.4;
  animation: twinkle 4s ease-in-out infinite;
}

/* 81. ページ最初の hover トリガーで logo に shimmer */
@keyframes logo-shimmer {
  0%, 100% { filter: brightness(1) saturate(1); }
  50% { filter: brightness(1.1) saturate(1.1); }
}
.header__heading-link:hover img,
.header__heading-link:hover .header__heading-logo {
  animation: logo-shimmer 1s ease-in-out;
}


/* ============================================
   モバイル可読性改善（2026-04-25 final check）
   小フォント 11px 以上に底上げ
   ============================================ */
@media (max-width: 749px) {
  /* eyebrow / caption 系を最小 11px に */
  .hs-brand .hs-eyebrow,
  .hs-brand .hs-section-label,
  .hs-brand .hs-spec dt,
  .hs-brand .hs-divider,
  .hs-brand .hs-spaced-tag,
  .rich-text__caption,
  .footer-block__heading,
  .footer-block__newsletter h2,
  .announcement-bar__message,
  .article-card__info {
    font-size: 11px !important;
    letter-spacing: 0.22em !important;
  }
  
  /* spec dd は 12px で確保 */
  .hs-brand .hs-spec dd {
    font-size: 12px !important;
  }
  
  /* ボタンは 11px 確保 */
  .hs-btn,
  .button,
  .product-form__submit,
  .newsletter-form__button {
    font-size: 11px !important;
    letter-spacing: 0.22em !important;
  }
  
  /* リンクとボタン押しやすさ — 最低 44px タッチターゲット */
  .header__menu-item,
  .footer-block li a,
  .hs-btn,
  .button {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  /* hs-divider のサイズ補正 */
  .hs-brand .hs-divider {
    font-size: 10px !important;
    letter-spacing: 0.32em !important;
  }
}

/* iPhone SE 小型対応 */
@media (max-width: 380px) {
  .hs-brand .hs-h1 { font-size: 20px !important; }
  .hs-brand .hs-h2 { font-size: 16px !important; }
  .hs-brand .hs-body { font-size: 12.5px !important; }
}


/* ============================================
   Layer 8 — Spirit（2026-04-25 リデザイン）
   "ふわっと香る程度" の遊び心。
   ・編集者のキャプション文化（雑誌の脚注感）
   ・スタイリストの不均等（VMD的なリズムずらし）
   ・ギャラリストの番号管理（N°表記の強化）
   ・二拠点の余白（札幌の冷涼さを字間と行間に）
   ・桜丘の酒屋スタッフ感（手書き風の小さな印）
   どれも単体では"効いてる"とわからない強度に絞る。
   ============================================ */

/* 8-1. 二拠点の余白 ── 字間と行間を ほんの僅か 開ける
   ※既存の hs-h1 / hs-h2 と矛盾しないよう em で微調整 */
.hs-brand .hs-h1,
.hs-brand .hs-h2,
.hs-brand .hs-h3 {
  letter-spacing: 0.012em;
}
.hs-brand .hs-eyebrow,
.hs-brand .hs-section-label,
.hs-brand .hs-divider {
  letter-spacing: 0.28em;
}
.hs-brand .hs-body {
  line-height: 1.92;
}

/* 8-2. 編集者のキャプション ── 商品カードの下に淡い脚注 */
.hs-brand .card-information,
.hs-brand .card__information {
  position: relative;
}
.hs-brand .card-wrapper:hover .card__heading + .price::before {
  content: "—";
  display: inline-block;
  margin-right: 0.4em;
  opacity: 0.45;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0;
  transition: opacity 0.4s ease;
}
.hs-brand .card-wrapper .card__heading + .price::before {
  opacity: 0;
}

/* 8-3. スタイリストの不均等 ── 商品グリッドに微細なリズム
   3カラムの偶数枚目を 6px だけ下げる。気づかれない程度。 */
@media (min-width: 990px) {
  .hs-brand .featured-collection .grid--3-col-desktop .grid__item:nth-child(2),
  .hs-brand .featured-collection .grid--3-col-desktop .grid__item:nth-child(5) {
    transform: translateY(6px);
  }
  .hs-brand .featured-collection .grid--3-col-desktop .grid__item:nth-child(3),
  .hs-brand .featured-collection .grid--3-col-desktop .grid__item:nth-child(6) {
    transform: translateY(-3px);
  }
}

/* 8-4. ギャラリストの番号 ── 各商品カードに淡い "N°" を
   ※ Liquid 側の counter は触らず、CSS counter-reset で擬似的に */
.hs-brand .featured-collection .grid {
  counter-reset: hs-num;
}
.hs-brand .featured-collection .grid__item {
  counter-increment: hs-num;
  position: relative;
}
.hs-brand .featured-collection .grid__item::before {
  content: "Hello! " counter(hs-num, decimal-leading-zero);
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(26, 22, 18, 0.45);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hs-brand .featured-collection .grid__item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* 8-5. 桜丘の酒屋スタッフ感 ── セクション境界に小さな印
   ※既存の hs-divider と共存。淡く、装飾しすぎない。 */
.hs-brand .shopify-section + .shopify-section::before {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent, rgba(26, 22, 18, 0.18), transparent);
  opacity: 0.55;
}

/* 8-6. 手仕事の揺らぎ ── h2 / divider にごく僅かな"傾き" hover */
.hs-brand .hs-h2,
.hs-brand .hs-section-label {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hs-brand .hs-section-label:hover {
  transform: rotate(-0.3deg);
}

/* 8-7. 編集者的引用 ── pullquote / 大きな引用文に余白を主役で */
.hs-brand .hs-pullquote,
.hs-brand blockquote {
  position: relative;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 40px);
  font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(26, 22, 18, 0.78);
}
.hs-brand .hs-pullquote::before,
.hs-brand blockquote::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: rgba(178, 74, 46, 0.22);
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
}

/* 8-8. 二拠点の余韻 ── セクション上下 padding を 1.08倍
   ※ clamp で既存最小値は守る */
.hs-brand .shopify-section {
  --hs-section-pad: clamp(56px, 8.6vh, 108px);
}
.hs-brand .shopify-section > .page-width,
.hs-brand .shopify-section > .section {
  padding-top: var(--hs-section-pad);
  padding-bottom: var(--hs-section-pad);
}

/* 8-9. 雑誌の小さなキャプション ── .hs-caption というユーティリティ
   About / Brew Guide / 業務卸 で使う想定 */
.hs-brand .hs-caption {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(26, 22, 18, 0.55);
  margin-top: 6px;
  position: relative;
  padding-left: 18px;
}
.hs-brand .hs-caption::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
}

/* 8-10. 静かなフェード ── スクロールで現れる文字の最初の一拍
   prefers-reduced-motion を尊重 */
@media (prefers-reduced-motion: no-preference) {
  .hs-brand .hs-h1,
  .hs-brand .hs-h2 {
    animation: hs-spirit-fade 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  @keyframes hs-spirit-fade {
    0%   { opacity: 0; transform: translateY(8px); letter-spacing: 0.04em; }
    100% { opacity: 1; transform: translateY(0);   letter-spacing: inherit; }
  }
}

/* 8-11. モバイル ── 不均等とアニメは抑える（読み心地優先） */
@media (max-width: 749px) {
  .hs-brand .featured-collection .grid--3-col-desktop .grid__item,
  .hs-brand .featured-collection .grid__item {
    transform: none !important;
  }
  .hs-brand .featured-collection .grid__item::before {
    opacity: 0.5;
    transform: none;
    font-size: 10px;
    top: 6px;
    left: 6px;
  }
  .hs-brand .shopify-section + .shopify-section::before {
    height: 20px;
  }
}


/* 8-12. dt 列の左端整理（2026-04-25 社長指摘）
   .hs-spec dt::before の赤ドット（left:-12px）を消し、
   dt 文字の左端を grid セル左端にきっちり揃える */
.hs-brand .hs-spec dt::before {
  display: none !important;
  content: none !important;
}
.hs-brand .hs-spec dt {
  text-align: left !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}
.hs-brand .hs-spec dl {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
