/*ヘルプ内設定*/
.help-table {
    border-collapse: collapse; /* セル間にラインを表示 */
    width: 80%; /* 画面幅の80%をテーブルの幅に指定 */
    max-width: 900px; /* 最大幅を900pxに設定（必要に応じて調整） */
    margin: 0 auto; /* 中央に配置 */
  }
  
.help-table th,
.help-table td {
    border: 1px solid black; /* セルに枠線を追加 */
    padding: 8px;
    text-align: center;
  }
  
  .image-container {
    display: flex;
    flex-wrap: wrap;  /* 画面幅が足りない場合は折り返し */
    justify-content: center; /* 中央揃え */
    gap: 20px; /* 画像の間隔 */
  }
  .description-item {
    counter-reset: image-counter;
  }
  .image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%; /* デフォルトは2列 */
  
  }
  .image-caption::before {
    counter-increment: image-counter;
    content: "図" counter(image-counter) ": ";
    font-weight: bold;
    font-size: 14px;
  }
  
  .image-caption {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
  }
  .image-item-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%; 
  
  }
  .image-item img, .image-item-main img {
    max-width: 100%;
    height: auto;
  }
  /* 画面幅が600px以下のとき（スマホ向け）、縦並びにする */
  @media (max-width: 600px) {
    .image-item {
      width: 100%; /* 1列にする */
    }
    .image-item-main {
      width: 100%; /* 1列にする */
    }
  }
  .toggle-item{
    cursor: pointer;
    margin-bottom: 10px;
  }
  .help_list_item {
    max-height: 0; /* 初期状態では高さ0（見えない状態） */
    opacity: 0; /* 初期状態では透明 */
    overflow: hidden; /* コンテンツが溢れないように隠す */
    pointer-events: none; /* 初期状態ではクリックできない */
    transition: max-height 0.8s ease-out, opacity 0.4s ease-out; /* 高さと透明度のアニメーション */
  }
  .expanded .help_list_item {
    max-height: none; /* 展開時に十分な高さを確保（調整可能） */
    opacity: 1; /* 表示時に透明度を1に */
    pointer-events: auto; /* クリック可能に */
  }
  .toggle-icon {
    width: 20px; /* アイコンのサイズ調整 */
    height: 20px;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  
  ol p {
    margin: 0;
  }

  .process{
      color: #ff2020;
  }
  
.help-icon {
    font-size: 1.4rem;
    color: #007bff;
    margin-left: 12px;
    cursor: pointer;
}

.help-icon:hover {
    color: #0056b3;
}