/* 汎用的なレスポンシブWeb設計のためのカスタムCSS */

body {
  /* 最優先に 'Noto Sans JP' を指定。PC内蔵フォントの予備としてBIZゴシックやヒラギノを記述 */
  font-family: "BIZ UDPGothic", 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 画像レスポンシブ自動制御 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* タブコンテンツ非表示・表示クラス */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: tabFadeIn 0.35s ease-out;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 注記・補足ボックスなどのカスタマイズスタイル */
.note-box {
  transition: all 0.2s ease-in-out;
}

.note-box:hover {
  transform: translateX(2px);
}