@charset "utf-8";
/* CSS Document */
/*入力枠*/
input, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 15px;
	outline: solid transparent;
	box-sizing: border-box;
	border-radius: 5px;
	font-family: inherit;
	font-size: 1.6rem;
	transition: 0.2s ease;
	transition-property: background, color, opacity;
	line-height: 1.5;
	border: none;
	background-color: #fff;
	width: 100%;
}
.input--select-wrap {
	position: relative;
}

/*選択の▼*/
.input--select-wrap::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	right: 20px;
	top: calc(50% + 5px);
	transform: translateY(-50%);
	opacity: 0.6;
	z-index: 2;
	transition: 0.2s ease;
	pointer-events: none;
	/*border-top: 6px solid var(--color-accent1);*/
	border-top: 6px solid #000;
	border-right: 4px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 4px solid transparent;
}