.list-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 11px 0;
  width: 100%;
  min-height: 100px;
  background-color: #ffffff;
  box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.1);
  transition: background-color 0.5s, box-shadow 0.5s;
}
.list-box:hover {
  background-color: rgb(247.35, 247.35, 247.35);
  box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.4);
}
.list-box:hover .-done .list-box__image-inner {
  transform: scale(1.2);
}
.list-box__image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-width: 150px;
  width: 150px;
  overflow: hidden;
}
.list-box__image.-done .list-box__image-inner {
  transform: scale(1);
}
.list-box__image-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  transition: transform 0.5s;
}
.list-box__image.-icon {
  width: 130px;
  min-width: 120px;
}
.list-box__image.-icon .list-box__image-inner {
  margin: 0 20px;
  width: 55px;
  height: auto;
}
.list-box__content {
  padding: 25px 15px;
}
.list-box__name {
  color: #1b191c;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  text-decoration: none;
}
.list-box__name:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.list-box__detail__svg {
  width: 12px;
  height: 7px;
  transform: rotate(180deg);
}
.list-box__detail__text {
  color: #e22927;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .list-box {
    width: 48%;
    min-height: 150px;
    height: 150px;
  }
  .list-box__image.-icon {
    max-width: 170px;
  }
  .list-box__image.-icon .list-box__image-inner {
    width: 65px;
  }
}
@media only screen and (min-width: 920px) {
  .list-box__name {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 33.6px;
    line-height: 2.1rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
}
@media only screen and (min-width: 1400px) {
  .list-box {
    width: 49%;
    height: 160px;
  }
  .list-box__image {
    min-width: 200px;
    width: 200px;
  }
  .list-box__image.-icon {
    margin: 35px 40px;
  }
  .list-box__image.-icon .list-box__image-inner {
    margin: 0;
    width: 90px;
  }
  .list-box__content {
    padding: 0 35px 0 0;
  }
  .list-box__content.-space {
    padding-left: 35px;
  }
  .list-box__name {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 36.8px;
    line-height: 2.3rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
}