@charset "UTF-8";

@import "settings.css";

/*============================================================================================
      Header
=============================================================================================*/
.header_logo a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header_logo img {
  width: auto;
  height: 100%;
  height: 50px;
  margin: 0;
}
.header_inr {
  max-width: 1920px;
  padding: 25px 5vw;
  margin: auto;
}
@media (max-width: 576px) {
  .header_inr {
    padding: 5.3vw 5vw;
  }
  .header_logo img {
    height: 8vw;
  }
}

/*============================================================================================
      Footer
=============================================================================================*/
.footer {
  margin-top: auto;
  padding: 25px 0;
  border-top: 2px solid var(--color-text);
}

/*============================================================================================
      Contents
=============================================================================================*/
.teachers_table tr:nth-child(even) td:nth-child(1) {
  width: 45%;
}
.teachers_table tr:nth-child(odd) td:nth-child(1),
.teachers_table tr:nth-child(even) td:nth-child(2) {
  width: 25%;
}
.teachers_table tr:nth-child(odd) td:nth-child(2),
.teachers_table tr:nth-child(even) td:nth-child(3) {
  width: 30%;
}
@media (max-width: 576px) {
  .teachers_table tr:nth-child(even) td:nth-child(1) {
    width: 40%;
  }
  .teachers_table tr:nth-child(odd) td:nth-child(1),
  .teachers_table tr:nth-child(even) td:nth-child(2) {
    width: 30%;
  }
  .teachers_table tr:nth-child(odd) td:nth-child(2),
  .teachers_table tr:nth-child(even) td:nth-child(3) {
    width: 30%;
  }
}

.closed dl {
  margin: 20px 0;
  padding: 20px 0;
  position: relative;
}
.closed dl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-linear-gradient(left, rgba(49,62,91,1) 0,rgba(49,62,91,1) 4px,rgba(49,62,91,0) 4px);
  background: linear-gradient(to right, rgba(49,62,91,1) 0,rgba(49,62,91,1) 4px,rgba(49,62,91,0) 4px);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 7px 1px;

}
.closed dl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-linear-gradient(left, rgba(49,62,91,1) 0,rgba(49,62,91,1) 4px,rgba(49,62,91,0) 4px);
  background: linear-gradient(to right, rgba(49,62,91,1) 0,rgba(49,62,91,1) 4px,rgba(49,62,91,0) 4px);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 7px 1px;

}
.g_table.fixed {
  table-layout: fixed;
}