
@charset "UTF-8";


.tabs {
  margin-top: 0px;
  padding-bottom: 0px;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}


.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #2196F3;
  border-right: 1px solid #9e9e9e;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

.tabs.mypage .tab_item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 3px solid #2196F3;
  border-right: 1px solid #9e9e9e;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.tab_item:last-child{
  border-right: none;
}


input[name="tab_item"] {
  display: none;
}


.tab_content {
  display: none;
  padding: 0;
  clear: both;
  overflow: hidden;
}


#profile:checked ~ #profile_content,
#history:checked ~ #history_content,
#info:checked ~ #info_content,
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}


.tabs input:checked + .tab_item {
  background-color: #2196F3;
  color: #fff;
}




@media screen and (max-width: 415px) {
	.tab_item{
		font-size:14px;
	}
}