<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.basal-page {
    margin: 0px;
}
.basal-page_ON {
}
.basal-page_line {
    border-width: 1px 0 0 0; /* 太さ */
    border-style: solid; /* 種類 */
    border-color: white; /* 色 */
    margin: 0px;
}
/*リンクボタン*/
a.buttonTypeA {
    color: #000000 !important;
    font-size: 12px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    font-style: normal !important;
    text-decoration: none !important;
    border-radius: 0px;
    border-style: solid;
    border-color: #f8cd46;
    border-bottom-width: 0px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 6px;
    padding-bottom: 4px;
    padding-top: 4px;
    padding-right: 0px;
    padding-left: 2px;
    display: block;
}
a.buttonTypeA:link {/*未訪問のリンク*/
}
a.buttonTypeA:visited {/*訪問後のリンク*/
}
a.buttonTypeA:hover {/*マウスをのせたとき*/
    border-left-width: 12px;
}
a.buttonTypeA:active {/*クリック中*/
}
/*リンクボタン オン*/
a.buttonTypeON {
    color: #000000 !important;
    font-size: 12px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    font-style: normal !important;
    text-decoration: none !important;
    border-radius: 0px;
    border-style: solid;
    border-color: red;
    border-bottom-width: 0px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 6px;
    padding-bottom: 4px;
    padding-top: 4px;
    padding-right: 0px;
    padding-left: 2px;
    display: block;
}
a.buttonTypeON:link {/*未訪問のリンク*/
}
a.buttonTypeON:visited {/*訪問後のリンク*/
}
a.buttonTypeON:hover {/*マウスをのせたとき*/
    border-left-width: 6px;
}
a.buttonTypeON:active {/*クリック中*/
}

.blink {
  animation: blinkAnime 0.5s infinite alternate;
}
@keyframes blinkAnime{
   0% { opacity: 1; }
    70% { opacity: 1; }
    71% { opacity: 0; }
 100% { opacity: 0; }
}</pre></body></html>