select::-ms-expand {
	display: none;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	line-height: 1.1em;
    background-image: url(./img/svg/select-arrow.svg);
    background-size: 12px 10px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}

/* スクロールバーを消す */
/* chrome */
body::-webkit-scrollbar {
	display:none;
}
/* IE・Edge */
body{
	-ms-overflow-style: none;
}
/* safari */
body::-webkit-scrollbar {
    display:none;
}
/* firefox */
body{
    scrollbar-width: none;
}

body {
	height: 150px;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
}
body::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}

.v-black{ background-color: black;}
.v-white{ background-color: white;}

.c-height {
  height: 100vh; /* 変数をサポートしていないブラウザのフォールバック */
  height: calc(var(--vh, 1vh) * 100);
}