@charset "utf-8";

/*-------------------------------------------------------------------
    ## Icon
-------------------------------------------------------------------*/
.ic {
    display: inline-block;
    vertical-align: middle;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.ic_snow {
    background-image: url(../img/ic_snow.png);
}

.ic_wet {
    background-image: url(../img/ic_wet.png);
}
.ic_braking {
    background-image: url(../img/ic_braking.png);
}

.ic_handling {
    background-image: url(../img/ic_handling.png);
}

.ic_traction {
    background-image: url(../img/ic_traction.png);
}

.ic_sport {
    background-image: url(../img/ic_sport.png);
}

.feature_item .ic {
    width: 47px;
    height: 38px;
}

/*-------------------------------------------------------------------
    ## button
-------------------------------------------------------------------*/
.btn_top {
    position: fixed;
    right: 115px;
    bottom: 115px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #dcdddf;
    color: #4b2885;
    text-align: center;
}

.btn_top .ic_arw {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #4b2885;
    border-right: 3px solid #4b2885;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 2px auto;
}

.btn_top strong {
    display: block;
    line-height: 1;
}


/*-------------------------------------------------------------------
    ## text
-------------------------------------------------------------------*/
.ttl_area.tac {
    text-align: center;
}

.ttl_area > img {
    vertical-align: top;
}

.ttl_area .ttl {
    font-family: 'Hankook TTF Bold Oblique', 'Arial', Sans-Serif;
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.ttl_area .ttl + .ttl {
    margin-top: 80px;
}

.ttl_area .ttl + .txt {
    margin-top: 36px;
}

.ttl_area .txt {
    font-size: 18px;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}
.c_point{
    color: #4b2885;
}

/*-------------------------------------------------------------------
    ## Contents
-------------------------------------------------------------------*/
.video_wrap {
    position: relative;
}

.video_wrap .video_area {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden
}

.video_area iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video_wrap.fade_video .video_area {
    top: 0;
    transform: translateY(0)
}

.video_wrap.fade_video .video_area:before,
.video_wrap.fade_video .video_area:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 150px;
}

.video_wrap.fade_video .video_area:before {
    bottom: 55px;
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=0); /* IE6-9 */
}

.video_wrap.fade_video .video_area:after {
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0); /* IE6-9 */
}

.video_wrap video {
    width: 100%;
}

/*-------------------------------------------------------------------
    ## Loading
-------------------------------------------------------------------*/
.loading_wrap{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #dcdddf;
    z-index: 100;
}
.loading_area{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.ic_loading{
    display: inline-block;
    width: 120px;
    height: 120px;
    background: url(../img/ic_loading.png)center no-repeat;
    animation: loadingBar linear 1s infinite;
}
.loading_area p{
    font-size: 18px;
    color: #431980;
    font-weight: 700;
    line-height: 1;
    margin-top: 14px;
}
@keyframes loadingBar {
    from{
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    to{
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-------------------------------------------------------------------
    ## Table
-------------------------------------------------------------------*/
table{
    width: 100%;
}
table thead{
    background: #ccc;
}
table th{
    line-height: 38px;
    color: #4a2885;
    font-weight: 700;
    text-align: center;
    width:50%;
}
table td{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 38px;
}
table tbody tr{
    border-bottom: 1px solid #bbb;
}
table tbody tr:last-child{
    border-bottom-width: 2px;
}

/*-------------------------------------------------------------------
    ## Tab
-------------------------------------------------------------------*/
.tabs li{
    float: left;
    width: 20%;
    text-align: center;
    border-bottom: 4px solid #fff;
}
.tabs li button{
    display: block;
    width: 100%;
    line-height: 60px;
    font-size: 18px;
    color: #666;
    font-weight: 700;
    background: #fff;
}
.tabs li.is_active{
    border-bottom-color: #4a2885;
}
.tabs li.is_active button{
    color: #4a2885;
}
.tab_cnts{
    margin-top: 16px;
}
.tab_cnts .tab_cnt{
    display: none;
    height: 235px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 8px;
}
.tab_cnts .tab_cnt.is_active{
    display: block;
}

/*-------------------------------------------------------------------
    ## Common
-------------------------------------------------------------------*/
.effect_canvas{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.ani_el .effect_canvas,
.ani_el+.effect_canvas#rain{
    opacity: 0;
    -webkit-transition: ease-out .5s .2s;
    -moz-transition: ease-out .5s .2s;
    -ms-transition: ease-out .5s .2s;
    -o-transition: ease-out .5s .2s;
    transition: ease-out .5s .2s;
}
.ani_el.ani_in .effect_canvas,
.ani_el.ani_in+.effect_canvas#rain{
    opacity: 1;
}



@media only screen and (max-width: 1550px) {
    .ttl_area .ttl{
        font-size: 62px;
    }
    .ttl_area .ttl + .ttl{
        margin-top: 60px;
    }
}


@media only screen and (max-width: 1280px) {
    .ttl_area .ttl{
        font-size: 56px;
    }

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 834px) {

}

@media only screen and (max-width: 800px) {
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 640px) {

}

@media only screen and (max-width: 500px) {

}

@media only screen and (max-width: 320px) {

}