* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body {
	background: #fff;
	color: #231815;
}
input::placeholder {
	color: #666; /* デフォルトより濃いグレー */
}
input {
	font-size: 16px;
}
.value {
	font-size: 16px;
}

@media screen and (max-width:430px) {
	.sp {
	}
	.pc {
		display: none !important;
	}
}
@media screen and (min-width:431px) {
	.sp {
		display: none !important;
	}
	.pc {
	}
}

.page-dev {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
.page {
	position: relative;
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	overflow-y: scroll;
	min-width: 320px;
	/* padding-top: 30px; */
}

.footer {
	z-index: 10;
}
.header {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	gap: 6px;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 10;
}
.header .back {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}
.header .back img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}
.header .title {
	flex: 1;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
}
.header .icon {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 0;
}
.header .icon img {
	height: 24px;
	object-fit: contain;
}
.header .icon .pointer {
	position: absolute;
	bottom: 2px;
	width: 4px;
	height: 4px;
	border-radius: 4px;
	background: #B7FF49;
}