﻿@charset "utf-8";

/* =======================================================================
	BASE_STYLE
======================================================================= */
html {height:100%;box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, 
pre, code, form, fieldset, legend, input, textarea, 
p, blockquote, th, td{margin:0;padding:0;}
a {outline: none; color:#0055AC;}
img { border:none }
h1,h2,h3,h4,h5,h6 {	font-size:100%;	font-weight:normal;}
body{
	width:100%;
	height:100%;
	font-size:15px;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
/* Clearfix */
.cf:after {
	content: "";
	clear: both;
	display: block;
}

/* =======================================================================
	開閉パネル
======================================================================= */
body {
	overflow: hidden;
	transition: transform .2s;
	-webkit-transition: -webkit-transform .2s;
}
body.ps-active {
	-webkit-transform: translateX(260px);
	-ms-transform: translateX(260px);
	transform: translateX(260px);
}
.panel {
	width: 260px;
	height: 100vh;
	padding: 30px;
	background:#FFF;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	position: fixed;
	top: 0;
	z-index:2;
	overflow-y: scroll;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .3);
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .3);
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
#left-panel {
	-webkit-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	transform: translateX(-260px);
	background-color:rgba(0,0,0,0.05);
}
.panel-btn:after {
	width:53px;
	height:63px;
	display:block;
	background:url(../img/panel_btn_close.png) no-repeat;
	content: "";
	position: absolute;
	top:70px;
	left:0;
	z-index:20000;
}
.panel-btn.ac:after {
	width:53px;
	height:63px;
	display:block;
	background:url(../img/panel_btn_open.png) no-repeat;
	content: "";
	position: absolute;
	top:70px;
	left:0;
	z-index:20000;
}

/* 検索フォーム */
.searchFrame{
	position: absolute;
	display: inline-block;
	top:10px;
	left:65px;
	z-index:20000;
}
.searchFrame .inputBox{
	width:280px;
	padding:6px 12px;
}
.searchFrame ::placeholder {
	font-size:14px;
	color:#bbb;
}
.searchFrame .clearButton{
	width: 16px;
	height: 16px;
	position: absolute;
	right: 10px;
	top: 10px;
	background: url(../img/clearbtn.png) no-repeat left center;
	cursor: pointer;
}
.searchFrame input:focus {
	outline: 2px #333 solid;
}


