@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../img/selfcheck-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffff;
  text-shadow: 1px 1px 10px #242424;
}
.title h1 {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.8rem;
  line-height: 36px;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}
.check-contents {
  width: 1080px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}
.selfcheck-item {
  flex-grow: 1;
  max-width: 1100px;
}
.selfcheck-item h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}
.selfcheck-item h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000;
  margin-top: 20px;
}
.selfcheck-list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 120px);
  column-gap: 30px;
  row-gap: 20px;
}
.selfcheck-list :hover {
  transform: scale(1.05);
  transition-duration: 0.2s;
}

.link-button-area {
  text-align: center;
  margin-top: 40px;
}
.link-button {
  background-color: #7fffd4;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: bold;
}
.link-button:hover {
  background-color: #2e8b57;
}

.footer {
  margin-top: 100px;
}
