@charset "utf-8";


/*PC・タブレット・スマホ共通設定/買取のさかい
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*Google Fontsの読み込み。#main h2と左メニューの英語表記（.submenu li span）に使っています。
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Anton|Cute+Font');
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');/* h2h3h4表の見出し */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');/* Googleアイコン */

#copyright {font-family: 'Cute+Font', cursive;}


/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 93%;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fee84d;	/*背景色*/
	-webkit-text-size-adjust: none;
	margin: 0 auto;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

html{	overflow-y:scroll;
	overflow-x:hidden;　/* 横スクロールなし */}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #00c;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #e89c16;
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	width: 1040px;	/*幅*/
	margin: 20px auto;
}
/*ロゴ画像*/
#logo {
}

/*container（フッター以外のブロックを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {position: relative;
	width: 1040px;	/*幅*/
	margin: 0 auto;
}

/*contents（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {position: relative;
	padding-top: 0;	/*コンテンツ上に空ける余白*/
}

/*mainimg（トップページのメイン画像）
---------------------------------------------------------------------------*/
#mainimg {margin:30px auto;text-align:center;}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 100%;
	overflow: hidden;
	padding-bottom: 20px;

	background-color:#fff;
	border-radius: 20px;
	padding:5px 15px;
	margin-bottom:20px;

}
.c1 #main {/* プログラム一覧 */
	float: none;
	width: auto;
}

/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding-left: 15px;
	line-height: 1.2;
	border-bottom: 4px solid #000;	/*下線の幅、線種、色*/
	font-family: 'Anton', "Noto Sans Japanese", sans-serif;	/*フォント種類*/
	font-size: 180%;		/*文字サイズ*/letter-spacing:1px;
	color: #000;
}
#main h2:first-letter{
  color: #febf15;font-size: 135%;text-shadow: 2px 1px 1px #000;margin-right:4px;}

#main h2 span{font-size: 65%;margin-left:20px;vertical-align: 4px;}
#main h2 span:before {content:"★";}
#main h2 span:after {content:"★";}


/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	margin-bottom: 20px;
	padding: 1px 12px;
	font-family: 'Anton', "Noto Sans Japanese", sans-serif;	/*フォント種類*/
	font-size: 160%;letter-spacing:2px;font-weight:normal;
}

#main h4 {
	clear: both;
	padding: 1px 12px;
	border-bottom: 3px dotted #666;	/*下線の幅、線種、色*/
	font-family: 'Anton', "Noto Sans Japanese", sans-serif;	/*フォント種類*/
	font-size: 160%;letter-spacing:2px;  color: #666;
	margin-bottom:15px;
background-color:#F5F5F5;
}
#main h5 span{margin-left:15px;color: #fc0;}

h6 {background-color:#666;
	font-size: 110%;letter-spacing:1px;
	font-weight:normal;color: #ffffff;
	margin:0 0 15px 0;padding:0 20px;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
	line-height: 1.8;font-size:100%;
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}



/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub{}

/*サブコンテンツ内のメニュー（2種類/スクロールすると止まるのはclass="nav-fix-pos"）
---------------------------------------------------------------------------*/

#menubar {
	width: 99%;	/*幅。#menubar liでmargin-leftを1%とっているのでそれを引いた数字を設定。*/
    width: 100%;z-index: 11;position: relative;

}
/*メニュー１個あたりの設定*/
#menubar li{
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅*/
	margin-left: 0%;	/*メニュー間のスペース*/
	line-height: 1.3;	/*行間を通常より少し狭くする*/
}

/*メニュー全体の設定*/
.submenu {
	margin-bottom: 5px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 2px #000;	/*上の線の線種、幅、色*/
	overflow:hidden;
}
/*メニュー１個ごとの設定*/
.submenu li {
	border-bottom: solid 2px #000;	/*下の線の線種、幅、色*/
	padding: 7px 0px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
.submenu li a {
	text-decoration: none;
	display: block;
	width: auto;
	line-height: 30px;color: #000;
}
#menubar .submenu .menuimg {
	font-size: 77%;	/*画像入りのメニュー内で使っている日本語の文字サイズ。少し小さめに設定。*/
}
/*マウスオン時*/
.submenu li:hover {background: #fff;	/*背景色*/}
.submenu li a:hover {	color: #e89c16;}

/*spanで囲まれた英語表記のテキスト設定*/
.submenu li span {
	font-family: 'Anton', sans-serif;	/*フォント種類*/
	font-size: 180%;		/*文字サイズ*/
	display: block;
	padding-top: 2px;
}
/*メニュー左側の装飾画像の設定*/
.menuimg a {
	margin:0 0 0px 10px;
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	display: inline-block;
	background-image: url(../images/menu_bg.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-size: 50px 500px;	/*背景画像のサイズ。※実寸は120pxと960pxだが、高解像度の端末用に50%のサイズで指定している。*/
	padding-left: 65px;	/*装飾画像とメニューテキストが重ならないようにメニューテキストの左側に余白を空ける*/
}
/*１つ目画像*/
.menu1 a {	background-position: 0 0;	/*装飾画像の左から0px、上から0pxの部分を読み込む指定*/
}
/*２つ目画像*/
.menu2 a {	background-position: 0 -50px;	/*装飾画像の左から0px、上から60px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*３つ目画像*/
.menu3 a {	background-position: 0 -100px;	/*装飾画像の左から0px、上から120px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*４つ目画像*/
.menu4 a {	background-position: 0 -150px;	/*装飾画像の左から0px、上から180px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*5つ目画像*/
.menu5 a {	background-position: 0 -200px;
}
/*6つ目画像*/
.menu6 a {	background-position: 0 -250px;
}
/*7つ目画像*/
.menu7 a {	background-position: 0 -300px;
}
/*8つ目画像*/
.menu8 a {	background-position: 0 -350px;
}
/*9つ目画像*/
.menu9 a {	background-position: 0 -400px;
}

/*10つ目画像*/
.menu10 a {	background-position: 0 -450px;
}

/*メニューが画面上部に到達した際のスタイルhttps://webdesignday.jp/inspiration/technique/css/4166/#i-3
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*上部固定メニュー用設定*/
.site-header{
    display: flex;
    justify-content: space-between;
	background: #fee84d;
    width: 100%;
}
.site-header.fixed{
    position: fixed;
	background: #fee84d;
	background: rgba(254,232,77,0.9);	/*スクロールした際にメニューの下の別のコンテンツが重なった際に少しだけ透けさせる設定。不要ならこの行だけ削除。*/
    top: 0;
    width: 100%;z-index: 11;
}



/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/* ページ内リンク */

.pn_link {margin:0 0 10px 0;padding:0;text-align:right;display:block;border-bottom:1px solid #999;font-weight:bold;}

.pn_link li {background : url('../images/menuline.png') no-repeat 0 8px;
  display: inline-block;
  list-style: outside none none;
  margin: 0;
  padding:0 0.5em;
}
.pn_link li.imgno{background : url('../images/menuline2.png')no-repeat 0 8px;padding-left:15px;}/* ページ内リンクの文字 */

.pn_link a {
  padding: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

/*.pn_link a:before ,*/ 
.pn_link a:after {
  height: 2px;
  position: absolute;
  content: '';
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #000;
  width: 0;
}
.pn_link a:before {
  top: 0;
  left: 0;
}
.pn_link a:after {
  bottom: 0;
  right: 0;
}
.pn_link a:hover,
.pn_link .current a {
  color: #c00;
}
.pn_link a:hover:before,
.pn_link .current a:before,
.pn_link a:hover:after,
.pn_link .current a:after {
  width: 105%;
}

/*ブックマークずれ対策*/
.zure {display:block;margin-top:-270px;
	padding-top:270px;}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
/* pagetop */
#pagetop {
	right: 10px;
	position: fixed;
	z-index: 99;}

#pagetop a{
	line-height: 2;	/*行間（heightの数値と合わせる）*/
	color: #ffffff;		/*文字色*/
	text-align: center;
	margin-bottom:6px;
	padding: 8px;
	width: 30px;
	height: 28px;
	background-color:#aaa;
	display: block;
	border: 1px solid #ddd;
	border-bottom: 0;
	text-decoration: none;
	background: rgba(170,170,170,1);		/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。79,23,0,茶*/
	border-radius: 4px;	/*角丸のサイズ*/
	-webkit-transition: 0.9s;	/*マウスオン時の移り変わるまでの時間設定。0.8秒。*/
	transition: 0.9s;			/*同上*/
	border: 4px solid rgba(255,255,255,0.9);	/*枠線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.9＝90％）の指定。*/
/* http://www.bad-company.jp/demos/box-shadow/ */
box-shadow:0px 0px 9px 0px rgba(232,232,232,0.8);
}

#pagetop a:hover {
	border: 4px solid #aaa;
	background: #fee84d;
	color: #000;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*h5*/
footer h5 {border-bottom:2px dotted #333;
	font-size: 110%;letter-spacing:1px;
	font-weight:normal;
	margin-bottom:12px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 1000px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px;
}
#footermenu .box2{text-align:left;float:left;}
#footermenu .box2 span{width: 120px;display:inline-block;}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #222;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	height: 140px;	/*高さ*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 20px;
	border-top: 2px solid #000;
}
.ta1 td, .ta1 th {
	border-bottom: 2px solid #000;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	font-family: 'Anton', "Noto Sans Japanese", sans-serif;	/*フォント種類*/
	width: auto;
	text-align: left;	/*左よせ*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	border-right: none;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: right;
	border-right: 1px dashed #000;	/*右側の線の幅、線種、色*/}




/* 横並び2つのボックス
<div class="boxall3"><div class="boxleft3">ああ</div><div class="boxright3">ああ</div></div> */
div.boxall3{position: relative;
	clear:both;
	display:block;
	width: 100%;
	display: -moz-inline-box; /*for Firefox 2*/
	display: inline-block; /*for modern*/
	/display: inline; /*for ie5～7*/
	/zoom: 1; /*for ie5～7*/
}
div.boxleft3 {
	display: -moz-inline-box;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	width: 45%;
	margin-left:1%;
	vertical-align: top;
}
div.boxright3 {
	display: -moz-inline-box;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	width: 45%;
	margin-left:4%;
	vertical-align: top;
}

div.boxleft3 img,
div.boxright3 img
{	width: 100%;
	border:1px solid #ddd; /* 外側のボーダー */
	padding:10px; /* 内側のボーダの太さ */
	background:#fff; /* 内側のボーダー色 */}

div.boxall3 hr{border:none;border-bottom:3px dotted #000;margin-bottom:20px;}
div.boxall3 h5{padding-left:13px;text-align:left;font-size: 98%;}
div.boxall3 h5:before {    content: '▼';}

div.boxall3 h6{padding-left:13px;text-align:left;font-size: 110%;border-radius: 5px;
	background-color:#F5F5F5;border:2px solid #c00;color: #555;margin-top:19px;}/* 高く売りたい */
div.boxall3 h6:before {    content: '◆';color: #c00;font-size: 120%;}/* 高く売りたい */

div.boxall3 p{margin:0;padding:0;width: 100%;
	line-height:1.4;font-size:90%;}

/* 店舗の画像を2個並べる */
.box50p{margin:0px auto;text-align:center;display:block;}
.box50p img{width : 46%;margin:10px 0;
	border:1px solid #ddd; /* 外側のボーダー */
	padding:1%; /* 内側のボーダの太さ */
	background:#fff; /* 内側のボーダー色 */}

/* 横並び2つのボックス（横幅指定なし　フッターの住所と地図）
例<div class="padd10 bg_cream"><div class="box2">ああ</div><!-- --><div class="box2">ああ</div></div> */

div.box2 {display: -moz-inline-box; /*for Firefox 2*/
	display: inline-block; /*for modern*/
	/display: inline; /*for ie5～7*/
	/zoom: 1; /*for ie5～7*/
	margin-right:15px;
	vertical-align: top;
}

/*買い取り商品の羅列*/
.raretu ul {padding:0 0 15px 15px;overflow:hidden;}
.raretu li {font-size: 95%;
	float: left;	/*左に回り込み*/
	width: 45%;		/*幅。今回は6列作ったのでここの幅18%と下のpaddingの2%でトータル16%になるよう設定。列に応じて調整*/
	padding-right: 2%;
}

/*よく頂く質問・リンク共通設定
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq,
.link {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt,
.link dt {
	color: #c00000;	/*文字色*/
	font-weight: bold;	/*太字*/
}
.faq dt a,
.link dt a {
	color: #c00000;
}
/*回答の設定*/
.faq dd,
.link dd {
	padding-bottom: 15px;
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	-ms-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	-ms-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*お客様の声
---------------------------------------------------------------------------*/
.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -105px;
  width: 100px;
}

.balloon5 .faceicon img{/* 女性桃アイコン */
  width: 100%;
  height: auto;
  border: solid 3px #fedfef;
  border-radius: 50%;
}

.balloon5 .faceicon img.manb{/* 男性青アイコン */
  border: solid 3px #d7ebfe;
}

.balloon5 .chatting {/* アイコン+吹き出しの幅 */
  width: 100%;
}

.says,/* 吹き出し */
.mans
 { display: inline-block;
  position: relative; 
  margin: 0 0 0 130px;
  padding: 17px 13px 0px;
  border-radius: 12px;}
.says{  background: #fedfef;}
.mans{  background: #d7ebfe;}

.says:after,/* 矢印 */
.mans:after
{   content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 15px solid transparent;
}

.says:after{  border-right: 18px solid #fedfef;}/* 矢印の色 */
.mans:after{  border-right: 18px solid #d7ebfe;}

.says p,.mans p {  margin: 0;  padding: 0;}

/* 見出し */
.says h5,
.mans h5{width : 98%;border-radius: 10px;padding:8px 0 5px 15px;color: #fff;letter-spacing:1px;font-size: 110%;margin-bottom:10px;}
.says h5{background-color:#bb3a5f;}
.mans h5{background-color:#0078d7;}

.says h5:before,
.mans h5:before {  font-family: 'Material Icons';  content: "\e31d";color: #ffffff;font-size:23px;line-height:1;padding:5px 10px 0 0;vertical-align: middle;}


/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
#main h2 span.newicon {
	background: #F00;
	color: #FFF;
	font-size: 40%;
	letter-spacing:2px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*目立つお問い合わせボタン
---------------------------------------------------------------------------*/
.medatu{background-color:#00c640;border-radius: 5px;
	padding:5px 5px 5px 5px;color: #ffffff;text-align:center;margin-bottom:20px 20px;}

.medatu a{color: #ffffff;text-decoration:none;}

.medatu a:before{font-family: 'Material Icons';  content: "contact_mail";color: #ffffff;font-size:23px;line-height:1;padding:5px 10px 0 0;vertical-align: middle;}

/*目立つ枠
---------------------------------------------------------------------------*/
.medatu2{background-color:#fee84d;border-radius: 5px;
	padding:5px 5px 5px 5px;text-align:center;margin-bottom:15px;}
.medatu3{}


/*目立つ黄緑ボタン
---------------------------------------------------------------------------*/
.medatu4{background-color:#00c640;border-radius: 5px;font-size:30px;font-weight:bold;
	padding:5px 5px 5px 5px;color: #ffffff;text-align:center;overflow:hidden;margin:10px;}

/* 片付け電話 */
.medatu4 span:before{font-family: 'Material Icons';  content: "ring_volume";color: #ffffff;font-size:40px;line-height:1;padding:5px 10px 0 0;vertical-align: middle;}

/* 片付け順序 */

.medatu5{font-weight:bold;font-size: 20px;
  position: relative;
  padding: 0.6em;
  background: #FCD25C;margin-bottom:20px;
}

.medatu5:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #FCD25C;
  width: 0;
  height: 0;
}

/*丸に矢印リスト
---------------------------------------------------------------------------*/
.mark {margin-left:25px;}

.mark ul li {margin-left:25px;
  position: relative;
}
.mark ul li::after,
.mark ul li::before {
  display: block;
  content: '';
  position: absolute;
}
.mark ul li::after {
  top: .35em;
  left: -1.2em;
  width: 14px;
  height: 14px;
  background-color: #3498db;
  border-radius: 100%;
}
.mark ul li::before {
  z-index: 2;
  top: .625em;
  left: -.975em;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*フォーム用ボタン
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*マウスオン時*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*左寄せ画像回り込み終了タグ
---------------------------------------------------------------------------*/
.pict {
	float:left;
	margin:2px 5px 1px 0;
	padding:5px;
	}
	
/* 右寄せ画像 */
.pict_r {
	float:right;
	margin:2px 5px 1px 0;
	padding:5px;
	}
/* 枠付き */
.pict_n{width : 95%;
	border:1px solid #ddd; /* 外側のボーダー */
	padding:10px; /* 内側のボーダの太さ */
	background:#fff; /* 内側のボーダー色 */
	margin:4px 0;}

/*その他
---------------------------------------------------------------------------*/
.look,.look a {background: #333;color: #fff;padding: 5px 10px;border-radius: 4px;}
.look1 {font-size: 16px;line-height:2;font-weight:bold;letter-spacing:1px;}
.look2 {font-size: 16px;color: #a00;line-height:2;padding:5px 0px 5px 10px;font-weight:bold;letter-spacing:1px;}
.look3 span {border:none;border-bottom:3px dotted #a00;margin-bottom:20px;line-height:2;font-weight:bold;letter-spacing:1px;}
.look3 {margin-bottom:20px;}

.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #c00;font-weight:bold;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}
.f_r{color: #d00;}



/*画面幅1030px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1030px){


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	width: auto;
	padding: 0;
}
/*ロゴ画像*/
#logo {margin-left:2%;
	width: 88%;	/*幅を画面幅の80%にする設定*/
}

/*mainimg（トップページのメイン画像）
---------------------------------------------------------------------------*/
#mainimg {margin:20px auto;}

/*container（フッター以外のブロックを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px 3%;
}
/*contents（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	/*padding-top: 30px;	コンテンツ上に空ける余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto;
}
	
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.submenu {
	margin-bottom: 0px;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	width: 95%;
	margin-top:0;
	margin-left: 2.5%;
	margin-bottom:10px;
	background: #fff;	/*背景色*/
	background: rgba(255,255,255,0.7);	rgb指定での背景色。最後の小数点は透明度。
	margin-bottom:10px;overflow:hidden;
}
/*メニュー１個あたりの設定*/
#menubar-s li {font-size: 80%;
	float: left;	/*左に回り込み*/
	width: 50%;		/*メニュー幅*/
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	border-right: 1px solid #dcdcdc;	/*右線の幅、線種、色*/
}

.submenu li span {
	font-size: 180%;		/*英語文字サイズ*/
}
/*偶数番目のメニューの右側の線を消す*/
#menubar-s li:nth-child(even) a {
	border-right: none;
}


/*PC用メニューを非表示にする*/
#sub,
.site-header,/* menubarを囲む上部で止まる部分 */
#menubar,
div.boxall3 hr {display: none;}

/*ブックマークずれ対策*/
.zure {display:block;margin-top:-0px;
	padding-top:0px;}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 20px;		/*上から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	width: 20px;	/*幅*/
	border: 3px solid #000;	/*枠線の幅、線種、色*/
	padding: 8px 8px 4px;	/*上、左右、下へのボックス内余白*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;	/*バー同士の余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
}


}

/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){

#main h3 {font-size: 110%;font-weight:bold;}


/*ギャラリー
---------------------------------------------------------------------------*/
div.boxall3,
div.boxleft3,
div.boxright3
{clear:both;display:block;margin:0 auto;padding:0;width: 100%;}

div.boxleft3 img,
div.boxright3 img
{clear:both;display:block;text-align:center;margin:0 auto;width: 98%;padding:5px;pointer-events: none;}

div.boxall3 h5{border-bottom:3px dotted #873915;}
div.boxall3 h5:before {
    content: '';
}
div.boxleft3 p,
div.boxright3 p
{text-align:left;vertical-align: middle;}

.medatu3{width : 99%;}/* ゴールドの見出し*/

/* 買い取り商品の羅列 */
.raretu li {
	width:auto;
	padding-right: 0;}
.raretu li:after {content:"／";}
.raretu li.inasi:after {content:"";}



}

/*画面幅640px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:640px){

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
#logo {
	width: 83%;	/*幅を画面幅の80%にする設定*/
	padding-top: 0;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh2タグの設定*/
#main h2 {
	font-size: 24px;
}

/*スマホお客様の声
---------------------------------------------------------------------------*/
.balloon5 .faceicon {
  float: none;display:block;
}
.says,/* 吹き出し */
.mans
 { display: block;
  margin: 5px 0 0 0;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}
/* ページ内リンク */

.pn_link li {font-size: 88%;}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
#main .ta1 th {display:block;
	width: 98%;
	text-align:left;border:0;
	margin:0;padding:2px;background-color:#F5F5F5;
}

/*テーブル内の右側*/
#main .ta1 td {display:block;
	width: 98%;
	margin:0;padding:2px;
}

#main .ta1 { width : 100%;border:0; }
#main .ta1 th.tamidashi{background-color:#000000;}

/*ギャラリー
---------------------------------------------------------------------------*/


div.boxall3 h5{padding:2px 0 0 10px;border:none;margin:0;}
div.boxall3 h5:before {
    content: '▼';
}

div.boxleft3 p,
div.boxright3 p,
div.boxall3 h5
{clear: both;display:block;}

div.boxleft3,
div.boxright3{border-bottom:3px dotted #873915;margin-bottom:10px;}

/*目立つ黄緑ボタン
---------------------------------------------------------------------------*/
.medatu4{font-size:20px;
	padding:2px;margin:5px;}
.medatu4 a{color: #ffffff;}

/* 片付け電話 */
.medatu4 span:before{font-size:30px;line-height:1;padding:5px 10px 0 0;vertical-align: middle;}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh{display:block;}

.pc{display:none;}

}
