@charset "UTF-8";

/* ページ全体 */
.main.simulator {
  padding: 80px 18px 100px;
  background-color: var(--bg-orange);
}

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

/* ページヘッダー */
.sim__page-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.sim__page-en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--brand-orange);
  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(--brand-orange);
  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 {
  background: #fff8cc;
  color: #7a6200;
  border: 1px solid #ffe600;
}

.sim-badge--green {
  background: #e8f8ee;
  color: #1a6b3a;
  border: 1px solid var(--brand-green, #2ecc71);
}

.sim-badge--orange {
  background: #fff3e8;
  color: var(--brand-orange);
  border: 1px solid var(--brand-orange);
}

/* フォームグリッド */
.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(--brand-orange);
}

.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: #fff8f0;
  border-left: 3px solid var(--brand-orange);
  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: 4px;
  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, #ff9220 0%, var(--brand-orange) 55%, #e85a00 100%);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.35);
  position: relative;
  z-index: 1;
}

.sim-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 122, 0, 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(--brand-orange);
}

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

.sim-peak-card {
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  border: 2px solid var(--brand-orange);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(232, 93, 4, 0.12);
}

.sim-peak-card__market {
  position: relative;
  text-align: center;
  padding: 22px 18px 28px;
  background: linear-gradient(135deg, #fff8f0 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(232, 93, 4, 0.18));
}

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

.sim-market__num.is-counting {
  color: #ff9220;
}

.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(255, 138, 31, 0.45);
  }
}

@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 #f0dcc8);
}

.sim-peak-card__pitch {
  padding: 18px 18px 16px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #f0dcc8;
}

.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(--brand-orange);
  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: #7a4a00;
  background: #fff8e6;
  border: 1px solid #ffd699;
  border-radius: 999px;
}

.sim-peak-card__cases {
  padding: 14px 14px 16px;
  background: #fff;
  border-top: 1px solid #f0dcc8;
}

.sim-peak-card__cases-lead {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  color: #444;
}

.sim-cases-slider__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 4px 10px;
  margin: 0 -4px;
  align-items: stretch;
}

.sim-cases-slider__track::-webkit-scrollbar {
  display: none;
}

.sim-cases-slider__slide {
  flex: 0 0 86%;
  scroll-snap-align: center;
  min-width: 0;
}

.sim-cases-slider__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.sim-cases-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.sim-cases-slider__dot.is-active {
  background: var(--brand-orange);
}

.sim-price-case--compact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 188px;
  padding: 14px 14px 12px;
  text-decoration: none;
  color: inherit;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sim-price-case--compact.sim-price-case--link:hover {
  border-color: #ffc999;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.1);
}

.sim-price-case--compact.sim-price-case--link:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

.sim-price-case--compact .sim-price-case__head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.sim-price-case--compact .sim-price-case__media {
  flex-shrink: 0;
  width: 76px;
  height: 57px;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.sim-price-case--compact .sim-price-case__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sim-price-case--compact .sim-price-case__info {
  flex: 1;
  min-width: 0;
}

.sim-price-case--compact .price-case__name {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.sim-price-case--compact .price-case__type {
  font-size: 10px;
}

.sim-price-case--compact .price-case__bar {
  margin-bottom: 10px;
  gap: 8px;
}

.sim-price-case--compact .price-case__other-lbl,
.sim-price-case--compact .price-case__ours-lbl {
  font-size: 10px;
  margin-bottom: 4px;
}

.sim-price-case--compact .price-case__other-val {
  font-size: 17px;
}

.sim-price-case--compact .price-case__ours-val {
  font-size: 20px;
}

.sim-price-case--compact .price-case__arrow {
  width: 20px;
  height: 20px;
  animation: simPriceCaseArrowNudge 1.6s ease-in-out infinite;
}

.sim-price-case--compact .price-case__save {
  font-size: 12px;
  padding: 6px 0 4px;
}

.sim-price-case--compact .sim-price-case__link-hint {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  text-align: right;
  color: var(--brand-orange);
}

.sim-peak-card__jump-form {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #4b9cf5 0%, #2563eb 52%, #1d4ed8 100%);
  border: 2px solid #2563eb;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sim-peak-card__jump-form-text {
  position: relative;
  z-index: 1;
}

.sim-peak-card__jump-arrow {
  display: inline-block;
  margin-left: 2px;
  animation: simJumpArrowBounce 1.2s ease-in-out infinite;
}

.sim-peak-card__jump-form .cta-shine {
  z-index: 2;
  pointer-events: none;
}

.sim-peak-card__jump-form .cta-shine::after {
  animation: ctaShineSweep 3.2s ease-in-out infinite;
  animation-delay: 0.4s;
  opacity: 0.55;
}

.sim-peak-card__jump-form:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

@keyframes simJumpArrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes simPriceCaseArrowNudge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.65;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

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

.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(--brand-orange);
  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(232, 93, 4, 0.35);
  border-color: var(--brand-orange);
}

.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: 6px;
  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: 6px;
  background: linear-gradient(180deg, #ffa23a 0%, #ff7a00 55%, #e85a00 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 #b34400,
    0 6px 16px -4px rgba(255, 100, 0, 0.4);
  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: #fff8f0;
  border-top: 1px solid #f0dcc8;
}

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

.sim-peak-card__tel-btn {
  width: 100%;
  max-width: 100%;
  height: 58px;
  border-radius: 8px;
  font-size: 18px;
}

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

.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(--brand-orange);
  border: 2px solid var(--brand-orange);
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
}

.sim-peak-card__tel-link--outline:hover {
  background: #fff8f0;
  color: var(--brand-orange);
}

.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(--brand-orange);
}

.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(--brand-orange);
  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-peak-card__jump-form .cta-shine::after {
    animation: none !important;
  }

  .sim-peak-card__jump-arrow,
  .sim-price-case--compact .price-case__arrow {
    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(--brand-orange);
  background: #fff;
  border: 2px solid var(--brand-orange);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

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

@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__cases {
    padding: 12px 12px 14px;
  }

  .sim-cases-slider__slide {
    flex-basis: 88%;
  }

  .sim-cases-slider__track {
    min-height: 196px;
  }

  .sim-price-case--compact {
    min-height: 192px;
  }

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

@media (min-width: 769px) {
  .sim-cases-slider__slide {
    flex-basis: 100%;
  }
}
