@charset "UTF-8";

/* ページ全体
   v2 (page-v2.php) に配色トーンを合わせる。
   赤(--red)は送信ボタンのみに使い、それ以外の強調は
   すべてゴールド(--gold)に統一する。 */
.main.simulator {
  --bg-cream: #f2efe9;
  --red: #d8142c;
  --red-dark: #a5091c;
  --gold: #d4af37;
  --gold-dark: #a67c1a;

  padding: 80px 18px 100px;
  background-color: var(--bg-cream);
}

.sim-container {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 40px 64px;
  border-radius: 14px;
}

/* ページヘッダー */
.sim__page-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-line, #dcdcdc);
}

.sim__page-en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.sim__page-ja {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.sim__lead {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 8px;
  text-align: center;
}

.sim__lead-note {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 16px;
  text-align: center;
  padding: 8px 12px;
  background: #f8f8f8;
  border-radius: 4px;
}

.sim__lead-strong {
  font-size: 15px;
  color: #222;
}

.sim__lead-accent {
  color: var(--gold-dark);
  font-weight: 700;
}

/* バッジ */
.sim-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.sim-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  line-height: 1.3;
}

.sim-badge--yellow,
.sim-badge--green,
.sim-badge--orange {
  background: #faf5e9;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
}

/* フォームグリッド */
.sim-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .sim-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sim-field {
  margin-bottom: 0;
}

.sim-field--full {
  grid-column: 1 / -1;
}

.sim-field__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #222;
}

.sim-field__note {
  font-size: 11px;
  line-height: 1.5;
  color: #888;
  margin-bottom: 6px;
}

/* プルダウン共通 */
.sim-select {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
}

.sim-select:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.sim-hint {
  margin-top: 6px;
  font-size: 11px;
  color: #666;
  line-height: 1.5;
  padding: 8px 10px;
  background: #f8f8f8;
  border-radius: 4px;
}

/* 坪数（コンパクト） */
.sim-tsubo--compact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sim-tsubo__range {
  width: 100%;
  accent-color: var(--gold-dark);
}

.sim-tsubo__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-tsubo__input {
  width: 64px;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.sim-tsubo__unit {
  font-size: 14px;
  font-weight: 600;
}

.sim-tsubo__sqm {
  font-size: 12px;
  color: #666;
  margin-left: auto;
}

/* 信頼訴求（フォーム下） */
.sim-trust {
  margin-top: 20px;
  padding: 14px 16px;
  background: #faf5e9;
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.sim-trust__text {
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 4px;
}

.sim-trust__sub {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* エラー */
.sim-error {
  padding: 10px 14px;
  margin-top: 16px;
  background: #fff0f0;
  border: 1px solid #f44;
  border-radius: 4px;
  color: #c00;
  font-size: 13px;
  font-weight: 600;
}

/* 送信ボタン（唯一の赤＝一番押してほしいアクション） */
.sim-submit-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 16px;
}

.sim-submit-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}

.sim-submit-wrapper .cta-shine {
  z-index: 3;
  pointer-events: none;
}

.sim-submit-wrapper .cta-shine::after {
  animation: ctaShineSweep 3.6s ease-in-out infinite;
  animation-delay: 1.2s;
  opacity: 0.45;
}

.sim-submit {
  display: block;
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(216, 20, 44, 0.35);
  position: relative;
  z-index: 1;
}

.sim-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(216, 20, 44, 0.45);
}

.sim-submit:active {
  transform: translateY(0);
}

.sim-submit-note {
  margin-top: 8px;
  font-size: 11px;
  color: #888;
  text-align: center;
}

/* 結果エリア */
#sim-result-market,
.sim-lead-form,
#sim-lead-form {
  scroll-margin-top: 96px;
}

.sim-result {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.sim-result__section {
  margin-bottom: 24px;
}

.sim-result__heading {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.sim-summary-collapse {
  margin-bottom: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

.sim-summary-collapse__summary {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  list-style: none;
}

.sim-summary-collapse__summary::-webkit-details-marker {
  display: none;
}

.sim-summary-collapse__summary::after {
  content: '＋';
  float: right;
  font-weight: 700;
  color: var(--gold-dark);
}

.sim-summary-collapse[open] .sim-summary-collapse__summary::after {
  content: '－';
}

.sim-summary-collapse__body {
  margin: 0;
  padding: 0 14px 12px;
  border-top: 1px solid #eee;
}

.sim-summary-collapse__body .sim-summary {
  margin-top: 10px;
}

.sim-summary {
  background: #f8f8f8;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.9;
}

.sim-summary p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.sim-result__section--peak {
  margin-bottom: 28px;
}

/* 結果カード：囲み線をやめ、v2のモーダル同様に影だけで浮かせる */
.sim-peak-card {
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.sim-peak-card__market {
  position: relative;
  text-align: center;
  padding: 22px 18px 28px;
  background: linear-gradient(135deg, #faf5e9 0%, #fff 100%);
}

.sim-peak-card__market.is-revealed .sim-market__label {
  animation: simMarketFadeUp 0.45s ease-out both;
}

.sim-peak-card__market.is-revealed .sim-market__total {
  animation: simMarketFadeUp 0.55s ease-out 0.08s both;
}

.sim-peak-card__market.is-emphasized .sim-market__total {
  filter: drop-shadow(0 2px 10px rgba(191, 161, 91, 0.28));
}

.sim-market__num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  vertical-align: baseline;
}

.sim-market__num.is-counting {
  color: var(--gold);
}

.sim-market__num.is-settled {
  animation: simMarketNumLive 2.4s ease-in-out infinite;
}

.sim-market__num.is-settled + .sim-market__sep + .sim-market__num.is-settled {
  animation-delay: 0.35s;
}

.sim-market__total.is-live .sim-market__sep {
  animation: simMarketSepPulse 2.4s ease-in-out infinite;
}

.sim-market__tsubo {
  font-size: 12px;
  color: #666;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sim-market__tsubo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes simMarketFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes simMarketNumLive {
  0%,
  100% {
    transform: scale(1);
    text-shadow: none;
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 14px rgba(191, 161, 91, 0.5);
  }
}

@keyframes simMarketSepPulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

.sim-peak-card__chevron {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.08));
}

.sim-peak-card__pitch {
  padding: 18px 18px 16px;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--gray-line, #dcdcdc);
}

.sim-peak-card__pitch-text {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
  color: #333;
}

.sim-peak-card__pitch-text strong {
  color: var(--gold-dark);
  font-weight: 800;
}

.sim-peak-card__pitch-em {
  display: inline-block;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  color: #222;
}

.sim-peak-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sim-peak-card__badges li {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gold-dark);
  background: #faf5e9;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.sim-peak-card__form {
  padding: 0 18px 8px;
  background: linear-gradient(180deg, #faf8f4 0%, #fafafa 24px);
  border-top: 1px solid var(--gray-line, #dcdcdc);
}

.sim-peak-card__form-head {
  padding: 16px 0 12px;
  text-align: center;
}

.sim-peak-card__form-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: #222;
  letter-spacing: 0.02em;
}

.sim-peak-card__form-desc {
  margin: 0;
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

.sim-peak-card__form .wpcf7 {
  margin: 0;
}

.sim-peak-card__form form > p {
  margin: 0 0 12px;
}

.sim-peak-card__form form label {
  display: block;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.sim-peak-card__form .sim-field-required,
.sim-peak-card__form .contact__required {
  color: var(--gold-dark);
  font-weight: 700;
}

.sim-peak-card__form input[type="text"],
.sim-peak-card__form input[type="email"],
.sim-peak-card__form input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #222;
}

.sim-peak-card__form input::placeholder,
.sim-peak-card__form textarea::placeholder {
  color: #bbb;
  opacity: 1;
}

.sim-peak-card__form textarea.sim-lead__message {
  color: #bbb;
}

.sim-peak-card__form input:focus {
  outline: 2px solid rgba(191, 161, 91, 0.4);
  border-color: var(--gold);
}

.sim-peak-card__form .sim-lead__message-wrap,
.sim-peak-card__form .sim-lead__message {
  display: none !important;
}

.sim-peak-card__form .contact__policy-agree {
  margin-top: 4px;
}

.sim-peak-card__form .contact__policy-lead {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  color: #888;
}

.sim-peak-card__form .contact__agree {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.sim-peak-card__form .contact__agree input[type="checkbox"] {
  transform: scale(1.15);
  margin-right: 4px;
  vertical-align: middle;
}

.sim-peak-card__form .contact__policy-link {
  color: #888;
  font-weight: 400;
  text-decoration: underline;
}

.sim-peak-card__form .wpcf7-list-item-label {
  font-size: 12px;
}

.sim-lead__submit-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 4px;
}

.sim-lead__submit-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}

.sim-lead__submit-wrapper .cta-shine {
  z-index: 3;
  pointer-events: none;
}

.sim-lead__submit-wrapper .cta-shine::after {
  animation: ctaShineSweep 3.6s ease-in-out infinite;
  animation-delay: 1.8s;
  opacity: 0.5;
}

.sim-peak-card__form .sim-lead__submit {
  display: block;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 3px 0 var(--red-dark),
    0 6px 16px -4px rgba(216, 20, 44, 0.45);
  transition: filter 0.12s ease;
  position: relative;
  z-index: 1;
}

.sim-peak-card__form .sim-lead__submit:hover {
  filter: brightness(1.05);
}

.sim-peak-card__form .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 4px;
}

.sim-peak-card__form .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 11px;
}

.sim-peak-card__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 16px;
  background: #faf8f4;
  border-top: 1px solid var(--gray-line, #dcdcdc);
}

.sim-peak-card__tel-note {
  margin: 0;
  font-size: 12px;
  color: #666;
}

/* 電話ボタンは cta.css の .cta-btn--tel(オレンジ)をゴールドで上書き。
   cta.css 自体は他ページ共有のため触らない。 */
.sim-peak-card__tel-btn {
  width: 100%;
  max-width: 100%;
  height: 58px;
  border-radius: 8px;
  font-size: 18px;
  background: linear-gradient(180deg, #f3d68a 0%, #d4af37 50%, #a67c1a 100%);
  box-shadow: 0 6px 16px -4px rgba(212, 175, 55, 0.55);
}

.sim-peak-card__tel-btn .cta-tel-num {
  display: block;
  font-size: 20px;
}

.sim-peak-card__tel-btn .cta-tel-lbl {
  font-size: 12px;
  padding: 4px 10px;
  background: transparent;
  box-shadow: none;
}

.sim-peak-card__tel-btn .cta-tel-hours {
  font-size: 10px;
}

.sim-peak-card__tel-link--outline {
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  background: #fff;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
}

.sim-peak-card__tel-link--outline:hover {
  background: #faf5e9;
  color: var(--gold-dark);
}

.sim-lead__fallback {
  font-size: 13px;
  text-align: center;
  color: #666;
}

.sim-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.sim-cta-btns--secondary {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 8px;
}

.sim-cta-btns__lead {
  font-size: 13px;
  text-align: center;
  color: #444;
  line-height: 1.6;
  margin: 0 0 4px;
  width: 100%;
}

.sim-cta-btns__lead strong {
  color: var(--gold-dark);
}

.sim-market__label {
  font-size: 13px;
  font-weight: 700;
  color: #666;
  margin-bottom: 6px;
}

.sim-market__total {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.sim-market__sep {
  font-weight: 700;
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .sim-submit-wrapper .cta-shine::after {
    animation: none !important;
  }

  .sim-lead__submit-wrapper .cta-shine::after {
    animation: none !important;
  }

  .sim-peak-card__tel-btn,
  .sim-peak-card__tel-btn .cta-icon-tel,
  .sim-peak-card__tel-btn .cta-tel-num,
  .sim-peak-card__tel-btn .cta-pulse-ring::before,
  .sim-peak-card__tel-btn .cta-pulse-ring::after,
  .sim-peak-card__tel-btn .cta-shine::after {
    animation: none !important;
  }

  .sim-peak-card__market.is-revealed .sim-market__label,
  .sim-peak-card__market.is-revealed .sim-market__total,
  .sim-market__num.is-settled,
  .sim-market__total.is-live .sim-market__sep {
    animation: none !important;
  }

  .sim-market__tsubo {
    opacity: 1;
    transform: none;
  }
}

.sim-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: #888;
}

.sim-disclaimer p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.sim-reset {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--gold-dark);
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.sim-reset:hover {
  background: #faf5e9;
}

@media screen and (max-width: 768px) {
  .main.simulator {
    padding: 40px 0 60px;
  }

  .sim-container {
    padding: 36px 20px 56px;
    border-radius: 0;
  }

  .sim__page-ja {
    font-size: 22px;
    line-height: 1.4;
  }

  .sim-market__total {
    font-size: 22px;
    line-height: 1.35;
  }

  .sim-peak-card__pitch-em {
    font-size: 15px;
  }

  .sim-peak-card__market {
    padding: 16px 14px 22px;
  }

  .sim-peak-card__pitch {
    padding: 12px 14px 10px;
  }

  .sim-peak-card__pitch-text {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  .sim-peak-card__badges li {
    font-size: 10px;
    padding: 3px 8px;
  }

  .sim-peak-card__form,
  .sim-peak-card__market,
  .sim-peak-card__pitch,
  .sim-peak-card__tel {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* =========================================================
   PROTOTYPE — 「計算中」ローディング演出比較 (削除予定)
   ?variant=1|2|3 の時だけ有効。本番の見た目には影響しない。
   ========================================================= */
.sim-loading {
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  text-align: center;
}

/* --- Variant 1: シンプルスピナー --- */
.sim-loading--v1 {
  padding: 40px 24px 44px;
  background: linear-gradient(135deg, #faf5e9 0%, #fff 100%);
}

.sim-loading__spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  animation: simLoadingSpin 0.9s linear infinite;
}

.sim-loading__text {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin: 0 0 6px;
}

.sim-loading__subtext {
  font-size: 12px;
  color: #888;
  margin: 0;
}

@keyframes simLoadingSpin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Variant 2: プログレスバー + ステップ文言 --- */
.sim-loading--v2 {
  padding: 34px 24px 38px;
  background: linear-gradient(135deg, #faf5e9 0%, #fff 100%);
}

.sim-loading--v2 .sim-loading__title {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin: 0 0 18px;
}

.sim-loading__bar {
  width: 100%;
  max-width: 320px;
  height: 8px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  overflow: hidden;
}

.sim-loading__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 2.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sim-loading__step {
  font-size: 13px;
  color: #a67c1a;
  min-height: 1.4em;
  margin: 0;
  transition: opacity 0.2s ease;
}

/* --- Variant 3: スケルトンプレースホルダー --- */
.sim-loading--v3 .sim-peak-card__market {
  padding: 22px 18px 28px;
  background: linear-gradient(135deg, #faf5e9 0%, #fff 100%);
}

.sim-loading__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.14);
}

.sim-loading__spinner--sm {
  width: 12px;
  height: 12px;
  margin: 0;
  border-width: 2px;
}

.sim-skel {
  border-radius: 8px;
  margin: 14px auto;
  background: linear-gradient(90deg, #ece6d8 25%, #f6f1e4 37%, #ece6d8 63%);
  background-size: 400% 100%;
  animation: simSkelShimmer 1.4s ease infinite;
}

.sim-skel--total {
  width: 78%;
  max-width: 300px;
  height: 30px;
}

.sim-skel--tsubo {
  width: 45%;
  max-width: 170px;
  height: 14px;
}

@keyframes simSkelShimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sim-loading__spinner,
  .sim-skel {
    animation: none !important;
  }
  .sim-loading__bar-fill {
    transition: none !important;
  }
}

/* Prototype switcher bar */
.proto-switcher {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  font-size: 13px;
}

.proto-switcher__label {
  min-width: 168px;
  text-align: center;
}

.proto-switcher button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.proto-switcher button:hover {
  background: rgba(255, 255, 255, 0.28);
}
