body {
	background-color: #fff8dc
/* comp #ccffff */
}
font.midashi {
padding:6px 10px; 
background:#bc8f8f; 
color:#ffffff; 
font-weight:bold;
}
div.kakomi {
padding: 10px;
background-color: #ffffff;
margin-bottom: 10px; 
border: 1px solid #333333; 
border-radius: 10px;
width: 90%;
margin: right auto;
}
/*タブ切り替え全体のスタイル*/
.tabs {
margin-top: 50px;
padding-bottom: 40px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
/* width: 960px; */
width: 90%;
/* margin: 0 auto; */
margin: right auto;
}
/*タブのスタイル*/
.tab_item {
width: calc(100%/3);
height: 50px;
/* border-bottom: 3px solid #5ab4bd; */
border-bottom: 3px solid #bc8f8f;
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;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
display: none;
/* padding: 40px 40px 0; */
padding: 10px 20px 0 0;
clear: both;
overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#news:checked ~ #news_content,
#book:checked ~ #book_content,
#research:checked ~ #research_content {
display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
/* background-color: #5ab4bd; */
background-color: #bc8f8f;
color: #fff;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: inline !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: inline !important; }
}

/* 下線など */
span.mynone {text-decoration: none;}
span.myunderline {text-decoration: underline;}
span.myoverline {text-decoration: overline;}
span.mylinethrough {text-decoration: line-through;}