@charset "utf-8";

.link01 {
  padding: 0 20px 20px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 20px;
}

.link01 dl {
  display: flex;
  justify-content: space-between;
}

.link01 dt {
  width: 200px;
}

.link01 dd {
  width: calc(100% - 220px);
}

.link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.link h3 {
  font-weight: bold;
  padding-bottom: 20px;
}

.link dl {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.link li {
  width: 48%;
}

.link dt {
  width: 100px;
  text-align: center;
}

.link dd {
  width: calc(100% - 140px);
}

@media (max-width: 768px) {
  .link {
    display: block;
    margin-bottom: 40px;
  }

  .link li {
    width: auto;
    margin-bottom: 20px;
  }
}


@media (max-width: 600px) {
  .link01 dl {
    display: block;
  }

  .link01 dt {
    width: auto;
    margin-bottom: 20px;
  }

  .link01 dd {
    width: auto;
  }
}