/* ヘルプページ専用スタイル */

.help-section {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
}

.section-title i {
  margin-right: 10px;
  color: #3498db;
}

.section-content {
  color: #555;
  line-height: 1.8;
}

.usage-steps {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.usage-steps li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}

.usage-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3498db;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.tips-list {
  list-style: none;
  padding-left: 0;
}

.tips-list li {
  padding-left: 30px;
  position: relative;
}

.tips-list i {
  position: absolute;
  left: 0;
  top: 3px;
}

.accordion-button {
  background-color: #f8f9fa;
  color: #2c3e50;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #e7f1ff;
  color: #0066cc;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #3498db;
}

.accordion-body {
  background-color: #f8f9fa;
  color: #555;
  line-height: 1.6;
}

h1 {
  color: #2c3e50;
  font-weight: bold;
}

h1 i {
  color: #3498db;
  margin-right: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .help-section {
    padding: 20px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .usage-steps li {
    padding-left: 40px;
  }
  
  .usage-steps li::before {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}