@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* # =================================================================
# Style
# ================================================================= */
/*-------- overview  --------*/
.overview__inner {
  width: 100%;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 100px 20px 80px;
}
.overview__text {
  width: 100%;
  max-width: 850px;
  margin: 45px auto 0;
}

/*-------- terms  --------*/
.terms__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.terms-item {
  position: relative;
  width: calc((100% - 45px) / 4);
  background-color: #ffffff;
  border-radius: 20px;
  padding: 160px 30px 30px;
}
.terms-item__text {
  text-align: center;
  font-size: 18px;
}
.terms-item::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 110px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.terms-item:nth-child(1)::before {
  background-image: url(../img/entry/img_entry01.svg);
}
.terms-item:nth-child(2)::before {
  background-image: url(../img/entry/img_entry02.svg);
}
.terms-item:nth-child(3)::before {
  background-image: url(../img/entry/img_entry03.svg);
}
.terms-item:nth-child(4)::before {
  background-image: url(../img/entry/img_entry04.svg);
}

@media screen and (max-width: 768px) {
  .terms__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .terms-item {
    width: 100%;
    padding: 30px 20px 30px 50%;
  }
  .terms-item__text {
    text-align: left;
  }
  .terms-item::before {
    top: 50%;
    left: auto;
    right: 55%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}