<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
 * ナビCSS
 */

.c_header-cb{/* cbヘッダ用 */
}


/*
 * スクロールして現れるナビ設定CSS
 */

.cb_header{
  position: fixed; /* ヘッダーバーを固定 */
  top: 0; /* 上から0の位置に固定 */
  left: 0; /* 左から0の位置に固定 */
  display: none; /* ヘッダーバーを非表示 */
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ccc;
  /*box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);*/
  z-index: 9999;
  background: #fff;
}
.cb_header-wrap{
  width: 100%;
  min-width: 100%;
  z-index: 9999;
}
@media print{/* 印刷非表示 */
	.cb_header{
	  display: none;
	}
	.cb_header-wrap{
	  display: none;
	}
}
@media screen and (max-width: 767px) {/* 印刷非表示 */
	.c_header-cb{
		display: none;
	}
	.cb_header{
		display: none;
	}
	.cb_header-wrap{
		display: none;
	}
}</pre></body></html>