@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #FFF;	/*背景色*/
}
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: 100%;
	border-spacing: 0;
}

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

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #c0c0c0;			/*文字色*/
	background: #FFF;	/*背景色*/
	text-align: center;		/*右寄せ*/
	font-weight : normal;	/*太字解除*/
}
body > h1 a, body > h1 a:hover {
	color: #c0c0c0;
	text-decoration: none;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
}
/*ヘッダー左の設定*/
#header_left {
	width: 320px;
	float:left;
}
/*h1ロゴの設定*/
header h1 {
	padding: 0px 0px 0px 20px;	/*上、右、下、左側へあける余白*/
}
/*ヘッダー右上の設定*/
#header_right {
	padding-top: 10px;
	text-align: right;
	float: right;
}
#header_right01 {
	float: left;
	padding-top: 6px;
}
#header_right02 {
	float: left;
}
p.number {
	font-size: 80%;
}
p.tel_pc {
	font-size: 180%;
	font-weight: bold;
	line-height: 90%;
}
p.tel {
	font-size: 180%;
	font-weight: bold;
	line-height: 90%;
	display: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 132px;	/*メニュー幅*/
	border-right: 1px solid #dcdcdc;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
	margin-bottom: 10px;	/*メニューの下にあけるスペース*/
}
nav#menu ul li a {
	color: #a18861;		/*文字色*/
	text-decoration: none;
	display: block;
	-webkit-transition: 1.5s;	/*マウスオン時の移り変わるまでの時間設定。1秒。*/
	transition: 1.5s;			/*同上*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: 1px solid #dcdcdc;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #ec9b00;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	color: #999;	/*文字色*/
}
nav#menu ul li a:hover span {
	color: #fffbc3;	/*マウスオン時*/
}

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

/*コンテンツin（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 800px;
}
/*2カラム時*/
body.c2 #contents-in {
	float: none;
	width: 100%;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 580px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*2カラム時*/
body.c2 #main {
	width: 782px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	text-align: center;
	background-image:url("../images/h2bar.gif");/*画像URL*/
	background-repeat: round;
	font-size: 100%;
	color: #a18861;	/*文字色*/
	padding: 5px  0px;	/*左から、上下、左右への余白*/
	letter-spacing: 0.1em;
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	font-size: 100%;
	background-color: #ececec;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ececec));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ececec);	/*同上*/
	background-image: linear-gradient(#FFF, #ececec);	/*線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 3px 10px 3px 7px;	/*上、右、下、左への余白*/
	color: #a18861;		/*文字色*/
	border-top: 1px solid #cfcfcf;		/*上の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #cfcfcf;	/*下の線の幅、線種、色*/
	border-left: 3px solid #ec9b00;		/*左の線の幅、線種、色*/
}
/*mainコンテンツのh3タグ設定*/
#main h4 {
	font-size: 100%;
	background-image:url("../images/h4.gif");/*画像URL*/
	background-repeat:no-repeat;
	background-position:left;
	padding-left:17px;/*画像の横幅*/
	padding: 0.2em 25px 0;	/*左から、上、左右、下への余白*/
	margin:10px 0 0 10px;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 0.5em;	/*左から、上、左右、下への余白*/
	}
	
#main .lb {
	font-size: 80%;
	text-align: center;
	margin-top: 12px;
	border: 1px dotted #daa520;
	background-color: #fffced;	
    border-radius: 5px;        /* CSS3案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */  
    line-height: 2.5em;
    padding: 7px;
}

/*店舗リスト1店舗分*/
.shopbox {
	width		: 100%;
	height: auto;
	margin-bottom: 8px;
}
.shopbox .cap {
	font-size: 77%;
	line-height: 1.4em;
	margin: 0 5px 0 5px;
}
.shopbox .info {
	font-size: 90%;
	line-height: 1.5em;
	margin: 0px 5px 0 5px;
}
.shopbox .st {
	font-weight: bold;
	font-size: 110%;
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;


}
/*2カラム時にサイドコンテンツを非表示にする設定*/
body.c2 #side {
	display: none;
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f2f2f2, #FFF);	/*同上*/
	background-image: linear-gradient(#f2f2f2, #FFF);			/*同上*/
	border-top: 3px solid #ec9b00;		/*上の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #cfcfcf;	/*下の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左の線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #a18861;	/*文字色*/
	margin-bottom: 10px;
}
#sub h3,
#side h3 {
	font-size: 100%;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	border-bottom: 1px solid #a18861;	/*下の線の幅、線種、色*/
	border-left: 5px solid #a18861;		/*左の線の幅、線種、色*/
	padding: 0px 10px;	/*上下、左右への余白*/
	font-weight: normal;
	color: #000000;	/*文字色*/
}
#sub h4,
#side h4 {
	padding: 2px 10px;	/*上下、左右への余白*/
	color: #800000;	/*文字色*/
	margin-top: 10px;	/*テキストの上にあけるスペース*/
	margin-bottom: -5px;	/*テキストの上にあけるスペース*/
}
#sub p,
#side p {
	font-size: 95%;
	line-height: 15pt
}

#sub p span{
	color: #fac1c1;
	}

/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 10px 0px;	/*ボックス内の余白*/
	margin-bottom: 1em;	/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#side h2 + ul,
#sub h2 + .box1,
#side h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul,
#side .box1 > ul {
	margin-bottom: 0;
}
#sub .lb {
	font-size: 82%;
	text-align: center;
	border: 1px dotted #daa520;
	background-color: #FFF;	
    border-radius: 5px;        /* CSS3案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */  
    line-height: 1.3em;
    padding: 5px;
   	margin-bottom: 5px;
}


/*sub,sideコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul,
#side ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 1em;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background: #FFF;	/*背景色*/
}
/*マウスオン時の設定*/
#sub ul li a:hover,
#side ul li a:hover {
	background-color: #ec9b00;	/*背景色*/
	color: #FFF;	/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 5px;
	background-image:url("../images/footerimg.gif");/*画像URL*/
	color: #666;
	font-size: 70%;
	text-align: center;
	text-shadow: 0px 0px 3px #FFF,0px 0px 10px #ec9b00;

}
footer .pr {
	display: block;
	font-size: 70%;
}
footer a {
	text-decoration: none;
	color: #666;
}
footer a:hover {
	color: #666;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 800px;
	height: 251px;
	position: relative;
	margin-bottom: 15px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 1em;		/*ボックス間のスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
}
#main section.list article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#main section.list article a:hover {
	background-color: #FFF;	/*マウスオン時のボックス色*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #ec9b00;	/*文字色*/
}

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

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e9ddae;	/*背景色*/
}
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: center;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}

/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	padding: 10px;
	font-size: 90%;
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	width: 140px;
	padding: 10px;
	font-size: 85%;
	text-align: center;
	color: #808000;
	background-color: #fff8dc;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}

/*テーブルのキャプション設定*/
.ta2 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	color: #666;
	font-size: 110%;
	letter-spacing: 1em;
	text-align: center;
	text-shadow: 0px 0px 10px #b8860b;
	background-image:url("../images/aso.gif");/*画像URL*/
	background-position:center;


}
/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #ec9b00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb424), to(#ec9b00));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffb424, #ec9b00);	/*同上*/
	background-image: linear-gradient(#ffb424, #ec9b00);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border: none;
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #ffb424;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ec9b00), to(#ffb424));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ec9b00, #ffb424);	/*同上*/
	background-image: linear-gradient(#ec9b00, #ffb424);			/*同上*/
}

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

/*買取の流れページ
---------------------------------------------------------------------------*/
.notice {
	margin: 30px 0px 0px 0;
	font-size: 120%;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	border-bottom: 1px solid #a18861;	/*下の線の幅、線種、色*/
	border-left: 5px solid #a18861;		/*左の線の幅、線種、色*/
	padding: 0px 10px;	/*上下、左右への余白*/
	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;
	border: 1px solid #999999 !important;
}

.img-right img {
	float: right;
	margin: 0 0 0 5px !important;
	padding: 3px !important;
	border: 1px solid #999999 !important;
}

.img-center img {
	margin: 0 15px 0 0 !important;
	padding: 5px !important;
	border: 1px solid #999999 !important;
}

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

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

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb1em {
	margin-bottom: 1em;
}
.mb05em {
	margin-bottom: 0.5em;
}
.pur {
	font-size: 110%;
	font-weight:bold;
	color: #ba8d4b;	/*文字色*/
	background-image:url("../images/grape.png");/*画像URL*/
	background-repeat:no-repeat;
	background-position:left;
	padding-left:23px;/*画像の横幅*/
	padding: 0.6em 40px 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%;
}

.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%;
}

#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;
}

.coupon {
	display: none;
}

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;
}
