.long-text-content{
  margin: 0 auto;
  padding: 50px;
  border: 2px solid var(--main-color-black);
  border-radius: 10px;
  background-color: var(--main-color-white);
}
.long-text-content h2{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
}
.long-text-content h2 span{
  display: block;
  font-size: 14px;
  color: var(--main-color-heavy-gray);
  font-weight: normal;
}

.terms-of-service section {
    margin: 20px 0 10px;
}
.terms-of-service section h3 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
}
.evant-page__table th ,
.evant-page__table td {
  border: 1px solid #dee2e6;
}
.evant-page__table td {
  padding: .75rem;
}
.evant-page__table th {
  background: #EDEDED;
  padding: .75rem;
  text-align: center;
}
.privacy-policy-table{
  margin-bottom: 20px;
}

/*--------------------
  レスポンシブ
--------------------*/
@media screen and (max-width: 1024px) {
  .long-text-content h2{
    margin-bottom: 40px;
  }
  
}
@media screen and (max-width: 599px) {
  .long-text-content h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .long-text-content{
    padding: 30px;
  }
  .terms-of-service{
    font-size: 15px;
  }
  .terms-of-service section strong{
    display: block;
    margin-bottom: 5px;
  }
  .privacy-policy-table th,
  .privacy-policy-table td{
    display: block;
    width: 100%;
  }
}