body {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    color: hotpink; /* Regular text color */
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: flex-start; /* 上部に寄せる */
    padding-top: 20px; /* 上部に余白 */
  }
  .box {
    max-width: 600px; /* ボックスの最大幅 */
    width: 100%;
    padding: 0 20px; /* 左右のパディング */
    box-sizing: border-box;
    margin-bottom: 20px; /* ボックス間の余白 */
  }
  h1, h2 {
    font-family: monospace;
    white-space: pre;
    font-size: 2em; /* Increase font size for ASCII art */
    text-align: center; /* 中央揃え */
    overflow-x: auto; /* はみ出したらスクロール */
    -webkit-overflow-scrolling: touch; /* iOSでのスムーズなスクロール */
  }
  h1 {
    color: lightblue;
  }
  ul {
    list-style: none;
    padding: 0;
    text-align: left; /* 左揃え */
  }
  li {
    line-height: 1.8;
    margin-bottom: 5px;
    position: relative;
    padding-left: 1.2em; /* 箇条書きのスペースを確保 */
  }
  li::before {
    content: "・"; /* 箇条書きの記号 */
    color: hotpink; /* 記号の色 */
    position: absolute;
    left: 0;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  footer {
    margin-top: 40px;
    font-size: 0.8em;
    color: #888;
  }
  @media screen and (max-width: 600px) {
    body {
      font-size: 1.2em;
    }
    h1, h2 {
      font-size: 1.3em;
    }
  }
  @media screen and (max-width: 400px) {
    .box {
      padding: 0 10px;
    }
    h1, h2 {
      font-size: 1.1em;
    }
  }
  a {
    color: limegreen; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for hover */
  }
  a:hover {
    color: #90EE90; /* Lighter green on hover */
  }
  a[target="_blank"]::after {
    content: " ↗";
    color: #c8a2c8;
    text-decoration: none;
    display: inline-block;
  }
  img {
    display: block;
    margin: 0 auto;
  }