@charset "UTF-8";

.global-nav {
  background-color: #0a346b;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 751px) {
  .global-nav {
    position: absolute;
    top: 0;
    right: -100%;
  }

  .global-nav.move {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}

.global-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-left: 1px solid white;
}

@media (max-width: 751px) {
  .global-nav__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    border: none;
    height: 100vh;
  }
}

.global-nav__inner a {
  padding: 5px 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  text-decoration: none;
  color: white;
  border-right: 1px solid white;
  font-weight: bold;
}

@media (max-width: 751px) {
  .global-nav__inner a {
    display: block;
    padding: 5px 0;
    border: none;
    width: 100%;
  }
}

.global-nav__menu {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.global-nav__menu:hover {
  opacity: 1;
  background-color: #054995;
}

.global-nav__menu--sub {
  display: none;
}

@media (max-width: 751px) {
  .global-nav__menu--sub {
    font-weight: normal !important;
    font-size: 14px !important;
  }

  .global-nav__menu--sub::before {
    content: '- ';
  }
}

.global-nav__button {
  display: none;
}

@media (max-width: 751px) {
  .global-nav__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 25px;
    position: absolute;
    bottom: 20px;
    right: 30px;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 100;
  }
}

.global-nav__line {
  width: 100%;
  height: 5px;
  background-color: #004CA1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.global-nav__line.is-app {
  background-color: white;
}

.global-nav__line.move {
  background-color: white;
}

.global-nav__line.move.top {
  -webkit-transform: translate(0, 10px) rotate(45deg);
          transform: translate(0, 10px) rotate(45deg);
}

.global-nav__line.move.middle {
  opacity: 0;
}

.global-nav__line.move.under {
  -webkit-transform: translate(0, -10px) rotate(-45deg);
          transform: translate(0, -10px) rotate(-45deg);
}

.news {
  margin: 2.5em auto 1em;
}

.news__head {
  width: 100%;
  display: block;
}

.news__body {
  width: 100%;
  background: #fff;
  padding: 20px 30px 30px 30px;
  border: 1px solid #000;
  overflow-y: scroll;
  height: 300px;
  display: block;
}

@media (max-width: 751px) {
  .news__body {
    padding: 0 10px 10px 10px;
    height: 200px;
  }
}

.news__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news__button {
  width: 150px;
  text-align: center;
  color: white;
  padding: 3px;
  cursor: pointer;
  position: relative;
  display: block;
}

@media (max-width: 751px) {
  .news__button {
    width: 100%;
  }
}

@media (max-width: 751px) {
  .news__tab {
    width: 100%;
  }
}

.news__radio {
  display: none;
}

.news__radio:checked + .news__button::before {
  width: 100%;
}

.news__button::before {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.news__button:hover::before {
  width: 100%;
}

.news__button[for="news-menu-all"] {
  background-color: #0a346b;
}

.news__button[for="news-menu-news"] {
  background-color: #054995;
}

.news__button[for="news-menu-lecture"] {
  background-color: #7832dc;
}

.news__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 0 0;
}

@media (max-width: 751px) {
  .news__dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news__type {
  font-size: 13px;
  margin: 0 10px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news__date {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  text-decoration: underline;
  margin: 0 10px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news__detail {
  font-size: 14px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.news__detail a {
  text-decoration: none;
}

@media (max-width: 751px) {
  .news__detail {
    width: 100%;
  }
}

.news__pbl-finished {
  font-size: 10px;
  background-color: blueviolet;
  color: white;
  padding: 0 5px;
}

.news__deadline-passed {
  font-size: 10px;
  background-color: red;
  color: white;
  padding: 0 5px;
}

.news__available {
  font-size: 10px;
  background-color: green;
  color: white;
  padding: 0 5px;
}

.lecture-info__title {
  background-color: #7832dc;
  color: white;
  display: inline-block;
  padding: 0 30px;
}

.lecture-info__contents {
  padding: 15px 20px 20px 20px;
  border: 1px solid #7832dc;
  max-height: 200px;
  overflow-y: scroll;
}

.lecture-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin: 5px 0 0 0;
}

@media (max-width: 751px) {
  .lecture-info__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.lecture-info__list dt {
  width: 15%;
}

@media (max-width: 751px) {
  .lecture-info__list dt {
    width: 100%;
  }
}

.lecture-info__list dd {
  width: 85%;
}

@media (max-width: 751px) {
  .lecture-info__list dd {
    width: 100%;
  }
}

.lecture-info__link {
  text-decoration: none;
}

.course-banners__banner {
  border: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0 0 0;
  padding: 20px;
  text-decoration: none;
  color: #0A346B;
  font-size: 14px;
}

@media (max-width: 751px) {
  .course-banners__banner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.course-banners__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  margin: 0 30px 0 0;
}

.course-banners__image img {
  max-width: 150px;
  max-height: 150px;
}

@media (max-width: 751px) {
  .course-banners__image img {
    max-width: 50vw !important;
  }
}

@media (max-width: 751px) {
  .course-banners__image {
    text-align: center;
    width: 100%;
    margin: 0;
  }
}

.course-banners__title {
  font-weight: bold;
  font-size: 18px;
  width: 100%;
}

@media (max-width: 751px) {
  .course-banners__title {
    font-size: 16px;
  }
}

.course-banners__target {
  width: 100%;
  margin: 10px 0 0 0;
}

.course-banners__outline {
  width: 100%;
  margin: 10px 0 0 0;
}

@media (max-width: 751px) {
  .course-banners__details {
    margin: 10px 0 0 0;
  }
}

.page-title {
  font-weight: bold;
  color: #0A346B;
  margin: 30px auto;
  text-align: center;
}

.page-title__text {
  position: relative;
  padding: 10px 15px;
  font-size: 18px;
}

@media (max-width: 751px) {
  .page-title__text {
    display: block;
  }
}

.page-title__text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, #51CCD3, #51CCD3 40px, #0A346B 40px, #0A346B 80px, #51CCD3 80px, #51CCD3 120px, #7832DC 120px, #7832DC 160px);
}

.section-title {
  position: relative;
  padding: 0 0 10px 2.5em;
  margin: 50px 0 0 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #06467E;
  border-bottom: 2px solid #EAEAEA;
}

.section-title::before {
  content: url("/img/bullet.png");
  position: absolute;
  left: 0;
  bottom: auto;
  top: auto;
}

.section-title__p {
  font-size: 14px;
}

.classes {
  margin: 30px 0 0 0;
}

@media (max-width: 751px) {
  .classes {
    margin: 0;
  }
}

.classes__header {
  color: #06467E;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #06467E;
  font-size: 13px;
  padding: 0 30px 0 0;
}

@media (max-width: 751px) {
  .classes__header {
    display: none;
  }
}

.classes__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 30px);
  font-size: 13px;
  color: #06467E;
  text-decoration: none;
}

@media (max-width: 751px) {
  .classes__link {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px;
    position: relative;
  }
}

.classes__category {
  width: 10%;
}

@media (max-width: 751px) {
  .classes__category {
    width: 90%;
  }

  .classes__category::before {
    content: '\79D1\76EE\5206\985E\FF1A';
    font-weight: bold;
  }
}

.classes__name {
  width: 58%;
  font-weight: bold;
}

.classes__name span {
  margin: 0 0 0 5px;
  font-weight: normal;
}

@media (max-width: 751px) {
  .classes__name {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 90%;
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .classes__name::before {
    font-weight: bold;
  }
}

.classes__university {
  width: 15%;
}

@media (max-width: 751px) {
  .classes__university {
    width: 90%;
  }

  .classes__university::before {
    content: '\958B\8B1B\5927\5B66\FF1A';
    font-weight: bold;
  }
}

.classes__credits {
  width: 7%;
}

@media (max-width: 751px) {
  .classes__credits {
    width: 90%;
  }

  .classes__credits::before {
    content: '\5358\4F4D\6570\FF1A';
    font-weight: bold;
  }
}

.classes__type {
  width: 10%;
}

@media (max-width: 751px) {
  .classes__type {
    width: 90%;
  }

  .classes__type::before {
    content: '\958B\8B1B\533A\5206\FF1A';
    font-weight: bold;
  }
}

.classes__outline {
  line-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  background-color: #eee;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.classes__outline dt {
  width: 10%;
  font-weight: bold;
}

.classes__outline dt::after {
  content: '\FF1A';
}

@media (max-width: 751px) {
  .classes__outline dt {
    width: 100%;
  }
}

.classes__outline dd {
  width: 90%;
}

@media (max-width: 751px) {
  .classes__outline dd {
    width: 100%;
  }
}

.classes__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0 0 0;
}

.classes__toggle-label {
  width: 30px;
  color: #06467E;
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media (max-width: 751px) {
  .classes__toggle-label {
    width: 100%;
    border: 1px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
  }
}

.classes__toggle {
  display: none;
}

.classes__toggle:checked ~ .classes__outline {
  line-height: 1.7;
  opacity: 1;
  padding: 10px;
}

.classes__toggle:checked + .classes__toggle-label {
  background-color: #eee;
}

.classes__toggle:checked + .classes__toggle-label span {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

@media (max-width: 751px) {
  .classes__toggle:checked + .classes__toggle-label {
    background-color: inherit;
  }
}

.classes__rotate-target {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

