main {
  padding: 112px 20px 0 20px;
}

h1 {
  position: relative;
  margin: 60px auto 20px auto;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4em;
  width: 100%;
  height: 1em;
  background: url(../img/title-underline.png) no-repeat center;
  background-size: contain;
  z-index: -1;
}
.usagi {
  margin-bottom: 30px;
}

h2 {
  margin: 72px auto 24px auto;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.point {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  gap: 16px;
}

.point div {
  width: 100%;
  padding: 12px;
  border: 5px #8cc8e1 solid;
  border-radius: 24px;
  text-align: center;
}

.point h2 {
  margin: 0 auto 6px auto;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.point p {
  font-size: 16px;
  line-height: 1.7;
}

table {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-radius: 32px;
  border-collapse: separate;
  border-spacing: 4px;
}
th {
  padding: 16px;
  font-weight: 600;
  vertical-align: middle;
}
td {
  padding: 16px;
  background: #fff;
}
.top-left {
  border-top-left-radius: 32px;
}
.top-right {
  border-top-right-radius: 32px;
}
.bottom-left {
  border-bottom-left-radius: 32px;
}
.bottom-right {
  border-bottom-right-radius: 32px;
}

.pink {
  background: #ffcbcb;
}
.pink th {
  background-color: #fce6e4;
}
.blue {
  background: #a9cce4;
}
.blue th {
  background-color: #e5f2ff;
}
.yellow {
  background: #efe5c2;
}
.yellow th {
  background-color: #fef7de;
}

@media screen and (max-width: 767px) {
  main {
    padding: 64px 16px 0 16px;
  }
  .point {
    flex-direction: column;
  }

  .table_wrp {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  table {
    min-width: 640px;
    width: 100%;
  }
}
