@import url('https://brandavenue.r10s.jp/css/contents/common/components/20260507/tokens.css');

/* ============================================================
   外部 PC CSS（brandavenue）によるレイアウト崩れ修正
   ページ全体のリセットは styles.css に記載
============================================================ */

/* ============================================================
   Normal Button Component
============================================================ */

.comp-nml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  letter-spacing: 1.44px;
  line-height: 180%;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
/* 外部CSSの button { display: block } 上書き防止（タグ+クラスで詳細度アップ） */
button.comp-nml-btn { display: inline-flex; }

/* ── Size — Figma property names ───────────────────────────────
   XLarge W480 H56 / Large W327 H56 / Medium W200 H40
   Small W160 H36  / XSmall W112 H32
─────────────────────────────────────────────────────────────── */
.comp-nml-btn--xlarge { width: 480px; height: 56px; padding: 0 var(--spacing-32); font-size: var(--font-size-12); gap: var(--spacing-8); }
.comp-nml-btn--large  { width: 327px; height: 56px; padding: 0 var(--spacing-24); font-size: var(--font-size-12); gap: var(--spacing-8); }
.comp-nml-btn--medium { width: 200px; height: 40px; padding: 0 var(--spacing-16); font-size: var(--font-size-12); gap: var(--spacing-8); }
.comp-nml-btn--small  { width: 160px; height: 36px; padding: 0 var(--spacing-12); font-size: var(--font-size-12); gap: var(--spacing-8); }
.comp-nml-btn--xsmall { width: 112px; height: 32px; padding: 0 var(--spacing-10); font-size: var(--font-size-11); gap: var(--spacing-4); letter-spacing: 1.32px; }

/* ── Type = Primary — Figma property name ─── */
.comp-nml-btn--primary {
  background-color: var(--color-button-bg-primary-default);
  color: var(--color-button-text-primary);
}
.comp-nml-btn--primary:hover:not([disabled]) {
  background-color: var(--color-button-bg-primary-hover);
  text-decoration: none;
}

/* ── Type = Secondary — Figma property name ─── */
.comp-nml-btn--secondary {
  background-color: var(--color-button-bg-secondary-default);
  color: var(--color-button-text-secondary);
  border-color: var(--color-button-border-secondary);
}
.comp-nml-btn--secondary:hover:not([disabled]) {
  background-color: var(--color-button-bg-secondary-hover);
  text-decoration: none;
}

/* ── State = Disable — Figma property name ─── */
.comp-nml-btn--disable {
  background-color: var(--color-button-bg-secondary-disable);
  color: var(--color-button-text-disable);
  border-color: transparent;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── SVG Icon definitions (CSS mask-image) ─── */
/*
 * アイコンは tokens.css の --icon-* トークンを参照。
 * HTMLは <span class="comp-nml-btn__r-icon" aria-hidden="true"></span> の形で使用。
 * background-color: currentColor + mask-image でボタンのテキスト色を継承。
 */

/* ── Icon base ─── */
.comp-nml-btn__r-icon,
.comp-nml-btn__chevron {
  flex-shrink: 0;
  display: inline-block;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.comp-nml-btn__r-icon {
  mask-image: var(--icon-rf-symbol);
  -webkit-mask-image: var(--icon-rf-symbol);
}

.comp-nml-btn__chevron {
  mask-image: var(--icon-chevron-right);
  -webkit-mask-image: var(--icon-chevron-right);
}

/* ── Icon sizes per size ─── */

.comp-nml-btn--xlarge .comp-nml-btn__r-icon,
.comp-nml-btn--large  .comp-nml-btn__r-icon  { width: 16px; height: 16px; }
.comp-nml-btn--medium .comp-nml-btn__r-icon  { width: 16px; height: 16px; }
.comp-nml-btn--small  .comp-nml-btn__r-icon  { width: 16px; height: 16px; }
.comp-nml-btn--xsmall .comp-nml-btn__r-icon  { width: 16px; height: 16px; }

.comp-nml-btn--xlarge .comp-nml-btn__chevron,
.comp-nml-btn--large  .comp-nml-btn__chevron { width: 14px; height: 14px; }
.comp-nml-btn--medium .comp-nml-btn__chevron { width: 14px; height: 14px; }
.comp-nml-btn--small  .comp-nml-btn__chevron { width: 14px; height: 14px; }
.comp-nml-btn--xsmall .comp-nml-btn__chevron { width: 12px; height: 12px; }

/* ============================================================
   Entry Button Component
============================================================ */

.entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  letter-spacing: 1.44px;
  line-height: 180%;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
/* 外部CSSの button { display: block } 上書き防止（タグ+クラスで詳細度アップ） */
button.entry-btn { display: inline-flex; }

.entry-btn--sp {
  height: 48px;
  font-size: var(--font-size-12);
  max-width: 329px;
}

.entry-btn--black {
  background-color: var(--color-button-bg-primary-default);
  color: var(--color-button-text-primary);
}

.entry-btn--black:hover:not(:disabled),
.entry-btn--black-hover {
  background-color: var(--color-button-bg-primary-hover);
}

/* ============================================================
   comp-link-text — PC
   引用: https://brandavenue.r10s.jp/css/contents/common/components/components_pc.css
============================================================ */

.comp-link-text {
  position: relative;
  display: inline-block;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  line-height: 150%;
}

.comp-link-text:link,
.comp-link-text:visited {
  color: #0078b5;
}

/* ── Color ─── */
.comp-link-text:link.comp-link-text--gray,
.comp-link-text:visited.comp-link-text--gray {
  color: #717171;
}

.comp-link-text:link.comp-link-text--black,
.comp-link-text:visited.comp-link-text--black {
  color: #333333;
}

/* ── Arrow icon (::after) ─── */
.comp-link-text::after {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  content: "";
  background-color: #0078b5;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.8105 2.25L6.75 3.3105L15.4395 12L6.75 20.6895L7.8105 21.75L17.5605 12L7.8105 2.25Z' fill='currentColor'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: 0.2s;
}

.comp-link-text--gray::after {
  background-color: #717171;
}

.comp-link-text--black::after {
  background-color: #333333;
}

/* ── State ─── */
.comp-link-text--underline {
  text-decoration: underline;
}

.comp-link-text--noarrow::after {
  content: none;
}

/* Anchor (down chevron) variant */
.comp-link-text--anchor::after {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.9053 7.65523L20.8448 6.59473L12.1553 15.2842L3.46577 6.59473L2.40527 7.65523L12.1553 17.4052L21.9053 7.65523Z' fill='currentColor'/%3E%3C/svg%3E");
}

/* ── Hover ─── */
.comp-link-text:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* ── Font size ─── */
.comp-link-text--18 { font-size: 18px; }
.comp-link-text--18::after { width: 16px; height: 16px; }

.comp-link-text--16 { font-size: 16px; }
.comp-link-text--16::after { width: 16px; height: 16px; }

.comp-link-text--14 { font-size: 14px; }

.comp-link-text--13 { font-size: 13px; } /* 補足: 13px */

.comp-link-text--12 { font-size: 12px; }

.comp-link-text--11 { font-size: 11px; }

.comp-link-text--10 { font-size: 10px; }
.comp-link-text--10::after { width: 12px; height: 12px; }

/* ── Leading icon element ─── */
.comp-link-text__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 2px;
  vertical-align: middle;
  background-color: #0078b5;
  mask-image: var(--icon-rf-symbol);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: var(--icon-rf-symbol);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.comp-link-text--gray .comp-link-text__icon { background-color: #717171; }
.comp-link-text--black .comp-link-text__icon { background-color: #333333; }

.comp-link-text--18 .comp-link-text__icon { width: 20px; height: 20px; }
.comp-link-text--16 .comp-link-text__icon { width: 20px; height: 20px; }
.comp-link-text--12 .comp-link-text__icon { width: 16px; height: 16px; }
.comp-link-text--11 .comp-link-text__icon { width: 14px; height: 14px; }
.comp-link-text--10 .comp-link-text__icon { width: 12px; height: 12px; }

/* ============================================================
   Text Button / more Component
   Figma: text-button / more
   Properties: Device (Medium | Small), state (Default | Hover)
============================================================ */

.comp-txt-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  color: var(--color-text-main);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  line-height: 150%;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* ── Device = Medium — font-size: 16px ─── */
.comp-txt-more-btn--medium { font-size: var(--font-size-16); }

/* ── Device = Small — font-size: 14px ─── */
.comp-txt-more-btn--small { font-size: var(--font-size-14); }

/* ── Text element ─── */
.comp-txt-more-btn__text {
  padding-bottom: 4px;
}

/* ── state = Hover ─── */
.comp-txt-more-btn:hover,
.comp-txt-more-btn--hover {
  opacity: 0.7;
}

/* ── Icon (12×12 SVG Mask) ─── */
.comp-txt-more-btn__icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: currentColor;
  mask-image: var(--icon-circle-arrow-right);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: var(--icon-circle-arrow-right);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

/* ============================================================
   rcEntryButton Component
============================================================ */

/* ── Container ─── */
.rcEntryButton {
  display: block;
  margin: 0 auto;
}

.rcEntryButton[layout="pc"] {
  width: 480px;
  max-width: 100%;
}

.rcEntryButton[layout="sp"] {
  width: 329px;
  max-width: 100%;
}

/* ── Base button ─── */
.rcEntryButton-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-regular) !important;
  font-size: var(--font-size-12) !important;
  letter-spacing: 1.44px !important;
  line-height: 180% !important;
  transition: background-color 0.2s ease, opacity 0.2s ease !important;
  white-space: normal !important;
  word-break: break-word !important;
  text-align: center !important;
  background-color: var(--color-button-bg-primary-default) !important;
  color: var(--color-button-text-primary) !important;
  box-shadow: none !important;
}
/* 外部CSSの button { display: block } 上書き防止（タグ+クラスで詳細度アップ） */
button.rcEntryButton-button { display: inline-flex !important; }

.rcEntryButton-button:not(:disabled):hover {
  background-color: var(--color-button-bg-primary-hover) !important;
}

/* ── PC size (layout="pc") ─── */
.rcEntryButton[layout="pc"] .rcEntryButton-button {
  height: 56px !important;
}

/* ── SP size (layout="sp") ─── */
.rcEntryButton[layout="sp"] .rcEntryButton-button {
  height: 48px !important;
}

/* ── State: before / Hover (static demo class) ─── */
.rcEntryButton-status--before-hover .rcEntryButton-button {
  background-color: var(--color-button-bg-primary-hover) !important;
  color: var(--color-button-text-primary) !important;
}

/* ── State: loading ─── */
.rcEntryButton-status--loading .rcEntryButton-button {
  background-color: var(--color-button-bg-primary-default) !important;
  color: transparent !important;
  cursor: not-allowed !important;
}

/* ── State: applied (Disabled / Success) ─── */
.rcEntryButton-status--applied .rcEntryButton-button {
  background-color: var(--color-background-gray-strong) !important;
  color: var(--color-text-sub) !important;
  cursor: default !important;
}

/* ── State: entered (Disabled / Entered) ─── */
.rcEntryButton-status--entered .rcEntryButton-button {
  background-color: var(--color-background-gray-strong) !important;
  color: var(--color-text-sub) !important;
  cursor: default !important;
}

/* ── State: closed (エントリー期間は終了しました) ─── */
.rcEntryButton-status--closed .rcEntryButton-button {
  background-color: var(--color-background-gray-default) !important;
  color: var(--color-text-sub) !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ── State: before (エントリー開始前) ─── */
.rcEntryButton-status--before .rcEntryButton-button {
  background-color: var(--color-background-gray-default) !important;
  color: var(--color-text-sub) !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ── State: notfound (CAMPAIGN_NOT_FOUND) ─── */
.rcEntryButton-status--notfound .rcEntryButton-button {
  background-color: var(--color-background-gray-default) !important;
  color: var(--color-text-sub) !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ── Spinner ─── */
.rcEntryButton-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: rcEntryButton-spin 0.75s linear infinite;
}

@keyframes rcEntryButton-spin {
  to { transform: rotate(360deg); }
}

/* ── Check icon ─── */
.rcEntryButton-check {
  flex-shrink: 0;
  color: currentColor;
}

/* ============================================================
   Category List Component — PC
   6列 (デフォルト) / 5列バリアント (--pc-row5)
============================================================ */

.comp-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 6列: gap 16px × 5 = 80px */
.comp-category-list__item {
  position: relative;
  width: calc((100% - 80px) / 6);
}

/* バリアント: 5列 — gap 16px × 4 = 64px */
.comp-category-list--pc-row5 .comp-category-list__item {
  width: calc((100% - 64px) / 5);
}

.comp-category-list__link {
  display: block;
  transition: opacity 0.2s;
}

.comp-category-list__link:link,
.comp-category-list__link:visited {
  color: #ffffff;
}

.comp-category-list__link:hover {
  opacity: 0.7;
}

.comp-category-list__image {
  width: 100%;
  height: auto;
  display: block;
}

.comp-category-list__text {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

/* ============================================================
   comp-reward — PC
============================================================ */

.comp-reward {
  box-sizing: border-box;
  width: 1000px;
  margin: 8px auto 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
}

.comp-reward__list {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.comp-reward__item {
  padding: 4px 8px;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  background: #f2f2f2;
}

.comp-reward__description-list {
  margin-top: 8px;
}

.comp-reward__description-group {
  display: flex;
  justify-content: flex-start;
}

.comp-reward__description-label {
  font-size: 10px;
  line-height: 130%;
}

.comp-reward__description-text {
  font-size: 10px;
  line-height: 130%;
}

.comp-reward__description-text + .comp-reward__description-text {
  margin-left: 8px;
}

/* ============================================================
   comp-pre-lead — PC
============================================================ */

.comp-pre-lead {
  box-sizing: border-box;
  padding: 4px 8px;
  margin-top: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #333333;
  text-align: center;
  background-color: #f9f9f9;
}

/* ============================================================
   comp-breadcrumb — PC
============================================================ */

.comp-breadcrumb {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.comp-breadcrumb__item {
  position: relative;
  display: inline-block;
  font-size: 11px;
  line-height: 150%;
  color: #717171;
}

.comp-breadcrumb__item + .comp-breadcrumb__item::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  vertical-align: middle;
  content: "";
  background-color: #333333;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.8105 2.25L6.75 3.3105L15.4395 12L6.75 20.6895L7.8105 21.75L17.5605 12L7.8105 2.25Z' fill='currentColor'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.comp-breadcrumb__link:link,
.comp-breadcrumb__link:visited {
  color: #0078b5;
}

.comp-breadcrumb__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* ============================================================
   comp-key-visual — PC
============================================================ */

.comp-key-visual {
  margin-top: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}

.comp-key-visual__image {
  width: 100%;
  height: auto;
}

/* ============================================================
   comp-contents-navigation — PC
============================================================ */

.comp-contents-navigation {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
}

.comp-contents-navigation__item {
  position: relative;
  padding-right: 12px;
}

.comp-contents-navigation__item::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  height: 18px;
  content: "";
  border-right: 1px solid #cccccc;
  transform: translateY(-50%);
}

.comp-contents-navigation__item:has(+ .comp-contents-navigation__item--spacer),
.comp-contents-navigation__item:last-child {
  padding-right: 0;
}

.comp-contents-navigation__item:has(+ .comp-contents-navigation__item--spacer)::after,
.comp-contents-navigation__item:last-child::after {
  content: none;
}

.comp-contents-navigation__item--spacer {
  width: 100%;
}

.comp-contents-navigation__item--spacer::after {
  content: none;
}

.comp-contents-navigation__item--spacer ~ .comp-contents-navigation__item {
  margin-top: 12px;
}

.comp-contents-navigation__item--spacer ~ .comp-contents-navigation__item.comp-contents-navigation__item--spacer {
  margin-top: 0;
}

.comp-contents-navigation__link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  transition: 0.2s;
}

.comp-contents-navigation__link:link,
.comp-contents-navigation__link:visited {
  color: #333333;
}

.comp-contents-navigation__link::after {
  position: relative;
  top: 0;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 0 0 8px;
  content: "";
  background-color: #717171;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.9053 7.65523L20.8448 6.59473L12.1553 15.2842L3.46577 6.59473L2.40527 7.65523L12.1553 17.4052L21.9053 7.65523Z' fill='currentColor'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: 0.2s;
}

.comp-contents-navigation__link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.comp-contents-navigation__link:hover::after {
  top: 2px;
}

/* ============================================================
   comp-gender-navigation — PC
============================================================ */

.comp-gender-navigation {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 12px;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
}

.comp-gender-navigation__item {
  width: 25%;
  text-align: center;
}

.comp-gender-navigation__link {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 12px 0 34px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  background: #f2f2f2;
  border-radius: 2px;
  transition: 0.2s;
}

.comp-gender-navigation__link:link,
.comp-gender-navigation__link:visited {
  color: #333333;
}

.comp-gender-navigation__link::after {
  position: absolute;
  bottom: 12px;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #333333;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.9053 7.65523L20.8448 6.59473L12.1553 15.2842L3.46577 6.59473L2.40527 7.65523L12.1553 17.4052L21.9053 7.65523Z' fill='currentColor'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.comp-gender-navigation__link:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* ============================================================
   comp-recommend-list — PC
============================================================ */

.comp-recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  align-items: flex-start;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.comp-recommend-list__item {
  width: calc((100% - 112px) / 8);
  text-align: center;
}

.comp-recommend-list--pc-row6 .comp-recommend-list__item {
  width: calc((100% - 80px) / 6);
}

.comp-recommend-list__link {
  display: block;
  transition: 0.2s;
}

.comp-recommend-list__link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.comp-recommend-list__image {
  width: 100%;
  height: auto;
}

.comp-recommend-list__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  color: #333333;
}

/* ============================================================
   comp-brand-list — PC
============================================================ */

.comp-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.comp-brand-list__item {
  width: calc((100% - 120px) / 6);
  background-color: #fff;
}

.comp-brand-list__link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 67px;
  border: 1px solid #cccccc;
  transition: 0.2s;
}

.comp-brand-list__link:hover {
  opacity: 0.7;
}

.comp-brand-list__image {
  width: 100%;
  height: auto;
}

/* ============================================================
   comp-heading — PC
============================================================ */

.comp-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 150%;
  color: #333333;
  text-align: center;
}
/* 外部PC CSSのh2~h4上書き防止（タグ+クラスで詳細度アップ） */
h2.comp-heading, h3.comp-heading, h4.comp-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #333333;
  text-align: center;
}

.comp-heading--basic-lv2 {
  position: relative;
  padding-bottom: 16px;
  font-size: 32px;
}
h2.comp-heading--basic-lv2, h3.comp-heading--basic-lv2 { font-size: 32px; font-weight: 700; }

.comp-heading--basic-lv2::after {
  position: absolute;
  bottom: 0;
  left: calc(50% - 16.5px);
  width: 33px;
  height: 1px;
  content: "";
  background-color: #333333;
}

.comp-heading--basic-lv3 {
  font-size: 24px;
}
h3.comp-heading--basic-lv3, h4.comp-heading--basic-lv3 { font-size: 24px; font-weight: 700; }

.comp-heading--basic-lv4 {
  font-size: 18px;
}
h4.comp-heading--basic-lv4 { font-size: 18px; font-weight: 700; }

/* ============================================================
   comp-campaign-detail — PC
============================================================ */

.comp-campaign-detail {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 32px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
  color: #333333;
  border: 1px solid #dddddd;
  border-radius: 2px;
}

.comp-campaign-detail__main {
  height: auto;
  border-top: 1px solid #dddddd;
  opacity: 1;
  transition: all 0.2s ease-out;
}

.comp-campaign-detail.is-closed .comp-campaign-detail__main {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}

.comp-campaign-detail__block {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  padding: 16px 0;
}

.comp-campaign-detail__block + .comp-campaign-detail__block {
  border-top: 1px solid #dddddd;
}

.comp-campaign-detail__block:has(.comp-campaign-detail__group) {
  gap: 16px 0;
}

.comp-campaign-detail__group {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  align-items: flex-start;
}

.comp-campaign-detail__heading {
  font-size: 14px;
  font-weight: 700;
}

.comp-campaign-detail__heading--level4 {
  font-size: 12px;
}

.comp-campaign-detail__text {
  font-size: 13px;
}

.comp-campaign-detail__label {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  background: #f2f2f2;
  border-radius: 2px;
}

.comp-campaign-detail__attention-item {
  position: relative;
  padding-left: 1em;
}

.comp-campaign-detail__attention-item + .comp-campaign-detail__attention-item {
  margin-top: 6px;
}

.comp-campaign-detail__attention-item::before {
  position: absolute;
  left: 0;
  content: "・";
}

/* ============================================================
   comp-note-list — PC
============================================================ */

.comp-note-list {
  font-family: 'Noto Sans JP', sans-serif;
}

.comp-note-list__item {
  position: relative;
  padding-left: calc(1em + 4px);
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  color: #717171;
  text-align: left;
}

.comp-note-list__item + .comp-note-list__item {
  margin-top: 4px;
}

.comp-note-list--center .comp-note-list__item {
  padding-left: 0;
  text-align: center;
}

.comp-note-list__item::before {
  position: absolute;
  left: 0;
  content: "※";
}

.comp-note-list--center .comp-note-list__item::before {
  position: relative;
  margin-right: 4px;
}

.comp-note-list__item--no-icon {
  padding-left: 0;
}

.comp-note-list__item--no-icon::before {
  content: "";
}

/* ============================================================
   Tab Component
============================================================ */

.comp-tab-list-container {
  position: relative;
  cursor: grab;
  user-select: none;
  border-bottom: 1px solid var(--color-border-primary);
}

.comp-tab-list-container.active {
  cursor: grabbing;
}

.comp-tab-button-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
}

.comp-tab-button-list::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  content: '';
  background: var(--color-gray-60);
}

.comp-tab-button-list::-webkit-scrollbar {
  display: none;
}

.comp-tab-button-list__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  height: 48px;
  padding: 0 var(--spacing-12);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-text-sub);
  text-align: center;
  letter-spacing: 0;
  cursor: pointer;
  list-style: none;
}

.comp-tab-button-list__item:hover {
  cursor: pointer;
  background: var(--color-opacity-gray-4);
}

.comp-tab-button-list__item.active {
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  border-bottom: 2px solid var(--color-gray-100);
}

.comp-tab-button-list--fixed .comp-tab-button-list__item {
  flex: 1;
  justify-content: center;
}

.comp-tab-button-list--m .comp-tab-button-list__item {
  height: 40px;
  font-size: var(--font-size-14);
}

.comp-tab-button-list--s .comp-tab-button-list__item {
  height: 36px;
  font-size: var(--font-size-13);
}

.comp-tab-button-list--xs .comp-tab-button-list__item {
  height: 32px;
  font-size: var(--font-size-12);
}

.comp-tab-button-list--icon .comp-tab-button-list__item {
  display: flex;
  flex-flow: column nowrap;
  gap: 2px 0;
  justify-content: center;
  height: 64px;
  padding: 0 var(--spacing-24);
  font-size: var(--font-size-12);
}

.comp-tab-button-list--s.comp-tab-button-list--icon .comp-tab-button-list__item {
  height: 56px;
  font-size: var(--font-size-11);
}

.comp-tab-button-list__icon {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

.comp-tab-button-list--s .comp-tab-button-list__icon {
  width: 24px;
  height: 24px;
}

.comp-tab-button-list__item.active .comp-tab-button-list__icon {
  opacity: 1;
}

.comp-tab-contents {
  display: none;
}

.comp-tab-contents.active {
  display: block;
}

.comp-moving-button {
  position: absolute;
  top: 50%;
  z-index: 103;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  padding: 0;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
  transform: translateY(-50%);
  transition: 0.2s;
}

.comp-tab-button-list.comp-tab-button-list--fixed ~ .comp-moving-button {
  display: none;
}

.comp-moving-button.comp-moving-button--prev {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.comp-moving-button.comp-moving-button--next {
  right: 0;
  background: linear-gradient(-90deg, #ffffff, transparent);
}

.comp-moving-button__svg {
  width: 20px;
  height: 20px;
}

.comp-moving-button--prev .comp-moving-button__svg {
  transform: rotate(180deg);
}

.comp-moving-button:hover .comp-moving-button__rect {
  fill: var(--color-opacity-gray-90);
}

/* ============================================================
   comp-section / comp-section-py / comp-section-mt — PC
============================================================ */

.comp-section {
  box-sizing: border-box;
  padding: 64px 20px;
}
.comp-section--8   { padding:   8px 20px; }
.comp-section--12  { padding:  12px 20px; }
.comp-section--16  { padding:  16px 20px; }
.comp-section--20  { padding:  20px 20px; }
.comp-section--24  { padding:  24px 20px; }
.comp-section--32  { padding:  32px 20px; }
.comp-section--40  { padding:  40px 20px; }
.comp-section--48  { padding:  48px 20px; }
.comp-section--56  { padding:  56px 20px; }
.comp-section--80  { padding:  80px 20px; }
.comp-section--96  { padding:  96px 20px; }
.comp-section--128 { padding: 128px 20px; }
.comp-section--184 { padding: 184px 20px; }

.comp-section-py {
  box-sizing: border-box;
  padding: 64px 0;
}
.comp-section-py--8   { padding:   8px 0; }
.comp-section-py--12  { padding:  12px 0; }
.comp-section-py--16  { padding:  16px 0; }
.comp-section-py--20  { padding:  20px 0; }
.comp-section-py--24  { padding:  24px 0; }
.comp-section-py--32  { padding:  32px 0; }
.comp-section-py--40  { padding:  40px 0; }
.comp-section-py--48  { padding:  48px 0; }
.comp-section-py--56  { padding:  56px 0; }
.comp-section-py--80  { padding:  80px 0; }
.comp-section-py--96  { padding:  96px 0; }
.comp-section-py--128 { padding: 128px 0; }
.comp-section-py--184 { padding: 184px 0; }

.comp-section-mt { margin-top: 32px; }
.comp-section-mt--2   { margin-top:   2px; }
.comp-section-mt--4   { margin-top:   4px; }
.comp-section-mt--6   { margin-top:   6px; }
.comp-section-mt--8   { margin-top:   8px; }
.comp-section-mt--12  { margin-top:  12px; }
.comp-section-mt--16  { margin-top:  16px; }
.comp-section-mt--20  { margin-top:  20px; }
.comp-section-mt--24  { margin-top:  24px; }
.comp-section-mt--32  { margin-top:  32px; }
.comp-section-mt--40  { margin-top:  40px; }
.comp-section-mt--48  { margin-top:  48px; }
.comp-section-mt--56  { margin-top:  56px; }
.comp-section-mt--64  { margin-top:  64px; }
.comp-section-mt--80  { margin-top:  80px; }
.comp-section-mt--96  { margin-top:  96px; }
.comp-section-mt--128 { margin-top: 128px; }
.comp-section-mt--184 { margin-top: 184px; }

/* ============================================================
   #page-top — ページトップボタン（PC のみ）
============================================================ */

#page-top { display: none; position: fixed; bottom: 20px; right: 20px; font-size: 190%; }
#page-top a { display: block; width: 46px; padding: 10px 0; border: 1px solid #333; border-radius: 45px; color: #333 !important; text-align: center; text-decoration: none; background: #fff; }
#page-top a:hover { background: #333 none repeat scroll 0 0; color: #fff !important; opacity: 0.7; text-decoration: none; }

/* ============================================================
   ファッション特集スタック — PC
============================================================ */

.contentslp_link_wrap { margin-top: 90px; margin-bottom: 0; }
.contentslp_link_wrap .contents_title { font-family: 'Noto Sans JP', sans-serif; font-size: 32px; font-weight: 700; color: #333333; text-align: center; position: relative; padding-bottom: 16px; margin: 0 auto 32px; }
.contentslp_link_wrap .contents_title::after { position: absolute; bottom: 0; left: calc(50% - 16.5px); width: 33px; height: 1px; content: ""; background-color: #333333; }
.contentslp_link { display: flex; flex-wrap: wrap; justify-content: space-between; }
.contentslp_link.contentslp_link--even,
.contentslp_link.contentslp_link--odd { justify-content: center; }
.contentslp_link.contentslp_link--odd { width: 744px; margin: 0 auto; }
.contentslp_link li { width: 23%; text-align: center; background: #f2f2f2; padding: 20px; box-sizing: border-box; display: flex; flex-direction: column; margin-bottom: 32px; }
.contentslp_link.contentslp_link--even li { margin-right: 20px; }
.contentslp_link.contentslp_link--even li:nth-child(4n) { margin-right: 0; }
.contentslp_link.contentslp_link--odd li { width: 230px; margin-right: 27px; }
.contentslp_link.contentslp_link--odd li:nth-child(3n) { margin-right: 0; }
.contentslp_link li a { display: block; border: 1px solid #666666; background: #fff; padding: 5px; margin-top: auto; font-size: 14px; }
.contentslp_link li a:hover { opacity: 0.6; }
.contentslp_link li a.img_link { background: none; border: none; padding: 0; margin-top: 0; }
.contentslp_link li img { width: 100%; }
.contentslp_link li .lp_title { font-weight: bold; font-size: 15px; margin: 8px 0; line-height: 1; }
.contentslp_link li .lp_text { text-align: left; margin-bottom: 8px; }

/* ============================================================
   サーベイパーツ CSS（PC / SP 共通）
============================================================ */

/* NPS survey design change */
.Nps,
.Inquiry,
.Thanks { color: #000 !important; border-top: 1px solid #333 !important; }
.Nps .NpsRadioWithLabel label { color: #333 !important; }
.Nps .NpsRadioWithLabel:nth-child(1) label { border: 2px solid #ebebeb !important; }
.Nps .NpsRadioWithLabel:nth-child(2) label { border: 2px solid #b6b6b6 !important; }
.Nps .NpsRadioWithLabel:nth-child(3) label { border: 2px solid #828282 !important; }
.Nps .NpsRadioWithLabel:nth-child(4) label { border: 2px solid #4d4d4d !important; }
.Nps .NpsRadioWithLabel:nth-child(5) label { border: 2px solid #000 !important; }
.NpsRadioWithLabel_wrapper__VhJnb>input+label:hover { color: #fff !important; }
.NpsRadioWithLabel_wrapper__VhJnb>input+label.NpsRadioWithLabel_color-EC0606__c-jHm:hover { background-color: #ebebeb !important; }
.NpsRadioWithLabel_wrapper__VhJnb>input+label.NpsRadioWithLabel_color-EF0AA1__a0ZK\+:hover { background-color: #b6b6b6 !important; }
.NpsRadioWithLabel_wrapper__VhJnb>input+label.NpsRadioWithLabel_color-0085C7__pTIBF:hover { background-color: #828282 !important; }
.NpsRadioWithLabel_wrapper__VhJnb>input+label.NpsRadioWithLabel_color-B87100__5BbVx:hover { background-color: #4d4d4d !important; }
.NpsRadioWithLabel_wrapper__VhJnb>input+label.NpsRadioWithLabel_color-009500__cUA0n:hover { background-color: #000 !important; }
.Primary_wrapper__g-fB9 .Primary_button__b28Uk.Primary_primary__U4wsd { background-color: #828282 !important; border: none !important; }
.rexSurveyNamespace input:checked+label::before { background-color: rgba(0, 0, 0, 0.5) !important; }
.rexSurveyNamespace img { filter: gray; filter: grayscale(100%); }
.Inquiry.StyledBoxPopup [data-testid=HeaderCloseBar] { background: #828282 !important; }
.message-text-0,
.Nps-StyledMessage { word-break: break-word !important; }

/* ============================================================
   Gender Tab Component (PC)
============================================================ */

.gender-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gender-menu-list.gender-menu-list--top {
  margin-top: 40px;
}
.gender-menu-list.gender-menu-list--bottom {
  margin: 40px 0;
}
.gender-menu-item {
  flex: 1;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: #717171;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #c7c7c7;
  cursor: pointer;
}
.gender-menu-item.current {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  color: #333;
  background: #fff;
  border-top: 1px solid #c7c7c7;
  border-right: 1px solid #c7c7c7;
  border-bottom: none;
  border-left: 1px solid #c7c7c7;
}
/* 左端：左ボーダーなし */
.gender-menu-item.current:first-child {
  border-left: none;
}
/* 右端：右ボーダーなし */
.gender-menu-item.current:last-child {
  border-right: none;
}
.gender-menu-item.current::after {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 24px);
  display: inline-block;
  width: 48px;
  height: 2px;
  content: "";
  background-color: #333;
}
/* ジェンダー別の下線幅 */
.gender-menu-item.current.gender-women::after {
  left: calc(50% - 30px);
  width: 60px;
}
.gender-menu-item.current.gender-men::after {
  left: calc(50% - 15px);
  width: 30px;
}
.gender-menu-item.current.gender-kids::after {
  left: calc(50% - 18px);
  width: 36px;
}
.gender-menu-list.gender-menu-list--bottom .gender-menu-item {
  border-top: 1px solid #c7c7c7;
  border-bottom: none;
}
.gender-menu-list.gender-menu-list--bottom .gender-menu-item.current {
  border-top: none;
  border-bottom: 1px solid #c7c7c7;
}
.js-gender-tab .js-gender-tab_item {
  display: none;
}
.js-gender-tab .js-gender-tab_item.active {
  display: block;
}

/* ============================================================
   Floating Nav Component (PC)
============================================================ */

.fixed-menu {
  display: none;
}
.fixed-menu.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: block;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.fixed-menu__body {
  display: flex;
  align-items: center;
  width: 1000px;
  margin: 0 auto;
}
.fixed-menu__gender-select {
  position: relative;
  z-index: 10000;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 41px;
  margin-right: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--color-background-gray-strong);
  border: 1px solid #333;
}
.fixed-menu__gender-select::after {
  position: absolute;
  top: 16px;
  right: 16px;
  content: "";
  border: 6px solid transparent;
  border-top: 7px solid #333;
}
.fixed-menu__gender-select.is-open::after {
  top: 9px;
  transform: rotate(180deg);
}
.fixed-menu__gender-list {
  position: absolute;
  top: 49px;
  display: block;
  border: 1px solid #333;
  border-top: none;
}
.fixed-menu__gender-item {
  position: relative;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  width: 159px;
  height: 41px;
  font-size: 14px;
  line-height: 130%;
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-top: 1px solid #ccc;
}
.fixed-menu__gender-item.active {
  font-weight: 700;
}
.fixed-menu__gender-item-text {
  position: relative;
}
.fixed-menu__gender-item.active .fixed-menu__gender-item-text::before {
  position: absolute;
  top: 50%;
  left: -32px;
  display: inline-block;
  width: 12px;
  height: 12px;
  content: "";
  background-color: #333;
  border-radius: 6px;
  transform: translateY(-50%);
}
.fixed-menu__contents {
  flex: 1;
  min-width: 0;
  background-color: #fff;
}
.fixed-menu__contents-list {
  display: none;
}
.fixed-menu__contents-list::-webkit-scrollbar {
  display: none;
}
.fixed-menu__contents-list.active {
  display: flex;
  width: 100%;
  height: 59px;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
}
.fixed-menu__contents-item {
  flex: 1;
  min-width: 120px;
}
.fixed-menu__contents-link:link,
.fixed-menu__contents-link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #717171;
  text-align: center;
  text-decoration: none;
  border-left: 1px solid var(--color-border-primary);
}
.fixed-menu__contents-item:last-child .fixed-menu__contents-link:link,
.fixed-menu__contents-item:last-child .fixed-menu__contents-link:visited {
  border-right: 1px solid var(--color-border-primary);
}
.fixed-menu__contents-item:hover .fixed-menu__contents-link:link,
.fixed-menu__contents-item:hover .fixed-menu__contents-link:visited {
  background-color: var(--color-background-gray-default);
  text-decoration: none;
}
.fixed-menu__contents-link:link:hover,
.fixed-menu__contents-link:visited:hover {
  text-decoration: none;
}
.fixed-menu__contents-link:link.is-current,
.fixed-menu__contents-link:visited.is-current {
  font-weight: 700;
  color: #333;
  background-color: var(--color-background-gray-default);
}
