@charset "UTF-8";

#newsset{
	max-width: calc(800px + var(--i_padding, 20px));
	margin: 0 auto;
}
#newsset .block_news_1 ul{
	width: 100%;
}
#newsset .tab{
	padding: 0 var(--i_padding, 20px);
	padding-left: calc(var(--i_padding, 20px) + 1px);
	box-sizing: border-box;
	position: relative;
	z-index: 3;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 15px;
}
#newsset .tab li{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 7px 15px 10px;
	line-height: 1;
	position: relative;
	font-size: 1.5rem;
	margin-left: 1px;
	cursor: pointer;
}
#newsset .tab:after,
#newsset .tab li:after{
	content: "";
	display: block;
	width: 1px;
	height: 50%;
	background: var(--i_border_color);
	position: absolute;
	top: 25%;
	left: 100%;
}
#newsset .tab:after{
	left: calc(var(--i_padding, 20px) + 1px);
}
#newsset .tab li.current,
#newsset .tab li:hover{
	background: var(--i_btn_color);
	color: var(--i_btn_txt_color);
}
#newsset .tab li.current:before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top-color: var(--i_btn_color);
	border-bottom: none;
	position: absolute;
	top: 100%;
	left: calc(50% - 8px);
}
#newsset .tab li:nth-of-type(2).current,
#newsset .tab li:nth-of-type(2):hover{
	background: #D64612;
}
#newsset .tab li:nth-of-type(2).current:before{
	border-top-color: #D64612;
}
#newsset .tab li:nth-of-type(3).current,
#newsset .tab li:nth-of-type(3):hover{
	background: #f3b71b;
}
#newsset .tab li:nth-of-type(3).current:before{
	border-top-color: #f3b71b;
}
#newsset .tab li:nth-of-type(4).current,
#newsset .tab li:nth-of-type(4):hover{
	background: #6d406c;
}
#newsset .tab li:nth-of-type(4).current:before{
	border-top-color: #6d406c;
}
#newsset .tab li:nth-of-type(5).current,
#newsset .tab li:nth-of-type(5):hover{
	background: #74b330;
}
#newsset .tab li:nth-of-type(5).current:before{
	border-top-color: #74b330;
}
#newsset .tab li:nth-of-type(6).current,
#newsset .tab li:nth-of-type(6):hover{
	background: #179694;
}
#newsset .tab li:nth-of-type(6).current:before{
	border-top-color: #179694;
}
#newsset .tab li:nth-of-type(7).current,
#newsset .tab li:nth-of-type(7):hover{
	background: #eb85a6;
}
#newsset .tab li:nth-of-type(7).current:before{
	border-top-color: #eb85a6;
}
#newsset .block_news_1{
	display: none;
}
#newsset .block_news_1.current{
	display: block;
}
#newsset .block_news_1 ul>p{
	padding: 10px 0;
}
#newsset .tab2{
	display: none;
}
@media screen and (min-width: 701px){
	#newsset .block_news_1 ul{
		display: block !important;
	}
}
@media screen and (max-width: 700px){
	#newsset .tab{
		display: none;
	}
	#newsset .tab2{
		display: block;
		padding: 10px;
		padding-right: 30px;
		width: calc(100% - var(--i_padding, 20px)*2);
		margin: 0 auto;
		cursor: pointer;
		border: 1px solid var(--i_border_color);
		border-bottom: none;
		box-sizing: border-box;
		background: var(--i_btn_color);
		color: var(--i_btn_txt_color);
		position: relative;
	}
	#newsset .tab2:nth-last-child(2){
		border-bottom: 1px solid var(--i_border_color);
	}
	#newsset .tab2.current,
	#newsset .tab2:hover{
		opacity: 0.9;
	}
	#newsset .tab2.current{
		border-bottom: none;
	}
	#newsset .tab2.tab2_2{
		background: #D64612;
	}
	#newsset .tab2.tab2_3{
		background: #f3b71b;
	}
	#newsset .tab2.tab2_4{
		background: #6d406c;
	}
	#newsset .tab2.tab2_5{
		background: #74b330;
	}
	#newsset .tab2.tab2_6{
		background: #179694;
	}
	#newsset .tab2.tab2_7{
		background: #eb85a6;
	}
	#newsset .tab2:after{
		content: "+";
		display: flex;
		align-items: center;
		text-align: center;
		width: 10px;
		height: 100%;
		line-height: 1;
		position: absolute;
		top: 0;
		right: 10px;
	}
	#newsset .tab2.current:after{
		content: "-";
	}
	#newsset .block_news_1{
		display: block !important;
	}
	#newsset .block_news_1 ul{
		display: none;
		border: 1px solid var(--i_border_color);
		border-top: none;
		border-bottom: none;
		box-sizing: border-box;
	}
	#newsset .block_news_1:last-child ul:last-child{
		border-bottom: 1px solid var(--i_border_color);
	}
	#newsset .block_news_1 ul li:last-child{
		border-bottom: none;
	}
        #newsset .tab2.tab2_1 + .block_news_1 ul{/*追記*/
		display: block;
	}
	#newsset .tab2:first-of-type::after{
		content: "-";
	}
	#newsset .tab2.current:first-of-type::after{
		content: "+";
	}
}