/**************************************************************************
	基本設定
***************************************************************************/
@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, font, img, ins,
kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
/*dl, dt, dd, ol, ul, li,*/
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-weight:inherit;
	font-style:inherit;
	font-size:100%;
	font-family:inherit;
	vertical-align:baseline;
}
:focus{
	outline:0;
}
a, a:link, a:visited, a:hover, a:active{
	text-decoration:none;
}
table{
	border-collapse:separate;
	border-spacing:0;
}
th, td{
	text-align:left;
	font-weight:normal;
}
img, iframe {
	border:none;
	text-decoration:none;
}
/*
ol, ul{
	list-style:none;
}
*/
input, textarea, select, button {
	font-size:100%;
	font-family:inherit;
}
select{
	margin:inherit;
}
hr{
	margin:0;
	padding:0;
	border:0;
	color:#000;
	background-color:#000;
	height:1px;
}
html{
	overflow-y:scroll;
	height: 100%;
}
body {
	height: 100%;
	padding:0;
	margin: 0;
	font:13px Verdana,Arial,Helvetica,sans-serif;
	line-height:1.3;*font-size:small;*font:x-small;
	font-family:Meiryo,'メイリオ','Lucida Grande',Verdana,
	'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック',sans-serif;
	color:#000;
}
body * {
	font-size:100%;
}
body pre,code,kbd,samp,tt {
	font-family:monospace;
	*font-size:108%;
	line-height:100%;
}
img {
	-ms-interpolation-mode: bicubic;
}
br {
	letter-spacing:normal;
}

/*************************/
a:link{
	color:#005196;
	outline:none;
/*		text-decoration:underline;*/
	text-decoration:none;
}
a:visited{
	color:#005196;
}
a:hover{
	color:#4882b4;
}
a:active{
	color:#4882b4;
}
a:hover img{
	opacity:.50;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	-MS-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
p{
	padding:12px 0;
	letter-spacing:0.05em;
	line-height:1.6em;
	font-size:100%;
}
hr {
	height: 4px;
	margin-left: 15px;
	margin-bottom:-3px;
}
.hr-warning{
	background-image: -webkit-linear-gradient(left, rgba(210,105,30,.8), rgba(210,105,30,.6), rgba(256,256,256,256));
}
.hr-success{
	background-image: -webkit-linear-gradient(left, rgba(15,157,88,.8), rgba(15, 157, 88,.6), rgba(256,256,256,256));
}
.hr-primary{
	background-image: -webkit-linear-gradient(left, rgba(66,133,244,.8), rgba(66, 133, 244,.6), rgba(256,256,256,256));
}
.hr-danger{
	background-image: -webkit-linear-gradient(left, rgba(244,67,54,.8), rgba(244,67,54,.6), rgba(256,256,256,256));
}

/**************************************************************************
	bootstrap.min.css コンストラクタの上書き
***************************************************************************/
/*
.container {
	max-width: none !important;
	width: 940px;
}
*/
/*
.navbar-collapse {
	display: block !important;
	height: auto !important;
	padding-bottom: 0;
	overflow: visible !important;
}

.navbar-toggle {
	display: none;
}

.navbar-brand {
	margin-left: -15px;
}
*/
/*
.panel {
  padding: 0px;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
*/


/* pagination //
.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px;
}
.pagination > li {
	display: inline;
}
.pagination > li > a,
.pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #c37854; //#337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	z-index: 2;
	color: #852e19; //#23527c;
	background-color: #eee;
	border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #aa4f37; //#337ab7;
	border-color: #aa4f37; //#337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
*/
/* テーブル行方向ホバー（「!important」で優先化） //
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
	background-color: #f2dede !important;
}
*/
/* redio・checkbox */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
	position: static;
	margin-top: 4px \9;
	margin-left: -20px;
}

/* dropdown */
.dropdown-menu > li > a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
/* 2017-03-13*/
	text-decoration: none;
}
.dropdown-header {
	display: block;
	padding: 3px 20px;
	line-height: 1.42857143;
/* 2017-02-24
	font-size: 12px;
	color: #777;
*/
	font-size: 14px;
	color: #ffffff;
	background-color: #2e6da4;

	white-space: nowrap;
}
/* custom inclusion of right, left and below tabs */
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
	border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
	display: none;
}

.tab-content > .active,
.pill-content > .active {
	display: block;
}

.tabs-below > .nav-tabs {
	border-top: 1px solid #ddd;
}

.tabs-below > .nav-tabs > li {
	margin-top: -1px;
	margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
	border-top-color: #ddd;
	border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
	border-color: transparent #ddd #ddd #ddd;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
	float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
	min-width: 74px;
	margin-right: 0;
	margin-bottom: 3px;
}

.tabs-left > .nav-tabs {
	float: left;
	margin-right: 19px;
	border-right: 1px solid #ddd;
}

.tabs-left > .nav-tabs > li > a {
	margin-right: -1px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
	border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
	border-color: #ddd transparent #ddd #ddd;
	*border-right-color: #ffffff;
}

.tabs-right > .nav-tabs {
	float: right;
	margin-left: 19px;
	border-left: 1px solid #ddd;
}

.tabs-right > .nav-tabs > li > a {
	margin-left: -1px;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
	border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
	border-color: #ddd #ddd #ddd transparent;
	*border-left-color: #ffffff;
}
/**************************************************************************
	カスタマイズ
***************************************************************************/
/*
body{
	overflow-x:hidden;
	position: relative;
	height:auto !important; //IE6対策
	height: 100%; //IE6対策
	min-height: 100%;
	background:#e7e7eb;
}
.all{
	width: 980px;
	margin: 0 auto;
	background: #fff;
	box-shadow:0px 0px 8px -2px #333333;
	-moz-box-shadow:0px 0px 8px -2px #333333;
	-webkit-box-shadow:0px 0px 8px -2px #333333;
}
*/
/**********************************************
	ヘッダ
**********************************************/
header.jumbotron {
	background: url("../img/back-body.png");
	background-position: center center;
	background-size: cover;
	color: #fff;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-bottom: 0px;
height:100px;
}
.menu-bar{
	/* Old browsers */
	background: #ffffff;
	/* FF3.6-15 */
	background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
	/* IE6-9 */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
}
/**********************************************
	ページネーションコントロール
**********************************************/
#select-top {
	margin-top:1px;
	padding:5px;
	width:50px;
	height:31px;
text-align:left;
	color: #428bca;
	border: 1px solid #ddd;
	overflow: hidden; 
	position: relative;
	display: block;
	
	outline: 0;
	background:none;
/*	background:#337ab7;*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#line-cnt-top {
	color: #428bca;
	margin-right:10px;
	padding: 10px 8px;
	position: absolute; right: 0; top: 0;
/*		background: #337ab7;*/
	z-index: 1;
	text-align: center;
	width: 5px;
	height: 100%;		 
	pointer-events: none;
	box-sizing: border-box;		
}

#select-bottom {
	margin-top:1px;
	padding:5px;
	width:50px;
	height:31px;
text-align:left;
	color: #428bca;
	border: 1px solid #ddd;
	overflow: hidden; 
	position: relative;
	display: block;
	
	outline: 0;
	background:none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#line-cnt-bottom {
	color: #428bca;
	margin-right:10px;
	padding: 10px 8px;
	position: absolute; right: 0; top: 0;
/*		background: red;*/
	z-index: 1;
	text-align: center;
	width: 5px;
	height: 100%;		 
	pointer-events: none;
	box-sizing: border-box;		
}
/**********************************************
	フッタ
**********************************************/
.footer{
	width: 100%;
	padding: 20px;
	background: #1276b1; /*#046ca9; #00579e; #157bb3;*/
	overflow: hidden;
}
.footer dl{
	float: left;
}
.footer dl dt{
	font-size: 15px;
	padding: 0 0 7px 0;
}
.footer dl dd{
	font-size: 12px;
	line-height: 1.5em;
}
.footer ul{
	float: right;
	text-align: right;
}
.footer ul li{
	margin: 0 0 8px 0;
}
.footer ul li a{
	color: #87b53d;
	text-decoration: none;
	padding: 0 0 0 10px;
	background: url(../img/linkIconS.png) 0 42% no-repeat;
	letter-spacing: 1px;
	font-size: 11px;
}
.footer ul li a:hover{
	color: #303030;
}
/**********************************************
	フッタ
**********************************************/
.swiper-container {
/*	width: 100%;*/
	width: 940px;
	height: 225px;
	margin: 20px auto;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide a{
	text-decoration: none;
}

.append-buttons {
	text-align: center;
	margin-top: 20px;
}
.append-buttons a {
	display: inline-block;
	border: 1px solid #007aff;
	color: #007aff;
	text-decoration: none;
	padding: 4px 10px;
	border-radius: 4px;
	margin: 0 10px;
	font-size: 13px;
}

.bar-color{
	z-index: 2;
	background:
	-moz-linear-gradient(top,#80CCE6,#80CCE6 5%,#09C 5%,#069 95%,#069 95%,#00293D);
	background:
	-webkit-gradient(linear, left top, left bottom, from(#80CCE6), color-stop(0.05,#80CCE6), color-stop(0.05,#09C), color-stop(0.95,#069), color-stop(0.95,#00293D), to(#00293D));
	border: 1px solid #DDD;
	color: #FFF;
}

/**********************************************
	Fixed Top
**********************************************/
#fixedTop {
	right: 10px;
	bottom: 10px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	color: #fff;
	font-size: 40px;
	text-align: center;
	background: #191970;
	position: fixed;
	z-index: 9999;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	transform: scale(0);
	text-decoration: none;
}
#fixedTop:hover {
	opacity: 0.8;
	background: #0000cd;
	text-decoration: none;
}
#fixedTop.show {
	transform: scale(1);
	-webkit-transform: translateZ(0);
}
/*****************************( End of CSS )*******************************/