/* 画像のスタイルリセット */
img {
    height: auto;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}



/*========= ナビゲーションのためのCSS ===============*/

#catenav-Wrap {
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    position: fixed;
    z-index: 9999;
    transform: translateY(-100%);
    /*ナビを隠す*/
    transition: all 0.6s;
    display: none;
    /* 表示しない */
}



/*アクティブクラスがついたら位置を0に*/
#catenav-Wrap.active {
    display: block;
    /* 表示しない */
    overflow: hidden;
    transform: translateY(0%);
}

#catenav-Wrap.hide {
    display: none;
}




/* コンテンツタイトル */
#catenav-Wrap .sp-search-ttl {
    font-weight: bold;
    margin: 0;
    padding: 3% 0 3% 6%;
    display: block;
    background-color: #e7e7e7;
    font-size: 3.14vw;
    text-align: left;
}


/* リスト */
#catenav-Wrap .sp-searchnav {
    margin: 0;
    padding: 0;
}

#catenav-Wrap .sp-searchnav li {
    list-style: none;
    border-bottom: solid 1px #666;
}

#catenav-Wrap .sp-searchnav li:last-child {
    border: 0;
}

#catenav-Wrap .sp-searchnav a {
    -webkit-tap-highlight-color: rgba(204, 204, 204, 0.5) !important;
    color: #666 !important;
    margin: 0;
    padding: 1.0em 1.5em;
    display: flex;
    /* block崩れるからこっち */
    align-items: center;
    position: relative;
    /* このタグを基準に矢印を作成 */
    font-size: 3.6vw;
    font-weight: normal !important;
    text-decoration: none;
    background-color: #fff;
}


#catenav-Wrap .sp-searchnav li a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    display: block;
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-top: 1px solid #959595;
    /* 線の太さ */
    border-right: 1px solid #959595;
    /* 線の太さ */
    transform: rotate(45deg);
    /* 右向き矢印 */
}



#catenav-Wrap .sp-searchnav li {
    font-weight: normal;
    text-shadow: none;
    color: #666;
    display: block;
    margin: 0;
    overflow: visible;
    position: relative;
    text-align: left;
    border: 1px solid #ccc;
    border-width: 0 0 1px 0;
}

#catenav-Wrap .sp-searchnav li {
    color: #666;
    display: block;
    margin: 0;
    overflow: visible;
    position: relative;
    text-align: left;
    border-bottom: 1px solid #ccc;
    font-weight: normal;
}

#catenav-Wrap .sp-searchnav li img {
    max-width: 8%;
    padding: 0% 4% 0 0;
    width: 100%;
    height: auto;
}



/* ドロワーメニュー内検索ボックス */
#catenav-Wrap #catContent .cat_search_wrap {
    background-color: #fff;
    display: grid;
    grid-template-columns: 80vw 8vw;
    -webkit-column-gap: 4vw;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
    padding: 22px 4vw;
}

#cat_search_area,
#list_search_area {
    clear: both;
    text-align: center;
    margin-bottom: 0;
}

/* #cat_search_area .cat_search_box:after {
    position: absolute;
    left: 7px;
    top: 50%;
    margin-top: -9px;
    content: "";
    width: 18px;
    height: 18px;
    opacity: .5;
    background-image: url("https://www.air-ry.live/smaf/images/search.svg");
} */

#cat_search_area .cat_search_box .searchbox,
#list_search_area .cat_search_box .searchbox {
    border: none;
    width: 98%;
    padding: .4em 0;
    margin: 0;
    display: block;
    background: transparent none;
    outline: 0 !important;
    line-height: 1.4;
    font-size: 3.8vw;
}