/* PC
----------------------------------*/


.wrap {
  margin-bottom: 150px;
}


.contents {
  width: 50%;
  text-align: center;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 80px;
  font-size: 0;
}


/* コンテナ */
.container {
  margin-bottom: 180px;
}

.title {
  margin-top: 130px;
  margin-bottom: 20px;
}

.title_2 {
  margin-top: 150px;
  margin-bottom: 20px;
}

.btn_box {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

#btn_animation .btn {
  width: 400px;
  line-height: 50px;
  font-size: 13px;
  font-weight: normal;
  border-radius: 40px;
  text-decoration: none;
  background-color: #6f7b99;
  color: #fff;
  text-align: center;
  transition: .2s;
  margin: 0 auto;
}

#btn_animation .btn:before,
#btn_animation .btn:after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 400px;
  height: 50px;
  top: 0;
  left: 0;
  border-radius: 40px;
  background: #c8d0e5;
}

#btn_animation .btn:before {
  animation: anime 1s ease-out infinite;
}

#btn_animation .btn:after {
  animation: anime 1s ease-out 1s infinite;
}

@keyframes anime {
  0% {
    transform: scale(.95);
    opacity: 1
  }

  90% {
    opacity: .1
  }

  to {
    transform: scale(1.2, 1.4);
    opacity: 0
  }
}

.mv {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 50%;
}

.media-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-video {
  position: absolute;
  top: 51%;
  left: 50%;
  width: 390px;
  height: 390px;
  object-fit: cover;
  pointer-events: none;
  margin: 0 auto;
  transform: translate(-50%, -7%);
}



/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .sp_break {
    display: inline;
  }

  .pc_break {
    display: none;
  }


  .wrap {
    margin-bottom: 150px;
  }


  .mv {
    margin: 0 auto;
      margin-bottom: 30px;
      width: 100%;
  }
  

  .contents {
    margin-top: 120px;
    margin-bottom: 70px;
    width: 100%;
    font-size: 0;
  }

  .overlay-video {
    position: absolute;
    top: 51%;
    left: 50%;
    width: 390px;
    height: 390px;
    object-fit: cover;
    pointer-events: none;
    margin: 0 auto;
    transform: translate(-50%, -7%);
  }

  #btn_animation .btn {
    width: 300px;
    line-height: 50px;
    font-size: 13px;
    font-weight: normal;
    border-radius: 40px;
    text-decoration: none;
    background-color: #6f7b99;
    color: #fff;
    text-align: center;
    transition: .2s;
    margin: 0 auto;
  }

  #btn_animation .btn:before,
  #btn_animation .btn:after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 300px;
    height: 50px;
    top: 0;
    left: 0;
    border-radius: 40px;
    background: #c8d0e5;
  }

  .overlay-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 250px;
    object-fit: cover;
    pointer-events: none;
    margin: 0 auto;
    transform: translate(-50%, -7%);
  }