/*PC用CSS*/

*{
	margin:0;
	padding:0;
}
a{
	color: #00A3D8;
}

body{
	font-family: "Meiryo UI", "Hiragino Sans", "Yu Gothic UI", "MS PGothic", "Hiragino Kaku Gothic ProN", sans-serif;
	background: #fff;
	color:#555;
}
li{
	list-style:none;
}
h1,h2,h3,h4,h5{
	font-weight:normal;
}
.cf:after{
	content:"";
	display:block;
	height: 0;
	clear: both;
}
#container{
	width:1200px;
	margin: 0 auto;
	background: #fff;
	padding-bottom: 200px;
}
header{
	height: 80px;
	padding-top:20px;
	position: relative;
	background: url(../img/head-rogo.png) no-repeat 20px 20px;
}
header h1{
	width:508px;
	height: 58px;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	line-height:58px;
	font-size: 26px;
	margin: 0 auto 0;
	text-align:center;
}
header p{
	position: absolute;
	top: 20px;
	right: 85px;
	width:235px;
	height: 60px;
	background: url(../img/head-tel2.png) no-repeat;
	text-indent: -9999px;
}
#telLink{
	display: block;
	width:235px;
	height: 60px;
	pointer-events: none;
}
#logoutBtn{
	width:60px;
	height: 60px;
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	text-indent: -9999px;
	background: url(../img/head-logout.png) no-repeat;
}

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: 20px;
	width: 1160px;
	overflow: hidden;
	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;
}

/* ログイン
======================================*/
body#login{
	background: #FAE5E4;
}
#login #container{
	padding-bottom: 0;
}

#login header p{
	right: 20px;
	width:300px;
	background: url(../img/head-tel.png) no-repeat;
}
#login #telLink{
	width:300px;
}




#login #logoutBtn{
	display: none;
}


#loginBox{
	background-position: 0 50px;
	background-repeat: no-repeat;
	height: 800px;
}
#loginBox form{
	background: #66C4CC;
	padding: 40px 0;
	text-align:center;
}
#loginBox h2{
	min-width:828px;
	text-align: center;
	background: #fff;
	line-height: 40px;
	display: inline-block;
	border-radius: 20px;
}
#loginBox ul{
	display: flex;
	width: 828px;
	margin: 40px auto 0;
	flex-wrap: wrap;
}
#loginBox li{
	width: 276px;
	position:relative;
}
#loginBox input{
	width: 240px;
	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(4),
#loginBox li:nth-of-type(5){
	padding: 10px 0 0 10px;
	text-align:left;
}