/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */


@media (max-width: 768px) {
	.jspContainer
	{
		
		position: relative;
		padding-bottom: 15px;
	}

	.jspPane
	{
		position: absolute;
	}

	.jspHorizontalBar {
		position:absolute;
		bottom:0;
		left:0;
		width: 100%;
		height: 3px;
	}
	/* 背景 */
	.jspTrack { 
		background:#e5e5e5;
		border-radius: 50px;
		position:relative; 
/*		width: calc(100% - 40px) !important;*/
	}
	/* ノブ */
	.jspDrag { 
		background:#606060; 
		border-radius: 50px;
		position:relative; 
		top:0; 
		left:0; 
		cursor:pointer; 
	}
	.jspHorizontalBar .jspTrack,
	.jspHorizontalBar .jspDrag {
		float:left; 
		height:100%;
		overflow: hidden;
	}
}

.jspVerticalBar *{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: none;
}


.jspTrack
{
	position: relative;
}

.jspDrag
{
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}
.line_pink .jspDrag {
	background: #fe857e;
}
.line_blue .jspDrag {
	background: #00b2f6;
}
.line_yellow .jspDrag {
	background: #f39600;
}

.jspArrow
{
	background: #fe857e;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}
.jspVerticalBar {
	display: none;
}
.jspArrow.jspDisabled
{
	cursor: default;
	background: #eee;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}


.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}
.jspPane {
	margin-left: 0 !important;
	width: auto !important;
}
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}