.container {
  display: grid;
  place-items: center; /* 水平方向と垂直方向に中央揃え */
  height: 100vh;       /* ビューポートの高さを占める */
}

.wrapper {
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 5px 0px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.6);
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* 水平方向のスクロールを無効にする */
  overflow-y: auto; /* 垂直方向のスクロールを有効にする */
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

.btn-green {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.btn-green a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-green a:hover {
  background-color: #45a049;
}

.law-table {
  font-size: 16px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #3e3a39;
  border-right: 1px solid #3e3a39;
  border-left: 1px solid #3e3a39;
  background: #fff;
}

.law-table th,
.law-table td {
  padding: 10px;
  border: 1px dashed #BBB;
  text-align: left;
  vertical-align: top;
}

.law-table th {
  background-color: #f2f2f2;
  width: 200px;
}

.law-table td p {
  margin: 0 0 10px;
}

.law-table td p:last-child {
  margin-bottom: 0;
}

.law-table ol {
  padding-left: 20px;
  margin: 0;
}

.law-table tr:last-child th,
.law-table tr:last-child td {
  border-bottom: 1px solid #3e3a39; /* 最後の行のボーダーを実線にする */
}

.law-ttl {
  text-align: center;
  margin-bottom: 50px;
  font-size: 30px;
}
  
/* トップへ戻るボタン */

.btn-green {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.btn-green a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-green a:hover {
  background-color: #45a049;
}
  
  /* マウスオーバー時 */
  .page_top3_btn:hover {
  background: rgb(255, 0, 0, 0.8);
  color: rgb(255, 255, 255, 0.8);
  }
  
  .content.white {
  height: 500px;
  background-color: #fff;
  }
  
  .content.gray {
  height: 500px;
  background-color: #eee;
  }
  /*------------footer-----------*/
  #footer {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 900px;
    width: 100%;
    margin: auto;
    padding: 0px; /* パディングを追加してリンクと背景の間にスペースを確保 */
  }
  
  .footer_link {
    display: flex; /* Flexboxを使用 */
    justify-content: right; /* 中央揃え */
    font-size: 100%;
    padding: 20px 0; /* フッターの上下にパディングを追加 */
  }
  
  .footer_link ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex; /* Flexboxを使用 */
  }
  
  .footer_link ul li {
    padding: 0 10px;
    border-right: 1px #FFFFFF solid;
  }
  
  .footer_link ul li:last-child {
    border-right: none; /* 最後の項目にボーダーを追加しない */
  }
  
  .footer_link ul li a {
    color: #0071ba;
    font-size: ;
  }
  .copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--base-color);
}

.topimg {
  margin: 10px 10px 0px 80px 
}
  