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

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

.sp_none {
  display: none;
}

#areaWrapper {
  font-family: var(--font-family-primary);
  line-height: 1.5;
}

/* ============================================================
   comp-icon — アイコンユーティリティ
   使い方: <span class="comp-icon comp-icon--arrow-right" style="color: #333;"></span>
   色変更: color プロパティで制御
============================================================ */

.comp-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.comp-icon--circle-arrow-left  { mask-image: var(--icon-circle-arrow-left);  -webkit-mask-image: var(--icon-circle-arrow-left); }
.comp-icon--circle-arrow-right { mask-image: var(--icon-circle-arrow-right); -webkit-mask-image: var(--icon-circle-arrow-right); }
.comp-icon--circle-arrow-up    { mask-image: var(--icon-circle-arrow-up);    -webkit-mask-image: var(--icon-circle-arrow-up); }
.comp-icon--circle-arrow-down  { mask-image: var(--icon-circle-arrow-down);  -webkit-mask-image: var(--icon-circle-arrow-down); }
.comp-icon--arrow-left         { mask-image: var(--icon-arrow-left);         -webkit-mask-image: var(--icon-arrow-left); }
.comp-icon--arrow-right        { mask-image: var(--icon-arrow-right);        -webkit-mask-image: var(--icon-arrow-right); }
.comp-icon--arrow-up           { mask-image: var(--icon-arrow-up);           -webkit-mask-image: var(--icon-arrow-up); }
.comp-icon--arrow-down         { mask-image: var(--icon-arrow-down);         -webkit-mask-image: var(--icon-arrow-down); }
.comp-icon--arrow-up-filled    { mask-image: var(--icon-arrow-up-filled);    -webkit-mask-image: var(--icon-arrow-up-filled); }
.comp-icon--arrow-down-filled  { mask-image: var(--icon-arrow-down-filled);  -webkit-mask-image: var(--icon-arrow-down-filled); }
.comp-icon--chevron-left       { mask-image: var(--icon-chevron-left);       -webkit-mask-image: var(--icon-chevron-left); }
.comp-icon--chevron-right      { mask-image: var(--icon-chevron-right);      -webkit-mask-image: var(--icon-chevron-right); }
.comp-icon--chevron-up         { mask-image: var(--icon-chevron-up);         -webkit-mask-image: var(--icon-chevron-up); }
.comp-icon--chevron-down       { mask-image: var(--icon-chevron-down);       -webkit-mask-image: var(--icon-chevron-down); }
.comp-icon--close              { mask-image: var(--icon-close);              -webkit-mask-image: var(--icon-close); }
.comp-icon--plus               { mask-image: var(--icon-plus);               -webkit-mask-image: var(--icon-plus); }
.comp-icon--minus              { mask-image: var(--icon-minus);              -webkit-mask-image: var(--icon-minus); }
.comp-icon--check              { mask-image: var(--icon-check);              -webkit-mask-image: var(--icon-check); }
.comp-icon--dots-h             { mask-image: var(--icon-dots-h);             -webkit-mask-image: var(--icon-dots-h); }
.comp-icon--dots-v             { mask-image: var(--icon-dots-v);             -webkit-mask-image: var(--icon-dots-v); }
.comp-icon--link-outline       { mask-image: var(--icon-link-outline);       -webkit-mask-image: var(--icon-link-outline); }
.comp-icon--external-link      { mask-image: var(--icon-external-link);      -webkit-mask-image: var(--icon-external-link); }
.comp-icon--rf-symbol          { mask-image: var(--icon-rf-symbol);          -webkit-mask-image: var(--icon-rf-symbol); }

/* ============================================================
   comp-nml-btn — SP
============================================================ */

.comp-nml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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;
  max-width: 100%;
  box-sizing: border-box;
}
/* 外部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,
.comp-nml-btn--primary:link,
.comp-nml-btn--primary:visited {
  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,
.comp-nml-btn--secondary:link,
.comp-nml-btn--secondary:visited {
  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,
.comp-nml-btn--disable:link,
.comp-nml-btn--disable:visited {
  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-* トークンを参照 */

/* ── 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; }

/* ============================================================
   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; border-radius: 0 } 上書き防止（タグ+クラスで詳細度アップ） */
button.rcEntryButton-button {
  display: inline-flex !important;
  border-radius: 2px !important;
  -webkit-appearance: none !important;
  appearance: none !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;
  box-sizing: border-box;
  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 — SP
   3列: gap 8px × 2 = 16px
============================================================ */

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

.comp-category-list__item {
  position: relative;
  width: calc((100% - 16px) / 3);
}

.comp-category-list__link {
  display: block;
}

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

.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: 14px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

/* ============================================================
   comp-reward — SP
============================================================ */

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

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

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

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

.comp-reward__description-group + .comp-reward__description-group {
  margin-top: 2px;
}

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

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

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

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

/* ============================================================
   comp-breadcrumb — SP
============================================================ */

.comp-breadcrumb {
  display: none;
}

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

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

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

.comp-reward + .comp-key-visual,
.comp-pre-lead + .comp-key-visual {
  margin-top: 8px;
}

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

.comp-contents-navigation {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
  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: 14px;
  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: 12px;
  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;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 0 0 6px;
  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;
}

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

/* ============================================================
   comp-box-navigation — SP
============================================================ */

.comp-box-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.comp-box-navigation__item {
  width: calc((100% - 8px * 2) / 3);
  text-align: center;
}

.comp-box-navigation__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  height: 52px;
  padding: 0 4px 10px;
  background-color: var(--color-background-gray-strong);
  font-size: 11px;
  line-height: var(--line-height-compact, 1.3);
  font-weight: 500;
  text-align: center;
}

.comp-box-navigation__link::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 8px;
  height: 8px;
  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-box-navigation__link:link,
.comp-box-navigation__link:visited {
  color: #333333;
}

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

.comp-gender-navigation {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  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: 70px;
  padding: 8px 0 26px;
  font-size: 12px;
  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: 8px;
  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 — SP
============================================================ */

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

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

.comp-recommend-list--sp-row3 .comp-recommend-list__item {
  width: calc((100% - 12px) / 3);
}

.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 — SP
============================================================ */

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

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

.comp-brand-list__link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  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 — SP
============================================================ */

.comp-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 150%;
  color: #333333;
  text-align: center;
}
/* 外部SP CSSの h2~h4 { font-size: 100%; font-weight: 400 } を上書き（タグ+クラスで詳細度アップ） */
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: 12px;
  font-size: 24px;
}
h2.comp-heading--basic-lv2, h3.comp-heading--basic-lv2 { font-size: 24px; 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: 20px;
}
h3.comp-heading--basic-lv3, h4.comp-heading--basic-lv3 { font-size: 20px; font-weight: 700; }

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

/* ============================================================
   comp-link-text — SP
============================================================ */

.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;
}

.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;
}

.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; }

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

.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");
}

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

.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; }
.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; }

.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; }

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

.comp-campaign-detail {
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  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.is-closed .comp-campaign-detail__text {
  display: none;
}

.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;
  font-size: 13px;
}

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

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

.js-campaign-detail__heading {
  position: relative;
  padding-right: 20px;
}

.js-campaign-detail__heading::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  width: 13px;
  height: 7.2px;
  content: "";
  background-image: url(https://brandavenue.r10s.jp/img/library/contents/common/components/chevron-up.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease-out;
}

.comp-campaign-detail.is-closed .js-campaign-detail__heading::after {
  transform: rotate(-180deg);
}

/* ── comp-link-text within campaign-detail (direct text, no __label span) ─── */
.comp-campaign-detail .comp-link-text--underline {
  text-decoration: underline;
}

.comp-campaign-detail .comp-link-text--noarrow::after {
  display: none;
}

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

.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: "";
}

/* SP のみ左寄せに切り替えるモディファイア（PC は中央寄せを維持） */
.comp-note-list--left-sp .comp-note-list__item {
  text-align: left;
  padding-left: calc(1em + 4px);
}

.comp-note-list--left-sp .comp-note-list__item::before {
  position: absolute;
  left: 0;
  margin-right: 0;
}

/* ============================================================
   comp-tab — SP
============================================================ */

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

.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::-webkit-scrollbar {
  display: none;
}

.comp-tab-button-list__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  height: 48px;
  padding: 0 var(--spacing-12);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-14);
  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.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;
  box-sizing: border-box;
  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 — SP
============================================================ */

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

.comp-section-py {
  box-sizing: border-box;
  padding: 40px 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:  24px 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--64  { padding:  64px 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: 24px; }
.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; }

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

.contentslp_link_wrap { padding: 40px 24px; box-sizing: border-box; }
.contentslp_link_wrap .contents_title { font-family: 'Noto Sans JP', sans-serif; font-size: 24px; font-weight: 700; color: #333333; text-align: center; position: relative; padding-bottom: 12px; 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; }
/* SP: 2列 */
.contentslp_link { display: flex; flex-wrap: wrap; gap: 12px; font-family: 'Noto Sans JP', sans-serif; }
.contentslp_link li { display: flex; width: calc((100% - 12px) / 2); padding: 10px; text-align: center; background: #f2f2f2; box-sizing: border-box; flex-direction: column; }
.contentslp_link li a { display: block; border: 1px solid #666; margin-top: auto; padding: 10px 5px; font-size: 10px; background: #fff; }
.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 {
  padding: 0;
  color: #333 !important;
  height: 50px !important;
  width: 50px !important;
  margin: auto;
  border-radius: 25px;
}
.Nps .NpsRadioWithLabel label::before {
  display: none !important;
  content: none;
}
.Nps .NpsRadioWithLabel:nth-child(1) label,
.rexSurveyNamespace .sc-fujyAs:nth-child(1) > input + label::before { border: 2px solid #ebebeb !important; }
.rexSurveyNamespace .sc-fujyAs:nth-child(1) > input + label { border: none !important; }
.Nps .NpsRadioWithLabel:nth-child(2) label,
.rexSurveyNamespace .sc-fujyAs:nth-child(2) > input + label::before { border: 2px solid #b6b6b6 !important; }
.rexSurveyNamespace .sc-fujyAs:nth-child(2) > input + label { border: none !important; }
.Nps .NpsRadioWithLabel:nth-child(3) label,
.rexSurveyNamespace .sc-fujyAs:nth-child(3) > input + label::before { border: 2px solid #828282 !important; }
.rexSurveyNamespace .sc-fujyAs:nth-child(3) > input + label { border: none !important; }
.Nps .NpsRadioWithLabel:nth-child(4) label,
.rexSurveyNamespace .sc-fujyAs:nth-child(4) > input + label::before { border: 2px solid #4d4d4d !important; }
.rexSurveyNamespace .sc-fujyAs:nth-child(4) > input + label { border: none !important; }
.Nps .NpsRadioWithLabel:nth-child(5) label,
.rexSurveyNamespace .sc-fujyAs:nth-child(5) > input + label::before { border: 2px solid #000 !important; }
.rexSurveyNamespace .sc-fujyAs:nth-child(5) > input + label { border: none !important; }
.NpsRadioWithLabel_wrapper__VhJnb input:focus+label::before { display: none !important; }
.NpsRadioWithLabel_wrapper__VhJnb input:focus+label { color: #fff !important; }
.NpsRadioWithLabel_wrapper__VhJnb input:focus+label.NpsRadioWithLabel_color-EC0606__c-jHm { background-color: #ebebeb !important; }
.NpsRadioWithLabel_wrapper__VhJnb input:focus+label.NpsRadioWithLabel_color-EF0AA1__a0ZK\+ { background-color: #b6b6b6 !important; }
.NpsRadioWithLabel_wrapper__VhJnb input:focus+label.NpsRadioWithLabel_color-0085C7__pTIBF { background-color: #828282 !important; }
.NpsRadioWithLabel_wrapper__VhJnb input:focus+label.NpsRadioWithLabel_color-B87100__5BbVx { background-color: #4d4d4d !important; }
.NpsRadioWithLabel_wrapper__VhJnb input:focus+label.NpsRadioWithLabel_color-009500__cUA0n { background-color: #000 !important; }
.InquiryHeaderMobile_wrapper__aZJlu .InquiryHeaderMobile_bar__VwZ4l { background: #828282 !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: rgb(0, 0, 0, 0.5) !important; }
.rexSurveyNamespace img { filter: gray; -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -o-filter: grayscale(100%); }
.rexSurveyNamespace .jPdUHz button.primary { color: #fff; border: none !important; background-color: #828282 !important; }
.Inquiry.StyledBoxPopup [data-testid="HeaderCloseBar"] { background: #828282 !important; }
.message-text-0,
.Nps-StyledMessage { word-break: break-word !important; }
.rex-checkbox-label::after { display: none !important; }

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

.comp-gender-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-gender-menu-list.comp-gender-menu-list--top {
  margin-top: 64px;
  margin-bottom: 24px;
}
.comp-gender-menu-list.comp-gender-menu-list--bottom {
  margin: 24px 0;
}
.comp-gender-menu-item {
  position: relative;
  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;
}
.comp-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;
}
/* 左端：左ボーダーなし */
.comp-gender-menu-item.current:first-child {
  border-left: none;
}
/* 右端：右ボーダーなし */
.comp-gender-menu-item.current:last-child {
  border-right: none;
}
.comp-gender-menu-item::after {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 24px);
  display: inline-block;
  width: 48px;
  height: 1px;
  content: "";
  background-color: var(--color-text-sub);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.comp-gender-menu-item.current::after {
  height: 2px;
  background-color: #333;
  opacity: 1;
}
.comp-gender-menu-item:not(.current):hover::after {
  opacity: 1;
}
/* ジェンダー別の下線幅 */
.comp-gender-menu-item.comp-gender-menu-item--women::after {
  left: calc(50% - 30px);
  width: 60px;
}
.comp-gender-menu-item.comp-gender-menu-item--men::after {
  left: calc(50% - 15px);
  width: 30px;
}
.comp-gender-menu-item.comp-gender-menu-item--kids::after {
  left: calc(50% - 18px);
  width: 36px;
}
.comp-gender-menu-list.comp-gender-menu-list--bottom .comp-gender-menu-item {
  border-top: 1px solid #c7c7c7;
  border-bottom: none;
}
.comp-gender-menu-list.comp-gender-menu-list--bottom .comp-gender-menu-item.current {
  border-top: none;
  border-bottom: 1px solid #c7c7c7;
}
.js-gender-tab .js-gender-tab_item {
  display: none;
  opacity: 0;
}
.js-gender-tab .js-gender-tab_item.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.comp-fixed-menu {
  display: none;
}
.comp-fixed-menu.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: block;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.comp-fixed-menu__body {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.comp-fixed-menu__gender-select {
  position: relative;
  z-index: 10000;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100px;
  height: 38px;
  margin: 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  color: #333;
  text-decoration: none;
  background-color: var(--color-background-gray-strong);
  border: 1px solid #333;
  cursor: pointer;
  transition: opacity 0.2s;
}
.comp-fixed-menu__gender-select:hover {
  opacity: 0.8;
}
.comp-fixed-menu__gender-select::after {
  position: absolute;
  top: 16px;
  right: 8px;
  content: "";
  border: 6px solid transparent;
  border-top: 7px solid #333;
}
.comp-fixed-menu__gender-select.is-open::after {
  top: 9px;
  transform: rotate(180deg);
}
.comp-fixed-menu__gender-list {
  position: absolute;
  top: 45px;
  left: 12px;
  display: block;
  border: 1px solid #333;
  border-top: none;
}
.comp-fixed-menu__gender-item {
  position: relative;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  width: 100px;
  height: 38px;
  font-size: 12px;
  line-height: 130%;
  color: var(--color-text-sub, #717171);
  cursor: pointer;
  background-color: #fff;
  border-top: 1px solid #ccc;
  transition: background-color 0.2s;
}
.comp-fixed-menu__gender-item:not(.active):hover {
  background-color: var(--color-background-gray-default);
}
.comp-fixed-menu__gender-item.active {
  color: #333;
  font-weight: 700;
}
.comp-fixed-menu__gender-item-text {
  position: relative;
}
.comp-fixed-menu__gender-item.active .comp-fixed-menu__gender-item-text::before {
  position: absolute;
  top: 50%;
  left: -16px;
  display: inline-block;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #333;
  border-radius: 4px;
  transform: translateY(-50%);
}
.comp-fixed-menu__contents {
  flex: 1;
  min-width: 0;
  background-color: #fff;
}
.comp-fixed-menu__contents-list {
  display: none;
}
.comp-fixed-menu__contents-list::-webkit-scrollbar {
  display: none;
}
.comp-fixed-menu__contents-list.active {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 55px;
  overflow-x: scroll;
  scrollbar-width: none;
  background: #fff;
  border-right: 1px solid var(--color-border-primary);
}
.comp-fixed-menu__contents-item {
  box-sizing: border-box;
  flex: 1;
  min-width: 80px;
}
.comp-fixed-menu__contents-link:link,
.comp-fixed-menu__contents-link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  color: #717171;
  text-align: center;
  text-decoration: none;
  border-left: 1px solid var(--color-border-primary);
  transition: background-color 0.2s, color 0.2s;
}
.comp-fixed-menu__contents-item:hover .comp-fixed-menu__contents-link:link,
.comp-fixed-menu__contents-item:hover .comp-fixed-menu__contents-link:visited {
  text-decoration: none;
}
.comp-fixed-menu__contents-link:link.is-current,
.comp-fixed-menu__contents-link:visited.is-current {
  font-weight: 700;
  color: #333;
  background-color: var(--color-background-gray-default);
}

/* ============================================================
   comp-modal — SP
============================================================ */

.comp-modal__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 311px;
  max-width: none;
  height: 56px;
  padding: 0 var(--spacing-24);
  background-color: var(--color-button-bg-secondary-default);
  color: var(--color-button-text-secondary);
  border: 1px solid var(--color-button-border-secondary);
  border-radius: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-regular);
  letter-spacing: 1.44px;
  line-height: 180%;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  gap: var(--spacing-8);
  text-decoration: none;
}

.comp-modal__trigger .comp-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.comp-modal__overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 11999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.comp-modal__overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.comp-modal__circle-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 1.25px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 1;
  color: var(--color-gray-100);
}

.comp-modal__circle-close:hover {
  opacity: 0.7;
}

.comp-modal__circle-close .comp-icon {
  width: 16px;
  height: 16px;
}

.comp-modal__dialog {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-primary) transparent;
  background: #fff;
  border-radius: 6px;
  z-index: 12000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.comp-modal__dialog::-webkit-scrollbar {
  width: 6px;
}

.comp-modal__dialog::-webkit-scrollbar-track {
  background: transparent;
}

.comp-modal__dialog::-webkit-scrollbar-thumb {
  background-color: var(--color-border-primary);
  border-radius: 3px;
}
.comp-modal__dialog.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.comp-modal__body {
  padding: 40px 24px;
  background: #fff;
}

.comp-modal__footer {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-secondary);
}

.comp-modal__close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 160px;
  height: 36px;
  padding: 0 var(--spacing-12);
  background-color: var(--color-button-bg-secondary-default);
  color: var(--color-button-text-secondary);
  border: 1px solid var(--color-border-primary);
  border-radius: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-regular);
  letter-spacing: 1.44px;
  line-height: 180%;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  gap: var(--spacing-8);
  text-decoration: none;
}

.comp-modal__close-btn .comp-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ============================================================
   event-close
============================================================ */
.event-close { text-align: center; padding: 80px 24px; }
.event-close__header { margin-bottom: 40px; }
.event-close__title { font-family: var(--fontFamily-Noto, "Noto Sans JP", sans-serif); font-size: 24px; font-weight: 700; color: var(--Neutrals-MainText, #393E44); margin: 0 0 12px; line-height: 150%; }
.event-close__text { font-family: var(--fontFamily-Noto, "Noto Sans JP", sans-serif); font-size: 16px; color: var(--Neutrals-MainText, #393E44); margin: 0; line-height: 150%; font-weight: 400; }
.event-close__body { background-color: var(--color-background-gray-default, #f5f5f5); padding: 32px 24px 40px; border-radius: 4px; }
.event-close__desc { font-family: var(--fontFamily-Noto, "Noto Sans JP", sans-serif); font-size: 14px; color: var(--Neutrals-MainText, #393E44); margin: 0 0 20px; line-height: 150%; }
.event-close__logo { display: block; width: 46%; max-width: 200px; margin: 0 auto 20px; }
.event-close__btn { width: 100%; max-width: 100%; }
