:root {
  --accent: #D8424E;
  --accent-dark: #B8323C;
  --accent-light: #F3D8DA;
  --card-shadow: 0 4px 18px rgba(0,0,0,.07);
  --card-shadow-hover: 0 14px 30px rgba(0,0,0,.13);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1b1b1b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-light); }
img { display: block; }

.inner { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

.ph {
  background-color: #e9e9e4;
  background-image: repeating-linear-gradient(45deg, #e9e9e4 0 11px, #e2e2db 11px 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: #9c9c90;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  padding: 10px;
}
.scrollx { scrollbar-width: none; }
.scrollx::-webkit-scrollbar { display: none; }

.btn {
  font-size: 14px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}
.btn-dark { background: #171717; color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: rgba(255,255,255,.85); color: #171717; border: 1px solid #d6d6cf; padding: 16px 26px; }
.btn-light:hover { background: #fff; }
.btn-outline { border: 1px solid #d6d6cf; font-weight: 500; padding: 15px 44px; background: #fff; }
.btn-outline:hover { background: #f6f6f3; }
.btn-sm { font-size: 13px; padding: 13px 24px; }
.btn-xs { font-size: 12.5px; padding: 10px 20px; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #ededea;
}
.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-right { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; }
.logo-img { width: 210px; height: auto; display: block; }
.logo-sub { font-size: 8.5px; letter-spacing: .18em; color: #9a9a92; }
.main-nav { display: flex; align-items: center; gap: 4px; font-size: 15px; font-weight: 500; }
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 6px; transition: background .15s; }
.nav-item > a:hover { background: #f3f3f0; color: var(--accent-dark); }
.nav-chevron { transition: transform .2s; flex-shrink: 0; }
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e8e8e3;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  padding: 6px 0;
  z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 9px 18px; font-size: 13.5px; font-weight: 400; color: #3a3a36; white-space: nowrap; }
.nav-dropdown a:hover { background: #f6f6f3; color: var(--accent-dark); }
.header-icons { display: flex; align-items: center; gap: 20px; }
.icon-btn { display: flex; }
.icon-btn:hover { opacity: .6; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -7px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* HERO */
.hero-section { position: relative; }
.hero-visual {
  height: 420px;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-copy-wrap {
  position: absolute;
  inset: 0;
  max-width: 1140px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 28px;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-copy h1 {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
  font-size: 66px;
  line-height: 1.18;
  letter-spacing: .02em;
  color: #1b1b1b;
}
.hero-tagline {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 36px;
  color: var(--accent-dark);
  margin-top: 6px;
  transform: rotate(-3deg);
  transform-origin: left;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; }
.dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); display: inline-block; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow-prev { left: 32px; }
.hero-arrow-next { right: 32px; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.dot-item { width: 9px; height: 9px; border-radius: 999px; background: rgba(0,0,0,.25); }
.dot-item.active { background: #1b1b1b; }

/* NEWS */
.news-section { padding: 48px 28px 16px; }
.news-row-main { display: flex; align-items: center; gap: 28px; font-size: 13.5px; }
.news-heading { font-weight: 700; font-size: 14px; letter-spacing: .12em; flex: none; }
.news-items { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.news-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  padding: 10px 0;
  border-bottom: 1px solid #ededea;
}
.news-items .news-item:first-child { border-top: 1px solid #ededea; }
.news-item-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1; }
.news-item:hover .news-item-text { color: var(--accent-dark); }
.news-date { color: #9a9a92; flex: none; }
.news-tag { background: var(--accent-light); color: var(--accent-dark); font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 3px; flex: none; }
.news-row-main .btn { flex: none; }

/* SECTION GENERIC */
.section-title { font-family: 'Noto Sans JP', sans-serif; font-size: 34px; font-weight: 900; letter-spacing: -.01em; }
.section-title-sm { font-size: 30px; }
.section-title-xs { font-size: 26px; }
.section-desc { font-size: 14px; color: #6c6c66; margin-top: 12px; line-height: 1.9; }
.center-btn-wrap { display: flex; justify-content: center; margin-top: 52px; }

/* CURATION / FEATURE */
.curation-section { padding: 40px 28px 98px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}


.curation-scroll-wrap { display: flex; align-items: center; gap: 16px; }
.curation-scroll { flex: 1; min-width: 0; display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth; padding: 8px 8px 14px; margin: -8px -8px -14px; }
.curation-card {
  flex: none;
  width: 300px;
  background: #f3f2ef;
  border-radius: 14px;
  padding: 14px 14px 20px;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
}
.curation-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.card-thumb { height: 218px; border-radius: 10px; position: relative; overflow: hidden; }
.card-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tag-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 4px; }
.tag-badge-new { background: var(--accent); color: #fff; }
.tag-badge-soft { background: var(--accent-light); color: var(--accent-dark); }
.tag-badge-white { background: #fff; color: #1b1b1b; }
.card-body { margin-top: 16px; }
.card-cat { display: inline-block; font-size: 11px; color: #6c6c66; background: #f2f2ee; padding: 4px 10px; border-radius: 4px; }
.card-body h3 { font-size: 18px; font-weight: 700; line-height: 1.5; margin-top: 12px; }
.card-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; margin-top: 14px; }
.card-link:hover { color: var(--accent-dark); }

.scroll-next-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e6e6e0;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-next-btn:hover { background: #fafafa; }

/* OUR ORIGINAL BRANDS */
.own-brands-section { background: #f6f6f3; padding: 95px 0; }
.own-brands-grid { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: stretch; }
.own-brands-copy { display: flex; flex-direction: column; justify-content: center; }
.own-brands-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.own-brand-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: var(--card-shadow);
  transition: opacity .2s, box-shadow .2s, transform .2s;
}
.own-brand-card:hover { opacity: .92; box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.own-brand-banner-img { width: 100%; height: auto; display: block; }

/* BRANDS */
.brands-section { background: #fff; padding: 90px 0; }
.section-head-simple { margin-bottom: 44px; }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 4px; }
.brand-card {
  background: #f3f2ef;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  min-height: 255px;
  box-shadow: var(--card-shadow);
  transition: box-shadow .2s, transform .2s;
}
.brand-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.brand-card-info { flex: 1.05; padding: 31px 27px; display: flex; flex-direction: column; }
.brand-logo-wrap { height: 130px; display: flex; align-items: center; }
.brand-logo { max-height: 120px; max-width: 320px; width: auto; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.brand-desc { font-size: 12.5px; color: #444; margin-top: 16px; line-height: 1.7; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag-pill {
  font-size: 11px;
  font-weight: 400;
  color: #7a7a72;
  background: #fff;
  border: 1px solid #d8d8d2;
  padding: 3px 10px;
  border-radius: 999px;
}
.brand-thumb { flex: 0 0 42%; align-self: stretch; overflow: hidden; }
.brand-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 商品を探す */
.discover-section { background: #f6f6f3; padding: 44px 0 48px; }
.search-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #ededea;
  border-radius: 10px;
  padding: 4px 4px 4px 18px;
}
.search-icon { flex: none; }
.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-size: 14px;
  font-family: inherit;
  color: #1b1b1b;
  padding: 12px 0;
}
.search-input:focus { outline: none; }
.search-input::placeholder { color: #a8a89e; }
.search-submit { flex: none; }

.discover-label { font-size: 12px; font-weight: 700; color: #8a8a82; margin-top: 24px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.chip {
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ededea;
  color: #5c5c56;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { background: var(--accent-light); color: var(--accent-dark); border-color: var(--accent-light); }

/* カテゴリタイル（無印良品風：枠なし・小さめ商品画像＋下に太字テキスト） */
.cat-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 20px;
  margin-top: 20px;
}
.cat-tile {
  flex: 0 0 calc((100% - 80px) / 5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cat-tile-img {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-tile-img img {
  max-height: 116px;
  max-width: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .25s ease;
}
.cat-tile:hover .cat-tile-img img { transform: scale(1.05); }
.cat-tile-img.ph { width: 116px; height: 116px; border-radius: 8px; background-color: #f3f3ef; background-image: repeating-linear-gradient(45deg, #f3f3ef 0 11px, #ececE6 11px 22px); }
.cat-tile-label {
  font-size: 17px;
  font-weight: 700;
  color: #1b1b1b;
  margin-top: 6px;
  line-height: 1.45;
  letter-spacing: .01em;
}
.cat-tile:hover .cat-tile-label { color: var(--accent-dark); }
@media (max-width: 760px) {
  .cat-tiles { gap: 22px 14px; }
  .cat-tile { flex-basis: calc((100% - 28px) / 3); }
  .cat-tile-img { height: 96px; }
  .cat-tile-img img { max-height: 96px; }
  .cat-tile-label { font-size: 14px; }
}

/* POPULAR */
.popular-section { padding: 56px 28px 64px; }
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 24px; }
.product-card {
  position: relative;
  height: 292px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 18px;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.product-thumb { height: 180px; border-radius: 10px; position: relative; overflow: hidden; }
.product-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  width: 100%;
}
.product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.product-price { font-size: 15px; font-weight: 700; }
.tax { font-size: 11px; font-weight: 400; color: #8a8a82; }
.fav-btn { background: none; border: none; cursor: pointer; display: flex; padding: 4px; }
.fav-btn svg path { transition: fill .15s, stroke .15s; }
.product-card[data-fav="true"] .fav-btn svg path { fill: var(--accent); stroke: var(--accent); }

/* FOOTER */
.site-footer { background: #2b2b2b; color: #e4e4e2; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; align-items: start; }
.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
}
.footer-desc { font-size: 13px; color: #9c9c98; margin-top: 18px; line-height: 1.9; }
.footer-sns { display: flex; gap: 16px; margin-top: 24px; }
.footer-sns .icon-btn:hover { opacity: .65; }
.footer-heading { font-size: 13px; font-weight: 700; margin-bottom: 18px; color: #fff; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 13px; font-size: 13px; color: #9c9c98; }
.footer-list a:hover { color: #fff; }
.footer-bottom-wrap { border-top: 1px solid #3c3c3c; margin-top: 56px; }
.footer-bottom {
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #7a7a76;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero-copy h1 { font-size: 44px; }
  .own-brands-grid { grid-template-columns: 1fr; }
  .own-brands-cards { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-row-main { flex-wrap: wrap; }
  .news-items { width: 100%; }
}

/* =====================================================================
   SHARED COMPONENTS — 下層ページ共通（サブページ全体で使用）
   ここは共通基盤。各ページ固有のスタイルは各ページ専用CSSに書くこと。
   ===================================================================== */

/* --- ページ共通ヘッダー（パンくず＋タイトル＋リード） --- */
.page-header { background: #f6f6f3; border-bottom: 1px solid #ededea; padding: 30px 0 38px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: #9a9a92; }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb .sep { color: #c8c8c0; }
.breadcrumb .current { color: #6c6c66; }
.page-title { font-family: 'Noto Sans JP', sans-serif; font-size: 32px; font-weight: 900; letter-spacing: -.01em; margin-top: 16px; }
.page-title-en { font-family: 'Caveat', cursive; font-weight: 600; font-size: 24px; color: var(--accent-dark); transform: rotate(-2deg); transform-origin: left; display: inline-block; margin-top: 8px; }
.page-lead { font-size: 14px; color: #6c6c66; margin-top: 14px; line-height: 1.9; max-width: 760px; }
.page-section { padding: 56px 0 72px; }
.result-count { font-size: 13px; color: #8a8a82; }
.result-count b { color: #1b1b1b; font-weight: 700; }

/* --- 2カラム（サイド＋本体） --- */
.layout-sidebar { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.filter-panel { display: flex; flex-direction: column; gap: 26px; }
.filter-group { border-bottom: 1px solid #ededea; padding-bottom: 22px; }
.filter-group:last-child { border-bottom: none; }
.filter-heading { font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-check { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #5c5c56; cursor: pointer; }
.filter-check input { accent-color: var(--accent); width: 15px; height: 15px; }
.filter-check:hover { color: var(--accent-dark); }

/* --- 並び替えバー --- */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.sort-select { font-family: inherit; font-size: 13px; color: #1b1b1b; padding: 10px 34px 10px 14px; border: 1px solid #ededea; border-radius: 8px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c6c66' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center; -webkit-appearance: none; appearance: none; cursor: pointer; }

/* --- ページネーション --- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 6px; display: flex; align-items: center; justify-content: center; border: 1px solid #ededea; border-radius: 8px; font-size: 13.5px; color: #5c5c56; background: #fff; }
.pagination a:hover { background: #f6f6f3; color: var(--accent-dark); }
.pagination .is-current { background: #171717; color: #fff; border-color: #171717; }
.pagination .is-disabled { color: #c8c8c0; pointer-events: none; }

/* --- 数量ステッパー --- */
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid #d6d6cf; border-radius: 8px; overflow: hidden; }
.qty-stepper button { width: 38px; height: 42px; border: none; background: #fff; font-size: 18px; cursor: pointer; color: #1b1b1b; }
.qty-stepper button:hover { background: #f6f6f3; }
.qty-stepper input { width: 46px; height: 42px; border: none; border-left: 1px solid #ededea; border-right: 1px solid #ededea; text-align: center; font-family: inherit; font-size: 15px; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --- タブ --- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid #ededea; margin-top: 8px; }
.tab { padding: 14px 22px; font-size: 14px; font-weight: 700; color: #9a9a92; background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; margin-bottom: -1px; }
.tab:hover { color: #1b1b1b; }
.tab.is-active { color: #1b1b1b; border-bottom-color: var(--accent); }
.tab-panel { display: none; padding: 30px 2px; font-size: 14px; line-height: 1.95; color: #444; }
.tab-panel.is-active { display: block; }

/* --- 情報テーブル（会社概要/特商法/スペック） --- */
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td { text-align: left; vertical-align: top; padding: 18px 20px; border-bottom: 1px solid #ededea; line-height: 1.8; }
.info-table th { width: 30%; font-weight: 700; color: #1b1b1b; background: #f6f6f3; white-space: nowrap; }
.info-table td { color: #444; }
@media (max-width: 680px) { .info-table th { width: 38%; padding: 14px; } .info-table td { padding: 14px; } }

/* --- 文書ボディ（規約・特集本文） --- */
.article-body { max-width: 820px; }
.article-body h2 { font-size: 22px; font-weight: 900; margin: 48px 0 16px; }
.article-body h3 { font-size: 17px; font-weight: 700; margin: 32px 0 12px; }
.article-body p { font-size: 14px; line-height: 2.05; color: #444; margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px 1.3em; }
.article-body li { font-size: 14px; line-height: 1.95; color: #444; margin-bottom: 6px; }
.article-body a { color: var(--accent-dark); text-decoration: underline; }

/* --- アコーディオン（FAQ） --- */
.accordion { border-top: 1px solid #ededea; }
.accordion-item { border-bottom: 1px solid #ededea; }
.accordion-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 44px 22px 8px; font-size: 15px; font-weight: 700; color: #1b1b1b; position: relative; display: flex; gap: 12px; }
.accordion-q::before { content: "Q"; color: var(--accent); font-weight: 900; flex: none; }
.accordion-q::after { content: ""; position: absolute; right: 12px; top: 50%; width: 11px; height: 11px; border-right: 2px solid #9a9a92; border-bottom: 2px solid #9a9a92; transform: translateY(-65%) rotate(45deg); transition: transform .2s; }
.accordion-item.is-open .accordion-q::after { transform: translateY(-35%) rotate(-135deg); }
.accordion-a { display: none; padding: 0 44px 24px 30px; font-size: 14px; line-height: 1.95; color: #555; }
.accordion-item.is-open .accordion-a { display: block; }

/* --- フォーム共通 --- */
.form-wrap { max-width: 680px; }
.form-row { margin-bottom: 24px; }
.form-label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 9px; }
.form-label .req { color: var(--accent); font-size: 11px; margin-left: 8px; font-weight: 700; }
.form-control { width: 100%; font-family: inherit; font-size: 14px; color: #1b1b1b; padding: 13px 15px; border: 1px solid #ededea; border-radius: 8px; background: #fff; }
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { min-height: 150px; resize: vertical; line-height: 1.8; }
select.form-control { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c6c66' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-note { font-size: 12px; color: #9a9a92; margin-top: 7px; line-height: 1.7; }
.form-actions { margin-top: 32px; display: flex; gap: 14px; }

/* --- ステップ表示（修理フロー等） --- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step-item { background: #f3f2ef; border-radius: 12px; padding: 26px 22px; box-shadow: var(--card-shadow); }
.step-item .step-num { counter-increment: step; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; font-size: 14px; }
.step-item .step-num::before { content: "0" counter(step); }
.step-item h3 { font-size: 15px; font-weight: 700; margin: 16px 0 8px; }
.step-item p { font-size: 12.5px; color: #6c6c66; line-height: 1.8; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } }

/* --- カード型グリッド（一覧ページ用 共通ラッパ） --- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* --- 補助ボタン（アクセント） --- */
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-block { width: 100%; justify-content: center; }

/* --- SHARED RESPONSIVE --- */
@media (max-width: 960px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .filter-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .page-title { font-size: 26px; }
}
@media (max-width: 560px) {
  .card-grid, .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .filter-panel { grid-template-columns: 1fr; }
}
