@media screen and (min-width:1024px) {
  html{
    font-size: 14px;
  }
  .phone{
    display: none;
  }
  
}
@media screen and (max-width:1023px) {
  html{
    font-size: 18px;
  }
  .pc{
    display: none!important;
  }
}

