article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 20px 80px; /* 上部のパディングを120pxに増やし、下部は80pxのまま */
}

h1 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.trade-law-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trade-law-list {
  display: grid;
  gap: 24px;
}

.trade-law-list dt {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.trade-law-list dd {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  padding-left: 8px;
}

@media screen and (max-width: 768px) {
  article {
    padding: 100px 20px 40px; /* 上部のパディングを100pxに増やし、下部は40pxのまま */
  }

  h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .trade-law-content {
    padding: 20px;
  }

  .trade-law-list {
    gap: 20px;
  }

  .trade-law-list dt {
    font-size: 15px;
  }

  .trade-law-list dd {
    font-size: 14px;
  }
} 