@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap');
@import url(http://fonts.googleapis.com/css?family=Raleway);

.scroll-slow {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.scroll-slow .inner {
  position: absolute;
  width: 30%;
  height: 30%;
  margin: 0;
  line-height: 50px;
  text-align: center;
  /* Starting position */
  -moz-transform: translateX(50%);
  -webkit-transform: translateX(50%);
  transform: translateX(100%);
  /* Apply animation to this element */
  -moz-animation: scroll-slow 20s linear infinite;
  -webkit-animation: scroll-slow 20s linear infinite;
  animation: scroll-slow 35s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-slow {
  0% {
    -moz-transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-slow {
  0% {
    -webkit-transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-slow {
  0% {
    -moz-transform: translateX(100%);
    /* Browser bug fix */
    -webkit-transform: translateX(100%);
    /* Browser bug fix */
    transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
    /* Browser bug fix */
    -webkit-transform: translateX(-100%);
    /* Browser bug fix */
    transform: translateX(-100%);
  }
}

.body{
  font-family: sans-serif;
  /* max-width: 784px; */
}


@media only screen and (max-width: 968px) {
  /* For mobile phones: */
  .content {
    width: 100%;
  }
}

@media only screen and (min-width: 968px) {
  /* For PC: */
  .content {
    width: 70%;
    /* max-width: 784px; */
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content th, .content td {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}




.main-navigation {
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;

}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0px;
  background: #009999;
}

.main-navigation ul li {
  padding-left: 00px;
  display: inline-block;
  position: relative;
  /* float: left; */
  background: #009999;
}

/* This hides the dropdowns */


.main-navigation li ul { display: none; padding-left: 0px; }

.main-navigation ul li a {
  display: block;
  padding: 1em;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
}

.main-navigation ul li a:hover { background: #2c3e50; }

/* Display the dropdown */


.main-navigation li:hover > ul {
  display: block;
  position: absolute;
}

.main-navigation li:hover li { float: none; display: block;}

.main-navigation li:hover a { background: #009999; display: block;}

.main-navigation li:hover li a:hover { background: #2c3e50; display: block;}

.main-navigation li ul li { border-top: 0; display: block; text-align: left; z-index: 99;}

/* Displays second level dropdowns to the right of the first level dropdown */


.main-navigation ul ul ul {
  left: 100%;
  top: 0;
}

/* Simple clearfix */



.main-navigation ul:before,
ul:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.main-navigation ul:after { clear: both; }


.footer{

  background-color: #136666;
  width: 100%;
  color: #fff;
  font-size: 90%;
  font-family: sans-serif;
  line-height: 140%;
  /* padding-top: 10px; */
  /* padding-bottom: 10px; */
}
.footer td, .footer tr{
  padding: 0;
}

@media only screen and (max-width: 968px) {
  /* For mobile phones: */
  .footer {
    font-size: 70%;
  }
  .main-navigation {
    font-size: 12px;
  }
}


.copyright{
  text-align: center;
  font-size: 80%;
  font-family: sans-serif;
  padding-top: 5px;
  /* padding-bottom: 20px; */
}


.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.lecture-table th, .lecture-table td { padding: 5px; border: solid 1px #777; }

.dynamic_30vw{
  width: max(30%, 250px);
}

.dynamic_70vw{
  width: 70%;
}