/*
Theme Name: biz-vektor-child
Template: biz-vektor
*/
@charset “UTF-8”;

/* 問診票セレクトボックスに矢印を表示 */
table.form_fever select {
    -webkit-appearance: none; /* Chrome, Safari用 */
    -moz-appearance: none;    /* Firefox用 */
    appearance: none;         /* 標準の矢印を非表示 */
    
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
    display: block;
    width: 100%;
    padding: 10px 30px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

/* IE用 */
.custom-select::-ms-expand {
    display: none;
}
