.selectbox {
	position: relative; font-size: 1.5rem; display: inline-block;
	&.block {
		display: block; width: 100%;
	}
	select {
		overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; vertical-align: middle; width: 100%; line-height: 43px; padding: 0 20px 0 15px; color: #4C4C4C; background-color: #fff; border: 1px solid var(--line); border-radius: 2px; cursor: pointer;
		&:hover,
		&:focus {
			border-color: #aaa;
		}
		&:disabled {
			background: #f2f2f2; cursor: not-allowed; pointer-events: none;
		}
	}
	&:after { 
		content: ''; width: 6px; height: 6px; right: 15px; top: 19px; border-left: 1px solid #000; border-bottom: 1px solid #000; position: absolute; transform: rotate(-45deg); cursor: pointer;
	}
}


@media (max-width: 1024px) {
	.selectbox {
		font-size: 1.4rem;
	}
}

@media (max-width: 680px) {
	.selectbox {
		font-size: 1.3rem;
	}
}

