@charset "UTF-8";
/* CSS Document */

body{
	max-width: 100vw;
	height: 100vh;
	background-color:  rgb(16,25,119);
}
.wrapper{
	width: 100%;
	min-height: 88vh;
	margin: 6vh 0;
	padding: 0;
	position: relative;
	bottom: 0;
	background-color: white;
	text-align: center;
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','YuGothic','Yu Gothic',sans-serif;
	font-size: 3.5vw;
	font-weight: normal;
	color: rgb(16,25,119)
}

/*配置調整*/
.contents {
	width: 100%;
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translateY(-57%) translateX(-50%);
}

/*ロゴ*/
img{
	display: block;
	margin: 0 auto;
	width: 60%;
	position: relative;
	left: -3%;
}

/*認証表示*/
.box {
	width: 8em;
    margin: 0.5em auto 1.5em;
	padding: 0.8em 0.4em;
    border: solid 0.04em rgb(16,25,119);
    border-radius: 0.4em;
}
.box span{
	display: inline-block;
	margin: 0;
	padding: 0;
	letter-spacing: 0.33em;
	text-indent: 0.37em;
}
.box p {
	display: inline-block;
    margin: 0; 
    padding: 0;
}

/*サービス説明*/
.text{
    position: relative;
    display: inline-block;
    margin: 0;
}
.text span.first{
  display: block;
  padding-left: 0.75em;
  margin-bottom: 0.2em;
  font-weight: bold;
  font-size: 5vw;
}
.text span.latter{
    display: block;
    margin-bottom: 0.4em;
    font-weight: bold;
    font-size: 5vw;
  }
.text p{
  display: block;
  margin: 0;
}

/*ログインボタン*/
.container{
	margin: 2em 0 0;
}
.btn-login {
 	display: inline-block;
	padding: 1.2em;
	background-color: rgb(16,25,119);
  	color: #FFFFFF;
  	text-decoration: none;
  	font-weight: bold;
  	letter-spacing: 0.1em;
	text-indent: 0.1em;
  	border-radius: 0.4em;
 	border: 0.05em solid #FFFFFF;
	box-shadow: 0.2em 0.2em rgb(235,134,0);
}
.btn-login:hover {
	background-color: #FFFFFF;
	color: rgb(16,25,119);
	border: 0.05em solid rgb(16,25,119);
}
.btn-login:active {
	transform: translate(0.25em,0.25em);
	box-shadow: 0 0 #FFFFFF;
}
