/* ===================================
   CSS Variables
   =================================== */
:root {
  --primary: #d71815;
  --primary-dark: #ac1311;
  --primary-light: #ed1a17;
  --text: #141414;
  --text-light: #686868;
  --bg: #ffffff;
  --bg-gray: #f5f5f5;
  --border: #e5e5e5;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --header-height: 70px;
  --transition: 0.3s ease;
}

/* ===================================
   Reset & Base
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===================================
   Utility
   =================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.logo-sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-contact {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  border-bottom: 3px solid var(--primary-dark);
}

.nav-contact::after {
  display: none !important;
}

.nav-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-simulation {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   Hero
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 20px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #f5f5f5 100%);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: linear-gradient(135deg, rgba(215, 24, 21, 0.05) 0%, rgba(215, 24, 21, 0.02) 100%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  width: 100%;
  animation: fadeInUp 0.8s ease;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-catch {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(215, 24, 21, 0.2);
  z-index: -1;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-bottom: 4px solid var(--primary-dark);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin: 8px auto 0;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===================================
   Notice Bar
   =================================== */
.notice-bar {
  background: var(--primary);
  padding: 16px 0;
}

.notice-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.notice-label {
  background: var(--white);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.notice-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===================================
   Section Common
   =================================== */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.section-header-light .section-label,
.section-header-light .section-title,
.section-header-light .section-desc {
  color: var(--white);
}

/* ===================================
   Service
   =================================== */
.service {
  background: var(--bg-gray);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(215, 24, 21, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.service-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-time {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(215, 24, 21, 0.1);
  border-radius: 50px;
}

.service-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================================
   Features
   =================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-gray);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================
   Flow
   =================================== */
.flow {
  background: var(--bg-gray);
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.flow-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.flow-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.flow-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.flow-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 24px;
}

.flow-arrow svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  opacity: 0.5;
}

/* ===================================
   Area
   =================================== */
.area-content {
  text-align: center;
}

.area-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.area-tag {
  display: inline-block;
  padding: 12px 24px;
  background: var(--bg-gray);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.area-note {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===================================
   Shop
   =================================== */
.shop {
  background: var(--bg-gray);
}

.shop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.shop-info {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.shop-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-table tr {
  border-bottom: 1px solid var(--border);
}

.shop-table tr:last-child {
  border-bottom: none;
}

.shop-table th,
.shop-table td {
  padding: 16px 0;
  text-align: left;
  vertical-align: top;
}

.shop-table th {
  width: 120px;
  font-weight: 700;
  color: var(--text);
  font-size: 0.875rem;
}

.shop-table td {
  font-size: 0.9375rem;
}

.shop-table td a {
  color: var(--primary);
  font-weight: 700;
}

.shop-table td a:hover {
  text-decoration: underline;
}

.shop-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-gray);
  color: var(--text-light);
}

.map-placeholder p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.map-placeholder span {
  font-size: 0.875rem;
}

/* ===================================
   Contact
   =================================== */
.contact {
  background: var(--primary);
  color: var(--white);
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-card {
  text-align: center;
  padding: 32px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0.9;
}

.contact-tel {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-tel:hover {
  opacity: 0.8;
}

.contact-mail {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-mail:hover {
  opacity: 0.8;
}

.contact-time {
  font-size: 0.875rem;
  opacity: 0.8;
}

.contact-divider {
  position: relative;
  padding: 0 20px;
}

.contact-divider span {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 60px 0 100px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.footer-catch {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.5;
  text-align: center;
}

/* ===================================
   Fixed Navigation (Mobile)
   =================================== */
.fixed-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.fixed-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.fixed-nav-item svg {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  fill: currentColor;
}

.fixed-nav-item:hover,
.fixed-nav-item:active {
  background: var(--bg-gray);
}

.fixed-nav-call {
  background: var(--primary);
  color: var(--white);
}

.fixed-nav-call:hover,
.fixed-nav-call:active {
  background: var(--primary-dark);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  .service-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-steps {
    flex-wrap: wrap;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    flex: 0 0 calc(33.333% - 16px);
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding: 80px 24px 40px;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-contact {
    margin-top: 16px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    flex: 0 0 100%;
  }

  .shop-content {
    grid-template-columns: 1fr;
  }

  .shop-info {
    padding: 24px;
  }

  .shop-table th {
    width: 100px;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-divider {
    display: none;
  }

  .footer {
    padding-bottom: 120px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .fixed-nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .hero-tag {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .contact-tel {
    font-size: 1.5rem;
  }

  .area-list {
    flex-direction: column;
    align-items: center;
  }

  .area-tag {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}

/* ===================================
   Simulation Section
   =================================== */
.simulation {
  background: var(--bg-gray);
}

.simulator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

.simulator-input {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simulator-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
}

.step-content {
  padding: 24px;
}

.step-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.simulator-select {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23686868'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
}

.simulator-select:focus {
  outline: none;
  border-color: var(--primary);
}

.simulator-select:hover {
  border-color: var(--primary);
}

.repair-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.repair-option {
  cursor: pointer;
}

.repair-option input {
  display: none;
}

.repair-option-inner {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.repair-option:hover .repair-option-inner {
  border-color: var(--primary);
  background: rgba(215, 24, 21, 0.02);
}

.repair-option input:checked + .repair-option-inner {
  border-color: var(--primary);
  background: rgba(215, 24, 21, 0.05);
}

.repair-icon {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-gray);
  border-radius: 50%;
  transition: var(--transition);
}

.repair-option input:checked + .repair-option-inner .repair-icon {
  background: var(--primary);
  color: var(--white);
}

.repair-icon svg {
  width: 24px;
  height: 24px;
}

.repair-name {
  font-size: 0.9375rem;
  font-weight: 700;
  align-self: end;
}

.repair-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  align-self: start;
}

.simulator-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
}

.simulator-arrow svg {
  width: 48px;
  height: 48px;
  fill: var(--primary);
  opacity: 0.3;
}

.simulator-result {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.result-header {
  padding: 20px 24px;
  background: #EEF8FF;
  border-bottom: 1px solid #D0E8F7;
}

.result-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1976D2;
}

.result-content {
  padding: 24px;
  min-height: 200px;
}

.result-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  color: var(--text-light);
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.result-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.result-item:last-child {
  border-bottom: none;
}

.result-item-name {
  font-size: 0.875rem;
  color: var(--text);
}

.result-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.result-item-na {
  font-size: 0.875rem;
  color: var(--text-light);
}

.result-device {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 16px;
  background: rgba(215, 24, 21, 0.1);
  border-radius: 50px;
  margin-bottom: 16px;
  display: inline-block;
}

.result-total {
  padding: 24px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.total-label {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.total-price {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.total-yen {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 4px;
}

.total-note {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 12px;
}

.result-cta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-cta .btn {
  width: 100%;
  justify-content: center;
}

.simulator-notes {
  margin-top: 40px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.simulator-notes h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.simulator-notes ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.simulator-notes li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}

.simulator-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Simulation Responsive */
@media (max-width: 1024px) {
  .simulator {
    grid-template-columns: 1fr;
  }

  .simulator-arrow {
    padding: 0;
    transform: rotate(90deg);
  }

  .simulator-result {
    position: static;
  }
}

@media (max-width: 768px) {
  .step-header {
    padding: 16px 20px;
  }

  .step-content {
    padding: 20px;
  }

  .repair-option-inner {
    padding: 12px;
  }

  .result-content {
    padding: 20px;
  }

  .total-price {
    font-size: 2rem;
  }
}
