@charset "UTF-8";

.sample-area {
  display: flex;
  justify-content: space-between;
}

.sample-area > .txt {
  width: 55%;
  padding: 0 4%;
  box-sizing: border-box;
}

.sample-area > .img {
  width: 45%;
}

@media screen and (max-width: 480px) {
  .sample-area {
    flex-wrap: wrap;
  }
  .sample-area > .txt {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .sample-area > .img {
    width: 100%;
  }
}