@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%; 
  /* 16px * 62.5% = 10px */

  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth; /* スムーズスクロールを有効にする */
}


/* hoverで拡大 */

.zoom-hover {
    transition: transform 0.8s ease;
}

.zoom-hover:hover {
    transform: scale(1.2);
}

