/** Shopify CDN: Minification failed

Line 639:40 Expected identifier but found whitespace
Line 639:42 Unexpected "{"
Line 639:51 Expected ":"
Line 639:77 Expected ":"
Line 639:94 Expected identifier but found whitespace
Line 639:96 Unexpected "{"
Line 639:105 Expected ":"
Line 639:134 Expected ":"
Line 639:153 Expected identifier but found whitespace
Line 639:155 Unexpected "{"
... and 1 more hidden warnings

**/
@charset "UTF-8";

/* =========================================
   ベース設定・リセット
   ========================================= */
:root { --color-primary: #dc2626; --color-primary-dark: #b91c1c; --color-slate-900: #0f172a; --color-slate-800: #1e293b; --color-slate-600: #475569; --color-slate-500: #64748b; --color-slate-50: #f8fafc; --color-white: #ffffff; --color-gold: #fbbf24; --font-base: "Helvetica Neue", Arial, sans-serif; }
body { margin: 0; font-family: var(--font-base); color: var(--color-slate-800); background-color: var(--color-slate-50); line-height: 1.5; }
h1, h2, h3, h4, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; box-sizing: border-box; }
.section { padding: 4rem 0; }
.sp{display: none;}
.pc{display: block;}
@media (max-width: 768px) {
.sp{display: block;}
.pc{display: none;}
}
/* =========================================
   共通コンポーネント
   ========================================= */
.btn { display: inline-flex; items-center: center; justify-content: center; gap: 0.5rem; font-weight: bold; border-radius: 9999px; transition: all 0.3s; text-decoration: none; }
.btn:active { transform: scale(0.95); }
.btn--primary { background-color: var(--color-primary); color: white; padding: 1rem 2rem; border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3); }
.btn--primary:hover { background-color: var(--color-primary-dark); transform: translateY(-2px); }
.btn--cart { background-color: #fef2f2; color: #991b1b; padding: 0.5rem 1rem; position: relative; }
.btn--cart:hover { background-color: #fee2e2; }
.btn--block { width: 100%; padding: 0.75rem; border-radius: 0.5rem; background-color: var(--color-slate-900); color: white; }
.btn--block:hover { background-color: var(--color-slate-800); }
.btn-icon { padding: 0.5rem; border-radius: 9999px; transition: background 0.2s; }
.btn-icon:hover { background-color: #e2e8f0; }

.grid { display: grid; gap: 1.5rem; }
.grid--4-cols { grid-template-columns: 1fr; }

/* メディアクエリ: タブレット以上 */
@media (min-width: 768px) {
  .grid--4-cols { grid-template-columns: repeat(2, 1fr); }
  .btn--cart .btn__text { display: inline; }
}
/* メディアクエリ: PC以上 */
@media (min-width: 1024px) {
  .grid--4-cols { grid-template-columns: repeat(4, 1fr); }
}
/* =========================================
/* Gridシステム（3カラム対応を追加） 
/* =========================================*/

.grid { display: grid; gap: 1.5rem; }
.grid--4-cols { grid-template-columns: 1fr; }
.grid--3-cols { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid--4-cols { grid-template-columns: repeat(2, 1fr); }
  .grid--3-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--4-cols { grid-template-columns: repeat(4, 1fr); }
  .grid--3-cols { grid-template-columns: repeat(3, 1fr); }
}
/* =========================================
   ヘッダー
   ========================================= */
.header { position: sticky; top: 0; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); z-index: 40; border-bottom: 1px solid #fee2e2; }
.header__inner { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; }
.header__brand { display: flex; align-items: center; gap: 0.5rem; }
.header__logo {width: 100px;}
.header__title { font-size: 1.25rem; font-weight: 900; color: #991b1b; line-height: 1; letter-spacing: -0.05em; }

.cart-badge { position: absolute; top: -0.25rem; right: -0.25rem; background-color: var(--color-primary); color: white; font-size: 0.75rem; font-weight: bold; width: 1.25rem; height: 1.25rem; display: flex; align-items: center; justify-content: center; border-radius: 9999px; }
.campaign-bar { background-color: var(--color-slate-900); color: var(--color-gold); text-align: center; font-size: 0.75rem; padding: 0.25rem; font-weight: bold; letter-spacing: 0.05em; }
@media (min-width: 768px) { .campaign-bar { font-size: 0.875rem; } }
.header__nav { margin-left: auto; margin-right: 2rem; }
.header__nav-list { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.header__nav-item { position: relative; }
.header__nav-link { color: #333; text-decoration: none; font-weight: bold; font-size: 0.95rem; transition: color 0.3s; padding: 0.5rem 0; display: block; }
.header__nav-link:hover, .header__nav-link.active { color: #d32f2f; }
@media screen and (max-width: 768px) {
    .header__nav { display: none; }
}

/* =========================================
   ヒーローセクション
   ========================================= */
.hero { position: relative; background-color: var(--color-slate-900); overflow: hidden; color: white; min-height: 600px; display: flex; align-items: center; padding: 1rem 0 2rem 0;}
.hero__bg-overlay { position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0.4); z-index: 10; }
.hero__bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8; z-index: 0; }
.hero__content { position: relative; z-index: 20; }
.hero__grid { display: grid; gap: 2rem; }
.hero__text-area { display: flex; flex-direction: column; gap: 1.5rem; }
/* =========================================
   ヒーローセクション（ミシュラン強調用）
   ========================================= */
.label{width: 30%;}


/* ゴールドの帯コンテナ */
.hero__authority-box {background: linear-gradient(135deg, #fef08a 0%, #eab308 50%, #ca8a04 100%);color: #451a03;padding: 0.75rem 1.5rem;border-radius: 0.25rem;display: inline-flex;align-items: center;gap: 0.75rem;box-shadow: 0 0 20px rgba(234, 179, 8, 0.6);border: 1px solid #fde047;position: relative;overflow: hidden;width: fit-content;}

/* 光沢アニメーション（キラッとさせる） */
.hero__authority-box::before {content: "";position: absolute;top: 0;left: -100%;width: 100%;height: 100%;background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);transform: skewX(-20deg);animation: shine 3s infinite;}

/* アイコン */
.hero__authority-icon {width: 1.5rem;height: 1.5rem;flex-shrink: 0;fill: #451a03; /* アイコンの中も塗りつぶす */}

/* テキスト */
.hero__authority-text {font-weight: 900;font-size: 1rem;letter-spacing: 0.05em;line-height: 1.2;}

/* アニメーション定義 */
@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* PCサイズでの調整 */
@media (min-width: 768px) {
    .hero__authority-box { padding: 1rem 2rem; }
    .hero__authority-text { font-size: 1.1rem; }
    .hero__authority-icon { width: 2rem; height: 2rem; }
}

.glass-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); padding: 1.5rem; border-radius: 0.75rem; border: 1px solid rgba(255, 255, 255, 0.2); text-align: center; max-width: 20rem; }
.glass-card__score { font-size: 2.25rem; font-weight: 900; color: var(--color-gold); line-height: 1; margin: 0.5rem 0; }
.glass-card__stars { display: flex; justify-content: center; color: var(--color-gold); margin-bottom: 1rem; gap: 0.25rem; }
.glass-card__note { font-size: 0.75rem; color: #cbd5e1; }

@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 2fr 1fr; align-items: center; }
  .hero__headline { font-size: 3.75rem; line-height: 1.2;}
  .hero__visual-area { display: flex; }
}

/* =========================================
   権威付け・インタビュー
   ========================================= */
.authority__card { background-color: var(--color-slate-50); border-radius: 1rem; padding: 2rem; box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); border: 1px solid #f1f5f9; position: relative; overflow: hidden; }
.authority__card::before { content: ""; position: absolute; top: 0; left: 0; width: 0.5rem; height: 100%; background-color: var(--color-gold); }
.authority__inner { display: flex; flex-direction: column; gap: 2rem; }
.authority__profile { display: flex; flex-direction: column; align-items: center; text-align: center; }
.authority__image-wrapper { width: 12rem; height: 12rem; border-radius: 9999px; background-color: #cbd5e1; margin-bottom: 1rem; overflow: hidden; border: 4px solid white; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.authority__image { width: 100%; height: 100%; object-fit: cover; }
.authority__label { color: var(--color-primary); font-weight: bold; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.authority__headline { font-size: 1.25rem; font-weight: bold; margin-bottom: 1rem; }
.authority__quote { color: var(--color-slate-600); font-style: italic; margin-bottom: 1.5rem; }
.pro-comment { background-color: white; padding: 1rem; border-radius: 0.5rem; border-left: 4px solid var(--color-primary); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.pro-comment__text { font-size: 0.875rem; font-weight: bold; }
.pro-comment__highlight { color: var(--color-primary); }

@media (min-width: 768px) {
  .authority__card { padding: 3rem; }
  .authority__inner { flex-direction: row; align-items: center; }
  .authority__profile { width: 33%; }
  .authority__content { width: 66%; }
}

/* =========================================
   ライフスタイル提案
   ========================================= */
.lifestyle { background-color: #fff7ed; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header__sub { color: var(--color-primary); font-weight: bold; font-size: 0.875rem; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.section-header__title { font-size: 1.875rem; font-weight: 900; color: var(--color-slate-900); }
.section-header__desc { color: var(--color-slate-600); margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-header__highlight { color: var(--color-primary); font-weight: bold; margin-top: 0.5rem; }

/* カード全体の設定（paddingを削除し、overflowをhiddenにする） */
.feature-card { background-color: white; border-radius: 0.75rem; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); transition: box-shadow 0.3s, transform 0.3s; overflow: hidden; display: flex; flex-direction: column; }

/* 画像エリアの設定 */
.feature-card__image-box { height: 12rem; overflow: hidden; width: 100%; }
.feature-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

/* テキストエリアの設定 */
.feature-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.feature-card__title { font-weight: bold; font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature-card__desc { font-size: 0.875rem; color: var(--color-slate-600); line-height: 1.6; }
/* =========================================
   こだわりセクション (Secret)
   ========================================= */
.secret { background-color: white; }
.secret__grid { display: grid; gap: 2rem; }
@media (min-width: 768px) {
    .secret__grid { grid-template-columns: 1fr 1.5fr; }
}

.secret-card { background-color: #f8fafc; border-radius: 1rem; padding: 2rem; border: 1px solid #e2e8f0; }
.secret-card--highlight { background-color: #fffbeb; border-color: #fde68a; } /* キャベツ部分を強調 */

.secret-card__icon-area { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.secret-card__number { font-size: 3rem; font-weight: 900; color: #cbd5e1; line-height: 1; opacity: 0.5; }
.secret-card__icon { width: 2.5rem; height: 2.5rem; color: var(--color-primary); }
.secret-card__title { font-size: 1.5rem; font-weight: bold; margin-bottom: 1rem; }
.secret-card__desc { color: var(--color-slate-600); line-height: 1.8; }
.highlight-text { background: linear-gradient(to top, #fde047 50%, transparent 50%); font-weight: bold; }

/* 栄養成分ボックス */
.nutrition-box { background-color: white; border-radius: 0.5rem; padding: 1.5rem; margin-top: 1.5rem; border: 2px dashed #fcd34d; }
.nutrition-box__title { font-weight: bold; color: #b45309; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.nutrition-box__list { margin-bottom: 1rem; }
.nutrition-box__list li { font-size: 0.9rem; margin-bottom: 0.25rem; }
.nutrition-box__note { font-size: 0.8rem; color: #78350f; font-weight: bold; }

/* =========================================
   Voice Section 
   ========================================= */
.voice-section-new { background-color: #f8fafc; padding: 5rem 0; overflow: hidden; }
.voice-scroll-wrapper { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.voice-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 2rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.voice-track::-webkit-scrollbar { display: none; }
.voice-card-new { flex: 0 0 300px; scroll-snap-align: center; background: #ffffff; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.voice-card-new:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.voice-card-new__stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.voice-card-new__title { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 1rem; line-height: 1.4; }
.voice-card-new__text { font-size: 0.95rem; color: #333; line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; }
.voice-card-new__footer { display: flex; align-items: center; border-top: 1px solid #f1f5f9; padding-top: 1rem; }
.voice-card-new__icon { width: 40px; height: 40px; background-color: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 12px; color: #64748b; }
.voice-card-new__info { display: flex; flex-direction: column; }
.voice-card-new__name { font-weight: 700; color: #1e293b; font-size: 0.9rem; }
.voice-card-new__date { font-size: 0.75rem; color: #94a3b8; }
.voice-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background-color: #fff; border: 1px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: all 0.3s; color: #333; }
.voice-arrow:hover { background-color: #dc2626; color: white; border-color: #dc2626; }
.voice-arrow--prev { left: -20px; }
.voice-arrow--next { right: -20px; }
@media (max-width: 768px) {
    .voice-card-new { flex: 0 0 85%; }
    .voice-track { gap: 1rem; padding-left: 1rem; padding-right: 1rem; }
    .voice-arrow { display: none; }
}



/* =========================================
   商品カードの追加スタイル
   ========================================= */
/* 割引バッジ */
.discount-badge {
    background-color: #ef4444;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.product-card__badge--green { background-color: #16a34a; color: white; padding: 0.5rem 1rem; font-size: 0.875rem; }
/* =========================================
   Price Currency Style (¥マークの縮小)
   ========================================= */
.product-card__price,
.product-card__price-original,
.cart-item__price,
.cart-item__total,
.cart-summary__price,
.product__price .price-item {display: inline-block;}
/* 一文字目（¥）のスタイル */
.product-card__price::first-letter,
.product-card__price-original::first-letter,
.cart-item__price::first-letter,
.cart-item__total::first-letter,
.cart-summary__price::first-letter,
.product__price .price-item::first-letter {
  font-size: 0.65em;/* 文字サイズを75%に縮小 */
  margin-right: 1px;
  vertical-align: 4px;  
  font-weight: normal; 
}
/* =========================================
   Product Card (BEM) - Final Optimized
   ========================================= */
.product-card { display: flex; flex-direction: column; background-color: white; border: 2px solid #f1f5f9; border-radius: 1rem; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); z-index: 2; }
.product-card--recommend { border-color: #ef4444; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); z-index: 10; }
.product-card__badge { position: absolute; top: 0; left: 0; padding: 0.25rem 0.75rem; border-bottom-right-radius: 0.5rem; font-size: 0.75rem; z-index: 20; color: #ffffff !important; font-weight: bold; letter-spacing: 0.05em; }
.product-card__badge--dark { background-color: #1e293b; color: white; }
.product-card__badge--red { background-color: #dc2626; color: white; }
.product-card__image-box { height: 12rem; position: relative; overflow: hidden; }
.product-card__image { width: 100%; height: 100%; object-fit: cover; }
.product-card__sub-banner { position: absolute; bottom: 0; width: 100%; background-color: #16a34a; color: white; text-align: center; font-size: 0.75rem; font-weight: bold; padding: 0.25rem 0; }
.product-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card__name { font-weight: bold; font-size: 1.125rem; line-height: 1.25; margin-bottom: 0.25rem; }
.product-card__name a { color: #1e293b; text-decoration: none; }
.product-card__sub { font-size: 0.75rem; color: #64748b; margin-bottom: 0.75rem; }
.product-card__desc { font-size: 0.875rem; color: #475569; margin-bottom: 1rem; min-height: 3em; }
.product-card__footer { margin-top: auto; }
.product-card__price-row { display: flex; align-items: flex-end; gap: 0.5rem; margin-bottom: 1rem; }
.product-card__price { font-size: 1.5rem; font-weight: 900; color: #dc2626; }
.product-card__price-original { font-size: 0.875rem; color: #94a3b8; text-decoration: line-through; }
.product-card__unit { font-size: 0.75rem; color: #64748b; padding-bottom: 0.25rem; }
.btn--add-cart { width: 100%; padding: 0.75rem; border-radius: 0.5rem; font-weight: bold; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn--add-cart:active { transform: scale(0.95); }
.btn--add-cart:disabled { background-color: #cbd5e1 !important; color: #64748b !important; cursor: not-allowed; }
.btn--add-cart.btn--secondary { background-color: #0f172a; color: #ffffff; }
.btn--add-cart.btn--secondary:hover { background-color: #334155; }
.btn--add-cart.primary { background-color: #dc2626; color: white; }
.btn--add-cart.primary:hover { background-color: #b91c1c; }
.btn--add-cart [data-lucide] { width: 18px; height: 18px; stroke-width: 2; stroke: currentColor; fill: none; }
.product-card.style-red { border: 2px solid #dc2626; position: relative; overflow: hidden; }
.product-card.style-red .product-card__badge--left { background-color: #dc2626; }
.btn--red { background-color: #dc2626 !important; color: #ffffff !important; border: none; }
.btn--red:hover { background-color: #b91c1c !important; opacity: 1; }
.product-card.style-green .product-card__badge--left { background-color: #16a34a; }
.btn--green { background-color: #16a34a !important; color: #ffffff !important; border: none; }
.btn--green:hover { background-color: #15803d !important; opacity: 1; }
.discount-badge { display: inline-block; background-color: #ef4444; color: #fff !important; font-weight: bold; font-size: 0.8rem; padding: 4px 8px; border-radius: 4px; margin-top: 5px; margin-bottom: 10px; }
@media (min-width: 768px) {
    .product-card--recommend { transform: translateY(-1rem); }
}



/* =========================================
   フッター
   ========================================= */
.footer { background-color: var(--color-slate-900); color: #cbd5e1; padding: 3rem 0; border-top: 1px solid var(--color-slate-800); }
.footer__grid { display: grid; gap: 2rem; }
.footer__logo { font-size: 1.5rem; font-weight: 900; color: white; margin-bottom: 1rem; letter-spacing: -0.05em; }
.footer__desc { font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.6; }
.footer__links { display: flex; gap: 1rem; }
.footer__link { font-size: 0.75rem; border: 1px solid var(--color-slate-600); padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
.footer__heading { color: white; font-weight: bold; margin-bottom: 1rem; }
.footer__list { font-size: 0.875rem; display: flex; flex-direction: column; gap: 0.5rem; }
.payment-icons { display: flex; gap: 0.5rem; font-size: 0.75rem; }
.payment-icon { background-color: white; color: var(--color-slate-900); padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-weight: bold; }
.footer__copyright { text-align: center; margin-top: 3rem; font-size: 0.75rem; color: var(--color-slate-600); }

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer__list li a { color: inherit; text-decoration: none; transition: opacity 0.3s; display: inline-block; }
.footer__list li a:hover { opacity: 0.7; text-decoration: underline; }
.footer__links .footer__link { color: inherit; text-decoration: none; margin-right: 1rem; font-size: 0.8rem; opacity: 0.8; transition: opacity 0.3s; display: inline-block; }
.footer__links .footer__link:hover { opacity: 1; text-decoration: underline; }

/* =========================================
   カートモーダル & 通知
   ========================================= */
.notification { position: fixed; top: 1rem; right: 1rem; background-color: var(--color-primary); color: white; padding: 1rem 1.5rem; border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); z-index: 100; display: flex; items-center: center; gap: 0.75rem; opacity: 0; visibility: hidden; transform: translateY(-1rem); transition: all 0.3s; }
.notification.is-visible { opacity: 1; visibility: visible; transform: translateY(0); animation: bounce 1s; }
.notification__text { font-weight: bold; }

.cart-modal { position: fixed; inset: 0; z-index: 50; display: none; }
.cart-modal.is-open { display: block; }
.cart-modal__overlay { position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); }
.cart-modal__content { position: absolute; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem; background-color: white; shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); display: flex; flex-direction: column; }
.cart-modal__header { padding: 1rem; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; background-color: var(--color-slate-50); }
.cart-modal__title { font-size: 1.25rem; font-weight: bold; display: flex; align-items: center; gap: 0.5rem; }
.cart-modal__progress { padding: 1rem; }
.cart-modal__items { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-modal__footer { padding: 1.5rem; border-top: 1px solid #f1f5f9; background-color: var(--color-slate-50); }

/* カート内アイテム */
.cart-item { display: flex; gap: 1rem; padding: 0.75rem; border: 1px solid #f1f5f9; border-radius: 0.5rem; background-color: white; }
.cart-item__info { flex: 1; }
.cart-item__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.25rem; }
.cart-item__name { font-weight: bold; font-size: 0.875rem; }
.cart-item__price { color: var(--color-primary); font-weight: bold; margin-bottom: 0.5rem; }
.cart-item__ctrl { display: flex; align-items: center; gap: 0.75rem; }
.cart-item__qty { font-weight: bold; font-size: 0.875rem; min-width: 1rem; text-align: center; }
.btn-qty { padding: 0.25rem; background-color: #f1f5f9; border-radius: 0.25rem; display: flex; }
.btn-qty:hover { background-color: #e2e8f0; }

/* 送料バー */
.shipping-bar { display: flex; flex-direction: column; gap: 0.5rem; }
.shipping-bar__text { font-size: 0.875rem; font-weight: bold; display: flex; justify-content: space-between; }
.shipping-bar__highlight { color: var(--color-primary); }
.shipping-bar__track { width: 100%; height: 0.5rem; background-color: #e2e8f0; border-radius: 9999px; overflow: hidden; }
.shipping-bar__fill { height: 100%; background-color: var(--color-primary); transition: width 0.5s; }
.shipping-free-msg { background-color: #dcfce7; color: #166534; padding: 0.75rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: bold; display: flex; align-items: center; gap: 0.5rem; }
.empty-cart { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--color-slate-500); opacity: 0.6; }

/* 会計サマリー */
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.875rem; }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin: 1.5rem 0; padding-top: 1rem; border-top: 1px solid #e2e8f0; }
.summary-total__label { font-size: 1.25rem; font-weight: bold; }
.summary-total__amount { font-size: 1.875rem; font-weight: 900; color: var(--color-primary); }

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
/* =========================================
   スマホ用 固定フッターCTA
   ========================================= */
.fixed-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    box-sizing: border-box;
    /* 初期状態でアニメーション */
    animation: slideUp 0.5s ease-out;
}

/* PCでは邪魔なので非表示 */
@media (min-width: 768px) {
    .fixed-bottom-cta {
        display: none;
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* =========================================
   404 Page Styles
   ========================================= */
.error-404 { position: relative; width: 100%; min-height: 70vh; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; overflow: hidden; background-color: #111; }
.error-404__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.error-404__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.error-404__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%); z-index: 1; }
.error-404__content { position: relative; z-index: 2; padding: 4rem 1rem; max-width: 600px; }
.error-404__icon-wrapper { margin-bottom: 1.5rem; }
.error-404__icon { width: 64px; height: 64px; stroke-width: 1.5; color: #fbbf24; }
.error-404__title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.1em; color: #fbbf24; margin-bottom: 1rem; display: block; }
.error-404__headline { font-size: 2rem; font-weight: 900; line-height: 1.4; margin-bottom: 1.5rem; }
.error-404__desc { font-size: 1rem; line-height: 1.8; opacity: 0.9; margin-bottom: 3rem; }
.error-404__actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media screen and (max-width: 768px) {
    .error-404 { min-height: 60vh; }
    .error-404__headline { font-size: 1.5rem; }
    .error-404__desc { font-size: 0.9rem; }
}


/* =========================================
   商品一覧 Page Styles
   ========================================= */
.collection-header { position: relative; width: 100%; height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background-color: #111; margin-bottom: 2rem; }
.collection-header__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.collection-header__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.collection-header__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.collection-header__content { position: relative; z-index: 2; color: #fff; }
.collection-header__title { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.collection-header__desc { font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.pagination { margin-top: 4rem; display: flex; justify-content: center; gap: 0.5rem; }
.pagination span, .pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border: 1px solid #ddd; background: #fff; color: #333; text-decoration: none; font-weight: bold; border-radius: 4px; transition: all 0.3s; }
.pagination span.current { background: #d32f2f; color: #fff; border-color: #d32f2f; }
.pagination a:hover { background: #f5f5f5; border-color: #aaa; }
@media screen and (max-width: 768px) {
    .collection-header { height: 200px; }
    .collection-header__title { font-size: 1.8rem; }
}

/* =========================================
   商品ページ
   ========================================= */
.product-page { padding: 4rem 0; background-color: #fff; color: #333; }
.product-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; }
.product-gallery__main { width: 100%; margin-bottom: 1rem; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.product-gallery__main img { width: 100%; height: auto; display: block; }
.product-gallery__thumbs { display: flex; gap: 10px; overflow-x: auto; }
.product-gallery__thumb-item { width: 80px; height: 80px; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; flex-shrink: 0; }
.product-gallery__thumb-item:hover { opacity: 1; border-color: #d32f2f; }
.product-gallery__thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { font-size: 0.85rem; color: #888; margin-bottom: 1rem; }
.breadcrumb a { color: #888; text-decoration: none; }
.product-info__title { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
.product-info__price-area { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid #eee; }
.product-info__price { font-size: 2rem; font-weight: bold; color: #d32f2f; }
.product-info__price-original { text-decoration: line-through; color: #999; }
.discount-label { background: #d32f2f; color: #fff; font-size: 0.8rem; padding: 2px 8px; border-radius: 4px; }
.tax-note { font-size: 0.8rem; }
.product-info__desc { margin-bottom: 2rem; line-height: 1.8; }
.product-form__variants, .product-form__quantity { margin-bottom: 1.5rem; }
.product-form__variants label, .product-form__quantity label { display: block; font-weight: bold; margin-bottom: 0.5rem; }
.product-form__select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
.quantity-selector { display: flex; align-items: center; max-width: 150px; border: 1px solid #ddd; border-radius: 4px; }
.quantity-selector button { width: 40px; height: 40px; background: #f9f9f9; border: none; cursor: pointer; font-size: 1.2rem; }
.quantity-selector input { flex: 1; text-align: center; border: none; height: 40px; font-size: 1rem; width: 100%; min-width:35px;}
.product-accordion { margin-top: 3rem; border-top: 1px solid #eee; }
.product-accordion details { border-bottom: 1px solid #eee; }
.product-accordion summary { padding: 1.2rem 0; cursor: pointer; font-weight: bold; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.product-accordion .accordion-content { padding-bottom: 1.5rem; font-size: 0.95rem; color: #555; line-height: 1.8; }
@media screen and (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-info__title { font-size: 1.8rem; }
}

.btn:disabled, .btn[disabled] { background-color: #bdc3c7 !important; border-color: #bdc3c7 !important; color: #fff !important; cursor: not-allowed; opacity: 0.8; transform: none !important; box-shadow: none !important; }
.sold-out-msg { color: #d32f2f; font-weight: bold; margin-top: 10px; font-size: 0.9rem; }

/* =========================================
   記事一覧ページ
   ========================================= */
.blog-list { padding-bottom: 4rem; }
.news-card { background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.news-card__link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.news-card__image-box { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #f0f0f0; }
.news-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card__image { transform: scale(1.05); }
.news-card__image--placeholder { opacity: 0.5; filter: grayscale(100%); }
.news-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.news-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; font-size: 0.85rem; }
.news-card__date { color: #888; }
.news-card__tag { background: #f4f4f4; color: #555; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; }
.news-card__title { font-size: 1.1rem; font-weight: bold; line-height: 1.4; margin-bottom: 0.8rem; color: #333; }
.news-card__excerpt { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.news-card__readmore { display: inline-flex; align-items: center; gap: 5px; color: #d32f2f; font-weight: bold; font-size: 0.9rem; }
@media screen and (max-width: 768px) {
    .news-card__body { padding: 1rem; }
}
/* =========================================
   記事詳細ページ
   ========================================= */
.article-header { position: relative; width: 100%; height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; background-color: #111; color: #fff; margin-bottom: 3rem; }
.article-header__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.article-header__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.article-header__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)); z-index: 1; }
.article-header__content { position: relative; z-index: 2; max-width: 800px; }
.article-header__meta { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; opacity: 0.9; }
.article-header__tag { background: #d32f2f; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; }
.article-header__title { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; line-height: 1.3; }
.article-body { max-width: 800px; margin: 0 auto 5rem; }
.article-content { font-size: 1rem; line-height: 1.8; color: #333; }
.article-content h2 { font-size: 1.8rem; font-weight: bold; margin: 3rem 0 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #d32f2f; }
.article-content h3 { font-size: 1.4rem; font-weight: bold; margin: 2.5rem 0 1rem; padding-left: 0.8rem; border-left: 4px solid #333; }
.article-content p { margin-bottom: 1.5rem; }
.article-content img { max-width: 100%; height: auto; margin: 2rem 0; border-radius: 4px; }
.article-content ul, .article-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.article-content blockquote { background: #f9f9f9; border-left: 4px solid #ccc; margin: 2rem 0; padding: 1rem 1.5rem; font-style: italic; color: #555; }
.article-footer { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.article-share { display: flex; align-items: center; gap: 1rem; font-weight: bold; }
.article-share a { color: #555; text-decoration: none; font-size: 0.9rem; border: 1px solid #ddd; padding: 5px 10px; border-radius: 4px; transition: all 0.3s; }
.article-share a:hover { background: #333; color: #fff; border-color: #333; }
@media screen and (max-width: 768px) {
    .article-header { height: 300px; }
    .article-header__title { font-size: 1.8rem; }
    .article-content { font-size: 0.95rem; }
    .article-footer { flex-direction: column; align-items: stretch; text-align: center; }
    .article-share { justify-content: center; margin-bottom: 1rem; }
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-container { max-width: 700px; margin: 0 auto; padding-bottom: 4rem; }
.contact-content { margin-bottom: 3rem; text-align: center; line-height: 1.8; }
.contact-form-wrapper { background: #fff; padding: 2rem; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: bold; margin-bottom: 0.5rem; color: #333; }
.form-group label .required { color: #d32f2f; margin-left: 4px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; background: #fdfdfd; transition: border-color 0.3s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: #d32f2f; outline: none; background: #fff; }
.form-success { background: #e8f5e9; border: 1px solid #c8e6c9; color: #2e7d32; padding: 1rem; border-radius: 4px; margin-bottom: 2rem; display: flex; align-items: center; gap: 10px; }
.form-error { background: #ffebee; border: 1px solid #ffcdd2; color: #c62828; padding: 1rem; border-radius: 4px; margin-bottom: 2rem; }
@media screen and (max-width: 768px) {
    .contact-form-wrapper { padding: 1.5rem 1rem; border: none; box-shadow: none; }
}

/* =========================================
   Cart Page Styles
   ========================================= */
.cart-page { padding-bottom: 5rem; background: #f9f9f9; }
.cart-empty { text-align: center; padding: 5rem 1rem; background: #fff; border-radius: 8px; }
.cart-empty__icon { width: 80px; height: 80px; color: #ddd; margin-bottom: 1.5rem; }
.cart-empty__title { font-size: 1.5rem; font-weight: bold; margin-bottom: 1rem; }
.cart-empty__text { color: #666; margin-bottom: 2rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; }
.cart-items { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.cart-header-row { display: grid; grid-template-columns: 3fr 1fr 1fr; padding: 1rem 1.5rem; background: #f4f4f4; font-weight: bold; font-size: 0.9rem; color: #555; border-bottom: 1px solid #eee; }
.cart-item { display: flex; align-items: center; padding: 1.5rem; border-bottom: 1px solid #eee; gap: 1.5rem; }
.cart-item:last-child { border-bottom: none; }
.cart-item__image { width: 80px; flex-shrink: 0; }
.cart-item__image img { width: 100%; border-radius: 4px; }
.cart-item__details { flex-grow: 1; }
.cart-item__title { display: block; font-weight: bold; text-decoration: none; color: #333; margin-bottom: 0.3rem; }
.cart-item__variant { font-size: 0.85rem; color: #888; margin-bottom: 0.3rem; }
.cart-item__price { font-weight: bold; color: #333; }
.cart-item__remove { font-size: 0.8rem; color: #999; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: 0.5rem; transition: color 0.3s; }
.cart-item__remove:hover { color: #d32f2f; }
.cart-item__quantity { width: 120px; }
.cart-item__total { width: 100px; text-align: right; font-weight: bold; font-size: 1.1rem; }
.cart-summary { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); height: fit-content; }
.cart-summary__title { font-size: 1.2rem; font-weight: bold; margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #333; }
.cart-summary__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1.1rem; }
.cart-summary__price { font-weight: bold; font-size: 1.4rem; color: #d32f2f; }
.cart-summary__note { font-size: 0.85rem; color: #888; margin-bottom: 2rem; }
.btn--checkout { padding: 1rem; font-size: 1.1rem; margin-bottom: 1rem; }
.continue-shopping { display: block; text-align: center; font-size: 0.9rem; color: #666; text-decoration: underline; }
@media screen and (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-header-row { display: none; }
    .cart-item { flex-wrap: wrap; position: relative; }
    .cart-item__image { width: 70px; }
    .cart-item__details { width: calc(100% - 90px); }
    .cart-item__quantity { margin-left: 85px; }
    .cart-item__total { position: absolute; bottom: 1.5rem; right: 1.5rem; }
}

/* =========================================
   Standard Page (Policy, About, etc.) Styles
   ========================================= */
.page-section { padding-bottom: 5rem; background-color: #fff; }
.page-container { max-width: 800px; margin: 0 auto; }
.page-content { font-size: 1rem; line-height: 1.8; color: #333; }
.page-content h2 { font-size: 1.5rem; font-weight: bold; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #ddd; }
.page-content h3 { font-size: 1.25rem; font-weight: bold; margin: 2rem 0 1rem; color: #d32f2f; }
.page-content p { margin-bottom: 1.5rem; }
.page-content ul, .page-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-content table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem; }
.page-content th, .page-content td { border: 1px solid #ddd; padding: 12px 15px; text-align: left; }
.page-content th { background-color: #f9f9f9; font-weight: bold; color: #333; width: 30%; }
@media screen and (max-width: 768px) {
    .page-content th, .page-content td { padding: 8px 10px; font-size: 0.9rem; }
}

/* =========================================
   Captain Calendar Section (店舗情報・営業日)
   ========================================= */
.captain-calendar-section { padding-top: {{ section.settings.padding_top }}px; padding-bottom: {{ section.settings.padding_bottom }}px; background-color: {{ section.settings.bg_color }}; }
.captain-calendar__container { max-width: 1100px; margin: 0 auto 3rem auto; padding: 0 20px; }
.captain-calendar__header { text-align: center; margin-bottom: 3rem; }
.captain-calendar__title { font-size: 2rem; font-weight: bold; color: #111; margin-bottom: 0.5rem; font-family: "Helvetica Neue", Arial, sans-serif; }
.captain-calendar__sub { font-size: 0.9rem; color: #dc2626; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; }
.captain-shop-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.shop-info-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; }
.shop-info-card__image { width: 100%; height: auto;aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.shop-info-card__body { padding: 2rem; }
.shop-info-row { display: flex; margin-bottom: 1.2rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1.2rem; }
.shop-info-row:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.shop-info-label { width: 90px; font-weight: bold; color: #64748b; font-size: 0.9rem; flex-shrink: 0; }
.shop-info-content { color: #334155; font-size: 0.95rem; line-height: 1.6; }
.calendar-wrapper { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; padding: 1rem; }
.calendar-wrapper iframe { width: 100% !important; height: 400px !important; border: none !important; display: block; filter: grayscale(100%) contrast(110%); }
.calendar-note { margin-top: 1rem; font-size: 0.85rem; color: #64748b; line-height: 1.6; }
.google-map-embed { margin-top: 1.5rem; width: 100%; height: 200px; border-radius: 8px; overflow: hidden; }
.google-map-embed iframe { width: 100%; height: 100%; border: 0; }

@media (min-width: 900px) {
    .captain-shop-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (min-width: 768px) {
    .calendar-wrapper iframe { height: 500px !important; }
}