.content {
  display: grid;
  grid-template-columns: 43% 50%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.content .sp {
  display: none;
}
.content .img .top {
  margin-bottom: 10px;
}
.content .img .top img {
  width: 100%;
  height: auto;
}
.content .img .bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.content .img .bottom img {
  width: 100%;
  height: auto;
}
.content .txt {
  position: relative;
  height: 100%;
}
.content .txt .ttl_ub {
  font-size: clamp(17px, 2.4vw, 27px);
  margin-bottom: 0px;
  padding-bottom: 2px;
}
.content .txt .list {
  padding-bottom: 64px;
}
.content .txt .list .box {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: baseline;
  border-bottom: 1px solid #d9d9d9;
}
.content .txt .list .box h4 {
  padding: 10px 0;
  font-size: 16px;
  color: #209cc6;
}
.content .txt .list .box p {
  font-size: 16px;
}
.content .txt > a {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 920px) {
  .content {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }
  .content .sp {
    display: block;
  }
  .content .img {
    margin-bottom: 16px;
  }
  .content .txt .ttl_ub {
    font-size: 22px;
    display: none;
  }
  .content .txt .list {
    padding-bottom: 64px;
  }
  .content .txt .list .box {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: baseline;
    border-bottom: 1px solid #d9d9d9;
  }
  .content .txt .list .box h4 {
    padding: 16px 0;
    font-size: 15px;
    color: #209cc6;
  }
  .content .txt .list .box p {
    font-size: 14px;
  }
  .content .txt > a {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */