/*================
pagetitile
================*/
.pagetitle_wrap {
  background: url(../img/company_img/history_img/pagetitle.jpg) center center no-repeat;
  background-size: cover;
}

@keyframes tabAnim{
  0%{opacity:0;}
  100%{opacity:1;}
}
input[type="radio"] {
	display:none;
}
.tab_wrap {
  width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
    margin: 0 auto;
}
.tab_wrap * {
  box-sizing: border-box;
}
.tab_area {
	font-size: 0;
	/*margin: 0 10px;*/
}
.tab_area label {
	width: calc(50% - 5px);
  /*margin: 0 5px;*/
	display: inline-block;
	padding: 10px 0;
	color: #999;
	background: #ddd;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: ease 0.2s opacity;
}
.tab_area label:first-child {
  margin-right: 5px;
}
.tab_area label:last-child {
  margin-left: 5px;
}
.tab_area label:hover {
	opacity: 0.6;
}
.tab_panel {
	width: 100%;
	opacity: 0;
	padding: 20px;
	display: none;
}
.tab_panel p {
	font-size: 16px;
	text-align: center;
}
.panel_area {
	background:#fff;
  border: 1px solid #ccc;
  border-top: 0;
  position: relative;
}
.panel_area:before {
  content: "";
  width: 10px;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: -1px;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#tab1:checked ~ .tab_area .tab1_label {
  color: #333;
	background:#fff;
	border-top: 3px solid #00bfa6;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#tab1:checked ~ .panel_area #panel1 {
	display: block;
	animation: tabAnim ease 0.6s forwards;
	-ms-animation:tabAnim ease 0.6s forwards;
}
#tab2:checked ~ .tab_area .tab2_label {
	color: #333;
	background:#fff;
	border-top: 3px solid #00bfa6;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#tab2:checked ~ .panel_area #panel2 {
	display:block;
	animation:tabAnim ease 0.6s forwards;
	-ms-animation:tabAnim ease 0.6s forwards;
}
.panel_title {
  font-size: 14px;
  font-weight: bold;
  border-left: 3px solid #60b723;
  padding-left: 8px;
}
.tab_panel dl {
}
.tab_panel dl div {
    display: flex;
	padding: 10px 0;
	border-bottom: 1px dotted #c0c0c0;
}
.tab_panel dl div dt {
    width: 7em;
    text-align: left;
    font-size: 16px;
    float: left;
    margin-bottom: 0;
}
.tab_panel dl div dd {
    width: calc(100% - 7em);
    text-align: left;
}
.tab_panel dl dd span {
	font-size: 10px;
	font-weight: bold;
	margin-bottom: 5px;
}
.tab_panel dl dd a {
	text-align: left;
}
@media print, screen and (min-width: 768px) {
.tab_panel {
	padding: 30px;
}
}