/* -----------------------------------『共通設定』-----------------------------------*/

.searchResults{
    display: flex;
    justify-content: center; /* 要素を中央に配置 */
    flex-wrap: wrap;
    background: #FFF7E9;
    width:100%;

        box-shadow: inset 0px 10px 10px -10px rgba(0, 0, 0, 0.5);

      


    }
    .lococo{
        background-image: url('lococo.png');
        background-repeat: repeat-x;
        
        top: 0;
    
    }
/* -----------------------------------『PC中用設定』-----------------------------------*/
@media(min-width: 600px){
.item{
    width:470px;
    height: 260px;
    background: #FFD699;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* 横方向のオフセット0px、縦方向のオフセット2px、ぼかし半径4px、透明度0.2の影 */
    padding: 10px;
    margin: 25px 20px; /* 上下に15px、左右に10pxのマージン */
    border-radius: 10px; /* すべての角を10pxの円形に丸める */
    position: relative;
    }
.item h2{
    font-size: 16px;
    margin: 10px;
    color: 
    #FF55C5;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    }
.item .youtube_flag{
    position: absolute;
    top: 0;
    right: 0;
    width:60px;
}
.item .deta{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    justify-content: space-between;
}

.left_block{
    width: 200px;
    height:200px;

    margin-left: 10px;
    position: relative;

}
    .image-container_a{
        z-index: 1; /* 重ね順を指定 */
        background-size: cover;
        background-position: center top; /* 背景画像の横位置を中央、上下位置を上に配置 */

        border-radius: 5px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 
        overflow: hidden;

        position: absolute;
        bottom: 0;
        right: 0;
        width: 170px;
        height: 170px;
    }

    .image-container_b{
        z-index: 2; /* 重ね順を指定 */
        background-size: cover;
        background-position: center top; /* 背景画像の横位置を中央、上下位置を上に配置 */

        border-radius: 5px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 
        overflow: hidden;

        position: absolute;
        top: 0;
        left: 0;
        width: 70px;
        height: 70px;
    }

    .arrow{
        z-index: 3; /* 重ね順を指定 */
        position: absolute;
        left: 0;
        top: 75px;
    }






.right_block{
    padding-left: 10px;
    width: 250px;

}

.top_area{

    height: 140px;

}

.bottom_area{

    margin-bottom: 0;

}





.more{
    width: 230px;

}



}
/* -----------------------------------『スマホ用設定』-----------------------------------*/
  @media(max-width: 599px){

    .item{
        width:min(83vw,470px);
        height: 260px;
        background: #FFD699;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* 横方向のオフセット0px、縦方向のオフセット2px、ぼかし半径4px、透明度0.2の影 */
        padding: 10px;
        margin: 25px 20px; /* 上下に15px、左右に10pxのマージン */
        border-radius: 10px; /* すべての角を10pxの円形に丸める */
        position: relative;
        }
    .item h2{
        font-size: 16px;
        margin: 10px;
        color: 
        #FF55C5;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
        }
    .item .youtube_flag{
        position: absolute;
        top: 0;
        right: 0;
        width:50px;
    }
    .item .deta{
        width: 100%;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    
        display: flex;
        justify-content: space-between;
    }
    
    .left_block{
        /* background: #000000; */
        width: 40%;
        height:200px;
    
        padding-left: 10px;
        position: relative;
    
    }
        .image-container_a{
            z-index: 1; /* 重ね順を指定 */
            background-size: cover;
            background-position: center top; /* 背景画像の横位置を中央、上下位置を上に配置 */
    
            border-radius: 5px;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 
            overflow: hidden;
    
            position: absolute;
            bottom: 10px;
            right: 0;
            width: 90%;
            height: 170px;
        }
    
        .image-container_b{
            
            z-index: 2; /* 重ね順を指定 */
            background-size: cover;
            background-position: center top; /* 背景画像の横位置を中央、上下位置を上に配置 */
    
            border-radius: 5px;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 
            overflow: hidden;
    
            position: absolute;
            top: 0;
            left: 3px;
            width: 50px;
            height: 50px;
        }
    
        .arrow{
            z-index: 3; /* 重ね順を指定 */
            position: absolute;
            left: 10px;
            top: 55px;
            width:30px;
        }
    
    
    
    
    
    
    .right_block{
        width:400px;
        padding-left: 10px;
        padding-right: 10px;
        width: 60%;
        /* background: #747070; */
    
    }
    
    .top_area{
    
        height: 150px;
    
    }
    
    .bottom_area{
    
        margin-bottom: 0;
    
    }
    
    
    
    
    
    .more{
        width: 100%;
    
    }








}