.side-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  transition: 0.2s all ease-in-out;
  z-index: 98;
}
.side-menu-background.active {
  visibility: visible;
}

#side-menu-section {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
}
#side-menu-section .container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  background: #fff;
}
#side-menu-section .container .top {
  width: 100%;
  height: 6rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
#side-menu-section .container .top > a {
  display: block;
  width: auto;
  height: 100%;
}
#side-menu-section .container .top > a > img {
  width: auto;
  height: 100%;
}
#side-menu-section .container .top .close-btn {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  box-shadow: 0 0 4px -1px rgba(100, 100, 100, 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
}
#side-menu-section .container .top .close-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 3px;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
#side-menu-section .container .top .close-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 3px;
  background: #000;
  transform: translate(-50%, -50%) rotate(-45deg);
}
#side-menu-section .container #m-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#side-menu-section .container #m-nav > a {
  width: 100%;
  height: auto;
  padding: 1.6rem 1rem;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
}

#header {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #fff;
  box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.3);
}
#header .container {
  position: relative;
  width: 100%;
  height: 8rem;
  padding: 0 5rem;
  max-width: 1520px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5rem;
  background: #7A1616;
}
#header .container::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0.5rem;
  height: 100%;
  background: #B21010;
}
#header .container .h-title > a {
  display: block;
}
#header .container .h-title > a > img {
  width: auto;
  height: 100%;
  max-height: 6rem;
}
#header .container #h-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 9rem;
}
#header .container #h-nav > a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #000;
}
#header .container #h-nav > a:hover {
  color: #7A1616;
}
#header .container .h-menu {
  position: relative;
  width: 2.8rem;
  height: 2rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}
#header .container .h-menu .menu-bar {
  width: 100%;
  height: 0.2rem;
  background: #A1A1A1;
}
#header .container .h-menu .menu-bar:nth-child(2) {
  width: 80%;
}

@media (max-width: 1024px) {
  #header .container {
    height: 7rem;
  }
  #header .container .h-title {
    position: relative;
    height: 80%;
  }
  #header .container .h-title > a {
    height: 100%;
  }
  #header .container #h-nav {
    display: none;
  }
  #header .container .h-menu {
    display: flex;
  }
}
@media (max-width: 768px) {
  #header .container {
    height: 6rem;
  }
  #header .container::before {
    height: 0.3rem;
  }
  #header .container::after {
    width: 0.3rem;
  }
  #header .container .h-title {
    height: 70%;
  }
}
#footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #000;
}
#footer .container {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1520px;
  display: flex;
  flex-direction: column;
  grid-gap: 3.5rem;
}
#footer .container .top {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  grid-gap: 1rem;
}
#footer .container .top .f-logo > a {
  display: block;
}
#footer .container .top .f-logo > a > img {
  width: auto;
  height: 100%;
  max-height: 6rem;
}
#footer .container .top #f-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 3.6rem;
}
#footer .container .top #f-nav > a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
#footer .container .top #f-nav .f-nav-devide {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #f0f0f0;
}
#footer .container .top .social-list {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 1.4rem;
}
#footer .container .top .social-list > a {
  display: block;
}
#footer .container .bot {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 2.5rem;
}
#footer .container .bot .f-info-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 0.8rem;
}
#footer .container .bot .f-info-list .f-info-item {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #A1A1A1;
}
#footer .container .bot .copyright {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #707070;
  text-align: center;
}

@media (max-width: 1520px) {
  #footer .container {
    padding: 0 1.6rem;
  }
}
@media (max-width: 1024px) {
  #footer .container .top .f-logo > a > img {
    max-height: 5rem;
  }
  #footer .container .top #f-nav {
    grid-gap: 2.4rem;
  }
}
@media (max-width: 768px) {
  #footer .container .top {
    flex-direction: column;
    grid-gap: 3rem;
  }
}
@media (max-width: 640px) {
  #footer .container .top #f-nav {
    grid-gap: 1.4rem;
  }
}
@media (max-width: 480px) {
  #footer .container .top {
    grid-gap: 2rem;
  }
  #footer .container .top .f-logo > a > img {
    max-height: 4rem;
  }
  #footer .container .top #f-nav {
    grid-gap: 1rem;
  }
  #footer .container .top #f-nav > a {
    font-size: 1.4rem;
  }
  #footer .container .bot {
    grid-gap: 2rem;
  }
  #footer .container .bot .copyright {
    font-size: 1.28rem;
    line-height: 1.4;
  }
}/*# sourceMappingURL=common.css.map */