@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/

	background: url(../img/sakeban.jpg)  ;/*背景画像*/
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-attachment: fixed;
	
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 115%;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000;	/*リンクテキストの色*/
}
a:hover {
	color: #FFF;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	font-size: 12px;		/*文字サイズ*/
	color: #91703D;			/*文字色*/
	background: #FFF;	/*背景色*/
	text-align: center;		/*中央寄せ*/
	font-weight : normal;	/*太字解除*/
	border-bottom: 1px solid #c0c0c0;	/*下線*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 960px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 120px;	/*ブロックの高さ*/
	padding-top: 20px;	/*上のスペース*/
}
/*ヘッダー左の設定*/
#header_left {
	float:left;
	margin-top: 30px;
}

/*h1ロゴの設定*/
header h1 {
	padding: 0px 0px 0px 10px;	/*上、右、下、左側へあける余白*/
}
/*ヘッダー右上お問合せの設定*/
#header_right {
	text-align: right;/*右寄せ*/
	float: right;
			margin-top: 30px;

}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
nav#menu ul{ 
	display:table;	/*メニューを均等割するための設定*/
	table-layout: fixed;	/*メニューを均等割するための設定*/
	width:960px;	/*メニュー全体の横幅*/
	margin: 0px 0px 15px 0px;	/*メニューの下にあけるスペース*/
} 

/*メニュー１個ごとの設定*/
nav#menu ul li {
	display:table-cell; /*メニューを均等割するための設定*/
	background-color: rgba(250,235,197,0.8);/*背景色*/
	border-right: 2px solid #FFF;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-size: 160%;
	line-height: 60px;/*文字（ボックス）の高さ*/
}
nav#menu ul li a {
	color: #8F6B0C;	/*メニューの文字色*/
	text-shadow:0 0 12px #FFF;
	text-decoration: none;/*メニューの装飾、ナシに*/
	display: block;/*メニューをブロック化してクリックしやすく*/
}

/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: 2px solid #FFF;	/*左側に線を入れる*/
}

/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #FFF;	/*背景色*/
	color: #660000;	/*文字色*/
	text-shadow:0 0 15px #F2CC68;
	-webkit-transition: 0.6s;	/*マウスオン時の移り変わるまでの時間設定。1秒。*/
	transition: 0.6s;			/*同上*/
}

/*パンくずリスト
---------------------------------------------------------------------------*/
nav#breadcrumbs ol li {
  display: inline;
  list-style-type: none;
}
nav#breadcrumbs ol li:before {
  content: " > ";
}
nav#breadcrumbs ol li:first-child:before {
  content:"";
}

/*コンテンツ（main,sub,sideを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*コンテンツin（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 960px;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {

	width: 100％;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}

#main p {
font-size: 130%;
}

/*mainコンテンツのh2タグ設定*/
#main h2 {
	text-align: center;
	font-size: 250%;
	font-weight: normal;
	color: #8F4949;	/*文字色*/
    text-shadow: 2px 2px 0 #fff, 3px 3px 0 #f1e3df;
	background-color: rgba( 255, 255, 255, 0.6 );
	border: 3px solid #FFF;
	margin-top: 20px;
	clear: both;
}

#main h2 span{
font-size: 70%;
}


/*mainコンテンツのh3タグ設定*/
#main h3 {
	font-size: 160%;
	font-weight: normal;
	font-style: italic
	color: #000;
	text-shadow:0 0 15px #fff;
	margin-top: 10px;
}
/*mainコンテンツのh4タグ設定*/
#main h4 {
	font-size: 140%;
	color:#81610C ;
	text-shadow:
	0 0 3px #ffe4e1;
	font-weight: normal;
	background-color: rgba( 255, 255, 255, 0.6 );
	border-bottom: 1px solid #FFF;
	padding: 5px 50px 0 ;	/*左から、上、左右、下への余白*/
	margin:10px 0 0 30px;
	background-image: url(../img/cap01.png) ;
	background-repeat: no-repeat;
	background-position: 0 120%; 
	
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 0.5em;	/*左から、上、左右、下への余白*/
	}
	
#main .sb {
	color: #660000;
	font-size: 100%;
	margin-top: 0px;
	background-color: rgba( 243, 210, 124, 0.1 );
	line-height: 2.2em;
	padding: 15px;
	margin-bottom: 20px;
}

#main .sb img{
float: left;
}

.feature{
	background-image: url(../img/top2.png) ;
	background-repeat: no-repeat;
	background-position: left;
}

.feature p{
margin-left: 200px;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 20px;
	border-top: 1px solid #c0c0c0;
	background-color: #FFF;
	color: #666;
	font-size: 90%;
}

footer .pr {
	display: block;
	font-size: 90%;
}
.finfo {
	width: 960px;
	margin: 0 auto;
}

.fleft {
	float: left;
	width: 50%;
	margin-bottom: 20px;
}

.fright {
	display: block;
	margin-bottom: 20px;
}
.funder {
	clear: both;
	display: block;
}

/*footerコンテンツのh3タグ設定*/
footer h3 {
	text-align: center;
	font-size: 200%;
	font-weight: normal;
	font-style: italic;
	color: #999;
	margin-bottom: 0.8em;
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
}


/*グーグルマップのレスポンシブ設定
---------------------------------------------------------------------------*/
.ggmap {
position: relative;
padding-bottom: 30%;

height: 0;
display: block;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.ggmap2 {
position: relative;
padding-bottom: 50%;
height: 0;
display: block;
overflow: hidden;
}

.ggmap2 iframe,
.ggmap2 object,
.ggmap2 embed {
position: absolute;
width: 100%;
height: 100%;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/

/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	margin-top: 30px;
	font-size: 115%;
}
/*ボックス内の写真設定*/
#main section.list article img {
	float: left;			/*画像を左へ回り込み*/
	margin-top: 30px;
	margin-bottom: 30px;
	margin-left: 40px;
	margin-right: 40px;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	border-radius: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.2);
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	padding: 5px 0 5px 0px;
	margin-bottom: 20px;
}

#new img{
	margin-left: 10px;
}

/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	color: #a9a9a9;
	font-size: 80%;
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	font-size: 90%;
	padding-left: 5em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 2px solid #FFF;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
	background-color: rgba( 255, 255, 255, 0.6 );	/*背景色*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	background-color: rgba( 102, 0, 0, 0.1 );
	text-align: center;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
}
.ta1 caption{
	margin: 0px 0px 5px 0;
	font-size: 140%;
	padding: 0px 20px;	/*上下、左右への余白*/
	color: #000000;	/*文字色*/
	background-color: rgba( 255, 255, 255, 0.6 );	/*背景色*/
}

/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	padding: 10px;
	font-size: 90%;
	background-color: rgba( 255, 255, 255, 0.3 );
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	width: 250px;
	padding: 10px;
	font-size: 90%;
	text-align: center;
	background-color: rgba( 102, 0, 0, 0.1 );
	text-shadow:0 0 10px #FFF;
}

.ta2 a {
	color: #b66300;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #808080;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	line-height: 30px;
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*買取の流れページ
---------------------------------------------------------------------------*/
.notice {
	margin: 20px 0px 0px 0;
	font-size: 150%;
	background-color: rgba( 255, 255, 255, 0.6 );
	border-bottom: 1px solid #808080;	/*下の線の幅、線種、色*/
	padding: 0px 20px;	/*上下、左右への余白*/
	font-weight: normal;
	color: #000000;	/*文字色*/
	}

.img-left,
.img-right,
.img-center {
	overflow: hidden;
	height: auto;
	margin: 15px 0 0 0;
}

.img-center {
	overflow: hidden;
	height: auto;
	margin: 0px 0 0 0;
}

.img-left img {
	float: left;
	margin: 0 5px 0 0 !important;
	padding: 3px !important;
}

.img-right img {
	float: right;
	margin: 0 0 0 5px !important;
	padding: 3px !important;
}

.img-center img {
	margin: 0 15px 0 0 !important;
	padding: 5px !important;
}

.img-left p,
.img-right p {
	overflow: hidden;
	height: auto;
}

/*買取品目のページ
---------------------------------------------------------------------------*/
p.red {
	color : #ff0000; 
}
p.ora {
	color : #660000; 
}
p.ori {
	color : #ba8d4b; 
	font-size: 95%;
	letter-spacing: 0.3em;
	text-align: center;
}


/*その他
---------------------------------------------------------------------------*/

.rinji {
position: relative;
top: 6px;
left: 10px;
}

.look {
	background: #dcdcdc;
}
.mt4em {
	margin-top: 4em;
}
.mb1em {
	margin-bottom: 1em;
}
.mb05em {
	margin-bottom: 0.5em;
}

.mt16 {
	margin-top: 12px;
}

.pur {
	font-size: 120%;
	color: #660000;	/*文字色*/
	background-image:url("../img/h4.png");/*画像URL*/
	background-repeat:no-repeat;
	background-position:left;
	padding-left:23px;/*画像の横幅*/
	padding: 0.3em 30px 0;	/*左から、上、左右、下への余白*/
	margin:10px 0 0 10px;
}

.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.color2 {
	color: #ff0000;
	font-size: 120%;
}

.ora {
	color : #ff8c00; 
}

.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.imgc {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
.b{
	font-weight: bold;
}

.figcaption {
	font-size: 11px;
}
.font90 {
font-size: 90%;
}

.font110 {
font-size: 110%;
}

.font120 {
font-size: 120%;
}

#menubar_hdr {
	display: none;
}

.gaku {
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 20px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
		-webkit-box-shadow: 0px 0px 10px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 10px #999;			/*同上*/
}
.gaku2 {
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 8px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
		-webkit-box-shadow: 0px 0px 10px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 10px #999;			/*同上*/
	margin-top: 20px;
	margin-bottom: 20px;
}

.border1 {
	box-shadow: 0 0 0 2px #FFF, 0 0 0 3px #CCC;
	margin-left: 3px;
}

.coupon {
	display: none;
}

.des {
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 10px;
	color: #FFF;
	background-color: rgba( 255, 255, 255, 0.1 );
	border-radius: 4px;        /* CSS3草案 */  
	-webkit-border-radius: 4px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;   /* Firefox用 */  
}

a:hover img.overwhite{
    cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;              /* Safari 1.x */
    opacity:0.6;
    zoom:1;
}

.pre {
display: none;/* プレオープン時に隠しておく */
}


