@charset "utf-8";

/* ==========================================
*
*  movie
*
========================================== */

/*
  item
======================== */
@media screen and (max-width: 1199.9px){
  .movie:not(:last-child) {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1200px){
  .movie {
    width: 47%;
  }

  .movie:last-child {
    width: 100%;
    margin-top: 6em;
  }
}


/*
  img
======================== */

.movie__img {
  width: 70%;
  max-width: 350px;
  margin: 0 auto 25px;
}

/*
  name
======================== */

.movie__name {
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: .5em;
  margin: 0 0 .6em;
}

/*
  role
======================== */

.movie__role {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .5em;
  margin: 0 0 2.2em;
}

@media screen and (min-width: 900px){
  .movie__role {
    font-size: 1.8rem;
  }
}

/*
  text
======================== */

.movie__text {
  font-size: 3vw;
  line-height: 2.6;
  text-align: justify;
  margin: 0;
}

@media screen and (min-width: 600px){
  .movie__text {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 900px){
 
  /* ===== 二段組 ===== */
  .movie:last-child .movie__text {
    column-count: 2;
    column-gap: 60px;
  }
}