@charset "UTF-8";

/* CSS Document */



/*ここはモバイル時横メニューは表示しない。*/
/*tablet*/

@media(min-width:768px) {

.p-tab-menu
{
	width:100%;
	background: #ffffff;
}

.p-tab-menu-list
{
	
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 5px;
}

.p-tab-menu-list li
{
	display: flex;
	flex: 0 1 20%;
	height: 40px;
	display: inline;
	list-style: none;
	padding-top: 15px;
	border-right: 1px dotted #000;
	font-size:75%;
}

.p-tab-menu-list li:last-child
{
	border-right:0px;
}

.p-tab-menu-list li a
{
	color: #333333;
}

.p-tab-menu-list li a:hover
{
	color: #999999;
	text-decoration: none;
	background: #ffffff;
}

.p-tab-menu-list li:hover
{
	background: #ffffff;
}
}

/*PC*/
@media(min-width:992px) {
	
	.p-tab-menu-list
{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin: 0 auto;
	text-align: center;
}

.p-tab-menu-list li
{
	float: left;
	flex: 0 1 30%;
	height: 45px;
	display: inline;
	list-style: none;
	padding-top: 15px;
	font-size:85%;
	border-right: 1px #000000 dotted;
}
	
.p-tab-menu-list li:last-child
{
	float: left;
	flex: 0 1 30%;
	height: 45px;
	display: inline;
	list-style: none;
	padding-top: 15px;
	font-size:85%;
	border-right: 0px ;
}
}

/*large-PC*/

@media(min-width:1200px) {

.p-tab-menu-list
{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin: 0 auto;
	text-align: center;
}

.p-tab-menu-list li
{
	float: left;
	flex: 0 1 20%;
	height: 45px;
	display: inline;
	list-style: none;
	padding-top: 15px;
	font-size:95%;
	border-right: 1px #000000 dotted;
}
	
	.p-tab-menu-list li:last-child
{
	float: left;
	flex: 0 1 20%;
	height: 45px;
	display: inline;
	list-style: none;
	padding-top: 15px;
	font-size:95%;
	border-right: 0px ;
}
	

}
