@charset "UTF-8";



#topContentMsg{
	justify-content: center;
  position: absolute;
  width: 100vw;
  top: 10vw;/*上部マージンで中央調整*/
  margin: auto;
  z-index: 1;
  display: flex;
  flex-flow: column;
  color: #fff;
}
#topContentMsg > h2{
    width: 80%;
  text-align: center;
  font-size: 7vw;
  line-height: 10vw;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  transform: initial;
  margin-top: 5vw;/*上部マージンでロゴとの間隔を調整*/
  font-weight: 500;
}



/* タブ */
.navs{
	width: 100%;
	height: 14vw;
	margin-bottom: 10vw;
	display: flex;
	justify-content: center;
	padding: 0vw 10vw;
	text-align: center;
	border-bottom: 0.5vw solid #202020;
	background-color: #fff;
	position: relative;
}
.navs_item,li .navs_item>a {
	width: calc(100%/2);
	height: 100%;
	padding-top: 5.6vw;/*高さ調整*/
	font-size: 110%;
	font-weight: bold;
	line-height: 3.0vw;
	background-color: #fff;
	text-align: center;
    display: block;
	float: left;
	transition: all 0.3s ease;
	cursor: pointer;
}
.navs li+li{
    position: relative;
}
.navs li+li::before{
    content: "";
    display: block;
    height: 4vw;
    border-left: 0.5vw solid #202020;
    position: absolute;
    margin: auto;
}
.navs li:first-of-type{
	border-left: none;
}
.navs_item_current{	
	background-color: #202020;
	color:#fff;
}
.navs .navs_item_current + li::before {
	display:none;
}
.navs span{
	display: inline-block;
	width: 100%;
	font-size: 65%;
}
.list-wrap-tab ul.hide{
	display: none;
}

	





