ファビコン
32 × 32 px

Windows用アイコン(小)
70 × 70 px

Windows用アイコン(中)
150 × 150 px

iOS端末用Webクリップアイコン
180 × 180 px

Android端末用Webクリップアイコン
192 × 192 px

Windows用アイコン(大)・Instagram用アイコン
320 × 320 px

Twitter用アイコン
400 × 400 px

サマリーカード・YouTube用アイコン
800 × 800 px

save as a .png

アイコンを右クリック
名前をつけて画像を保存
    
Font Face

IPA Font (IPAGothic/IPAPGothic)
IPAゴシック/IPA Pゴシック (Ver.003.03)

by 文字情報技術促進協議会
    
// フォントの指定 と 変形

@font-face {
  font-family: "ipag";
  src: url("/ipag.ttc");
}

.cc {
  display: inline-block;
  font-family: "ipag", monospace;
  font-weight: 500;
  transform: scale(1, 1.25);
}
    
// CSS で ロゴを描画

#js-button {
  appearance: none;
  outline: none;
}

#js-button,
#js-button b {
  box-sizing: border-box;
}

#js-button {
  background-color: transparent;
  border-radius: 50%;
  color: #000;
  display: grid;
  place-items: center;
}

#js-button b::before {
  content: 'CC';
  display: inline-block;
  font-family: "ipag", monospace;
  transform: scale(1, 1.25);
}

#js-button {
  border: solid 0.2rem;
  font-size: 1.75rem;
  margin: 1rem;
  width: 3.33rem;
  height: 3.33rem;
}

@media screen and (max-width: 750px) {
  #js-button {
    border: solid 0.45vw;
    font-size: 4vw;
    margin: 2.5%;
    width: 7.5vw;
    height: 7.5vw;
  }
}