    body {
      background-color: #a6a6a6;
      color: #000000;
      font-family: "MS Gothic", sans-serif;
    }
    
    /* ヘッダーの画像の調整 */
.header img {
  width: 65%;       /* 画像をウィンドウ幅に合わせる */
  height: auto;      /* アスペクト比を保ちながら高さを自動調整 */
  display: block;    /* 画像をブロック要素にして中央寄せ */
  margin: 0 auto;    /* 画像を中央寄せ */
  margin-top: 30px;
  margin-bottom: 30px;
}

    /*メインコンテンツとかコードとか書くコンテナ*/
    .container {
      width: 800px;
      margin: 40px auto;
      padding: 30px;
      background-color: rgba(255, 255, 255, 0.85);
      /* ほんのり透けた白 */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      /* 影はそのまま */
      border: 2px solid royalblue;
      /* 枠を青くして少し太めに */
      border-radius: 0;
      /* 四角く（角丸を無効に） */
    }

    h1 {
      color: hotpink;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    li {
      margin-bottom: 10px;
    }

    a {
      color: blue;
      text-decoration: none;
    }

    /* ボックスのバナー */
    .boxbanner {
      width: 77.5%;
      background-color: #0033cc;
      color: white;
      font-family: Georgia, serif;
      font-size: 22px;
      padding: 8px;
      margin: 20px auto 0 auto;
      text-align: center;
    }

    /* ボックス */
    .box {
      padding: 5px 23px;
      /* ←上下5px、左右15pxの余白 */
      width: 75%;
      border: 2px solid #000;
      text-align: left;
      background-color: ivory;
      margin: 0 auto;
    }

    /* ボタン */
    .btn {
      display: flex;
      flex-direction: column;
      width: 10em;
    }

    /* ボタンの中身 */
    .btns {
      width: 100%;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      margin: auto;
      justify-content: center;
      text-align: center;
    }

    .btn a {
      text-decoration: none;
      padding: 5px;
      line-height: 25px;
      margin-top: 10px;
      margin-bottom: 5px;
      border: 2px solid #cccccc;
      border-bottom-color: black;
      border-right-color: black;
      border-top-color: whitesmoke;
      border-left-color: whitesmoke;
      color: black;
    }

    .btn a:hover {
      border-bottom-color: whitesmoke;
      border-right-color: whitesmoke;
      border-top-color: black;
      border-left-color: black;
    }