.wrapper {
	height: 100%;
	min-height: 100vh;
	position: relative;/*←相対位置*/
	box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
	padding-bottom: 20px;/*←footerの高さ*/
}
.wrapper_pwa {
	height: 100%;
	min-height: 100vh;
	position: relative;/*←相対位置*/
	box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
	padding-bottom: 50px;/*←footerの高さ*/
}

.container {
	max-width: 160.0rem;
	font-size: 0.7em;
}
.container_pwa {
	max-width: 160.0rem;
	font-size: 0.7em;
}

.top-nav {
	max-width: 160rem;
}
.top-nav_pwa {
	max-width: 160rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	margin: 0 auto 2rem;
}

.footer {
	position: fixed;
	bottom: 0; /*下に固定*/
	left: 0;
	text-align: right;
	width: 100%;
	height: 20px;
	color: #6baeff;
	background: #e6effb;
	font-size: 0.7em;
}
.footer_pwa {
	align-items: center;
	text-align: center;
	vertical-align: top;
	position: fixed;
	bottom: 0; /*下に固定*/
	left: 0;
	width: 100%;
	height: 50px;
	color: #6baeff;
	background: #e6effb;
	font-size: 1em;
}
.f_label{
	font-size: 0.7em;
}
.footer_pwa ul {
	display: flex;
	justify-content: space-around;
}
.footer_pwa li {
	list-style: none;
}
body {
	padding-bottom: env(safe-area-inset-bottom);
}