/* モーダル表示時に背景固定 */
body.fixed {
	/* position: fixed; */
	left: 0;
}
.SNK-content {
	display: none;/* 初期状態 */
	position: fixed;
	top: 0;
	width: 100%;/* モーダルは画面いっぱいに */
	height: 100vh;/* モーダルは画面いっぱいに */
	z-index: 10;
}
.SNK-overlay {
	width: 100%;/* 黒背景も画面いっぱいに */
	height: 100vh;/* 黒背景も画面いっぱいに */
	background-color: rgba(0, 0, 0, 0.5);
}
/* 配置関連。モーダル自体とは関係なし */
.SNK-modal {
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
/*    padding: 15px;*/
    border-radius: 10px;
}

.SNK-modal p{
	font-weight: bold;
	font-size: 20px;
	background-color: #36A1C9;
	color: #FFF;
	padding: 15px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.SNK-modal ul{
	margin: -20px 15px 0;
	padding: 10px;
/*	background-color: #EFEFEF;*/
	font-size: 14px;
}

.SNK-modal ul li:first-child{
	margin-bottom: 5px;
}

.SNK-modal ul li:last-child{
	font-size: 12px;
	font-weight: bold;
	margin-left: 10px;
	padding: 10px;
}

.SNK-modal ul li:last-child .small{
	font-weight: normal;
	padding-top: 5px;
}


.SNK-modal form{
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 20px;
	box-sizing: border-box;
	border-top: 1px solid #DDD;
	text-align: center;
}

.SNK-modal input[type=email]{
	display: block;
	width: 80%;
	height: 40px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 5px;
  border: solid 1px;
}

.SNK-modal input.SNK-alart{
  border: solid 1px red;
}

.SNK-modal form .invalid{
	display: none;
	width: 80%;
	margin: 5px auto 0;
	font-size: 12px;
	color: #C00;
	text-align: left;
}


.SNK-modal_form_privacy{
	width: 80%;
	margin: 15px auto 0;
	font-size: 14px;
	text-align: center;
}

.SNK-modal button[type=submit]{
	width: 60%;
	height: 40px;
	border: none;
	box-sizing: border-box;
	background-color: #ff6347;
	margin-top: 15px;
	color: #FFF;
	font-size: 14px;
	vertical-align: middle;
	cursor: pointer;
}

.SNK-modal button[type=submit][disabled]{
	background-color: #CCC;
	cursor: default;
}

#user-email{
	float: left;
	margin-right: 10px;
}

.SNKbtn{
	padding: 2px;
    /* height: 80%; */
    font-size: 14px;
}

.alart-device{
	font-size: 200%;
    color: red;
    font-weight: bold;
}