@charset "utf-8";

/* .page_kanyu .mokujicontainer:before {
  display: none;
}
#Mokuji #mokujimenu {
  padding: 0.5rem 0 0 2rem;
}
@media (max-width: 991px) {
  .mokujicontainer {
    height: 120px;
  }
} */

.btn-gray {
  background: #999;
  color: #fff;
}
.btn-blue2 {
  background: #4082ab;
  color: #fff;
}
.btn-orange2 {
  background: #f08300;
  color: #fff;
}
.btn-purple2 {
  background: #884898;
  color: #fff;
}
.btn-green2 {
  background: #93ca76;
  color: #fff;
}
.btn-brown {
  background: #716246;
  color: #fff;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fff;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  box-sizing: border-box;
  width: calc(100% / 4);
  height: 3rem;
  /* border-bottom: 3px solid #5ab4bd; */
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 0.6rem 0 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#calendar-Dec:checked ~ #calendar-12,
#calendar-Jan:checked ~ #calendar-1,
#calendar-Feb:checked ~ #calendar-2,
#calendar-Mar:checked ~ #calendar-3 {
  display: block;
}

/*選択されているタブのスタイルを変える*/
/* .tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
} */
#calendar-Dec + .tab_item {
  background: #8491c3;
}
#calendar-12 {
  border-top: 3px solid #8491c3;
}
#calendar-Jan + .tab_item {
  background: #c85554;
}
#calendar-1 {
  border-top: 3px solid #c85554;
}
#calendar-Feb + .tab_item {
  background: #c7dc68;
}
#calendar-2 {
  border-top: 3px solid #c7dc68;
}
#calendar-Mar + .tab_item {
  background: #fbd26b;
}
#calendar-3 {
  border-top: 3px solid #fbd26b;
}

/* カレンダー */
table.apply-calendar {
  margin: 0 auto;
  width: 100%;
  border: none;
  /* border-top: solid 1px #666;
border-bottom: solid 1px #666; */
  border-collapse: separate;
  border-spacing: 5px 10px;
  background: #fff;
  table-layout: fixed;
}

table.apply-calendar th.month {
  width: 3.5rem;
}
table.apply-calendar th.univ {
  width: 25%;
}

table.apply-calendar th {
  vertical-align: middle;
  height: 3.5rem;
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #7d488f;
  border-radius: 4px;
}
table.apply-calendar td {
  border-bottom: 1px solid #999;
  padding: 0;
  text-align: left;
}
/* table.apply-calendar tr:last-child td{
  border-bottom:none;
} */
table.apply-calendar td.day {
  padding: 0;
  height: 3.5rem;
  background: #f5f5f5;
  border-radius: 4px;
  border-bottom: none;
  line-height: 1.3;
  text-align: center;
}
table.apply-calendar td.sat {
  background: #1e50a2;
  color: #fff;
}
table.apply-calendar td.hol {
  background: #ba2636;
  color: #fff;
}
table.apply-calendar a,
table.apply-calendar td.uni {
  font-size: 85%;
}

#calendar-12 table.apply-calendar th {
  background: #8491c3;
}
#calendar-1 table.apply-calendar th {
  background: #c85554;
}
#calendar-2 table.apply-calendar th {
  background: #c7dc68;
}
#calendar-3 table.apply-calendar th {
  background: #fbd26b;
}

/* ########### 575px(sm)以下 ########### */
@media (max-width: 575px) {
  table.apply-calendar a {
    font-size: 70%;
  }
}
