@charset "utf-8";
/* CSS Document */
/* formattiong style
------------------------------*/
body {
  -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
  width: 980px;
}

/* layout
------------------------------*/
.contentWrapper {
  max-width: 980px;
  margin: 0px auto;
  padding: 0px 10px;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#rootlist {
  display: none;
}

/* print
------------------------------*/
.print {
  display: block;
}
.noneprint {
  display: none;
}
.print_set {
  page-break-inside: avoid;
}

/* 2カラム解除
------------------------------*/
#content {
  width: 100%;
}

/* footer
------------------------------*/
footer .band {
  display: none;
}

/* home css
------------------------------*/
#home .print {
  display: none;
}
#home .noneprint {
  display: block;
}
#home footer .band {
  display: block;
}