/*==================================================================
    納品完了後、CSSを追加するファイル
===================================================================*/

.p-front__video--button {
  position: relative;
}

.p-front__video--button--center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
  transform-origin: center center;
}

.p-front__video--button-link:hover .p-front__video--button--center {
  transform: translate(-50%, -50%) scale(1.1);
}

a.p-front__video--button-link {
    width: 100%;
    height: 100%;
    display: block;
}

a.p-front__video--button-link img {
    transition: transform 0.3s;
    transform-origin: center center;
    display: block;
}

a.p-front__video--button-link:hover img {
    transform: scale(1.1);
}