@charset "utf-8";
.section {
	padding-top: 8%;
}
/* CSS Document */

.tabBox .tabArea {
	width: 70%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	margin-left: auto;
	margin-right: auto;
	max-width: 850px;
}
.tabBox .tabArea .one_tab {
  width: 32.5%;
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.tabBox .tabArea .one_tab:hover {
  opacity: 0.7;
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
	justify-content: center;
	align-items: center;
	height: 60px;
	transition-duration: 0.3s;
	display: inline-block;
}
.tabBox .tabArea .one_tab:nth-child(1) .tab_inner {
}
.tabBox .tabArea .one_tab:nth-child(2) .tab_inner {
}
.tabBox .tabArea .one_tab:nth-child(3) .tab_inner {
}
.tabBox .tabArea .one_tab.select .tab_inner {
}
.tabBox .tabArea.bottom {
  align-items: flex-start;
}
.contents .tab_main {
	display: none;
	text-align: center;
	transition-duration: 0.3s;
	margin-top: 2%;
	margin-bottom: 4%;
}
.tab_main.is_show {
  display: block;
}
.tab_main:nth-child(1).is_show {
	background-color: #7BC8C6;
	transition-duration: 0.3s;
	padding-top: 4%;
	padding-bottom: 4%;
}
.tab_main:nth-child(2).is_show {
	background-color: #F4A340;
	transition-duration: 0.3s;
	padding-top: 4%;
	padding-bottom: 4%;
}
.tab_main:nth-child(3).is_show {
	background-color: #F3A8B1;
	transition-duration: 0.3s;
	padding-top: 4%;
	padding-bottom: 4%;
}

@media screen and (max-width: 480px){ /*1112px以下のcss*/
}
