@charset "utf-8";
/* CSS Document */

@media only screen and (min-width: 769px) {
/*ここにtablet用スタイルを記述*/
}

/* tablet  */
@media only screen and (min-width: 481px) and (max-width: 768px) {
/*ここにtablet用スタイルを記述*/
}
 
/* smartPhone */
@media screen and (max-width: 480px) {
/*ここにスマホ用スタイルを記述*/
}	


/* -------------------------------------------------------
フォントサイズ
------------------------------------------------------- */
html { 
    font-size: 62.5%; /*ベースを10pxにしています*/
}
body { 
	font-size: 14px;
	line-height: 1.6;
	color: #333333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* -------------------------------------------------------
共通
------------------------------------------------------- */
html, body {
	    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    }
#container{
	margin:0 auto;
	max-width:976px;
	width:100%;
	padding:0 20px;
}
.txt{
	border-bottom:1em;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
			 -o-box-sizing: border-box;
			-ms-box-sizing: border-box;
					box-sizing: border-box;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
.caption{
	font-size:80%;
}

/* -------------------------------------------------------
フロート解除
------------------------------------------------------- */
.clearfix:after {
content: '';
display: block;
clear: both;
}
.clearfix {
zoom: 1; /* for IE6/7 */
}
	
/* -------------------------------------------------------
マウスオーバー時、半透明
------------------------------------------------------- */
a:link{
	text-decoration:none;
	color:#333333;
}
a:hover, a img:hover{
    opacity: 0.7;
}
a{
	color:#333333;	
}

/* -------------------------------------------------------
topへ戻る
------------------------------------------------------- */
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#pageTop a {
  display: block;
  z-index: 999;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* -------------------------------------------------------
ボタン選択時、グレー
------------------------------------------------------- */
.active a {
	color:#aaa !important;
	text-decoration:none;
}

/* -------------------------------------------------------
メニューactive時あしらい
------------------------------------------------------- */
.tabmenu,
.tabmenu li,
.tabmenu li a {
    float: left;
    padding:3px;
    margin-right:2px;
}
 
.tabmenu li{
	list-style-type: none;
}
 
.content {
    clear: both;
    overflow: hidden;
    width: 300px;
    border:1px solid #eee;
    height:200px;
}
.tabbox {
    display: none;
}
.tabmenu li.active {
    background: #eee;
}
.tabmenu li.active a{
    color:red;
}

/* -------------------------------------------------------
header
------------------------------------------------------- */

/* -------------------------------------------------------
footer
------------------------------------------------------- */
#footer {
	background: url(../img/bg_footer.jpg);
	padding: 50px 0;
}
#footer .wrap {
	width: 980px;
}
#footer .flL {
	width: 280px;
	color: #fff;
}
#footer .flL h2 {
	font-size: 16px;
}
#footer .flL h3 {
	font-size: 18px;
	margin-bottom: 10px;
}
#footer .flL p {
	font-size: 12px;
}
#footer .flR {
	width: 700px;
}
#footer .flR ul {
	margin-right: -10px;
}
#footer .flR ul li {
	float: left;
	width: 167.5px;
	margin-right: 10px;
}
#footer .flR ul li:nth-child(1) {
	width: 167.5px;
}



/* -------------------------------------------------------
#copy
------------------------------------------------------- */
#copy {
	text-align: center;
	padding: 20px 0;
}


