@charset "utf-8";
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/*ブラウザが勝手にボタン変えない設定*/
input, button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
* body{
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	color: #302522;
	background: #eff0f4;
	-webkit-text-size-adjust: 100%;/*スマホで縦持ち、横持ちで文字を拡大させない*/
	font-size: 18px;/*基本サイズ*/
	}
a{
	text-decoration: none;
	color: #302522;
}
a:hover{
	opacity: 0.7;
}
.txts{
	font-size: 80%;
}
.txtl{
	font-size: 120%;
}
.txtgreen{
	color: #ffffff;
	text-shadow: 2px 2px 5px #000000;
	font-weight: normal;
}

.sp{
	display: block;
}
.pc{
	display: none;
}

/* ログインsp*/
.login_wrap{
	position: relative;
	height: 100vh;
}
.login_box{
	position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
	width: 90.625%;
	max-width: 550px;
	height: 550px;
	padding-bottom: 50px;
	background-color: rgba(255,255,255,1.00);
	border-radius: 7px;
	-webkit-box-shadow: 2px 2px 3px #CCCCCC;
	box-shadow: 2px 2px 3px #CCCCCC;
}
.login_01{
	width: 90%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	line-height: 1.5em;
	text-align: center;
	margin-bottom: 25px;
	padding-top: 25px;
}
.login_01 h1{
	font-size: 120%;
	margin-bottom: 25px;
	font-weight: normal;
}
.login_btwrap{
	width: 85%;
	height: 66px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}
.login_btwrap a{
	color: #333333;
}
.login_bt_pass{
	width: 100%;
	height: 100%;
	border-radius: 2px;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	/*font-size: 24px;*/
	-webkit-box-shadow: 1px 2px 0px #9A9A9A;
	box-shadow: 1px 2px 0px #9A9A9A;
	border: 1px solid #666;
	background-color: #fff;	
	padding-left: 30px;
}
.login_bt_pass:before{
	content: "\f084";
    position: relative;
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 30px;
	color: #88d5a9;	
}
.login_bt_id{
	width: 100%;
	height: 100%;
	border-radius: 2px;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-shadow: 1px 2px 0px #9A9A9A;
	box-shadow: 1px 2px 0px #9A9A9A;
	border: 1px solid #666;
	background-color: #fff;
	padding-left: 30px;
	background-size: 40px auto;
}
.login_bt_id:before{
	content: "\f594";
    position: relative;
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 30px;
	color: #88d5a9;	
}
.login_bt2wrap{
	width: 85%;
	height: 66px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.login_bt2wrap a{
	color: #FFFFFF;
}
.login_bt2{
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-color: #88d5a9;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-shadow: 1px 2px 0px #9A9A9A;
	box-shadow: 1px 2px 0px #9A9A9A;
	border: 1px solid #7dd19f;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 24px;
}
.login_btwrap input {
	width: 90%;
	background-color: #fff;
	border-style: none;
}
input:focus {
	outline: 0;	
}
input::placeholder {
	color:#90908A;
}
input:focus::placeholder {
	color: transparent;
}
input{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
}


/* 画面サイズが641px以上の場合に適用 */
@media only screen and (min-width: 641px) {

.sp{
	display: none;
}
.pc{
	display: block;
}
.login_btwrap{
	width: 65%;
}
.login_bt2wrap{
	width: 65%;
	text-align: center;
}



}
