@charset "UTF-8";

/* カラーミーには<head>編集欄が無いため、Webフォントはここ（共通CSS先頭）で読み込む
   ※@charsetの直後・他ルールより前に置くこと */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600&family=Shippori+Mincho:wght@500&display=swap');

/* ============================================================
   TOCAR ONLINE STORE（カラーミー）  &#8212;  custom styles
   ・本体サイトからは「デザイントークン（色・フォント）」のみ継承
   ・レイアウトは EC 専用カンプ基準（最大幅1200px・複数カラム）
   ============================================================ */

:root {
  --ec-max:     1200px;        /* コンテンツ最大幅 */
  --ink:        #4c4b4c;        /* 基本フォントカラー */
  --ink-soft:   #7a8585;        /* ラベル等の弱い文字色 */
  --line:       #c8cdcb;        /* 罫線 */
  --bg:         #fff;           /* 背景 */
  --nav-bg:     #edefef;        /* ナビ drawer 背景 */
  --footer-bg:  #b0bdbd;        /* フッター帯 */
  --gutter:     20px;           /* 左右の最小余白 */
  --header-h:   100px;          /* ヘッダー高さ */
  --jp: "Shippori Mincho", serif;
  --en: "Plus Jakarta Sans", sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding-top: var(--header-h);   /* 固定ヘッダー分のオフセット */
  background: var(--bg);
  color: var(--ink);
  font-family: var(--jp);
  font-weight: 500;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* stickyフッター：コンテンツが少なくてもフッターを最下部に */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

/* main を伸縮させ、余白をフッター上に集約 */
main { flex: 1 0 auto; }
.ec-footer { flex-shrink: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
/* DISCOVER土台CSS(編集不可)が a:hover に付ける下線を打ち消す。本デザインは下線不使用 */
a:hover, a:focus { text-decoration: none !important; }
/* クリック時のフォーカス枠を消す（マウス操作時のみ。キーボード操作時は残しアクセシビリティ維持） */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.js-thumb:focus:not(:focus-visible),
select:focus:not(:focus-visible) { outline: none !important; }
/* スマホのタップ時に出る青/灰のハイライトも抑制 */
a, button { -webkit-tap-highlight-color: transparent; }
ul { list-style: none; margin: 0; padding: 0; }

/* 中央寄せコンテナ：最大1200px・両サイド余白 */
.ec-container,
.u-container {   /* .u-container はDISCOVER元HTMLの未移植ページ(プライバシー/特商法等)用 */
  width: 100%;
  max-width: var(--ec-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* 未移植ページ(l-main直下)の上下の余白（.ec-sectionを持たないため補う） */
.l-main > .u-container { padding-block: clamp(30px, 5vw, 56px); }

/* ============================================================
   HEADER（固定・共通）
   ============================================================ */
.ec-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid #f0f1f1;
  z-index: 50;
}
.ec-header__inner {
  width: 100%;
  max-width: var(--ec-max);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ec-header__logo { display: block; }
.ec-header__logo img {
  width: auto;
  height: 46px;
}
.ec-header__actions {
  display: flex;
  align-items: center;
  gap: 52px;
}
.ec-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity .3s;
}
.ec-header__icon:hover { opacity: .6; }
.ec-header__icon img { width: 100%; height: 100%; object-fit: contain; }

/* ============================================================
   HERO スライダー
   ============================================================ */
.hero { position: relative; }
.hero__slider { position: relative; overflow: hidden; }
/* スライドを同じグリッドセルに重ねてフェード切り替え */
.hero__track { display: grid; }
.hero__slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide picture { display: block; }
.hero__slide img {
  width: 100%;
  aspect-ratio: 16 / 7;   /* PC：アスペクト比固定（幅が変わっても比率は一定） */
  height: auto;
  object-fit: cover;
  object-position: center;
}
/* 人物の顔が切れないよう上寄りでトリミング */
.hero__slide--top img { object-position: center 20%; }
/* 3枚目は中央よりわずかに下でトリミング */
.hero__slide--lower img { object-position: center 40%; }

/* ドット（カルーセル） */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.hero__dots .dot {
  display: block;
  box-sizing: content-box;
  width: 22px;
  height: 2px;
  padding: 8px 0;
  border: 0;
  background: rgba(255, 255, 255, .6);
  background-clip: content-box;
  cursor: pointer;
  transition: background-color .3s;
}
.hero__dots .dot.is-active { background-color: #fff; }

/* ============================================================
   SECTION 共通
   ============================================================ */
.ec-section { padding-block: clamp(48px, 7vw, 86px); }
.ec-section + .ec-section { padding-top: 0; }

/* 見出し：英字タイトル＋右へ伸びる横罫線 */
.sec-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.sec-head__title {
  margin: 0;
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(19px, 2.6vw, 24px);
  letter-spacing: 0.08em;
  color: #696b6d;
  white-space: nowrap;
  text-transform: uppercase;   /* カラーミーのカテゴリ/グループ名(Tops等)を大文字表示 */
}
.sec-head__line {
  flex: 1 1 0;
  height: 1px;
  background: var(--line);
  /* 登場アニメ：左から右へゆっくり伸びる */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 2.2s ease .3s;
}
.sec-head.is-inview .sec-head__line { transform: scaleX(1); }

/* ============================================================
   NEW ARRIVALS（商品の横スクロール）
   ============================================================ */
.product-row {
  display: flex;
  gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.product-card {
  flex: 0 0 clamp(150px, 19vw, 212px);
  scroll-snap-align: start;
}
.product-card a { display: block; }
.product-card a:hover .product-card__thumb img { opacity: .82; }
.product-card__thumb { margin: 0; overflow: hidden; }
.product-card__thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: opacity .3s;
}
.product-card__body { padding-top: 10px; }
.product-card__name {
  margin: 0 0 2px;
  font-family: var(--en);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.product-card__price {
  margin: 0;
  font-family: var(--en);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-soft);
}

/* スクロールバーを控えめに */
.product-row::-webkit-scrollbar { height: 5px; }
.product-row::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

/* ============================================================
   商品一覧ページ
   ============================================================ */
/* パンくず */
.breadcrumb-ec {
  font-family: var(--en);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: clamp(18px, 2.2vw, 26px);
}
.breadcrumb-ec a { color: var(--ink-soft); transition: opacity .3s; }
.breadcrumb-ec a:hover { opacity: .6; }
.breadcrumb-ec__sep { margin: 0 8px; color: var(--line); }
.breadcrumb-ec__current { color: var(--ink); }

/* ツールバー：件数＋並び替え */
.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(20px, 2.6vw, 30px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.list-toolbar__count {
  margin: 0;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.list-toolbar__count span { color: var(--ink); }
.list-sort { display: inline-flex; align-items: center; gap: 10px; }
.list-sort__label {
  font-family: var(--en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.list-sort__select {
  font-family: var(--jp);
  font-size: 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 7px 34px 7px 14px;   /* 右は自前矢印ぶんの余白 */
  min-width: 150px;
  width: auto;                  /* colormekitの select{width:100%} を打ち消す */
  height: auto;                 /* colormekitの select{height:30px} を打ち消す（縦潰れ防止） */
  line-height: 1.5;             /* colormekitの line-height:30px を打ち消す */
  cursor: pointer;
  /* ネイティブ装飾を消して自前の矢印に統一（文字切れ防止） */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="7" viewBox="0 0 10 7"><path d="M1 1l4 4 4-4" fill="none" stroke="%234c4b4c" stroke-width="1"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* 商品グリッド */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(12px, 1.6vw, 20px);
  row-gap: clamp(26px, 3vw, 40px);
}

/* ページネーション */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 16px);
  margin-top: clamp(40px, 5vw, 60px);
}
.pager__num,
.pager__nav {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: opacity .3s;
}
.pager__num {
  min-width: 30px;
  padding: 4px 0;
  text-align: center;
}
.pager__num.is-current {
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
}
.pager__nav {
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 6px;
}
.pager__nav--prev { margin-right: 6px; }
.pager__nav--next { margin-left: 6px; }
.pager__num:hover,
.pager__nav:hover { opacity: .6; }
.pager__nav.is-disabled { opacity: .3; pointer-events: none; }
.pager__ellipsis { color: var(--ink-soft); padding: 0 4px; }

/* 商品一覧：売切れ表記・該当なし */
.product-card__price.is-soldout { color: var(--ink-soft); letter-spacing: .05em; }
.list-empty { text-align: center; color: var(--ink-soft); padding: 60px 0; font-family: var(--en); font-weight: 600; }
.list-empty--jp { font-family: var(--jp); font-weight: 500; }

/* 商品検索結果：検索キーワードの表示 */
.search-keyword {
  margin: 0 0 clamp(18px, 2.2vw, 26px);
  font-family: var(--jp);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ============================================================
   フリーページ（共通テンプレの free 分岐・パンくず）
   ============================================================ */
.ec-freepage { padding-top: clamp(24px, 3vw, 40px); }

/* ============================================================
   ABOUT フリーページ
   ============================================================ */
.about-block { margin: 30px 0 40px; text-align: center; }
.about-lead {
  font-family: var(--jp);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 2.1;
  margin: 0 0 20px;
  color: var(--ink);
}
.about-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--ink);
  margin: 0;
}
.about-image {
  margin: 0 0 40px;
}
.about-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.about-info {
  margin: 30px auto 0;
  max-width: 640px;
  border-top: 1px solid var(--line);
}
.about-info__row {
  display: flex;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.about-info__row dt {
  flex: 0 0 130px;
  color: var(--ink-soft);
}
.about-info__row dd { margin: 0; flex: 1; }
@media (max-width: 475px) {
  .about-info__row { flex-direction: column; gap: 4px; }
  .about-info__row dt { flex-basis: auto; }
}

/* ============================================================
   商品詳細ページ
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

/* ギャラリー */
.pd-gallery__main { margin: 0; overflow: hidden; }
.pd-gallery__main img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.pd-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pd-thumb {
  flex: 0 0 auto;
  width: 74px;
  padding: 0;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: border-color .3s, opacity .3s;
}
.pd-thumb img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.pd-thumb:hover { opacity: .8; }
.pd-thumb.is-active { border-color: var(--ink); }

/* 情報 */
.pd-info__cat {
  margin: 0 0 10px;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.pd-info__name {
  margin: 0 0 16px;
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.pd-info__price {
  margin: 0 0 28px;
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink);
}
.pd-info__tax {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
}

/* フォーム */
.pd-option { margin-bottom: 22px; }
.pd-option__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.pd-select {
  width: 100%;
  font-family: var(--jp);
  font-size: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 34px 12px 14px;   /* 右は自前矢印ぶん */
  height: auto;                    /* colormekit select{height:30px} を打ち消す */
  line-height: 1.5;                /* colormekit line-height:30px を打ち消す */
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="7" viewBox="0 0 10 7"><path d="M1 1l4 4 4-4" fill="none" stroke="%234c4b4c" stroke-width="1"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* 数量ステッパー */
.pd-qty { margin-bottom: 20px; }
.pd-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
}
.pd-stepper__btn {
  width: 42px;
  height: 44px;
  border: 0;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: opacity .3s;
}
.pd-stepper__btn:hover { opacity: .6; }
.pd-stepper__input {
  width: 54px;
  height: 44px;
  border: 0;
  border-inline: 1px solid var(--line);
  text-align: center;
  font-family: var(--en);
  font-size: 15px;
  color: var(--ink);
  -moz-appearance: textfield;
}
.pd-stepper__input::-webkit-outer-spin-button,
.pd-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pd-stock {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* カートボタン（塗りつぶしの主CTA） */
.btn-cart {
  width: 100%;
  padding: 17px 24px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--jp);
  font-size: 15px;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: opacity .3s;
}
.btn-cart:hover { opacity: .85; }
/* カートボタンの状態バリエーション（商品詳細） */
.btn-cart.is-soldout,
.btn-cart.is-disabled { background: var(--line); color: #fff; cursor: default; opacity: 1; text-align: center; }
.btn-cart.is-membersonly { background: var(--ink-soft); color: #fff; text-align: center; }
.btn-cart.is-soldout:hover,
.btn-cart.is-disabled:hover,
.btn-cart.is-membersonly:hover { opacity: 1; }

/* 商品詳細の細部 */
.pd-info__listprice { margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; text-decoration: line-through; }
.pd-text-input { width: 100%; font-family: var(--jp); font-size: 14px; color: var(--ink); border: 1px solid var(--line); border-radius: 0; padding: 12px 14px; }
.pd-qty__unit { margin-left: 10px; color: var(--ink-soft); font-size: 13px; }
.pd-form__error { margin: 8px 0 0; color: #b4453c; font-size: 13px; }

.pd-meta {
  margin: 18px 0 0;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* 説明・スペック・おすすめ（全幅セクション） */
.pd-section { margin-top: clamp(52px, 7vw, 88px); }
.pd-desc p {
  margin: 0 0 1.4em;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.04em;
}
.pd-desc p:last-child { margin-bottom: 0; }

.pd-spec {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  font-size: 13px;
}
.pd-spec th,
.pd-spec td {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.pd-spec th {
  width: 30%;
  font-family: var(--en);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ============================================================
   タイルグリッド（COUNTRY / ITEM）
   ============================================================ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.tile { position: relative; }
.tile a {
  position: relative;
  display: block;
  overflow: hidden;
}
.tile__bg {
  width: 100%;
  aspect-ratio: 5 / 2;   /* カンプ準拠（380×150 ≒ 2.5:1）の横長 */
  object-fit: cover;
  transition: transform .5s ease;
}
.tile a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 44, 44, .28);
  transition: background-color .3s;
}
.tile a:hover .tile__bg { transform: scale(1.05); }
.tile a:hover::after { background: rgba(40, 44, 44, .38); }
.tile__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

/* ============================================================
   OUR JOURNAL
   ============================================================ */
.journal-feature {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.journal-feature__img { flex: 1 1 0; margin: 0; }
.journal-feature__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.journal-feature__body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 44px);
}
.journal-feature__lead {
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

/* ============================================================
   ボーダーボタン（矢印付き）
   ============================================================ */
.btn-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 12px 56px;
  border: 1px solid var(--ink);
  font-family: var(--jp);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--ink);
  transition: opacity .3s;
}
.btn-line:hover { opacity: .6; }
.btn-line__text { white-space: nowrap; }
.btn-line__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--ink);
  transform: translateY(-50%);
}
.btn-line__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
  transform-origin: right center;
}

/* ============================================================
   FOOTER（共通）
   ============================================================ */
.ec-footer {
  background: var(--footer-bg);
  padding-block: clamp(40px, 6vw, 64px);
}
.ec-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* ロゴ・メニューを左揃え */
  gap: 22px;
  text-align: left;
}
.ec-footer__logo img { height: 38px; width: auto; }
/* フッターメニュー：横並び（折り返し可） */
.ec-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.ec-footer__links a { transition: opacity .3s; }
.ec-footer__links a:hover { opacity: .6; }
.ec-footer__copy {
  font-family: var(--en);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #fff;
}

/* ============================================================
   NAV DRAWER（右からスライドイン・共通）
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
}
.drawer.is-open { visibility: visible; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 44, 44, .25);
  opacity: 0;
  transition: opacity .35s ease;
}
.drawer.is-open .drawer__overlay { opacity: 1; }

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  background: rgba(237, 239, 239, .97);   /* #edefef / 97% */
  padding: clamp(72px, 10vw, 96px) clamp(28px, 6vw, 88px) 48px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity .3s;
}
.drawer__close:hover { opacity: .6; }
.drawer__close img { width: 26px; height: auto; display: block; }

.drawer__list > li { margin-bottom: 26px; }
.drawer__link,
.drawer__group {
  display: block;
  font-family: var(--en);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.drawer__link { transition: opacity .3s; }
.drawer__link:hover { opacity: .6; }

.drawer__group { margin-bottom: 14px; }
.drawer__sub { padding-left: 4px; }
.drawer__sub li { margin: 10px 0; }
.drawer__sub a {
  display: inline-flex;
  align-items: center;
  font-family: var(--en);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: opacity .3s;
}
.drawer__sub a::before {
  content: "\2014";   /* emダッシュ。カラーミーCSS欄での実体参照化を避けるためunicodeエスケープで指定 */
  margin-right: 12px;
  color: var(--ink-soft);
}
.drawer__sub a:hover { opacity: .6; }

/* ============================================================
   スクロールフェードイン
   ============================================================ */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.js-fade.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js-fade { opacity: 1; transform: none; transition: none; }
  .sec-head__line { transform: none; transition: none; }
  .hero__slide, .tile__bg { transition: none; }
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 991px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  :root { --header-h: 80px; }
  .ec-header__logo img { height: 38px; }
  .ec-header__icon { width: 28px; height: 28px; }
  .ec-header__actions { gap: 40px; }
  .hero__slide img { aspect-ratio: 1 / 1; }   /* スマホ：縦長めの比率で人物を見せる */
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .journal-feature { flex-direction: column; align-items: stretch; }
  .journal-feature__body { align-items: center; text-align: center; }
  .btn-line { width: 100%; }
}

@media (max-width: 420px) {
  .tile__label { font-size: 13px; }
}
