@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Segoe UI", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.c-muted {
  color: #666;
  font-size: 0.92rem;
}

.p-section {
  padding: 48px 0;
}

.p-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.p-section__title {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.p-breadcrumb {
  padding: 16px 0;
  color: #666;
  font-size: 0.9rem;
}
.p-breadcrumb a {
  color: inherit;
}

html.is-locked,
html.is-locked body {
  overflow: hidden;
}

/* =========================================================
   Utilities (minimum)
   - u- はどこでも使える汎用ユーティリティ
========================================================= */
/* 汎用：完全非表示（JSが付けてもOK） */
.u-hidden {
  display: none !important;
}

/* 画面読み上げ用（必要なら） */
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 900px) {
  .l-container {
    padding-inline: 16px;
  }
}

.post {
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================================================
   Base
========================================================= */
.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

/* =========================================================
   Top row: welcome | logo | icons  (PC/SP共通)
========================================================= */
.l-header__top {
  background: #fff;
}

.l-header__topInner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding-block: 12px; /* 左右は .l-container に任せる */
}

.l-header__welcome {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-header__logo {
  justify-self: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.l-header__icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   Sub row
========================================================= */
.l-header__sub {
  border-top: 1px solid #e6e6e6;
  background: #fff;
}

.l-header__subInner {
  padding-block: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* =========================================================
   PC nav (WP menu: hover sub-menu)
========================================================= */
.l-gnav {
  display: none;
} /* SPは非表示 */
.l-gnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.l-gnav__list > li {
  position: relative;
}

.l-gnav__list > li > a {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 800;
  color: #666;
}

.l-gnav__list > li > a:hover {
  color: #111;
  background: #f7f6f4;
}

/* 子メニュー（WPのsub-menu） */
@media (min-width: 900px) {
  .l-gnav__list > li > .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 240px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.18s ease;
    list-style: none;
    margin: 0;
    z-index: 60;
  }
  .l-gnav__list > li:hover > .sub-menu,
.l-gnav__list > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .l-gnav__list > li > .sub-menu a {
    display: block;
    padding: 8px;
    border-radius: 8px;
  }
  .l-gnav__list > li > .sub-menu a:hover {
    background: #f7f6f4;
  }
}
/* =========================================================
   SP nav
========================================================= */
.l-spnav {
  display: flex;
  gap: 8px;
  width: 100%;
}

.l-spnav__btn,
.l-spnav__link {
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
}

.l-spnav__btn:hover,
.l-spnav__link:hover {
  color: #111;
  background: #f7f6f4;
}

/* SP下段の WP メニュー（横並び＆はみ出したら横スクロール） */
.l-spnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.l-spnav__list::-webkit-scrollbar {
  display: none;
}

.l-spnav__list > li {
  flex: 0 0 auto;
}

/* WPメニューのリンクに、既存 .l-spnav__link の見た目を当てる */
.l-spnav__list > li > a {
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.l-spnav__list > li > a:hover {
  color: #111;
  background: #f7f6f4;
}

/* =========================================================
   Responsive switch
========================================================= */
@media (min-width: 900px) {
  .l-gnav {
    display: block;
  }
  .l-spnav {
    display: none;
  }
}
/* =========================================================
   Welcome text control
========================================================= */
.l-header__userName {
  font-weight: 700;
  white-space: nowrap;
}

/* =========================================================
   PC / SP icon switch
   ※ display指定が他で上書きされても確実に効かせる
========================================================= */
/* デフォルト：SP */
.u-pc-only {
  display: none !important;
}

.u-sp-only {
  display: inline-flex !important;
}

@media (min-width: 900px) {
  .u-pc-only {
    display: inline-flex !important;
  }
  .u-sp-only {
    display: none !important;
  }
}
/* SPでは「ようこそ」だけ非表示 */
@media (max-width: 899px) {
  .l-header__welcomeText {
    display: none;
  }
  .l-header__userName {
    font-size: 0.85rem;
  }
}
.c-headerLogout {
  font-size: 12px;
  margin-left: 10px;
  color: #666;
  text-decoration: none;
}

.c-headerLogout:hover {
  text-decoration: underline;
}

.l-footer {
  border-top: 1px solid #e6e6e6;
  margin-top: 48px;
  background: #fff;
}

.l-footer__inner {
  display: grid;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 900px) {
  .l-footer__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 48px;
  }
}

.l-footer__col {
  min-width: 0;
}

.l-footer__title {
  margin: 0 0 12px;
  font-size: 1rem;
}

.l-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #666;
}

.l-footer__links a:hover {
  color: #111;
}

.l-footer__bottom {
  border-top: 1px solid #e6e6e6;
  padding: 16px 0;
  color: #666;
  font-size: 0.9rem;
}

.c-btn {
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.c-btn--primary {
  background: #111;
  border-color: #111;
  color: #fff;
}

.c-btn--ghost {
  background: transparent;
}

.c-btn--wide {
  width: 100%;
}

.c-link {
  color: #666;
  font-weight: 600;
}

.c-link:hover {
  color: #111;
}

.c-iconBtn {
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

/* util link (header top icons) */
.c-utilLink {
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 800;
  color: #666;
}

.c-utilLink--btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #e6e6e6;
}

.c-utilLink__icon {
  font-size: 16px;
  line-height: 1;
}

.c-utilLink__text {
  font-size: 0.9rem;
}

/* ✅ SP：文字を隠してアイコンだけ */
@media (max-width: 899px) {
  .c-utilLink {
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    gap: 0;
  }
  .c-utilLink__text {
    display: none;
  }
}
.c-btn--center {
  text-align: center;
  margin: 0 auto;
}

/* =========================================================
   Forms (shared)
========================================================= */
/* select */
.c-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

/* checkbox row */
.c-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}
.c-check input {
  inline-size: 16px;
  block-size: 16px;
}

/* Welcart / 共通フォーム */
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
  line-height: 1.6;
}

textarea {
  min-height: 120px;
  display: block;
  resize: vertical;
}

.c-badge {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c-badge--fill {
  background: #f7f6f4;
}

.c-badge--line {
  background: transparent;
}

/* ----------------------------------------
 * Ranking badge
 * ランキングカードだけに効かせる
 * ------------------------------------- */
.c-productCard {
  position: relative;
}

.c-productCard__thumb {
  position: relative;
}

/* ランキングカードだけ、バッジをカード外に少しはみ出させる */
.c-productCard--ranking {
  position: relative;
  overflow: visible;
  /* No.1 を中央に収める */
  /* ブランドラベルと被らないように、ランキング時だけ下へ逃がす */
}
.c-productCard--ranking .c-productCard__thumb {
  position: relative;
  overflow: visible;
}
.c-productCard--ranking .c-rankingBadge,
.c-productCard--ranking .ranking-badge {
  position: absolute;
  top: -50px;
  left: -30px;
  z-index: 8;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: #7b5a3a;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .c-productCard--ranking .c-rankingBadge,
.c-productCard--ranking .ranking-badge {
    top: -30px;
    left: -20px;
    width: 58px;
    height: 58px;
    font-size: 12px;
  }
}
.c-productCard--ranking .c-rankingBadge span,
.c-productCard--ranking .ranking-badge span {
  display: block;
  transform: translateY(0.5px);
}
.c-productCard--ranking .c-productCard__brand {
  top: 18px;
  left: 12px;
  z-index: 6;
}
@media (min-width: 900px) {
  .c-productCard--ranking .c-productCard__brand {
    top: 22px;
    left: 14px;
  }
}

/* 小さいカードでも少しだけ控えめに */
.c-grid--6 .c-productCard--ranking .c-rankingBadge,
.c-grid--6 .c-productCard--ranking .ranking-badge {
  width: 48px;
  height: 48px;
  font-size: 10px;
}
@media (min-width: 900px) {
  .c-grid--6 .c-productCard--ranking .c-rankingBadge,
.c-grid--6 .c-productCard--ranking .ranking-badge {
    width: 54px;
    height: 54px;
    font-size: 11px;
  }
}

/* 1〜3位だけ少し特別感 */
.c-productCard--ranking .c-rankingBadge.is-rank-1,
.c-productCard--ranking .ranking-badge.is-rank-1 {
  background: linear-gradient(135deg, #9a744a 0%, #6f4e32 100%);
}

.c-productCard--ranking .c-rankingBadge.is-rank-2,
.c-productCard--ranking .ranking-badge.is-rank-2 {
  background: linear-gradient(135deg, #8a6844 0%, #684a30 100%);
}

.c-productCard--ranking .c-rankingBadge.is-rank-3,
.c-productCard--ranking .ranking-badge.is-rank-3 {
  background: linear-gradient(135deg, #7a5a3d 0%, #5f432c 100%);
}

.c-grid {
  display: grid;
  gap: 16px;
}

.c-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .c-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-grid--6 {
  position: relative;
  display: flex;
  overflow-x: auto;
  gap: 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-inline: 16px;
  margin-inline: -16px;
}
.c-grid--6::-webkit-scrollbar {
  display: none;
}
.c-grid--6::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to left, #fff, transparent);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 900px) {
  .c-grid--6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow-x: visible;
    gap: 16px;
    padding-inline: 0;
    margin-inline: 0;
  }
  .c-grid--6::after {
    display: none;
  }
}

.c-grid--6 > * {
  flex: 0 0 160px;
}
@media (min-width: 900px) {
  .c-grid--6 > * {
    flex: 1 1 auto;
  }
}

.c-grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .c-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
}

.c-card--media .c-card__thumb {
  height: 180px;
  background: #f7f6f4;
}

.c-card__title {
  margin: 12px;
  font-weight: 700;
}

.c-card__text {
  margin: 0 12px 12px;
  color: #666;
}

.c-card--brand {
  margin-top: 1rem;
  padding: 24px;
}
.c-card--brand-flex {
  display: flex;
  justify-content: left;
  gap: 1rem;
}

.c-productCard {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.c-productCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.c-productCard__thumb {
  background: #f7f6f4;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.c-productCard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.c-productCard:hover .c-productCard__thumb img {
  transform: scale(1.05);
}

.c-productCard__meta {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.c-productCard__brand {
  position: absolute;
  top: 8px;
  left: 8px;
  margin: 0;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  z-index: 1;
}

.c-productCard__name {
  margin: 0;
  font-size: 1rem;
}

.c-productCard__price {
  margin: 0;
  font-weight: 800;
}

.c-productCard__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.c-tabs__btn {
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: #666;
}

.c-tabs__btn.is-active {
  color: #111;
  background: #f7f6f4;
}

.c-articleList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.c-article {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.c-article__title {
  font-weight: 800;
}

.c-article__date {
  color: #666;
  font-size: 0.85rem;
}

.c-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.c-drawer.is-open {
  display: block;
}

.c-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.c-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(92vw, 420px);
  background: #fff;
  border-left: 1px solid #e6e6e6;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(12px);
  opacity: 0;
  transition: 0.18s ease;
}

.c-drawer.is-open .c-drawer__panel {
  transform: translateX(0);
  opacity: 1;
}

.c-drawer__head {
  padding: 16px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.c-drawer__title {
  margin: 0;
  font-weight: 900;
}

.c-drawer__close {
  border: 1px solid #e6e6e6;
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.c-drawer__body {
  padding: 16px;
  overflow: auto;
}

.c-drawer__foot {
  padding: 16px;
  border-top: 1px solid #e6e6e6;
  display: grid;
  gap: 8px;
}

/* ✅ PCではドロワー不要なので、ボタンを隠してサイドバーを使う想定 */
@media (min-width: 900px) {
  .c-drawer {
    display: none;
  }
  .c-drawer.is-open {
    display: none;
  } /* PCでは開けない運用にするならこれ */
}
.c-search__label {
  display: block;
  font-weight: 900;
  margin: 0 0 8px;
}

.c-search__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.c-search__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
}

/* SP Nav */
.c-spnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.c-spnav__item {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.c-spnav__toplink {
  display: block;
  padding: 16px;
  font-weight: 900;
}

.c-spnav__toggle {
  width: 100%;
  padding: 16px;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
}

.c-spnav__panel {
  border-top: 1px solid #e6e6e6;
  background: #f7f6f4;
  display: grid;
}

.c-spnav__link {
  display: block;
  padding: 12px 16px;
  color: #666;
}

.c-spnav__link:hover {
  color: #111;
}

.c-spnav__icon {
  font-weight: 900;
}

.c-spnav__divider {
  height: 1px;
  background: #e6e6e6;
  margin: 24px 0;
}

.c-spnav__auth {
  display: grid;
  gap: 8px;
}

.c-spnav__list .sub-menu {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.c-spnav__list .sub-menu a {
  display: block;
  padding: 12px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #f7f6f4;
  color: #666;
}

/* =========================================================
   Pagination (shared)
========================================================= */
.c-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}

.c-pagination__btn,
.c-pagination__num {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 8px 12px;
  color: #666;
  background: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-pagination__btn:hover,
.c-pagination__num:hover {
  background: #f7f6f4;
  color: #111;
}

.c-pagination__num.is-active {
  background: #f7f6f4;
  color: #111;
  font-weight: 800;
}

.p-hero {
  padding: 48px 0;
  background: #f7f6f4;
}

.p-hero__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .p-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.p-hero__title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.2;
}

.p-hero__lead {
  margin: 0 0 16px;
  color: #666;
}

.p-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.p-hero__media {
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
  min-height: 220px;
}

/* Hero Slider
------------------------------------------------------*/
.p-hero-slider {
  padding: 0 0 40px;
  color: #fff;
}

.p-hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.p-hero-slide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.p-hero-slide__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0;
}
.p-hero-slide__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}
.p-hero-slide:hover .p-hero-slide__link::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.p-hero-slide__container {
  position: relative;
  width: 100%;
}

.p-hero-slide__title {
  font-size: 2.2rem;
  margin: 0 0 12px;
  line-height: 1.3;
  font-weight: 700;
}

.p-hero-slide__excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
}

.p-hero-slider {
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 30px;
}
@media (max-width: 899px) {
  .p-hero-slider .swiper-button-prev,
.p-hero-slider .swiper-button-next {
    display: none;
  }
}
.p-hero-slider .swiper-pagination-bullet {
  background-color: #666;
  opacity: 0.7;
}
.p-hero-slider .swiper-pagination-bullet-active {
  background-color: #b78b5a;
  opacity: 1;
}

/* =========================================================
   Collection page (page-only)
========================================================= */
.p-collection {
  padding-bottom: 64px;
}

.p-collection__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.p-collection__title {
  margin: 0;
  font-size: 1.6rem;
}

.p-collection__controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* layout: sidebar + grid */
.p-collection__layout {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .p-collection__layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

/* PC sidebar filter */
.p-filter {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  /* SPはドロワー運用なので非表示 */
  display: none;
}
@media (min-width: 900px) {
  .p-filter {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 120px; /* headerの高さに合わせて調整 */
  }
}

.p-filter__group {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}

.p-filter__title {
  margin: 0 0 8px;
  font-size: 1rem;
}

/* price range */
.p-filter__range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.p-filter__range input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
}

/* =========================================================
   Category tree (page-only)
========================================================= */
.p-filterTree {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.p-filterTree__item {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.p-filterTree__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.p-filterTree__link {
  flex: 1;
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #111;
}

.p-filterTree__toggle {
  border: 0;
  border-left: 1px solid #e6e6e6;
  background: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.p-filterTree__icon {
  font-weight: 900;
}

.p-filterTree__panel {
  border-top: 1px solid #e6e6e6;
  background: #f7f6f4;
}

.p-filterTree__sub {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: grid;
  gap: 6px;
}

.p-filterTree__sublink {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #666;
}

.p-filterTree__link.is-active,
.p-filterTree__sublink.is-active {
  font-weight: 900;
  color: #111;
}

.p-activeFilters {
  margin: 16px 0 24px;
  padding: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #faf9f7;
}

.p-activeFilters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.p-activeFilters__title {
  margin: 0;
  font-weight: 800;
  font-size: 0.95rem;
}

.p-activeFilters__clear {
  color: #666;
  font-size: 0.9rem;
  text-decoration: underline;
}

.p-activeFilters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.p-activeFilters__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
}

.p-activeFilters__label {
  color: #666;
  font-weight: 700;
}

.p-activeFilters__value {
  font-weight: 700;
  color: #111;
}

.p-activeFilters__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.p-activeFilters__remove:hover {
  background: #f1f1f1;
  color: #111;
}

.p-product__layout {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .p-product__layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* 2カラム：子要素が列幅を押し広げないようにする（超重要） */
.p-product__layout {
  display: grid;
  gap: 32px;
}
.p-product__layout > * {
  min-width: 0;
}
@media (min-width: 900px) {
  .p-product__layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

/* Gallery - Main */
.p-galleryMain {
  background: #f7f6f4;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}

.p-galleryMain .swiper-wrapper,
.p-galleryMain .swiper-slide {
  min-width: 0;
  max-width: 100%;
}

/* メイン画像：正方形エリア */
.p-galleryMain__slide {
  aspect-ratio: 1/1;
  background: #f7f6f4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ★画像：比率維持・中心表示・切らない */
.p-galleryMain__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* Gallery - Thumbs */
.p-galleryThumbs {
  margin-top: 8px;
  max-width: 100%;
}

.p-galleryThumbs .swiper-wrapper,
.p-galleryThumbs .swiper-slide {
  min-width: 0;
  max-width: 100%;
}

.p-galleryThumbs__slide {
  aspect-ratio: 1/1;
  background: #f7f6f4;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-galleryThumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid rgba(0, 0, 0, 0.25);
}

/* ★サムネ画像：比率維持・中心表示 */
.p-galleryThumbs__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.p-buy__title {
  margin: 0 0 8px;
  font-size: 1.6rem;
  line-height: 1.25;
}

.p-buy__sku {
  margin: 0 0 12px;
  color: #666;
}

.p-buy__price {
  margin: 0 0 12px;
}

.p-buy__priceMain {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.p-buy__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.p-buy__label {
  margin: 0 0 8px;
  font-weight: 800;
}

.p-buy__swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.c-swatch input {
  position: absolute;
  opacity: 0;
}

.c-swatch span {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  color: #666;
  cursor: pointer;
}

.c-swatch input:checked + span {
  background: #f7f6f4;
  color: #111;
  border-color: rgba(0, 0, 0, 0.18);
}

.c-qty {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.c-qty__btn {
  background: #fff;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
}

.c-qty__input {
  border: 0;
  text-align: center;
  padding: 10px 0;
}

.p-spec {
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.p-spec__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
}

.p-spec__row dt {
  color: #666;
  font-weight: 700;
}

.p-spec__row dd {
  margin: 0;
}

/* 数量 */
.p-buy__qty {
  margin-left: auto;
  max-width: 240px;
}

/* カートボタン */
.p-buy__actions {
  margin-left: auto;
  max-width: 240px;
}

/* Welcart 営業日カレンダー：2ヶ月横並び + 凡例1行 */
.p-buy__calendar .ucart_calendar_body > li {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  /* li直下のテキストノード（( 発送業務休日 )）を無効化 */
  font-size: 0;
}

/* 今月・翌月 */
.p-buy__calendar .ucart_calendar_body > li > .this-month,
.p-buy__calendar .ucart_calendar_body > li > .next-month {
  width: 100%;
  font-size: 1rem;
}

/* カレンダーテーブル */
.p-buy__calendar table.usces_calendar {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

/* 元の色チップ（span）は使わない */
.p-buy__calendar .ucart_calendar_body > li > span.business_days_exp_box {
  display: none;
}

/* ★ 凡例を擬似要素で「1行」に描画 */
.p-buy__calendar .ucart_calendar_body > li::after {
  grid-column: 1/-1;
  display: block;
  margin-top: 8px;
  /* テキスト */
  content: "発送業務休日";
  font-size: 0.85rem;
  color: #666;
  line-height: 1;
  /* 左に色チップ分の余白 */
  padding-left: 26px;
  /* 色チップ（#FFECCE） */
  background: linear-gradient(#FFECCE, #FFECCE) left 0 top 50%/18px 10px no-repeat;
}

/* スマホは縦並び */
@media (max-width: 767px) {
  .p-buy__calendar .ucart_calendar_body > li {
    grid-template-columns: 1fr;
  }
}
.p-buy__calendar table.usces_calendar td,
.p-buy__calendar table.usces_calendar th {
  text-align: center;
  vertical-align: middle;
  padding: 6px 0;
  height: 32px;
  font-size: 0.85rem;
}

.p-maker__title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-maker-logo {
  display: inline-flex;
}
.p-maker-logo img {
  width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-maker-archive__post {
  display: block;
}

.thanks-page {
  padding: 80px 20px;
  text-align: center;
}

.thanks-box {
  max-width: 700px;
  margin: auto;
}

.thanks-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.thanks-message {
  font-size: 18px;
  margin-bottom: 20px;
}

.thanks-note {
  color: #666;
  margin-bottom: 40px;
}

.thanks-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-home {
  background: #333;
  color: #fff;
}

.btn-faq {
  border: 1px solid #333;
  color: #333;
}
/* =========================================================
   Static pages: FAQ / Contact
========================================================= */
.p-static {
  padding: 48px 0 64px;
}

.p-static__head {
  max-width: 1100px;
  margin: 0 auto 32px;
}

.p-static__eyebrow {
  margin: 0 0 8px;
  color: #666;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-static__title {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.25;
}

.p-static__lead {
  color: #666;
  line-height: 1.8;
}

.p-static__lead > *:first-child {
  margin-top: 0;
}

.p-static__lead > *:last-child {
  margin-bottom: 0;
}

.p-static__cta {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #f7f6f4;
}

.p-static__ctaTitle {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.p-static__ctaText {
  margin: 0 0 16px;
  color: #666;
  line-height: 1.8;
}

.p-faq__layout {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .p-faq__layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}
.p-faq__navBox,
.p-contact__card {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.p-faq__navBox {
  padding: 16px;
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
}

.p-faq__navTitle,
.p-contact__title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
}

.p-faq__navList,
.p-contact__list,
.p-contact__faqLinks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-faq__navList {
  display: grid;
  gap: 10px;
}

.p-faq__navList a,
.p-contact__faqLinks a {
  color: #111;
  text-decoration: none;
}

.p-faq__section + .p-faq__section {
  margin-top: 32px;
}

.p-faq__sectionTitle {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.p-faq__items {
  display: grid;
  gap: 12px;
}

.p-faq__item {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.p-faq__question {
  list-style: none;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  cursor: pointer;
  font-weight: 700;
}

.p-faq__question::-webkit-details-marker {
  display: none;
}

.p-faq__qLabel,
.p-faq__aLabel {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.p-faq__qLabel {
  background: #111;
  color: #fff;
}

.p-faq__answer {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 0 16px 16px;
}

.p-faq__aLabel {
  background: #f7f6f4;
  color: #111;
}

.p-faq__answer p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.p-contact__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .p-contact__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }
}
.p-contact__card {
  padding: 24px;
}

.p-contact__text {
  margin: 0 0 16px;
  color: #666;
  line-height: 1.8;
}

.p-contact__placeholder {
  padding: 16px;
  border-radius: 12px;
  background: #f7f6f4;
}

.p-contact__placeholder code {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e6e6e6;
}

.p-contact__list,
.p-contact__faqLinks {
  display: grid;
  gap: 10px;
}

.p-contact__list li,
.p-contact__faqLinks li {
  color: #666;
  line-height: 1.8;
}

.p-contact__side {
  display: grid;
  gap: 16px;
}

.p-contact .wpcf7 {
  margin-top: 16px;
}

.p-contact .wpcf7-form p {
  margin: 0 0 16px;
}

.p-contact .wpcf7-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.p-contact .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 18px;
  border: 1px solid #111;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.p-contact .wpcf7-spinner {
  vertical-align: middle;
}

.p-feature {
  padding: 24px 0 72px;
}

.p-feature__head {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.p-feature__thumb {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}
.p-feature__thumb img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-feature__meta {
  display: grid;
  gap: 12px;
}

.p-feature__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #888;
}

.p-feature__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  font-weight: 700;
}

.p-feature__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.p-feature__sep {
  color: #aaa;
}

.p-feature__cats {
  color: #666;
}

.p-feature__body {
  margin-bottom: 56px;
  font-size: 16px;
  line-height: 2;
  color: #222;
}
.p-feature__body > *:first-child {
  margin-top: 0;
}
.p-feature__body > *:last-child {
  margin-bottom: 0;
}
.p-feature__body p {
  margin: 0 0 1.6em;
}
.p-feature__body h2,
.p-feature__body h3,
.p-feature__body h4 {
  margin: 2.2em 0 0.8em;
  line-height: 1.5;
  font-weight: 700;
}
.p-feature__body h2 {
  font-size: 28px;
}
.p-feature__body h3 {
  font-size: 22px;
}
.p-feature__body h4 {
  font-size: 18px;
}
.p-feature__body ul,
.p-feature__body ol {
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}
.p-feature__body li {
  margin-bottom: 0.4em;
}
.p-feature__body a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.p-feature__body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.p-feature__body figure {
  margin: 2em 0;
}
.p-feature__body blockquote {
  margin: 2em 0;
  padding: 1.2em 1.4em;
  border-left: 4px solid #ddd;
  background: #f8f8f8;
  border-radius: 12px;
}

.p-featureRelated {
  margin-top: 64px;
}

.p-featureRelated__title {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}

.p-feature__back {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .p-feature {
    padding-top: 32px;
  }
  .p-feature__head {
    gap: 32px;
    margin-bottom: 40px;
  }
  .p-feature__body {
    font-size: 17px;
  }
}
/* =========================================================
 * feature archive
 * ======================================================= */
.p-featureArchive {
  padding: 24px 0 72px;
}

.p-featureArchive__head {
  margin-bottom: 32px;
}

.p-featureArchive__sub {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #888;
}

.p-featureArchive__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  font-weight: 700;
}

.p-featureArchive__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}

.p-featureArchive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.c-featureCard {
  height: 100%;
}

.c-featureCard__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.c-featureCard__thumb {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 16px;
}
.c-featureCard__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-featureCard__body {
  display: grid;
  gap: 10px;
}

.c-featureCard__date {
  margin: 0;
  font-size: 13px;
  color: #888;
}

.c-featureCard__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
}

.c-featureCard__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.c-featureCard__more {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.p-featureArchive__empty {
  margin: 0;
  color: #666;
}

@media (min-width: 768px) {
  .p-featureArchive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }
}
/* =========================================================
 * feature makers / related grid
 * ======================================================= */
.p-featureMakers__grid,
.p-featureRelated__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

@media (min-width: 768px) {
  .p-featureMakers__grid,
.p-featureRelated__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 20px;
  }
}
/* =========================================================
 * feature makers card
 * ======================================================= */
.p-featureMakers__grid .c-card__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
}

.p-featureMakers__grid .c-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-featureMakers__grid .c-card__body {
  padding-top: 8px;
}

.p-featureMakers__grid .c-card__title {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.p-featureMakers__head {
  display: flex;
  justify-content: space-between;
}
/*# sourceMappingURL=style.css.map */