/* コンテンツの幅設定 */
#wrap {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* 見出し（h2） */
h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
  color: #333;
}

/* テーブルデザイン */
.tb01 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.tb01 tr:nth-child(even) {
  background: #f9f9f9;
}

.tb01 tr:nth-child(odd) {
  background: #ffffff;
}

.tb01 td {
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 16px;
  word-break: break-word;
}

/* タイトルのデザイン */
.tb01 .title {
  font-weight: bold;
  color: #fff;
  width: 30%;
  text-align: left;
  font-size: 16px;
  background: #5b5b5b;
  padding: 12px;
}

/* 著作権部分 */
#copyright {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}

#copyright a {
  color: #333;
  text-decoration: none;

}

#copyright a:hover {
  text-decoration: underline;
}

/* ーーーーーーー スマホ対応 ーーーーーーー */
@media (max-width: 768px) {
  #wrap {
      padding: 20px;
      margin: 20px;
  }

  /* フォントサイズを小さく */
  body {
      font-size: 14px;
      line-height: 1.8;
  }

  h2 {
      font-size: 22px;
  }

  
  .tb01 td {
      padding: 10px;
      font-size: 14px;
  }

  .tb01 .title {
      font-size: 14px;
      background: #5b5b5b;
      padding: 12px;
  }

  #copyright {
      font-size: 12px;
  }
}
