@charset "utf-8";

/* -------------------------------------------------------------------
  背景・背景色・フォント・前景色・下線  [デフォルト]
------------------------------------------------------------------- */
body {
  background-image : none;
}

/* -------------------------------------------------------------------
  ベース

    ※pc_main.cssの幅基準
    ※最大幅と980pxとする
------------------------------------------------------------------- */
#base {
  width : 100%;
  max-width : 980px;
}

/* -------------------------------------------------------------------
  ヘッダー

    ※pc_main.cssの高さ基準
    ※上下のボーダー幅の増減分、高さも増減させる
------------------------------------------------------------------- */
#header {
  height : 145px;
  border-width : 0 0 1px 0;
}

/* -------------------------------------------------------------------
  メインベース

    ヘッダーとフッターの高さ分を内側の余白とみなし、領域を狭める
------------------------------------------------------------------- */
#mainBase {
  margin : -145px 0 -51px 0;
  padding : 145px 0 51px 0;
  border-right : 0;
  border-left : 0;
}

/* -------------------------------------------------------------------
  フッター

    ※pc_main.cssの高さ基準
    ※上下のボーダー幅の増減分、高さも増減させる
------------------------------------------------------------------- */
#footer {
  height : 51px;
  border-width : 1px 0 0 0;
}

/* -------------------------------------------------------------------
  シェア機能
------------------------------------------------------------------- */
.share div iframe {
  margin-top : -3px;
}

/* -------------------------------------------------------------------
  カレンダー表示部分(親)
------------------------------------------------------------------- */
.calendarParent {
  margin-left : 0;
}

/* -------------------------------------------------------------------
  カレンダー左側
------------------------------------------------------------------- */
.calendarLeft {
  display : block;
  width : 80%;
  min-width : 23.2em;
  margin : 0 auto;
  padding-left : 0;
}

/* -------------------------------------------------------------------
  カレンダー表示部
------------------------------------------------------------------- */
#MiwaAppCalendar {
  margin : 10px auto 0 auto;
}

/* -------------------------------------------------------------------
  ダウンロードファイル一覧エリア
------------------------------------------------------------------- */
.downloadFiles {
  display : block;
  margin : 0 auto;
}

/* -------------------------------------------------------------------
  ダウンロードエリア
------------------------------------------------------------------- */
.downloadArea {
  display : block;
}

.downloadBox {
  margin-top : 10px;
  margin-left : 0;
}

/* -------------------------------------------------------------------
  表示
------------------------------------------------------------------- */
.tbDisplayBlock {
  display : block;
}

.tbDisplayInline {
  display : inline;
}

.tbDisplayInlineBlock {
  display : inline-block;
  *display : inline; /* IE6, IE7 */
  *zoom : 1; /* IE6, IE7 */
}

/* -------------------------------------------------------------------
  非表示
------------------------------------------------------------------- */
.tbDisplayNone {
  display : none;
}