main #contents.servicePage {
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  main #contents.servicePage {
    padding-bottom: 40px;
  }
}
main #contents.servicePage .read {
  margin-bottom: 30px;
}
main #contents.servicePage .mainArea {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  main #contents.servicePage .mainArea {
    gap: 12px;
  }
}
@media screen and (max-width: 960px) {
  main #contents.servicePage .mainArea {
    gap: 10px;
  }
}
main #contents.servicePage .mainArea > section {
  border: 1px solid #ddd;
  width: calc(25% - 15px);
  padding: 20px;
  border-radius: 0 20px 0 20px;
}
@media screen and (max-width: 1200px) {
  main #contents.servicePage .mainArea > section {
    width: calc(25% - 9px);
  }
}
@media screen and (max-width: 960px) {
  main #contents.servicePage .mainArea > section {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  main #contents.servicePage .mainArea > section {
    width: 100%;
    padding: 10px 20px 20px;
  }
}
main #contents.servicePage .mainArea > section .number {
  font-size: 3.5rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #0E3481;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  main #contents.servicePage .mainArea > section .number {
    font-size: 3rem;
  }
}
main #contents.servicePage .mainArea > section .number::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #0E3481;
  margin: 15px auto 20px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  main #contents.servicePage .mainArea > section .number::after {
    margin: 5px auto 10px;
  }
}
main #contents.servicePage .mainArea > section h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  main #contents.servicePage .mainArea > section h3 {
    margin-bottom: 10px;
  }
}
main #contents.servicePage .mainArea > section .price {
  text-align: center;
  margin-bottom: 20px;
  color: #BC9617;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  main #contents.servicePage .mainArea > section .price {
    margin-bottom: 10px;
  }
}
main #contents.servicePage .mainArea > section .price strong {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.3em;
  letter-spacing: 0.5px;
}