<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* --------------------------------------------------
	競馬開催日のご入場方法　共通
-------------------------------------------------- */

/* - 切り替えエリア
-------------------------------------------------- */
.switch_area {
    border: 4px solid #268300;
    padding: 10px;
}

.switch_area div.nav.pills &gt; div &gt; a { font-weight: bold; padding: 10px 4px; }
.switch_area div.nav.pills &gt; div.current &gt; a { background-color: #268300; }

.switch_area .switch_content { padding: 0 10px 10px; display: none; }

.switch_area .switch_content.on {
    display: block;
    animation: obj_fade_in 0.5s ease-in-out;
}

@keyframes obj_fade_in {
    from{ opacity: 0; }
    to{ opacity: 1; }
}
</pre></body></html>