@charset "utf-8";
/* CSS Document */


@media screen and (min-width:768px){
.tabBox .tabArea {
  width: 30%;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
}

@media screen and (max-width:767px){
.tabBox .tabArea {
  width: 50%;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
}



.tabBox .tabArea .one_tab {
  width: 50%;
}
.tabBox .tabArea .one_tab a {
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #fff;
}
.tabBox .tabArea .one_tab a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  transition-duration: 0.3s;
border-radius: 20px 20px 0px 0px
}
.tabBox .tabArea .one_tab:nth-child(1) .tab_inner {
  background-color: #083885;
}
.tabBox .tabArea .one_tab:nth-child(2) .tab_inner {
  background-color: #333333;
}
.tabBox .tabArea .one_tab:nth-child(3) .tab_inner {
  background-color: #e8a48b;
}
.tabBox .tabArea .one_tab a.select .tab_inner {
  height: 80px;
}
.contents .tab_main {
  display: none;
  border: 2px solid #083885;
  transition-duration: 0.3s;
	max-height: 250px;
	overflow-y: scroll;
}
.tab_main.is_show {
  display: block;
}
.tab_main:nth-child(1).is_show {
  border: 2px solid #083885;
}
.tab_main:nth-child(2).is_show {
  border: 2px solid #333333;
}
.tab_main:nth-child(3).is_show {
  border: 2px solid #e8a48b;
}
.newsbox{
	width: 100%;
}
.innerArea ul{
	margin:0;
	padding: 0;
}
.innerArea li{
	list-style: none;
	line-height: 3em;
	border-top: solid 1px #0A6800;
	padding-left: 20px;
}
.innerArea li:first-child{
	border-top: none;

}

@media screen and (min-width: 960px) {

}
@media screen and (max-width: 959px) {
.innerArea ul{
	padding:0;
}
}