.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    overscroll-behavior: contain;
}

.sptul{
	display:none;
}

.sptul.show{
	display:block;
}

.sptul__wrap-content{
	position:fixed;
	top:50%;
	left:50%;
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	background:#fff;
	z-index:200003;
	width:100%;
	max-width:320px;
	padding:40px;
	-webkit-box-shadow:0 0 5px rgb(0 0 0 / 10%);
	box-shadow:0 0 5px rgb(0 0 0 / 10%);
}

.sptul__shadow{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:2003;
	background-color:rgba(0,0,0,.24);
	-webkit-backdrop-filter:blur(6px);
	backdrop-filter:blur(6px);
	z-index:200002;
}

.sptul__content{
	text-align:center;
}

.sptul__title{
	font-size: 20px;
	margin-bottom:30px;
	font-weight:bold;
}

.sptul__list{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin:0;
	padding:0;
	list-style:none;
}

.sptul__list__item{
	display: inline-block;
    margin-bottom: 15px;
    width: 130px;
    padding: 10px;
    background: #c01c1c;
    font-size: 1.15em;
}

.sptul__list__item + .sptul__list__item {
    margin: 0;
    background: none;
    font-size: 0.9em;
}

.sptul__list__item a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
}

.sptul__list__item + .sptul__list__item a {
	color: #585858;
	font-weight: lighter;
}