@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital@1&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
/*Variable*/
/*Mixin*/
/*Reset*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
  display: block;
}

.hide {
  display: none;
}

::selection {
  background: #000;
  color: #fff;
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #333;
}

::-moz-placeholder {
  color: #333;
}

*:focus {
  outline: 0.2vw #0066c2 solid !important;
  border-radius: 10px;
}

a {
  color: #444;
  text-decoration: none;
}

a:hover {
  color: #0066c2;
}

*::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

html.is-lock, body.is-lock {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  font-size: 170%;
}

body {
  line-height: 1.7;
  color: #000;
  font-family: 'Noto Sans TC', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  overflow-x: hidden;
  background-color: #fff;
  text-align: center;
}

* {
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
}

.font-en {
  font-family: 'Crimson Text', serif;
}

.color-blue {
  color: #202d52;
}

.color-red {
  color: #c13a36;
}

.color-pink {
  color: #c13a36;
}

.color-green {
  color: #00867d;
}

.color-yellow {
  color: #f5c225;
}

[class^=g-bt-] {
  width: 50%;
  margin: 4% auto;
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #000;
  transition: .5s;
  background: transparent;
  border: 1px solid #000;
  font-weight: bold;
  font-size: .7rem;
  line-height: 2.5;
  font-family: 'Noto Sans TC', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  cursor: pointer;
}

[class^=g-bt-]:before {
  content: '';
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}

@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

[class^=g-bt-]:after {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #00867d;
  transition: .2s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[class^=g-bt-] span {
  position: relative;
  z-index: 1;
}

[class^=g-bt-]:hover {
  color: #fff;
}

[class^=g-bt-]:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}

.g-bt-2 {
  background-color: #c13a36;
}

.bt-shine {
  position: relative;
  overflow: hidden;
  transition: .5s;
}

.bt-shine:before {
  content: '';
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}

@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.msg-box {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  z-index: 0;
  transform: scale(1);
  perspective: 700px;
  pointer-events: none;
}

.msg-box.active {
  opacity: 1;
  visibility: visible;
  z-index: 102;
  pointer-events: auto;
}

.msg-box > .close {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.msg-box .msg-wrap {
  background: #fff;
  max-width: 550px;
  width: 90%;
  height: 60%;
  max-width: 600px;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  top: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 30px;
  transform: scale(1) translate3d(0, -50%, 0);
  transform-style: preserve-3d;
  transition-delay: .5s;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

.msg-box .msg-wrap > .close {
  cursor: pointer;
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  transition: .2s;
  background: url(../img/icon-close.svg) #00867d no-repeat center;
  background-size: 45%;
  box-shadow: 0 0.5vw 1vw rgba(32, 45, 82, 0.5);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: .5s;
  transition-delay: .5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

.msg-box.active .msg-wrap {
  transform: scale(1) translate3d(0, -50%, 0);
  opacity: 1;
  visibility: visible;
}

.msg-box.active .msg-wrap > .close {
  transform: scale(1);
  opacity: 1;
}

.msg-box.active .msg-wrap > .close:hover {
  transform: rotate(90deg);
}

.msg-box .msg-content {
  overflow-y: auto;
  overflow-x: hidden;
  height: 95%;
  text-align: left;
  font-size: .7rem;
  -webkit-overflow-scrolling: touch;
}

.msg-box .msg-content header {
  font-size: 1.5rem;
  font-weight: bold;
}

.msg-box .msg-content img {
  max-width: 100%;
}

.msg-box .msg-content .bt {
  background-color: #000;
  border-radius: 10px;
  width: auto;
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: .5s;
  position: relative;
}

.msg-box .msg-content .bt:hover {
  background: #c13a36;
  transition: .2s;
}

#msg-alert .msg-wrap {
  height: auto;
  min-height: 100px;
  max-width: 500px;
}

#msg-alert .msg-content {
  text-align: center;
}

#msg-video .msg-wrap {
  height: auto;
  max-width: 92%;
  max-width: 1200px;
}

#msg-video .msg-content > div {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

#msg-video .msg-content > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

#msg-login .msg-wrap, #msg-CAPTCHA .msg-wrap {
  height: auto;
}

#msg-login .msg-content, #msg-CAPTCHA .msg-content {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#msg-login .msg-content > div, #msg-CAPTCHA .msg-content > div {
  width: 80%;
}

#msg-login .msg-content p {
  font-size: 1rem;
}

#msg-login .msg-content ol {
  display: flex;
  margin: 0 auto;
}

#msg-login .msg-content li {
  flex: 1;
  width: 45%;
  position: relative;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  margin: 2.5%;
}

#msg-login .msg-content li:hover {
  background-color: #00867d;
}

#msg-login .msg-content li:hover a {
  color: #fff;
}

#msg-login .msg-content a {
  padding: 10% 0;
  display: block;
}

#msg-login .msg-content a i {
  font-size: 2rem;
}

#msg-login .msg-content a p {
  font-size: 0.7rem;
}

#msg-CAPTCHA .g-recaptcha {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#msg-CAPTCHA .g-recaptcha::before {
  content: "請完成驗證";
  display: block;
  font-size: 20px;
  color: #00867d;
  margin-bottom: 15px;
}

#msg-CAPTCHA .btn_wrap {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}

#msg-CAPTCHA .send_btn {
  width: 100%;
  max-width: 200px;
  padding: 5px 0;
  background-color: #00867d;
  border-radius: 100px;
  text-align: center;
  color: #fff;
}

#msg-CAPTCHA .send_btn:hover {
  background: #202d52;
}

#live-terms h2, #vote-terms h2 {
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
}

#vote-terms h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

#live-terms .msg-wrap {
  max-width: 1200px;
  font-size: 18px;
}

#live-terms .msg-content {
  padding-right: 30px;
}

#live-terms dt {
  font-weight: bold;
}

#live-terms .rule-list {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}

#live-terms .rule-list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

#live-terms .rule-list h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

#live-terms .rule-list li {
  margin-bottom: 10px;
}

#live-terms .rule-list li:last-child {
  margin-bottom: 0;
}

#live-terms .rule-list h4 {
  font-size: 20px;
}

.qa-list:hover .qa-q h4 {
  color: #00867d;
}

.qa-list.active .qa-a {
  max-height: 5000px;
  padding: 10px 0;
  overflow: auto;
  opacity: 1;
  visibility: visible;
}

.qa-list.active .qa-q i.icon-more {
  background-color: #00867d;
}

.qa-list.active .qa-q i.icon-more:after {
  transform: rotate(0deg);
}

.qa-list.active .qa-q h4 {
  color: #00867d;
}

.qa-list .qa-q {
  padding: 5px 0;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.qa-list .qa-q p {
  color: #c13a36;
  font-size: 0.7rem;
  line-height: 1;
  margin-right: 10px;
}

.qa-list .qa-q h4 {
  font-size: .7rem;
  margin-left: .8%;
  color: #999;
}

.qa-list .qa-q i.icon-more {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  justify-content: flex-end;
  position: relative;
  background: #999;
}

.qa-list .qa-q i.icon-more:before, .qa-list .qa-q i.icon-more:after {
  content: '';
  width: 10px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 45%;
  left: 25%;
}

.qa-list .qa-q i.icon-more:after {
  transform: rotate(90deg);
}

.qa-list .qa-a {
  font-size: .6rem;
  line-height: 1.7;
  max-height: 0;
  transition: .2s;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.qa-list .award li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.qa-list .award h4 {
  position: relative;
  color: #202d52;
  margin-right: 15px;
  padding-right: 15px;
}

.qa-list .award h4:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background: #999;
}

.qa-list .award p span {
  color: #00867d;
  margin-left: 15px;
}

.message-board {
  width: 92%;
  max-width: 1200px;
  margin: 2% auto 5%;
  font-size: 0.7rem;
}

.message-board.live-message .msg-list {
  max-height: 405px;
  overflow-y: auto;
  padding-right: 30px;
  padding-top: 6px;
}

.message-board .msg-count {
  width: 100%;
  border-bottom: 2px solid #ccc;
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2%;
}

.message-board .msg-count span {
  border-bottom: 2px solid #000;
  margin-bottom: -2px;
}

.message-board .msg-list {
  font-size: 17px;
}

.message-board .msg-list li {
  display: flex;
  margin-bottom: 15px;
}

.message-board .msg-list li .user-pic {
  position: relative;
  top: -5px;
}

.message-board .user-pic {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
}

.message-board .author {
  color: #00867d;
  width: 10%;
  text-align: left;
  font-style: normal;
  margin-left: 1%;
  margin-top: 4px;
  line-height: 1.2em;
  word-break: break-all;
}

.message-board .msg-content {
  text-align: left;
  width: 72%;
  margin-left: 2%;
}

.message-board time {
  width: 15%;
  text-align: right;
  white-space: nowrap;
  font-size: 13px;
  color: #666;
  transform: translateY(3px);
}

.message-board .msg-create {
  margin-top: 2%;
}

.message-board .msg-create form {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.message-board #msg-create-text {
  border: 1px solid #ccc;
  border-radius: 4px;
  width: calc(100% - 5vw);
  height: 2rem;
  padding: .5rem 10vw .5rem .5rem;
  font-size: 0.7rem;
}

.message-board #msg-create-submit {
  position: absolute;
  bottom: 30%;
  right: 1.5%;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
}

.message-board #msg-create-submit i {
  font-size: 1.3vw;
}

.message-board #msg-create-submit:hover {
  color: #00867d;
}

.message-board #msg-load {
  color: #00867d;
  text-decoration: underline;
  font-size: .7rem;
  cursor: pointer;
}

.message-board #msg-load:hover {
  color: #202d52;
}

.g-form li {
  position: relative;
  padding: 10px 0 10px 20%;
}

.g-form li label {
  text-align: left;
  font-weight: bold;
}

.g-form li input {
  padding: 15px 15px;
  border-radius: 3px;
  border: 1px solid #bfbfbf;
  width: 100%;
  background: #f2f2f2;
  font-family: 'Noto Sans TC', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  transition: .2s;
}

.g-form li input:focus, .g-form li input:hover {
  background-color: #fff;
}

.g-form li select {
  padding: 15px 15px;
  border-radius: 3px;
  border: 1px solid #bfbfbf;
  width: 100%;
  background: url(../img/icon-down-arrow.svg) no-repeat 90% 50% #f2f2f2;
  background-size: 15px;
  font-family: 'Noto Sans TC', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.g-form li select:focus, .g-form li select:hover {
  background-color: #fff;
}

.g-form li textarea {
  padding: 15px 15px;
  border-radius: 3px;
  border: 1px solid #bfbfbf;
  background: #f2f2f2;
  width: 100%;
  height: 150px;
  font-family: 'Noto Sans TC', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  transition: .2s;
}

.g-form li textarea:focus, .g-form li textarea:hover {
  background-color: #fff;
}

.g-form li input[type=checkbox], .g-form li input[type="radio"] {
  display: none;
}

.g-form li input[type=checkbox] + label {
  padding-left: 40px;
  padding-right: 40px;
  width: auto;
  position: relative;
  top: 10px;
  display: inline-block;
  line-height: 1.5;
}

.g-form li input[type=checkbox] + label:before,
.g-form li input[type=checkbox] + label:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
  border: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #f5c225;
  background-image: url(../img/icon_checked.png);
  background-size: 36px;
  transition: .5s;
}

.g-form li input[type=checkbox] + label:focus:before, .g-form li input[type=checkbox] + label:hover:before {
  background-color: #fff;
}

.g-form li input[type=checkbox] + label:before {
  background-image: none;
}

.g-form li input[type=checkbox] + label:after {
  background-color: transparent;
  width: 0;
  box-shadow: none;
  top: -7px;
}

.g-form li input[type=checkbox] + label:active:after, .g-form li input[type=checkbox]:checked + label:after {
  width: 40px;
}

.g-form li input[type=radio] + label, .g-form li input[type=checkbox] + label {
  padding-left: 60px;
  width: auto;
  position: relative;
  top: 10px;
  display: inline-block;
  line-height: 1.5;
}

.g-form li input[type=radio] + label:before,
.g-form li input[type=radio] + label:after,
.g-form li input[type=checkbox] + label:before,
.g-form li input[type=checkbox] + label:after {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  transition: .5s;
}

.g-form li input[type=radio] + label:focus:before, .g-form li input[type=radio] + label:hover:before,
.g-form li input[type=checkbox] + label:focus:before,
.g-form li input[type=checkbox] + label:hover:before {
  background-color: #fff;
}

.g-form li input[type=radio] + label:before,
.g-form li input[type=checkbox] + label:before {
  border-radius: 2px;
  box-shadow: none;
  border: 0;
  border: 1px solid #bfbfbf;
  background-color: #f2f2f2;
}

.g-form li input[type=radio] + label:after,
.g-form li input[type=checkbox] + label:after {
  transform: scale(0);
  box-shadow: none;
  background: url(../img/icon-check.svg) no-repeat 80% 50%;
  background-size: 80%;
  border: 0;
}

.g-form li input[type=radio] + label:active:after,
.g-form li input[type=radio]:checked + label:after,
.g-form li input[type=checkbox] + label:active:after,
.g-form li input[type=checkbox]:checked + label:after {
  transform: scale(1);
}

.g-form li .g-bt-1 {
  margin: 0 auto;
}

.g-form li a {
  text-decoration: underline;
}

.g-form.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 1s;
  display: block;
}

.video-list {
  width: 100%;
  margin: 0 auto;
}

.video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  cursor: pointer;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrap .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: .2s;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrap .txt {
  color: #fff;
  max-width: 29%;
}

.video-wrap .txt h3 {
  font-size: 1.4rem;
  line-height: 2.8;
}

.video-wrap .txt p {
  font-size: 0.65rem;
}

.video-wrap.active .cover {
  opacity: 0;
  visibility: hidden;
}

.icon-play {
  width: 6vw;
  height: 6vw;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: play-jump .5s infinite alternate;
  margin: 5% auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0.2vw rgba(0, 0, 0, 0.2);
  transition: .2s;
}

.icon-play:before {
  content: '';
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-width: 1vw 0 1vw 1.5vw;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.5vw;
}

@keyframes play-jump {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.icon-play:hover {
  background: #00867d;
}

.icon-play:hover:before {
  border-color: transparent transparent transparent #000;
}

#g-gotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  cursor: pointer;
  background: url(../img/icon-gotop.png) no-repeat center;
  background-size: 100%;
  width: 49px;
  height: 62px;
  text-indent: -9999px;
  transition: .2s;
  opacity: 0;
  visibility: hidden;
}

#g-gotop.active {
  opacity: 1;
  visibility: visible;
}

#g-gotop:hover {
  transform: scale(1.2);
}

#g-promo-plan {
  position: fixed;
  bottom: 120px;
  right: 10px;
  z-index: 2;
  cursor: pointer;
  background: url(../img/icon-bike-girl.gif) no-repeat center;
  background-size: 100%;
  width: 130px;
  height: 160px;
  text-indent: -9999px;
  transition: .2s;
  opacity: 0;
  visibility: hidden;
}

#g-promo-plan.active {
  opacity: 1;
  visibility: visible;
}

#g-promo-plan:hover {
  transform: scale(1.2);
}

.tns-outer {
  position: relative;
}

.tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
  position: absolute;
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: transparent;
  z-index: 3;
  text-indent: -9999px;
  border: 0;
  transform: translateY(-50%);
  background-color: #202d52;
  cursor: pointer;
}

.tns-controls button:hover, .tns-controls div:hover, .tns-cus-controls button:hover, .tns-cus-controls div:hover {
  background-color: #202d52;
}

.tns-controls button:active, .tns-controls div:active, .tns-cus-controls button:active, .tns-cus-controls div:active {
  background-color: #c13a36;
}

.tns-controls button:nth-of-type(1), .tns-controls div:nth-of-type(1), .tns-cus-controls button:nth-of-type(1), .tns-cus-controls div:nth-of-type(1) {
  left: 0;
  background-image: url(../img/icon-left-fff.svg);
}

.tns-controls button:nth-of-type(2), .tns-controls div:nth-of-type(2), .tns-cus-controls button:nth-of-type(2), .tns-cus-controls div:nth-of-type(2) {
  right: 0;
  background-image: url(../img/icon-right-fff.svg);
}

.tns-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
}

.tns-nav button {
  width: 25px;
  height: 25px;
  border: 0;
  margin: 2px;
  position: relative;
  background-color: transparent;
}

.tns-nav button:before, .tns-nav button:after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}

.tns-nav button:after {
  transform: translate(-50%, -50%) scale(0);
}

.tns-nav button:hover:before, .tns-nav button:hover:after {
  background-color: #202d52;
}

.tns-nav button.tns-nav-active:after {
  background-color: #c13a36;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.tns-controls {
  text-align: center;
}

.slider img {
  max-height: 300px;
  margin-bottom: 20px;
}

#g-wrap {
  position: relative;
}

#g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}

.g-pager {
  margin: 3% 0 5%;
  text-align: center;
}

.g-pager a {
  font-size: .7rem;
  border-bottom: 3px solid transparent;
  padding: 0.5vw 1vw;
}

.g-pager a i.icon-prev, .g-pager a i.icon-next {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  width: .4rem;
  height: .5rem;
}

.g-pager a i.icon-prev {
  background-image: url(../img/icon-prev-000.svg);
}

.g-pager a i.icon-next {
  background-image: url(../img/icon-next-000.svg);
}

.g-pager a:hover {
  border-color: #00867d;
}

.g-pager a.active {
  border-color: #000;
}

#TH {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  color: #fff;
}

#TH:focus {
  opacity: 1;
}

#AU {
  color: #fff;
  opacity: 0;
}

#AU:focus {
  opacity: 1;
}

#AC, #AZ {
  color: #fff;
  position: absolute;
  left: 0;
  z-index: 1;
  opacity: 0;
}

#AC:focus, #AZ:focus {
  opacity: 1;
}

#index-kv .group {
  position: absolute;
  top: 0;
  left: 3%;
  width: 94%;
  z-index: 1;
}

#index-kv .group:before {
  content: '';
  width: 66.5%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}

#index-kv .logo {
  width: 31.5%;
  display: block;
  position: absolute;
  top: 2.8vw;
  left: .5%;
}

#index-kv .logo img {
  width: 100%;
}

#index-kv #header-quick {
  margin-top: 2.5%;
  margin-bottom: .7%;
}

#index-kv #header-quick i {
  color: #fff;
}

#index-kv #header-quick > a:hover i, #index-kv #header-quick > .search:hover i {
  color: #00867d;
}

#index-kv #header-quick > .search.active:hover i {
  color: #fff;
}

#index-kv #header-quick > .search.active:hover i:hover {
  color: #00867d;
}

#index-kv .dropdown .selected {
  color: #fff;
}

#info-header {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

#info-header .group {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0 2%;
}

#info-header .group .dropdown ol {
  padding-top: 0;
  box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.3);
}

#info-header #header-quick .search.active input[type="text"], #info-header #header-quick .search:focus input[type="text"] {
  background-color: rgba(0, 0, 0, 0.2);
}

#header-quick {
  display: flex;
  justify-content: flex-end;
}

#header-quick > * {
  margin: 0 .3%;
  min-width: 2vw;
  height: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header-quick .search {
  position: relative;
  width: 1.5vw;
  white-space: nowrap;
  transition: width .4s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

#header-quick .search input[type=text] {
  border: 0;
  background-color: transparent;
  width: 100%;
  padding: .4vw 2.2vw .4vw .4vw;
  opacity: 0;
  transition: .4s;
  font-size: .8rem;
  border-radius: 0;
  margin: 0 0vw 0 0;
  pointer-events: none;
}

#header-quick .search button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0vw;
  width: 2.5vw;
  cursor: pointer;
  pointer-events: none;
}

#header-quick .search.active, #header-quick .search:focus {
  width: 13vw;
}

#header-quick .search.active input[type=text], #header-quick .search:focus input[type=text] {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: auto;
}

#header-quick .search.active button, #header-quick .search:focus button {
  pointer-events: auto;
}

#header-quick i.fas, #header-quick i.fab, #header-quick i.far {
  font-size: 0.85rem;
}

#header-quick i span {
  font-size: 0.7rem;
}

.language {
  margin-left: 1vw;
}

.language li a {
  display: flex;
  justify-content: space-between;
}

i[class^=icon-flag-] {
  display: inline-block;
  width: 2vw;
  height: 1.5vw;
  background: red;
  vertical-align: middle;
  background: url(../img/icon-flag.png);
  background-size: 100%;
  margin-left: .8vw;
}

i[class^=icon-flag-].icon-flag-tw {
  background-position: center bottom;
}

i[class^=icon-flag-].icon-flag-uk {
  background-position: center top;
}

.dropdown {
  text-align: left;
  position: relative;
}

.dropdown .selected {
  display: inline-flex;
  white-space: nowrap;
  line-height: 1;
}

.dropdown .selected p {
  display: inline-block;
  font-size: 0.7rem;
}

.dropdown .selected i {
  vertical-align: middle;
  margin: 0 .5vw;
}

.dropdown ol {
  padding-top: .6vw;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(10%);
  transition: .2s;
  pointer-events: none;
}

.dropdown li a {
  background: linear-gradient(to bottom, rgba(238, 238, 238, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
  padding: .4vw 1vw;
  font-size: 0.7rem;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: #fff;
}

.dropdown:hover .selected i, .dropdown.active .selected i {
  transform: rotate(180deg);
}

.dropdown:hover ol, .dropdown.active ol {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

figure {
  position: relative;
}

figure figcaption {
  position: absolute;
  bottom: .5rem;
  left: .5rem;
  font-size: 0.7rem;
  background-color: rgba(0, 0, 0, 0.3);
  max-width: calc(100% - 2rem);
  padding: 0.2rem .5rem;
  transition: .2s;
  border-radius: .2rem;
  color: #fff;
}

figure:hover figcaption {
  background-color: #000;
}

#article-detail #top-banner li figure, .article-detail #top-banner li figure {
  height: 0;
  padding-bottom: 56.25%;
}

#article-detail #top-banner li figure img, .article-detail #top-banner li figure img {
  position: absolute;
  left: 0;
  top: 0;
}

#top-banner li {
  position: relative;
}

#top-banner li figure {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}

#top-banner li img {
  width: 100%;
}

#top-banner a.btn {
  background: #00867d;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 100;
  width: 3.2vw;
  transform: translateY(0%) skewY(32deg);
  opacity: 0;
  overflow: hidden;
  transition: 1s;
  transition-delay: .4s;
}

#top-banner a.btn:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transform: translateY(100%);
  transition: .4s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

#top-banner a.btn p {
  transform: skewY(-32deg);
  padding: 3vw 0;
}

#top-banner a.btn:hover:before {
  transform: translateY(-100%);
}

#top-banner .tns-item.tns-slide-active a {
  transform: translateY(-50%) skewY(32deg);
  opacity: 1;
}

#top-banner-ow .tns-controls button:nth-of-type(1), #top-banner-ow .tns-controls button:nth-of-type(2), #video-banner-ow .tns-controls button:nth-of-type(1), #video-banner-ow .tns-controls button:nth-of-type(2) {
  top: auto;
  bottom: 4%;
  width: 5.6vw;
  height: 2.8vw;
  z-index: 4;
  border-radius: 0;
  background-image: url(../img/icon-line-arrow.svg);
  background-size: 200%;
  transform: translateY(0);
  background-color: transparent;
  transition: .2s;
}

#top-banner-ow .tns-controls button:nth-of-type(1), #video-banner-ow .tns-controls button:nth-of-type(1) {
  background-position: 0% 50%;
  left: 40%;
}

#top-banner-ow .tns-controls button:nth-of-type(1):hover, #video-banner-ow .tns-controls button:nth-of-type(1):hover {
  transform: translateX(-10%);
}

#top-banner-ow .tns-controls button:nth-of-type(2), #video-banner-ow .tns-controls button:nth-of-type(2) {
  right: 40%;
  background-position: 100% 50%;
}

#top-banner-ow .tns-controls button:nth-of-type(2):hover, #video-banner-ow .tns-controls button:nth-of-type(2):hover {
  transform: translateX(10%);
}

#top-banner-ow .tns-nav, #video-banner-ow .tns-nav {
  bottom: 4.5%;
}

#top-banner-ow .tns-nav button, #video-banner-ow .tns-nav button {
  width: 1.5vw;
  height: 1.5vw;
}

#top-banner-ow .tns-nav button:before, #top-banner-ow .tns-nav button:after, #video-banner-ow .tns-nav button:before, #video-banner-ow .tns-nav button:after {
  width: .7vw;
  height: .7vw;
  background-color: transparent;
  border: 2px solid #fff;
}

#top-banner-ow .tns-nav button:after, #video-banner-ow .tns-nav button:after {
  background-color: #fff;
}

#g-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  background: #fff;
  z-index: 2;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  border-top: 1px solid #ddd;
}

#g-header .logo {
  width: 21%;
}

#g-header .logo img {
  width: 100%;
}

#g-header.active #g-nav-trigger [class^=line-] {
  opacity: 0 !important;
  pointer-events: none;
}

#g-header.active #g-nav-trigger [class^=line-] div {
  transform: translateX(0);
}

#g-header.active #g-nav-trigger [class^=cross-] {
  opacity: 1 !important;
  pointer-events: auto;
}

#g-header.active #g-nav-trigger [class^=cross-] div {
  animation: cross_active 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes cross_active {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

#g-header.active #g-nav-trigger .cross-1 div {
  animation-delay: 0s;
}

#g-header.active #g-nav-trigger .cross-2 div {
  animation-delay: .1s;
}

#g-header.active #g-quick-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#g-nav {
  margin-left: -11vw;
}

#g-nav > ol {
  display: flex;
}

#g-nav > ol > li {
  position: relative;
}

#g-nav > ol > li a {
  display: block;
}

#g-nav > ol > li .icon-arrow {
  display: none;
}

#g-nav > ol > li b {
  line-height: 4;
  font-size: .7rem;
  padding: 0 1.5vw;
  display: block;
  position: relative;
  overflow: hidden;
}

#g-nav > ol > li b:before {
  content: '';
  width: 14vw;
  height: 14vw;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #00867d;
  transition: .4s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

#g-nav > ol > li b span {
  position: relative;
  z-index: 1;
}

#g-nav > ol > li:hover b, #g-nav > ol > li.active b {
  color: #fff;
}

#g-nav > ol > li:hover b:before, #g-nav > ol > li.active b:before {
  transform: translate(-50%, -50%) scale(1);
}

#g-nav > ol > li:hover .sub, #g-nav > ol > li.active .sub {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#g-nav .sub {
  position: absolute;
  top: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10%);
  transition: .2s;
  z-index: 1;
}

#g-nav .sub li a {
  color: #fff;
  min-width: 16vw;
  font-size: 0.6rem;
  position: relative;
  text-align: left;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

#g-nav .sub li a:after {
  content: '';
  width: .5vw;
  height: 1vw;
  background: url(../img/icon-next-fff.svg) no-repeat center;
  background-size: 100%;
  transform: translateX(1vw);
}

#g-nav .sub li a:hover {
  background-color: rgba(0, 165, 154, 0.9);
}

#g-nav .sub li:nth-child(odd) {
  background: rgba(0, 107, 105, 0.9);
}

#g-nav .sub li:nth-child(even) {
  background: rgba(3, 121, 115, 0.9);
}

#g-nav-trigger {
  width: 50px;
  height: 35px;
  position: relative;
  cursor: pointer;
  z-index: 3;
}

#g-nav-trigger > div {
  right: 5%;
  height: 3px;
  background: #202d52;
  display: block;
  position: absolute;
  border-radius: 50px;
  overflow: hidden;
  transition: .4s;
}

#g-nav-trigger > div div {
  background: #fff;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
}

#g-nav-trigger [class^=line-] {
  pointer-events: auto;
}

#g-nav-trigger [class^=line-] div {
  transition: .4s;
}

#g-nav-trigger .line-1 {
  top: 5px;
  width: 90%;
}

#g-nav-trigger .line-2 {
  top: 15px;
  width: 70%;
}

#g-nav-trigger .line-3 {
  top: 25px;
  width: 45%;
}

#g-nav-trigger [class^=cross-] {
  top: 45%;
  left: 17%;
  opacity: 0 !important;
  pointer-events: none;
  width: 70%;
}

#g-nav-trigger .cross-1 {
  transform: rotate(45deg);
}

#g-nav-trigger .cross-2 {
  transform: rotate(-45deg);
}

#g-nav-trigger:hover > div div {
  transform: translateX(100%);
}

#g-nav-trigger:hover .line-1 div {
  transition-delay: 0s;
}

#g-nav-trigger:hover .line-2 div {
  transition-delay: .1s;
}

#g-nav-trigger:hover .line-3 div {
  transition-delay: .2s;
}

#g-quick-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  pointer-events: none;
  padding: 5vh 5%;
  background: rgba(238, 238, 238, 0.95);
  transition: .2s;
}

#g-quick-nav .nav_group {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#g-quick-nav h4 {
  text-align: left;
  margin: 1% 0;
  font-size: 0.7rem;
}

#g-quick-nav .level-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0% 0 5%;
}

#g-quick-nav .level-1 li {
  width: 18%;
  background-color: #fff;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

#g-quick-nav .level-1 li a {
  display: block;
  padding: 30px 0;
  font-size: 0.7rem;
}

#g-quick-nav .level-1 li a i {
  color: #0066c2;
  display: block;
  font-size: 3.3rem;
}

#g-quick-nav .level-1 li:hover {
  box-shadow: 0 0 1vw rgba(0, 102, 194, 0.5);
}

#g-quick-nav .level-2 {
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 2.5% 4%;
  text-align: left;
  background-color: #fff;
  border-radius: 5px;
}

#g-quick-nav .level-2 > li b {
  font-size: 0.7rem;
}

#g-quick-nav .level-2 .sub > li a {
  line-height: 2;
  font-size: 0.7rem;
  display: block;
}

#g-quick-nav .level-2 .sub > li a:hover {
  color: #0066c2;
}

#if-banner {
  background-size: 100%;
  background-position: center top;
  width: 100%;
  height: 15vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#if-banner h2 {
  font-size: 1.1rem;
}

#if-banner i {
  font-size: 0.6rem;
  display: block;
  line-height: 2;
}

#if-banner p {
  font-size: 0.7rem;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}

#if-banner .hashtag-nav {
  max-width: 60%;
  margin: 1% auto 0;
}

#if-banner .hashtag-nav a {
  border: 1px solid #fff;
  color: #fff;
}

.hashtag-nav li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.hashtag-nav li a, .hashtag-nav li p {
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 0.6rem;
  color: #000;
  padding: 10px 15px;
  line-height: 1.3em;
}

.hashtag-nav li a:hover, .hashtag-nav li a:active {
  background-color: #00867d;
  color: #fff;
}

#article-detail .hashtag-nav, .article-detail .hashtag-nav {
  display: flex;
  flex-direction: column;
  padding-right: 30px;
}

#article-detail .hashtag-nav li, .article-detail .hashtag-nav li {
  width: 100%;
}

#index-video {
  width: 92%;
  margin: 3% auto;
  max-width: 1200px;
}

#index-video header {
  margin-bottom: 5vh;
}

#index-video header h2 {
  margin-bottom: 25px;
}

#index-video header h2 p {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 1.6% 0;
}

#index-video header > p {
  font-size: 0.7rem;
  max-width: 1000px;
  margin: 0 auto 15px;
}

#index-video .video-wrap {
  padding-bottom: 56.4%;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.2);
}

.spidx-bg-ccc {
  background: url(../img/spidx-bg-deco-1.png) no-repeat center top #eee;
  background-size: 100%;
}

#spidx-intro {
  width: 92%;
  margin: 3% auto;
  max-width: 1200px;
}

#spidx-intro header {
  max-width: 1000px;
  margin: 0 auto 5%;
  text-align: left;
}

#spidx-intro header img {
  margin-bottom: 2%;
}

#spidx-intro header p {
  margin-bottom: 15px;
  font-size: 0.7rem;
  text-align: justify;
}

#spidx-intro header p:last-child {
  margin-bottom: 0;
}

#spidx-video {
  width: 92%;
  margin: 2% auto 0;
  max-width: 1200px;
}

#spidx-video header {
  max-width: 1000px;
  margin: 0 auto 5%;
  text-align: left;
}

#spidx-video header img {
  margin-bottom: 2%;
}

#spidx-video header p {
  font-size: 0.7rem;
}

#spidx-video h2 {
  margin-top: -5%;
}

#spidx-video h2 img {
  margin: 0 auto;
}

#spidx-video .video-wrap {
  padding-bottom: 56.4%;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.2);
}

#spidx-video .tab-nav {
  margin: 3% 0;
}

#spidx-video .tab-nav li:hover a, #spidx-video .tab-nav li.active a {
  background-color: orange;
  color: #fff;
}

#spidx-video .tab-nav li a {
  border: 3px solid orange;
  border-radius: 100px;
  padding: 0 1.5vw;
}

#spidx-video .tab-nav li a:after {
  display: none;
}

.g-intro {
  width: 92%;
  margin: 2% auto;
  max-width: 1200px;
}

.g-intro h2 {
  margin-bottom: 25px;
}

.g-intro p {
  font-size: 0.7rem;
  max-width: 1000px;
  margin: 0 auto 15px;
  text-align: justify;
}

.align-center {
  text-align: center;
}

.align-center p {
  text-align: center;
}

#index-about {
  width: 82%;
  margin: 5% auto 3%;
}

#index-about header {
  display: flex;
  justify-content: center;
  align-items: center;
}

#index-about header h2 {
  width: 27.5%;
  font-size: 1.4rem;
  border-right: 1px solid #000;
}

#index-about header > p {
  width: 72.5%;
  font-size: .7rem;
  text-align: left;
  padding: 0 4%;
}

#index-about img {
  margin-top: 2.5%;
  width: 100%;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.5);
}

.g-section header h2 p {
  font-size: 1.1rem;
}

.g-section header h2 i {
  font-size: .6rem;
  display: block;
}

.news-text-list {
  width: 92%;
  max-width: 1200px;
  margin: 2% auto 4%;
  border-top: 1px solid #ccc;
}

.news-text-list li {
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.news-text-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.3% 0;
}

.news-text-list li time {
  font-size: .55rem;
  width: 10%;
  padding-left: 1%;
}

.news-text-list li h3 {
  font-size: .7rem;
  width: 90%;
  font-weight: bold;
}

.news-text-list li i.icon-new {
  background: #c13a36;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1%;
  font-size: .6rem;
  padding: 0% .8%;
}

.tab-wrap {
  margin-top: .5%;
}

.tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-nav.sub {
  margin-top: 25px;
}

.tab-nav.sub li.active a {
  background: #00867d;
  color: #fff;
}

.tab-nav.sub li a {
  line-height: 1em;
  font-size: 0.6rem;
  padding: 7px 20px 10px 20px;
  border-radius: 3px;
  border: none;
  background: #ddd;
}

.tab-nav.sub li a:hover {
  background: #202d52;
  color: #fff;
}

.tab-nav.sub li a:after {
  display: none;
}

.tab-nav li {
  margin: 0 .5%;
}

.tab-nav li a {
  font-size: .8rem;
  display: block;
  line-height: 2;
}

.tab-nav li a:after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: #00867d;
  display: block;
  transition: .4s;
}

.tab-nav li a:hover:after {
  width: 100%;
}

.tab-nav li.active a:after {
  width: 100%;
}

.tab-content {
  position: fixed;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}

.tab-content.active {
  position: static;
  opacity: 1;
  visibility: visible;
}

header ~ .lecture-list {
  margin-top: 2%;
}

.lecture-list {
  display: flex;
  flex-wrap: wrap;
  width: 92%;
  max-width: 1200px;
  margin: 2.5% auto 0;
}

.lecture-list li {
  width: 32%;
  float: left;
  margin-right: 2%;
  position: relative;
  text-align: left;
  margin-bottom: 4%;
}

.lecture-list li:nth-child(3n) {
  margin-right: 0;
}

.lecture-list li:hover .date {
  background: #0066c2;
  color: #fff;
}

.lecture-list li:hover .img img {
  transform: scale(1.1);
}

.lecture-list .date {
  position: absolute;
  top: -5%;
  left: -1%;
  width: 4.2vw;
  height: 4.2vw;
  font-size: 0.5rem;
  background: #00867d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  text-align: center;
  z-index: 1;
  transition: .2s;
}

.lecture-list .date span {
  display: block;
  font-weight: bold;
}

.lecture-list .img {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  height: 252px;
  border-radius: 5px;
}

.lecture-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1);
  transition: .4s;
}

.lecture-list time {
  font-size: .7rem;
  display: inline-block;
}

.lecture-list h2, .lecture-list h3 {
  margin-bottom: 7px;
  font-size: .7rem;
  line-height: 1.5em;
}

.lecture-list p {
  font-size: .6rem;
  line-height: 1.5em;
}

.lecture-list u {
  text-decoration: none;
  font-size: .6rem;
  color: #00867d;
}

.lecture-list a:hover .icon-play {
  background-color: #00867d;
}

.lecture-list a.more {
  padding: 3px 10px;
  font-size: 16px;
  background: #00867d;
  color: #fff;
  border-radius: 5px;
  transition: .3s;
}

.lecture-list a.more:hover {
  background: #202d52;
}

.lecture-list .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  background-color: rgba(255, 255, 255, 0.5);
}

.lecture-list .icon-play:before {
  border-color: transparent transparent transparent #000;
  border-width: 7px 0 7px 10px;
  margin-left: 3px;
}

#g-footer {
  padding: 2% 3.5% 1%;
  font-size: .6rem;
  text-align: left;
  margin-top: .5%;
  color: #000;
  background-color: #eee;
}

#g-footer .flex {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

#g-footer .links {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#g-footer .links a {
  display: block;
  width: 50%;
}

#g-footer .links a img {
  width: 100%;
}

#g-footer .links img {
  width: 50%;
}

#g-footer .contact {
  width: 60%;
  margin-left: 2%;
}

#g-footer .contact dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2%;
  font-size: .7rem;
  line-height: 1.5;
}

#g-footer .contact dt {
  font-weight: bold;
  width: 20%;
}

#g-footer .contact dd {
  width: 80%;
}

#g-footer .copyright {
  width: 100%;
  text-align: center;
  margin: 1% 0;
  font-size: 0.6rem;
  opacity: 0.6;
}

.breadcrumb {
  text-align: left;
  width: 92%;
  max-width: 1200px;
  margin: 1.9% auto;
}

.breadcrumb li {
  display: inline-block;
  font-size: .7rem;
  font-weight: bold;
  color: #666;
}

.breadcrumb li:after {
  content: '';
  width: 1vw;
  height: 1vw;
  background: url(../img/icon-next-666.svg) no-repeat center;
  background-size: auto 100%;
  display: inline-block;
  vertical-align: middle;
  margin: -.2vw .5vw 0 .7vw;
}

.breadcrumb li:last-child {
  font-weight: normal;
}

.breadcrumb li:last-child:after {
  display: none;
}

.breadcrumb li a {
  color: #666;
  transition: .3s;
}

.breadcrumb li a:hover {
  color: #000;
}

#article-detail, .article-detail {
  width: 92%;
  margin: 0 auto;
  max-width: 1200px;
  text-align: left;
}

#article-detail #top-banner-ow .tns-controls, .article-detail #top-banner-ow .tns-controls {
  opacity: .2;
}

#article-detail #top-banner-ow .tns-controls button, .article-detail #top-banner-ow .tns-controls button {
  background: none;
}

#article-detail #top-banner-ow .tns-controls button:before, .article-detail #top-banner-ow .tns-controls button:before {
  content: "";
  display: block;
  position: absolute;
  left: 10%;
  top: 10%;
  width: 80%;
  height: 80%;
  background: url(../img/icon-line-arrow.svg) no-repeat;
  background-size: 200%;
}

#article-detail #top-banner-ow .tns-controls button:nth-of-type(1), #article-detail #top-banner-ow .tns-controls button:nth-of-type(2), .article-detail #top-banner-ow .tns-controls button:nth-of-type(1), .article-detail #top-banner-ow .tns-controls button:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  width: 50px;
  height: 50px;
  border-radius: .2rem;
  transition: .2s;
}

#article-detail #top-banner-ow .tns-controls button:nth-of-type(1), .article-detail #top-banner-ow .tns-controls button:nth-of-type(1) {
  left: .5rem !important;
}

#article-detail #top-banner-ow .tns-controls button:nth-of-type(1):before, .article-detail #top-banner-ow .tns-controls button:nth-of-type(1):before {
  background-position: 0 50%;
}

#article-detail #top-banner-ow .tns-controls button:nth-of-type(2), .article-detail #top-banner-ow .tns-controls button:nth-of-type(2) {
  right: .5rem !important;
}

#article-detail #top-banner-ow .tns-controls button:nth-of-type(2):before, .article-detail #top-banner-ow .tns-controls button:nth-of-type(2):before {
  background-position: 100% 50%;
}

#article-detail #top-banner-ow .tns-nav, .article-detail #top-banner-ow .tns-nav {
  bottom: 8.5%;
}

#article-detail #top-banner-ow:hover .tns-controls, .article-detail #top-banner-ow:hover .tns-controls {
  opacity: 1;
}

#article-detail header h1 p, .article-detail header h1 p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 10px 0 4vh 0;
}

#article-detail header dl, .article-detail header dl {
  margin-top: 0.6vw;
  font-size: 0.7rem;
}

#article-detail header dl dt, .article-detail header dl dt {
  display: inline-block;
}

#article-detail header dl dt:after, .article-detail header dl dt:after {
  content: '';
  width: 1.4vw;
  height: 2px;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin: 0 .2vw;
}

#article-detail header dl dd, .article-detail header dl dd {
  display: inline-block;
  margin-right: 4vw;
}

#article-detail .img, #article-detail .video-list, .article-detail .img, .article-detail .video-list {
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.2);
  margin: 2.5% 0;
}

#article-detail .img img, #article-detail .video-list img, .article-detail .img img, .article-detail .video-list img {
  width: 100%;
}

#article-detail .video-wrap, .article-detail .video-wrap {
  padding-bottom: 58%;
}

#article-detail .flex, .article-detail .flex {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1% 0;
}

#article-detail .flex .right, .article-detail .flex .right {
  width: 74.5%;
}

#article-detail .flex .left, .article-detail .flex .left {
  width: 25.5%;
  order: -1;
}

#article-detail .flex.lecture-live-flex, .article-detail .flex.lecture-live-flex {
  justify-content: space-between;
  margin-bottom: 2%;
}

#article-detail .flex.lecture-live-flex .video-list, .article-detail .flex.lecture-live-flex .video-list {
  margin: 0;
}

#article-detail .flex.lecture-live-flex .right, .article-detail .flex.lecture-live-flex .right {
  width: 33%;
  position: relative;
}

#article-detail .flex.lecture-live-flex .right iframe, .article-detail .flex.lecture-live-flex .right iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

#article-detail .flex.lecture-live-flex .left, .article-detail .flex.lecture-live-flex .left {
  width: 65%;
}

#article-detail .vote-count .tip, .article-detail .vote-count .tip {
  background-color: #00867d;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  width: 86%;
  font-size: 0.7rem;
  margin: 1.3vw 0 0 .5vw;
  padding: .5vw 0;
  position: relative;
}

#article-detail .vote-count .tip:before, .article-detail .vote-count .tip:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .4vw .4vw 0 .4vw;
  border-color: #00867d transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: calc(50% - .4vw);
}

#article-detail .vote-count .num, .article-detail .vote-count .num {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #00867d;
}

#article-detail .vote-count .num span, .article-detail .vote-count .num span {
  font-size: .7rem;
}

#article-detail .vote-count:hover .tip, .article-detail .vote-count:hover .tip {
  background-color: #0066c2;
}

#article-detail .vote-count:hover .tip:before, .article-detail .vote-count:hover .tip:before {
  border-color: #0066c2 transparent transparent transparent;
}

#article-detail .vote-count:hover .num, .article-detail .vote-count:hover .num {
  color: #0066c2;
}

#article-detail .summary, .article-detail .summary {
  margin: 2% 0;
  padding: 3.5% 11.5%;
  font-size: 0.7rem;
  background-color: #f1f1f1;
}

#article-detail .summary dl, .article-detail .summary dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

#article-detail .summary dt, #article-detail .summary dd, .article-detail .summary dt, .article-detail .summary dd {
  margin: 1% 0;
}

#article-detail .summary dt, .article-detail .summary dt {
  border-right: 2px solid #000;
  width: 11%;
  white-space: nowrap;
}

#article-detail .summary dd, .article-detail .summary dd {
  width: 89%;
  padding-left: 3%;
}

#article-detail aside, .article-detail aside {
  width: 112%;
  margin: 7% 0 5% -6%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
}

#article-detail aside a, .article-detail aside a {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 1.5vw 0;
}

#article-detail aside a:hover, .article-detail aside a:hover {
  background-color: rgba(0, 134, 125, 0.2);
}

#article-detail aside a:hover span, .article-detail aside a:hover span {
  color: #000;
}

#article-detail aside a span, .article-detail aside a span {
  font-size: 0.7rem;
  color: #ccc;
  display: block;
  line-height: 1.3;
}

#article-detail aside a b, .article-detail aside a b {
  font-size: 0.8rem;
  display: block;
  line-height: 1.3;
}

#article-detail aside a .icon-arrow, .article-detail aside a .icon-arrow {
  width: 1vw;
  height: 1vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  display: inline-block;
  vertical-align: middle;
}

#article-detail aside a:nth-of-type(1) .icon-arrow, .article-detail aside a:nth-of-type(1) .icon-arrow {
  background-image: url(../img/icon-prev-000.svg);
  margin-right: .7vw;
}

#article-detail aside a:nth-of-type(2), .article-detail aside a:nth-of-type(2) {
  text-align: right;
  justify-content: flex-end;
}

#article-detail aside a:nth-of-type(2) .icon-arrow, .article-detail aside a:nth-of-type(2) .icon-arrow {
  background-image: url(../img/icon-next-000.svg);
  margin-left: .7vw;
}

.ck-zone {
  font-size: 0.7rem;
}

.ck-zone a {
  text-decoration: underline;
}

.ck-zone hr {
  border: 0;
  border-top: 1px solid #000;
  display: block;
  margin: 2% 0;
}

.ck-zone img {
  margin: 2% 0;
}

.ck-zone ol {
  padding-left: 2.5%;
}

.ck-zone ol li {
  list-style: disc;
}

.ck-zone ul {
  padding-left: 2.5%;
}

.ck-zone ul li {
  list-style: decimal;
}

#janut-search {
  width: 74.5%;
  margin: 1.9% auto 5%;
}

#janut-search .flex {
  display: flex;
  justify-content: space-between;
}

#janut-search .left {
  width: 55%;
  text-align: left;
}

#janut-search .left > p {
  font-size: 0.7rem;
}

#janut-search header h1 {
  margin-top: 2%;
  font-size: 1.45rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

#janut-search .hashtag-nav {
  margin: 5% 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#janut-search .hashtag-nav li {
  width: 24%;
  margin-right: 0;
}

#janut-search .hashtag-nav li a {
  width: 100%;
  display: block;
}

#janut-search form > div {
  position: relative;
}

#janut-search form > div i.fa-search {
  position: absolute;
  top: 50%;
  right: 0%;
  font-size: 1rem;
  margin-top: -0.5rem;
}

#janut-search #janut-zone, #janut-search #janut-keyword {
  font-size: 1rem;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #000;
  padding: 1.3vw 1vw;
  margin: .5% 0;
}

#janut-search #janut-school,
#janut-search #janut-plan {
  width: 48%;
  font-size: .7rem;
  border: 0;
  padding: .8vw 1vw;
}

#janut-search #janut-submit {
  width: 30%;
  font-size: .8rem;
}

#janut-search .qa-list {
  margin: 2% 0;
}

#janut-search .qa-list .qa-a {
  background-color: #ccc;
  padding: 2% 5%;
  display: flex;
  justify-content: space-between;
}

#janut-search .right {
  width: 38%;
}

.map-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 156%;
  margin-top: -10%;
}

.map-wrap .title {
  background: url(../img/janut-title.png) no-repeat center;
  background-size: 100%;
  width: 55%;
  height: 0;
  padding-bottom: 32%;
  text-indent: -9999px;
  pointer-events: none;
  position: absolute;
  top: 2%;
  left: 0;
}

.map-wrap .land {
  background: url(../img/janut-land.png);
  background-size: 100%;
  width: 80%;
  height: 0;
  padding-bottom: 130%;
  position: absolute;
  top: 11%;
  left: 0;
}

.map-wrap #map-zone-close-tip {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#map-list li {
  position: absolute;
  width: 10%;
  height: 0;
  padding-bottom: 10%;
  transform: scale(2) rotate(10deg);
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#map-list li:nth-of-type(1) {
  transition-delay: 0.15s;
}

#map-list li:nth-of-type(2) {
  transition-delay: 0.3s;
}

#map-list li:nth-of-type(3) {
  transition-delay: 0.45s;
}

#map-list li:nth-of-type(4) {
  transition-delay: 0.6s;
}

#map-list li:nth-of-type(5) {
  transition-delay: 0.75s;
}

#map-list li:nth-of-type(6) {
  transition-delay: 0.9s;
}

#map-list li:nth-of-type(7) {
  transition-delay: 1.05s;
}

#map-list li:nth-of-type(8) {
  transition-delay: 1.2s;
}

#map-list li:nth-of-type(9) {
  transition-delay: 1.35s;
}

#map-list li:nth-of-type(10) {
  transition-delay: 1.5s;
}

#map-list li:nth-of-type(11) {
  transition-delay: 1.65s;
}

#map-list li:nth-of-type(12) {
  transition-delay: 1.8s;
}

#map-list li:nth-of-type(13) {
  transition-delay: 1.95s;
}

#map-list li:nth-of-type(14) {
  transition-delay: 2.1s;
}

#map-list li:nth-of-type(15) {
  transition-delay: 2.25s;
}

#map-list li:nth-of-type(16) {
  transition-delay: 2.4s;
}

#map-list li:nth-of-type(17) {
  transition-delay: 2.55s;
}

#map-list li:nth-of-type(18) {
  transition-delay: 2.7s;
}

#map-list li:nth-of-type(19) {
  transition-delay: 2.85s;
}

#map-list li:nth-of-type(20) {
  transition-delay: 3s;
}

#map-list li .icon-spot {
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1);
  transition: .2s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#map-list li.active {
  z-index: 2;
}

#map-list li.active .icon-spot {
  transform: scale(1.3);
}

#map-list li.active .tip {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

#map-list .z1 {
  top: 15.5%;
  left: 73.5%;
  width: 27%;
  padding-bottom: 14%;
}

#map-list .z1 .icon-spot {
  background-image: url(../img/janut-zone-1.png);
}

#map-list .z2 {
  top: 0%;
  left: 58%;
  width: 5.5%;
  padding-bottom: 30.5%;
  z-index: 1;
}

#map-list .z2 .icon-spot {
  background-image: url(../img/janut-zone-2.png);
}

#map-list .z2 .tip {
  bottom: 70%;
  left: 0%;
}

#map-list .z3 {
  top: 10.5%;
  left: 59%;
  width: 17%;
  padding-bottom: 20%;
}

#map-list .z3 .icon-spot {
  background-image: url(../img/janut-zone-3.png);
}

#map-list .z4 {
  top: 14.5%;
  left: 40%;
  width: 13.5%;
  padding-bottom: 8%;
}

#map-list .z4 .icon-spot {
  background-image: url(../img/janut-zone-4.png);
}

#map-list .z5 {
  top: 22.5%;
  left: 33%;
  width: 21%;
  padding-bottom: 14.5%;
}

#map-list .z5 .icon-spot {
  background-image: url(../img/janut-zone-5.png);
}

#map-list .z6 {
  /*新竹縣*/
  opacity: 0;
  visibility: hidden;
}

#map-list .z7 {
  top: 28.5%;
  left: 27.5%;
  width: 12%;
  padding-bottom: 9%;
  z-index: 1;
}

#map-list .z7 .icon-spot {
  background-image: url(../img/janut-zone-7.png);
}

#map-list .z8 {
  top: 35%;
  left: 24.5%;
  width: 21%;
  padding-bottom: 10%;
}

#map-list .z8 .icon-spot {
  background-image: url(../img/janut-zone-8.png);
}

#map-list .z9 {
  top: 44%;
  left: 36%;
  width: 18%;
  padding-bottom: 17%;
}

#map-list .z9 .icon-spot {
  background-image: url(../img/janut-zone-9.png);
}

#map-list .z10 {
  top: 41.5%;
  left: 12.5%;
  width: 8%;
  padding-bottom: 13%;
}

#map-list .z10 .icon-spot {
  background-image: url(../img/janut-zone-10.png);
}

#map-list .z11 {
  top: 50.5%;
  left: 0%;
  width: 15%;
  padding-bottom: 10%;
}

#map-list .z11 .icon-spot {
  background-image: url(../img/janut-zone-11.png);
}

#map-list .z12 {
  top: 54%;
  left: 10.5%;
  width: 15%;
  padding-bottom: 9%;
}

#map-list .z12 .icon-spot {
  background-image: url(../img/janut-zone-12.png);
}

#map-list .z13 {
  /*嘉義縣*/
  opacity: 0;
  visibility: hidden;
}

#map-list .z14 {
  top: 64%;
  left: 17%;
  width: 10.2%;
  padding-bottom: 14.5%;
}

#map-list .z14 .icon-spot {
  background-image: url(../img/janut-zone-14.png);
}

#map-list .z15 {
  top: 73%;
  left: 25.7%;
  width: 7.5%;
  padding-bottom: 18%;
  z-index: 1;
}

#map-list .z15 .icon-spot {
  background-image: url(../img/janut-zone-15.png);
}

#map-list .z16 {
  top: 84%;
  left: 20%;
  width: 25.5%;
  padding-bottom: 24%;
}

#map-list .z16 .icon-spot {
  background-image: url(../img/janut-zone-16.png);
}

#map-list .z17 {
  /*臺東縣*/
  opacity: 0;
  visibility: hidden;
}

#map-list .z18 {
  top: 70%;
  left: 44.5%;
  width: 12.5%;
  padding-bottom: 19%;
}

#map-list .z18 .icon-spot {
  background-image: url(../img/janut-zone-18.png);
}

#map-list .z19 {
  top: 42%;
  left: 58%;
  width: 25%;
  padding-bottom: 19%;
}

#map-list .z19 .icon-spot {
  background-image: url(../img/janut-zone-19.png);
}

#map-list .z20 {
  top: 27.2%;
  left: 66%;
  width: 25%;
  padding-bottom: 14%;
}

#map-list .z20 .icon-spot {
  background-image: url(../img/janut-zone-20.png);
}

#map-list .z21 {
  top: 58%;
  left: -11%;
  width: 16%;
  padding-bottom: 26%;
}

#map-list .z21 .icon-spot {
  background-image: url(../img/janut-zone-21.png);
}

#map-list .z5 .tip:nth-of-type(1) {
  left: -80%;
}

#map-list .z5 .tip:nth-of-type(2) {
  left: 80%;
}

#map-list .z12 .tip:nth-of-type(1) {
  left: -115%;
}

#map-list .z12 .tip:nth-of-type(2) {
  left: 115%;
}

#map-list .z16 .tip:nth-of-type(1) {
  left: -70%;
}

#map-list .z16 .tip:nth-of-type(2) {
  left: 70%;
}

#map-list .tip {
  position: absolute;
  bottom: 100%;
  left: 30%;
  background: url(../img/janut-text-frame.png) no-repeat;
  background-size: 100%;
  width: 10vw;
  height: 7vw;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: .2s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#map-list .tip h4 {
  font-size: 2vw;
  line-height: 1;
  margin-top: 17%;
}

#map-list .tip small {
  margin-top: 5%;
  font-size: 0.7rem;
  display: block;
}

#map-list.active li {
  transform: scale(1) rotate(0);
  opacity: 1;
  visibility: visible;
}

#spidx-top-banner {
  position: relative;
}

#spidx-top-banner:before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/spidx-banner-cover.png) no-repeat 0 50%;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.spidx-event-a {
  width: 92%;
  max-width: 1200px;
  margin: 2% auto 5%;
  font-size: 0.7rem;
  text-align: left;
}

.spidx-event-a .flex {
  display: flex;
  justify-content: flex-start;
}

.spidx-event-a .left {
  width: 60%;
}

.spidx-event-a .left h3 {
  margin-bottom: 3%;
}

.spidx-event-a .right {
  width: 30%;
  position: relative;
  margin-left: 5%;
}

.spidx-event-a .right img {
  width: 100%;
  margin-top: 10%;
}

.spidx-event-a .right .g-cta-cloud {
  right: -10%;
}

.g-cta-cloud {
  position: absolute;
  top: -5%;
  right: 0;
  width: 190px;
  height: 137px;
  text-align: center;
}

.g-cta-cloud b {
  display: none;
}

.g-cta-cloud p {
  font-size: 20px;
  margin-top: 38%;
}

.g-cta-cloud.is-go {
  background-image: url(../img/spidx-cta-1.png);
}

.g-cta-cloud.is-vote {
  background-image: url(../img/spidx-cta-2.png);
}

#spidx-news h2 img {
  margin: 0 auto;
}

#spidx-films {
  margin-bottom: 5%;
}

#spidx-films .g-cta-cloud {
  right: 30%;
  top: -60px;
}

#spidx-films h2 img {
  margin: 0 auto -3%;
}

#spidx-films .lecture-list {
  background-color: #fff;
  padding: 2vw;
  border-radius: 2vw;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.3);
}

#cookie-msg {
  background-color: #00867d;
  color: #fff;
  position: fixed;
  width: 100%;
  bottom: -100px;
  left: 0;
  box-shadow: 0 -10px 1vw rgba(0, 134, 125, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: 1s;
  z-index: 100;
  font-size: .7rem;
}

#cookie-msg.active {
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
}

#cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 10px;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: left;
}

#cookie-content a {
  color: #fff;
}

a#privacy-agree {
  width: 240px;
  min-width: 100px;
  padding: 10px 20px;
  margin-left: 10px;
  color: #00867d;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a#privacy-agree:hover {
  opacity: .8;
}

@media screen and (max-width: 1600px) {
  .lecture-list .img {
    height: 16vw;
  }
  #janut-search .hashtag-nav li {
    width: 47%;
  }
  #map-list .tip small {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 140%;
  }
  #g-nav {
    margin-left: 0;
  }
  #article-detail .summary, .article-detail .summary {
    padding: 3.5% 5%;
  }
  #header-quick > * {
    margin: 5px .5%;
  }
  .icon-play {
    width: 3vw;
    height: 3vw;
    margin: -1.5vw 0 0 -1.5vw;
  }
  .icon-play:before {
    border-width: .7vw 0 .7vw 1.1vw;
  }
  .g-cta-cloud {
    top: -5%;
    right: 0;
    width: 14vw;
    height: 10vw;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .g-cta-cloud p {
    font-size: .7rem;
  }
  #spidx-films .g-cta-cloud {
    right: 10%;
    top: -5vw;
  }
  .spidx-event-a .right img {
    margin-top: 50%;
  }
}

@media screen and (max-width: 900px) {
  body.lock {
    overflow: hidden;
  }
  section ~ section {
    margin: 10% 0;
  }
  .margin-0 {
    margin: 0;
  }
  html {
    font-size: 140%;
  }
  #header-quick {
    opacity: 0;
    visibility: hidden;
  }
  #g-header {
    display: block;
    height: 8vw;
    z-index: 4;
    padding: 0 4%;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
  }
  #g-header form {
    order: 1;
    width: 100%;
  }
  #g-header #g-quick-nav {
    order: 2;
    width: 100%;
    display: none;
  }
  #g-header #g-nav {
    order: 3;
    width: 100%;
  }
  #g-header .logo {
    width: 55%;
    margin-top: -1%;
  }
  #g-header #g-nav {
    display: none;
  }
  #g-header #search-wrap-m {
    display: none;
  }
  #g-header #g-nav-trigger {
    position: fixed;
    top: 2vw;
    right: 2vw;
  }
  #g-header.active {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    overflow: auto;
  }
  #g-header.active #g-nav {
    display: block;
  }
  #g-header.active #search-wrap-m {
    display: block;
  }
  #g-header.active #g-quick-nav {
    display: block;
  }
  #g-header.active .logo {
    opacity: 0;
    visibility: hidden;
  }
  #search-wrap-m {
    position: relative;
    margin-top: 20vw;
  }
  #search-text-m {
    width: 100%;
    font-size: 1rem;
    border-radius: 100px;
    border: 0;
    background-color: rgba(32, 45, 82, 0.2);
    padding: 2% 5%;
  }
  #search-submit-m {
    position: absolute;
    top: 2vw;
    right: 3vw;
    border: 0;
    background: transparent;
  }
  #search-submit-m i {
    font-size: 1rem;
  }
  #g-nav > ol {
    display: block;
  }
  #g-nav > ol > li {
    padding: 2% 0;
  }
  #g-nav > ol > li b {
    color: #fff;
    line-height: 3;
    font-weight: normal;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4vw;
  }
  #g-nav > ol > li b:before {
    display: none;
  }
  #g-nav > ol > li .icon-arrow {
    width: 40px;
    height: 40px;
    background: url(../img/icon-next-fff.svg) no-repeat center;
    background-size: 30%;
    display: block;
    transition: .4s;
    position: absolute;
    top: 11px;
    right: 0;
  }
  #g-nav > ol > li:nth-child(odd) b {
    background: rgba(59, 72, 113, 0.9);
  }
  #g-nav > ol > li:nth-child(even) b {
    background: rgba(78, 90, 127, 0.9);
  }
  #g-nav > ol > li.active .icon-arrow {
    transform: rotate(90deg);
  }
  #g-nav > ol > li.active .sub {
    max-height: 30vh;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    padding: 2% 0;
  }
  #g-nav > ol > li.is-m b {
    background-color: #999;
  }
  #g-nav > ol > li.is-share i {
    width: 2rem;
    font-size: 1.5rem;
    text-align: center;
  }
  #g-nav .sub {
    position: static;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
    max-height: 0;
    transition: .4s;
    padding: 0 0;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
  #g-nav .sub li {
    margin-bottom: 2px;
  }
  #g-nav .sub li:nth-child(odd), #g-nav .sub li:nth-child(even) {
    background: transparent;
  }
  #g-nav .sub li a {
    color: #000;
    font-size: .7rem;
    line-height: 1.3em;
    padding: 10px 20px;
    background: #eee;
  }
  #g-nav .sub li a:after {
    display: none;
  }
  #g-nav .sub li a:hover {
    background-color: transparent;
    color: #0066c2;
  }
  #g-quick-nav {
    position: static;
    background: transparent;
    padding: 5% 0;
    min-height: 0;
  }
  #g-quick-nav h4:nth-of-type(2) {
    display: none;
  }
  #g-quick-nav .level-1 {
    flex-wrap: wrap;
    background: transparent;
  }
  #g-quick-nav .level-1 li {
    width: 30%;
    margin-bottom: 4%;
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.5);
  }
  #g-quick-nav .level-1 li a {
    background-color: #fff;
  }
  #g-quick-nav .level-1 li a i {
    font-size: 1.5rem;
  }
  #g-quick-nav .level-2 {
    display: none;
  }
  i[class^=icon-flag-] {
    width: 10vw;
    height: 6.5vw;
  }
  .dropdown .selected {
    border: 1px solid #fff;
  }
  .dropdown ol {
    overflow: hidden;
    max-height: 0;
    transition: .2s;
    width: 100%;
    position: static;
  }
  .dropdown li a {
    padding: 2vw;
    margin: 0;
  }
  .dropdown.active ol {
    max-height: 30vw;
    overflow: auto;
  }
  #info-header .group {
    display: none;
  }
  #if-banner {
    height: auto;
    background-size: cover;
    margin-bottom: 10%;
  }
  #if-banner > div {
    margin: 10% 0;
  }
  #if-banner .hashtag-nav {
    max-width: 90%;
  }
  #index-kv .group:before {
    display: none;
  }
  #index-kv .logo {
    width: 74%;
    top: 3.2vw;
  }
  #top-banner a.btn {
    width: 10vw;
  }
  #top-banner-ow .tns-nav, #video-banner-ow .tns-nav {
    bottom: 1%;
  }
  #top-banner-ow .tns-nav button, #video-banner-ow .tns-nav button {
    width: 7vw;
    height: 7vw;
  }
  #top-banner-ow .tns-nav button:before, #top-banner-ow .tns-nav button:after, #video-banner-ow .tns-nav button:before, #video-banner-ow .tns-nav button:after {
    width: 2vw;
    height: 2vw;
  }
  #top-banner-ow .tns-controls button:nth-of-type(1), #top-banner-ow .tns-controls button:nth-of-type(2), #video-banner-ow .tns-controls button:nth-of-type(1), #video-banner-ow .tns-controls button:nth-of-type(2) {
    bottom: 2%;
    width: 11.2vw;
    height: 5.6vw;
  }
  .video-wrap {
    padding-bottom: 64%;
  }
  .video-wrap .txt {
    max-width: 80%;
  }
  .video-wrap .txt h3 {
    line-height: 2;
  }
  .video-wrap .icon-play {
    width: 12vw;
    height: 12vw;
  }
  .video-wrap .icon-play:before {
    border-width: 2vw 0 2vw 3vw;
  }
  .video-wrap .cover .txt {
    transform: translateY(-10%);
  }
  #index-about {
    width: 90%;
    margin-top: 10%;
  }
  #index-about header {
    display: block;
  }
  #index-about header h2 {
    width: 100%;
    border-right: 0;
  }
  #index-about header > p {
    width: 100%;
    padding: 0;
  }
  .news-text-list {
    width: 90%;
  }
  .news-text-list li a {
    align-items: start;
  }
  .news-text-list li time {
    width: 27%;
    margin-top: .1rem;
  }
  .news-text-list li h3 {
    width: 73%;
  }
  .tab-nav {
    flex-wrap: wrap;
  }
  .tab-nav li a {
    border: 1px solid #000;
    border-radius: 50px;
    padding: 0 2.5vw;
    margin: 1vw;
  }
  .tab-nav li a:after {
    display: none;
  }
  .tab-nav li.active a {
    background-color: #00867d;
    color: #fff;
  }
  .lecture-list {
    width: 90%;
  }
  .lecture-list li {
    width: 49%;
  }
  .lecture-list li:nth-child(3n) {
    margin-right: 2%;
  }
  .lecture-list li:nth-child(2n) {
    margin-right: 0;
  }
  .lecture-list .date {
    width: 12vw;
    height: 12vw;
    line-height: 1;
    top: -3%;
    left: -3%;
  }
  .lecture-list .icon-play {
    width: 6vw;
    height: 6vw;
    margin: -3vw 0 0 -3vw;
  }
  .lecture-list .icon-play:before {
    border-width: 1vw 0 1vw 1.5vw;
  }
  .lecture-list .img {
    height: 25vw;
  }
  #g-footer {
    margin-top: 10%;
    padding: 10% 0;
  }
  #g-footer .flex {
    display: block;
  }
  #g-footer .links {
    margin: 0 auto;
  }
  #g-footer .contact {
    margin: 5% auto;
    width: 80%;
  }
  #g-footer .contact dt {
    width: 25%;
  }
  #g-footer .contact dd {
    width: 75%;
  }
  #g-footer .copyright {
    width: 90%;
    margin: 5% auto;
  }
  .breadcrumb {
    width: 92%;
    margin-top: 5%;
  }
  .breadcrumb li:after {
    width: 2vw;
    height: 3vw;
    margin: -0.2vw .5vw 0 1.5vw;
  }
  #article-detail, .article-detail {
    width: 90%;
  }
  #article-detail header h1, .article-detail header h1 {
    margin-bottom: 5%;
  }
  #article-detail .flex, .article-detail .flex {
    display: block;
  }
  #article-detail .flex .right, .article-detail .flex .right {
    width: 100%;
  }
  #article-detail .flex .left, .article-detail .flex .left {
    width: 100%;
    margin-top: 15%;
  }
  #article-detail .flex.lecture-live-flex, .article-detail .flex.lecture-live-flex {
    margin-bottom: 5%;
  }
  #article-detail .flex.lecture-live-flex .right, .article-detail .flex.lecture-live-flex .right {
    width: 100%;
    height: 100vw;
  }
  #article-detail .flex.lecture-live-flex .left, .article-detail .flex.lecture-live-flex .left {
    width: 100%;
  }
  #article-detail aside, .article-detail aside {
    width: 100%;
    margin: 7% 0;
    display: block;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
  }
  #article-detail aside a, .article-detail aside a {
    width: 100%;
  }
  #article-detail aside a .icon-arrow, .article-detail aside a .icon-arrow {
    width: 4vw;
    height: 4vw;
  }
  #article-detail aside a:nth-of-type(1), .article-detail aside a:nth-of-type(1) {
    border-bottom: 1px solid #ddd;
  }
  #article-detail .vote-count, .article-detail .vote-count {
    width: 50%;
    margin: 5% auto 0;
  }
  #article-detail .vote-count .tip, .article-detail .vote-count .tip {
    width: 100%;
  }
  #article-detail .summary dt, .article-detail .summary dt {
    width: 25%;
  }
  #article-detail .summary dd, .article-detail .summary dd {
    width: 75%;
  }
  #article-detail .summary dt, #article-detail .summary dd, .article-detail .summary dt, .article-detail .summary dd {
    margin: 2% 0;
  }
  .ck-zone ul, .ck-zone ol {
    padding-left: 5.5vw;
  }
  .message-board {
    width: 90%;
    margin-bottom: 15%;
  }
  .message-board .msg-list li {
    display: block;
    padding-left: 13vw;
    width: 100%;
    position: relative;
    text-align: left;
    margin: 3% 0;
  }
  .message-board .msg-list li .user-pic {
    width: 10vw;
    height: 10vw;
    min-width: 10vw;
    position: absolute;
    top: 0;
    left: 0;
  }
  .message-board .author {
    width: 100%;
    margin-left: 0;
  }
  .message-board .msg-content {
    width: 100%;
    margin-left: 0;
  }
  .message-board time {
    text-align: left;
    opacity: 0.3;
  }
  .message-board .user-pic {
    width: 10vw;
    height: 10vw;
    min-width: 10vw;
  }
  .message-board #msg-create-text {
    width: calc(100% - 12vw);
    height: 3rem;
  }
  .message-board #msg-create-submit {
    bottom: 7%;
    right: 2%;
  }
  .message-board #msg-create-submit i {
    font-size: 6vw;
  }
  .msg-box .msg-wrap > .close {
    top: -6vw;
    right: -4vw;
    width: 12vw;
    height: 12vw;
  }
  #janut-search {
    width: 90%;
  }
  #janut-search .flex {
    flex-wrap: wrap;
  }
  #janut-search .left {
    width: 100%;
  }
  #janut-search .right {
    width: 100%;
    order: -1;
  }
  #janut-search .right img {
    margin: 0 auto;
  }
  #janut-search #janut-submit {
    width: 50%;
  }
  .map-wrap {
    margin-top: 4%;
    margin-bottom: 10%;
  }
  #map-list .tip {
    width: 28vw;
    height: 20vw;
  }
  #map-list .tip h4 {
    font-size: 6vw;
  }
  #map-list .tip small {
    font-size: .5rem;
  }
  #map-list .z1 .tip {
    left: -20%;
  }
  #spidx-top-banner:before {
    background: url(../img/spidx-banner-cover-m.png) no-repeat 0 0;
    background-size: 100% auto;
  }
  .g-cta-cloud {
    width: 20vw;
    height: 15vw;
  }
  .g-cta-cloud p {
    font-size: .5rem;
  }
  #g-promo-plan {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  #g-header {
    height: 15vw;
  }
  #g-header .logo {
    width: 65%;
  }
  #g-nav-trigger {
    width: 12vw;
    height: 12vw;
  }
  #g-nav-trigger > div {
    width: 8vw;
    height: .8vw;
  }
  #g-nav-trigger .line-1 {
    top: 2.4vw;
    right: 1.6vw;
  }
  #g-nav-trigger .line-2 {
    top: 5.2vw;
    right: 1.6vw;
    width: 5.6vw;
  }
  #g-nav-trigger .line-3 {
    top: 7.6vw;
    right: 1.6vw;
    width: 4vw;
  }
  #g-nav-trigger [class^=cross-] {
    top: 5.2vw;
    left: 1vw;
    width: 10vw;
  }
  .spidx-event-a .flex {
    flex-wrap: wrap;
  }
  .spidx-event-a .left {
    padding-top: 2%;
    width: 100%;
  }
  .spidx-event-a .left img {
    width: 70%;
  }
  .spidx-event-a .right {
    width: 100%;
    margin-left: 0;
    padding-top: 2%;
  }
  .spidx-event-a .right img {
    margin-top: 20%;
    width: 60%;
    margin: 0 auto;
  }
  .g-cta-cloud {
    width: 30vw;
    height: 22vw;
  }
  #spidx-video h2 img {
    width: 40%;
  }
  #spidx-intro {
    margin: 10% auto;
  }
  #spidx-video .tab-nav {
    margin: 5% 0;
  }
  #spidx-films .g-cta-cloud {
    right: 0;
  }
  .spidx-event-a .right .g-cta-cloud {
    right: 0;
  }
  #cookie-content {
    display: block;
  }
  a#privacy-agree {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    display: block;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 901px) {
  .is-m {
    display: none !important;
  }
  .margin-top-2 {
    margin-top: 2%;
  }
  .margin-top-3 {
    margin-top: 2%;
  }
  .margin-bottom-2 {
    margin-bottom: 2%;
  }
  .margin-bottom-3 {
    margin-bottom: 3%;
  }
}

@media screen and (max-width: 900px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #g-quick-nav {
    display: none;
  }
  #g-header {
    position: relative;
  }
  #g-header.active #g-quick-nav {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */