body {
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  margin: 0;
}

.services-container {
  max-width: 900px;
  margin: 0 auto; /* ← ここで中央寄せに */
  padding: 0 20px;
}

.service-section {
  margin-bottom: 60px;
}

.service-title {
  font-size: 1.8rem;
  color: #000000;
  border-bottom: 2px solid #1E3A8A;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .service-title{
    font-size:1.6rem;
  }
}

.sub-title {
  display: inline-block;
  font-size: 1.5rem;
  color: #000000;
  border-bottom: 1px solid #1E3A8A;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .sub-title{
    font-size:1.3rem;
  }
}

.centered-title {
  text-align: center;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
}

.service-table td {
      font-size:1.1rem;
    font-family:'Noto Sans JP';
  vertical-align: top;
  padding: 8px 12px;
  border-bottom: 1px solid #3B82F6;
}

/* モバイル対応 */
@media screen and (max-width: 600px) {
  .service-table {
    width: 100%;
    border: none;
  }

  .service-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #6B7280;
    border-radius: 8px;
    padding: 12px;
    background-color: #f9f9f9;
  }

  .service-table td {
    display: block;
    width: 100%;
    padding: 6px 0;
    border-bottom: 1px solid #ffffff
  }

  /* 見出し風にスタイル */
  .service-table tr td:first-child {
    font-weight: bold;
    color: #1E3A8A;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .service-table tr td:last-child {
    font-size: 15px;
    color: #333;
    padding-left: 8px;
  }





}