@charset "UTF-8";
/******************************/
/* 商品詳細 product_detail      */
/******************************/

/***** パンくず *****/
.product_detail .c-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 32px;
  margin-bottom: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  font-size: 11px;
  color: #737373;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .product_detail .c-breadcrumbs-list {
    gap: 6px;
    padding-top: 20px;
    font-size: 10px;
  }
}
.product_detail .c-breadcrumbs-list__item {
  position: relative;
  margin: 0;
  padding: 0;
}
.product_detail .c-breadcrumbs-list__item:before { content: none; }
.product_detail .c-breadcrumbs-list__item + .c-breadcrumbs-list__item:before {
  content: "/";
  display: inline-block;
  margin-right: 8px;
  border: 0;
  position: static;
  width: auto; height: auto;
  transform: none;
  color: #737373;
}
.product_detail .c-breadcrumbs-list a,
.product_detail .c-breadcrumbs-list span {
  color: #737373;
  text-decoration: none;
}
.product_detail .c-breadcrumbs-list__item:last-child a,
.product_detail .c-breadcrumbs-list__item:last-child span {
  color: #000;
}

/***** 共通 *****/
.p-product {
  margin-bottom: 0;
  padding-top: 32px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-product {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.p-product__message {
  margin: 60px 0;
  text-align: center;
  font-size: 16px;
}

/***** レイアウト: 画像 / 情報 *****/
.p-product-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
@media screen and (max-width: 1030px) {
  .p-product-main {
    display: block;
  }
}

/***** 商品画像 *****/
.p-product-img {
  display: flex;
  gap: 10px;
  flex: 3 0 0;
  min-width: 0;
  max-width: 900px;
  position: sticky;
  top: 80px;
}
@media screen and (max-width: 1030px) {
  .p-product-img {
    flex-direction: column;
    flex: none;
    max-width: none;
    width: auto;
    gap: 10px;
    position: static;
    margin-bottom: 30px;
  }
  .p-product-img .p-product-img__main { order: 1; }
  .p-product-img .p-product-img__thumb { order: 2; }
}
@media screen and (max-width: 767px) {
  .p-product-img {
    margin-left: -16px;
    margin-right: -16px;
  }
}

/* メイン画像 */
.p-product-img__main {
  flex: 1 1 0;
  min-width: 0;
  order: 2;
}
/* slick-theme の .slick-dotted.slick-slider 既定 margin-bottom を打ち消す(高specificity) */
.p-product-img__main.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.p-product-img__main-item {
  position: relative;
  text-align: center;
  background: #f7f7f7;
}
.p-product-img__main-item:before {
  content: "";
  display: block;
  padding-top: 118.2%; /* 560 : 663 */
}
.p-product-img__main-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-product-img__main-item:before {
    padding-top: 118.35%; /* 375 : 443.82 */
  }
}

/* サムネイル縦列(PC) / 横列(SP) */
.p-product-img__thumb {
  order: 1;
  width: 80px;
  flex-shrink: 0;
  align-self: stretch;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 1030px) {
  .p-product-img__thumb {
    width: auto;
    max-height: none;
    overflow-y: visible;
    overflow-x: auto;
    margin-top: 0;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
  }
  .p-product-img__thumb::-webkit-scrollbar { display: none; }
}
.p-product-thumb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list {
    flex-direction: row;
    gap: 8px;
  }
}
.p-product-thumb-list__item {
  box-sizing: border-box;
  width: 80px;
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0.5;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__item {
    width: 68px;
    flex-shrink: 0;
  }
}
/* Swiper化されたSPサムネイル: slide幅をコンテンツに合わせる */
.p-product-img__thumb.swiper { overflow: hidden; padding: 0 16px; }
.p-product-img__thumb.swiper .swiper-wrapper { gap: 0; }
.p-product-thumb-list__item.swiper-slide {
  width: 68px;
  flex-shrink: 0;
}
.p-product-thumb-list__item:hover,
.p-product-thumb-list__item.is-current {
  opacity: 1;
}
.p-product-thumb-list__img {
  position: relative;
  width: 100%;
  background: #f7f7f7;
}
.p-product-thumb-list__img:before {
  content: "";
  display: block;
  padding-top: 118.3%;
}
.p-product-thumb-list__img img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

/* スライダー矢印・ドット */
.p-product-img__main .slick-prev,
.p-product-img__main .slick-next {
  top: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}
.p-product-img__main .slick-prev { left: 16px; }
.p-product-img__main .slick-next { right: 16px; }
.p-product-img__main .slick-prev:before,
.p-product-img__main .slick-next:before {
  content: "";
  position: absolute;
  top: 14px;
  width: 10px;
  height: 10px;
  border-left: 1px solid #222;
  border-top: 1px solid #222;
  opacity: 1;
}
.p-product-img__main .slick-prev:before {
  left: 16px;
  transform: rotate(-45deg);
}
.p-product-img__main .slick-next:before {
  left: 12px;
  transform: rotate(135deg);
}
.p-product-img__main .slick-dots {
  position: static;
  margin-top: 20px;
}
.p-product-img__main .slick-dots li { margin: 0 4px; }
.p-product-img__main .slick-dots li button:before {
  font-size: 8px;
  color: #d3d3d3;
  opacity: 1;
}
.p-product-img__main .slick-dots li.slick-active button:before {
  color: #222;
  opacity: 1;
}
.p-product-img__main .slick-dots { display: none !important; }

/***** 商品情報 *****/
.p-product-info {
  flex: 2 0 0;
  min-width: 0;
  padding-left: 100px;
  padding-right: 60px;
}
@media screen and (max-width: 1030px) {
  .p-product-info {
    flex: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-product-info__head {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-product-info__head { margin-bottom: 15px; }
}
.p-product-info__brand {
  margin-bottom: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #222;
  text-transform: uppercase;
}
.p-product-info__brand-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.p-product-info__brand-link:hover {
  color: #652072;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-product-info__brand {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
}
.p-product-info__ttl {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-product-info__ttl { font-size: 20px; }
}

/* 価格 */
.p-product-price {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .p-product-price { margin-bottom: 30px; }
}
.p-product-price__sell {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-product-price__sell { font-size: 16px; }
}
.p-product-price__tax {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-product-price__tax { font-size: 11px; }
}
.p-product-price__off {
  margin-left: 6px;
  padding: 3px 8px;
  background: #b72424;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: 3px;
}
.p-product-price__normal,
.p-product-price__list-price {
  margin-top: 6px;
  font-size: 12px;
  color: #737373;
}

/* オプション */
.p-product-option { margin: 0 0 30px 0; }
.p-product-option-select { display: flex; flex-direction: column; gap: 20px; }
.p-product-option-select__box { margin: 0; }
.p-product-option-select__ttl {
  margin-bottom: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #000;
  text-transform: uppercase;
}
.p-product-option-select__pill {
  position: relative;
  display: inline-block;
  min-width: 140px;
}
.p-product-option-select__pill:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(45deg);
  pointer-events: none;
}
.p-product-option-select__pill select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 40px 0 20px;
  border: 1px solid #777;
  border-radius: 20px;
  background: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #222;
  line-height: 40px;
  cursor: pointer;
}
.p-product-option-select__pill select:focus {
  outline: none;
  border-color: #222;
}
/* オプション table (フォールバック) */
.p-product-option-tbl {
  margin-bottom: 20px;
  overflow-x: auto;
}
.p-product-option-tbl table {
  margin-bottom: 0;
  border-left: 0;
  border-right: 0;
  width: 100%;
  font-size: 13px;
}
.p-product-option-tbl table div { display: inline-block !important; }
.p-product-option-tbl th { min-width: 100px; }
.p-product-option-tbl th,
.p-product-option-tbl td {
  padding: 10px 5px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-left: 0;
  text-align: center;
}

/* 名入れ */
.p-product-name { margin: 0 0 30px 0; }
.p-product-name__box { margin-bottom: 15px; }
.p-product-name__ttl {
  margin-bottom: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.p-product-name__body input {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #d3d3d3;
  font-size: 14px;
}

/* 数量 */
.p-product-form-stock { margin: 0 0 30px 0; }
.p-product-form-stock__ttl {
  margin-bottom: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #000;
  text-transform: uppercase;
}
.p-product-form-stock__picker {
  display: inline-flex;
  align-items: stretch;
  height: 44px;
  border: 1px solid #d3d3d3;
}
@media screen and (max-width: 1030px) {
  .p-product-form-stock__picker {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .p-product-form-stock__input {
    border-left: 0;
    border-right: 0;
  }
}
.p-product-form-stock__btn {
  width: 52px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 400;
  color: #222;
  cursor: pointer;
  line-height: 1;
}
.p-product-form-stock__btn:hover { background: #f7f7f7; }
.p-product-form-stock__input {
  box-sizing: border-box;
  width: 52px;
  height: 44px;
  padding: 0;
  border: 0;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  background: transparent;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  text-align: center;
  color: #222;
}
.p-product-form-stock__input:focus { outline: none; }
@media screen and (max-width: 1030px) {
  .p-product-form-stock__input {
    border-left: 0;
    border-right: 0;
  }
}
.p-product-form-stock__stock {
  margin-top: 10px;
  font-size: 12px;
  color: #737373;
}

/* カートボタン */
.p-product-form-btn {
  margin: 0 0 30px 0;
}
.p-product-form-btn__cart { width: 100%; }
.c-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border: 0;
  border-radius: 30px;
  background: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.c-btn-cart:hover { background: #444; color: #fff; }
@media screen and (max-width: 767px) {
  .c-btn-cart {
    height: 50px;
    border-radius: 25px;
    font-size: 15px;
  }
}
.c-btn-cart.is-soldout,
.c-btn-cart.is-disabled {
  background: #b72424;
  cursor: not-allowed;
}
.c-btn-cart.is-membersonly {
  background: #f2f2f2;
  color: #222;
  cursor: default;
}
.c-icon-cart { display: none; }

.p-product-form__error-message {
  margin-top: 12px;
  font-size: 13px;
  color: #b72424;
}
.p-product-form__error-message:empty { display: none; }

/* SNS */
.p-product-sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 40px 0;
  padding: 0;
}
.p-product-sns-list__item { margin: 0; }

/* 説明タブ */
.p-product-explain {
  margin-top: 10px;
  padding-top: 40px;
  border-top: 1px solid #d3d3d3;
}
.p-product-explain__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  margin: 0 0 30px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-product-explain__tabs {
    gap: 0;
  }
}
.p-product-explain__tab {
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #b5b5b5;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .p-product-explain__tab {
    flex: 1 1 0;
    text-align: center;
    padding: 0 0 12px;
  }
}
.p-product-explain__tab:hover { color: #222; }
.p-product-explain__tab.is-empty {
  color: #d3d3d3;
  cursor: default;
}
.p-product-explain__tab.is-empty:hover { color: #d3d3d3; }
.p-product-explain__tab:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: transparent;
  transition: background 0.2s;
}
.p-product-explain__tab.is-active { color: #222; }
.p-product-explain__tab.is-active:after { background: #222; }
.p-product-explain__panels {
  max-width: 720px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}
.p-product-explain__panel { display: none; }
.p-product-explain__panel.is-active { display: block; }
.p-product-explain__panel p { margin: 0 0 1em; }
.p-product-explain__panel table {
  width: 100%;
  margin: 0 0 1em;
  border-collapse: collapse;
  font-size: 14px;
}
.p-product-explain__panel th,
.p-product-explain__panel td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}
.p-product-explain__panel th {
  width: 30%;
  font-weight: 500;
  color: #777;
}

/* ── サイズパネル雛形（Figmaサイズ表スタイル） ── */
.p-product-explain__panel[data-panel="size"] table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  line-height: 16px;
  color: #222;
}
.p-product-explain__panel[data-panel="size"] thead th,
.p-product-explain__panel[data-panel="size"] tr:first-child th,
.p-product-explain__panel[data-panel="size"] tr:first-child td {
  padding: 14px 4px;
  border: 0;
  border-bottom: 1px solid #d3d3d3;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  color: #222;
  width: auto;
}
.p-product-explain__panel[data-panel="size"] td,
.p-product-explain__panel[data-panel="size"] th {
  padding: 16px 4px;
  border: 0;
  border-bottom: 1px solid #d3d3d3;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  width: auto;
  color: #222;
}
.p-product-explain__panel[data-panel="size"] tr:last-child td,
.p-product-explain__panel[data-panel="size"] tr:last-child th {
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .p-product-explain__panel[data-panel="size"] table { font-size: 12px; }
  .p-product-explain__panel[data-panel="size"] td,
  .p-product-explain__panel[data-panel="size"] th {
    padding: 14px 2px;
  }
}
/* サイズの目安ボタン（Figma: Sub Button / Secondary2 &#8212; 白ベース・#777 1pxボーダー・ピル） */
.c-btn-size-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 0 0;
  padding: 0 20px;
  height: 40px;
  border: 1px solid #777;
  border-radius: 20px;
  background: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  color: #222;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .c-btn-size-guide { gap: 10px; }
}
.c-btn-size-guide:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
  transition: border-color 0.2s;
}
.c-btn-size-guide:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}
.c-btn-size-guide:hover:after { border-color: #fff; }

/* ───────────── サイズの測り方 モーダル ───────────── */
.p-size-guide {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-size-guide[hidden] { display: none; }
.p-size-guide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.p-size-guide__dialog {
  position: relative;
  margin: 80px 20px 40px;
  width: 800px;
  max-width: calc(100% - 40px);
  max-height: calc(100vh - 120px);
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .p-size-guide__dialog {
    margin: 70px 16px 30px;
    max-height: calc(100vh - 100px);
  }
}
.p-size-guide__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.p-size-guide__close:before,
.p-size-guide__close:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  width: 20px;
  height: 1px;
  background: #222;
}
.p-size-guide__close:before { transform: rotate(45deg); }
.p-size-guide__close:after { transform: rotate(-45deg); }
.p-size-guide__inner {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-size-guide__inner {
    padding: 30px 20px;
  }
}
.p-size-guide__ttl {
  margin: 0 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #222;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-size-guide__ttl { font-size: 20px; }
}
.p-size-guide__lead {
  margin: 0 0 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-size-guide__lead {
    margin-bottom: 30px;
  }
}
.p-size-guide__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #d3d3d3;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-size-guide__section {
    padding: 30px 0;
    gap: 30px;
  }
}
.p-size-guide__heading {
  margin: 0;
  width: 100%;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-size-guide__heading { font-size: 18px; }
}
.p-size-guide__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
}
.p-size-guide__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-size-guide__text {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}
.p-size-guide__text p { margin: 0 0 20px; }
.p-size-guide__text p:last-child { margin-bottom: 0; }
.p-size-guide__note {
  font-size: 14px;
}

/* Brand セクション（商品説明の data-tab="brand" から生成） */
.p-product-brand {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #d3d3d3;
}
.p-product-brand__ttl {
  position: relative;
  display: inline-block;
  margin: 0 0 30px;
  padding-bottom: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
}
.p-product-brand__ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 43px;
  height: 1px;
  background: #222;
}
.p-product-brand__body {
  max-width: 720px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}
.p-product-brand__body p { margin: 0 0 1.6em; }
.p-product-brand__body p:last-child { margin-bottom: 0; }
/* ブランド名は1つ目の段落 or .brand-name クラス。Figmaは Medium で少し余白大きめ */
.p-product-brand__body p:first-child,
.p-product-brand__body .brand-name {
  margin-bottom: 1.8em;
  font-weight: 500;
}

/* リンクリスト */
.p-product-link-list {
  margin: 40px 0 0;
  padding: 0;
}
.p-product-link-list__item {
  margin-bottom: 8px;
  font-size: 13px;
}
.p-product-link-list__item a {
  color: #222;
  text-decoration: underline;
}
.p-product-link-list__item a:hover { color: #652072; }

/***** Related Items *****/
.p-product-related {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .p-product-related {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.p-product-related__head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-product-related__head { margin-bottom: 24px; }
}
.p-product-related__ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-product-related__ttl { font-size: 24px; }
}
.p-product-related-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 20px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1030px) {
  .p-product-related-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 9px;
  }
}
.p-product-related-list__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-product-related-list__item { gap: 15px; }
}
.p-product-related-list__img {
  position: relative;
  width: 100%;
  background: #f7f7f7;
}
.p-product-related-list__img:before {
  content: "";
  display: block;
  padding-top: 118.5%;
}
.p-product-related-list__img a {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}
.p-product-related-list__img img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.p-product-related-list__txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-product-related-list__brand {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #777;
}
.p-product-related-list__name a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-product-related-list__name a { font-size: 14px; }
}
.p-product-related-list__price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: 0.04em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-product-related-list__price { font-size: 14px; }
}
.p-product-related-list__price.is-strikethrough {
  color: #909090;
  text-decoration: line-through;
}
.p-product-related-list__price.is-soldout {
  color: #b72424;
}
.p-product-related-list__off {
  margin-left: 6px;
  font-size: 12px;
  color: #b72424;
}

/***** レビュー *****/
.p-product-review {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .p-product-review {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.p-product-review__ttl {
  margin: 0 0 40px 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-product-review__ttl {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.p-product-review__item {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 32px;
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-product-review__item { padding: 20px; }
}
.p-product-review__heading { margin-bottom: 15px; }
.p-product-review__item-ttl {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}
.p-product-review-info {
  margin: 10px 0 0;
  padding: 0;
}
.p-product-review-info__item {
  display: inline-block;
  font-size: 12px;
  color: #737373;
}
.p-product-review-info__item.is-type { margin-right: 24px; }
.p-product-review__img { margin-bottom: 15px; text-align: center; }
.p-product-review__body {
  margin-top: 15px;
  line-height: 1.8;
  font-size: 14px;
}
.p-product-review__rates {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.p-product-review__rate {
  width: 18px;
  height: 18px;
  fill: #d8d8d8;
}
.p-product-review__rate.is-color { fill: #222; }
.p-product-review-reply {
  margin-top: 24px;
  padding: 15px 0;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
}
.p-product-review-reply__ttl { font-weight: 500; }
.p-product-review-reply__body { font-size: 13px; margin-top: 6px; }
.p-product-review-reply__date { font-size: 12px; color: #737373; margin-top: 4px; }
.p-product-review__btn {
  margin-top: 40px;
  text-align: center;
}
.p-product-review__btn .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 50px;
  padding: 0 30px;
  border: 1px solid #222;
  border-radius: 25px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #222;
  background: transparent;
  transition: all 0.2s;
}
.p-product-review__btn .c-btn:hover {
  background: #222;
  color: #fff;
}
