/* ========================================
   Factsheet Japanese Version Styles
   自治体・観光庁・DMO向け概要資料
   ======================================== */

/* ----------------------------------------
   Import Base Factsheet Styles
   ---------------------------------------- */
/* Base styles are inherited from factsheet.css */

/* ----------------------------------------
   Japanese-specific Overrides
   ---------------------------------------- */

/* Font Family for Japanese */
.factsheet-ja {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
}

/* Hook Text - Formal Style */
.factsheet-hook-ja {
  font-size: 0.8rem;
  color: var(--fs-text);
  margin: 0 0 1rem;
  line-height: 1.6;
  text-align: left;
  font-style: normal;
  padding: 0.5rem 0.75rem;
  background: #fafafa;
  border-left: 3px solid var(--fs-accent);
}

.factsheet-hook-ja strong {
  color: var(--fs-accent);
  font-weight: 600;
}

/* Section Headers in Japanese */
.factsheet-ja .factsheet-section h2 {
  text-transform: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* Experience Flow - Japanese Version */
.factsheet-flow-ja {
  padding-left: 1.2rem;
}

.factsheet-flow-ja li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.factsheet-flow-ja li strong {
  color: var(--fs-text);
  font-size: 0.75rem;
}

.factsheet-flow-ja .flow-detail {
  display: block;
  font-size: 0.7rem;
  color: var(--fs-muted);
  line-height: 1.4;
  margin-top: 0.1rem;
}

/* Ripple Effect Section */
.factsheet-ripple-effect {
  background: #fefef8;
  padding: 0.5rem 0.6rem;
  border-radius: 3px;
  border-left: 3px solid var(--fs-accent);
}

.factsheet-ripple-effect h2 {
  border-bottom: none;
  margin-bottom: 0.3rem;
}

.factsheet-effect-list {
  margin: 0.3rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.75rem;
}

.factsheet-effect-list li {
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.factsheet-effect-list li strong {
  color: var(--fs-text);
}

.factsheet-effect-list .effect-detail {
  display: block;
  font-size: 0.7rem;
  color: var(--fs-muted);
  line-height: 1.4;
  margin-top: 0.1rem;
}

/* Table Adjustments for Japanese */
.factsheet-ja .factsheet-table th {
  width: 22%;
  font-size: 0.72rem;
}

.factsheet-ja .factsheet-table td {
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Compact Text Adjustments */
.factsheet-ja .factsheet-about {
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: justify;
}

.factsheet-ja .factsheet-compact {
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Contact Section */
.factsheet-ja .factsheet-contact {
  background: var(--fs-light-bg);
  padding: 0.5rem 0.6rem;
  border-radius: 3px;
}

/* Mobile Adjustments */
@media (max-width: 700px) {
  .factsheet-hook-ja {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  
  .factsheet-ja .factsheet-table th {
    width: 28%;
  }
  
  .factsheet-flow-ja .flow-detail,
  .factsheet-effect-list .effect-detail {
    font-size: 0.68rem;
  }
}

/* Print Styles */
@media print {
  .factsheet-ja {
    font-size: 10pt;
  }
  
  .factsheet-ja .factsheet-section h2 {
    font-size: 11pt;
  }
  
  .factsheet-hook-ja {
    background: #f5f5f5;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  
  .factsheet-ripple-effect {
    background: #fefef8;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

