@charset "UTF-8";
aside {
  width: 100%;
  max-width: 301px;
  position: relative;
}
@media screen and (max-width: 767px) {
  aside {
    margin: auto;
  }
}

/* 側邊搜尋列 */
.aside_form {
  width: calc(100% - 16px);
  margin-bottom: 23px;
}
.aside_search {
  width: 100%;
  position: relative;
}
.aside_search + .aside_search {
  margin-top: 10px;
}
.aside_search label {
  font-size: 0 !important;
  position: absolute;
  left: 0;
}
.aside_search [type="text"],
.aside_period_filter [type="date"],
.aside_period_filter [type="submit"] {
  width: 100%;
  font-size: 1.125rem;
  line-height: 36px;
  border: 2px solid #D1D3D4;
}
.aside_search [type="text"] {
  padding: 5px 10px 3px;
}
.aside_period_filter [type="date"] {
  padding: 5px;
}
.aside_search [type="submit"],
.filter_submit {
  background: url("../images/icon_search.svg") no-repeat center center;
  font-size: 0 !important;
  background-color: transparent;
  transition: background-size 0.3s;
}
.aside_search [type="submit"] {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  border: 0;
  border-left: 2px solid #D1D3D4;
  width: 48px;
  height: 36px;
  background-size: 50%;
}
.aside_search [type="submit"]:hover,
.aside_search [type="submit"]:focus {
  background-size: 60%;
}
.filter_submit {
  padding: 5px 0 3px;
  background-size: auto 50%;
}
.filter_submit:hover,
.filter_submit:focus {
  background-size: auto 60%;
}
.aside_period_filter {
  width: 100%;
  position: relative;
}
.aside_filter {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
}
.aside_period_filter [type="date"] {
  background:#fff url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png)  90% 50% no-repeat ;
}
[type="date"]::-webkit-inner-spin-button {
  display: none;
}
[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.aside_filter div {
  padding: 0 5px;
}

/* 左側選單 */
.saideMenu header {
  width: calc(100% - 16px);
  /* height: 50px; */
  line-height: 1.2;
  padding: 12px 75px 12px 12px;
  z-index: 2;
  background-color: #4DB0D2;
  color: #FFFFFF;
  font-size: 1.25rem;
  box-sizing: border-box;
  position: relative;
}
.saideMenu header::after {
  content: '';
  width: 75px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #64BAD8;
  background-image: url("../images/asideTitle.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 45px;
}
.saideMenu header a {
  color: #FFFFFF;
  font-size: 1.25rem;
}
.saideMenu > div {
  width: calc(100% - 16px);
  margin-bottom: 30px;
}
.saideMenu div a {
  display: block;
  background-color: #E6E7E8;
  color: #16718B;
  font-size: 1.125rem;
  /* padding: 22px 30px; */
  padding: 15px 15px 13px;
  box-sizing: border-box;
  line-height: 1.2;
}
.saideMenu div a + a {
  border-top: 1px solid #939598;
}
.saideMenu div a:hover,
.saideMenu div a:focus,
.saideMenu div a:active,
.saideMenu div a.active {
  color: #9C1A47;
}

.hasSubmenu,
.submenu {
  position: relative;
}
/* .hasSubmenu + nav,
.submenu + div {
  display: none;
} */
.hasSubmenu + nav a {
  /* font-size: 1.125rem; */
  font-size: 1rem;
  padding-left: 52px;
  background-color: #ffffff;
}
.hasSubmenu.active + nav,
.hasSubmenu + nav + a {
  border-top: 1px solid #939598;
}
.hasSubmenu + nav div {
  border-top: 1px solid #939598;
}
.hasSubmenu + nav div a {
  padding-left: calc(52px + 1em);
  margin-bottom: 0;

}
.hasSubmenu::after,
.submenu::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 9px;
  border-color: transparent transparent transparent #16718B;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.hasSubmenu:hover::after,
.hasSubmenu:focus::after,
.hasSubmenu:active::after,
.hasSubmenu.active::after,
.submenu:hover::after,
.submenu:focus::after,
.submenu:active::after,
.submenu.active::after {
  border-color: transparent transparent transparent #9C1A47;
}
.hasSubmenu.active::after,
.submenu.active::after,
.hasSubmenu.current::after,
.submenu.current::after {
  transform: rotate(90deg);
}
.open.active + nav,
.open.active + div {
  display: block;
}