/*タブ切り替え全体のスタイル*/
.tabs {
	padding-bottom:80px;
	width:100%;
	margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
	height:76px;
	background-color:rgba(201,188,156, 0.6);
	line-height:76px;
	font-size:30px;
	text-align:center;
	color:#fff;
	display:block;
	float:left;
	text-align:center;
	font-weight:bold;
  /*transition:all 0.2s ease;*/
	cursor:pointer;

    -webkit-border-top-left-radius:15px; 
    -webkit-border-top-right-radius:15px;  
    -moz-border-radius-topleft:15px;
    -moz-border-radius-topright:15px;
}

.tab_item.col2 { width:495px; margin:0 10px; }

.tab_item:hover { /*opacity:0.85;*/ }

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

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


/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content {
	display: block;
	border-top: 3px solid #a48b78;
	border-bottom:10px solid #a48b78;
	padding:50px 0 0px 0;
}

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



@media screen and (max-width: 640px) {
.tabs { padding-bottom:60px; }
.tab_item {
	height:2em;
	line-height:2em;
	font-size:1.3rem;

    -webkit-border-top-left-radius:10px; 
    -webkit-border-top-right-radius:10px;  
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
}
.tab_item.col2 { width:44% !important; margin:0; }
.tab_item.col2.tab-l { margin-left:5%; margin-right:2%; }
.tab_item.col2.tab-r { margin-left:0%; margin-right:5%; }



}