@charset "UTF-8";
.od-terms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
  gap: 20px;
  counter-set: cnt;
}
.od-terms > li {
  text-align: center;
  border: 2px solid #00a23f;
  border-radius: 10px;
  line-height: 1.5;
  padding-bottom: 20px;
  counter-increment: cnt;
  background-color: #fff;
}
.od-terms > li::before {
  content: "条件" counter(cnt);
  display: block;
  width: 120px;
  height: 35px;
  background-color: #00a23f;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 10px;
  color: #fff;
  font-weight: bold;
  font-family: "UD Shin Maru Go Bold", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 2.2rem;
  line-height: 1;
  padding-top: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.od-terms > li:nth-of-type(1) .od-terms-pic img {
  width: 215px;
}
.od-terms > li:nth-of-type(2) .od-terms-pic img {
  width: 260px;
}
.od-terms > li:nth-of-type(3) .od-terms-pic img {
  width: 150px;
}
.od-terms > li:nth-of-type(4) .od-terms-pic img {
  width: 180px;
}
.od-terms-text {
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 15px;
}
.od-terms-pic {
  text-align: center;
}
.od-judge {
  padding: 30px 0;
  text-align: center;
  border-radius: 10px;
  background-color: #fafaaf;
}
.od-judge img {
  width: 450px;
}
@media screen and (max-width: 767px) {
  .od-terms {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .od-terms > li {
    border-width: 1.5px;
    border-radius: 5px;
  }
  .od-terms > li::before {
    width: 80px;
    height: 25px;
    border-radius: 0 0 10px 10px;
    font-size: 1.5rem;
    padding-top: 4px;
  }
  .od-terms > li:nth-of-type(1) .od-terms-pic img {
    width: 135px;
  }
  .od-terms > li:nth-of-type(2) .od-terms-pic img {
    width: 180px;
  }
  .od-terms > li:nth-of-type(3) .od-terms-pic img {
    width: 100px;
  }
  .od-terms > li:nth-of-type(4) .od-terms-pic img {
    width: 120px;
  }
  .od-terms-text {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .od-judge {
    padding: 20px 10px;
    border-radius: 5px;
  }
  .od-judge .attention-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0 !important;
    text-align: left;
  }
  .od-judge img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .od-terms-pic {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}