.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
}
.header .logoArea {
  align-items: center;
  justify-content: flex-start;
  padding-left: 40px;
  box-sizing: border-box;
}
.header .logoName {
  display: inline-block;
  width: 80px;
  height: 40px;
  background: center/contain url(../img/logo_blog.svg) no-repeat;
  line-height: 3.6;
  outline: none;
  transition: all 0.3s;
}
.header .h-menu-cta {
  position: absolute;
  top: 10px;
  right: 15px;
}
.header .siteLink {
  padding: 20px 0;
}
.header .siteLink:hover {
  color: #3366FF;
}

.h-height {
  height: 60px;
}

.logoArea {
  width: 100%;
  height: 60px;
}

.catNav, .h-menu {
  display: none;
}

#togMenuBtn[type=checkbox] {
  display: none;
}
#togMenuBtn[type=checkbox]:checked {
  z-index: 100;
}
#togMenuBtn[type=checkbox]:checked ~ .h-menu-btn {
  background-image: url(../img/icon/close_sec.svg);
}
#togMenuBtn[type=checkbox]:checked ~ .h-menu-panel {
  width: 100%;
  left: 0;
}

#togNavBtn[type=checkbox] {
  display: none;
  position: relative;
}
#togNavBtn[type=checkbox]:checked ~ .c-nav-drop {
  display: flex;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 90;
}
#togNavBtn[type=checkbox]:checked ~ .c-nav-btn::after {
  transform: rotateX(180deg);
}

.h-menu-m {
  overflow: hidden;
}

.h-menu-btn {
  position: absolute;
  top: 16px;
  left: 15px;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon/menu.svg) center no-repeat;
  z-index: 100;
}

.h-menu-panel {
  position: fixed;
  top: 60px;
  left: -100px;
  padding: 20px 15px 10px 15px;
  width: 0%;
  height: calc(100vh - 60px);
  background-color: #ffffff;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}
.h-menu-panel a {
  display: block;
}

.h-menu-panel-list {
  padding-top: 20px;
  text-align: center;
}

.sl-tag {
  display: block;
  color: #BBBFC8;
  font-weight: 500;
}

.catNav, .catNav-m {
  position: relative;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #F9FAFA;
}
.catNav .container, .catNav-m .container {
  width: 100%;
}

.catNav-m, .h-menu-m {
  display: flex;
}

.c-nav-drop {
  display: none;
  padding: 20px 0;
  box-shadow: 0 -1px 0 #F9FAFA, 0 3px 8px #BBBFC8;
  background-color: #F9FAFA;
}

.catNavList {
  margin: 0 auto;
  width: calc(100% - 30px);
  flex-wrap: wrap;
  display: none;
}
.catNavList li {
  margin-right: 16px;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 5px;
  border: solid 1px #BBBFC8;
  background-color: #ffffff;
}
.catNavList li.on {
  background-color: #3366FF;
}

.c-nav-btn {
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 50%;
  padding: 5px 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 5px;
}
.c-nav-btn::after {
  content: "";
  top: 5px;
  right: 15px;
  width: 24px;
  height: 24px;
  position: absolute;
  background: url("/img/icon/expand.svg") center no-repeat;
  background-size: 50%;
  transition: all 0.2s ease-in-out;
  opacity: 0.6;
}

.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.footer {
  padding: 40px 0;
  width: 100%;
  height: 360px;
  background-color: #F9FAFA;
  box-sizing: border-box;
}
.footer .container {
  display: flex;
  justify-content: space-around;
}

.siteMap.addcnServ {
  display: none;
}
.siteMap h3 {
  color: #848B9A;
}

.mapList {
  margin-top: 20px;
  margin-right: 32px;
}
.mapList p {
  margin-bottom: 10px;
}
.mapList a {
  color: #848B9A;
}

.copyright {
  margin-top: 30px;
  color: #BBBFC8;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .siteMap.addcnServ {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .header .logoArea {
    padding-left: 0;
    justify-content: space-between;
  }
  .header .h-menu-cta {
    position: initial;
  }
  .header .h-menu {
    margin-right: 20px;
  }
  .header .logoName {
    width: 90px;
  }
  .header .siteLink {
    padding: 0 8px;
    box-shadow: 1px 0 0 #BBBFC8;
  }
  .header .siteLink:last-child {
    box-shadow: none;
  }

  .catNavList {
    display: flex;
    width: auto;
    justify-content: space-around;
  }
  .catNavList li {
    background-color: transparent;
    margin: 0;
    border: none;
  }

  .catNav, .h-menu {
    display: flex;
  }

  .catNav-m, .h-menu-m {
    display: none;
  }
}