.ai-report-demo {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

.report-header {
  text-align: center;
  margin-bottom: 3rem;
}

.report-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.report-title-text {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #f59e0b;
}

.blue-icon {
  display: inline-block;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.9));
  }
}

.ai-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  color: white !important;
  -webkit-text-fill-color: white !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-fill-color: white !important;
  animation: glow-pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.report-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* 機能ハイライト */
.feature-highlight {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.highlight-content {
  flex: 1;
}

.highlight-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.highlight-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* 使い方ステップ */
.usage-steps {
  padding: 2rem;
  margin-bottom: 2rem;
}

.steps-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.step-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
}

.step-arrow {
  font-size: 1.5rem;
  color: #8b5cf6;
  font-weight: 700;
}

/* 住所入力フォーム */
.analysis-input {
  padding: 2rem;
  margin-bottom: 2rem;
}

.input-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.input-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-group-full,
.input-group-half,
.input-group-third {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group-full {
  flex: 1;
}

.input-group-half {
  flex: 1;
}

.input-group-third {
  flex: 1;
}

.input-group-full label,
.input-group-half label,
.input-group-third label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.address-input,
select.address-input {
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  color: white;
  transition: all 0.3s ease;
}

.address-input:focus,
select.address-input:focus {
  outline: none;
  border-color: #f59e0b;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.address-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

select.address-input option {
  background: #1e293b;
  color: white;
}

.analyze-button {
  width: 100%;
  padding: 1.125rem 2rem;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.analyze-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.analyze-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button-icon {
  font-size: 1.25rem;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.input-hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 1rem 0 0;
}

.input-hint strong {
  color: #f59e0b;
}

/* 分析中ステータス */
.analyzing-status {
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.status-animation {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 4px solid #3b82f6;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

.pulse-ring.delay-1 {
  animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    width: 40px;
    height: 40px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

.status-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}

.status-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.status-step {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  animation: fadeInLeft 0.5s ease-out forwards;
  text-align: left;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* タブ */
.report-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.report-tab {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(45, 55, 72, 0.98));
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.report-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.report-tab:hover::before {
  left: 100%;
}

.report-tab:hover {
  background: linear-gradient(135deg, rgba(45, 55, 72, 0.98), rgba(60, 70, 87, 0.98));
  border-color: rgba(245, 158, 11, 0.6);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.report-tab.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(251, 191, 36, 0.25));
  border-color: #fbbf24;
  border-width: 3px;
  color: #fbbf24;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 158, 11, 0.5), inset 0 0 20px rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}

.tab-icon {
  font-size: 1.25rem;
}

/* レポートコンテンツ */
.report-content {
  padding: 2.5rem;
  animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 2rem;
}

.content-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 2rem;
  text-align: center;
}

.report-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.data-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.data-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.data-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.data-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.data-trend {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
}

.data-trend.positive {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.data-trend.neutral {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

/* 物件詳細 */
.property-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.detail-value {
  font-weight: 700;
  color: white;
}

/* 価値評価 */
.value-assessment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.assessment-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
  border-radius: 12px;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.assessment-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-weight: 600;
}

.assessment-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f59e0b;
}

.report-insight {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.insight-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
}

.insight-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.report-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ai-powered {
  font-weight: 700;
  color: #3b82f6;
}

/* 次のアクション */
.next-action {
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.action-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.action-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.action-button {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
}

/* アニメーション */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.4);
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .ai-report-demo {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .report-title {
    font-size: 1.75rem;
    gap: 0.5rem;
  }

  .ai-badge {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }

  .feature-highlight {
    flex-direction: column;
    padding: 1.5rem;
  }

  .highlight-icon {
    font-size: 2.5rem;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .input-row {
    flex-direction: column;
  }

  .analyze-button {
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .report-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .input-group {
    width: 100%;
    max-width: 100%;
  }

  .input-field {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .report-data-grid {
    grid-template-columns: 1fr;
  }

  .tab-label {
    display: none;
  }

  .data-value {
    font-size: 1.5rem;
  }

  .property-details {
    padding: 1rem;
  }

  .detail-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}


/* プレミアムサービス告知 */
.premium-services-notice {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 15px;
}

.premium-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 15px;
  text-align: center;
}

.premium-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.premium-feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.premium-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.premium-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.premium-feature-content {
  flex: 1;
}

.premium-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 8px;
}

.premium-feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.premium-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.premium-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.premium-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.premium-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .premium-features {
    grid-template-columns: 1fr;
  }

  .premium-title {
    font-size: 1.3rem;
  }

  .premium-description {
    font-size: 0.95rem;
  }

  .premium-cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* 物件情報入力フォーム */
.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.input-label .required {
  color: #f59e0b;
  margin-left: 0.25rem;
}

.input-field {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  color: white;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.input-field:focus {
  outline: none;
  border-color: #f59e0b;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-field:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

select.input-field option {
  background: #1e293b;
  color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .input-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* 市場分析レポート */
.market-analysis {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

/* テキストベースのレポート形式 */
.report-text-content {
  padding: 1.5rem;
}

.report-section-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-section-block:last-child {
  border-bottom: none;
}

.report-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.report-text-line {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.25rem 0;
  line-height: 1.6;
}

.report-icon-line {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

/* カード形式の市場分析レポート */
.market-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.market-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 158, 11, 0.5);
}

.market-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.market-card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.market-card-change {
  font-size: 1rem;
  font-weight: 600;
}

.market-card-change.positive {
  color: #10b981;
}

.market-card-change.negative {
  color: #ef4444;
}

.market-comment {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.comment-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.comment-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.data-source {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.data-source p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .market-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* 価値評価レポート */
.valuation-analysis {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.price-estimate {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
  border-radius: 12px;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.estimate-main {
  text-align: center;
}

.estimate-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  text-align: center;
}

.estimate-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  text-align: center;
}

.estimate-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.price-breakdown {
  margin-bottom: 2rem;
}

.breakdown-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
}

.breakdown-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.breakdown-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.valuation-factors {
  margin-bottom: 2rem;
}

.factors-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.factors-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.factor-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.4);
  border-radius: 8px;
  text-align: left;
}

.factor-icon {
  font-size: 1.25rem;
  color: #10b981;
  flex-shrink: 0;
}

.factor-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

/* 将来予測レポート */
.forecast-analysis {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.forecast-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.forecast-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
  border-radius: 12px;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.forecast-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  text-align: center;
}

.forecast-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  text-align: center;
}

.forecast-change {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.forecast-change.positive {
  color: #10b981;
}

.forecast-change.negative {
  color: #ef4444;
}

.forecast-insights {
  margin-bottom: 2rem;
}

.insights-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.insights-content {
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.4);
  border-radius: 12px;
  text-align: left;
}

.rationale-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rationale-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #f59e0b;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.rationale-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #fbbf24;
  transform: translateX(4px);
}

.rationale-icon {
  color: #f59e0b;
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.rationale-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.insight-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-align: center;
}

.insight-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.investment-advice {
  margin-bottom: 2rem;
}

.advice-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.advice-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advice-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  text-align: left;
}

.advice-item.positive {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.advice-item.negative {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.advice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.advice-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .breakdown-grid {
    grid-template-columns: 1fr;
  }

  .forecast-timeline {
    grid-template-columns: 1fr;
  }
}

/* ロードマップセクション */
.roadmap-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(37, 99, 235, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
}

.roadmap-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.roadmap-visual {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.roadmap-image {
  width: 100%;
  height: auto;
  display: block;
}

.roadmap-cta {
  text-align: center;
}

.roadmap-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.roadmap-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .roadmap-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .roadmap-title {
    font-size: 1.2rem;
    flex-direction: column;
  }

  .roadmap-cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .roadmap-section {
    padding: 1rem;
  }

  .roadmap-title {
    font-size: 1.1rem;
  }

  .roadmap-cta-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}
/* 価格推移グラフのスタイル */
.price-trend-chart {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.chart-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .chart-container {
    height: 250px;
  }
  
  .chart-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .chart-container {
    height: 200px;
  }
}
/* 類似物件比較スタイル */

.similar-properties-analysis {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 1rem;
}

.loading-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
}

.error-text {
  color: #ff6b6b;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

.retry-button {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.retry-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.similar-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.stat-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.stat-value {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.similar-properties-list {
  margin-top: 2rem;
}

.list-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.property-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.property-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.property-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(102, 126, 234, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.property-number {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.property-type {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.property-body {
  padding: 1.25rem;
}

.property-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.info-value {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

.property-price {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.price-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.price-value {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.price-unit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.unit-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.unit-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
}

.property-footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.no-properties {
  text-align: center;
  padding: 4rem 2rem;
}

.no-properties p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.no-properties-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.comparison-insight {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.insight-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.insight-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.insight-warning {
  color: #ffd93d;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(255, 217, 61, 0.1);
  border-radius: 8px;
  border-left: 4px solid #ffd93d;
  margin: 0;
}

.insight-positive {
  color: #6bcf7f;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(107, 207, 127, 0.1);
  border-radius: 8px;
  border-left: 4px solid #6bcf7f;
  margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .similar-properties-analysis {
    padding: 1.5rem;
  }
  
  .similar-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .price-value {
    font-size: 1.3rem;
  }
}
/* 価格推移グラフスタイル */

.price-trend-analysis {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.trend-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.summary-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.summary-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.summary-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.summary-value {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.summary-value.trend-rising {
  color: #6bcf7f;
}

.summary-value.trend-stable {
  color: #ffd93d;
}

.summary-value.trend-declining {
  color: #ff6b6b;
}

.summary-value.positive {
  color: #6bcf7f;
}

.summary-value.negative {
  color: #ff6b6b;
}

.trend-chart-container {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.chart-wrapper {
  height: 400px;
  position: relative;
}

.trend-data-table {
  margin-top: 2rem;
}

.table-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.table-wrapper {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.data-table thead {
  background: rgba(102, 126, 234, 0.2);
}

.data-table th {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table td {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.trend-insight {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.insight-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.insight-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.insight-recommendation {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border-left: 4px solid rgba(102, 126, 234, 1);
  margin: 0;
}

.highlight-positive {
  color: #6bcf7f;
  font-weight: 700;
}

.highlight-neutral {
  color: #ffd93d;
  font-weight: 700;
}

.highlight-negative {
  color: #ff6b6b;
  font-weight: 700;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .price-trend-analysis {
    padding: 1.5rem;
  }
  
  .trend-summary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .summary-value {
    font-size: 1.5rem;
  }
  
  .chart-wrapper {
    height: 300px;
  }
  
  .table-wrapper {
    overflow-x: scroll;
  }
  
  .data-table {
    min-width: 600px;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}
