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

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

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

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

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

/*サービス説明*/
.text{
  	position: relative;
  	display: inline-block;
  	margin: 2em 0;
}
.text span{
	display: inline-block;
	margin-bottom: 0.4em;
	font-weight: bold;
	font-size: 3vw;
}
.text p{
	display: block;
	margin: 0;
}

/*上線*/
.text:before {
 	content: '';
  	position: absolute;
  	left: 50%;
  	top: -1.2em;
 	display: inline-block;
  	width: 28em;
  	height: 0.04em;
  	transform: translateX(-50%);
  	background-color: rgb(16,25,119);
}

/*下線*/
.text:after {
  	content: '';
  	position: absolute;
  	left: 50%;
  	bottom: -1.2em;
  	display: inline-block;
  	width: 28em;
  	height: 0.04em;
  	transform: translateX(-50%);
  	background-color: rgb(16,25,119);
}

/*ログインボタン*/
.container{
	margin: 2em 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-sizing: border-box;
	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;
}
