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

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

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

.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,
.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-* トークンを参照。
 * 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; }

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

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

/* ============================================================
   comp-txt-more-btn — PC
============================================================ */

.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;
  text-decoration: none;
}

/* ── 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;
  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 — 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-box-navigation — PC
============================================================ */

.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: 11%;
  text-align: center;
}

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

.comp-box-navigation__link::after {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 10px;
  height: 10px;
  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;
  transition: bottom 0.2s ease;
}

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

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

.comp-box-navigation__link:hover::after {
  bottom: 4px;
}

/* ============================================================
   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;
  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: "・";
}

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

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

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

/* ============================================================
   comp-tab — PC
============================================================ */

.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::-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-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;
  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 — PC
============================================================ */

.comp-section {
  box-sizing: border-box;
  padding: 64px 20px;
}
.comp-section--0   { padding:   0 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; box-sizing: border-box; width: 46px; padding: 11px 0; line-height: 1; 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 { padding: 64px 20px; box-sizing: border-box; }
.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; }
/* デフォルト：4列 */
.contentslp_link { display: flex; flex-wrap: wrap; gap: 24px 16px; font-family: 'Noto Sans JP', sans-serif; }
.contentslp_link li { width: calc((100% - 3 * 16px) / 4); text-align: center; background: #f2f2f2; padding: 20px; box-sizing: border-box; display: flex; flex-direction: column; }
/* 3列 */
.contentslp_link.contentslp_link--odd li { width: calc((100% - 2 * 16px) / 3); }
.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,
.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+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; -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; }

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

.comp-gender-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-gender-menu-list.comp-gender-menu-list--top {
  margin-top: 96px;
  margin-bottom: 0;
}
.comp-gender-menu-list.comp-gender-menu-list--bottom {
  margin: 40px 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 (PC)
============================================================ */

.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: 1000px;
  margin: 0 auto;
}
.comp-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;
  box-sizing: border-box;
  transition: opacity 0.2s;
}
.comp-fixed-menu__gender-select:hover {
  opacity: 0.8;
}
.comp-fixed-menu__gender-select::after {
  position: absolute;
  top: 16px;
  right: 16px;
  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: 49px;
  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: border-box;
  width: 158px;
  height: 41px;
  font-size: 14px;
  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: -32px;
  display: inline-block;
  width: 12px;
  height: 12px;
  content: "";
  background-color: #333;
  border-radius: 6px;
  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;
  width: 100%;
  height: 59px;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
  border-right: 1px solid var(--color-border-primary);
}
.comp-fixed-menu__contents-item {
  flex: 1;
  min-width: 120px;
}
.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: 14px;
  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;
}
/* border-right は ul コンテナに移動済み（last-child が hidden になっても消えないよう対策） */
.comp-fixed-menu__contents-item:hover .comp-fixed-menu__contents-link:link,
.comp-fixed-menu__contents-item:hover .comp-fixed-menu__contents-link:visited {
  background-color: var(--color-background-gray-default);
  text-decoration: none;
}
.comp-fixed-menu__contents-link:link:hover,
.comp-fixed-menu__contents-link:visited:hover {
  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 — PC
============================================================ */

.comp-modal__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 480px;
  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-16);
  text-decoration: none;
}

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

.comp-modal__trigger:hover {
  background-color: var(--color-button-bg-secondary-hover);
}

.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: 16px;
  right: 16px;
  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: 1000px;
  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: 8px;
}

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

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

.comp-modal__body {
  padding: 64px 20px;
  background: #fff;
}

.comp-modal__footer {
  display: flex;
  justify-content: center;
  padding: 20px 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:hover {
  background-color: var(--color-button-bg-secondary-hover);
}

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

/* ============================================================
   event-close
============================================================ */
.event-close { text-align: center; padding: 80px 0; }
.event-close__header { margin-bottom: 80px; }
.event-close__title { font-family: var(--fontFamily-Noto, "Noto Sans JP", sans-serif); font-size: 32px; font-weight: 700; color: var(--Neutrals-MainText, #393E44); margin: 0 0 16px; line-height: 150%; }
.event-close__title br { display: none; }
.event-close__text { font-family: var(--fontFamily-Noto, "Noto Sans JP", sans-serif); font-size: 20px; 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; width: 100%; max-width: 1000px; margin: 0 auto; box-sizing: border-box; border-radius: 4px; }
.event-close__desc { font-family: var(--fontFamily-Noto, "Noto Sans JP", sans-serif); font-size: 18px; color: var(--Neutrals-MainText, #393E44); margin: 0 0 32px; line-height: 150%; }
.event-close__desc br { display: none; }
.event-close__logo { display: block; width: 35%; max-width: 200px; margin: 0 auto 24px; }

/* ============================================================
   画像リンク ホバー — PC
============================================================ */
.column4_topics a img,
.useful_service a img,
.l-container a img {
  transition: opacity 0.2s;
}
.column4_topics a:hover img,
.useful_service a:hover img,
.l-container a:hover img {
  opacity: 0.7;
}
