/*スマホ用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;
	background: #fff;
	padding-left: 5px;
	padding-right: 5px;
}
.spNone{
	display: none;
}
li{
	list-style:none;
}
h1,h2,h3,h4,h5{
	font-weight:normal;
}
header{
	display:grid;
	grid-template-columns:1fr 1fr;
	column-gap: 20px;
	position: relative;
	margin:0 0 15px;
	align-items:flex-start;
}
header h1{
	font-size: 4vw;
	white-space: nowrap;
	padding:11vw 0 0 10px;
	background: url(../img/sp-head-rogo.png) no-repeat 0px 0px;
	background-size:100%;
	grid-row:span 2;
}
header p{
	aspect-ratio:219 / 46;
	background: url(../img/sp-head-tel.png) no-repeat;
	background-size:100%;
	text-indent: -9999px;
}
#telLink{
	display: block;
}
header ul{
}
header li{
	text-align: right;
}
#logoutBtn{
	background: #999;
	color: #fff;
	padding: 5px 10px;
	text-decoration: none;
	line-height: 1;
	border-radius:8px;
	font-size:3vw;
}


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;
	overflow: hidden;
}
#pan li {
	padding: 0 5px 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 ul{
	width:84%;
	display: grid;
	grid-template-columns:minmax(120px,280px) minmax(120px,280px);
	gap:5%;
	margin: 40px 8% 0;
}
#loginBox li{
	position:relative;
	margin-bottom:10px;
}
#loginBox li:nth-of-type(3),
#loginBox li:last-child{
	grid-row: span 2;
}
#loginBox input{
	width: 90%;
	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: 10px;
	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;
}