/* container */

#main-body {
  background-color: #333;
}

.container {
  width: 100%;
  max-width: 1190px;
  padding: 0 15px;
  margin: 0 auto;
}

/* header */

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #333;
  border-bottom: 1px solid #d9d9d9;
  z-index: 1000;
}

header .header-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 40px;
}

header .header-main .header-main-logo {
  flex: 1;
  min-width: 0;
}

header .header-main .header-main-logo h1 a img {
  width: 118px;
}

header .header-main .header-main-member {
  flex: 1;
  min-width: 0;
}

header .header-main .header-main-member ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

header .header-main .header-main-member ul li {
  margin-right: 8px;
}

header .header-main .header-main-member ul li:last-of-type {
  margin-right: 0;
}

header .header-main .header-main-member ul li a {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 0 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 38px;
}

header .header-main .header-main-member ul li.login a {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}

header .header-main .header-main-member ul li.start {
  margin-right: 0;
}

header .header-main .header-main-member ul li.start a {
  background: #6669ee;
  color: #fff;
}

header .header-main .header-main-member ul li.register {
  margin-right: 0;
}

header .header-main .header-main-member ul li.register a {
  background: #5e5eff;
  color: #fff;
}

header .header-main .header-main-member ul li.register a:hover {
  background: #9d9dff;
  color: #fff;
}

header .header-main .header-main-member ul li.menu {
  display: none;
}

header .header-main .header-main-cate .cate-head {
  display: none;
}

header .header-main .header-main-cate .cate-body ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

header .header-main .header-main-cate .cate-body ul li > a {
  font-size: 18px;
  font-weight: 600;
  color: white;
  height: 90px;
  padding: 0 30px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

header .header-main .header-main-cate .cate-body ul li > a span {
  right: 15px;
  top: 10px;
  height: 22px;
  border-radius: 6px;
  padding: 0 7px;
  background: rgba(102, 105, 238, 0.2);
  color: #6669ee;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

header .header-main .header-main-cate .cate-body ul li > a:hover {
  color: #6669ee;
}

header .header-main .header-main-cate .cate-body ul li > button {
  display: none;
}

header .header-main .header-main-cate .cate-body ul li > div {
  display: none;
  position: absolute;
  left: 0;
  top: 90px;
  width: 100%;
  background: #333;
  border-top: 1px solid #d9d9d9;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  align-items: center;
}

header .header-main .header-main-cate .cate-body ul li > div:before {
  display: block;
  content: "";
  flex: 1;
  min-width: 0;
  height: 1px;
}

header .header-main .header-main-cate .cate-body ul li > div:after {
  display: block;
  content: "";
  flex: 1;
  min-width: 0;
  height: 1px;
}

header .header-main .header-main-cate .cate-body ul li > div dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header .header-main .header-main-cate .cate-body ul li > div dl dd {
  margin-right: 40px;
}

header
  .header-main
  .header-main-cate
  .cate-body
  ul
  li
  > div
  dl
  dd:last-of-type {
  margin: 0;
}

header .header-main .header-main-cate .cate-body ul li > div dl dd a {
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  color: #ccc;
}

header .header-main .header-main-cate .cate-body ul li > div dl dd a:hover {
  color: white;
  font-weight: 500;
}

header .header-main .header-main-cate .cate-body ul li.active > a {
  color: #6669ee;
}

header .header-main .header-main-cate .cate-body ul li.active > a:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #6669ee;
  content: "";
}

header .header-main .header-main-cate .cate-body ul li.active > div {
  display: flex;
}

@media (max-width: 1400px) {
  header .header-main {
    padding: 0 20px;
  }
  header .header-main .header-main-logo h1 a img {
    width: 100px;
  }
  header .header-main .header-main-member ul li a {
    font-size: 13px;
    padding: 0 10px;
    height: 35px;
  }
  header .header-main .header-main-cate .cate-body ul li > a {
    font-size: 16px;
    padding: 0 15px;
  }
  header .header-main .header-main-cate .cate-body ul li > a span {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  header .header-main {
    padding: 10px 15px;
  }
  header .header-main .header-main-member ul li {
    display: none;
  }
  header .header-main .header-main-member ul li.menu {
    display: block;
  }
  header .header-main .header-main-member ul li.menu a {
    display: block;
    font-size: 0;
    width: 25px;
    height: 20px;
    position: relative;
    border: 2px solid #333;
    border-width: 2px 0;
    border-radius: 0;
  }
  header .header-main .header-main-member ul li.menu a:after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #333;
    content: "";
  }
  header .header-main .header-main-cate {
    pointer-events: none;
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    transition: all ease 0.5s;
  }
  header .header-main .header-main-cate .inner {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    right: -35px;
    top: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
  }
  header .header-main .header-main-cate .cate-head {
    display: block;
  }
  header .header-main .header-main-cate .cate-head .head-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 0;
  }
  header .header-main .header-main-cate .cate-head .head-top img {
    width: 100px;
  }
  header .header-main .header-main-cate .cate-head .head-top a {
    width: 27px;
    height: 27px;
    font-size: 0;
    position: relative;
  }
  header .header-main .header-main-cate .cate-head .head-top a:after {
    position: absolute;
    left: 0;
    top: 12px;
    width: 100%;
    height: 2px;
    background: #333;
    content: "";
    transform: rotate(45deg);
  }
  header .header-main .header-main-cate .cate-head .head-top a:before {
    position: absolute;
    left: 0;
    top: 12px;
    width: 100%;
    height: 2px;
    background: #333;
    content: "";
    transform: rotate(-45deg);
  }
  header .header-main .header-main-cate .cate-head .head-bottom {
    padding: 10px 15px;
    border-bottom: 1px solid #d9d9d9;
  }
  header .header-main .header-main-cate .cate-head .head-bottom ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
  header .header-main .header-main-cate .cate-head .head-bottom ul li {
    margin-right: 8px;
  }
  header
    .header-main
    .header-main-cate
    .cate-head
    .head-bottom
    ul
    li:last-of-type {
    margin-right: 0;
  }
  header .header-main .header-main-cate .cate-head .head-bottom ul li a {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 35px;
  }
  header .header-main .header-main-cate .cate-head .head-bottom ul li.login a {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.6);
  }
  header .header-main .header-main-cate .cate-head .head-bottom ul li.start {
    margin-right: 0;
  }
  header .header-main .header-main-cate .cate-head .head-bottom ul li.start a {
    background: #6669ee;
    color: #fff;
  }

 

  header .header-main .header-main-cate .cate-body ul {
    display: block;
    padding: 10px 0 0;
  }
  header .header-main .header-main-cate .cate-body ul li > a {
    font-size: 18px;
    height: 50px;
    padding: 0 15px;
    justify-content: space-between;
  }
  header .header-main .header-main-cate .cate-body ul li > a.more {
    display: none;
  }
  header .header-main .header-main-cate .cate-body ul li > a span {
    position: static;
  }
  header .header-main .header-main-cate .cate-body ul li > button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    color: #111;
  }
  header .header-main .header-main-cate .cate-body ul li > button:after {
    display: inline-block;
    content: "";
    width: 24px;
    height: 24px;
    background: url("../images/icon_select.svg") no-repeat center / cover;
  }
  header .header-main .header-main-cate .cate-body ul li > div {
    position: static;
    border: 0;
    box-shadow: none;
  }
  header .header-main .header-main-cate .cate-body ul li > div:before {
    display: none;
  }
  header .header-main .header-main-cate .cate-body ul li > div:after {
    display: none;
  }
  header .header-main .header-main-cate .cate-body ul li > div dl {
    display: block;
  }
  header .header-main .header-main-cate .cate-body ul li > div dl dd a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 30px;
    font-size: 14px;
    padding: 0 20px;
  }
  header .header-main .header-main-cate .cate-body ul li > div dl dd a:before {
    display: inline-block;
    content: "";
    width: 5px;
    height: 1px;
    background: #111;
    margin: 0 5px;
  }
  header.fixed .header-main .header-main-cate {
    pointer-events: inherit;
    opacity: 1;
  }
  header.fixed .header-main .header-main-cate .inner {
    pointer-events: inherit;
    opacity: 1;
    right: 0;
  }
}

/* footer */
.container-footer {
  width: 85%;
  padding: 0 15px;
  margin: 0 auto;
  float: right;
}


footer .footer-top {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
}

footer .footer-top .footer-top-left {
  width: 190px;
  margin-right: 30px;
}

footer .footer-top .footer-top-left h2 {
  margin: 0 0 20px;
}

footer .footer-top .footer-top-left h2 img {
  width: 118px;
}

footer .footer-top .footer-top-left div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 36px;
  border-radius: 8px;
  background: #fff(0, 0, 0, 0.05);
  width: 115px;
}

footer .footer-top .footer-top-left div select {
  padding: 0 35px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  background: none;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 36px;
  flex: 1;
  min-width: 0;
}

footer .footer-top .footer-top-left div:before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
  background: url("../images/icon_lang.png") no-repeat center / cover;
}

footer .footer-top .footer-top-left div:after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
  background: url("../images/icon_lang_more.png") no-repeat center / cover;
}

footer .footer-top .footer-top-right {
  flex: 1;
  min-width: 0;
}

footer .footer-top .footer-top-right ul {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-top .footer-top-right ul li {
  flex: 1;
  min-width: 0;
}

footer .footer-top .footer-top-right ul li dl {
  margin: 0 0 20px;
}

footer .footer-top .footer-top-right ul li dl:last-of-type {
  margin: 0;
}

footer .footer-top .footer-top-right ul li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer .footer-top .footer-top-right ul li dl dt a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  height: 35px;
}

footer .footer-top .footer-top-right ul li dl dt a:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 5px;
  background: url("../images/icon_footer_top_more.png") no-repeat center / cover;
  position: relative;
  top: -2px;
}

footer .footer-top .footer-top-right ul li dl dd a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 35px;
  font-size: 16px;
  color: #b3b3b3;
}
footer .footer-top .footer-top-right ul li dl dd a:hover {

  color: #f0f0f0;
}

footer .footer-top .footer-top-right ul li dl dd a span {
  margin-left: 5px;
  height: 22px;
  border-radius: 5px;
  background: #cef4c8;
  color: #00bb35;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

footer .footer-bottom {
  border-top: 1px solid #d9d9d9;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-bottom .footer-bottom-left{
  display: flex;
  justify-content: space-around;
}
footer .footer-bottom .footer-bottom-left p {
  font-size: 16px;
  color: #fff;
  margin: 0 0 10px;
}

footer .footer-bottom .footer-bottom-left ul li {
  font-size: 15px;
  color: #fff;
  margin: 0 0 10px;
}

footer .footer-bottom .footer-bottom-left ul li:last-of-type {
  margin: 0;
}

footer .footer-bottom .footer-bottom-right ul {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-bottom .footer-bottom-right ul li {
  margin-right: 8px;
}

footer .footer-bottom .footer-bottom-right ul li:last-of-type {
  margin: 0;
}

footer .footer-bottom .footer-bottom-right ul li a {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  background-size: cover;
  background-position: center;
}

footer .footer-bottom .footer-bottom-right ul li.sns01 a {
  background-image: url("../images/icon_footer_sns_01.png");
}

footer .footer-bottom .footer-bottom-right ul li.sns02 a {
  background-image: url("../images/icon_footer_sns_02.png");
}

footer .footer-bottom .footer-bottom-right ul li.sns03 a {
  background-image: url("../images/icon_footer_sns_03.png");
}

@media (max-width: 991px) {
  footer .footer-top {
    padding: 30px 0;
  }
  footer .footer-top .footer-top-left {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  footer .footer-top .footer-top-left h2 {
    margin: 0;
  }
  footer .footer-top .footer-top-left h2 img {
    width: 100px;
  }
  footer .footer-top .footer-top-right {
    flex: none;
    width: 100%;
    margin: 30px 0 0;
  }
  footer .footer-top .footer-top-right ul li {
    display: flex;
    flex-wrap: wrap;
    flex: none;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #d9d9d9;
  }
  footer .footer-top .footer-top-right ul li:last-of-type {
    margin: 0;
    padding: 0;
    border: 0;
  }
  footer .footer-top .footer-top-right ul li dl {
    flex: 1;
    min-width: 0;
    margin: 0;
  }
  footer .footer-top .footer-top-right ul li dl dt {
    font-size: 14px;
    height: 30px;
  }
  footer .footer-top .footer-top-right ul li dl dt a {
    font-size: 14px;
    height: 30px;
  }
  footer .footer-top .footer-top-right ul li dl dd a {
    height: 30px;
    font-size: 14px;
  }
  footer .footer-top .footer-top-right ul li dl dd a span {
    height: 20px;
    font-size: 11px;
  }
  footer .footer-bottom .footer-bottom-left p {
    font-size: 14px;
  }
  footer .footer-bottom .footer-bottom-left ul li {
    font-size: 13px;
  }
  footer .footer-bottom .footer-bottom-right ul li {
    margin-right: 5px;
  }
  footer .footer-bottom .footer-bottom-right ul li a {
    width: 35px;
    height: 35px;
  }
}

/* price-list-box */

.price-list-box b strong {
  letter-spacing: -1px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.price-list-box ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -24px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.price-list-box ul li {
  width: calc(33.33% - 24px);
  margin: 0 12px 24px;
  padding: 20px;
  background: #e6e6e6;
  border-radius: 12px;
}

.price-list-box ul li input {
  width: 50px;
  border: 1px solid black;
  border-radius: 5px;
}

.price-list-box ul li .list-head {
  margin: 0 0 20px;
}

.price-list-box ul li .list-head em {
  display: block;
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #878e98;
}

.price-list-box ul li .list-head b {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.price-list-box ul li .list-head b strong {
  letter-spacing: -1px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.price-list-box ul li .list-body {
  height: 180px;
}

.price-list-box ul li .list-body strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #5b3ffd;
  margin: 0 0 12px;
}

.price-list-box ul li .list-body dl dd {
  margin: 0 0 5px;
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #403750;
}

.price-list-box ul li .list-body dl dd:last-of-type {
  margin: 0;
}

.price-list-box ul li .list-body dl dd:before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: url("../images/icon_list_check.png") no-repeat center / cover;
  content: "";
}

.price-list-box ul li .list-foot {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.price-list-box ul li .list-foot a {
  background: #9d9d9d;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 7px;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.price-list-box ul li .list-foot a:hover {
  background: #6669ee;
}

.price-list-box ul li .list-foot a.active {
  background: #6669ee;
}

@media (max-width: 991px) {
  .price-list-box ul li {
    width: calc(50% - 24px);
  }
}

@media (max-width: 767px) {
  .price-list-box ul {
    margin: 0;
  }
  .price-list-box ul li {
    width: 100%;
    margin: 0 0 15px;
  }
  .price-list-box ul li .list-head b strong {
    font-size: 25px;
  }
  .price-list-box ul li .list-body strong {
    font-size: 14px;
  }
  .price-list-box ul li .list-body dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px -5px;
  }
  .price-list-box ul li .list-body dl dd {
    margin: 0 5px 5px;
    font-size: 12px;
    padding-left: 15px;
  }
  .price-list-box ul li .list-body dl dd:last-of-type {
    margin: 0 5px 5px;
  }
  .price-list-box ul li .list-body dl dd:before {
    width: 12px;
    height: 12px;
  }
  .price-list-box ul li .list-foot a {
    height: 45px;
    font-size: 14px;
  }
}
