@charset "UTF-8";
@import url("dragdealer-main.css");
@import url("dragdealer.css");
/* CSS Document */

body {
	font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	background-color: #FEFEE3;
	margin: 0;howpay2
	padding: 0;
	color: #000;
}
/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	padding-right: 25px;
	padding-left: 25px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。 */
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}
a { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
	text-decoration:none;
}
/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #F30;;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

a:hover{
	color: #F66;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

a:visited {
	color: #F90;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}
/* ~~ この固定幅コンテナが他のすべての div を囲みます。~~ */
.container {
	width: 950px;
	clear: both;
	background-color: #FEFEE3;
	margin: 50px auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
	overflow: hidden; /* この宣言により .container は、含まれているフローティングカラムの範囲がどこまでかを認識してその範囲を含めるようになります。 */
}
/* ~~ レイアウトに使用するカラムです。~~ 

1) 余白は、div の上部または下部にのみ配置されます。これらの div 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、div 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。div 内のエレメントの余白を削除し、さらにその div 内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の div を追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した div の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、div のルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー div をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを左ではなく右に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて左方向にする代わりに、すべて右方向に設定)、反転してレンダリングされます。HTML ソース内で div を移動する必要はありません。

*/
.sidebar1 {
	float: left;
	width: 250px;
	background-color: #FEFEE3;
	padding-bottom: 10px;
}
.content {
	padding: 0;
	width: 700px;
	float: left;
	background-color: #FEFEE3;
}
/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol {
/* padding: 0 15px 15px 40px; この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}
/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
ul.nav {
	list-style: none; /* リストのマーカーを削除します。 *//* 	border-top: 1px solid #666; リンク用の上部のボーダーを作成します。他のすべてのものは LI 上で下部のボーダーを使用して配置されます。 */
/* 	margin-bottom: 15px; 下のコンテンツのナビゲーション間の間隔を作成します。 */
}
ul.nav li {
/*border-bottom: 1px solid #666;  ボタンの区切り線を作成します。 */
}
ul.nav a, ul.nav a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
	/* padding: 5px 5px 5px 15px;
	display: block; リンクにブロックプロパティを指定し、リンクが含まれる LI 全体がリンクになるようにします。これにより、領域全体がマウスのクリックに反応するようになります。
	width: 160px;  /*この幅により、IE6 でボタン全体をクリックできるようになります。IE6 をサポートする必要がない場合は削除できます。適切な幅を計算するには、サイドバーコンテナの幅からそのリンクの余白を減算します。 */
	text-decoration: none;
	background-color: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
	background-color: #ADB96E;
	color: #FFF;
}
/* ~~ その他の float/clear クラス ~~ */
.fltrt {  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
}
.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: left;
}
.clearfloat { /* このクラスは、.container で overflow:hidden が削除されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}

img {
	vertical-align: top;
}
#header {
	height: 100px;
	background-color: #FEFEE3;
	width: 100%
}
#footer {
	height: 50px;
	background-color: #EDF1C4;
	width:100%;
	  padding: 0;
  margin: 0;
}
#footer_bottm {
	background-color: #DEE179;
	width:100%;
	  padding: 0;
  margin: 0;
}
#header_top_box {
	width: 950px;
	margin: 0 auto;
	height: 200px;
	clear: both;
}
#top_txt {
	float: right;
	color: #006600;
	font-size: 12px;
	margin-top: 10px;
}
#top_menu {
	float: right;
	margin-top: 0px;
	margin-bottom: 7px;
}
#top_img {
	margin: 0 auto;
	width: 950px;
	height: 300px;
}


#top_img_kasou{
	width: 950px;
	height: 90px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
#big_box {
	width: 950px;
	margin: 0 auto;
	height: 100px;
}
#footer_txt {
	color: #3D8718;
	font-size: 70%;
	line-height: 5;
	width: auto;
	text-align: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#footer_txt a{
	color: #3D8718;
	text-decoration:none;
}

#footer_logo {
	width: 250px;
	color: #3D8718;
	font-size: 78%;
	line-height: 3;
	margin: 0 auto;
	text-align: center;
}

.concept_txt {
	line-height: 1.7;
	font-size: 90%;
	margin-left: 40px;
}

.concept_txt_price{
	line-height: 1.7;
	font-size: 90%;
}
.concept_txt_eye{
	line-height: 1.7;
	margin-left: 20px;
	font-size: 90%;
}


.concept_txt_eye_big_attention{
	line-height: 1.7;
	font-size: 105%;
	margin-left: 30px;
	color:#F60;
}

.concept_txt_kaso {
	line-height:1.7;
	font-size:90%;
}

#news_zure {
	margin:20px;

}
.concept_pic {
	float: right;
}


.attention_txt{
	margin-left: 50px;
	font-size:70%;
}

.attention_txt_eye{
	padding-left: 40px;
	font-size: 70%;
	color: #7F6C59;
	margin-bottom: 20px;
	width:700px;
}


.attention_txt_form{
	margin-left: 40px;
	font-size: 90%;
	color: #7F6C59;
	margin-bottom: 30px;
}
.attention_txt_kakunin{
	margin-left: 40px;
	font-size: 90%;
	color: #7F6C59;
	margin-bottom: 30px;
	text-align:left;
}

.attention_txt_cam{
	margin-left: 40px;
	font-size: 90%;
	color: #7F6C59;
	margin-bottom: 30px;
}
#news_box_w{
		margin-left: 50px;
		background-color:#FFF;
		width:700px;
		height:250px;
		overflow:hidden;
}
	

#fb_box{
	background-color:#FFF;
	width:200px;
	height:auto;
	margin-bottom:20px;
}

.content_box_color{
	width: 700px;
	background-color: #ECF7D4;
	font-size: 80%;
	padding: 15px 0pc;
}


.content_box_color_price{
width: 700px;
	background-color: #ECF7D4;
	margin-left:45px;
}

.content_box_color_relax{
width: 650px;
	background-color: #ECF7D4;
	margin-left:45px;
	font-size:110%;
}


.content_box{
	width:700px;
	background-color:#FFF;
	padding:15px 0;
	
	
}

.content_box_eye{
	width:625px;
	background-color:#FFF;
	padding:15px;
	margin: 10px 45px;
}

.concept_txt_yoyaku{
	width:625px;
	background-color:#FFF;
	padding:0px;
	margin:0px;
	font-size:90%;
}

.chuuouzoroe{
	margin:0 auto;
	width:950px;
}

.how{
	margin-top:30px;
	width:700px;
	background-color:#0C3;
	padding:10px;
	color:#fff;
	margin-left: 40px;
	margin-bottom:20px;
	font-size:110%
}

.op{
	margin-top:30px;
	width:680px;
	background-color: #966;
	padding:10px;
	color:#fff;
	margin-left: 40px;
	margin-bottom:20px;
	font-size:110%
}
	
	
.price{
	margin-top:30px;
	width:700px;
	background-color: #F90;
	padding:10px;
	color:#fff;
	margin-left: 40px;
	margin-bottom:20px;
	font-size:110%
}

.opop{
	margin-top:30px;
	width:700px;
	background-color: #6D302C;
	padding:10px;
	color:#fff;
	margin-left: 40px;
	margin-bottom:20px;
	font-size:110%
}


.pink{
	margin-top:30px;
	width:700px;
	background-color: #F9C;
	padding:10px;
	color:#fff;
	margin-left: 40px;
	margin-bottom:20px;
}


.pink_box{
	margin-top:30px;
	width:600px;
	background-color: #fff;
	padding:0px;
	border: #F9C solid 1px;
	margin-left:0px;
	margin-bottom:30px;
}

.pink_title{
	height:30px;
	width:590px;
	background-color:#F6C;
	color:#FFF;
	margin-bottom:20px;
	padding:0px 0px 10px 10px;
	font-size:120%;
	line-height:2;
	font-weight:bold;
}
.pink_txt{
	height:30px;
	width:500px;
    color: #F90;
	margin:0px;
	padding:0px 0px 10px 0px;
	font-size:120%;
	line-height:3;
	font-weight:bold;
}


.pink_txt_price{
	padding:30px 0px 5px 0px;
	font-size:120%;
	line-height:1.5;
	font-weight:bold;
	color: #F90;
	margin-top:30px;
}
.pink_big{
	height:30px;
	width:500px;
    color: #F09;
	margin:0px;
	padding:10px 0px 10px 0px;
	font-size:200%;
	line-height:3;
	font-weight:bold;
}


.pink_big_sp_price{
	width:500px;
    color: #F36;
	margin:0px;
	font-size:80%;
	line-height:3;
	font-weight:bold;
}
	
.pink_price{
    color: #F36;
	margin:0px;
	font-size:90%;
	font-weight:bold;
	border-color: #808080;
}
	

.pink_big_s{
	height:10px;
	width:500px;
    color: #F90;
	margin:0px;
	padding:0px 0px 10px 0px;
	font-size:80%;
	line-height:1.2;
	font-weight:bold;
}


.pink_big_sp{
	height:10px;
	width:500px;
    color: #F36;
	margin:0px;
	padding:0px 0px 10px 0px;
	font-size:120%;
	line-height:3;
	font-weight:bold;
}

.orange_line{
	margin-top:10px;
	width:600px;
	background-color: #F90;
	padding:10px;
	color:#fff;
margin-bottom:20px;
	font-size:110%
}

.green_line{
	margin-top:10px;
	width:600px;
	background-color:#0C6;
	padding:10px;
	color:#fff;
margin-bottom:20px;
	font-size:110%
}



.orange{
	color:#F60;
}
.pink_txt{
	color: #F36;
	font-size: 100%;
	line-height: 1.5em;
}
.orange_s{
	color:#F60;
	font-size:80%;
	border-color: #808080;
}
.siro{
	color:#Fff;
	font-weight:bold;
	font-size:120%;
}

.siro_hyo{
	color:#Fff;
	font-weight:bold;
	font-size:90%;
}

.cha{
	color:#816E58;
	font-weight:bold;
	font-size:110%;
}

.cha_price{
	color:#816E58;
	font-weight:bold;
	font-size:90%;
	width:500px;
}
.cha_big{
	color:#816E58;
	font-weight:bold;
	font-size:130%;
	width:400px;
}

.cha_nomal{
	color:#816E58;
	font-size:80%;
}
.cha_nomal_price{
	color:#816E58;
	font-weight:bold;
	font-size:80%;
	line-height:0.5;
}
.cha_nomal_pra{
	color:#816E58;
	font-size:80%;
	margin-bottom:10px;
}
.cha_hyo{
	color:#816E58;
	font-size:90%;
	margin-bottom:10px
}
.blue_big{
	color:#099;
	font-weight:bold;
	font-size:120%;
}
.orange_big{
	color:#F60;
	font-weight:bold;
	font-size:120%;
}
.orange_big_title{
	color:#F60;
	font-weight:bold;
	font-size:120%;
	margin-left:30px;
}

.red_big{
	color: #F00;
	font-weight:bold;
	font-size:120%;
	margin:20px 0px;
}

.text_awase
{
	text-align: left;
}
.fb_s{
	width:230px;
	height:100px;
	margin-top:20px;
	background-color:#FEFEE3;
}
.bra_bt{
	width:700px;
	height:120px;
	text-align:center;
	margin:0 auto;
}

.option{
	width:550px;
	margin:10px auto;
	font-size:120%;
	margin-bottom:30px;
}

.oprion_txt{
	margin:10px auto;
	font-size:100%;
	clear:both;
}

.blue_line{
	margin-top:30px;
	width:700px;
	background-color:#06B2B3;
	padding:10px;
	color:#fff;
	margin-left: 40px;
	margin-bottom:20px;
	font-size:110%
}

.pink_line{
	margin-top:30px;
	width:700px;
	background-color: #F60;
	padding:10px;
	color:#fff;
	margin-left: 40px;
	margin-bottom:20px;
	font-size:110%
}

.blue_line_no{
	margin-top:30px;
	width:605px;
	background-color:#06B2B3;
	padding:10px;
	color:#fff;
	margin-left: 0px;
	margin-bottom:20px;
	font-size:110%
}
.orange_line_no{
	margin-top:30px;
	width:605px;
	background-color:#F60;
	padding:10px;
	color:#fff;
	margin-left: 0px;
	margin-bottom:20px;
	font-size:110%
}


.green_line_no{
	margin-top:30px;
	width:605px;
	background-color: #0C9;
	padding:10px;
	color:#fff;
	margin-left: 0px;
	margin-bottom:20px;
	font-size:110%
}


.pink_line_no{
	margin-top:10px;
	width:605px;
	background-color: #FF7F55;
	padding:10px;
	color:#fff;
	margin-left: 0px;
	margin-bottom:20px;
	font-size:110%
}
.green{
	color:#0C6;
}.blue{
	color:#06B2B3;
}


/**
  * Rhinoslider 1.05
  * http://rhinoslider.com/
  *
  * Copyright 2014: Sebastian Pontow, Rene Maas (http://renemaas.de/)
  * Dual licensed under the MIT or GPL Version 2 licenses.
  * http://rhinoslider.com/license/
  */
.rhino-btn {
	background:url(../img/rhinoslider-sprite.png) 0 0 no-repeat;
	z-index:10;
	width:56px;
	height:53px;
	display:block;
	text-indent:-999%;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.rhino-prev, .rhino-next { bottom:-4px; }

.rhino-prev {
	left:-6px;
	background-position:-168px 0;
}

.rhino-next {
	right:-6px;
	background-position:-106px 0;
}

.rhino-prev:hover { background-position:-168px -53px; }

.rhino-next:hover { background-position:-106px -53px; }

.rhino-toggle {
	top:-4px;
	left:-6px;
}

.rhino-play { background-position:0 0; }

.rhino-play:hover { background-position:0 -53px; }

.rhino-pause { background-position:-56px 0; }

.rhino-pause:hover { background-position:-56px -53px; }

.rhino-container { position:relative; }

.rhino-caption {
	position:absolute;
	background: #000;
	display:none;
	left:0;
	right:0;
	top:0;
	color:#fff;
	padding:10px;
	text-align:right;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.rhino-bullets {
	position: absolute;
	bottom: -3px;
	left: 50%;
	margin:0 0 0 -50px;
	z-index: 10;
	background: #fff;
	padding:0;
}

.rhino-bullets:before, .rhino-bullets:after {
	position:absolute;
	display:block;
	left:-16px;
	content:' ';
	width:16px;
	height:26px;
	background:url(../img/rhinoslider-sprite.png) -224px 0 no-repeat;
}

.rhino-bullets:after {
	left:auto;
	right:-16px;
	background-position: -240px 0;
}

.rhino-bullets li {
	float:left;
	display:inline;
	margin:0 2px;
}

.rhino-bullets li a.rhino-bullet {
	display: block;
	width: 16px;
	height: 15px;
	cursor: pointer;
	background: white;
	font-size: 10px;
	text-align: center;
	padding: 6px 0 5px 0;
	color: #333;
	text-decoration:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.rhino-bullets li a.rhino-bullet:hover, .rhino-bullets li a.rhino-bullet:focus {
	color:#999;
	background:#eee;
}

.rhino-bullets li a.rhino-bullet.rhino-active-bullet {
	color:#fff;
	background:#5cd4e8;
}





#slider {
				width:950px;
				height:300px;
				
				/*IE bugfix*/
	
	
				margin-top:50px;
				margin-left:-12px;
			}
			
			#slider li { list-style:none; }
			
			#page {
				width:900px;
				margin:0px auto;
			}
			
			
			
		/*ボタン キャンペーン*/	
			
button.css3button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #ffffff;
	padding: 10px;
	margin: 10px 20px 40px 0px;
	background: -moz-linear-gradient(
		top,
		#88ff19 0%,
		#00ab58);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#88ff19),
		to(#00ab58));
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border: 1px solid #ffffff;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0),
		inset 0px 0px 0px rgba(255,255,255,0);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0),
		inset 0px 0px 0px rgba(255,255,255,0);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0),
		inset 0px 0px 0px rgba(255,255,255,0);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0),
		0px 1px 0px rgba(255,255,255,0.3);
}




.concept_txt_eye a{
	color:#F60;
	text-decoration:none;
}
.concept_txt_eye a:hover{
	color: #F90;
}

.concept_txt_eye a:visited{
	color: #F36;
}

.howpay{
	width:600px;
	border:#F93 solid 1px;
	margin-left:45px;
	padding:20px;
	background-color: #ECF7D4;
	font-size:80%;
}
.howpay2{
	width:550px;
	border:#F93 solid 1px;
	margin-left:45px;
	padding:20px -20px 20px 0px;
	background-color: #ECF7D4;
	font-size:80%;
}
.bt_naka{
	width:500px;
	margin: 0 auto;
	text-align:center;
}

.main_txt{
	color:#816E58;
	font-size:85%;
	margin-bottom:20px;
	margin-left:45px;
}

.main_txt_nomargin{
	color:#816E58;
	font-size:80%;
	margin-bottom:20px;
	margin-left:15px;
}

.orange_how{
	color: #F69;
	font-size: 82%;
	margin: 10px 0px;
	text-align: right;
}

.pink_price_bra{
	font-size:120%;
	color:#F39;
}

.s_box{
	border:#F66 solid 1px;
	width:460px;
	padding:10px;
	margin:10px;
}

.migichasin{
	float:right;
	margin:10px;
}

.pink_big_price a{
	font-size:9px;
	float:right;
	color:#F39;
}
.green_how{
	font-size:16px;
	color: #0C6;
}

tr .line{
	border-bottom:#999 5px solid;.big_box .container .content .resizeimage form table tr td table {
	color: #CCC;
}


/*次矢印のアイコンフォント*/
.sp-next-arrow:before {
	font-family: FontAwesome !important;
	content: '\f105' !important;
}
/*前矢印のアイコンフォント*/
.sp-previous-arrow:before {
	font-family: FontAwesome !important;
	content: '\f104' !important;
}
.sp-next-arrow:before {
	content:' ' !important;
	display: block;
	background: url(../imges/arrow-right.png) no-repeat left top;
	text-indent: -9999px;
	width: 40px;
	height: 40px;
}
.sp-previous-arrow:before {
	content:' ' !important;
	display: block;
	background: url(../imges/arrow-left.png) no-repeat left top;
	text-indent: -9999px;
	width: 40px;
	height: 40px;
}
.sp-button {
	border:2px solid #ccc;
}
.sp-selected-button {
	background-color: #ccc;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:before,
.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
	border-color: #ffa801;
}
.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:after,
.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
	color: #ffa801;
}

.sp-vertical .sp-previous-arrow {
	top: 0;
}
.sp-vertical .sp-next-arrow {
	bottom: 0;
}
