/*
Theme Name: mytheme
Template: common
*/

.hover {
    display: inline-block;
    overflow: hidden;
  }

  .hover {
    display: block;
    transition-duration: .5s;
  }

  .hover:hover {
    transform: scale(1.05);
  }

  a {
    text-decoration: none;
  }


@media screen and (max-width: 797px) {
    .pc {
        display: none;
    }
}

@media screen and (min-width: 797px) {
    .mobile {
        display: none;
    }
}
  