@charset "UTF-8";
/* =====================================================================
[MVCP] MVCP-41 CSS
タイアップ共通 CSS
=====================================================================*/
/* ------------ MV ------------ */
.mvcp{
    margin: 0;
    padding: 20px 20px 5px;
    text-align: center;
    display: block;
    background: #CD1B29;
}
.mvcp .mvcp_op {
    margin: 0;
    padding: 0;
    text-align: center;
}
.mvcp img{
    max-width: 100%;
    height: auto;
}
/* mvcp_btn */
.mvcp_btn{
    position: relative;
    display: inline-block;
    line-height: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.mvcp_btn::after{
    position: absolute;
    content:"";
    top: 6%;
    left: 1%;
    width: 98%;
    height: 89%;
    border-radius: 3px;
    background:rgba(255,255,255,0.0);
    transition: all 0.3s;
}
.mvcp_btn:hover::after{
    background:rgba(255,255,255,0.3);
}
