@charset "utf-8";

table.cal {
    border-spacing: 0;
    border-collapse: collapse;
    color: #555;	
    width: 100%;
}
.cal th {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px 0 10px 6px;
    border-top: 1px solid #aaa;
}
.cal td{
    text-align: center;
    border-top: 1px solid #aaa;
    padding: 10px 0 10px 6px;
}
.sun {
    color: #cc0000;
}
.sat {
    color: #0000cc;
}

.step{
  list-style-type: none;
  display:table;
  width:100%;
  padding:0;
  margin:0;
  overflow:hidden;
}
.step li{
  display:table-cell;
  position:relative;
  background: #e6f4fd;
  padding: 1em 0.5em 1em 2em;
  color: #808080;
}
.step li:last-child{
  padding-right: 1em;
}
.step li:last-child:before,
.step li:last-child:after{
  display:none;
}
.step li:before,
.step li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step li:before{
  top:-15px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li:after{
  top:-15px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #e6f4fd;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li.is-current{
  background: #136fb8;
  font-weight: bold;
	color: #FFFFFF;
}
.step li.is-current:after{
  border-color: transparent transparent transparent #136fb8;
}