  /* 見出しタグ */
  .detail h1 {
    font-size: 2em;
    font-weight: bold;
    margin: 0.67em 0;
  }
  .detail h2 {
    font-size: 1.75em;
    font-weight: bold;
    margin: 0.75em 0;
  }
  .detail h3 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0.83em 0;
  }
  .detail h4 {
    font-size: 1.25em;
    font-weight: bold;
    margin: 1em 0;
  }
  .detail h5 {
    font-size: 1em;
    font-weight: bold;
    margin: 1em 0;
  }
  .detail h6 {
    font-size: 0.875em;
    font-weight: bold;
    margin: 1em 0;
  }
  
  /* 段落・テキスト関連 */
  .detail p {
    margin: 1em 0;
  }
  
  .detail a {
    color: #007bff;
    text-decoration: none;
  }
  .detail a:hover {
    text-decoration: underline;
  }
  
  /* リスト関連 */
  .detail ul,
  .detail ol {
    margin: 1em 0;
    padding-left: 2em;
  }
  .detail ul {
    list-style-type: disc;
  }
  
  .detail li {
    margin: 0.5em 0;
    list-style-type: disc;
  }
  /* テーブル */
  .detail table {
    border-collapse: collapse;
    width: 100%;
  }
  .detail th,
  .detail td {
    border: 1px solid #ccc;
    padding: 0.5em;
    text-align: left;
  }
  
  /* フォーム要素 */
  .detail input,
  .detail textarea,
  .detail select,
  .detail button {
    font-size: 1em;
    font-family: inherit;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  .detail button {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    border: none;
  }
  
  .detail button:hover {
    background-color: #0056b3;
  }
  
  /* 画像 */
  .detail img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* その他便利なタグ */
  .detail hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2em 0;
  }
  
  .detail pre {
    background: #f5f5f5;
    padding: 1em;
    overflow-x: auto;
    font-family: monospace;
  }
  
  /* strong/em など */
  .detail strong {
    font-weight: bold;
  }
  .detail em {
    font-style: italic;
  }
  