@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");
header {
  padding: 0;
  background-color: #112B3C;
  width: 100%;
  z-index: 9999;
}
header #header {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  header #header {
    height: 80px;
  }
}
header #header h1 {
  width: 30%;
  margin: 0;
  padding: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  header #header h1 {
    width: 15%;
  }
}
header #header h1 img {
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  header #header h1 img {
    width: 80%;
  }
}
header #header .language_box {
  width: 10%;
  text-align: left;
  color: #fff;
}
header #header .language_box a {
  color: #fff;
}
header #header .language_box a:hover, header #header .language_box a:active, header #header .language_box a:focus {
  color: #FF5C5C;
}
header #header .language_box .bogo-language-switcher {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header #header .language_box .bogo-language-switcher .ja {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
header #header .language_box .bogo-language-switcher .ja::after {
  content: "/";
  padding-left: 5px;
  padding-right: 5px;
}
header #header .language_box .bogo-language-switcher .en {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
header #header .language_box .bogo-language-switcher .en::after {
  content: "/";
  padding-left: 5px;
  padding-right: 5px;
}
header #header .language_box .bogo-language-switcher .zh {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
header #header .head_nav_box {
  width: 75%;
}
header #header .head_nav_box #head_nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
header #header .head_nav_box #head_nav.is-animation li {
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header #header .head_nav_box #head_nav.is-animation hr {
  margin: 1px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header #header .head_nav_box #head_nav.is-animation p {
  margin: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header #header .head_nav_box #head_nav.is-animation a::after {
  bottom: 40%;
}
@media screen and (min-width: 768px) {
  header #header .head_nav_box #head_nav {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  header #header .head_nav_box #head_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header #header .head_nav_box #head_nav li {
  margin: 0 10px;
  padding: 2px 0 0;
  font-family: "Oswald";
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}
header #header .head_nav_box #head_nav li p {
  margin: 2px 0;
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}
header #header .head_nav_box #head_nav li p.is-animation {
  margin: 0;
}
header #header .head_nav_box #head_nav li hr {
  margin: 0;
  height: 1px;
  background-color: #fff;
  border: none;
  color: #fff;
}
header #header .head_nav_box #head_nav li a {
  position: relative;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
header #header .head_nav_box #head_nav li a:hover, header #header .head_nav_box #head_nav li a:active, header #header .head_nav_box #head_nav li a:focus {
  color: #FF5C5C;
}
header #header .head_nav_box #head_nav li a::after {
  position: absolute;
  bottom: 40%;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #F66B0E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
header #header .head_nav_box #head_nav li a:hover::after {
  width: 100%;
}