@charset "utf-8";
/* COMPANY CSS
---------------------------------------- */
/* tab -------- */
.sec-overview .tab-area {
  display: flex;
  justify-content: flex-start;
  
  background: #c9e7d0;
}
.sec-overview .tab-area .tab {
	width: auto;
	height: 85px;
  	padding: 0;
	box-sizing: border-box;
	position: relative;
	color: #222;
	display: flex;
    align-items: center;
    margin: 0 1px;
	cursor: pointer;
}

.sec-overview .tab-area .tab .box-tabnav {
	display: flex;
	width: 100%;
	height: 100%;
    justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 0 25px;
}

.sec-overview .tab-area .tab .box-tabnav::after {
	content:"";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	display: inline-block;
	border-top: 10px solid transparent;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	transform: translateX(-50%);
}
.sec-overview .tab-area .tab .box-tabnav .nav-txt {
	white-space: nowrap;
}
.sec-overview .tab-area .tab.active {
	background: #009c4c;
	color: #fff;
	font-weight: 600;
}

.sec-overview .tab-area .tab.active .box-tabnav::after {
	bottom: -10px;
	border-top: 10px solid #009c4c;
}

/*.sec-overview .js-tab-section.is-active .tab-area {
	position: sticky;
	top: 0;
	z-index: +1;
}*/

@media (max-width: 767px) {
	.sec-overview .tab-area .tab .box-tabnav {
    	padding: 0 3vw;
	}
	.sec-overview .tab-area .tab {
	    height: 75px;
	}
	.sec-overview .tab-area .tab .box-tabnav .nav-txt {
		font-size: 1.6rem;
	}
	.sec-overview .tab-area {
		overflow-x: auto;
    	overflow-y: hidden;
	}
	
	.sp-only.txt-back > a {
		position: relative;
	}
	.sp-only.txt-back > a::before,
	.sp-only.txt-back > a::after {
		content:"";
		position: absolute;
		display: inline-block;
		width: 25px;
		height: 25px;
		left: -32px;
		top: -1px;
	}
	.sp-only.txt-back > a::before {
		background: green;
		border-radius: 50%;
	}
	.sp-only.txt-back > a::after {
		background: url("../img/common/arrow_wh.svg") no-repeat center 50%;
		background-size: 12px auto;
		transform: rotate(-90deg);
	}
}
@media (max-width: 640px) {
	.sec-overview .tab-area .tab .box-tabnav .nav-txt {
		font-size: 1.5rem;
	}
	.sec-overview .tab-area .tab.active .box-tabnav::after {
		content: none;
	}
}

.tab-area::-webkit-scrollbar {
    height: 4px;
}

.tab-area::-webkit-scrollbar-track {
    background-color: #cecece;
}

.tab-area::-webkit-scrollbar-thumb {
    background: #007e3d;
	border-radius: 2px;
}

/* panel ------------------------- */
.sec-overview .panel {
  display: none;
}
.sec-overview .panel.active {
  display: block;
}
.sec-overview .js-tab-section.is-active .panel-area {
	padding-top: 20px;
}

