@charset "UTF-8";
/* CSS Document */


/*-----------
movie
-----------*/

.movie {
  padding: 50px 0 20px;
}

.movie h2 {
  width: fit-content;
  font-size: 26px;
  font-weight: bold;
  margin: 0 auto 45px;
  border-bottom: 1px solid #000;
}

.movie .product_name {
  text-align: center;
  margin-bottom: 30px;
}

.list_movie{
  width: 770px;
  margin: 0 auto 80px;
}

.list_movie li{
  padding-bottom: 35px;
}

.list_movie li + li{
  padding-top: 45px;
  border-top: solid 1px #e4e4e4;
}

.list_movie li + li:last-child{
  border-bottom: solid 1px #e4e4e4;
}

.movie_title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  column-gap: 30px;
}

.movie_title p{
  font-size: 20px;
  font-weight: bold;
}

.movie_box {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff url("../img/common/icon_movie.svg") no-repeat center center;
  background-size: 80px auto;
}

.movie_box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.btn_movie_dl {
  width: 277px;
  color: #007096;
  display: block;
  background-color: #fff;
  margin: 20px auto 0;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  line-height: 48px;
  border-radius: 6px;
  border: solid 1px #007096;
  box-sizing: border-box;
}


/*
SP
---------------------------------------------------------------------*/

@media only screen and ( max-width : 768px ) {


  .movie {
    padding: 9% 0 20%;
  }

  .movie h2 {
    font-size: calc(100vw / ( 375 / 19 ));
    margin: 0 auto 8%;
  }

  .movie .product_name {
    margin-bottom: 5%;
  }

  .list_movie{
    width: 100%;
    margin: 0 auto;
  }

  .list_movie li{
    padding: 0 1.4% 8.5%;
  }

  .list_movie li + li{
    padding-top: 7%;
  }

  .movie_title {
    align-items:center;
    margin-bottom: 3%;
    column-gap: 20px;
  }

  .movie_title p{
    font-size: calc(100vw / ( 375 / 14 ));
  }

  .movie_box {
    background: #fff url("../img/common/icon_movie.svg") no-repeat center center;
    background-size: 16% auto;
  }

  .btn_movie_dl {
    width: 75%;
    line-height: 3;
    margin: 7% auto 0;
    font-size: calc(100vw / ( 375 / 15 ));
    border-radius: 5px;
  }


}