@charset "UTF-8";
/* css [Tabs Menu] */

/*---------------------------------------------------- */
/* Navi */
/*---------------------------------------------------- */
.tabsmenu {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

.tabs-navi {
	margin: 0 auto;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-flex-direction: row; 
	-ms-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: wrap; 
	-ms-flex-wrap: wrap; 
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.tabs-navi li { 
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	background-color: #fff;
	border: 1px solid #0e8bd2;
	border-left-style: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .25s ease;
	-ms-transition: all .25s ease;
	transition: all .25s ease;
}

.tabs-navi li:first-child {
	border-left-style: solid;
	-webkit-border-radius: 3px 0 0 3px;
	-ms-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

.tabs-navi li:last-child {
	-webkit-border-radius: 0 3px 3px 0;
	-ms-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

.tabs-navi li:hover {
	background-color: #f8f8f8;
}

.tabs-navi li.active {
	background-color: #0e8bd2;
}

.tabs-navi li a {
	line-height: 1.3em;
	text-align: center;
	white-space: wrap;
	display: block;
	outline: none;
	font-weight: 500;
	text-decoration: none;
	color: #333d66;
	width: 100%;
	padding: .6em 10px;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .25s ease;
	-ms-transition: all .25s ease;
	transition: all .25s ease;
}

.tabs-navi li:hover a {
	color: #0e8bd2;
}

.tabs-navi li.active a {
	color: #fff;
}


/* PC */
@media print, screen and (min-width: 960px) {
/*---------------------------------------------------- */
/* Navi */
/*---------------------------------------------------- */
.tabsmenu {
	padding-top: 25px;
	padding-bottom: 15px;
	width: 100%;
}

.tabs-navi {
	max-width: 1060px;
	width: 98%;
	min-height: 45px;
}

.tabs-navi li { 
	font-size: 15px;
	min-height: 45px;
}


}

/* Tablet */
@media all and (max-width: 959px) and (min-width: 600px) {
/*---------------------------------------------------- */
/* Navi */
/*---------------------------------------------------- */
.tabsmenu {
	padding-top: 20px;
	padding-bottom: 12px;
	width: 100%;
}

.tabs-navi {
	width: 96%;
	min-height: 39px;
	margin-bottom: 0;
	padding-right: 0;
	padding-left: 0;
}

.tabs-navi li { 
	font-size: 14px;
	min-height: 39px;
}


}


/* SP */
@media all and (max-width: 599px) {
/*---------------------------------------------------- */
/* Navi */
/*---------------------------------------------------- */
.tabsmenu {
	padding-top: 15px;
	padding-bottom: 10px;
	width: 100%;
}

.tabs-navi {
	width: 96%;
	min-height: 35px;
	margin-bottom: 0;
	padding-right: 0;
	padding-left: 0;
}

.tabs-navi li { 
	font-size: 13px;
	line-height: 35px;
	min-height: 35px;
}

.tabs-navi li a {
	padding: .5em 7px;
}

}