@charset "utf-8";

/* =========================================================
   Woollen online store - Common Styles (Mobile First / SP)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "Meiryo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; vertical-align: middle; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p, dl, dd { margin: 0; }

/* ---- Layout container (SP base 375px) ---- */
.l-wrap {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

/* =========================================================
   Header
   ========================================================= */
.l-header { position: sticky; top: 0; z-index: 50; background: #fff; }

.l-header__notice {
  font-size: 11px;
  text-align: center;
  background: #f5f5f5;
  color: #666;
  padding: 4px 8px;
}

.l-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
}

.l-header__logo {
  display: inline-flex; align-items: center;
}
.l-header__logo img {
  height: 40px; width: auto; display: block;
}

.l-header__icons { display: flex; align-items: center; gap: 16px; }
.l-header__icon { width: 22px; height: 22px; color: #222; display: inline-flex; }
.l-header__icon svg { width: 100%; height: 100%; }
.l-header__cart { position: relative; width: 26px; height: 26px; margin-right: 8px; }
.l-header__cart-num {
  position: absolute; top: -6px; right: -6px;
  background: #c83939; color: #fff; font-size: 10px;
  border-radius: 50%; width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
}
.l-header__hamb { width: 30px; height: 24px; position: relative; }
.l-header__hamb span {
  position: absolute; left: 0; right: 0; height: 2px; background: #222;
}
.l-header__hamb span:nth-child(1) { top: 2px; }
.l-header__hamb span:nth-child(2) { top: 11px; }
.l-header__hamb span:nth-child(3) { top: 20px; }

/* category icon nav (under header) */
.l-catnav {
  background: #fff; border-bottom: 1px solid #eee;
}
.l-catnav__inner {
  display: grid; grid-template-columns: repeat(3, 1fr); /* SP: ALL ITEMS / BRANDS / OUTLET の3項目を均等3列 */
}
.l-catnav__item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px; font-size: 11px; color: #333;
}
.l-catnav__item .icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.l-catnav__item .icon svg { width: 30px; height: 30px; }
.l-catnav__item .icon img { width: 30px; height: 30px; object-fit: contain; display: block; }
.l-catnav__item--outlet { color: #c83939; }
.l-catnav__item--outlet .icon { color: #c83939; }
.l-catnav__item--outlet .badge {
  width: 30px; height: 30px; border-radius: 50%; background: #c83939; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  position: relative;
}
.l-catnav__item--outlet .badge::before,
.l-catnav__item--outlet .badge::after {
  content: ""; position: absolute; inset: -3px;
  border: 2px dashed #c83939; border-radius: 50%; opacity: 0;
}

/* gender / sub tabs */
.tabs-gender {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #efefef;
  text-align: center; font-weight: 700;
  font-size: 14px; color: #444;
}
.tabs-gender__item { padding: 14px 0; cursor: pointer; }
.tabs-gender__item.is-active { background: #fce6e6; color: #222; }

/* gender サブメニュー (カテゴリーグリッド) */
.tabs-gender__sub {
  display: flex; flex-wrap: nowrap; justify-content: safe center;
  gap: 16px; padding: 14px 16px;
  background: #fff; border-bottom: 1px solid #eee;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tabs-gender__sub::-webkit-scrollbar { display: none; }
.tabs-gender__sub[hidden] { display: none; }
.tabs-gender__subitem {
  flex: 0 0 auto; white-space: nowrap;
  text-align: center; padding: 6px 4px; font-size: 14px;
  color: #444;
}
.tabs-gender__subitem.is-active { font-weight: 700; color: #222; text-decoration: underline; text-underline-offset: 12px; text-decoration-thickness: 2px; }

.tabs-sub {
  display: flex; align-items: center; justify-content: space-around;
  border-bottom: 2px solid #ddd; font-size: 13px;
  color: #555; background: #fff;
}
.tabs-sub__item {
  padding: 14px 6px; flex: 1; text-align: center; position: relative; cursor: pointer;
}
.tabs-sub__item.is-active { color: #222; font-weight: 600; }
.tabs-sub__item.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: #222;
}

/* breadcrumb */
.breadcrumb {
  font-size: 12px; color: #555; padding: 12px 14px; background: #fff;
}
.breadcrumb a { color: #555; }
.breadcrumb .sep { margin: 0 6px; }
.breadcrumb .sep i { font-size: 10px; } /* fa-angle-right を旧テキスト「>」相当の大きさに */

/* =========================================================
   Section title
   ========================================================= */
.sec-title {
  text-align: center; padding: 22px 14px 14px;
}
.sec-title__en {
  font-family: "Times New Roman", serif;
  font-size: 26px; letter-spacing: .06em; font-weight: 700;
  display: inline-block;
}
.sec-title__en--outlined {
  -webkit-text-stroke: 1px #222; color: #fff;
}
.sec-title__ja { font-size: 11px; color: #555; margin-top: 4px; letter-spacing: .1em; }

.sec-title--row {
  text-align: left; padding: 24px 14px 12px;
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
}
.sec-title--row .ttl { display: flex; align-items: baseline; gap: 8px; }
.sec-title--row .ttl .en {
  font-family: "Times New Roman", serif; font-size: 22px; font-weight: 700;
  -webkit-text-stroke: 1px #222; color: #fff;
}
.sec-title--row .ttl .ja { font-size: 11px; color: #555; }
.sec-title--row .all-link {
  border: 1px solid #222; padding: 8px 14px; font-size: 12px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #222; background: #fff; padding: 14px 18px;
  font-size: 14px; min-height: 48px; width: 100%;
  text-align: center;
}
.btn--dark { background: #444; color: #fff; border-color: #444; }
.btn--accent { background: #c83939; color: #fff; border-color: #c83939; }
.btn--outline { background: #fff; color: #222; border-color: #222; }
.btn--ghost { background: #f3f3f3; color: #444; border-color: #d8d8d8; }
.btn--cart {
  background: #222; color: #fff; border-color: #222; font-weight: 600;
  letter-spacing: .04em;
}
.btn--cart .ico { margin-right: 8px; }
/* Bootstrap の .btn:hover（--bs-btn-hover-* 未定義）で背景・枠線が消えるのを打ち消し。
   各種とも同系色を維持しつつ軽く濃度変化（インラインstyleで着色したボタンはインラインが優先＝変化なし） */
.btn:hover { color: #222; background: #f7f7f7; border-color: #222; }
.btn--dark:hover, .btn--cart:hover { background: #000; color: #fff; border-color: #000; }
.btn--accent:hover { background: #b53333; color: #fff; border-color: #b53333; }
.btn--outline:hover { background: #f7f7f7; color: #222; border-color: #222; }
.btn--ghost:hover { background: #e7e7e7; color: #333; border-color: #ccc; }

.more-link { padding: 0 14px; }
.more-link a {
  display: block; text-align: center; padding: 16px 0; border: 1px solid #222;
  font-size: 13px; text-decoration: underline;
}

/* =========================================================
   Carousel-ish horizontal scroller
   ========================================================= */
.scroller {
  position: relative; padding: 0 0 8px;
}
.scroller__track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 14px 12px; scrollbar-width: none;
}
.scroller__track::-webkit-scrollbar { display: none; }
.scroller__item { flex: 0 0 calc(50% - 24px); min-width: 0; scroll-snap-align: start; }
.scroller__item--3 { flex-basis: calc(33.333% - 16px); }
.scroller__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 56px; background: rgba(80,80,80,.8); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.scroller__nav--prev { left: 0; }
.scroller__nav--next { right: 0; }
.scroller__nav svg { width: 14px; height: 14px; }

/* =========================================================
   Product card
   ========================================================= */
.card {
  font-size: 12px; color: #333;
  /* EC-CUBE同梱 Bootstrap の .card（枠線・角丸・白背景）とクラス名が衝突する。
     Woollen 商品カードは角丸・枠なしが正のため打ち消す（角丸で画像の角が欠けて見える問題の解消）。 */
  border: 0; border-radius: 0; background: transparent;
}
.card__media {
  position: relative; aspect-ratio: 3 / 4; background: #d9d9d9; overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__badges {
  position: absolute; left: 0; bottom: 0; display: flex; gap: 4px;
}
.badge { display: inline-block; font-size: 11px; padding: 4px 10px; font-weight: 700; }
.badge--new { background: #222; color: #fff; }
.badge--sale { background: #c83939; color: #fff; }
.badge--restock { background: #888; color: #fff; }
.badge--soldout { background: #fff; color: #222; border: 1px solid #888; }
.card__brand {
  margin-top: 6px; font-family: "Times New Roman", serif;
  font-weight: 700; font-size: 12px; letter-spacing: .04em; color: #888;
}
.card__name {
  margin-top: 3px; line-height: 1.4; font-size: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: calc(1.4em * 2);
}
.card__price { margin-top: 4px; font-size: 13px; font-weight: 700; color: #222; }
.card__price small { font-weight: 400; font-size: 10px; color: #555; margin-left: 2px; }
.card__price--sale { color: #c83939; }
/* @woollen #288 割引率バッジ（取り込み時に保持） */
.card__off { color: #c83939; font-weight: 700; font-size: 11px; margin-left: 4px; white-space: nowrap; }
/* /@woollen #288 */
.card__price del { color: #888; font-weight: 400; margin-right: 6px; }

/* product grid */
.p-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 10px;
  padding: 0 12px;
}
.p-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 14px 8px; }

/* ranking */
.rank-num {
  position: absolute; left: 6px; top: 6px; width: 28px; height: 28px;
  border-radius: 50%; background: #d4a017; color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.rank-num.is-2 { background: #b0b0b0; }
.rank-num.is-3 { background: #c08355; }
.rank-num.is-other { background: #888; }

/* =========================================================
   Brand grid
   ========================================================= */
.brand-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 0 14px;
}
.brand-grid__item {
  aspect-ratio: 1 / 1; border: 1px solid #d8d8d8;
  display: flex; align-items: center; justify-content: center;
  font-family: "Times New Roman", serif; font-size: 14px; letter-spacing: .04em;
  color: #444; text-align: center; padding: 10px;
}

/* =========================================================
   Banners
   ========================================================= */
.feature-banners { padding: 0 14px; }
.feature-banners img { border-radius: 2px; }

.outlet-bar {
  margin: 16px 14px;
  background: #c83939; color: #fff; padding: 16px 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative;
}
.outlet-bar__icon {
  width: 38px; height: 38px; border-radius: 50%; background: #fff; color: #c83939;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.outlet-bar__main { font-family: "Times New Roman", serif; font-size: 28px; font-weight: 700; letter-spacing: .04em; }
.outlet-bar__main .stroke { -webkit-text-stroke: 1px #fff; color: transparent; }
.outlet-bar__sub { font-size: 12px; }

.mailmag {
  margin: 16px 14px;
  border: 1px solid #d8d8d8;
}
.mailmag__head {
  background: #444; color: #fff; padding: 14px 14px;
  display: flex; align-items: center; gap: 8px; font-size: 13px;
}
.mailmag__body { padding: 14px; background: #fff; }
.mailmag__btn {
  display: block; text-align: center; padding: 14px 0; border: 1px solid #d8d8d8;
  background: #fff;
}

.expand-list { padding: 0 14px; }
.expand-list__group { /* SP: 各グループ縦並び。PC で grid 各列に配置 */ }
.expand-list__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid #eaeaea;
  font-size: 13px; cursor: pointer;
}
.expand-list__item .plus { width: 14px; height: 14px; position: relative; }
.expand-list__item .plus::before, .expand-list__item .plus::after {
  content: ""; position: absolute; background: #444; left: 0; right: 0;
}
.expand-list__item .plus::before { top: 50%; height: 2px; transform: translateY(-50%); }
.expand-list__item .plus::after { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); }
.expand-list__item.is-open .plus::after { display: none; }

/* サブリスト (アコーディオン展開時) */
.expand-list__sub {
  padding: 10px 0 18px; font-size: 13px;
}
.expand-list__sub li { padding: 6px 0; border-bottom: 1px dotted #eee; }
.expand-list__sub li:last-child { border-bottom: 0; }
.expand-list__sub a {
  display: block; padding: 4px 8px; color: #444;
}
.expand-list__sub a::before { content: "› "; color: #999; }

/* =========================================================
   Footer
   ========================================================= */
.l-footer { background: #f6f6f6; padding: 30px 0 0; margin-top: 30px; }
.l-footer__logo {
  text-align: center; padding: 30px 14px;
  font-style: normal; font-size: 16px; font-weight: 400;
}
.l-footer__logo span { font-style: italic; font-weight: 700; font-size: 28px; margin-right: 6px; }
.l-footer__placeholder {
  text-align: center; padding: 40px 0; color: #888; font-size: 18px; letter-spacing: .3em;
  background: #ededed;
}

/* =========================================================
   Modal / Popup
   ========================================================= */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 16px; z-index: 100;
  overflow-y: auto;
}
.modal[hidden] { display: none !important; }
.modal[hidden] { display: none; }
.modal__panel { background: #fff; width: 100%; max-width: 600px; position: relative; padding: 16px; }
.modal__close {
  position: absolute; right: 8px; top: 8px; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: #222;
}

/* =========================================================
   Forms
   ========================================================= */
.form-section { padding: 16px 14px; border-bottom: 1px solid #eee; }
.form-section__head { background: #222; color: #fff; padding: 12px 14px; font-weight: 700; font-size: 14px; }
.form-row { padding: 12px 0; }
.form-row__label { font-size: 13px; margin-bottom: 6px; font-weight: 600; }
.form-row__label .req { color: #c83939; font-size: 11px; margin-left: 4px; }
.input,
select.input,
textarea.input {
  width: 100%; border: 1px solid #c8c8c8; padding: 12px 12px;
  font-size: 14px; background: #fff; min-height: 46px; border-radius: 0;
}
textarea.input { min-height: 100px; }
.input--sm { width: 80px; }
.field-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.help-text { color: #888; font-size: 11px; margin-top: 4px; }

.radio-list, .check-list { display: flex; flex-direction: column; gap: 10px; padding: 6px 0; }
.radio-list label,
.check-list label { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.radio-list input[type="radio"],
.check-list input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: #2469ff;
}

.dl-info {
  display: grid; grid-template-columns: 110px 1fr; gap: 6px 12px;
  font-size: 13px; padding: 12px 0;
}
.dl-info dt { color: #555; }
.dl-info dd { color: #222; }

/* =========================================================
   Step indicator
   ========================================================= */
.l-step-head {
  background: #888; color: #fff; padding: 14px 14px; font-size: 18px; text-align: center;
  font-weight: 600; letter-spacing: .04em;
}
.steps {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 14px;
}
.steps__item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; position: relative; }
.steps__item .num {
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  border: 1.5px solid #888; color: #888; display: flex;
  align-items: center; justify-content: center; font-weight: 700;
}
.steps__item .label { font-size: 11px; color: #888; }
.steps__item.is-active .num { background: #c83939; border-color: #c83939; color: #fff; }
.steps__item.is-active .label { color: #c83939; font-weight: 700; }
.steps__line {
  flex: 0 0 14px; height: 1px; background: #888; align-self: center; margin: 0 -2px;
}

/* =========================================================
   Mypage tab grid
   ========================================================= */
.mypage-tabs {
  display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #d8d8d8;
  margin: 0 14px;
}
.mypage-tabs__item {
  border: 1px solid #d8d8d8; margin: -1px 0 0 -1px;
  text-align: center; padding: 14px 6px; font-size: 14px; background: #fff;
}
.mypage-tabs__item.is-active { color: #c83939; font-weight: 700; }

/* =========================================================
   Mypage layout (sidebar nav + main content)
   ========================================================= */
.mypage-layout { display: contents; }
.mypage-side { background: #f8f8f8; padding: 16px 14px; border-bottom: 1px solid #eee; }
.mypage-side__head { font-size: 13px; font-weight: 700; color: #444; margin-bottom: 8px; }
.mypage-nav { display: grid; gap: 4px; }
.mypage-nav__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: #fff; border: 1px solid #e5e5e5;
  font-size: 13px; color: #222;
}
.mypage-nav__item.is-active { background: #fce6e6; color: #c83939; font-weight: 700; }
.mypage-nav__item::after { content: "›"; color: #999; }
.mypage-main { padding: 16px 0; }
.mypage-main__head {
  background: #444; color: #fff; padding: 14px 16px; font-size: 14px; font-weight: 700;
}
.mypage-greet {
  padding: 16px 14px; border-bottom: 1px solid #eee;
}
.mypage-greet__name { font-size: 16px; font-weight: 700; }
.mypage-greet__sub { font-size: 12px; color: #666; margin-top: 4px; }

/* 注文履歴カード */
.order-card {
  border: 1px solid #e5e5e5; margin: 12px 14px; padding: 14px;
  font-size: 13px;
}
/* 注文番号を黒帯見出し化（カードの padding 14px を負マージンで相殺して全幅に。右端にステータスバッジ） */
.order-card__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  background: #222; color: #fff;
  margin: -14px -14px 12px; padding: 10px 14px;
  font-size: 16px; font-weight: 700; /* page46 の見出し（.ec-rectHeading h2＝16px）と統一 */
  gap: 6px 10px;
}
.order-card__id { color: inherit; }
.order-card__head .order-card__status,
.order-card__head .order-card__detail { white-space: nowrap; flex: 0 0 auto; } /* 帯内の要素（バッジ/注文詳細ボタン）は途中改行させない */
/* 本文はカード内1カラム: ご注文日時 → 商品スワイパー → 注文詳細 */
.order-card__meta > p { margin: 0 0 8px; font-size: 12px; }
/* 注文カード内 商品スワイパー（複数商品はドラッグ/スワイプで切替。初期化は page45 の $pageJavascript） */
.wl-orderSwiper { position: relative; overflow: hidden; }
/* 下部スクロールバー: 通常のスクロールバー（細トラック＋グレーのつまみ・ドラッグ操作可）。
   ※カスタム要素には Swiper が .swiper-scrollbar-horizontal を付与。1商品のみのカードでは lock で自動非表示 */
.wl-orderSwiper__pg.swiper-scrollbar,
.wl-orderSwiper__pg.swiper-scrollbar-horizontal { position: relative; display: block; width: 100%; height: 6px; margin: 12px auto 0; left: auto; right: auto; bottom: auto; background: #e5e5e5; border-radius: 3px; cursor: pointer; }
.wl-orderSwiper__pg.swiper-scrollbar .swiper-scrollbar-drag,
.wl-orderSwiper__pg.swiper-scrollbar-horizontal .swiper-scrollbar-drag { background: #999; border-radius: 3px; }
/* 注文詳細ボタンはカード右下（右端寄せ） */
.order-card__actions { display: flex; justify-content: flex-end; margin-top: 12px; }
/* 注文詳細はアウトライン型の小ボタン */
.order-card__detail {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid #222; background: #fff; color: #222;
  padding: 8px 18px; font-size: 12px; text-decoration: none;
}
.order-card__detail:hover { background: #f7f7f7; }
.order-card__status {
  font-size: 12px; color: #fff; background: #888;
  padding: 6px 14px; border-radius: 2px; /* バッジ拡大（旧 11px / 2px 8px） */
}
.order-card__status--done { background: #1aa358; }
.order-card__status--shipped { background: #2469ff; }
.order-card__row {
  display: grid; grid-template-columns: 70px 1fr; gap: 12px; padding: 6px 0;
  align-items: center; /* 画像とテキストを上下中央で揃える */
}
.order-card__thumb { width: 70px; aspect-ratio: 3/4; background: #d9d9d9; }
.order-card__foot {
  margin-top: 10px; padding-top: 10px; border-top: 1px solid #eee;
  display: flex; align-items: center; justify-content: space-between;
}
.order-card__total { font-weight: 700; }

/* =========================================================
   Coupon card
   ========================================================= */
/* 画面幅に応じて 1→2→3 列（最大3列）。カード間は gap で管理 */
.coupon-list {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  padding: 0 14px; margin-top: 20px;
}
@media (min-width: 600px) { .coupon-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .coupon-list { grid-template-columns: repeat(3, 1fr); } }

/* 縦型カード（ダークバンド）：上＝黒帯・淡色文字（見出し＋値引き＋有効期限） / 下（グレー）＝ご利用条件など */
.coupon-card {
  display: flex; flex-direction: column;
  border: 1px solid #333; background: #fff;
  font-size: 13px; position: relative;
}
.coupon-card--expired { opacity: .55; }
.coupon-card__top { background: #333333; padding: 16px 14px 14px; text-align: center; position: relative; overflow: hidden; }
/* 背景の「Woollen」ウォーターマーク（Jost・太字・薄グレー・中央寄せ） */
.coupon-card__top::before {
  content: "Woollen"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif; font-style: normal; font-weight: 700;
  font-size: 78px; line-height: 1; white-space: nowrap; color: rgba(255,255,255,.08);
  pointer-events: none; z-index: 0;
}
.coupon-card__top > * { position: relative; z-index: 1; }
.coupon-card__title { font-size: 13px; font-weight: 700; color: #fff; }
.coupon-card__value {
  font-size: 30px; font-weight: 700; color: #fff;
  line-height: 1.25; margin: 8px 0 10px; word-break: break-word;
}
.coupon-card__value small { font-size: 1em; margin-left: 3px; color: #fff; }
.coupon-card__expire { font-size: 11px; color: #fff; }
/* 下段の条件（グレー地）。カード高さが揃うよう margin-top:auto で最下部に寄せる */
.coupon-card__meta { background: #fff; padding: 4px 14px 12px; margin-top: auto; }
.coupon-card__meta > div { padding: 15px 0; border-bottom: 1px solid #e5e5e5; }
.coupon-card__meta > div:last-child { border-bottom: 0; }
.coupon-card__meta dt { font-weight: 700; color: #333; font-size: 12px; }
.coupon-card__meta dd { font-size: 12px; margin: 8px 0 0; line-height: 1.5; }

/* =========================================================
   Star rating
   ========================================================= */
.stars {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 14px; line-height: 1; color: #f4d058;
}
.stars__num { color: #666; font-size: 12px; margin-left: 6px; }
.stars--lg { font-size: 22px; gap: 4px; }

/* =========================================================
   Review item
   ========================================================= */
.review-item {
  padding: 16px 14px; border-bottom: 1px solid #eee;
  font-size: 13px;
}
.review-item__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.review-item__title { font-weight: 700; font-size: 14px; margin: 6px 0; }
.review-item__meta { font-size: 11px; color: #888; margin-top: 6px; }
.review-item__body { color: #444; line-height: 1.8; }
.review-item__actions {
  margin-top: 10px; display: flex; gap: 14px; font-size: 11px; color: #555;
}
.review-summary {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px;
  padding: 14px; background: #f8f8f8; margin: 12px 14px;
  align-items: center;
}
.review-summary__avg { text-align: center; }
.review-summary__avg-num { font-size: 28px; font-weight: 700; line-height: 1; }
.review-bar { display: grid; grid-template-columns: 50px 1fr 40px; gap: 6px; padding: 2px 0; font-size: 11px; align-items: center; }
.review-bar__track { background: #ddd; height: 6px; position: relative; overflow: hidden; }
.review-bar__fill { background: #f4d058; height: 100%; }

/* =========================================================
   Restock manage row
   ========================================================= */
.restock-row {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 12px; padding: 14px; border-bottom: 1px solid #eee;
  font-size: 13px; align-items: center;
}
.restock-row__thumb { width: 70px; aspect-ratio: 3/4; background: #d9d9d9; }
.restock-row__remove {
  background: #fff; border: 1px solid #c83939; color: #c83939;
  padding: 6px 12px; font-size: 11px;
}

/* 完了系メッセージ */
.done-message {
  text-align: center; padding: 40px 14px; font-size: 14px; line-height: 2;
}
.done-message__title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.done-message__sub { font-size: 12px; color: #666; }

/* =========================================================
   Error pages (404 / 500 / maintenance / no-js)
   ========================================================= */
.err-wrap {
  max-width: 720px; margin: 0 auto; padding: 60px 14px;
  text-align: center;
}
.err-code {
  font-family: "Times New Roman", serif;
  font-size: 90px; font-weight: 700; line-height: 1;
  color: #c83939; letter-spacing: .04em;
}
.err-icon {
  font-size: 56px; line-height: 1; margin-bottom: 14px;
}
.err-title {
  font-size: 22px; font-weight: 700; margin-top: 16px;
}
.err-message {
  font-size: 14px; color: #555; line-height: 1.9; margin-top: 18px;
}
.err-actions {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px; margin: 28px auto 0;
}
.err-section {
  margin-top: 40px; padding: 24px 14px;
  background: #f5f5f5; text-align: left;
}
.err-section h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.err-section ul { list-style: disc; padding-left: 1.4em; font-size: 13px; line-height: 1.9; }

/* =========================================================
   Legal pages (利用規約 / プライバシーポリシー / 特商法 など)
   ========================================================= */
.legal-wrap { max-width: 1040px; margin: 0 auto; padding: 24px 24px 40px; }
.legal-meta {
  font-size: 12px; color: #666; text-align: right; padding-bottom: 14px;
  border-bottom: 1px solid #eee; margin-bottom: 24px;
}
.legal-intro {
  font-size: 15px; line-height: 1.95; padding: 0 0 20px;
}
.legal-block { padding: 20px 0; }
.legal-block h2 {
  font-size: 17px; font-weight: 700; padding: 8px 0 8px 12px;
  border-left: 4px solid #222; margin-bottom: 12px;
}
.legal-block h3 { font-size: 15px; font-weight: 700; margin: 16px 0 6px; color: #444; }
.legal-block p { font-size: 15px; line-height: 1.95; color: #444; margin-bottom: 8px; }
.legal-block ul, .legal-block ol { padding-left: 1.4em; font-size: 15px; line-height: 1.95; margin: 6px 0 10px; }
.legal-block ul { list-style: disc; }
.legal-block ol { list-style: decimal; }
.legal-block li { padding: 2px 0; }
.legal-toc {
  background: #f8f8f8; padding: 14px 18px; margin: 0 0 24px;
}
.legal-toc__head { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.legal-toc ol { list-style: decimal; padding-left: 1.4em; font-size: 14px; line-height: 1.9; }
.legal-toc a { color: #444; }
.legal-toc a:hover { color: #222; }

/* =========================================================
   News / Feature pages
   ========================================================= */
.news-list { max-width: 880px; margin: 0 auto; padding: 0 14px; }
.news-list__row {
  display: grid; grid-template-columns: 90px 80px 1fr;
  gap: 14px; padding: 14px 0; border-bottom: 1px solid #eee;
  font-size: 13px;
}
.news-list__date { color: #666; font-family: "Times New Roman", serif; font-size: 12px; }
.news-list__cat {
  font-size: 11px; padding: 2px 8px; background: #444; color: #fff;
  text-align: center; align-self: start; line-height: 1.6;
}
.news-list__cat--info { background: #2469ff; }
.news-list__cat--campaign { background: #c83939; }
.news-list__cat--restock { background: #1aa358; }
.news-list__cat--important { background: #ff8c00; }
.news-list__title { color: #222; }

.article-hero {
  padding: 30px 14px 18px;
  text-align: left;
  max-width: 880px; margin: 0 auto;
}
.article-hero__meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.article-hero__title { font-size: 20px; font-weight: 700; line-height: 1.5; }
.article-body {
  max-width: 880px; margin: 0 auto; padding: 0 14px 30px;
  font-size: 14px; line-height: 2; color: #333;
}
.article-body h2 { font-size: 16px; font-weight: 700; padding-left: 10px; border-left: 3px solid #c83939; margin: 24px 0 12px; }
.article-body p { margin: 10px 0; }
.article-body img { max-width: 100%; margin: 16px auto; display: block; }

.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 880px; margin: 0 auto; padding: 0 14px;
}
.feature-card {
  display: block; background: #fff; border: 1px solid #eee;
  font-size: 12px;
}
.feature-card__media {
  aspect-ratio: 4 / 3; background: #d9d9d9; overflow: hidden; position: relative;
}
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__body { padding: 10px 12px 14px; }
.feature-card__cat { font-size: 11px; color: #c83939; font-weight: 700; }
.feature-card__title { margin-top: 4px; font-size: 13px; font-weight: 700; line-height: 1.5; }
.feature-card__date { margin-top: 6px; font-size: 11px; color: #888; }

/* =========================================================
   Common helpers
   ========================================================= */
.text-center { text-align: center; }
.text-accent { color: #c83939; }
.text-link { color: #2469ff; text-decoration: underline; }
.muted { color: #888; }
.divider { height: 1px; background: #eee; margin: 16px 0; }
.section { padding: 12px 0; }
.sp-only { }
.spacer-sm { height: 12px; }
.spacer-md { height: 24px; }
.spacer-lg { height: 40px; }

/* annotation (赤字注釈) */
.annot {
  color: #1aa358; font-weight: 700; font-size: 14px; padding: 8px 0;
}
.annot--red { color: #c83939; }

/* product pages bits */
.pd-layout { display: contents; }
.pd-layout__media { display: contents; }
.pd-layout__info { display: contents; }

.pd-thumbs {
  display: flex; gap: 6px; padding: 8px 14px; overflow-x: auto;
}
.pd-thumbs__item { flex: 0 0 70px; aspect-ratio: 3/4; background: #d8d8d8; }
.pd-thumbs__item.is-active { outline: 2px solid #222; }

.pd-actions { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.pd-share { padding: 8px 14px; display: flex; align-items: center; gap: 12px; font-size: 12px; color: #555; }
.pd-share__icons { display: flex; gap: 8px; }
.pd-share__icons span { display: flex; gap: 8px; }
.pd-share__icon { display: block; width: 28px; height: 28px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.pd-share__icon img { width: 28px; height: 28px; display: block; }

.pd-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #ddd; }
.pd-tabs__item { padding: 14px 0; text-align: center; color: #888; font-weight: 600; border-bottom: 2px solid transparent; cursor: pointer; }
.pd-tabs__item.is-active { color: #222; border-bottom-color: #222; }

.pd-detail { padding: 16px 14px; font-size: 13px; line-height: 1.8; }
.pd-detail[hidden] { display: none; }

/* size table */
.size-table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13px; }
.size-table th, .size-table td { border: 1px solid #ddd; padding: 10px 8px; text-align: center; }
.size-table th { background: #f5f5f5; font-weight: 700; }
.size-table tbody th { background: #f9f9f9; }

/* size guide button */
.size-guide-link {
  display: inline-block; margin-top: 18px; padding: 6px 0;
  font-size: 13px; color: #444; text-decoration: underline;
  background: none; border: 0; cursor: pointer;
}

/* T-shirt diagram in modal */
.size-diagram {
  position: relative; max-width: 360px; margin: 14px auto;
  aspect-ratio: 4 / 5; background: #fafafa;
  border: 1px solid #eee;
}
.size-diagram svg { width: 100%; height: 100%; }
.size-diagram__label {
  position: absolute; font-size: 12px; color: #555;
}

/* =========================================================
   PD Variants (カラー × サイズ バリアント一覧)
   ========================================================= */
.pd-variants { padding: 14px; }
.pd-variant-group {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 16px; padding: 16px 0;
  border-top: 1px solid #eee;
}
.pd-variant-group:first-child { border-top: 0; padding-top: 0; }
.pd-variant-group__media { text-align: center; }
.pd-variant-group__media img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: #f5f5f5; display: block;
}
.pd-variant-group__label {
  font-size: 13px; margin-top: 8px; color: #444; text-align: center;
}
.pd-variant-group__rows {
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
}
.pd-variant-row {
  display: grid;
  grid-template-columns: 110px 1fr 32px;
  gap: 14px; align-items: center;
  font-size: 13px;
}
.pd-variant-row__info { color: #444; }
.pd-variant-row--soldout .pd-variant-row__info { color: #888; }
.pd-variant-row__cart {
  display: inline-flex; align-items: center; justify-content: center;
  background: #222; color: #fff; padding: 12px 18px;
  font-size: 14px; font-weight: 600; gap: 8px; min-height: 44px;
  text-decoration: none;
}
.pd-variant-row__cart .ico { font-size: 16px; }
.pd-variant-row__cart--restock {
  background: #fff; color: #444; border: 1px solid #888;
  font-weight: 400;
}
.pd-variant-row__fav {
  font-size: 22px; color: #ccc; line-height: 1; padding: 4px;
  background: none; border: 0;
}
.pd-variant-row__fav.is-active { color: #c83939; }

/* color swatches */
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid #ccc;
}

/* =========================================================
   Hero slider (auto slideshow)
   ========================================================= */
.hero-slider {
  position: relative; overflow: hidden;
  background: #f5f5f5;
}
.hero-slider__track {
  position: relative; width: 100%;
  aspect-ratio: 16 / 11;
}
.hero-slider__item {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  pointer-events: none;
}
.hero-slider__item.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slider__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 56px;
  background: rgba(0, 0, 0, .35); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; z-index: 2;
}
.hero-slider__nav--prev { left: 0; }
.hero-slider__nav--next { right: 0; }
.hero-slider__dots {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: 0; padding: 0;
}
.hero-slider__dot.is-active { background: #fff; }

/* =========================================================
   PC listing layout (sidebar + main) - SP は通常レイアウト
   ========================================================= */
.l-listing { display: contents; }
.l-listing__side { display: none; }
.l-listing__main { display: contents; }
.sort-bar { display: none; }
.l-listing__title { display: none; }
.pagination { display: none; }

/* 絞り込みパーツ（サイドバーの中身）。PC専用ではなく基底に置く：
   page06 は SP でも .l-filter__toggle のアコーディオンで中身を開くため。
   他ページは .l-listing__side が SP で display:none のまま＝見た目に変化なし。 */
.l-filter__badge {
  background: #f3f3f3; color: #444; font-size: 12px; font-weight: 700;
  text-align: center; padding: 10px 8px; margin-bottom: 12px;
}
.l-filter__badge span { color: #c83939; font-size: 16px; margin: 0 2px; }

.l-filter__block {
  border-top: 1px solid #e5e5e5;
  padding: 14px 0;
}
/* 「対象商品N件」バッジ直後の先頭ブロック（ブランド）は上罫線なし */
.l-filter__badge + .l-filter__block { border-top: 0; }
.l-filter__block h4 {
  font-size: 13px; font-weight: 700; color: #222;
  margin-bottom: 10px;
}
.l-filter__list { padding: 0; margin: 0; }
.l-filter__list li { padding: 3px 0; }
.l-filter__list label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #444; cursor: pointer;
}
.l-filter__list input[type="checkbox"] {
  width: 14px; height: 14px; accent-color: #c83939;
}
/* リンク型のリスト（ブランド / 価格タイプ）: 絞り込みではなく各一覧へ遷移する。
   項目間に仕切り線、右端に遷移を示す矢印。 */
.l-filter__links { padding: 0; margin: 0; }
.l-filter__links li { padding: 0; }
.l-filter__links li + li { border-top: 1px solid #eee; }
.l-filter__links a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 9px 0; font-size: 12px; color: #444;
}
.l-filter__links a .fa-solid { flex: 0 0 auto; font-size: 11px; color: #999; transition: color .2s, transform .2s; }
.l-filter__links a:hover { color: #c83939; }
.l-filter__links a:hover .fa-solid { color: #c83939; transform: translateX(2px); }
/* 現在地（表示中のブランド等）。矢印はマークアップ側で出さない */
.l-filter__links a[aria-current="page"] { color: #222; font-weight: 700; cursor: default; }
.l-filter__links a[aria-current="page"]:hover { color: #222; }
/* 単一選択（ブランド / 価格タイプ）で選択中の項目。チェックはアクセント色 */
.l-filter__links a.is-selected { color: #222; font-weight: 700; }
.l-filter__links a.is-selected .fa-check { color: var(--woollen-primary, #c83939); }
.l-filter__links a.is-selected:hover { color: #222; }
.l-filter__links a.is-selected:hover .fa-check { color: var(--woollen-primary, #c83939); transform: none; }


.l-filter__block .swatches { gap: 6px; padding: 4px 0; }
.l-filter__block .swatch { width: 20px; height: 20px; }
/* カラーは複数選択リンク（スウォッチ）。選択中は黒リング */
a.swatch { display: inline-block; box-sizing: border-box; cursor: pointer; }
a.swatch.is-active { border-color: #222; box-shadow: 0 0 0 2px #fff inset, 0 0 0 1px #222; }

/* ボタンをリンクとしても使う（クリア等） */
a.l-filter__btn { text-align: center; text-decoration: none; line-height: 1.7; }

/* ハッシュタグの複数選択（チェックボックス風リンク） */
.l-filter__list--check { padding: 0; margin: 0; }
.l-filter__check { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 12px; color: #444; }
.l-filter__check .l-filter__checkbox {
  flex: 0 0 auto; width: 14px; height: 14px; border: 1px solid #bbb; border-radius: 2px;
  position: relative; background: #fff;
}
.l-filter__check.is-checked { color: #222; }
.l-filter__check.is-checked .l-filter__checkbox { background: var(--woollen-primary, #c83939); border-color: var(--woollen-primary, #c83939); }
.l-filter__check.is-checked .l-filter__checkbox::after {
  content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.l-filter__check:hover { color: var(--woollen-primary, #c83939); }

.l-filter__range {
  display: flex; align-items: center; gap: 6px;
}
.l-filter__range input {
  flex: 1; min-width: 0; border: 1px solid #ccc; padding: 6px 8px;
  font-size: 12px; border-radius: 2px; background: #fff;
}
.l-filter__range span { font-size: 12px; color: #555; }

.l-filter__actions {
  display: flex; gap: 6px; margin-top: 10px;
}
.l-filter__btn {
  flex: 1; font-size: 11px; padding: 6px 8px;
  border: 1px solid #888; background: #fff; color: #555;
}
.l-filter__btn--primary {
  background: #222; color: #fff; border-color: #222;
}

/* SP: 絞り込みサイドバーをアコーディオンで開閉（PC はボタン非表示・サイドバー常時表示）。
   対象は .l-listing__side--sp-accordion を付けたページのみ。 */
.l-filter__toggle {
  display: flex; align-items: center; justify-content: space-between;
  margin: 12px 14px 0; padding: 12px 14px;
  background: #fff; border: 1px solid #ccc; border-radius: 2px;
  font-size: 13px; font-weight: 700; color: #222; cursor: pointer;
}
.l-filter__toggle .fa-solid { font-size: 12px; transition: transform .2s; }
.l-filter__toggle.is-open .fa-solid { transform: rotate(180deg); }
.l-listing__side--sp-accordion.is-open { display: block; padding: 0 14px 8px; }

/* SP: 絞り込み FAB */
.l-listing__filter-fab {
  position: sticky; bottom: 14px;
  margin: 24px 14px 0 auto;
  display: inline-flex; gap: 6px; align-items: center;
  background: #fff; padding: 10px 14px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  font-size: 12px; float: right;
}

/* =========================================================
   Product card - color variant thumbnails (商品サムネ下の色展開)
   ========================================================= */
.card__colors {
  display: flex; gap: 3px; margin-top: 6px;
  overflow-x: auto; scrollbar-width: none;
}
.card__colors::-webkit-scrollbar { display: none; }
.card__colors-item {
  flex: 0 0 auto; width: 18px; aspect-ratio: 3 / 4;
  background: #e2e2e2; border: 1px solid #e2e2e2;
}
.card__colors-item img { width: 100%; height: 100%; object-fit: cover; }
.card__colors-item.is-active { border-color: #222; }
.card__colors-more {
  flex: 0 0 auto; min-width: 18px; height: 24px; padding: 0 3px;
  background: #f5f5f5; border: 1px solid #e2e2e2;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #555; line-height: 1;
}

/* =========================================================
   SP Drawer (ハンバーガーメニュー)
   ========================================================= */
.l-drawer[hidden] { display: none; }
.l-drawer {
  position: fixed; inset: 0; z-index: 200;
  display: flex; justify-content: flex-end;
}
.l-drawer__backdrop {
  position: absolute; inset: 0; background: rgba(0, 0, 0, .45);
  animation: drawerFade .2s ease;
}
.l-drawer__panel {
  position: relative; width: min(86%, 380px); max-width: 100%;
  height: 100%; background: #fff; overflow-y: auto;
  animation: drawerSlide .25s ease;
  box-shadow: -4px 0 16px rgba(0, 0, 0, .15);
  -webkit-overflow-scrolling: touch;
}
@keyframes drawerFade {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes drawerSlide {
  from { transform: translateX(100%); } to { transform: translateX(0); }
}
.l-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #eee;
}
.l-drawer__greet { font-size: 13px; color: #222; }
.l-drawer__close {
  width: 32px; height: 32px; font-size: 22px; line-height: 1;
  color: #222;
}
.l-drawer__authrow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px 14px 12px;
}
.l-drawer__authbtn {
  display: flex; align-items: center; justify-content: center;
  min-height: 40px; border: 1px solid #222;
  font-size: 13px; background: #fff; color: #222;
}
.l-drawer__authbtn--primary { background: #222; color: #fff; }
.l-drawer__search {
  display: flex; align-items: center; gap: 6px;
  margin: 4px 14px 10px; padding: 4px 6px 4px 10px;
  border: 1px solid #ccc; background: #fff;
}
.l-drawer__search .ic { width: 18px; height: 18px; color: #555; display: inline-flex; }
.l-drawer__search .ic svg { width: 100%; height: 100%; }
.l-drawer__search input {
  flex: 1; border: 0; outline: 0; padding: 8px 4px;
  font-size: 13px; background: transparent;
}
.l-drawer__searchbtn {
  background: #222; color: #fff; font-size: 12px;
  padding: 8px 14px; min-height: 32px;
}
.l-drawer__filter {
  display: flex; align-items: center; gap: 8px;
  margin: 0 14px 12px; padding: 10px 12px;
  border: 1px solid #ddd; background: #fafafa;
  font-size: 13px; color: #222;
}
.l-drawer__filter .ic { width: 18px; height: 18px; display: inline-flex; }
.l-drawer__filter .ic svg { width: 100%; height: 100%; }

.l-drawer__gender {
  display: grid; grid-template-columns: 1fr 1fr;
  margin: 6px 14px 12px; background: #efefef;
  text-align: center; font-weight: 700; font-size: 13px; color: #555;
}
.l-drawer__gender-item { padding: 10px 0; }
.l-drawer__gender-item.is-active { background: #fce6e6; color: #222; }

.l-drawer__quicknav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: 0 14px 6px; gap: 4px;
}
.l-drawer__quicknav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px; font-size: 11px; color: #333;
  border: 1px solid #eee;
}
.l-drawer__quicknav-item .ic { width: 30px; height: 30px; display: inline-flex; }
.l-drawer__quicknav-item .ic svg { width: 100%; height: 100%; }
.l-drawer__quicknav-item--outlet { color: #c83939; border-color: #f3c4c4; }
.l-drawer__quicknav-item--outlet .ic .pct {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: #c83939; color: #fff; font-weight: 700; font-size: 13px;
}

/* ドロワーのセクション見出し（ブランドから探す / カテゴリーから探す） */
.l-drawer__sechead {
  background: #f3f3f3; color: #444; font-weight: 700;
  padding: 10px 14px; font-size: 12px; margin-top: 8px;
}
.l-drawer__brands {
  margin: 0; padding: 0 14px;
}
.l-drawer__brands li { border-bottom: 1px solid #eee; }
.l-drawer__brands li a {
  display: block; padding: 14px 4px; font-size: 13px;
  position: relative;
}
.l-drawer__brands li a::after {
  content: "›"; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%); color: #999; font-size: 16px;
}

.l-drawer__cats { padding: 0 14px; }
.l-drawer__cats[hidden] { display: none; }
.l-drawer__cats li {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #eee; font-size: 13px;
}
.l-drawer__cats li a { display: block; padding: 14px 4px; flex: 1; }
.l-drawer__cats li span {
  font-size: 11px; color: #888; padding: 4px 8px; border: 1px solid #ddd;
  border-radius: 2px; margin-left: 8px;
}

.l-drawer__guide {
  padding: 8px 14px 24px; border-top: 1px solid #eee; margin-top: 8px;
}
.l-drawer__guide li { border-bottom: 1px solid #f0f0f0; }
.l-drawer__guide li a {
  display: block; padding: 12px 4px; font-size: 12px; color: #444;
}

/* drawer open時に背面スクロール抑止 */
body.is-drawer-open { overflow: hidden; }

/* =========================================================
   Search Overlay (キーワード検索オーバーレイ) - 全ページ共通
   ヘッダーの「キーワード検索」クリックで表示
   ========================================================= */
.search-overlay {
  /* .modal の基本挙動を上書き: ヘッダー直下から表示する全幅ドロップダウン */
  align-items: stretch !important;
  justify-content: stretch !important;
  padding: 0 !important;
  display: block !important;
  /* ヘッダー高さ分だけ下げる (JSから --search-overlay-top を動的にセット) */
  top: var(--search-overlay-top, 0px) !important;
}
.search-overlay[hidden] { display: none !important; }
.search-overlay__panel {
  background: #f3f3f3;
  padding: 28px 14px 22px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  border-bottom: 1px solid #ddd;
}
.search-overlay__close {
  position: absolute; top: 6px; right: 12px;
  background: none; border: 0; font-size: 24px; line-height: 1;
  color: #444; cursor: pointer; padding: 4px 8px;
}
.search-overlay__row {
  display: flex; gap: 8px;
  max-width: 640px; margin: 0 auto;
}
.search-overlay__input-wrap {
  flex: 1; display: flex; align-items: center;
  background: #fff; border: 1px solid #d8d8d8; padding: 10px 14px;
  min-width: 0;
}
.search-overlay__icon { margin-right: 8px; color: #888; }
.search-overlay__input {
  border: 0; outline: 0; width: 100%; font-size: 14px;
  background: transparent;
}
.search-overlay__submit {
  width: 90px; min-height: auto !important; padding: 0 14px !important;
  white-space: nowrap;
}
.search-overlay__filter {
  display: block; text-align: center;
  margin: 16px auto 0; padding: 12px 18px;
  background: #fff; color: #222; font-weight: 700;
  border: 1px solid #222;
  border-radius: 999px; max-width: 320px;
  transition: background .2s, color .2s;
}
.search-overlay__filter:hover { background: #222; color: #fff; }
.search-overlay__filter-ic {
  display: inline-block; vertical-align: middle; margin-right: 6px;
}

/* =========================================================
   Hero slider - TOPページのカルーセル基本形 (page03/04/05共通)
   SPは縦長ビジュアル。PCのカルーセル化は pc.css 側。
   ========================================================= */
.hero-slider .hero-slider__track {
  aspect-ratio: 1080 / 1200;
  max-height: none;
}
.hero-slider__item picture {
  display: block; width: 100%; height: 100%;
}
.hero-slider__item picture img,
.hero-slider__item > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* =========================================================
   Email template pages (page51 / page61 共通)
   ========================================================= */
.email-wrap {
  max-width: 640px; margin: 24px auto; padding: 24px;
  background: #fff; border: 1px solid #ddd;
  font-family: monospace; font-size: 13px; line-height: 1.8;
}
.email-meta {
  border-bottom: 1px solid #ddd; padding-bottom: 12px;
  margin-bottom: 16px; font-family: inherit;
}
.email-meta dt { color: #888; }
.email-body { white-space: pre-wrap; }

/* =========================================================
   Checkout 2カラム (注文情報入力 page30 / 注文確認 page31 共通)
   SPは1カラム。PCの2カラム化は pc.css 側。
   ========================================================= */
.cart-step2 { padding: 0; }
.cart-step2__inner {
  display: block; max-width: 1280px; margin: 0 auto;
  padding: 0 14px 40px;
}
.cart-step2__main { min-width: 0; }
.cart-step2__aside { min-width: 0; }

.cart-section {
  border: 1px solid #e5e5e5; margin-top: 14px; background: #fff;
}
.cart-section__head {
  background: #f3f3f3; padding: 10px 14px;
  font-size: 14px; font-weight: 700; color: #333;
}
.cart-section__body { padding: 14px; }

.cust-info { font-size: 13px; line-height: 1.8; }

.ship-product {
  display: grid; grid-template-columns: 88px 1fr; gap: 14px;
  padding: 6px 0 14px; font-size: 13px;
}
.ship-product img {
  width: 88px; aspect-ratio: 3/4; object-fit: cover; background: #d9d9d9;
}
.ship-product__name { line-height: 1.5; }
.ship-product__meta {
  font-size: 12px; color: #555; margin-top: 6px; line-height: 1.7;
}

.ship-addr {
  font-size: 13px; line-height: 1.8;
  padding: 12px 0; border-top: 1px solid #eee;
}

.order-summary {
  border: 0; background: #fff; font-size: 13px;
}
.order-summary__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid #eee;
}
.order-summary__row span { color: #444; }
.order-summary__row strong { font-weight: 400; }
.order-summary__total {
  display: flex; justify-content: flex-end; align-items: baseline;
  gap: 14px; padding: 12px 0 4px;
}
.order-summary__total-label { font-size: 13px; color: #222; }
.order-summary__total-val { font-size: 22px; font-weight: 700; color: #222; }
.order-summary__total-val small { font-size: 11px; font-weight: 400; margin-left: 4px; }
.order-summary__pay {
  display: flex; justify-content: flex-end; align-items: baseline;
  gap: 14px; padding: 4px 0 2px;
}
.order-summary__pay-label { font-size: 13px; color: #c83939; }
.order-summary__pay-val { font-size: 22px; font-weight: 700; color: #c83939; }
.order-summary__pay-val small { font-size: 11px; font-weight: 400; margin-left: 4px; }
.order-summary__tax {
  text-align: right; font-size: 11px; color: #555; padding: 0 0 12px;
}
.order-summary__points {
  background: #f6f6f6; padding: 12px 14px; margin: 4px 0 12px; font-size: 13px;
}
.order-summary__points-row {
  display: flex; justify-content: space-between; padding: 4px 0;
}

.btn-confirm {
  display: block; text-align: center;
  background: #d05545; color: #fff; padding: 16px 0;
  font-size: 15px; font-weight: 700; width: 100%;
  border: 0; cursor: pointer; text-decoration: none; margin-bottom: 10px;
}
.btn-back {
  display: block; text-align: center;
  background: #4a4a55; color: #fff; padding: 16px 0;
  font-size: 14px; width: 100%;
  border: 0; cursor: pointer; text-decoration: none;
}
