/*SKYLINE-OC用CSS設定*/

/* PC用 */
iframe.oc-counter {
    width: 150px;
    height: 40px;
}

/* スマホ用 */
@media screen and (max-width: 600px) {
    iframe.oc-counter {
        height: 22px; /* ←数字の高さに合わせる */
        width: 100%;  /* ←はみ出し防止 */
    }
}


