@charset "utf-8";
/* CSS Document */
/*-----------------
base
------------------*/
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.yusei-magic-regular {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
html{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}
body{
	background-image: url(../images/bg.png);
	margin: 0 auto;
	width: auto;
	max-width: 640px;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
 	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 1.5rem;
	line-height: 1;
}
a{
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	text-decoration: none;
	transition: all .2s;
	-webkit-transition: all .2s;
	-mos-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;		
}
a:hover{
	opacity: 0.7;
}
img{
	height: auto;
	max-width: 100%;
}
input, textarea, button, select{
	appearance: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	outline: none;
	color: #333;
	font-size: 1.5rem;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
}
p{
	line-height: 1.6;
	font-size: 2.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
}
 :root {
      --blue: #00bfff;
      --dark-blue: #0085b2;
			--green: #00a396;
	 		--dark-green: #00514b;
	 		--pale-green: #bce9e6;
	 		--gray:#eeeeee;
	 		--dark-gray: #666666;
    }
/*--------------------------------------------------------------
parts(PC)
---------------------------------------------------------------*/
.inner{
	width: 92%;
	box-sizing: border-box;
	margin: 0 auto;
}
/*--------------------------------------------------------------
ログイン画面
---------------------------------------------------------------*/
.login{
	height: 100vh;
}
/*タイトル*/
.ttl{
	padding: 30px  0 60px;
	text-align: center;
}
/*青ボタン*/
.btn_area{
	width: 80%;
	margin: 0 auto;
}
.btn_blue a{
	text-align: center;
	letter-spacing: 0.1em;
	padding: 0.5em 1em;
	font-size: 2.4rem;
	color: #FFF;
  display: inline-block;
	width: 100%;
	height: 54px;
	text-decoration: none;
	background: var(--blue);
	border-bottom: solid 4px var(--dark-blue);
	border-radius: 10px;
}
.register p{
	text-align: center;
	font-size: 1.4rem;
	color: var(--dark-gray);
	margin: 6px 0 80px;
}
.form-label{
	font-size: 2.0rem;
}
.form-control{
	height: 50px;
	margin-bottom: 30px;
	border-radius: 8px;
	border: solid 3px var(--pale-green);
	box-shadow: 0 0 14px rgb(0, 0, 0, 0.09);
}
/*緑ボタン*/
.btn_green {
	text-align: center;
	letter-spacing: 0.1em;
	padding: 0.5em 1em;
	font-size: 2.4rem;
	color: #FFF;
  display: inline-block;
	width: 100%;
	height: 54px;
	text-decoration: none;
	background: var(--green);
	border-bottom: solid 4px var(--dark-green);
	border-radius: 10px;
	margin-bottom: 30px;
}
/*--------------------------------------------------------------
QR画面
---------------------------------------------------------------*/
.qr{
	height: 100vh;
}
/*header*/
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 56px;
	background-color: var(--green);
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}
/*戻るボタン*/
.btn_back a{
	line-height: 2;
	letter-spacing: 0.1em;
	padding: 0.6em 1em 0.6em 2em;
	font-size: 1.6rem;
	color: #FFF;
  display: inline-block;
	width: 100%;
	height: 56px;
	text-decoration: none;
	background: var(--dark-green);
	position: relative;
}
.btn_back a::before{
	position: absolute;
	width: 15px;
	height: 26px;
	content: "";
	top: 0.9em;
	left: 0.5em;
	background-image: url(../images/arrow.png);
}
/*ヘッダータイトル*/
.header_ttl{
	color: #fff;
	font-size: 2.4rem;
	padding-right: 0.5em;
}
/*ORコード*/
.qr_img{
	width: 300px;
	height: auto;
	margin: 56px auto 0;
	padding: 30px 0;
}
.qr_img img{
	width: 300px;
	background-color: #fff;
	padding: 10px;
	border: solid 3px var(--blue);
	border-radius: 10px;
}
/*ポイント数*/
.point p{
	text-align: center;
	font-size: 3.0rem;
	color: #fff;
	margin: 0 auto 30px;
	background-image: url(../images/point.png);
	background-size: cover;
	width: 280px;
	height: 60px;
}
/*使用履歴*/
.table_area{
	width: 100%;
	height: calc(100vh - 360px);
	overflow-y: scroll;
	position: relative;
}
.table thead th{
	color: #fff;
	background-color: var(--green);
	position: sticky;
	top: 0;
	left: 0;
}
.table thead th:first-of-type{
	border-radius: 10px 0 0 0;
	border-right: solid 1px #fff;
}
.table thead th:last-of-type{
	border-radius: 0 10px 0 0;
	border-left: solid 1px #fff;
}
.table tbody td{
	border: solid 1px var(--pale-green);
}
.table tbody td:last-of-type{
	text-align: right;
}
/*--------------------------------------------------------------
パスワード設定
---------------------------------------------------------------*/
.pw{
	height: 100vh;
}
/*メールアドレス情報*/
.email_info{
	padding: 40px 0;
}
.email_info dt{
	font-size: 2rem;
	margin-bottom: 8px;
}
.email_info dd{
	background-color: var(--gray);
	border-radius: 10px;
	padding: 0.5em 1em;
}
.note{
	color: var(--dark-gray);
}
.pw .form-label{
	margin-bottom: 20px;
}
.pw .form-control{
	height: 50px;
	margin-bottom: 10px;
	border-radius: 10px;
	border: solid 4px var(--pale-green);
	box-shadow: 0 0 14px rgb(0, 0, 0, 0.09);
}
.pw span{
	text-align: right;
	display: block;
	color: var(--dark-gray); 
	margin-bottom: 60px;
}
/*--------------------------------------------------------------
登録画面
---------------------------------------------------------------*/
.entry{
	height: 100vh;
	margin-top: 56px;
	padding: 30px 0;
}
.entry_info{
	background-color: #fff;
	padding: 4%;
	border-radius: 10px;
	box-shadow: 0 0 14px rgb(0,0,0.0.09);
	margin-bottom: 30px;
}
/*--------------------------------------------------------------
登録完了
---------------------------------------------------------------*/
.done{
	height: 100vh;
	margin-top: 56px;
	padding: 30px 0;
}
.done .email_info{
	margin-top: 0;
}
/*--------------------------------------------------------------
利用規約
---------------------------------------------------------------*/
.terms_info{
	margin-top: 76px;
	background-color: #fff;
	padding: 4%;
	border-radius: 10px;
	box-shadow: 0 0 14px rgb(0,0,0.0.09);
	margin-bottom: 30px;
}
.terms_ttl{
	display: block;
	font-weight: bold;
	margin-bottom: 16px;
}
.terms .btn_green{
	padding-bottom: 30px;
}

@media screen and (min-width: 640px){
	html{
		background-color: #ffffff;
	}
	body{
		width: 640px;
		box-shadow: 0 0 14px rgb(0, 0, 0, 0.09);
	}
	header{
		width: 640px;
	}
}