@charset "UTF-8";
@media screen and (min-width: 1080px) {


	
/* タブ */
.navs{
  width: 100vw;
  height: 6vw;
	margin: 0 0 3vw -10vw;/*  2025ch_0vw*/
  display: flex;
  justify-content: center;
  padding: 0vw 10vw;
  margin-top: 0vw;
  text-align: center;
  border-bottom: 0.25vw solid #202020;
  background-color: #fff;
  position: relative;
}
.navs_item {
	width: calc(81%/2);
	height: 100%;
	padding: 2.2vw 0vw 0vw 0vw;
	/*border-bottom: 0.25vw solid #202020;*/
	font-size: 1.8vw;
	font-weight: bold;
	line-height: 1.2vw;
}
.navs li+li{
    position: relative;
}
.navs li+li::before{
    content: "";
    display: block;
    height: 2.5vw;
    border-left: 0.25vw solid #202020;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.navs li:first-of-type{
  border-left: none;
}
.navs_item_current{	
	width: calc(81%/2);/*  2025ch_(100%/3)*/
	/*border-left: 0.5vw solid #000;*/
	/*border-top: 0.5vw solid #000;*/
	font-weight: bold;
    cursor: pointer;
	background-color: #202020;
  color:#fff;
}
.navs .navs_item_current + li::before {
	display:none;
}
.navs span{
  display: inline-block;
  width: 100%;
  font-size: 0.9vw;
  font-weight: bold;
	padding-top: 0vw;
	font-size: 50%;
	line-height: 1.2vw;
}
.list-wrap-tab ul.hide{ display: none;}

	

}