@charset "Shift_JIS";      /* 文字コード */

html,body,div,h1,h2,h3,h4,p,fieldset,a,br,form,hr,input {margin: 0px; padding: 0px;}
img { margin: 0px; padding: 0px; border: none; }                     /* 画像設定　間隔や枠を付けるかどうか */



/******************************* ▼ 全体の設定 ▼ */
body {
font-family:'メイリオ','Verdana';                /* フォント */
font-size            : 14px;                     /* 文字サイズ */
line-height          : 180%;                     /* 行間 */
color                : #333333;                  /* 文字色 */
background-image     : url(./img/bg.jpg);        /* 背景画像 ※「img」ファイルの「bg.jpg」画像という意味 */
background-repeat:repeat-x                       /* x座標のみ繰り返す（詳しくは使用解説書でも説明します） */
}
/******************************* ▲ 全体の設定 ▲ */



/******************************* ▼ リンクの色と下線 ▼ */

a:link    {color:#0000FF; text-decoration:none;}      /* 通常 「color」は色 「text-decoration」は下線を引く(underline)か引かないか(none) */
a:active  {color:#0000FF; text-decoration:none;}      /*実行中*/
a:visited {color:#0000FF; text-decoration:none;}      /*訪問済*/
a:hover   {color:#FF9900; text-decoration:underline;} /*選択中*/

/******************************* ▲ リンクの色と下線 ▲ */



/*************************************** ▼ サイトタイトル ▼ */
h1 { 
font-size:12px;                                 /* 文字サイズ */
text-align:center;                              /* 中央寄せ   */
padding-top:10px;                               /* 最上部との間隔 */
margin-bottom:5px;
}
                              /* ▽「h1」部分（タイトル）のリンクの設定▽ */
h1 a:link    { color:#666666; text-decoration:none; }       /* 通常 */
h1 a:active  { color:#666666; text-decoration:none; }       /*実行中*/
h1 a:visited { color:#666666; text-decoration:none; }       /*訪問済*/
h1 a:hover   { color:#0000FF; text-decoration:underline; }  /*選択中*/
                              /* △「h1」部分（タイトル）のリンクの設定△ */
/*************************************** ▲ サイトタイトル ▲ */



/*************************************** ▼ 商品タイトル ▼ */
h2 {
font-size:16px;                                 /* 文字サイズ */
text-align:left;                                /* 左寄せ   */
padding-top:10px;                               /* 最上部との間隔 */
margin-bottom:5px;
font-weight: bold;                              /* 文字を太くする */
text-decoration:underline;                      /* 文字に下線を引く */
}
/*************************************** ▲ 商品タイトル ▲ */



/******************************* ▼ ヘッダー ▼ */
#outline{
width                : 750px;      /* 全体の横幅 */
margin               : 0 auto;
padding-bottom       :10px;        /* ヘッダー画像までの間隔 */
background-color     : #ffffff;    /* サイトの背景色 */
background-repeat    :repeat-y;    /* y座標のみ繰り返す（詳しくは使用解説書でも説明します） */
border-left:  #cccccc 1px solid;   /* サイトの左枠 */
border-right: #cccccc 1px solid;   /* サイトの右枠 */
}

#header{
background-image     : url(./img/top.gif); 　/* ヘッダー画像 */
background-repeat    : no-repeat;            /* 繰り返さない */
width                : 730px;                /* ヘッダー画像　横幅 */
height               : 300px;                /* ヘッダー画像　縦幅 */
margin-left          : 10px;                 /* 左端からの間隔 */
display              : block;
}
/******************************* ▲ ヘッダー ▲ */



/******************************* ▼メイン ▼ */
#outline2 {
width                : 730px;                /* コンテンツの横幅 */
margin               : 0px 10px 10px 10px;   /* 上、右、下、左の間隔 */
}

.main  {                                      /* メールフォームより下の本文の部分 */
padding: 35px 10px 25px 10px;                 /* 本文から外枠までの上、右、下、左の間隔 */
clear: both;
}

.mailform {                                   /* メールフォーム */
text-align           : center;                /* 中央寄せ */
padding              : 20px 20px 20px 20px;   /* 枠から内側へ向けて上、右、下、左の間隔 */
margin               : 20px 40px 20px 40px;   /* 枠から外側へ向けて上、右、下、左の間隔 */
border               : 2px solid #CCCCCC;     /* 枠の太さ、タイプ、色 */
clear                : both;                  /* 回り込みの解除　両方 */
}

.site {                                       /* 他ページへのリンク部分（メニュー部分） */
text-align           : center;                /* 中央寄せ */
padding              : 10px 0px 15px 3px;     /* 上、右、下、左の間隔 */
clear                : both;
}

.timer {                                      /* カウントダウンタイマー */
text-align           : center;                /* 中央寄せ */
padding              : 40px 10px 20px 10px;   /* 上、右、下、左の間隔 */
clear                : both;
}

.img {                                        /* 画像など */
text-align           : center;                /* 中央寄せ */
padding              : 30px 0px 30px 0px;     /* 上、右、下、左の間隔 */
clear                : both;
}

.check-box {                                  /* チェックボックス */
padding              : 10px 10px 10px 0px;     /* 本文と枠との上、右、下、左の間隔 */
margin               : 30px 0px 60px 0px;   /* 枠と「.main」の枠との上、右、下、左の間隔 */
border               : 2px solid #CCCCCC;     /* 枠の太さ(2px)・実線(solid)※他には点線（dotted）二重線(double)などがある・枠の色（#CCCCCC） */
clear                : both;
}

.check-box li {                               /* チェックボックスのリストの設定 */
list-style           : none;
background-image     : url(img/cl.gif);       /* チェックリストのイメージ画像 */
background-repeat    : no-repeat;
padding-left         : 25px;                  /* チェックリスト画像と左枠の間隔 */
margin-bottom        : 10px;                   /* チェックボックス枠と真下の項目（特典）との間隔 */
}

.konyusya {                                    /* 購入者の声 */
padding              : 10px 10px 10px 10px;    /* 本文と枠との上、右、下、左の間隔 */
margin               : 50px 20px 60px 20px;    /* 枠と「.main」の枠との上、右、下、左の間隔 */
border               : 2px dotted #CCCCCC;     /* 枠の太さ(2px)・点線（dotted）※他には実線(solid)二重線(double)などがある・枠の色（#CCCCCC） */
background-color     : #ffffff;                /* 枠内の背景色 */
clear                : both;
}

.shohin {                                     /* 商品説明 */
padding              : 20px 30px 30px 30px;   /* 本文と枠との上、右、下、左の間隔 */
margin               : 40px 20px 20px 20px;   /* 枠と「.main」の枠との上、右、下、左の間隔 */
border               : 2px solid #000000;     /* 枠の太さ(2px)・実線(solid)※他には点線（dotted）二重線(double)などがある・枠の色（#000000） */
clear                : both;
}

.tokuten {                                    /* 特典 */
padding              : 10px;   /* 本文と枠との上、右、下、左の間隔 */
margin               : 30px 30px 30px 30px;   /* 枠と「.main」の枠との上、右、下、左の間隔 */
border               : 4px double #ff9999;    /* 枠の太さ(4px)・二重線(double)※他には点線（dotted）実線(solid)などがある・枠の色（#ff9999） */
clear                : both;
}

.tokuten li {                               /* チェックボックスのリストの設定 */
font-size			: 13px;
line-height			: 1.2em;
	}

.question {                                   /* クエスチョン（よくあるご質問） */
padding              : 20px 25px 20px 20px;   /* 本文と枠との上、右、下、左の間隔 */
margin               : 30px 20px 30px 20px;   /* 枠と「.main」の枠との上、右、下、左の間隔 */
border               : 2px solid #000000;
clear                : both;
background-color     : #ffffcc;                /* 枠内の背景色 */
}

.right {                                       /* 今日の日付と名前部分 */
padding              : 20px 50px 20px 0px;
text-align           : right;                  /* 右寄せ */
clear                : both;
}
/******************************* ▲ メイン ▲ */



/******************************* ▼ フッター ▼ */
#footer{                                      /* コピーライト部分 */
font-size            : 11px;                  /* コピーライトの文字サイズ */
margin-top           : 60px;                  /* フッターの真上の部分との間隔 */
width                : 750px;                 /* フッターの枠の横幅 */
height               : 70px;                  /* フッターの枠の縦幅 */
background-image     : url(img/footer.jpg);   /* フッターの背景画像の設定 */
background-repeat    : no-repeat;             /* 背景画像を繰り返さない */
clear                : both;
text-align           : right;                 /* 右寄り（右寄り） */
}
/******************************* ▲ フッター ▲ */


.link{
	border:1px dotted #999;
	padding:10px;
	line-height:1.2em;
	margin-left:10px;
}

.url{color:green;}


p{display: block; margin: 1.33em 0}
