/*
 BIZカレンダー用CSS
*/

*, *::before, *::after {
  box-sizing: border-box;
}

h1 {
  font-size: 1.25rem;
}

.calendar_info{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.675rem;
}

/*********************************************************************/
/*    no_scrolltable（月のトピックス）                               */
/*********************************************************************/
.no_scrolltable {
  /*border: 1px solid #333333;  エリアが見やすいようにdebug */
  width: 100%;
  overflow-y: auto;
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
}
.no_scrolltable table {
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  width: 99%;
  margin:0px 0px 10px;
  /*border-radius: 5px;*/
}

.no_scrolltable table thead th:first-child {
	/*border-radius: 5px 0 0 0;*/	/* 左上 | 右上 | 右下 | 左下 */
}
.no_scrolltable table thead th:last-child {
	/*border-radius: 0 5px 0 0;*/	/* 左上 | 右上 | 右下 | 左下 */
}

.no_scrolltable table thead th{
	text-align: center;
	color:white;
    /*background: #003C88; check !*/
	background: linear-gradient(#829ebc,#225588);
	border-left: 1px solid #3c6690;
	border-right: 1px solid #3c6690;
	border-top: 1px solid #3c6690;
	border-bottom: 1px solid #3c6690;
	box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}

.no_scrolltable table th, .no_scrolltable table td {
  padding: 0.5rem;
  border-right: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
}

.no_scrolltable table tr:last-child td:last-child {
	/*border-radius: 0 0 5px 0;*/	/* 左上 | 右上 | 右下 | 左下 */
}
.no_scrolltable table tr:last-child td:first-child {
	/*border-radius: 0 0 0 5px;*/	/* 左上 | 右上 | 右下 | 左下 */
}

.no_scrolltable table td {
  text-align: left;
  /*font-weight: normal;*/
  font-weight: bold;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 3px 1px #eee inset;
}

.no_scrolltable table thead {
  position: sticky;
  top: 0;
  /*background: #99ccff;*/
}

/*********************************************************************/
/*    scrolltable                                                    */
/*********************************************************************/
.scrolltable {
  /*border: 1px solid #333333;*/ /*エリアが見やすいようにdebug*/
  height: 400px;
  width: 100%;
  overflow-y: auto;
  font-family: "Noto Sans JP", sans-serif;
}
.scrolltable table {
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  border-bottom: 1px solid #3c6690;
  width: 100%;
  /*font-size: 0.875rem;*/
  font-size: 0.775rem;
}
.scrolltable table th, .scrolltable table td {
  padding: 0.5rem;
  text-align: left;
  font-weight: normal;
  border-right: 1px solid #3c6690;
  border-top: none;
  border-bottom: none;
  vertical-align: top;
}

.scrolltable table thead th{
  text-align: center;
  font-size: 0.675rem;
  color: white;
  background: linear-gradient(#829ebc,#225588);
  border-top: 1px solid #3c6690;
  border-left: 1px solid #3c6690;
  border-right: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  
}
.scrolltable table th:first-of-type, .scrolltable table td:first-of-type {
  border-left: 1px solid #3c6690;
}

.scrolltable table td {
  /*font-weight: normal;*/
  font-weight: bold;
  /*box-shadow: 左右の向きpx  上下の向きpx ぼかしpx 広がりpx 色 内側指定;*/
  /*box-shadow: 0px -2px 2px 1px #eee inset;*/
  box-shadow: 0px 0px 0px 0px #eee inset;
}
/* add */
.scrolltable table td.top_border {
  border-top: 1px solid #a8b7c5;
}
.scrolltable table td.today {
  background: #99ff99;
  white-space: nowrap;
  box-shadow: 0px 0px 0px 0px #eee inset;
}
.scrolltable table td.BIZ {
  background: #99ffff;
  color: #225588;
  font-size: 0.9rem;
  font-weight: bold;
}
.scrolltable table td.DOSHIN {
  font-weight: bold;
}
.scrolltable table td.holiday {
  color: red;
}
.scrolltable table td.saturday {
  /*background: #99ffff;*/
  background: #ffccff;
  box-shadow: 0px 0px 0px 0px #eee inset;
}
.scrolltable table td.sunday {
  background: #ffccff;
  box-shadow: 0px 0px 0px 0px #eee inset;
}

#top, #bottom {
  border-top: 1px solid #a8b7c5;
}
#move_calendar {
  text-align: center;
}
/* end */

.scrolltable table thead {
  position: sticky;
  top: 0;
  background: #cccccc;
}


/*# sourceMappingURL=vercital-scroll-fixed-1row.css.map */