@charset "UTF-8";

.plot {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.plot__image {
  width: 66%;
  max-width: 566px;
}

.plot__list {
  width: 33%;
}

.plot__item {
  font-size: 0.875rem;
  display: flex;
  line-height: 1.714;
  letter-spacing: normal;
}

.plot__item-number {
  display: inline-block;
  background-color: #2a9bc5;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 20px;
  margin-right: 5px;
  letter-spacing: -0.1em;
  text-indent: -0.1em;
}

@media only screen and (max-width: 767px) {
  .plot {
    display: block;
    margin-top: 4.4%;
  }
  
  .plot__image {
    width: 100%;
    max-width: 100%;
  }
  
  .plot__list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 3%;
  }

  .plot__items {
    width: 48.75%;
  }

  .plot__item {
    font-size: 0.86875rem;
    line-height: 1.454;
    align-items: baseline;
  }

  .plot__item:nth-child(n+2) {
    margin-top: 5px;
  }
  
  .plot__item-number {
    width: 16px;
    height: 16px;
    font-size: 0.6875rem;
    line-height: 16px;
    margin-right: 5px;
  }
}