.poster-box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 60px auto 0;
  align-items: center;
}
.poster-box .txt{
  font-size: 22px;
  font-weight: bold;
  text-align: right;
}
.poster-box .img{
  width: 40%;
}

@media screen and (max-width: 750px) {
  .poster-box .txt {
    font-size: 16px;
    text-align: center;
  }
  .poster-box .img {
    width: 65%;
  }
}

/* table */
.table-wrapper {
  max-width: 980px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

th, td {
  padding: 12px;
  border: 1px solid #ddd;
}

th {
  background-color: #f5f5f5;
  text-align: center;
}

td {
  text-align: left;
}

th:first-child,
td:first-child {
  width: 30%;
}

@media screen and (max-width: 750px) {
  .table-wrapper {
    width: 100%;
    padding: 0 15px;
  }

  table {
    width: 100%;
    border: none;
  }

  thead {
    display: none;
  }

  tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
  }

  td {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #ddd;
  }

  th:first-child,
  td:first-child {
    width: 100%;
  }

  td:last-child {
    border-bottom: none;
  }

  td:before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    background-color: #f5f5f5;
    padding: 8px;
    margin: -12px -12px 8px -12px;
    text-align: center;
  }
}