<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
  <head>

    <b:include data='blog' name='all-head-content'/>

<!-- ブラウザーのタイトルを ページ名 - ウェブサイト名 に設定  -->

     <title><data:blog.pageName/> <data:blog.title/></title>

    <b:skin><![CDATA[
/* Variable definitions
   ====================

<!--- サイト全体の背景色を変更する -->
 <Variable name="bgColor" description="Page Background Color"
           type="color" default="#ffffff" value="#4396CA">

<!--- サイト全体の文字色を変更する -->
 <Variable name="textColor" description="Text Color"
           type="color" default="#000000" value="#000000">

<!--- サイト全体の文字リンク色を変更する -->
 <Variable name="linkColor" description="Link Color"
           type="color" default="#ffffff" value="#1259A0">

<!--- サイト全体のフォントスタイルを変更する -->
 <Variable name="bodyFont" description="Text Font"
           type="font" default="normal normal 100% Verdana, Arial, Sans-serif;" value="normal normal 100% Verdana, Arial, Sans-serif;">

   <Variable name="startSide" description="Start side in blog language"
             type="automatic" default="left" value="left">
   <Variable name="endSide" description="End side in blog language"
             type="automatic" default="right" value="right">
*/

/*サイト全体の背景画像URLを指定 文字色・文字サイズを指定
【注意】
背景画像がないときはbackground-imageの行を削除する
背景画像の配置指定 http://www.tagindex.com/stylesheet/page/index.html */
body {
  background: $bgColor;
  margin: 0;
  padding: 0px;
  font: $bodyFont;
  color: $textColor;
  font-size: 12px;
  background-image: url(http://*****/img/bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/*リンク文字色を指定する 色の指定は上部のlinkColorで行う*/
a:link {
  color: $linkColor;
}
a:visited {
  color: $linkColor;
}

/*リンク画像の境界線マージンを指定する */
a img {
  border-width: 0;
}

/*画像の下にできる空白をなくす*/
img { vertical-align:bottom }

/*Bloggerヘッダー上のナビバーの表示指定
【注意】表示させる場合は、下の５行を削除する*/
#navbar #Navbar1 iframe{
height:0px;
display:none;
visibility:hidden;
}

/*著作権表示を非表示にする*/
#Attribution1 {
display: none;
}

/*■■サイト全体の表示マージンの指定■■*/
#outer-wrapper { 
  margin: 0pt auto;
}

/* Header　ヘッダー部分
----------------------------------------------- */
#header-wrapper {
  margin:0;
  padding: 0;
  background-color: $bgColor;
  text-align: $startSide;
}

/*ヘッダー部分の横幅　マージン　背景の指定 【ヘッダー】 */
#header {
  width: 100%;
  margin: 0 auto;
  background-color: $bgColor;
  border: 0px;
  color: $bgColor;
  padding: 0px;
  font: $bodyFont;
}

h1.title {
  padding-top: 0px;
  margin: 0 0 0 0;
  line-height: 0em;
  font-size: 0%;
}

/*header　ガジェット／ウィジェットのタイトルの設定
【注意】ガジェットのタイトル文字は非表示に設定しています。 */
#header h2 {
 margin: 0 0 0 0;
 padding: 0px;
 font-size: 100%;
}

#header .widget h2 {
display: none;
}


h1.title a, h1.title a:visited {
  color: $bgColor;
  text-decoration: none;
}

#header .description {
  display: block;
  margin: 0 0px;
  padding: 0px;
  line-height: 0em;
  font-size: 0px;
}
                                                              
/* Content メインコンテンツ（ヘッダー下フッター上）の横幅　背景の指定
----------------------------------------------- */
.clear { 
  clear: both;
}

/*メインコンテンツ全体の横幅　マージン　背景の指定 サイドバーに背景画像を入れるときは下のタグを参照すること
【要変更】メインと左右サイドバーエリアの背景色／背景画像を必ず指定すること　
【注意】background-imageが透過処理のときはbackground-colorの行を削除する */ 
#content-wrapper {
  width: 980px;
  margin: 0 auto;
  padding: 0 0 0px;
  text-align: $startSide;
  background-image: url(http://******/mainbg.png);
  background-color: #ffffff;
  border: 0px;
  border-top: 0;
}

/*サイドバー（左）の横幅　マージン　背景の指定
【注意】左サイドバー部分だけ背景色／背景画像を設定するときは、上のcontent-wrapperの背景画像で設定する*/
#left-sidebar-wrapper {
  margin-$startSide: 0px;
  width: 200px;
  height: 100%;
  float: $startSide;
  display: inline;       /* fix for doubling margin in IE */
  word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
  overflow: hidden;      /* fix for long non-text content breaking IE sidebar float */
}

/*メイン（中央部）の横幅　マージン　背景の指定 
--------------------------------------------------------------------------------------
右サイドバーを300pxにする場合は、width: 580pxを480pxに書き換える
【参考】左右サイドバーとメインの間にスペースを入れる場合は？
例）widthを570にしてmargin-$startSide: 5px;に設定すると左右に5pxずつスペースができます */
#main-wrapper {
  margin-$startSide: 0px;
  width: 580px;
  float: $startSide;
  display: inline;       /* fix for doubling margin in IE */
  word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
  overflow: hidden;      /* fix for long non-text content breaking IE sidebar float */
}

/*サイドバー（右）の横幅　マージン　背景の指定
【参考】メイン（post記事）を480pxにした場合はwidthを300に変更する
【注意】左サイドバー部分だけ背景色／背景画像を設定するときは、上のcontent-wrapperの背景画像で設定する*/
#right-sidebar-wrapper {
  margin-$endSide: 0px;
  width: 200px;
  float: $endSide;
  display: inline;       /* fix for doubling margin in IE */
  word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
  overflow: hidden;      /* fix for long non-text content breaking IE sidebar float */
}

/* Posts 投稿記事の見出し　小見出し　順見出しの設定
============================================================= */

/* 見出しの設定 */
h2 {
 margin: 0 0 0 0;
 padding: 0px;
}

/* 小見出しの設定 */
h3 {
 margin: 0 0 0 0;
 padding: 0px;
}

/* 準見出しの設定 */
h4 {
 margin: 0 0 0 0;
 padding: 0px;
}

/* Posts　記事（メイン中央部分に表示される内容）の指定
----------------------------------------------- */
/*日付の設定部分　文字の大きさ　85％
【要変更】投稿日を表示する場合は、必ず文字色colorを指定すること*/
.date-header {
  margin: 0 0 0 0;
  font-weight: normal;
  color: #;
  font-size: 85%;
}

/*投稿記事と投稿記事の間のマージンを指定する　例）padding-bottom: 50px;
参照　http://www.0102030405.com/2012/02/postpost.html
--------------------------------------------------------------- */
.post {
  margin: 0 0 0 0;
  padding-bottom: 0px;
}

/*記事のタイトル部分 タイトル前にアイコンなどを表示させる場合は以下を参照して書き換える
【注意】タイトル文字色などは下の.post-title a で設定する*/
.post-title {
  margin: 0;
  padding: 0px;
  font-size: 100%;
  line-height: 1.5;
　border-left:4px solid #ffffff;
  border-bottom:3px solid #1259a0;
}
/*【参考】記事タイトル部分にアイコンを挿入　位置指定をする場合のサンプル　変更不要　
記事タイトル前にアイコンを入れたときの見本 http://arayama.hans-huber.com
///////////////////////////////////////////////////////////////////
.post-title {
  margin: 0;
  padding: 0 0px;
  font-size: 100%;
  background-image: url(http://www.hans-huber.com/site/image/icon-post.jpg);
  background-repeat: no-repeat;
　padding-left:40px;
　padding-top:20px; 
　border-left:4px solid $headerCornersColor;
  border-bottom:3px solid #669966;
///////////////////////////////////////////////////////////////////
*/

/*記事タイトルの文字色　文字の太さの指定 */
.post-title a, .post-title a:visited, .post-title strong {
  text-decoration: none;
  color: #1259a0;
  font-weight: bold;
}

/*投稿記事内のパーツとパーツの間のマージンを指定する
参照http://www.0102030405.com/2012/02/post-margin.html
--------------------------------------------------------------- */
.post div {
  margin: 0 0 .75em;
  line-height: 1.5em;
}

.post-footer {
  margin: -.0em 0 0;
  color: $textColor;
  font-size: 100%;
}

.post-footer .span {
  margin-$endSide: .3em;
}

.post img {
  padding: 0px;
  border: 0px ;
}
.post blockquote {
  margin: 1em 20px;
}
.post blockquote p {
  margin: .75em 0;
}

/* Comments　コメントの指定 変更不要　ここから
----------------------------------------------- */
#comments h4 {
  margin: 1em 0;
  color: $dateHeaderColor;
}
#comments h4 strong {
  font-size: 100%;
}
#comments-block {
  margin: 1em 0 1.5em;
  line-height: 1.3em;
}
#comments-block dt {
  margin: .5em 0;
}
#comments-block dd {
  margin: .25em 0 0;
}
#comments-block dd.comment-footer {
  margin: -.25em 0 2em;
  line-height: 1.4em;
  font-size: 78%;
}
#comments-block dd p {
  margin: 0 0 .75em;
}

.deleted-comment {
  font-style:italic;
  color:gray;
}

.feed-links {
  clear: both;
  line-height: 2.5em;
}

#blog-pager-newer-link {
  float: $startSide;
 }

#blog-pager-older-link {
  float: $endSide;
 }

#blog-pager {   
  text-align: center; 
 }


/* Sidebar Content　■■　左右のサイドバー内の設定　■■
============================================================= */

/*■■ サイドバー　ガジェット／ウィジェットのタイトルの設定　■■
ガジェットのタイトル文字は非表示に設定しています。表示する場合は下の【参考】へ */
.sidebar h2 {
 margin: 0 0 0 0;
 padding: 0px;
 background-color: $sidebarTitleBgColor;
 font-size: 0%;
 color: $sidebarTitleTextColor;
 height:0px;
 display:none;
 visibility:hidden;
}

/*【参考】ガジェット／ウィジェットのタイトルをウェブで表示する場合は下の設定に変更する 
///////////////////////////////////////////////////////////////////
.sidebar h2 {
 margin: 1.6em 0em .5em;
 padding: 3px 3px;
 background-color: $sidebarTitleBgColor;
 font-size: 100%;
 color: $sidebarTitleTextColor;
}
///////////////////////////////////////////////////////////////////
 */
                                                              
.sidebar ul {
  margin: 0 0 0 0;
  padding: 0px;
  list-style: none;
}
.sidebar li {
  margin: 0;
  padding-top: 0;
  padding-$endSide: 0;
  padding-bottom: .0em;
  padding-$startSide: 0px;
  text-indent: 15px;
  line-height: 1.5em;
}
.sidebar {
  color: $textColor;
  line-height:1.3em; 
}
.sidebar .widget { 
  margin: 0 0 0 0;
}

.sidebar .widget-content { 
  margin: 0 0 0 0;
}


/* Profile プロフィールの内容指定 変更不要
----------------------------------------------- */
.profile-img { 
  float: $startSide;
  margin-top: 0;
  margin-$endSide:0px;
  margin-bottom:0px;
  margin-$startSide: 0;
  padding: 0px;
  border: 1px solid $borderColor;
}

.profile-data {
  margin:0;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight: bold;
  line-height: 1.6em;
  font-size: 78%;
}

.profile-datablock {
  margin:.0em 0 .0em;
}

.profile-textblock {
  margin: 0.5em 0;
  line-height: 1.6em;
}

                                                              
/* Footer フッターの内容指定  幅の指定はレイアウトのFooterで行うこと
----------------------------------------------- */
/*Footer　ガジェット／ウィジェットのタイトルの設定
【注意】ガジェットのタイトル文字は非表示に設定しています。 */
.footer h2 {
 margin: 0 0 0 0;
 padding: 0px;
 font-size: 100%;
}

.footer .widget h2 {
display: none;
}


/*Footerの背景色／背景画像の設定
【要変更】背景色は必ず変更してください*/
#footer {
  background-color:# ;
  background-image:url(http://*****/img/footer-bg.png);  
  width: 100% ;
  clear: both;
  text-align: center;
  color: $textColor;
}

/*Footer　ガジェット／ウィジェットの設定*/
#footer .widget {
  margin:.0 0 0 0;
  padding-top: 0px;
  font-size: 100%;
  line-height: 1.5;
  text-align: $startSide;
}

]]></b:skin>






  </head>

<!-- Faviconファビコンの画像URLを入力する
============================================================= -->
<link href='http://www.hans-huber.com/0102030405/img/favicon.ico' rel='icon' type='image/x-icon'/>  
<link href='http://www.hans-huber.com/0102030405/img/favicon.ico' rel='Shortcut Icon' type='img/x-icon'/>  

  <body>

  <div id='outer-wrapper'><div id='wrap2'>

    <!-- skip links for text browsers -->
    <span id='skiplinks' style='display:none;'>
      <a href='#main'>skip to main </a> |
      <a href='#sidebar'>skip to sidebar</a>
    </span>


    <div id='header-wrapper'>
      <b:section class='header' id='header' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Japanese Conversation Classes (Header)' type='Header'/>
<b:widget id='HTML4' locked='false' title='header' type='HTML'/>
</b:section>
    </div>
 
    <div id='content-wrapper'>

      <div id='crosscol-wrapper' style='text-align:center'>
        <b:section class='crosscol' id='crosscol' showaddelement='yes'/>
      </div>

      <div id='left-sidebar-wrapper'>
        <b:section class='sidebar' id='left-sidebar' showaddelement='yes'>
<b:widget id='HTML1' locked='false' title='left sidebar' type='HTML'/>
<b:widget id='HTML3' locked='false' title='left sidebar 2' type='HTML'/>
<b:widget id='BlogArchive1' locked='false' title='ブログ アーカイブ' type='BlogArchive'/>
</b:section>
      </div>

      <div id='main-wrapper'>
        <b:section class='main' id='main' showaddelement='no'>
<b:widget id='HTML5' locked='false' title='main widget' type='HTML'/>
<b:widget id='Blog1' locked='true' title='ブログの投稿' type='Blog'/>
</b:section>
      </div>

      <div id='right-sidebar-wrapper'>
        <b:section class='sidebar' id='right-sidebar' preferred='yes'>
<b:widget id='HTML10' locked='false' title='right sidebar' type='HTML'/>
<b:widget id='HTML9' locked='false' title='right sidebar 2' type='HTML'/>
<b:widget id='Label1' locked='false' title='ラベル' type='Label'/>
<b:widget id='Attribution1' locked='true' title='' type='Attribution'/>
</b:section>
      </div>

      <!-- spacer for skins that want sidebar and main to be the same height-->
        <div class='clear'/>

    </div> <!-- end content-wrapper -->



    <div id='footer-wrapper'>
      <b:section class='footer' id='footer'>
<b:widget id='HTML2' locked='false' title='footer' type='HTML'/>
</b:section>
    </div>

  </div></div> <!-- end outer-wrapper -->


</body>
</html>
