@charset "UTF-8";
@import url(common.css);
@import url(textsettings.css);
/* ================================================================ *
	ADIC Company Pfofile CSS SUBLIME design
 * ================================================================ */

/* ---------------------------------------------------------------- *
	ドキュメント全体に関する設定です
 * ---------------------------------------------------------------- */

body { background-color: #fffbf4; background-repeat: repeat; background-attachment: scroll; background-position: 0 0;
  /* --- 基本的な前景色（文字色）を設定してください --- */
  
}

#container {
  /* --- 内容部分の背景を設定してください --- */
  /* Note：内容部分の背景を透明にしたり，透過 GIF を利用したりして
           背景に変化をつけることができます */
  background: transparent;
  /* --- ドキュメント本体の幅を設定してください --- */
  /* Note：百分率指定も可能です */
  width: 800px;
  /* --- ドキュメント本体の位置を設定してください --- */
  /* Note：「0」のみで左寄せ，「0 auto」でセンタリング */
  margin: 0 auto;
}
#screen { background: #fffbf7 url(_images/bg.gif) repeat-y center 50%; height: auto; margin: 0; padding: 0; }
/* ---------------------------------------------------------------- *
	ヘッダ部分の設定です
 * ---------------------------------------------------------------- */

#header {
  /* --- 背景を設定してください（短縮プロパティでの設定です） --- */
  background: #ffffff;
  /* --- マージンを設定してください --- */
  /* Note：上下マージンの折りたたみに注意してください */
  height: 60px; margin-top: 0; margin-bottom: 0; padding: 0; }
#header h1 { position: relative; top: 15px; margin-left: 20px; }
/* ---------------------------------------------------------------- *
	ナビゲーション部分の設定です
 * ---------------------------------------------------------------- */

#navi {
  /* --- 背景を設定してください（短縮プロパティでの設定です） --- */
  margin-top: 0; margin-bottom: 0;
  /* --- パディングを設定してください --- */
  /* Note：ナビゲーション部分に上下マージンを持つものが含まれる場合，
           上下パディングには正の値を指定してください */
  padding: 0; border-bottom: 1px solid #eeeeee; }

#navi ul {
  /* --- マージンを設定してください --- */
  margin: 0;
  /* --- パディングを設定してください --- */
  padding: 0;
  /* --- 高さを設定してください --- */
  height: 2.5em;
}

#navi ul li {
  /* --- マージンを設定してください --- */
  margin: 0;
  /* --- パディングを設定してください --- */
  padding: 0;
  /* --- 横並びにさせるためにフロートを指定してください --- */
  float: left;
}
/* ---------------------------------------------------------------- *
	コンテンツコンテナの設定です
 * ---------------------------------------------------------------- */

#main {
  /* --- 背景を設定してください（短縮プロパティでの設定です）--- */
  background: transparent;
  /* --- マージンを設定してください --- */
  /* Note：この要素のマージン・パディングは，その有無と値によって
           複雑な折りたたみを生じます。複雑なカスタマイズをしない
           限り，以下を「すべて 0」にしておくことをおすすめします。 */
  margin-top: 0;
  margin-bottom: 0;
  /* --- パディングを設定してください --- */
  padding-top: 17px;
  padding-bottom: 0;
}
#main .title { width: 760px; margin-right: auto; margin-bottom: 20px; margin-left: auto; }
/* ---------------------------------------------------------------- *
	コンテンツ部分の設定です
 * ---------------------------------------------------------------- */

.contents {
  /* --- 背景を設定してください（短縮プロパティでの設定です）--- */
  background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; width: 740px; margin: 0 auto 50px; }
.contents p.main { width: 700px; margin-right: auto; margin-bottom: 10px; margin-left: auto; }
.contents h3 { font-size: 1.4em; font-weight: bold; width: 700px; margin: 25px auto 10px; padding-bottom: 5px; padding-left: 7px; border-bottom: 1px dotted #d2d2d2; border-left: 5px solid #b8cdff; }
.contents p.lead { width: 700px; margin-right: auto; margin-bottom: 5px; margin-left: auto; }
.contents p.copy { font-weight: bold; width: 700px; margin: 10px auto 5px; }
.contents p.renraku { background-color: #e6e6e6; width: 470px; margin-top: 20px; margin-right: auto; margin-left: auto; padding: 20px; }
.contents .seitei { width: 140px; margin-top: 40px; margin-left: 20px; padding: 10px; border: solid 1px #464646; }
.contents .seitei p { font-size: 1.3em; font-family: "ヒラギノ明朝 Pro W3", "ＭＳ 明朝", "ＭＳ Ｐ明朝", 細明朝体, 平成明朝; margin-bottom: 0; padding-bottom: 0; }
.contents ul.kiyaku { width: 650px; margin-right: auto; margin-left: auto; }
.contents ul.kiyaku li { font-size: 1.2em; line-height: 1.5em; margin-bottom: 5px; list-style-type: decimal; list-style-position: inside; }
.contents ul.aiue { width: 620px; margin-right: auto; margin-bottom: 10px; margin-left: auto; }
.contents ul.aiue li { font-size: 1.2em; line-height: 1.2em; margin-bottom: 3px; list-style-type: none; }
.contents table { width: 700px; margin: 10px auto 5px; }
.contents table th { vertical-align: top; width: 20px; }
.contents table p { font-weight: bold; }
.contents table th p {  }
/* ---------------------------------------------------------------- *
	コンテンツ画像の設定です
 * ---------------------------------------------------------------- */

.contents img.fig {
  /* --- 画像をどちらに回り込ませるか設定してください --- */
  /* Note：left（左）または right（右）を指定します；この指定によって
           以降のマージンの指定方法が異なります */
  float: left;
  /* --- 画像のマージンを設定してください --- */
  /* Note：前記の回り込みについて「left」のとき→左マージン 0，
           「right」のとき→右マージン 0 としてください */
  margin-top: 0;
  margin-right: 1em;
  margin-bottom: 1em;
  margin-left: 0;
}

/* ---------------------------------------------------------------- *
	画像のみのボックスを作る場合の設定です
 * ---------------------------------------------------------------- */

.imgbox {
  /* --- 背景を設定してください（短縮プロパティでの設定です）--- */
  background: #FFFFFF;
  /* --- マージンを設定してください --- */
  /* Note：上下マージンの折りたたみに注意してください */
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

/* ---------------------------------------------------------------- *
	フッタ部分の設定です
 * ---------------------------------------------------------------- */

#footer {
  /* --- 背景を設定してください（短縮プロパティでの設定です）--- */
  background-color: #ffffff; background-repeat: no-repeat; background-attachment: scroll; background-position: right top; margin-top: 0; margin-bottom: 0;
  /* --- パディングを設定してください --- */
  /* Note：上下マージンを持つものが含まれる場合，上下パディングには
           正の値を指定してください */
  padding: 0.6em 0 1em 1em; border-top: 1px dotted #d2d2d2; }

#footer ul {
    margin-bottom: 4px;
    padding: 0;
  /* --- フッタメニュー左端の罫線の太さ・線種・色を設定してください（短縮プロパティでの設定です） --- */
    border-left: 1px solid #CCCCCC;
}

#footer ul li {
  margin: 0;
  padding: 0 5px;
  /* --- フッタメニュー右側の区切り線の太さ・線種・色を設定してください（短縮プロパティでの設定です） --- */
  border-right: 1px solid #CCCCCC;
  /* --- 横並びリストのリストマーカ画像を設定してください --- */
  /* Note：16×16 ピクセル以下のものを使用してください */
  background-image: none;
}
