/*モバイル対応*/

@media screen and (max-width:959px){
    /*959px以下に適用されるcss(タブレット用)*/
    
}

@media screen and(max-width:480px){
    /*480px以下に適用されるcss(スマホ用)*/
    
    .main_content{
        max-width: 100%;
    }
    
    .container{
        overflow: hidden;
    }
    
   
        

}

@media only screen and (min-width:1000px){
    
    
}

/*PCで電話番号リンクを無効に*/
@media(min-width:751px){
 a[href*="tel:"]{
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
