@charset "utf-8";

body {
	margin: 0; /*上下左右の間隔*/
	position: relative;
	font-family: "Helvetica Neue", Arial, sans-serif;
	background-color: #e8e8e8;
}

.dic {
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	margin-top: 100px;
}

#dic-select-wrapper {
	display: inline-flex;
	position: relative;
	align-items: center;
	width: fit-content;
}

#dic-select-wrapper::after {
	position: absolute;
	right: 15px;
	width: 10px;
	height: 7px;
	background-color: #535353;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: "";
	pointer-events: none;
}

#dic-select {
	appearance: none;
	min-width: 230px;
	height: 2.8em;
	padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
	border: 1px solid #000;
	border-radius: 25px;
	background-color: #b9b9b9;
	color: #000;
	font-size: 1em;
	cursor: pointer;
}

#user-dic {
	height: 50px;
	width: 50px;
}

#result {
	margin-top: 60px;
	margin-bottom: 45vh;
	text-align: center;
}

#status {
	position: fixed; /*画面上の絶対位置*/
	bottom: 140px; /*下からの指定*/
	left: 50vw; /*左からの指定。vhの横版（width）*/
	transform: translateX(-50%); /*左にそのものの50％分ずらして中央に配置*/
	background-color: #fff;
}

#vol-buttons {
	position: fixed;
	top: 100px;
	right: 0px;
	border: 1px solid #000;
	background-color: #b9b9b9;
}

.vol-button {
	display: block;
	height: 50px;
	width: 50px;
}

.circle-button {
	border: 1px solid #000;
	border-radius: 50%;
	background-color: #b9b9b9;
}

#cam-button {
	position: fixed;
	bottom: 30px;
	left: 25vw;
	transform: translateX(-50%);
}

#rec-buttons {
	position: fixed;
	bottom: 30px;
	left: 50vw;
	transform: translateX(-50%);
}

#text-button {
	position: fixed;
	bottom: 30px;
	left: 75vw;
	transform: translateX(-50%);
}

@media (width <= 600px) {
	#cam-button > a > .circle-button {
		height: 75px;
		width: 75px;
	}

	#rec-buttons > a > .circle-button {
		height: 100px;
		width: 100px;
	}

	#text-button > a > .circle-button {
		height: 75px;
		width: 75px;
	}
}

@media (600px < width) {
	#cam-button > a > .circle-button {
		height: 100px;
		width: 100px;
	}

	#rec-buttons > a > .circle-button {
		height: 100px;
		width: 100px;
	}

	#text-button > a > .circle-button {
		height: 100px;
		width: 100px;
	}
}

/*＃はID。.はクラス*/
