﻿@charset "utf-8";

/*****************************************************/
/** 全体設定 **/
/*****************************************************/

html {
	background: #ffffff; /*copyrightと同じ色の背景を伸ばす*/
	-webkit-text-size-adjust: 100%;
}

body {
	min-width: 1100px;
	font-size: 14px;
	line-height:160%;
	background: #ffffff;
	color:#56524f;
}

/***************** リンク設定 *****************/
a:link  { color:#5d675b; text-decoration: underline; }
a:visited  { color:#394338; text-decoration: underline; }
a:active  { color:#394338; text-decoration: none; }
a:hover  { color:#179F3D; text-decoration: none; }


/***************** 大枠共通設定 *****************/
.wrapper {
	width: 1000px;
	margin-left: auto;
	margin-right:  auto;
}

.pc_none {
	display: none;
}

/*****************************************************/
/** レイアウトベース **/
/*****************************************************/

/***************** ヘッダー *****************/
#Header { height: 130px;}

#HeaderLogo {
	width: 400px;
	height: 100px;
	float: left;
	margin: 10px 0px 0px 0px;
}

#HeaderLogo h1 {
	font-size: 11px;
	margin: 0px 0px 0px 10px;
}

#HeaderLogo a img {
	margin-top:-3px;
}

#HeaderBox {
	width: 251px;
	height: 70px;
	float: right;
	margin: 25px 0px 10px 0px;
}

#HeaderBoxBt {
	margin-top: 7px;
	float: right;
}

/***************** ナビゲーション *****************/
#Gnavi {
	width: 100%;
	height: 38px;
	background:#6a8a6f url(../img/base/nav_bg.png) repeat-x;
}

ul#MenuNavi {
	clear: both;
	width:100%;
	height:100px;
	/*margin:0px 10px;*/
	padding:0px;
}

ul#MenuNavi li {
	float:left;
	margin-right:0px;
}
ul#MenuNavi li#last { margin-right:0px; }


/***************** コンテンツ *****************/
#Contents {
	width: 1000px;
	min-height: 500px;
	max-height: 90%;
	display: block;
	clear: both;
	position: relative;
	margin-top: 20px;
}

#ContentsMain{
	width:700px;
	margin-bottom: 30px;
	display: inline-block;
	float: left;
}

#ContentsSide {
	width: 250px;
	float: right;
	margin-left: 30px;
}

#SideNav {
	margin: 20px 0px;
	font-size: 14px;
	font-weight: normal;
}

#SideNav a:link { color:#44210e; text-decoration: none; }
#SideNav a:visited { color:#44210e; text-decoration: none; }
#SideNav a:active { color:#44210e; text-decoration: none; }
#SideNav a:hover { color:#2ab322; text-decoration: none; }

#SideNav li {
	display: block;
	margin: 0px 10px;
	padding: 12px 10px 8px 10px; 
	border-bottom: #444444 solid 1px; 
}
#SideNavG {
	margin-bottom:20px;
}

li.side_gallery img {
	margin-left:7px;
}

#SideNavG li {
	width:50px;
	height:50px;
	display: block;
	margin: 5px 4px;
	float:left;
}


#SideNav li.ttl,#SideNavG li.ttl  {
	width:225px !important;
	height:auto !important;
	min-height: 15px;
	font-weight: bold;
	background:#efe337;
	border: 2px solid #444444;
	font-size: 15px;
	margin: 25px auto 0px 0px !important;
	padding: 8px 12px !important;
    border-radius: 20px;        /* CSS3草案 */  
    -webkit-border-radius: 20px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 20px;   /* Firefox用 */  
}

#SideBnr img {
	display: block;
	margin: 0px auto 10px auto;
}


/***************** フッター *****************/
#Footer {
	clear: both;
	margin-top:20px;
	position: relative;
	z-index:8;
	padding-top:40px;
}

#Footernavi {
	font-size:13px;
}

#Footernavi a {	text-decoration:none; }
#Footernavi a:hover {	color:#179F3D; }


#FooterData {
	margin-top: 20px;
	font-size: 13px;
}

/***************** コピーライト *****************/
#Copy {
	color: #333333;
	font-size: 12px;
	text-align: center;
	padding: 20px 0px 15px 0px;
}
.pc-switcher a{
	color: #ffffff;
}
.pc-switcher .active {
	display: none;
}

/***************** スクロールボタン（画像） *****************/
#PageTop{
  background: none; /*ボタンの背景色*/
  border-radius:5px;
  color:#FFF;
  padding:15px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  text-decoration: none;
  z-index:50;
  display: block;
}

/* 印刷の場合は非表示 */
@megia print {
	#PageTop {
		display:none !important;
		right: -15px;
		z-index:0;
	}
}

