.inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.inner--flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 1023px) {
  .inner--flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 1440px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 800px) {
  .inner {
    padding: 0 3.33333vw;
  }
}

.cart-count {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0.1rem;
  right: -5px;
  background: #00915C;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
}

.header {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .header {
    border-bottom: 1px solid #eee;
  }
}
.header .utile {
  position: relative;
  background-color: #111;
}
.header .utile .inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 3.4rem;
}
.header .utile .header-top-text {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.4rem;
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
}
.header .utile__list {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .header .utile__list {
    display: none;
  }
}
.header .utile__item {
  position: relative;
}
.header .utile__item:last-child {
  padding-right: 0;
}
.header .utile__item:last-child::after {
  display: none;
}
.header .utile__item + .utile__item {
  margin-left: 2rem;
}
.header .utile__link {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.header .utile__link i {
  display: inline-block;
  vertical-align: -1px;
  margin-right: 2px;
  font-size: 1.4rem;
}
.header .utile .badge {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 7px;
  border-radius: 22px;
  color: #fff;
  vertical-align: 2px;
  font-size: 9px;
  background-color: #00915C;
}
.header .logo {
  display: block;
  position: relative;
  width: 20.8rem;
}
@media screen and (max-width: 1024px) {
  .header .logo {
    width: 15rem;
  }
}
.header .logo__link {
  display: block;
  width: 100%;
}
.header .logo img {
  width: 100%;
}
.header__top {
  position: relative;
  padding: 3rem 0 4rem;
}
@media screen and (max-width: 1024px) {
  .header__top {
    padding: 0;
  }
}
.header__top .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .header__top .inner {
    height: 60px;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .header__btnbox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
  }
}
.header .btn-search {
  display: none;
  position: relative;
  /*width:4rem;
  height:4rem;
  background-image: url(../imgs/ico/ico_top_search.svg);
  background-size:100% auto;
  background-repeat: no-repeat;
  background-position:50% 50%;*/
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .header .btn-search {
    display: inline-block;
    margin-left: auto;
  }
}
.header .btn-cart {
  display: none;
  position: relative;
  /*width:4rem;
  height:4rem;
  background-image: url(../imgs/ico/ico_rect_cart.svg);
  background-size:100% auto;
  background-repeat: no-repeat;
  background-position:50% 50%;*/
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .header .btn-cart {
    display: inline-block;
    margin-left: 3vw;
  }
}
.header .btn-back {
  position: relative;
  display: none;
}
.header .btn-home {
  position: relative;
  display: none;
  margin-left: 3vw;
}
@media screen and (max-width: 1024px) {
  .header--no-logo .header__btn-box {
    justify-content: start;
  }
  .header--no-logo .btn-back,
  .header--no-logo .btn-home {
    display: inline-block;
  }
  .header--no-logo .logo {
    display: none;
  }
  .header--no-logo .header__btnbox {
    width: 100%;
  }
  .header--no-logo .inner {
    justify-content: start;
  }
}
.header__search {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1440px) {
  .header__search {
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__search {
    display: none;
  }
}
.header__search__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  width: 25.7rem;
  height: 4.7rem;
  padding: 0 0 0 1rem;
  border-bottom: 2px solid #000;
}
.header__search .input {
  display: block;
  position: relative;
  width: calc(100% - 3.2rem);
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  color: #999999;
  font-weight: 600;
  background-color: transparent;
}
.header__search .btn-search {
  display: block;
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../imgs/ico/ico_top_search.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.header__search-word {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 0.9rem;
  padding-left: 1.2rem;
}
.header__search-word a {
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
  color: #888;
}
.header__search-word a + a {
  margin-left: 1rem;
}
.header .gnb-ca {
  position: relative;
  margin-left: 3.8rem;
}
@media screen and (max-width: 1024px) {
  .header .gnb-ca {
    display: none;
  }
}
.header .gnb-ca__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.header .gnb-ca__item {
  position: relative;
  padding: 0 1rem;
}
.header .gnb-ca__item:first-child {
  padding-left: 0;
}
.header .gnb-ca__item:last-child {
  padding-right: 0;
}
.header .gnb-ca__item:last-child::after {
  display: none;
}
.header .gnb-ca__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 1.2rem;
  background-color: #9b9b9b;
}
.header .gnb-ca__link {
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  color: #9B9C9A;
}
.header .gnb-ca__link--active, .header .gnb-ca__link:hover {
  color: #00985b;
}
.header .gnb {
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .header .gnb {
    display: none;
  }
}
.header .gnb.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header .gnb .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.header .gnb .btn-all {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}
.header .gnb .btn-all span {
  display: block;
  position: relative;
  padding-left: 2.1rem;
  font-weight: 900;
  font-size: 1.6rem;
  color: #1d1d1b;
  line-height: 1;
}
.header .gnb .btn-all span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  background-image: url(../imgs/ico/ico_ca_menu.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
}
.header .gnb .btn-all--active span::before {
  background-image: url(../imgs/ico/ico_ca_menu_cloes.svg);
}
.header .gnb__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 3.68rem;
}
.header .gnb__list--right {
  padding-left: 0;
  margin-left: auto;
}
.header .gnb__list--right .gnb__item + .gnb__item {
  margin-left: 1.5rem;
}
@media screen and (max-width: 1440px) {
  .header .gnb__list--right .gnb__item + .gnb__item {
    margin-left: 1.3rem;
  }
}
.header .gnb__item {
  position: relative;
}
.header .gnb__item--active .gnb__link {
  color: #00985B;
}
.header .gnb__item:hover .submenu {
  display: block;
}
.header .gnb__item + .gnb__item {
  margin-left: 2.6rem;
}
@media screen and (max-width: 1151px) {
  .header .gnb__item + .gnb__item {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 1061px) {
  .header .gnb__item + .gnb__item {
    margin-left: 1.4rem;
  }
}
.header .gnb__link {
  display: inline-block;
  position: relative;
  font-weight: 900;
  font-size: 1.6rem;
  color: #1d1d1b;
  line-height: 1;
}
.header .gnb__link:hover {
  color: #00985B;
}
.header .gnb__link .dot {
  display: block;
  position: absolute;
  top: 0.3rem;
  right: -0.25rem;
  width: 4px;
  height: 4px;
  background-color: #ff5050;
  border-radius: 100%;
}
.header .gnb .submenu {
  display: none;
  position: absolute;
  top: 2.05rem;
  left: -0.5rem;
  width: 6.2rem;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-top: 1px solid #fff;
  padding: 0.5rem 0;
  z-index: 3;
}
.header .gnb .submenu__item {
  position: relative;
}
.header .gnb .submenu__link {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 0.7rem;
  color: #000;
}
.header .gnb .submenu__link:hover {
  color: #FF5050;
}

.box-category {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 161px;
  height: 390px;
  background-color: #000;
}
.box-category--show {
  display: block;
}
@media screen and (max-width: 1023px) {
  .box-category--show {
    display: none;
  }
}

.box-category-layer {
  display: none;
  position: absolute;
  top: 3.5rem;
  left: 0;
  width: 100%;
  z-index: 999;
}
.box-category-layer--active {
  display: block;
}

.list__category {
  position: relative;
  z-index: 100;
}
.list-item__1depth:last-child .list-item__1depth-link::after {
  display: none;
}
.list-item__1depth--active .box-category__2depth {
  display: block;
}
.list-item__1depth--active .list-item__1depth-link {
  background-color: #fff;
  color: #111;
}
.list-item__1depth--active .list-item__1depth-link span::before {
  background-color: #111;
}
.list-item__1depth-link {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: 16.1rem;
  height: 5.5rem;
  font-size: 1.6rem;
  padding-left: 1rem;
  color: #fff;
  background-color: #111;
}
.list-item__1depth-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.list-item__1depth-link span {
  display: inline-block;
  position: relative;
  padding-left: 1.6rem;
}
.list-item__1depth-link span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 7px;
  height: 1px;
  background-color: #fff;
}
.list-item__1depth-link:hover {
  background-color: #fff;
  color: #111;
}
.list-item__1depth-link:hover span::before {
  background-color: #111;
}
.list__2depth {
  padding: 5px 0 0 3.5rem;
}
.list-item__2depth-link {
  font-size: 1.6rem;
  line-height: 2.9rem;
  letter-spacing: -1px;
  color: #777;
}

.box-category__2depth {
  display: none;
  position: absolute;
  left: 16.1rem;
  top: 0;
  width: calc(1440px - 16.1rem);
  background-color: #fff;
  box-sizing: border-box;
  padding-bottom: 2rem;
}
.box-category__2depth-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
}

.box-2depth-list {
  width: 19.2rem;
  height: 100%;
}
.box-2depth-list + .box-2depth-list {
  border-left: 0;
}

.text-emphasis {
  display: block;
  padding: 2.2rem 0 0 3.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #222;
  letter-spacing: -1px;
}

.category__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.category__item {
  position: relative;
  width: 24rem;
  height: 571px;
  background-color: #fff;
}
.category__item__head {
  padding: 2.2rem 2rem 0;
}
.category__item__title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: #000000;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f2f2f2;
}
.category__item__body {
  margin-top: 8px;
}
.category__1dept .icon {
  position: relative;
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
}
.category__1dept .icon--safety-1 {
  background-image: url(../imgs/category/safety_ca_icon1.svg);
}
.category__1dept .icon--safety-2 {
  background-image: url(../imgs/category/safety_ca_icon2.svg);
}
.category__1dept .icon--safety-3 {
  background-image: url(../imgs/category/safety_ca_icon3.svg);
}
.category__1dept .icon--safety-4 {
  background-image: url(../imgs/category/safety_ca_icon4.svg);
}
.category__1dept .icon--safety-5 {
  background-image: url(../imgs/category/safety_ca_icon5.svg);
}
.category__1dept .icon--safety-6 {
  background-image: url(../imgs/category/safety_ca_icon6.svg);
}
.category__1dept .icon--safety-7 {
  background-image: url(../imgs/category/safety_ca_icon7.svg);
}
.category__1dept .icon--safety-8 {
  background-image: url(../imgs/category/safety_ca_icon8.svg);
}
.category__1dept .icon--safety-9 {
  background-image: url(../imgs/category/safety_ca_icon9.svg);
}
.category__1dept .icon--safety-10 {
  background-image: url(../imgs/category/safety_ca_icon10.svg);
}
.category__1dept .icon--safety-11 {
  background-image: url(../imgs/category/safety_ca_icon11.svg);
}
.category__1dept .icon--safety-12 {
  background-image: url(../imgs/category/safety_ca_icon12.svg);
}
.category__1dept .icon--safety-13 {
  background-image: url(../imgs/category/safety_ca_icon13.svg);
}
.category__1dept .icon--service-1 {
  background-image: url(../imgs/category/service_ca_icon1.svg);
}
.category__1dept .icon--service-2 {
  background-image: url(../imgs/category/service_ca_icon2.svg);
}
.category__1dept .icon--service-3 {
  background-image: url(../imgs/category/service_ca_icon3.svg);
}
.category__1dept .icon--service-4 {
  background-image: url(../imgs/category/service_ca_icon4.svg);
}
.category__1dept .icon--service-5 {
  background-image: url(../imgs/category/service_ca_icon5.svg);
}
.category__1dept .icon--service-6 {
  background-image: url(../imgs/category/service_ca_icon6.svg);
}
.category__1dept .icon--service-7 {
  background-image: url(../imgs/category/service_ca_icon7.svg);
}
.category__1dept .icon--service-8 {
  background-image: url(../imgs/category/service_ca_icon8.svg);
}
.category__1dept .icon--target-1 {
  background-image: url(../imgs/category/target_ca_icon1.svg);
}
.category__1dept .icon--target-2 {
  background-image: url(../imgs/category/target_ca_icon2.svg);
}
.category__1dept .icon--target-3 {
  background-image: url(../imgs/category/target_ca_icon3.svg);
}
.category__1dept .icon--target-4 {
  background-image: url(../imgs/category/target_ca_icon4.svg);
}
.category__1dept .icon--target-5 {
  background-image: url(../imgs/category/target_ca_icon5.svg);
}
.category__1dept .icon--target-6 {
  background-image: url(../imgs/category/target_ca_icon6.svg);
}
.category__1dept .icon--target-7 {
  background-image: url(../imgs/category/target_ca_icon7.svg);
}
.category__1dept .icon--target-8 {
  background-image: url(../imgs/category/target_ca_icon8.svg);
}
.category__1dept .icon--target-9 {
  background-image: url(../imgs/category/target_ca_icon9.svg);
}
.category__1dept .icon--target-10 {
  background-image: url(../imgs/category/target_ca_icon10.svg);
}
.category__1dept__item .category__1dept__link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0 2rem;
  font-size: 1.4rem;
  color: #000000;
  font-weight: 500;
  align-items: center;
}
.category__1dept__item--active .category__1dept__link, .category__1dept__item:hover .category__1dept__link {
  background-color: #f2f2f2;
  color: #05A05C;
}
.category__1dept__item--active .icon--safety-1, .category__1dept__item:hover .icon--safety-1 {
  background-image: url(../imgs/category/safety_ca_icon1_on.svg);
}
.category__1dept__item--active .icon--safety-2, .category__1dept__item:hover .icon--safety-2 {
  background-image: url(../imgs/category/safety_ca_icon2_on.svg);
}
.category__1dept__item--active .icon--safety-3, .category__1dept__item:hover .icon--safety-3 {
  background-image: url(../imgs/category/safety_ca_icon3_on.svg);
}
.category__1dept__item--active .icon--safety-4, .category__1dept__item:hover .icon--safety-4 {
  background-image: url(../imgs/category/safety_ca_icon4_on.svg);
}
.category__1dept__item--active .icon--safety-5, .category__1dept__item:hover .icon--safety-5 {
  background-image: url(../imgs/category/safety_ca_icon5_on.svg);
}
.category__1dept__item--active .icon--safety-6, .category__1dept__item:hover .icon--safety-6 {
  background-image: url(../imgs/category/safety_ca_icon6_on.svg);
}
.category__1dept__item--active .icon--safety-7, .category__1dept__item:hover .icon--safety-7 {
  background-image: url(../imgs/category/safety_ca_icon7_on.svg);
}
.category__1dept__item--active .icon--safety-8, .category__1dept__item:hover .icon--safety-8 {
  background-image: url(../imgs/category/safety_ca_icon8_on.svg);
}
.category__1dept__item--active .icon--safety-9, .category__1dept__item:hover .icon--safety-9 {
  background-image: url(../imgs/category/safety_ca_icon9_on.svg);
}
.category__1dept__item--active .icon--safety-10, .category__1dept__item:hover .icon--safety-10 {
  background-image: url(../imgs/category/safety_ca_icon10_on.svg);
}
.category__1dept__item--active .icon--safety-11, .category__1dept__item:hover .icon--safety-11 {
  background-image: url(../imgs/category/safety_ca_icon11_on.svg);
}
.category__1dept__item--active .icon--safety-12, .category__1dept__item:hover .icon--safety-12 {
  background-image: url(../imgs/category/safety_ca_icon12_on.svg);
}
.category__1dept__item--active .icon--safety-13, .category__1dept__item:hover .icon--safety-13 {
  background-image: url(../imgs/category/safety_ca_icon13_on.svg);
}
.category__1dept__item--active .icon--service-1, .category__1dept__item:hover .icon--service-1 {
  background-image: url(../imgs/category/service_ca_icon1_on.svg);
}
.category__1dept__item--active .icon--service-2, .category__1dept__item:hover .icon--service-2 {
  background-image: url(../imgs/category/service_ca_icon2_on.svg);
}
.category__1dept__item--active .icon--service-3, .category__1dept__item:hover .icon--service-3 {
  background-image: url(../imgs/category/service_ca_icon3_on.svg);
}
.category__1dept__item--active .icon--service-4, .category__1dept__item:hover .icon--service-4 {
  background-image: url(../imgs/category/service_ca_icon4_on.svg);
}
.category__1dept__item--active .icon--service-5, .category__1dept__item:hover .icon--service-5 {
  background-image: url(../imgs/category/service_ca_icon5_on.svg);
}
.category__1dept__item--active .icon--service-6, .category__1dept__item:hover .icon--service-6 {
  background-image: url(../imgs/category/service_ca_icon6_on.svg);
}
.category__1dept__item--active .icon--service-7, .category__1dept__item:hover .icon--service-7 {
  background-image: url(../imgs/category/service_ca_icon7_on.svg);
}
.category__1dept__item--active .icon--service-8, .category__1dept__item:hover .icon--service-8 {
  background-image: url(../imgs/category/service_ca_icon8_on.svg);
}
.category__1dept__item--active .icon--target-1, .category__1dept__item:hover .icon--target-1 {
  background-image: url(../imgs/category/target_ca_icon1_on.svg);
}
.category__1dept__item--active .icon--target-2, .category__1dept__item:hover .icon--target-2 {
  background-image: url(../imgs/category/target_ca_icon2_on.svg);
}
.category__1dept__item--active .icon--target-3, .category__1dept__item:hover .icon--target-3 {
  background-image: url(../imgs/category/target_ca_icon3_on.svg);
}
.category__1dept__item--active .icon--target-4, .category__1dept__item:hover .icon--target-4 {
  background-image: url(../imgs/category/target_ca_icon4_on.svg);
}
.category__1dept__item--active .icon--target-5, .category__1dept__item:hover .icon--target-5 {
  background-image: url(../imgs/category/target_ca_icon5_on.svg);
}
.category__1dept__item--active .icon--target-6, .category__1dept__item:hover .icon--target-6 {
  background-image: url(../imgs/category/target_ca_icon6_on.svg);
}
.category__1dept__item--active .icon--target-7, .category__1dept__item:hover .icon--target-7 {
  background-image: url(../imgs/category/target_ca_icon7_on.svg);
}
.category__1dept__item--active .icon--target-8, .category__1dept__item:hover .icon--target-8 {
  background-image: url(../imgs/category/target_ca_icon8_on.svg);
}
.category__1dept__item--active .icon--target-9, .category__1dept__item:hover .icon--target-9 {
  background-image: url(../imgs/category/target_ca_icon9_on.svg);
}
.category__1dept__item--active .icon--target-10, .category__1dept__item:hover .icon--target-10 {
  background-image: url(../imgs/category/target_ca_icon10_on.svg);
}
.category__1dept__item--active .category__2dept, .category__1dept__item:hover .category__2dept {
  display: block;
  height: 571px;
  overflow: visible;
  visibility: visible;
}
.category__2dept {
  position: absolute;
  top: 0;
  left: 24rem;
  width: 24rem;
  height: 0;
  padding: 7.5rem 2rem 0;
  background-color: #f2f2f2;
  z-index: 2;
  overflow: hidden;
  visibility: hidden;
}
.category__2dept__item {
  position: relative;
}
.category__2dept__item + .category__2dept__item {
  margin-top: 1.5rem;
}
.category__2dept__link {
  font-weight: 500;
  font-size: 1.4rem;
  color: #000;
  padding: 0;
}
.category__2dept__link:hover {
  color: #05A05C;
}

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

body.fullMenu-open .header .fullMenu {
  display: flex;
}

body.fullMenu-open .fullMenu-overlay {
  display: block;
}

.footer {
  position: relative;
  margin-top: 16rem;
  padding: 3.3rem 0 2rem;
  border-top: 1px solid #e1e1e1;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 90px;
  }
}
.footer__header {
  padding-bottom: 4.2rem;
  border-bottom: 1px solid #e1e1e1;
}
.footer__header .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 1064px) {
  .footer__header .inner {
    justify-content: space-between;
  }
}
@media screen and (max-width: 572px) {
  .footer__header .inner {
    padding-top: 60px;
  }
}
@media screen and (max-width: 498px) {
  .footer__header .inner {
    flex-direction: column;
  }
}
.footer__cs {
  position: relative;
}
.footer__cs__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: baseline;
}
.footer__cs__header {
  position: relative;
}
.footer__cs__title {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: #231f20;
  margin-right: 2.2rem;
}
.footer__cs__linkbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: baseline;
}
.footer__cs__body {
  margin-top: 1.7rem;
}
.footer__cs__link {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  width: 9.7rem;
  height: 4rem;
  padding: 0 1rem;
  background-color: #231f20;
}
.footer__cs__link span {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
}
.footer__cs__link span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3rem;
  right: 0;
  width: 0.5rem;
  height: 0.9rem;
  background-image: url(../imgs/ico/ico_small_left_arr.svg);
  background-position: 0 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.footer__cs__link + .footer__cs__link {
  margin-left: 1.3rem;
}
.footer__cs__tel {
  margin-top: 1.4rem;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: #231f20;
}
.footer__cs__time {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-top: 1.3rem;
  font-size: 1.4rem;
  color: #000;
}
.footer__cs__time span {
  display: inline-block;
}
.footer__cs__time strong {
  font-weight: 900;
  color: #231F20;
}
.footer__cs__holiyday {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  color: #000;
}
.footer__cs .line {
  display: inline-block;
  width: 1px;
  height: 1.4rem;
  background-color: #CECECE;
  margin: 0 1rem;
}
.footer__bank-info {
  position: relative;
  margin-left: 14.1rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #4d4d4d;
}
@media screen and (max-width: 1064px) {
  .footer__bank-info {
    margin-left: 0;
  }
}
@media screen and (max-width: 498px) {
  .footer__bank-info {
    margin-top: 2rem;
  }
  .footer__bank-info .footer__title {
    display: block;
    margin-bottom: 1.2rem;
  }
}
.footer__bank-info__name {
  margin-top: 2rem;
  line-height: 1;
}
.footer__qa-link {
  display: inline-block;
  font-weight: 900;
  font-size: 1.6rem;
  color: #929497;
}
.footer__title {
  margin-bottom: 1.7rem;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: #231f20;
}
@media screen and (max-width: 498px) {
  .footer__title {
    display: none;
  }
}
.footer__mobile-title {
  display: none;
  position: relative;
  flex-direction: row;
  margin-bottom: 1.2rem;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: #231f20;
}
@media screen and (max-width: 498px) {
  .footer__mobile-title {
    display: inline-flex;
    width: 100%;
  }
}
.footer__mobile-title::after {
  content: "\ed35";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-family: "boxicons" !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer .active .footer__mobile-title::after {
  content: "\ed42";
}
.footer__body {
  position: relative;
  margin-top: 2.2rem;
  padding-bottom: 3.7rem;
  border-bottom: 1px solid #e1e1e1;
}
.footer__body .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.footer__links {
  position: relative;
}
@media screen and (max-width: 498px) {
  .footer__links {
    width: 100%;
    margin-bottom: 1.7rem;
  }
}
.footer__links + .footer__links {
  margin-left: 5rem;
}
@media screen and (max-width: 1064px) {
  .footer__links + .footer__links {
    margin-left: 0;
  }
}
.footer__links .footer__mobile-title {
  margin-bottom: 1.2rem;
}
.footer__links .footer__title {
  margin-bottom: 1.2rem;
}
.footer__links ul {
  position: relative;
}
@media screen and (max-width: 498px) {
  .footer__links ul {
    display: none;
  }
}
.footer__links.active ul {
  display: block;
}
.footer__links li {
  line-height: 1;
}
.footer__links li + li {
  margin-top: 0.7rem;
}
.footer__links a {
  font-size: 1.4rem;
  line-height: 1;
  color: #4d4d4d;
}
.footer__bottom {
  position: relative;
  padding: 2.2rem 0 5.2rem;
}
@media screen and (max-width: 1064px) {
  .footer__bottom {
    padding-bottom: 0;
  }
}
.footer__bottom .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 476px) {
  .footer__bottom .inner {
    flex-direction: column;
  }
}
.footer .company-info {
  position: relative;
  margin-left: auto;
  font-size: 1.4rem;
  color: #4d4d4d;
}
@media screen and (max-width: 1064px) {
  .footer .company-info {
    width: 100%;
    margin-top: 1.7rem;
  }
}
@media screen and (max-width: 498px) {
  .footer .company-info {
    margin-top: 0;
  }
}
.footer .company-info .footer__title {
  margin-bottom: 1.2rem;
}
.footer .company-info a {
  color: #4d4d4d;
}
.footer .company-info__text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 498px) {
  .footer .company-info__text {
    display: none;
    flex-direction: column;
    align-items: baseline;
  }
}
.footer .company-info__text + .company-info__text {
  margin-top: 0.7rem;
}
.footer .company-info span {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 498px) {
  .footer .company-info span {
    width: 100%;
  }
  .footer .company-info span + span {
    margin-top: 0.7rem;
  }
}
.footer .company-info .line {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 1.4rem;
  margin: 0 1.5rem;
  background-color: #4d4d4d;
}
@media screen and (max-width: 498px) {
  .footer .company-info .line {
    display: none;
  }
}
.footer .company-info.active .company-info__text {
  display: block;
}
.footer .btn-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -0.4455rem;
  right: 0;
  width: 2.85rem;
  height: 1.85rem;
  background-color: #327f11;
  font-size: 12px;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .footer .btn-top {
    display: none;
  }
}
.footer .btn-top span {
  display: inline-block;
  position: relative;
}
.footer .btn-top span::before {
  content: "";
  display: block;
  position: relative;
  width: 0.45rem;
  height: 0.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../imgs/ico/ico_dot_up_arr.svg);
}
.footer__menu {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.footer__menu a,
.footer__menu .line {
  display: inline-block;
}
.footer__menu a {
  font-size: 1.4rem;
  line-height: 1;
  text-align: left;
  color: #929497;
}
.footer__menu a strong {
  font-weight: 900;
  color: #212020;
}
.footer__menu .line {
  width: 1px;
  height: 1.4rem;
  margin: 0 1rem;
  background-color: #212020;
}
.footer__copy {
  font-size: 1.4rem;
  line-height: 1;
  color: #929497;
}
@media screen and (max-width: 476px) {
  .footer__copy {
    margin-top: 1.5rem;
  }
}
.footer__sns {
  position: relative;
  display: flex;
  flex-direction: row;
  margin-left: auto;
}
@media screen and (max-width: 1064px) {
  .footer__sns {
    margin-left: 20px;
  }
}
@media screen and (max-width: 572px) {
  .footer__sns {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.footer__sns__link {
  display: block;
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}
.footer__sns__link + .footer__sns__link {
  margin-left: 1rem;
}
.footer__sns__link--youtube {
  background-image: url(../imgs/ico/ico_foot_sns_youtube.svg);
}
.footer__sns__link--insta {
  background-image: url(../imgs/ico/ico_foot_sns_insta.svg);
}
.footer__sns__link--blog {
  background-image: url(../imgs/ico/ico_foot_sns_blog.svg);
}

.qbtn-bx {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  bottom: 3rem;
  left: 50%;
  margin-left: 81rem;
  z-index: 997;
}
.qbtn-bx.active {
  position: absolute;
  bottom: auto;
  top: -48rem;
}
@media screen and (max-width: 1024px) {
  .qbtn-bx.active {
    top: -7rem;
  }
}
@media screen and (max-width: 1794px) {
  .qbtn-bx {
    margin-left: 74rem;
  }
}
@media screen and (max-width: 1440px) {
  .qbtn-bx {
    margin-left: 0;
    left: auto;
    right: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .qbtn-bx {
    margin-left: 0;
    left: auto;
    right: 20px;
    bottom: 8rem;
  }
}

.btn-bottom-top {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  border-radius: 100% !important;
  background-color: #fff;
  background-size: 26px auto;
  border: 1px solid #E1E1E1;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  color: #000;
  overflow: hidden;
}
.btn-bottom-top:hover {
  background-color: #000;
  color: #fff;
}
.btn-bottom-top:hover svg path {
  stroke: #fff;
}
.btn-bottom-top:hover svg line {
  stroke: #fff;
}
.btn-bottom-top span {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .btn-bottom-top {
    position: relative;
    left: 0;
    transform: translateX(0);
    width: 5rem;
    height: 5rem;
    bottom: auto;
  }
  .btn-bottom-top svg {
    width: 12px;
  }
}

#container {
  position: relative;
}

.left-aside {
  position: relative;
  width: 20rem;
  margin-top: 5rem;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .left-aside {
    display: none;
  }
}
.left-aside__title {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.9rem;
  margin-bottom: 0.8rem;
  margin-top: 3.2rem;
}
.left-aside__title--mt0 {
  margin-top: 0;
}
.left-aside .snb-menu {
  position: relative;
  margin: 2rem 0;
}
.left-aside .snb-menu__item {
  position: relative;
}
.left-aside .snb-menu__item:hover .snb-menu__link span, .left-aside .snb-menu__item.active .snb-menu__link span {
  font-weight: 700;
  color: #111;
}
.left-aside .snb-menu__item:hover .snb-menu__link span::before, .left-aside .snb-menu__item.active .snb-menu__link span::before {
  width: 100%;
  opacity: 1;
  transition: width 0.3s, opacity 0.3s;
}
.left-aside .snb-menu__item.active .snb-menu__link--arr span::after {
  content: "\f2f4";
}
.left-aside .snb-menu__item.active .dept2-menu {
  display: block;
}
.left-aside .snb-menu__link {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: #666;
}
.left-aside .snb-menu__link--arr span::after {
  content: "\f2c7";
  display: block;
  position: absolute;
  top: 1.8rem;
  right: 0;
  font-family: "Ionicons";
}
.left-aside .snb-menu__link span {
  display: block;
  position: relative;
  padding: 1.8rem 0;
  font-size: 1.6rem;
  color: #3b3b3b;
  line-height: 1;
}
.left-aside .dept2-menu {
  position: relative;
}
.left-aside .dept2-menu a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: #000;
}

.inner--flex .contents {
  width: calc(100% - 20rem);
  padding-left: 3rem;
}
@media screen and (max-width: 1024px) {
  .inner--flex .contents {
    width: 100%;
    padding-left: 0;
  }
}

.contents {
  margin-top: 8rem;
}
.contents--mt30 {
  margin-top: 3rem;
}
@media screen and (max-width: 1023px) {
  .contents {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .contents--safety {
    margin-top: 0 !important;
  }
}

.snb {
  position: relative;
  margin-top: 4.3rem;
}
.snb.mob_tab .snb__list {
  display: block;
}
.snb .btn-snb {
  position: relative;
  display: none;
  width: 100%;
  padding: 1.5rem 1.4rem;
  margin-bottom: 3.2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 1.6rem;
  color: #000;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .snb .btn-snb {
    display: block;
  }
}
.snb .btn-snb.active::after {
  transform: rotate(180deg);
}
.snb .btn-snb::after {
  display: block;
  content: "";
  position: absolute;
  top: 19px;
  right: 1.4rem;
  width: 11px;
  height: 7px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 11px 7px;
  background-image: url(/imgs/ico/ico_black_down_arr.svg);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.snb__text {
  font-size: 1.6rem;
  color: #000;
}
.snb__text strong {
  font-weight: 700;
  color: #000;
}
.snb__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-top: 7px;
  padding: 0.4rem;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .snb__list {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    margin-top: 0;
    background-color: #fff;
    padding: 0;
    border-color: #ddd;
  }
}
@media screen and (max-width: 1023px) {
  .snb__item {
    width: 100%;
  }
}
.snb__item.active .snb__link {
  font-weight: 700;
  color: #00985b;
}
.snb__link {
  display: block;
  font-size: 1.6rem;
  color: #111;
  line-height: 1;
  padding: 1.2rem;
}
.snb__link:hover {
  font-weight: 700;
  color: #00985b;
}
@media screen and (max-width: 1023px) {
  .snb__link {
    display: block;
    position: relative;
    width: 100%;
    padding: 1.2rem;
  }
}

.snb2 {
  position: relative;
  margin-top: 4rem;
}
.snb2.mob_tab .snb2__list {
  display: block;
}
.snb2 .btn-snb {
  position: relative;
  display: none;
  width: 100%;
  padding: 1.5rem 1.2rem;
  margin-top: 1.8rem;
  background-color: #636161;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .snb2 .btn-snb {
    display: block;
  }
}
.snb2 .btn-snb::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 11px;
  height: 7px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 11px 7px;
  transform: translateY(-50%);
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMy4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i66CI7J207Ja0XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCINCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTUuNDUgOC4yMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTUuNDUgOC4yMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9DQo8L3N0eWxlPg0KPHBhdGggaWQ9IlhNTElEXzE1N18iIGNsYXNzPSJzdDAiIGQ9Ik0wLDAuNWMwLTAuMTMsMC4wNS0wLjI2LDAuMTUtMC4zNWMwLjItMC4yLDAuNTEtMC4yLDAuNzEsMGw2Ljg3LDYuODdsNi44Ny02Ljg3DQoJYzAuMi0wLjIsMC41MS0wLjIsMC43MSwwYzAuMiwwLjIsMC4yLDAuNTEsMCwwLjcxTDguMDgsOC4wOGMtMC4yLDAuMi0wLjUxLDAuMi0wLjcxLDBMMC4xNSwwLjg1QzAuMDUsMC43NiwwLDAuNjMsMCwwLjV6Ii8+DQo8L3N2Zz4NCg==);
}
.snb2__text {
  font-size: 1.4rem;
  color: #000;
}
.snb2__text strong {
  font-weight: 700;
  color: #636161;
}
.snb2__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 7px;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .snb2__list {
    display: none;
    margin-top: 0;
  }
}
.snb2__item {
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .snb2__item {
    width: 100%;
  }
}
.snb2__item.active .snb2__link {
  border-color: #636161;
  border-bottom-color: #fff;
  color: #636161;
}
@media screen and (max-width: 1023px) {
  .snb2__item.active .snb2__link {
    border-bottom-color: #636161;
  }
}
.snb2__link {
  display: block;
  position: relative;
  padding: 1.6rem 1.6rem;
  border: 1px solid #ddd;
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  text-align: center;
}
.snb2__link:hover {
  border-color: #636161;
  border-bottom-color: #fff;
  color: #636161;
}
@media screen and (max-width: 1023px) {
  .snb2__link {
    font-size: 1.5rem;
    padding: 1.4rem;
  }
}
.snb2 .swiper-slide {
  width: auto !important;
}
.snb2 .swiper-horizontal > .swiper-scrollbar, .snb2 .swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 2px;
  bottom: -6px;
}
.snb2 .swiper-scrollbar-drag {
  background-color: rgba(0, 0, 0, 0.1);
}

.snb3 {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 1rem;
}
.snb3.mob_tab .snb3__list {
  display: block;
}
.snb3 .btn-snb {
  position: relative;
  display: none;
  width: 100%;
  padding: 1.5rem 1.2rem;
  margin-top: 1.8rem;
  background-color: #636161;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .snb3 .btn-snb {
    display: block;
  }
}
.snb3 .btn-snb::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 11px;
  height: 7px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 11px 7px;
  transform: translateY(-50%);
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMy4wLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i66CI7J207Ja0XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCINCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTUuNDUgOC4yMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTUuNDUgOC4yMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9DQo8L3N0eWxlPg0KPHBhdGggaWQ9IlhNTElEXzE1N18iIGNsYXNzPSJzdDAiIGQ9Ik0wLDAuNWMwLTAuMTMsMC4wNS0wLjI2LDAuMTUtMC4zNWMwLjItMC4yLDAuNTEtMC4yLDAuNzEsMGw2Ljg3LDYuODdsNi44Ny02Ljg3DQoJYzAuMi0wLjIsMC41MS0wLjIsMC43MSwwYzAuMiwwLjIsMC4yLDAuNTEsMCwwLjcxTDguMDgsOC4wOGMtMC4yLDAuMi0wLjUxLDAuMi0wLjcxLDBMMC4xNSwwLjg1QzAuMDUsMC43NiwwLDAuNjMsMCwwLjV6Ii8+DQo8L3N2Zz4NCg==);
}
.snb3__text {
  font-size: 1.4rem;
  color: #000;
}
.snb3__text strong {
  font-weight: 700;
  color: #636161;
}
.snb3__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #fff;
}
.snb3__item {
  flex-grow: 1;
}
.snb3__item.active .snb3__link {
  border-color: #636161;
  background-color: #636161;
  color: #fff;
}
.snb3__link {
  display: block;
  position: relative;
  padding: 1.6rem 1.6rem;
  border: 1px solid #ddd;
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  text-align: center;
}
.snb3__link:hover {
  border-color: #636161;
  background-color: #636161;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .snb3__link {
    font-size: 1.5rem;
    padding: 1.4rem;
  }
}
.snb3 .swiper-slide {
  width: auto !important;
}
.snb3 .swiper-horizontal > .swiper-scrollbar, .snb3 .swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 2px;
  bottom: -6px;
}
.snb3 .swiper-scrollbar-drag {
  background-color: rgba(0, 0, 0, 0.1);
}

.quick {
  position: fixed;
  top: 30rem;
  right: 0;
  width: 8.3rem;
  overflow: hidden;
  z-index: 99;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .quick {
    display: none;
  }
}
.quick.fixed {
  top: 4rem;
}
.quick__list {
  position: relative;
  padding: 2.3rem 1.2rem 2.2rem 1.3rem;
  background-color: rgba(0, 0, 0, 0.78);
}
.quick__item {
  font-size: 1.2rem;
  padding-bottom: 1.4rem;
  color: #FFFFFF;
  border-bottom: 1px dashed #fff;
}
.quick__item:last-child {
  border-bottom: 0;
}
.quick__item + .quick__item {
  padding-top: 1.4rem;
}
.quick__item a {
  color: #FFFFFF;
}
.quick__item .text {
  text-align: center;
}
.quick__item .image {
  display: block;
  position: relative;
  width: 3rem;
  margin: 0 auto;
  margin-top: 7px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.quick__item .image::after {
  content: "";
  position: relative;
  display: block;
  height: 0;
  padding-top: 100%;
}
.quick__item .image .dot {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1.3rem;
  height: 1.3rem;
  background-color: #ff5050;
  font-size: 10px;
  text-align: center;
  color: #fff;
  line-height: 1.3rem;
  border-radius: 100%;
}
.quick .btn-top {
  display: block;
  position: relative;
  padding: 0.8rem 0;
  background-color: #262626;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  line-height: 1;
}

.mobile-menu-open {
  overflow: hidden;
}

#bottom__navi {
  display: none;
  position: relative;
  width: 100%;
  height: 60px;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -5px 10px 0px rgba(0, 0, 0, 0.3);
  z-index: 110;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media screen and (max-width: 1024px) {
  #bottom__navi {
    display: block;
  }
}
#bottom__navi .bottom__menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: end;
  padding-bottom: 10px;
}
#bottom__navi .bottom__menu > li {
  flex: 0 0 auto;
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#bottom__navi .bottom__menu > li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#bottom__navi .bottom__menu > li a img {
  display: inline-block;
  width: 27px;
}
#bottom__navi .bottom__menu > li a span {
  font-size: 11px;
  font-weight: 700;
  padding-top: 4px;
}

.menu__wrap {
  display: flex;
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background: #fff;
  flex-direction: column;
  justify-content: start;
  transition: 0.3s cubic-bezier(0.6, 0, 0.4, 1);
  z-index: 1200;
}
@media screen and (max-width: 1023px) {
  .menu__wrap {
    display: flex;
  }
}
@media screen and (max-width: 560px) {
  .menu__wrap {
    width: 100%;
  }
}
.menu__head {
  position: relative;
  width: 100%;
  padding: 0;
  background: #fff;
  z-index: 1;
}
.menu .head__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
  padding: 0 12px;
}
.menu .search {
  width: calc(100% - 80px);
  position: relative;
  height: auto;
  background: #F5F5F5;
  padding: 3px 15px;
  box-sizing: border-box;
  border-radius: 10px;
}
.menu .search .input {
  display: block;
  width: 100%;
  background-color: transparent;
  border-color: transparent;
  padding-right: 50px;
}
.menu .search .btn-search {
  display: block;
  position: absolute;
  top: 3px;
  right: 9px;
  width: 30px;
  height: 30px;
}
.menu .search .btn-search svg,
.menu .search .btn-search img {
  width: 100%;
}
.menu .head__buttom__wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.menu .head__buttom__wrap a, .menu .head__buttom__wrap button {
  display: inline-block;
}
.menu .head__buttom__wrap img {
  width: 40px;
}
.menu .btn-menu-cart {
  display: block;
  position: relative;
  margin-right: 15px;
}
.menu .head__bottom {
  display: block;
  margin: 0 12px;
}
.menu .head__bottom ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.menu .head__bottom ul li {
  position: relative;
  width: 25%;
  text-align: center;
}
.menu .head__bottom ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: 0;
  width: 1px;
  height: 12px;
  background-color: #aaa;
}
.menu .head__bottom ul li:last-child::after {
  display: none;
}
.menu .head__bottom a {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 0 18px;
  text-align: center;
}
.menu__list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: #eee;
}
.menu__item {
  position: initial;
  padding-left: 8px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 2px;
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
  color: #000;
  box-sizing: border-box;
}
.menu__item.active .menu__item__container {
  display: block !important;
  opacity: 1;
}
.menu__item.active .menu__link {
  background-color: #fff;
  color: #000;
}
.menu__link {
  display: block;
  width: 40%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #999;
  line-height: 1rem;
}
.menu__item__container {
  position: absolute;
  top: 0;
  width: 60%;
  overflow-y: scroll;
  overflow-x: hidden;
  left: auto;
  right: 0;
  background: #fff;
  z-index: 0;
  border-radius: 0;
  flex-direction: column;
  padding: 0;
  visibility: visible;
  opacity: 0;
}
.menu__item__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.menu__item__list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  font-size: 16px;
}
.menu__item__list li a {
  position: relative;
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.menu__item__list li a span {
  position: relative;
  display: inline-block;
  color: #000;
}
.menu__item__list li a span::after {
  content: "";
  display: block;
  padding-top: 2px;
  border-bottom: solid 1px #00985b;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
.menu__item__list li a:hover span {
  color: #00985b;
}
.menu__item__list li a:hover span::after {
  transform: scaleX(1);
}
.menu .item__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 5px;
}
.menu .item__list li {
  width: 100%;
  padding: 3px 0 5px;
  font-size: 14px;
  line-height: 22px;
}
.menu .item__list li a {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1;
}
.menu .user-mypage-list {
  display: flex;
  flex-direction: column;
  background: #F3F3F3;
  padding: 5px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.menu .user-mypage-list li a {
  display: flex;
  padding: 5px 0;
  font-size: 14px;
  align-items: center;
}
.menu .user-mypage-list li a img {
  width: 24px;
  margin-right: 12px;
}
.menu .user-mypage-list li a .badge {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 5px;
  border-radius: 22px;
  color: #fff;
  vertical-align: 2px;
  font-size: 11px;
  background-color: #00915C;
}

.inner__mask {
  position: fixed;
  display: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.mobile-menu-open .inner__mask {
  display: block;
}

.mobile-menu-open .menu__wrap {
  right: 0;
}

.popular-wrap {
  display: none;
  position: absolute;
  top: 4.7rem;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-top: 0;
  z-index: 9999;
  padding: 1rem;
}
.popular-wrap .wrap-hw-tit {
  width: 100%;
}

.wrap-hw-tit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.wrap-hw-tit .wrap-hw-tit__title {
  font-size: 1.4rem;
  color: #000;
  font-weight: 700;
}

.text-list-box {
  position: relative;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 118px;
  overflow: hidden;
  gap: 7px 24px;
}
.keyword-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  width: calc(50% - 12px);
}
.keyword-list li:nth-child(-n+3) .num {
  color: #2189FF;
}
.keyword-list li .num {
  flex-shrink: 0;
  width: 16px;
  font-size: 12px;
  color: #757575;
  font-weight: bold;
  line-height: 16px;
}
.keyword-list li .keywrod {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 18px;
}
.keyword-list li .link {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: inherit;
  font-size: 14px;
}

.topBanner {
  position: relative;
  width: 100%;
  height: 35px;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}
.topBanner__content {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.topBanner__content img {
  width: 100%;
}
.topBanner__close {
  position: absolute;
  top: 6px;
  right: 25px;
  padding: 0 0 0 27px;
  font-size: 9pt;
  letter-spacing: -1px;
  font-size: 0.7rem;
}
.topBanner .btn-topbanner-close {
  display: inline-block;
  padding: 1px 7px 2px 5px;
  border-radius: 2px;
  color: #fff;
  font-size: 0.7rem;
}