@charset "utf-8";

#top-version_up .border {
  border: solid 6px #006934;
  margin-bottom: 2rem;
  padding: 20px;
}

.verup-hikaku {
  display: grid;
  gap: 60px;
}

.hikaku-template {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  text-align: center;
}

.hikaku-original {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  text-align: center;
}

.hikaku-template .label {
  background: #B9D0EC;
  font-size: 16px;
  color: #258DCD;
  padding: 10px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.hikaku-original .label {
  background: #B9D0EC;
  font-size: 20px;
  font-weight: 800;
  color: #0056E5;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.hikaku-text {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  position: relative;
  line-height: 1.5;
}

.hikaku-text ul li {
  font-size: 28px;
  font-weight: 800;
}

.hikaku-text .yajirushi {
  position: absolute;
  width: calc(120 / 600 * 100%);
  top: 0;
  right: 0;
}

.yajirushi-sp {
  display: none;
  width: 40px;
  height: 50px;
  background: #0056E5;
  clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
}

.hikaku-text .explain span {
  color: #0056E5;
  font-size: 19px;
  font-weight: 800;
}

@media only screen and (max-width: 47.938em) {

  .verup-hikaku {
    display: block;
  }

  .hikaku-template,
  .hikaku-original {
    margin-bottom: 40px;
  }

  .hikaku-template img {
    padding: 0 60px;
  }

  .hikaku-text ul li {
    font-size: 20px;
  }

  .hikaku-text .yajirushi {
    display: none;
  }

  .yajirushi-sp {
    display: inline-block;
    margin-bottom: 20px;
  }

}