@charset "UTF-8";
.kv {
    background-image: url(../assets/images/kv_products_sp.jpg);
    background-position: center;
}

.h2{
    text-shadow: 0px 1px 2px #0000004a;
}
.h2 span::after {
    bottom: 5px;
}

.search_wrap{
    text-align: left;
    width: 92%;
    margin: 40px auto;
}
.search_wrap .h3{
    margin-left: .3em;
}
.h3 .search_icon{
    background-image: url(../assets/images/icon_search.svg);
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    background-repeat: no-repeat no-repeat;
    margin-right: .4em;
    vertical-align: sub;
    filter: drop-shadow(0px 0px 4px #ffca01);
}
.search_ul{
    display: flex;
    flex-wrap: wrap;
}
.search_ul li{
    background-color: #67137F;
    color: #fff;
    margin: .3em;
    padding: .1em .8em;
    border-radius: 1em;
    font-weight: 600;
    filter: drop-shadow(0px 0px 4px #ffca01);
}
.search_btn button {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 1.6em;
    font-family: "M PLUS 1", serif;
    border: 2px #67137F solid;
    filter: drop-shadow(6px 6px 0px #67137F);
    font-weight: 800;
    color: #67137F;
    background-color: #fff;
    position: relative;
    border-radius: 30px 0;
}
.search_btn button::before {
    position: absolute;
    content: url(../assets/images/arrow_color_left.svg);
    width: .6em;
    height: auto;
    line-height: .6em;
    top: 50%;
    left: 1em;
    transform: translate(0, -50%);
}

.tire_li{
    margin: 40px auto;
}
.tire_li a{
    color: #67137F;
    transition: .3s;
}

.tire_img_wrap{
    display: block;
    position: relative;
    z-index: -1;
    margin: 0;
}
.tire_img{
    width: 240px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(2px 4px 6px #00000080);
}
.swiperImg .tire_img{
    width:360px;
}
.tire_li dl{
    background-color: #fff;
    border-radius: 20px 0;
    width: 94%;
    margin: 0 auto;
    padding: 1.6em 1em;
    text-align: left;
    border: 4px solid #67137F;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.tire_title{
    font-size: 2em;
    font-weight: 800;
    letter-spacing: 0;
    align-items: center;
    line-height: 1;
}
.tire_tag{
    font-size: .45em;
    background-image: linear-gradient(320deg, #d79fe7 0%, #67137F 100%);
    color: #fff;
    line-height: 1;
    padding: .3em .4em;
    display: block;
    height: fit-content;
    transform: translateY(.17em);
}
.tire_description p{
    margin: 20px auto   ;
}
.products_btn{
    font-size: 1.3em;
    position: relative;
    background-color: #67137F;
    color: #fff;
    padding: 10px 10px;
    line-height: 1;
    font-weight: 800;
    border: 3px #67137F solid;
}
.products_btn::before{
    position: absolute;
    content: url(../assets/images/arrow_white_right.svg);
    width: 14px;
    height: auto;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
}
@media (max-width: 768px) and (orientation: landscape) {
    .tire_li {
        width: 32%;
        margin: 0px auto 40px;
    }
    .tire_ul{
        display: flex;
        flex-wrap: wrap;
    }
}
@media (min-width: 768px) {
    .kv {
        background-image: url(../assets/images/kv_products_pc.jpg);
    }
    .tire_title{
        font-size: 1.85em;
    }
    .search_wrap {
        width: 100%;
        max-width: 600px;
    }
    .tire_ul{
        display: flex;
        flex-wrap: wrap;
    }
    .tire_li {
        width: 30%;
        margin: 0px 1.65% 40px;
    }
}

@media (min-width: 1366px) {

    .search_wrap{
        max-width: 800px;
    }
    .search_btn button {
        transition: .3s;
    }
    .search_btn button:hover {
        filter: drop-shadow(0px 0px 0px #67137F);
        transform: translate(6px, 6px);
        background-color: #ffefb1;
    }
    .pager_wrap{
        margin: 60px auto;
    }
    .tire_img{
        transition: .3s;
    }
    .tire_li a:hover .tire_img{
        transform: translateY(-20px);
    }
    .products_btn{
        transition: .3s;
    }
    .tire_li a:hover .products_btn{
        background-color: #fff;
        color: #67137F;
    }
    .tire_li a:hover .products_btn::before{
        content: url(../assets/images/arrow_color_right.svg);
    }
    .tire_li dl {
        position: relative;
        overflow: hidden;
    }
    .tire_li dl::before{
        position: absolute;
        content: "";
        bottom: -180px;
        right: -180px;
        width: 200px;
        height: 200px;
        background-color: #ffca01;
        z-index: -1;
        transform: rotate(45deg);
        transition: .3s;
    }
    .tire_li a:hover dl::before{
        bottom: -120px;
        right: -120px;
    }
}