@charset "utf-8";
/* movie.css */


/* ==========================================================
 goods
========================================================== */
.box-goods {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-goods .img {
  width: 250px;
  border: 1px solid #e0e0e0;
}
.box-goods .img img {
  width: 100%;
}
.box-goods .info {
  width: calc(100% - 270px);
}

@media screen and (max-width: 768px) {
  .box-goods {
    display: block;
  }
  .box-goods .img {
    margin: 0 auto 20px;
  }
  .box-goods .info {
    width: 100%;
  }
}
