@charset "utf-8";
/* CSS Document */

/* ================= 目次 =====================

【基本設定】
　1)header関連
　2)table関連
　3)画像配置
　4)余白関連
　5)テキスト(装飾)
　6)メリット
　7)特典
　8)FAQ
　*)その他･重要タグ
　*)hack関連
【オリジナル】

============================================ */

/* ============================================
　　　　　■□■ 基本設定 ■□■　
============================================ */

body
{
	margin:0px;
	padding:0px;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	background:#eee url(../img/bg_body2.gif) repeat-y center;
}

/* ===== 1. header関連 ===== */

h1
{
	color:#FFF;
	margin:0px;
	padding:10px;
	font-size:12px;
	text-align:center;
	background:#FFF; /* ←ヘッダーの背景色 */
}

h2
{
	font-size:36px;
	margin-bottom:20px;
	color:#CC0000;
	font-family: "HGP創英角ｺﾞｼｯｸUB",  "ヒラギノ角ゴ Std W8", sans-serif;
	line-height:120%;
	font-weight:normal;
	text-align:center;
	clear:both;
	border-bottom:3px solid #CCC;
	margin-top:80px;
}

h3
{
	font-size:20px;
	font-weight:normal;
	font-family:"HG創英角ｺﾞｼｯｸUB";
	clear:both;
	margin-top:50px;
	border-left:4px solid #3366CC;
	padding-left:7px;
	margin-top:60px;
}

/* ===== 2. table関連 ===== */

ul
{
	line-height:150%;
	font-size:15px;
}

table
{
	border-top:2px solid #ccc;
	border-left:2px solid #ccc;
	border-right:1px solid #CCC;
	border-bottom:1px solid #CCC;
	font-size:13px;
	line-height:120%;
	margin:0 auto;
}

table td
{
	border-top:1px solid #fff;
	border-left:1px solid #fff;
	border-right:1px solid #CCC;
	border-bottom:1px solid #CCC;
}

table th
{
	background:url(../img/bg_th.gif) repeat-x;
	border-top:1px solid #fff;
	border-left:1px solid #fff;
	border-right:1px solid #CCC;
	border-bottom:1px solid #CCC;
	text-align:left;
}

/* ===== 3. 画像配置 ===== */

.img-left
{
	float:left;
	padding-right:12px;
}

.img-right
{
	float:right;
	padding-left:12px;
}

.img-center
{
	text-align:center;
}

/* ===== 4. 余白関連 ===== */

.bottom10
{
	padding-bottom:10px;
}

.bottom20
{
	margin-bottom:20px;
}

.bottom30
{
	margin-bottom:30px;
}

.bottom60
{
	margin-bottom:60px;
}

.bottom80
{
	margin-bottom:80px;
}

.top10
{
	margin-top:10px;
}

.top20
{
	margin-top:20px;
}

.top30
{
	margin-top:30px;
}

.img-pad50
{
margin:50px auto;
text-align:center;
}

/* ===== 5. テキスト(装飾) ===== */


p
{
	line-height:200%;
	font-size:15px;
}

.txt-right
{
	text-align:right;
}

p.center
{
	text-align:center;
}

.line
{
	text-decoration:underline;
}

.bottom-line
{
	text-decoration:underline;
}


.highlight
{
	background:#FFFF00;
	font-weight:bold;
}

span.cancel　/* Pのデコレーションキャンセル */
{
	text-decoration:line-through;
}

.bold /* fontの強調 */
{
	font-weight:bold;
}

/* fontカラー */
.red
{
	color:#CC0000;	
}

.blue
{
	color:#0000FF;
}

.yellow
{
	color:#FFFF00;
}

/* fontサイズ */

.size12
{
font-size:12px;
}


.size18
{
font-size:18px;
}


.size24
{
font-size:24px;
}

.size36
{
font-size:36px;
}

.yellow_line
{
	background:#FFFF00;
}

/* ===== 6. メリット ===== */

div#merit
{
	margin:0px;
	border:2px dotted #4f65a9; /* ←枠 */
	padding:20px;
	background:#eeeeee;
}

div#merit ul
{
	margin:0;
	padding:0;
}

div#merit li
{
	margin:0px 0 1.8em 0;
	padding:0px 0 0 40px;
	list-style:none;
	font-size:18px;
	font-family:"HG創英角ｺﾞｼｯｸUB";
	font-weight:normal;
	line-height:120%;
	background:url(../img/ico_lighton.gif) no-repeat left top;　/* リストイメージ */
}

/* ===== 7. 特典 ===== */

div.tokuten
{
	background:url(../img/tokuten_bg.gif) repeat-y;
	margin:0 15px 50px 0;
	padding:0;
}

div.tokuten h3
{
	margin:0px;
	padding:0px;
}

div.tokuten p
{
	margin:20px 50px;
}

div.tokuten p.footer
{
	margin:0px;
	padding:0px;
	clear:both;
}


/* ===== 9. FAQ ===== */

div#faq
{
	border:3px solid #ccc;
	padding:20px;
}

div#faq h3
{
	margin:0px;
	padding:0px;
}

div#faq h4
{
	border-bottom:1px solid #CCC;
	border-left:3px solid #ffcc00;
	padding: 2px 12px;
	background:#ffffcc;
	font-size:14px;
}


/* ===== *. その他･重要タグ ===== */

/* float関連 */
.clear
{
	clear:both;
}

/* 囲みボックス */
.wrap
{
	border:1px solid #CCC;
	padding:20px;
}

/* -------- floatした中身がBOXからはみ出すのを回避 -------- */

.clearbox:after
{
	content: "";
	display: block;
	clear: both;
	height: 0px;
}

.clearbox
{
	height: 100%;
}

/* 基本div */
div
{
	margin:0 80px 40px;
}

/* レイアウト */

#wrapper
{
	width:740px;
	text-align:left;
	margin:0 auto;
}

/* main-image */

p#main-image
{
	margin:0;
	text-align:center;
}

/* profile */
div#profile
{
	width:580px;
	clear:both;
	background:#FFF;
	margin:0 auto;
	background:url(../img/img_prof-bottom.gif) bottom no-repeat;
	padding:0 0 10px;
}

div#profile div
{
margin:0 auto;
vertical-align:top;
width:540px;
}

p#profile img
{
vertical-align:bottom;
}

/* footer */
div#footer
{
	text-align:center;
	width:600px;
	margin:30px auto 0;
}

div#footer p
{
	margin:0px;
	padding:0px;
	font-size:12px;
}

div#footer address
{
	font-style:normal;
	border-top:2px solid #CCC;
	padding:7px;
	font-size:14px;
}

/* ドロップ */
#dropin
{
z-index: 1; left: -69px; top: 10px; visibility: hidden; position: absolute; width: 180px; height: 800px; background:url(../img/h-back.jpg) top no-repeat; padding-top:350px;
}

#dropin p
{
	font-size:12px;
}

#dropin p input
{
	font-size:12px;	
}

.price-txt
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:36px;
	font-weight:bold;
}

/* ===== *. hack 関連 ===== */

/* -------- 中身をfloatした場合も背景を下まで伸ばす -------- */

.clearfix:after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix
{
	display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */



/* -------- IE5.5 ＆ IE6のみで起きる不具合の回避 -------- */

/* Hides from IE5-mac \*/
* html .hollyhack {height: 1%;}
/* End hide from IE5-mac */


/* ============================================
　　　　　■□■ オリジナル ■□■　
============================================ */

.catch
{
	color:#990000;
	font-size:18px;
	font-weight:bold;
}

div.comment
{
	width:700px;
	margin:0 auto 60px;
/*	border-top:1px dotted #eee;
	border-bottom:3px solid #eee; */
	background:url(../img/img_letter-center_02.gif) top no-repeat;
	height:auto;

}

p.align-top
{
vertical-align:top;
}

p.align-bottom
{
vertical-align:bottom;
}

div.comment div
{
clear:both;

}

.img
{
	padding:5px;
}

.img2
{
	width:250px;
}

.img3
{
padding-right:20px;
}


#dropin
{
z-index: 1; left: -69px; top:0px; visibility: hidden; position: absolute; width: 180px; height: 200px; background:#FFF url(../img/h-back.jpg) no-repeat; padding-top:300px;
}

#dropin p
{
	font-size:12px;
}

#dropin p input
{
	font-size:12px;	
}

.price-txt
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:36px;
	font-weight:bold;
}


div.letter2
{
width:580px;
background:url(../img/img_letter2.gif) bottom no-repeat;
padding-bottom:8px;
}

p.letter2
{
vertical-align:bottom;
margin:0 auto;
}

div.letter2 div
{
background:#FFF;
width:530px;
margin:0 auto 10px;
padding:10px;
height:auto;
clear:both;
}



div.letter3
{
width:580px;
background:url(../img/img_letter3.gif) bottom no-repeat;
padding-bottom:5px;

}

p.letter3
{
vertical-align:bottom;
margin:0 auto;
}

div.letter3 div
{
background:#FFF;
width:530px;
margin:0 auto 25px;
padding:10px;
height:auto;
}

p#txt1
{
text-align:right;
font-size:12px;
float:right;
background:url(../img/img_main.gif) top no-repeat;
width:740px;
height:394px;
margin-top:0;
}

div.material-left
{
width:270px;
border:1px solid #CCC;
line-height:normal;
float:left;
padding:6px;
margin:0;
}

div.material-left h3
{
border-left:3px #3366CC solid;
padding-left:20px;
font-size:14px;
font-weight:100;
margin:15px 0 10px;
}

div.material-left ul
{
margin:0 auto;
}

div.material-left ul li
{
font-size:9px;
list-style-type:decimal;
list-style-position:inside;
}

div.material-right ul
{
margin:0 auto;
}

div.material-right
{
width:270px;
border:1px solid #CCC;
line-height:80%;
padding:6px;
float:right;
margin:0;
}

div.material-right h3
{
border-left:3px #3366CC solid;
padding-left:20px;
font-size:14px;
font-weight:100;
margin:15px 0 10px;
}

div.material-right ul li
{
font-size:9px;
list-style-type:decimal;
list-style-position:inside;
}

.bottom10
{
margin-bottom:10px;
}


.bottom20
{
margin-bottom:20px;
}

.bottom30
{
margin-bottom:30px;
}

.bottom175
{
margin-bottom:175px;
}


