@charset "utf-8";
/*--------------------------------------------------------------------------------
*
*   home_pc.css
*
--------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------
*
    min-width: 641px
*
-------------------------------------------------------------------------------- */
@media screen and (min-width: 641px) {
/* ----------------------------------------
*
    #kv
*
---------------------------------------- */
#kv{
    margin: 0 0 85px 0;
    position: relative;
}

#kv .btn_prev{
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-image:url(../images/parts_slide_arrow_left.png);
    background-size: auto 29px;
    background-position: center;
    position: absolute;
    top: calc(50% - 15px);
    left: 15px;
    z-index: 2;
    cursor: pointer;
    transition: opacity .1s ease .0s;
}

#kv .btn_next{
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-image:url(../images/parts_slide_arrow_right.png);
    background-size: auto 29px;
    background-position: center;
    position: absolute;
    top: calc(50% - 15px);
    right: 15px;
    z-index: 2;
    cursor: pointer;
    transition: opacity .1s ease .0s;
}

.is_pc #kv .btn_prev:hover,
.is_sp #kv .btn_prev.touch{
    opacity: .7;
    transition: opacity .15s ease .05s;
}

.is_pc #kv .btn_next:hover,
.is_sp #kv .btn_next.touch{
    opacity: .7;
    transition: opacity .15s ease .05s;
}

#kv .bg{
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: opacity .15s ease .0s;
}

.is_pc #kv .bg:hover,
.is_sp #kv .bg.touch{
    opacity: .8;
    transition: opacity .2s ease .05s;
}

#kv .bg.disabled{ opacity: 1 !important;}

#kv .bg img{
    opacity: 0;
}

#news{
    margin: 0 0 20px 0;
    padding: 8px 10px;
    border-radius: 3px;
    border: 4px solid #FB9199;
}

#news p{
    font-size: 14px;
    line-height: 1.6em;
}

#news a{
    text-decoration: underline;
}

.is_pc #news a:hover,
.is_sp #news a.touch{
    text-decoration: none;
}


/* ----------------------------------------
*
    #mov_list
*
---------------------------------------- */
#mov_list{
    margin: 0 0 40px 0;
}

#mov_list ul{
    width: calc(100% + 40px);
    display: flex;
    flex-wrap: wrap;
}

#mov_list li{
    width: 280px;
    margin: 0 22px 22px 0;
    padding: 0 0 10px 0;
    border: 1px solid #023e21;
}

#mov_list li a{
    height: 100%;
    padding: 0 0 10px 0;
    display: block;
    position: relative;
    transition: opacity .1s ease .0s;
}

#mov_list li.new a:after{
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image:url(../images/parts_ico_new.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#mov_list p {
    position: relative;
}

#mov_list p.free:before{
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image:url(../images/parts_ico_free.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.is_pc #mov_list li a:hover,
.is_sp #mov_list li a.touch{
    opacity: .7;
    transition: opacity .15s ease .05s;
}

#mov_list li .desc{
    font-size: 14px;
    padding: 18px 15px 10px 15px;
    line-height: 1.571em;
}

#mov_list li .pic{
    width: 100%;
    height: 158px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

#mov_list li .pic img{
    width: 100%;
    height: 100%;
    opacity: 0;
}

#mov_list li .title{
    margin: 0 0 5px 0;
}

#mov_list li .date{
    font-size: 11px;
    position: absolute;
    bottom: 10px;
    left: 15px;
}

.safari #mov_list li .date{
    position: relative;
    bottom: inherit;
    left: inherit;
}



}/* min-width: 641px */
