/* ファビコン用のスタイル */
.favicon {
  width: 32px;
  height: 32px;
  background-color: #000000;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.favicon::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background-color: #FFDD00;
  border-radius: 50%;
}
