@charset "utf-8";

/* ------------------------------
共通スタイル
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fdfdfd;
  line-height: 1.8;
}

a {
  color: #1a73e8;
  text-decoration: underline;
}
a:hover {
  color: #d00;
}

/* ------------------------------
タイトル
------------------------------ */
h2 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 20px;
}

/* ------------------------------
レイアウト
------------------------------ */
#wrap {
  width: 100%;
  padding: 20px;
}

#container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 4px;
}

/* ------------------------------
段落
------------------------------ */
#container p {
  font-size: 13px;
  margin-bottom: 1.2em;
  padding: 0 10px;
}

/* ------------------------------
テーブルスクロール + 固定幅対応
------------------------------ */
.table-scroll {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.tb01 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  table-layout: auto;
  border-collapse: collapse;
  font-size: 13px;
}

.tb01 th.title {
  width: 40%;
  padding: 10px;
  background: #f2f2f2;
  border: 1px solid #ccc;
  font-weight: bold;
  text-align: left;
  white-space: normal;
  word-break: keep-all;
  line-height: 1.4;
}

.tb01 td {
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #fff;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  word-break: break-word;
}

@media screen and (max-width: 480px) {
  .tb01 {
    font-size: 12px;
  }

  .tb01 th.title {
    font-size: 12px;
    padding: 6px;
    word-break: keep-all;
    white-space: normal;
    line-height: 1.3;
  }

  .tb01 td {
    font-size: 12px;
    padding: 6px;
    line-height: 1.4;
  }
}
/* ------------------------------
フッター
------------------------------ */
#copyright {
  text-align: center;
  font-size: clamp(3px, 10vw, 15px);
  color: #888;
  margin-top: 2em;
  padding: 10px;
}

#copyright a {
  color: #888;
  text-decoration: none;
  margin-right: 0.3em;
}
#copyright a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  #copyright {
    font-size: 5px;
    padding: 5px;
    line-height: 1.3;
  }

  #copyright p {
      font-size: clamp(5px, 8px, 15px);
  }
}