/*************************
 general
**************************/
body.hidden {
  overflow: hidden;
}
.mesh {
  background: rgb(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
.mesh.active {
  display: block;
}
/*************************
 header
**************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.2s all;
}
header.scroll {
  background: rgb(255, 255, 255, 0.7);
  border-bottom: 1px solid #eee;
  transition: 0.2s all;
}
header .flex {
  display: flex;
  justify-content: space-between;
  height: 100%;
  height: 80px;
}
header .flex .logo {
  width: 200px;
  align-content: center;
}
header .flex .logo img {
  width: 200px;
}
header .flex .pc_nav {
  width: calc(100% - 200px);
  width: -webkit-calc(100% - 200px);
}
header .flex .pc_nav nav {
  height: 100%;
}
header .flex .pc_nav ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  margin-bottom: 0;
  padding: 0;
  height: 100%;
  align-items: center;
}
header .flex .pc_nav ul li:not(:last-child) {
  align-content: center;
  height: 100%;
  margin-right: 30px;
  font-size: 14px;
}
header .flex .pc_nav ul li:not(:last-child) a {
  color: #fff;
  text-decoration: none;
}
header.scroll .flex .pc_nav ul li:not(:last-child) a {
  color: #000;
  text-decoration: none;
}
header .flex .pc_nav ul li:last-child {
  background: #3976aa;
  align-content: center;
  height: 100%;
  width: 140px;
  text-align: center;
  font-size: 14px;
}
header .flex .pc_nav ul li:last-child a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  header .flex .pc_nav {
    display: none;
  }
}
/******************************
 fixed_nav
*******************************/
.fixed_nav {
  position: fixed;
  width: 500px;
  height: 100vh;
  right: -9999px;
  top: 0;
  z-index: 110;
  transition: 0.2s all;
  background: #3976aa;
  overflow: auto;
}
.fixed_nav.active {
  right: 0;
  transition: 0.2s all;
}
.fixed_nav nav {
  padding-top: 70px;
}
.fixed_nav nav > ul {
  list-style: none;
  padding-left: 30px;
  padding-right: 30px;
}
.fixed_nav nav > ul > li {
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.fixed_nav nav > ul > li > a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 14px;
}
.fixed_nav nav .sub_nav {
  margin-top: 15px;
}
.fixed_nav nav .sub_nav li {
  margin-bottom: 15px;
}
.fixed_nav nav .sub_nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
@media (max-width: 540px) {
  .fixed_nav {
    width: 100%;
  }
}
/****************************
 bugger_btn
*****************************/
.bugger_btn {
  position: fixed;
  right: 30px;
  top: 35px;
  width: 40px;
  height: 10px;
  z-index: 111;
  display: none;
}
.bugger_btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  transition: 0.2s all;
}
.bugger_btn span.active {
  transition: 0.2s all;
}
.bugger_btn span:nth-of-type(1) {
  transform: translate(0, 0);
}
.bugger_btn span:nth-of-type(2) {
  transform: translate(0, 5px);
}
.bugger_btn span:nth-of-type(3) {
  transform: translate(0, 10px);
}
.bugger_btn.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(4px, 3px);
  background: #fff;
}
.bugger_btn.active span:nth-of-type(2) {
  transform: translate(20px, 5px);
  opacity: 0;
}
.bugger_btn.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(-1px, 3px);
  background: #fff;
}
@media (max-width: 991px) {
  .bugger_btn {
    display: block;
  }
}
/**************************
 footer
**************************/
footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #c4ddf2;
}
footer h2 img {
  max-width: 200px;
}
footer .footer_addr .footer_addr_cnt {
  margin-bottom: 30px;
}
footer .footer_addr_cnt p:nth-of-type(1) {
  margin-bottom: 10px;
  font-weight: bold;
  border-left: 5px solid #000;
  padding-left: 15px;
  font-size: 14px;
}
footer .footer_addr_cnt p:nth-of-type(2) {
  margin-bottom: 0;
  font-size: 14px;
}
footer .copyright {
  margin-top: 15px;
  font-size: 12px;
}
/*************************
 breadcrumb
*************************/
.breadcrumb-bg {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #084298;
}
.breadcrumb {
  margin-bottom: 0;
  font-size: 14px;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.breadcrumb span {
  color: #fff;
}
