/*スマホ用CSS*/

*{
	margin:0;
	padding:0;
}
html{
	scroll-behavior: smooth;
}
a{
	color: #00A3D8;
}

body{
	font-family: "Meiryo UI", "Hiragino Sans", "Yu Gothic UI", "MS PGothic", "Hiragino Kaku Gothic ProN", sans-serif;
	background: #FAE5E4;
	color:#555;
}
#container{
	padding-bottom: 200px;
	width: 480px;
	overflow: hidden;
	background: #fff;
}
.spNone{
	display: none;
}
li{
	list-style:none;
}
h1,h2,h3,h4,h5{
	font-weight:normal;
}
header{
	height: 80px;
	padding-top:10px;
	position: relative;
	background: url(../img/sp-head-rogo.png) no-repeat 0px 0px;
}
header h1{
	width:250px;
	height: 20px;
	font-size: 18px;
	position: absolute;
	top:50px;
	left:5px;
	white-space: nowrap;
}
header p{
	position: absolute;
	top: 0px;
	right: 0px;
	width:219px;
	height: 46px;
	background: url(../img/sp-head-tel.png) no-repeat;
	text-indent: -9999px;
}
#telLink{
	display: block;
	width:300px;
	height: 60px;
}
#logoutBtn{
	position: absolute;
	top:55px;
	right: 10px;
	background: #999;
	color: #fff;
	padding: 5px 10px;
	text-decoration: none;
	line-height: 1;
	border-radius:8px;
}


footer{
	height: 186px;
	margin:-100px 0 0 0;
	background: url(../img/footer.png) center center;
	position:relative;
}
footer p{
	position: absolute;
	top: 150px;
	left:50%;
	margin: 0 0 0 -100px;
}

#pan {
	padding: 10px;
	display: flex;
}
#pan li {
	padding: 0 10px 0 0;
	white-space: nowrap;
}
#pan li:not(:last-child):after {
	content: "＞";
	display: inline-block;
	padding: 0 0 0 10px;
}

/* ログイン
======================================*/
#login #logoutBtn{
	display: none;
}
#login #container{
	padding-bottom: 0px;
}
#loginBox{
	background-position:center bottom;
	background-repeat: no-repeat;
	background-size:600px 400px;
	height: 640px;
}
#loginBox form{
	background: #66C4CC;
	padding: 20px 0;
	text-align:center;
}
#loginBox h2{
	margin: 0 20px;
	font-size:20px;
	padding: 10px 20px;
	text-align: center;
	line-height:1.4;
	background: #fff;
	display: inline-block;
	border-radius: 20px;
}
#loginBox ul{
	display: flex;
	margin: 40px 20px 0;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
#loginBox li{
	width: 220px;
	padding: 0 0 60px;
	position:relative;
}
#loginBox input{
	width: 190px;
	height: 40px;
	padding:0 10px;
	font-size: 18px;
	border:1px #ccc solid;
	border-radius: 8px;
	box-sizing: content-box;
}
#loginBox label{
	position: absolute;
	top:10px;
	left: 20px;
	color: #66C4CD;
  transform-origin: 0 0;
  transition: all 0.2s ease;
}
#loginBox input:focus+label{
	transform: scale(0.9) translateX(0) translateY(-25px);
	background:#fff;
	padding:0 8px;
	border-radius: 5px;
}
#loginBox input:not(:placeholder-shown)+label{
	transform: scale(0.9) translateX(0) translateY(-25px);
	background:#fff;
	padding:0 8px;
	border-radius: 5px;
}
#loginBox #submitBtn{
	background: #F6AD4D;
	color:#fff;
	box-shadow: 0px 0px 3px #fff;
	border:1px #fff solid;
	font-size:20px;
}

#loginBox li a{
	color: #fff;
	white-space: nowrap;
}
#loginBox li:nth-of-type(3){
	margin-left: 110px;
	padding-bottom:10px;
}
#loginBox li:nth-of-type(4){
	padding: 10px 0 0 10px;
	text-align:left;
	position: absolute;
	top: 40px;
	left:0;
}
#loginBox li:nth-of-type(5){
	padding: 10px 0 0 10px;
	text-align:left;
	position: absolute;
	top: 40px;
	left:220px;
}