/*タブ切り替え全体のスタイル*/
.tabs {
  background-color: #e5e5e5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 800px;
  margin: 50px auto;}

/*タブのスタイル*/
.tab_item {
	width: calc((100% / 6) - 1px);
  height: 50px;
  border-right: 1px solid #afafaf;
  border-bottom: 3px solid #595959;
  background-color: #e5e5e5;
  line-height: 50px;
  font-size: 14px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  transition: all 0.2s ease;
}

/*長いメニュー名*/
.tab_item p {
    line-height: 1;
    height: 50px;
    display: flex;
    align-items: center;
	justify-content: center;
}

.tab_item:last-of-type {
    /*border-right: 1px solid #e5e5e5;*/
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px;
  clear: both;
  overflow: hidden;
	    background-color: #f2f2f2;
}


/*選択されているタブのコンテンツのみを表示*/
#menu_01:checked ~ #menu_01_content,
#menu_02:checked ~ #menu_02_content,
#menu_03:checked ~ #menu_03_content,
#menu_04:checked ~ #menu_04_content,
#menu_05:checked ~ #menu_05_content,
#menu_06:checked ~ #menu_06_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fff;
  color: #595959;
border-bottom: 3px solid #595959;
}

.remark {
	text-align: left;
}

.tab_content img {
	width:500px;
}



@media (max-width: 750px) {
	.tabs {
  width: auto;
		    margin: 2% 3%;
	}
	
	
	.tab_item {
    width: calc((100% / 3) - 1px);
	}
	
	
	
	
}




