#app{
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  padding-bottom: 10px;
}
.filter-box {
  width: 100%;
  border: 1px solid black;
}

.box-header {
  height: 35px;
  border-bottom: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0 10px;
}
.box-header .svg{
  width: 30px;
}
.box-rank {
  padding: 10px 20px;
  padding-bottom: 20px;
}
.box-rank .box-rank-flex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.box-rank-flex span {
  font-size: 0.8rem;
  margin-top: 15px;
  width: 30%;
  height: 25px;
  border: 1px solid black;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 5px;
}
@media screen and (max-width:639px) {
    .box-rank-flex span {
      font-size: 0.5rem; 
    }
  }
.rank-active {
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
}
.rank-active::after {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin-right: 10px;
}
.box-type {
  padding: 0px 20px;
  margin-bottom: 30px;
}
.box-type ul {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
.box-type li {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid grey;
}
.title {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.box-type .title .color {
  width: 20px;
  height: 40px;
  content: "";
  margin-right: 10px;
}
.checkbox-box {
  width: 25px;
  height: 25px;
  border: 1.5px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
}
.checkbox-box-active {
  width: 25px;
  height: 25px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
}
.box-type .checkbox-box-active .checkbox-active {
  display: inline-block;
  content: "";
  width: 10px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.border-none {
  border-bottom: none;
}

.year-month {
  font-size: 1.2rem;
}

.calendar {
  border-top: 1px solid #e0e0e0;
  overflow-x: scroll;
  height: 980px;
  width: 99%;
}

.calendar-row {
  display: flex;
}

.calendar-cell {
  text-align: center;
  width: 40px;
  min-height: 30px;
  flex-shrink: 0;
  background-color: white;
  border-right: 1px solid #e0e0e0;
}
.is-header .calendar-cell {
  border-right: 1px solid #e0e0e0;
}

.calendar-date {
  font-size: 1.1rem;
  font-weight: 700;
}
.calendar-day {
  font-size: 0.8rem;
}
.is-sunday .calendar-day {
  color: #e57373;
}
.is-sunday .calendar-date {
  color: #ef5350;
}
.is-saturday .calendar-day {
  color: #42a5f5;
}
.is-saturday .calendar-date {
  color: #2196f3;
}

.is-selected {
  background-color: #eceff1 !important;
}
.is-first{
  background-color: #fbe9e7 !important;
}
.button{
  width: 20px;
  margin-top: 10px;
}

.calendar-cell-body {
  text-align: center;
  width: 40px;
  min-height: 65px;
  flex-shrink: 0;
  border-right: 1px solid #e0e0e0;
}

.calendar-row-body {
  display: flex;
  position: relative;
}

.event{
  position: absolute;
  height: 43px;
  content: "";
  top: 0;
  border:1px solid white;
  z-index: 10;
}
.event-header{
  width: 100%;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: white;
}
.event-body{
  height: 28px;
  width: 100%;

  background-color: #ef6c00 ;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  padding: 7px 5px;
}
.is-line{
  border-bottom: 1px solid black;
}

.all_button{
  width: 100px;
  text-align: center;
  border: 1px solid black;
}

.calendar-raw { 
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}