@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "EB Garamond", serif;
  color: #231815;
  background: #e4e1dd;
  font-feature-settings: "palt";
}
@media (max-width: 850px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.wrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
}

main {
  padding-top: 0px;
}
@media (max-width: 850px) {
  main {
    padding-top: 0px;
  }
}

section {
  margin: 0;
  padding: 100px 0;
}
@media (max-width: 850px) {
  section {
    margin: 0;
    padding: 9vw 0;
  }
}

.container {
  max-width: calc(1200px + 150px);
  width: 100%;
  margin: 0 auto;
  padding: 0 75px;
  position: relative;
  _overflow: hidden;
}
@media (max-width: 850px) {
  .container {
    padding: 0 40px;
  }
  .container.narrow {
    padding: 0 50px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #231815;
  text-decoration: none;
}

a:link {
  color: #231815;
  text-decoration: none;
}

a:visited {
  color: #231815;
  text-decoration: none;
}

a:hover {
  color: #231815;
  text-decoration: none;
}

a:focus, *:focus {
  outline: none;
}

a img:hover {
  opacity: 0.5;
  transition: all 0.5s ease 0s;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===== header ====================================*/
header {
  height: 130px;
  width: 100%;
  z-index: 999;
  color: #231815;
  transition: all 0.5s;
}
@media (max-width: 850px) {
  header {
    height: 100px;
  }
}
header.fixed {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
header .header_inner {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  position: relative;
}
@media (max-width: 850px) {
  header .header_inner {
    height: 100px;
  }
}
header .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 850px) {
  header .container {
    padding: 0 40px;
    align-items: center;
  }
}
header .logo img {
  font-size: 20px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  width: 170px;
  z-index: 100;
}
@media (max-width: 850px) {
  header .logo img {
    margin: 0;
    width: 80px;
  }
}
header nav {
  display: flex;
  justify-content: flex-end;
}
header nav ul {
  display: flex;
  justify-content: center;
}
header nav ul li {
  text-align: center;
  margin: 0 85px 0 0;
  display: flex;
  align-items: center;
}
@media (max-width: 850px) {
  header nav ul li {
    margin: 0 20px 0 0;
  }
}
header nav ul li a {
  padding: 0 35px;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  display: block;
  letter-spacing: 0;
  line-height: 1.2;
  border-left: solid 1px #000000;
  border-right: solid 1px #000000;
  height: 38px;
  display: flex;
  align-items: center;
}
@media (max-width: 850px) {
  header nav ul li a {
    padding: 0 20px;
    font-size: 16px;
    font-size: 1.6rem;
    height: 30px;
  }
}
header nav ul :hover {
  opacity: 0.5;
  transition: all 0.5s ease 0s;
}
#top header {
  height: 250px;
}
#top header .header_inner {
  background: none;
}
#top header .container {
  overflow: inherit;
  display: block;
}
#top header .logo img {
  width: 330px;
  position: absolute;
  left: calc(50% - 165px);
  top: 100px;
}
#top header.fixed {
  height: 200px;
}
#top header.fixed .header_inner {
  background: #ffffff;
}
#top header.fixed .container {
  overflow: hidden;
  display: flex;
}
#top header.fixed .logo img {
  width: 170px;
  position: relative;
  left: 0;
  top: auto;
}
@media (max-width: 850px) {
  #top header {
    height: 120px;
  }
  #top header .logo img {
    width: 130px;
    position: absolute;
    left: calc(50% - 75px);
    top: 58px;
  }
  #top header.fixed {
    height: 100px;
  }
  #top header.fixed .logo {
    width: 80px;
  }
}
header #g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 60%;
  height: 100vh;
  background: #ffffff;
  transition: all 0.6s;
  padding: 5.5;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 850px) {
  header #g-nav {
    width: 100%;
  }
}
header #g-nav.panelactive {
  right: 0;
}
header #g-nav.panelactive #g-nav-list {
  z-index: 999;
  overflow: inherit;
  -webkit-overflow-scrolling: touch;
  width: 80%;
  position: relative;
}
header #g-nav ul.main_menu {
  z-index: 999;
  display: block;
}
@media (max-width: 850px) {
  header #g-nav ul.main_menu {
    height: 80vh;
  }
}
header #g-nav ul.main_menu li {
  list-style: none;
  text-align: left;
}
header #g-nav ul.main_menu li a {
  color: #231815;
  text-decoration: none;
  padding: 3.5vh 0;
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.3rem;
}
@media (max-width: 850px) {
  header #g-nav ul.main_menu li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
header #g-nav ul.main_menu li.sub_menu {
  margin: 50px 0 0 0;
  font-size: 14px;
  font-size: 1.4rem;
}
@media (max-width: 850px) {
  header #g-nav ul.main_menu li.sub_menu {
    position: absolute;
    bottom: 0;
  }
}
header #g-nav ul.main_menu li.sub_menu ul {
  display: flex;
}
header #g-nav ul.main_menu li.sub_menu ul li {
  margin: 0 10px 0 20px;
}
@media (max-width: 850px) {
  header #g-nav ul.main_menu li.sub_menu ul li {
    margin: 0 10px;
  }
}
header #g-nav ul.main_menu li.sub_menu ul li a {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 850px) {
  header #g-nav ul.main_menu li.sub_menu ul li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
header #g-nav .btn_login {
  position: absolute;
  top: 200px;
  right: 3.5vw;
  font-size: 28px;
  font-size: 2.8rem;
  padding: 0 35px;
  border-left: solid 1px #000000;
  border-right: solid 1px #000000;
}
@media (max-width: 850px) {
  header #g-nav .btn_login {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 25px;
  }
}
header #g-nav .btn_search {
  position: absolute;
  top: 50%;
  right: 3.5vw;
  padding: 35px 0;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  text-indent: 9999;
}
@media (max-width: 850px) {
  header #g-nav .btn_search {
    top: 40%;
    right: 0;
    padding: 20px 0;
  }
}
header #g-nav .btn_search a {
  width: 80px;
  height: 80px;
  display: block;
  background: url(../images/common/icn_search.svg) no-repeat center center;
  background-size: 37px;
}
@media (max-width: 850px) {
  header #g-nav .btn_search a {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
}
header .openbtn {
  position: relative;
  z-index: 1000;
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 67px;
  height: 50px;
}
@media (max-width: 850px) {
  header .openbtn {
    width: 30px;
    height: 30px;
  }
}
header .openbtn > div {
  height: 50px;
}
@media (max-width: 850px) {
  header .openbtn > div {
    height: 30px;
  }
}
header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0px;
  height: 3px;
  background-color: #231815;
  width: 67px;
}
@media (max-width: 850px) {
  header .openbtn span {
    width: 30px;
    height: 2px;
  }
}
header .openbtn span:nth-of-type(1) {
  top: 0px;
}
@media (max-width: 850px) {
  header .openbtn span:nth-of-type(1) {
    top: 3px;
  }
}
header .openbtn span:nth-of-type(2) {
  top: 23px;
}
@media (max-width: 850px) {
  header .openbtn span:nth-of-type(2) {
    top: 14px;
  }
}
header .openbtn span:nth-of-type(3) {
  top: 46px;
}
@media (max-width: 850px) {
  header .openbtn span:nth-of-type(3) {
    top: 26px;
  }
}
header .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 64px;
}
@media (max-width: 850px) {
  header .openbtn.active span:nth-of-type(1) {
    width: 30px;
    top: 9px;
  }
}
header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 64px;
}
@media (max-width: 850px) {
  header .openbtn.active span:nth-of-type(3) {
    width: 30px;
    top: 21px;
  }
}

/*===== footer ====================================*/
footer {
  padding: 110px 0 140px 0;
  text-align: center;
}
footer nav ul {
  display: flex;
  margin: 0 0 60px 0;
}
footer nav ul li {
  width: 20%;
  border-right: solid 1px #000000;
  font-size: 22px;
  font-size: 2.2rem;
}
footer nav ul li:first-child {
  border-left: solid 1px #000000;
}
footer small {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 1350px) {
  footer nav ul li {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 850px) {
  footer {
    padding: 13vw 0 16.4vw 0;
  }
  footer nav ul {
    flex-wrap: wrap;
    margin: 0 0 7vw 0;
  }
  footer nav ul li {
    font-size: 14px;
    font-size: 1.4rem;
    width: 33.3%;
    margin-bottom: 10px;
  }
  footer nav ul li:nth-child(4n) {
    border-left: solid 1px #000000;
  }
  footer small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*===== Grid ====================================*/
.grid_container {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 100%;
  display: grid;
}
.grid_container.gap {
  grid-gap: 20px;
}
.grid_container .item {
  height: auto;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===== common ======================================*/
a.u {
  color: #231815;
  text-decoration: underline;
}

a.u:link {
  color: #231815;
  text-decoration: underline;
}

a.u:visited {
  color: #231815;
  text-decoration: underline;
}

a.u:hover {
  color: #231815;
  text-decoration: none;
}

.title1 {
  font-size: 34px;
  font-size: 3.4rem;
  letter-spacing: 0.4rem;
  font-weight: normal;
  margin: 0 0 70px 0;
}
@media (max-width: 850px) {
  .title1 {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 0 8.2vw 0;
  }
}

.title2 {
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.4rem;
  font-weight: normal;
  margin: 0 0 90px 0;
}
@media (max-width: 850px) {
  .title2 {
    font-size: 26px;
    font-size: 2.6rem;
    margin: 0 0 7vw 0;
  }
}

.title3 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
  margin: 0 0 50px 0;
}
@media (max-width: 850px) {
  .title3 {
    font-size: 22px;
    font-size: 2.2rem;
    margin: 0 0 5.8vw 0;
  }
}

.title4 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
  margin: 0 0 0 0;
  transform: rotate(90deg);
  display: inline-block;
  position: absolute;
  left: -130px;
  top: 130px;
  text-align: left;
  width: 300px;
}
@media (max-width: 1350px) {
  .title4 {
    left: -120px;
  }
}
@media (max-width: 850px) {
  .title4 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.bgwhite {
  background: #ffffff;
}

.bgblue {
  background: #224655;
}

.pager {
  padding: 100px 0 0 0;
}
@media (max-width: 850px) {
  .pager {
    padding: 30px 0 50px 0;
  }
}
.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager ul li {
  margin: 1px;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}
.pager ul li a {
  display: block;
  padding: 0 8px;
}
.pager ul li a:hover {
  opacity: 0.5;
  transition: ease 0.3s;
  border-bottom: solid 1px #221714;
}
.pager ul li.active {
  border-bottom: solid 1px #221714;
  padding: 0 8px;
}

.btn {
  text-align: center;
  display: flex;
  justify-content: center;
}

.btn_round_border {
  border-radius: 80px;
  border: solid 1px #000000;
  width: 400px;
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  margin: 0 30px;
  padding: 30px 0;
  display: block;
  background: none;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.4rem;
}
.btn_round_border:hover {
  background: #000000;
  color: #ffffff;
  transition: all 0.5s ease 0s;
}
@media (max-width: 1350px) {
  .btn_round_border {
    width: calc(50% - 3.4vw);
  }
}
@media (max-width: 850px) {
  .btn_round_border {
    width: 100%;
    max-width: 300px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 15px 0;
    margin: 10px auto;
    display: block;
  }
}
.btn_round_border.white {
  background: #ffffff;
  border: none;
}
.btn_round_border.white:hover {
  background: #000000;
  color: #ffffff;
  transition: all 0.5s ease 0s;
}

.btn_round_border_s {
  border-radius: 50px;
  border: solid 1px #000000;
  width: 350px;
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  margin: 0 30px;
  padding: 5px 0;
  display: block;
  letter-spacing: 0.4rem;
}
.btn_round_border_s:hover {
  background: #000000;
  color: #ffffff;
  transition: all 0.5s ease 0s;
}
@media (max-width: 1350px) {
  .btn_round_border_s {
    width: calc(50% - 3.4vw);
  }
}
@media (max-width: 850px) {
  .btn_round_border_s {
    width: 100%;
    max-width: 300px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 10px 0;
    margin: 10px auto;
    display: block;
  }
}

a.btn_round_blue_s {
  border-radius: 50px;
  border: solid 1px #224655;
  width: 350px;
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  margin: 0 30px;
  padding: 5px 0;
  display: block;
  color: #224655;
  background: #ffffff;
  letter-spacing: 0.4rem;
}
a.btn_round_blue_s:hover {
  background: #224655;
  color: #ffffff;
  border: solid 1px #ffffff;
  transition: all 0.5s ease 0s;
}
@media (max-width: 850px) {
  a.btn_round_blue_s {
    width: 100%;
    max-width: 300px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 10px 0;
    margin: 10px auto;
    display: block;
  }
}

.btn_icn_roundarrow {
  position: relative;
  padding-left: 45px;
}
.btn_icn_roundarrow::before { /* 背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 28px; /* 横幅 */
  height: 28px; /* 高さ */
  border-radius: 50%; /* 角の丸み */
  background: none;
  border: solid 1px #231815;
}
.btn_icn_roundarrow::after { /* くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  transform: rotate(-135deg);
}
.btn_icn_roundarrow:hover {
  opacity: 0.3;
  transition: all 0.5s ease 0s;
}
@media (max-width: 850px) {
  .btn_icn_roundarrow {
    padding-left: 35px;
  }
  .btn_icn_roundarrow::before {
    left: 3px;
    width: 20px;
    height: 20px;
  }
  .btn_icn_roundarrow::after {
    left: 12px;
    width: 6px;
    height: 6px;
  }
}

/*===== 固定検索ボタン ====================================*/
#link_search {
  padding: 35px 0;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  position: fixed;
  width: 80px;
  top: 55%;
  right: 3.5vw;
  transition: all 0.5s;
  opacity: 0;
}
@media (max-width: 850px) {
  #link_search {
    padding: 20px 0;
    width: 30px;
  }
}
#link_search.fixed {
  z-index: 10;
  top: 50%;
  display: block;
  transition: all 0.5s;
  opacity: 1;
}
#link_search a {
  width: 80px;
  height: 80px;
  display: block;
  background: url(../images/common/icn_search.svg) no-repeat center center;
  background-size: 37px;
}
@media (max-width: 850px) {
  #link_search a {
    width: 30px;
    height: 30px;
    background-size: 16px;
  }
}

/*===== モーダル ====================================*/
.hide-area {
  display: none;
}

.modal-login {
  padding: 200px;
}
@media (max-width: 1350px) {
  .modal-login {
    padding: 10.6vw;
  }
}
.modal-login .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 850px) {
  .modal-login .btn {
    display: block;
  }
}
.modal-login .forget {
  text-align: center;
  margin: 50px 0 0 0;
}
@media (max-width: 850px) {
  .modal-login .forget {
    margin: 20px 0 0 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.modal-login dl {
  margin: 0 auto 30px auto;
  display: flex;
  max-width: 500px;
}
.modal-login dl dt {
  width: 30%;
  margin: 0;
  font-size: 26px;
  font-size: 2.6rem;
}
.modal-login dl dd {
  width: 70%;
  margin: 0;
  font-size: 26px;
  font-size: 2.6rem;
}
.modal-login dl:last-of-type {
  margin-bottom: 50px;
}
@media (max-width: 850px) {
  .modal-login dl {
    margin: 0 auto 20px auto;
  }
  .modal-login dl dd,
  .modal-login dl dt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .modal-login dl:last-of-type {
    margin-bottom: 30px;
  }
}
.modal-login input[type=text],
.modal-login input[type=password] {
  border: solid 1px #231815;
  padding: 10px;
  width: 100%;
}

/*===== 商品一覧（メンバー一覧） ====================================*/
.item_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 100px 0;
}
.item_list .item_box {
  width: 21.25%;
  margin: 0 5% 0 0;
}
#search .item_list .item_box img, #product .item_list .item_box img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
}
.item_list .item_box:nth-child(n+5) {
  margin-top: 60px;
}
.item_list .item_box:nth-child(4n) {
  margin-right: 0;
}
.item_list .item_box .tag {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  border-radius: 30px;
  background: #E4E1DD;
  padding: 5px 45px 10px;
  display: inline-block;
  line-height: 1;
  margin: 20px 10px 0 0;
}
.item_list .item_box .member_name {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 10px 0 0 0;
  letter-spacing: 0.25rem;
}
@media (max-width: 1350px) {
  .item_list {
    margin: 0 0 8.3vw 0;
  }
}
@media (max-width: 850px) {
  .item_list .item_box {
    width: 47.5%;
  }
  .item_list .item_box:nth-child(n+3) {
    margin-top: 10vw;
  }
  .item_list .item_box:nth-child(2n) {
    margin-right: 0;
  }
  .item_list .item_box .tag {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 3px 5.2vw 6px;
    margin: 2.3vw 1.1vw 0 0;
  }
  .item_list .item_box .member_name {
    font-size: 12px;
    font-size: 1.2rem;
    margin: 1.1vw 0 0 0;
  }
}
.item_list.slider {
  width: calc(100% + 60px);
  margin-left: -30px;
}
.item_list.slider .slick-slide {
  margin: 0 30px;
}
.item_list.slider .slick-prev,
.item_list.slider .slick-next {
  border-radius: 50%;
  border: solid 1px #000000;
  width: 47px;
  height: 47px;
  position: absolute;
  top: calc(50% - 25px);
}
.item_list.slider .slick-prev {
  left: -5vw;
}
.item_list.slider .slick-next {
  right: -5vw;
}
.item_list.slider .slick-prev::before,
.item_list.slider .slick-next::before {
  position: absolute;
  top: 15px;
  cursor: pointer;
  outline: none;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  height: 15px;
  width: 15px;
  content: "";
}
.item_list.slider .slick-prev::before {
  left: 17px;
  transform: rotate(-135deg);
}
.item_list.slider .slick-next::before {
  right: 17px;
  transform: rotate(45deg);
}
@media (max-width: 1350px) {
  .item_list.slider {
    width: 100%;
    margin-left: 0;
  }
  .item_list.slider .slick-prev,
  .item_list.slider .slick-next {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
  .item_list.slider .slick-prev::before,
  .item_list.slider .slick-next::before {
    top: 9px;
    height: 10px;
    width: 10px;
  }
  .item_list.slider .slick-prev::before {
    left: 10px;
    transform: rotate(-135deg);
  }
  .item_list.slider .slick-next::before {
    right: 10px;
    transform: rotate(45deg);
  }
}
@media (max-width: 850px) {
  .item_list.slider {
    width: 100%;
    margin-left: 0;
  }
  .item_list.slider .slick-slide {
    margin: 0 15px;
  }
  .item_list.slider .slick-prev,
  .item_list.slider .slick-next {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
  }
  .item_list.slider .slick-prev::before,
  .item_list.slider .slick-next::before {
    top: 5px;
    height: 6px;
    width: 6px;
  }
  .item_list.slider .slick-prev::before {
    left: 7px;
    transform: rotate(-135deg);
  }
  .item_list.slider .slick-next::before {
    right: 7px;
    transform: rotate(45deg);
  }
}

/*===== お知らせ一覧 ====================================*/
.news_area {
  margin: 0 0 65px 0;
}
.news_area dl {
  border-bottom: solid 1px #808080;
  padding: 45px 150px;
  display: flex;
}
.news_area dl:first-of-type {
  padding-top: 0;
}
.news_area dl dt {
  width: 100px;
  position: relative;
}
#top .news_area dl dt::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 12px;
  left: -70px;
  width: 13px;
  height: 13px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.news_area dl dd {
  margin-left: 80px;
}
@media (max-width: 1350px) {
  .news_area {
    margin: 0 0 5.4vw 0;
  }
  .news_area dl {
    padding: 4.5vw 10vw;
  }
  #top .news_area dl dt::after {
    left: -5.8vw;
  }
}
@media (max-width: 850px) {
  .news_area dl {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 4.5vw 10vw;
    display: block;
  }
  .news_area dl dt {
    width: 100%;
  }
  #top .news_area dl dt::after {
    top: 0;
    bottom: 0;
    left: -6vw;
    width: 6px;
    height: 6px;
  }
  .news_area dl dd {
    margin-left: 0;
  }
}

/*===== 検索エリア ======================================*/
.search_Area .inner {
  border-radius: 10px;
  padding: 50px;
  margin: 30px 0 0 0;
}
.search_Area .box {
  padding: 20px;
}
.search_Area .menu_list.boder_top {
  border-top: solid 1px #b5b5b6;
}
.search_Area .menu_list ul {
  display: flex;
  flex-wrap: wrap;
}
.search_Area .menu_list ul li {
  width: 33%;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .search_Area .menu_list ul {
    display: block;
  }
  .search_Area .menu_list ul li {
    width: 100%;
    border-bottom: solid 1px #b5b5b6;
    padding: 10px 10px 10px 20px;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .search_Area .menu_list ul li.arrow_r a {
    background: url(../images/common/arrow_gray01_r.svg) no-repeat right 20px center;
    background-size: 8px;
  }
  .search_Area .menu_list ul li a {
    display: block;
  }
  .search_Area .menu_list ul li.active {
    background: #f5fbfe;
  }
  .search_Area .menu_list ul li input[type=checkbox] + label {
    margin-left: 25px;
  }
  .search_Area .menu_list ul li.accordion {
    padding: 0;
    border-bottom: none;
  }
  .search_Area .menu_list ul li.accordion dt {
    padding: 10px 10px 10px 20px;
    border-bottom: solid 1px #b5b5b6;
    background: url(../images/common/arrow_gray01_b.svg) no-repeat right 20px center;
    background-size: 14px;
  }
  .search_Area .menu_list ul li.accordion dt.active {
    background: url(../images/common/arrow_gray01_t.svg) no-repeat right 20px center;
    background-size: 14px;
  }
  .search_Area .menu_list ul li.accordion dd {
    display: none;
  }
}
.search_Area .freeword {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 30px;
  max-width: 770px;
}
.search_Area .freeword input[type=text] {
  border: none;
  background: #ffffff;
  width: calc(100% - 60px);
  padding: 0;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "EB Garamond", serif;
  border-right: solid 1px #221714;
}
.search_Area .freeword input[type=submit] {
  border-radius: 5px;
  width: 37px;
  height: 37px;
  border: none;
  background: url(../images/common/icn_search.svg) no-repeat center center;
  background-size: 30px;
  text-indent: -9999px;
  cursor: pointer;
}
.search_Area .freeword input[type=submit]:hover {
  opacity: 0.5;
  transition: all 0.5s ease 0s;
}
@media (max-width: 850px) {
  .search_Area .freeword input[type=text] {
    font-size: 20px;
    font-size: 2rem;
    padding: 3px 0;
  }
  .search_Area .freeword input[type=submit] {
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
}
#glossary .search_Area .freeword input[type=text] {
  font-size: 20px;
  font-size: 2rem;
  padding: 3px 0;
}
#glossary .search_Area .freeword input[type=submit] {
  width: 30px;
  height: 30px;
  background-size: 30px;
}
@media (max-width: 850px) {
  #glossary .search_Area .freeword {
    width: 100%;
    margin-right: 40px;
  }
}
#search .search_Area .freeword {
  margin: 0 auto;
}

/*===== フォーム ======================================*/
.form_Area {
  /*チェックボックス*/
  /*セレクト*/
  /*ラジオボタン*/
  /* エラーメッセージ*/
  /*ボタン*/
  /*完了画面*/
}
#forget .form_Area, #login .form_Area {
  max-width: 650px;
  margin: 50px auto 0;
}
.form_Area dl {
  width: 100%;
  font-size: 26px;
  font-size: 2.6rem;
  margin: 0 0 10px 0;
  display: flex;
}
.form_Area dl dt {
  padding: 10px;
  width: 27%;
}
.form_Area dl dd {
  padding: 10px 0;
  width: 60%;
}
.form_Area dl dd dt {
  padding-left: 20px;
}
.form_Area dl dd dd {
  width: 100%;
}
@media (max-width: 850px) {
  .form_Area dl {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
  }
  .form_Area dl dt {
    padding: 0 0 5px 0;
    width: 100%;
  }
  .form_Area dl dd {
    padding: 0;
    width: 100%;
  }
  .form_Area dl dd dl {
    display: flex;
  }
  .form_Area dl dd dl dt {
    width: 30%;
    padding: 10px;
  }
  .form_Area dl dd dl dd {
    width: 70%;
  }
}
.form_Area .hissu {
  display: inline-block;
  background: #e60012;
  margin: 0 0 0 10px;
  padding: 4px 10px;
  line-height: 1;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #ffffff;
  border-radius: 3px;
}
.form_Area input[type=text],
.form_Area input[type=email],
.form_Area input[type=tel],
.form_Area input[type=password],
.form_Area textarea {
  background: #FFFFFF;
  padding: 5px;
  font-size: 26px;
  font-size: 2.6rem;
  border: none;
  width: 100%;
}
.form_Area textarea {
  height: 100px;
}
.form_Area input[type=checkbox] {
  display: none;
  margin: 0;
}
.form_Area input[type=checkbox] + label {
  padding: 0 0 0 30px;
  position: relative;
}
.form_Area input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  margin-top: -3px;
  background: #FFF;
}
.form_Area input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 5px;
  box-sizing: border-box;
  display: block;
  left: 2px;
  width: 10px;
  height: 8px;
  margin-top: -3px;
  border-left: 2px solid #231815;
  border-bottom: 2px solid #231815;
  transform: rotate(-45deg);
}
.form_Area select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF;
  border-radius: 0px;
  padding: 11px 10px 10px 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
.form_Area select ::-ms-expand {
  display: none;
}
.form_Area select.sort {
  padding: 0;
  border: none;
  font-size: 14px;
  font-size: 1.4rem;
  background: none;
}
.form_Area label.radio {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 6px 10px 0 0;
  padding: 0px 0 3px 40px;
}
.form_Area label.radio:before {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #b5b5b6;
  border-radius: 50%;
  left: 0px;
  content: "";
  z-index: 3;
}
.form_Area label.radio:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  left: 6px;
  top: 6px;
  background-color: #279edf;
  z-index: 1;
}
.form_Area label.radio input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 1px;
  margin: 0px !important;
  box-shadow: 26px 2px #FFFFFF;
}
.form_Area label.radio input[type=radio]:checked {
  box-shadow: none;
}
.form_Area label.radio input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 26px 2px #FFF;
}
.form_Area .error {
  color: #ff0000;
  font-size: 20px;
  font-size: 2rem;
  margin: 5px 0 0 0;
}
.form_Area .error :empty {
  display: none;
}
@media (max-width: 850px) {
  .form_Area .error {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.form_Area .check {
  text-align: center;
  font-weight: bold;
  margin: 50px 0;
}
.form_Area .btn {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 850px) {
  .form_Area .btn {
    display: block;
    padding: 30px 20px;
    margin: 0;
  }
}
.form_Area .btn_entry a,
.form_Area .btn_entry input,
.form_Area .btn_entry button {
  width: 470px;
}
@media (max-width: 850px) {
  .form_Area .btn_entry a,
  .form_Area .btn_entry input,
  .form_Area .btn_entry button {
    width: 100%;
  }
}
.form_Area .btn_confirm a,
.form_Area .btn_confirm input,
.form_Area .btn_confirm button {
  width: 200px;
  margin: 0 20px;
}
@media (max-width: 850px) {
  .form_Area .btn_confirm a,
  .form_Area .btn_confirm input,
  .form_Area .btn_confirm button {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.form_Area.thankyou {
  text-align: center;
  padding: 100px 50px;
}
@media (max-width: 850px) {
  .form_Area.thankyou {
    padding: 30px 20px;
  }
}
.form_Area.thankyou h3 {
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: bold;
  color: #ff0000;
  margin: 0 0 30px 0;
}
@media (max-width: 850px) {
  .form_Area.thankyou h3 {
    font-size: 32px;
    font-size: 3.2rem;
    margin: 0 0 20px 0;
  }
}
.form_Area.thankyou p {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 850px) {
  .form_Area.thankyou p {
    text-align: left;
  }
}

/*===== プライバシーポリシー ======================================*/
#policy {
  font-size: 16px;
  font-size: 1.6rem;
}
#policy h2 {
  font-size: 26px;
  font-size: 2.6rem;
  margin: 30px 0 20px 0;
}
#policy ol {
  margin: 20px 0 0 40px;
}
#policy ol li {
  list-style: outside decimal;
  font-size: 0.95em;
  line-height: 140%;
  margin: 10px 0 0 0;
}
#policy ol li ol {
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  #policy {
    font-size: 14px;
    font-size: 1.4rem;
  }
  #policy h2 {
    font-size: 20px;
    font-size: 2rem;
    margin: 20px 0 10px 0;
  }
}

/*===== top ======================================*/
#top #mv {
  background: url(../images/top/mv.jpg) no-repeat;
  background-size: cover;
  height: 45vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#top #mv .copy {
  font-size: 142px;
  font-size: 14.2rem;
  letter-spacing: 0.6rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
}
#top #mv .copy .sub {
  font-size: 35%;
  margin: 0 0 30px 0;
  letter-spacing: 0.2rem;
}
@media (max-width: 1350px) {
  #top #mv .copy {
    font-size: 10vw;
  }
  #top #mv .copy .sub {
    margin: 0 0 0.2vw 0;
  }
}
@media (max-width: 850px) {
  #top #mv .copy {
    font-size: 7.8vw;
  }
}
#top #mv .scroll {
  transform: rotate(90deg);
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  position: absolute;
  bottom: -90px;
  right: 0;
  padding: 0 0 0 30px;
}
#top #mv .scroll::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
#top #mv .scroll::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 18px;
  height: 1px;
  background: #000000;
}
@media (max-width: 850px) {
  #top #mv .scroll {
    font-size: 12px;
    font-size: 1.2rem;
    bottom: -70px;
    padding: 0 0 0 20px;
    right: -10px;
  }
  #top #mv .scroll::before {
    left: 6px;
    width: 6px;
    height: 6px;
  }
  #top #mv .scroll::after {
    width: 12px;
  }
}
#top .about_area {
  display: flex;
  justify-content: space-between;
}
#top .about_area figure {
  width: 52.5%;
}
#top .about_area figure img {
  width: 100%;
}
#top .about_area .rightbox {
  width: 42.5%;
  color: #ffffff;
  padding: 50px 0 0 0;
  position: relative;
}
#top .about_area .rightbox .btn {
  display: inherit;
  position: absolute;
  bottom: 0;
}
#top .about_area .rightbox .btn .btn_round_blue_s {
  margin: 0;
}
@media (max-width: 1350px) {
  #top .about_area .rightbox {
    padding: 0 0 0 0;
  }
  #top .about_area .rightbox .btn {
    position: relative;
    margin-top: 50px;
  }
}
@media (max-width: 850px) {
  #top .about_area {
    display: block;
  }
  #top .about_area figure {
    width: 100%;
    margin: 0 0 30px 0;
  }
  #top .about_area .rightbox {
    width: 100%;
  }
  #top .about_area .rightbox .btn {
    margin-top: 30px;
    display: flex;
  }
}

/*===== About ======================================*/
#about .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#about .block.mb {
  margin-bottom: 160px;
}
#about .block.reverse {
  flex-direction: row-reverse;
}
#about .block figure {
  width: 38%;
}
#about .block figure img {
  width: 100%;
}
#about .block p {
  display: block;
  width: 54%;
}
@media (max-width: 850px) {
  #about .block {
    display: block;
  }
  #about .block.mb {
    margin-bottom: 18.8vw;
  }
  #about .block figure {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #about .block p {
    width: 100%;
  }
}
#about .block.produce {
  align-items: flex-start;
}
#about .block.produce figure {
  width: 20%;
}
#about .block.produce p {
  width: 71%;
}
@media (max-width: 850px) {
  #about .block.produce figure {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #about .block.produce p {
    width: 100%;
  }
}
#about .exhibition_list dl {
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
}
#about .exhibition_list dl dt {
  width: 25%;
  position: relative;
  padding: 0 0 0 6%;
}
@media (max-width: 1350px) {
  #about .exhibition_list dl {
    margin: 0 0 3.5vw 0;
  }
}
@media (max-width: 850px) {
  #about .exhibition_list dl {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 0 3.5vw 0;
    display: block;
  }
  #about .exhibition_list dl dt {
    width: 100%;
  }
  #about .exhibition_list dl dd {
    padding: 0 0 0 6%;
  }
}

/*===== Glossary ======================================*/
#glossary .search_Area {
  position: absolute;
  top: 10px;
  right: 75px;
  width: 470px;
}
@media (max-width: 850px) {
  #glossary .search_Area {
    position: relative;
    top: auto;
    right: 0;
    margin: 0 0 7vw 0;
    width: 100%;
  }
}
#glossary .category {
  display: flex;
  margin: 0 0 160px 0;
}
#glossary .category h3 {
  width: 120px;
  text-align: center;
  margin: 0 90px 0 0;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
  padding: 80px 0 0 0;
}
#glossary .category h3.material {
  background: url(../images/common/icn_material.svg) no-repeat center top;
  background-size: 70px;
}
#glossary .category h3.technique {
  background: url(../images/common/icn_technique.svg) no-repeat center top;
  background-size: 70px;
}
#glossary .category h3.function {
  background: url(../images/common/icn_function.svg) no-repeat center top;
  background-size: 70px;
}
#glossary .category .glossary_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 16px;
  font-size: 1.6rem;
  width: calc(100% - 210px);
}
#glossary .category .glossary_list li {
  border-bottom: solid 1px #000000;
  margin: 0 40px 0 0;
  padding: 15px 0;
  width: calc((100% - 120px) / 4);
}
#glossary .category .glossary_list li:nth-child(4n) {
  margin-right: 0;
}
#glossary .category .glossary_list li a:hover {
  opacity: 0.3;
  transition: all 0.5s ease 0s;
}
@media (max-width: 850px) {
  #glossary .category {
    display: block;
    margin: 0 0 18vw 0;
  }
  #glossary .category h3 {
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 50px 0 0 0;
  }
  #glossary .category h3.material {
    background-size: 50px;
  }
  #glossary .category h3.technique {
    background-size: 50px;
  }
  #glossary .category h3.function {
    background-size: 50px;
  }
  #glossary .category .glossary_list {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
  }
  #glossary .category .glossary_list li {
    margin: 0 20px 0 0;
    padding: 10px 0;
    width: calc((100% - 40px) / 3);
  }
  #glossary .category .glossary_list li:nth-child(4n) {
    margin-right: 20px;
  }
  #glossary .category .glossary_list li:nth-child(3n) {
    margin-right: 0;
  }
}
#glossary .top_btn_Area {
  position: absolute;
  top: 25px;
  right: 75px;
}
@media (max-width: 850px) {
  #glossary .top_btn_Area {
    top: 12px;
    right: 40px;
  }
}
#glossary .bottom_btn_Area {
  padding: 30px 0;
  text-align: right;
}
@media (max-width: 850px) {
  #glossary .bottom_btn_Area {
    padding: 20px 0;
  }
}
#glossary .glossary_title {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
  border-top: solid 1px #000000;
  padding: 60px 0;
}
#glossary .glossary_title + p {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 60px 0;
}
@media (max-width: 850px) {
  #glossary .glossary_title {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 7vw 0;
  }
  #glossary .glossary_title + p {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 0 7vw 0;
  }
}
#glossary .relatedwords_Area {
  border-top: solid 1px #000000;
  padding: 60px 0;
}
#glossary .relatedwords_Area ul {
  display: flex;
  flex-wrap: wrap;
}
#glossary .relatedwords_Area ul li {
  width: 220px;
  margin: 0 40px 20px 0;
  padding: 10px 0;
  text-align: center;
  border-radius: 50px;
  border: solid 1px #000000;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 850px) {
  #glossary .relatedwords_Area {
    padding: 7vw 0;
  }
  #glossary .relatedwords_Area ul li {
    width: calc(50% - 10px);
    margin: 0 10px 20px 0;
    padding: 10px 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*===== product ======================================*/
#product .category_choice ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
#product .category_choice ul li {
  width: calc((100% - 240px) / 9);
  aspect-ratio: 1/1;
  margin: 0 30px 0 0;
}
#product .category_choice ul li:nth-child(n+10) {
  margin-top: 30px;
}
#product .category_choice ul li:nth-child(9n) {
  margin-right: 0;
}
#product .category_choice ul li a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  background: #ffffff;
  border-radius: 28px;
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  transition: all 0.5s ease 0s;
  padding-top: 53px;
}
#product .category_choice ul li a::after {
  position: absolute;
  top: 15px;
  letter-spacing: 50%;
  content: "";
  width: 100%;
  height: 50px;
  transition: all 0.5s ease 0s;
  background-color: #000000;
}
#product .category_choice ul li a.all {
  padding-top: 0;
}
#product .category_choice ul li a.all::after {
  display: none;
}
#product .category_choice ul li a.material0::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.9 38.8"><path fill="%23000" d="M44,26.4l-0.2-0.1c0,0,0,0,0,0c-0.4-0.2-0.8-0.4-1.2-0.5c-0.3-0.1-0.7-0.3-1-0.4c-0.8-0.4-1.6-0.7-2.3-1.1	l-0.4-0.2c-0.1-0.1-0.3-0.1-0.4-0.2c0.6,0,1.1-0.1,1.7-0.1c1.9-0.1,3.7-0.8,5.1-2c1.8-1.8,1.7-4.4,1.5-6.4l-0.1-1.3 c-0.1-2.1-0.2-4.3-0.4-6.4c-0.2-2.6-1.3-7-6.1-7.1c-1.6,0-3.1,0.4-4.4,1.2c-0.3,0.1-0.5,0.3-0.7,0.5c0,0-0.1,0.1-0.1,0.1	c-0.1,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.2-0.3,0.2c-0.3,0.2-0.5,0.5-0.8,0.7l-0.2,0.2C32.6,4.4,32,5,31.4,5.6c-2,2-4,4.1-5.8,6.3	c-0.2,0.3-0.4,0.5-0.6,0.8c-0.2-1.9-0.4-3.4-0.7-4.3c0.1-0.1,0.1-0.1,0.1-0.2c0,0,0.4-4.8,2.9-6.6c0.9-0.7,2-0.9,3.3-0.6	c0.2,0,0.5-0.1,0.5-0.3c0-0.2-0.1-0.5-0.3-0.5c-1.5-0.3-2.8-0.1-4,0.8c-2.1,1.6-2.8,4.8-3.1,6.3c-0.1,0-0.1-0.1-0.2-0.1	c-0.1,0-0.1,0-0.2,0.1c-0.2-1.6-1-4.8-3.1-6.3c-1.1-0.8-2.4-1.1-4-0.8c-0.2,0-0.4,0.3-0.3,0.5C16,0.9,16.2,1,16.4,1	c1.3-0.3,2.4-0.1,3.3,0.6c2.5,1.8,2.9,6.6,2.9,6.6c0,0.1,0,0.2,0.1,0.2c-0.3,1-0.6,2.5-0.7,4.3c-0.2-0.3-0.4-0.6-0.6-0.8	c-1.8-2.2-3.7-4.3-5.8-6.3c-0.6-0.6-1.3-1.2-1.9-1.8l-0.2-0.2c-0.3-0.2-0.5-0.5-0.8-0.7c0,0-0.2-0.1-0.3-0.2	c-0.2-0.1-0.4-0.2-0.4-0.3c0-0.1-0.1-0.1-0.1-0.1c-0.2-0.2-0.5-0.3-0.7-0.5C9.7,1,8.2,0.6,6.6,0.6C1.8,0.7,0.7,5.1,0.5,7.7	c-0.2,2.3-0.3,4.6-0.4,6.9l0,0.8c-0.1,2-0.3,4.6,1.6,6.4c1.4,1.2,3.2,1.9,5.1,2c0.6,0.1,1.1,0.1,1.7,0.1C8.3,24,8.1,24,7.9,24.1	c-0.9,0.4-1.8,0.8-2.7,1.2c-0.3,0.2-0.7,0.3-1,0.4c-0.4,0.2-0.8,0.3-1.2,0.5l-0.2,0.1c-0.6,0.3-1.3,0.6-1.5,1.5	c-0.1,0.5-0.1,1.1,0.1,1.6c0.2,1,0.6,2,1,2.9c0.5,1.3,1.5,2.4,2.8,3.1c1.3,0.4,2.7,0.3,3.9-0.1c0.4-0.1,0.8-0.2,1.2-0.4l0.1,0	c0.1,0.2,0.2,0.5,0.2,0.7c0.1,0.4,0.3,0.8,0.5,1.2c0.4,0.9,1.2,1.5,2.2,1.8c0.3,0.1,0.6,0.1,1,0.1c1,0,1.9-0.3,2.7-0.9	c1.1-0.9,2-2.1,2.6-3.4c0.3-0.6,0.7-1.3,1.1-2c0.5-0.9,1-1.8,1.4-2.7c0.3,2.5,0.8,4.1,1.4,4.1c0.5,0,1-1.6,1.4-4.1	c0.4,0.9,0.9,1.9,1.4,2.8c0.4,0.7,0.8,1.4,1.1,2c0.6,1.3,1.4,2.5,2.6,3.4c0.8,0.6,1.8,0.9,2.7,0.9c0.3,0,0.7,0,1-0.1	c1-0.2,1.8-0.9,2.2-1.8c0.2-0.4,0.3-0.8,0.5-1.2c0.1-0.2,0.1-0.5,0.2-0.7l0.1,0c0.4,0.1,0.8,0.3,1.1,0.3c1.3,0.5,2.7,0.6,4,0.1	c1.2-0.7,2.2-1.8,2.7-3.1c0.4-0.9,0.8-1.9,1-2.9c0.2-0.5,0.2-1.1,0.1-1.7C45.4,27,44.6,26.6,44,26.4z M19.9,32	c-0.4,0.7-0.8,1.4-1.1,2.1c-0.5,1.2-1.3,2.3-2.3,3.1c-0.9,0.6-2,0.9-3,0.6c-0.5-0.1-1.3-0.5-1.7-1.3c-0.2-0.4-0.3-0.7-0.4-1.1	c-0.1-0.3-0.2-0.7-0.3-1c-0.1-0.2-0.3-0.4-0.6-0.4c-0.1,0-0.3,0-0.5,0.1c-0.4,0.1-0.7,0.2-1.1,0.4C7.8,35,6.6,35,5.6,34.7	c-1-0.6-1.9-1.6-2.3-2.7c-0.4-0.9-0.8-1.8-1-2.7c-0.1-0.4-0.2-0.8-0.1-1.2c0.1-0.4,0.5-0.6,1.1-0.9l0.2-0.1c0.4-0.2,0.7-0.3,1.1-0.5	c0.4-0.1,0.7-0.3,1.1-0.5c0.9-0.4,1.8-0.8,2.6-1.2c0,0,0.1,0,0.1,0c0.5-0.2,0.9-0.4,1.4-0.6l0.9-0.4c0.2-0.1,0.3-0.3,0.3-0.5	c0-0.2-0.2-0.3-0.4-0.3c-1.2,0-2.4-0.1-3.6-0.2c-1.7-0.1-3.3-0.7-4.6-1.8c-1.5-1.6-1.4-3.8-1.3-5.8l0-0.8c0.1-2.2,0.2-4.6,0.4-6.8	c0.2-2.9,1.3-6.3,5.2-6.3c1.4,0,2.8,0.4,4,1.1C10.8,2.7,11,2.8,11.2,3c0.1,0.1,0.3,0.3,0.6,0.5c0.1,0.1,0.2,0.1,0.2,0.2	c0.3,0.2,0.5,0.5,0.8,0.7l0.2,0.2c0.6,0.6,1.3,1.2,1.9,1.8c2,1.9,3.9,4,5.7,6.2c0.3,0.3,0.5,0.7,0.8,1c-0.2,2.1-0.3,4.5-0.3,7l0,0.7	c-0.1,0.1-0.3,0.1-0.4,0.2c-0.1,0-0.2,0.1-0.3,0.1l-0.3,0.1c-0.1,0.1-0.3,0.2-0.3,0.3c0,0.2,0,0.3,0.2,0.4c0.3,0.2,0.5,0.4,0.8,0.7	c0.1,0.1,0.2,0.3,0.3,0.4c0.1,1.9,0.2,3.8,0.4,5.4C21.1,29.9,20.5,31,19.9,32z M21.5,22.4c-0.1-0.1-0.2-0.2-0.3-0.3	c0.1-0.1,0.3-0.1,0.4-0.2c0,0.2,0,0.4,0,0.7C21.5,22.5,21.5,22.5,21.5,22.4z M23.5,32.3c-0.5-1.6-1-5.6-1-11.8s0.6-10.2,1-11.8	c0.5,1.6,1,5.6,1,11.8S23.9,30.7,23.5,32.3z M25.3,21.9c0.1,0.1,0.3,0.1,0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c0,0-0.1,0.1-0.1,0.1	C25.3,22.3,25.3,22.1,25.3,21.9z M44.6,29.3c-0.2,0.9-0.6,1.8-1,2.7c-0.4,1.1-1.3,2.1-2.2,2.6C40.3,35,39.1,35,38,34.5	c-0.4-0.1-0.7-0.2-1.2-0.4c-0.4-0.2-0.8-0.1-1,0.3c-0.1,0.3-0.2,0.7-0.3,1c-0.1,0.4-0.3,0.7-0.4,1.1c-0.4,0.9-1.2,1.2-1.7,1.3	c-1,0.2-2.1,0-3-0.6c-1-0.8-1.8-1.9-2.3-3.1c-0.3-0.7-0.7-1.3-1.1-2c-0.6-1.1-1.2-2.2-1.6-3.2c0.2-1.6,0.3-3.5,0.4-5.4	c0.1-0.1,0.2-0.3,0.3-0.4c0.2-0.3,0.5-0.5,0.8-0.7c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2-0.1-0.3-0.3-0.3l-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1	c-0.1-0.1-0.3-0.1-0.4-0.2c0-0.2,0-0.5,0-0.7c0-2.5-0.1-4.9-0.3-7c0.3-0.4,0.5-0.7,0.8-1c1.8-2.2,3.7-4.3,5.7-6.2	c0.6-0.6,1.2-1.2,1.9-1.8L34,4.3c0.3-0.2,0.5-0.5,0.8-0.7c0,0,0.1-0.1,0.2-0.1c0.3-0.2,0.5-0.4,0.7-0.5c0.2-0.1,0.4-0.3,0.6-0.4	c1.2-0.7,2.6-1.1,4-1.1c3.9,0,5,3.5,5.3,6.3c0.2,2.1,0.3,4.3,0.4,6.4l0.1,1.3c0.1,2,0.2,4.2-1.3,5.7c-1.3,1.1-2.9,1.7-4.6,1.8	c-1.2,0.1-2.4,0.2-3.6,0.2c-0.2,0-0.4,0.1-0.4,0.3c0,0.2,0.1,0.4,0.2,0.5l0.9,0.4c0.4,0.2,0.9,0.4,1.3,0.6l0.4,0.2	c0.8,0.3,1.6,0.7,2.3,1c0.3,0.2,0.7,0.3,1.1,0.5c0.4,0.2,0.8,0.3,1.1,0.5l0.2,0.1c0.6,0.3,1,0.5,1.1,0.9	C44.8,28.4,44.8,28.9,44.6,29.3z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.9 38.8"><path fill="%23000" d="M44,26.4l-0.2-0.1c0,0,0,0,0,0c-0.4-0.2-0.8-0.4-1.2-0.5c-0.3-0.1-0.7-0.3-1-0.4c-0.8-0.4-1.6-0.7-2.3-1.1	l-0.4-0.2c-0.1-0.1-0.3-0.1-0.4-0.2c0.6,0,1.1-0.1,1.7-0.1c1.9-0.1,3.7-0.8,5.1-2c1.8-1.8,1.7-4.4,1.5-6.4l-0.1-1.3 c-0.1-2.1-0.2-4.3-0.4-6.4c-0.2-2.6-1.3-7-6.1-7.1c-1.6,0-3.1,0.4-4.4,1.2c-0.3,0.1-0.5,0.3-0.7,0.5c0,0-0.1,0.1-0.1,0.1	c-0.1,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.2-0.3,0.2c-0.3,0.2-0.5,0.5-0.8,0.7l-0.2,0.2C32.6,4.4,32,5,31.4,5.6c-2,2-4,4.1-5.8,6.3	c-0.2,0.3-0.4,0.5-0.6,0.8c-0.2-1.9-0.4-3.4-0.7-4.3c0.1-0.1,0.1-0.1,0.1-0.2c0,0,0.4-4.8,2.9-6.6c0.9-0.7,2-0.9,3.3-0.6	c0.2,0,0.5-0.1,0.5-0.3c0-0.2-0.1-0.5-0.3-0.5c-1.5-0.3-2.8-0.1-4,0.8c-2.1,1.6-2.8,4.8-3.1,6.3c-0.1,0-0.1-0.1-0.2-0.1	c-0.1,0-0.1,0-0.2,0.1c-0.2-1.6-1-4.8-3.1-6.3c-1.1-0.8-2.4-1.1-4-0.8c-0.2,0-0.4,0.3-0.3,0.5C16,0.9,16.2,1,16.4,1	c1.3-0.3,2.4-0.1,3.3,0.6c2.5,1.8,2.9,6.6,2.9,6.6c0,0.1,0,0.2,0.1,0.2c-0.3,1-0.6,2.5-0.7,4.3c-0.2-0.3-0.4-0.6-0.6-0.8	c-1.8-2.2-3.7-4.3-5.8-6.3c-0.6-0.6-1.3-1.2-1.9-1.8l-0.2-0.2c-0.3-0.2-0.5-0.5-0.8-0.7c0,0-0.2-0.1-0.3-0.2	c-0.2-0.1-0.4-0.2-0.4-0.3c0-0.1-0.1-0.1-0.1-0.1c-0.2-0.2-0.5-0.3-0.7-0.5C9.7,1,8.2,0.6,6.6,0.6C1.8,0.7,0.7,5.1,0.5,7.7	c-0.2,2.3-0.3,4.6-0.4,6.9l0,0.8c-0.1,2-0.3,4.6,1.6,6.4c1.4,1.2,3.2,1.9,5.1,2c0.6,0.1,1.1,0.1,1.7,0.1C8.3,24,8.1,24,7.9,24.1	c-0.9,0.4-1.8,0.8-2.7,1.2c-0.3,0.2-0.7,0.3-1,0.4c-0.4,0.2-0.8,0.3-1.2,0.5l-0.2,0.1c-0.6,0.3-1.3,0.6-1.5,1.5	c-0.1,0.5-0.1,1.1,0.1,1.6c0.2,1,0.6,2,1,2.9c0.5,1.3,1.5,2.4,2.8,3.1c1.3,0.4,2.7,0.3,3.9-0.1c0.4-0.1,0.8-0.2,1.2-0.4l0.1,0	c0.1,0.2,0.2,0.5,0.2,0.7c0.1,0.4,0.3,0.8,0.5,1.2c0.4,0.9,1.2,1.5,2.2,1.8c0.3,0.1,0.6,0.1,1,0.1c1,0,1.9-0.3,2.7-0.9	c1.1-0.9,2-2.1,2.6-3.4c0.3-0.6,0.7-1.3,1.1-2c0.5-0.9,1-1.8,1.4-2.7c0.3,2.5,0.8,4.1,1.4,4.1c0.5,0,1-1.6,1.4-4.1	c0.4,0.9,0.9,1.9,1.4,2.8c0.4,0.7,0.8,1.4,1.1,2c0.6,1.3,1.4,2.5,2.6,3.4c0.8,0.6,1.8,0.9,2.7,0.9c0.3,0,0.7,0,1-0.1	c1-0.2,1.8-0.9,2.2-1.8c0.2-0.4,0.3-0.8,0.5-1.2c0.1-0.2,0.1-0.5,0.2-0.7l0.1,0c0.4,0.1,0.8,0.3,1.1,0.3c1.3,0.5,2.7,0.6,4,0.1	c1.2-0.7,2.2-1.8,2.7-3.1c0.4-0.9,0.8-1.9,1-2.9c0.2-0.5,0.2-1.1,0.1-1.7C45.4,27,44.6,26.6,44,26.4z M19.9,32	c-0.4,0.7-0.8,1.4-1.1,2.1c-0.5,1.2-1.3,2.3-2.3,3.1c-0.9,0.6-2,0.9-3,0.6c-0.5-0.1-1.3-0.5-1.7-1.3c-0.2-0.4-0.3-0.7-0.4-1.1	c-0.1-0.3-0.2-0.7-0.3-1c-0.1-0.2-0.3-0.4-0.6-0.4c-0.1,0-0.3,0-0.5,0.1c-0.4,0.1-0.7,0.2-1.1,0.4C7.8,35,6.6,35,5.6,34.7	c-1-0.6-1.9-1.6-2.3-2.7c-0.4-0.9-0.8-1.8-1-2.7c-0.1-0.4-0.2-0.8-0.1-1.2c0.1-0.4,0.5-0.6,1.1-0.9l0.2-0.1c0.4-0.2,0.7-0.3,1.1-0.5	c0.4-0.1,0.7-0.3,1.1-0.5c0.9-0.4,1.8-0.8,2.6-1.2c0,0,0.1,0,0.1,0c0.5-0.2,0.9-0.4,1.4-0.6l0.9-0.4c0.2-0.1,0.3-0.3,0.3-0.5	c0-0.2-0.2-0.3-0.4-0.3c-1.2,0-2.4-0.1-3.6-0.2c-1.7-0.1-3.3-0.7-4.6-1.8c-1.5-1.6-1.4-3.8-1.3-5.8l0-0.8c0.1-2.2,0.2-4.6,0.4-6.8	c0.2-2.9,1.3-6.3,5.2-6.3c1.4,0,2.8,0.4,4,1.1C10.8,2.7,11,2.8,11.2,3c0.1,0.1,0.3,0.3,0.6,0.5c0.1,0.1,0.2,0.1,0.2,0.2	c0.3,0.2,0.5,0.5,0.8,0.7l0.2,0.2c0.6,0.6,1.3,1.2,1.9,1.8c2,1.9,3.9,4,5.7,6.2c0.3,0.3,0.5,0.7,0.8,1c-0.2,2.1-0.3,4.5-0.3,7l0,0.7	c-0.1,0.1-0.3,0.1-0.4,0.2c-0.1,0-0.2,0.1-0.3,0.1l-0.3,0.1c-0.1,0.1-0.3,0.2-0.3,0.3c0,0.2,0,0.3,0.2,0.4c0.3,0.2,0.5,0.4,0.8,0.7	c0.1,0.1,0.2,0.3,0.3,0.4c0.1,1.9,0.2,3.8,0.4,5.4C21.1,29.9,20.5,31,19.9,32z M21.5,22.4c-0.1-0.1-0.2-0.2-0.3-0.3	c0.1-0.1,0.3-0.1,0.4-0.2c0,0.2,0,0.4,0,0.7C21.5,22.5,21.5,22.5,21.5,22.4z M23.5,32.3c-0.5-1.6-1-5.6-1-11.8s0.6-10.2,1-11.8	c0.5,1.6,1,5.6,1,11.8S23.9,30.7,23.5,32.3z M25.3,21.9c0.1,0.1,0.3,0.1,0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c0,0-0.1,0.1-0.1,0.1	C25.3,22.3,25.3,22.1,25.3,21.9z M44.6,29.3c-0.2,0.9-0.6,1.8-1,2.7c-0.4,1.1-1.3,2.1-2.2,2.6C40.3,35,39.1,35,38,34.5	c-0.4-0.1-0.7-0.2-1.2-0.4c-0.4-0.2-0.8-0.1-1,0.3c-0.1,0.3-0.2,0.7-0.3,1c-0.1,0.4-0.3,0.7-0.4,1.1c-0.4,0.9-1.2,1.2-1.7,1.3	c-1,0.2-2.1,0-3-0.6c-1-0.8-1.8-1.9-2.3-3.1c-0.3-0.7-0.7-1.3-1.1-2c-0.6-1.1-1.2-2.2-1.6-3.2c0.2-1.6,0.3-3.5,0.4-5.4	c0.1-0.1,0.2-0.3,0.3-0.4c0.2-0.3,0.5-0.5,0.8-0.7c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2-0.1-0.3-0.3-0.3l-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1	c-0.1-0.1-0.3-0.1-0.4-0.2c0-0.2,0-0.5,0-0.7c0-2.5-0.1-4.9-0.3-7c0.3-0.4,0.5-0.7,0.8-1c1.8-2.2,3.7-4.3,5.7-6.2	c0.6-0.6,1.2-1.2,1.9-1.8L34,4.3c0.3-0.2,0.5-0.5,0.8-0.7c0,0,0.1-0.1,0.2-0.1c0.3-0.2,0.5-0.4,0.7-0.5c0.2-0.1,0.4-0.3,0.6-0.4	c1.2-0.7,2.6-1.1,4-1.1c3.9,0,5,3.5,5.3,6.3c0.2,2.1,0.3,4.3,0.4,6.4l0.1,1.3c0.1,2,0.2,4.2-1.3,5.7c-1.3,1.1-2.9,1.7-4.6,1.8	c-1.2,0.1-2.4,0.2-3.6,0.2c-0.2,0-0.4,0.1-0.4,0.3c0,0.2,0.1,0.4,0.2,0.5l0.9,0.4c0.4,0.2,0.9,0.4,1.3,0.6l0.4,0.2	c0.8,0.3,1.6,0.7,2.3,1c0.3,0.2,0.7,0.3,1.1,0.5c0.4,0.2,0.8,0.3,1.1,0.5l0.2,0.1c0.6,0.3,1,0.5,1.1,0.9	C44.8,28.4,44.8,28.9,44.6,29.3z" /></svg>') no-repeat center center;
  height: 42px;
  top: 21px;
}
#product .category_choice ul li a.material1::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.4 48.4"><path fill="%23000" d="M44.3,17.8c-0.8-0.4-1.7-0.5-2.6-0.6c-0.2,0-0.5,0-0.7,0c1.1-1,1.9-2.3,2.2-3.8c0.4-1.8,0.1-3.7-0.9-5.3	C40.3,4.9,35.9,4,32.7,6c-0.4,0.2-0.7,0.5-1,0.8c-0.2,0.2-0.3,0.3-0.5,0.5c0.1-1.5-0.3-3-1.2-4.3c-1.1-1.6-2.6-2.6-4.5-3	c-3.2-0.6-6.3,1-7.7,4c-0.4,0.8-0.6,1.7-0.6,2.6c0,0.2,0,0.5,0,0.7c-1-1.1-2.4-1.9-3.9-2.2c-1.8-0.4-3.7,0-5.3,1.1	c-2.7,1.8-3.8,5.2-2.6,8.3c0.3,0.8,0.8,1.6,1.4,2.2c0.2,0.2,0.3,0.3,0.5,0.5c-1.5-0.1-3,0.3-4.3,1.2c-1.6,1.1-2.6,2.6-3,4.5	c-0.6,3.2,1,6.3,4,7.7c0.8,0.4,1.7,0.5,2.6,0.6c0.1,0,0.2,0,0.2,0c0.2,0,0.3,0,0.5,0c-1.1,1-1.9,2.4-2.2,3.9c-0.4,1.8,0,3.7,1.1,5.3	c1.3,2,3.5,3.1,5.8,3.1c0.8,0,1.6-0.1,2.4-0.4c0.8-0.3,1.6-0.8,2.2-1.4c0.2-0.2,0.3-0.3,0.5-0.5c-0.2,3.4,2.2,6.6,5.7,7.2	c0.4,0.1,0.9,0.1,1.3,0.1c2.7,0,5.2-1.6,6.4-4.1c0.4-0.8,0.5-1.7,0.6-2.6c0-0.2,0-0.5,0-0.7c1,1.1,2.3,1.9,3.8,2.2	c0.5,0.1,1,0.2,1.5,0.2c1.3,0,2.6-0.4,3.8-1.1c1.6-1,2.7-2.6,3.1-4.4c0.4-1.8,0.1-3.7-0.9-5.3c-0.2-0.4-0.5-0.7-0.8-1	c-0.2-0.2-0.3-0.3-0.5-0.5c0.1,0,0.2,0,0.4,0c1.4,0,2.7-0.4,3.9-1.2c1.6-1.1,2.6-2.6,3-4.5C48.9,22.3,47.3,19.1,44.3,17.8z	 M32.3,7.5c0.3-0.3,0.6-0.5,0.9-0.7c2.8-1.8,6.6-1,8.4,1.8c0.9,1.4,1.2,3,0.8,4.6s-1.3,2.9-2.6,3.8c-1,0.6-2.1,1.1-3.2,1.4l-7.1,2.7	c-0.4-0.9-1.1-1.7-2-2.1l0.4-1.1c0.5-1.5,1.1-3,1.6-4.5c0.1-0.3,0.2-0.7,0.3-1C30.4,10.6,30.9,8.8,32.3,7.5z M29.1,26.3l-0.3-0.1	l-0.2,0.5c-0.3,1-1.1,1.7-2.1,2L26,28.8l0.1,0.3L26,28.9l-0.4,0.2c-0.9,0.5-2,0.4-2.9-0.1l-0.5-0.3L22,29.1l0.1-0.3l-0.5-0.2	c-1-0.3-1.7-1.1-2-2.1L19.5,26l-0.3,0.1l0.3-0.1l-0.2-0.4c-0.5-0.9-0.4-2,0.1-2.9l0.3-0.5L19.3,22l0.3,0.1l0.2-0.5	c0.3-1,1.1-1.7,2.1-2l0.5-0.1l-0.1-0.3l0.1,0.3l0.4-0.2c0.9-0.5,2-0.4,2.9,0.1l0.5,0.3l0.1-0.3l-0.1,0.3l0.5,0.2	c1,0.3,1.7,1.1,2,2.1l0.1,0.5l0.3-0.1l-0.3,0.1l0.2,0.4c0.5,0.9,0.4,2-0.1,2.9l-0.3,0.5L29.1,26.3z M18.6,4.5	c1.2-2.5,3.9-3.9,6.7-3.4c1.6,0.3,3,1.2,3.9,2.6c0.9,1.3,1.2,3,0.9,4.5c-0.3,1.1-0.7,2.2-1.3,3.3l-3.1,6.9c-0.5-0.2-1-0.3-1.5-0.3	c-0.5,0-0.9,0.1-1.4,0.2l-0.8-1.6c-0.6-1.3-1.2-2.5-1.8-3.7c-0.2-0.3-0.3-0.6-0.5-0.9c-0.9-1.7-1.7-3.4-1.7-5.3	C18.2,5.9,18.3,5.2,18.6,4.5z M6.3,14.2c-1-2.6,0-5.6,2.3-7.1c1-0.7,2.2-1,3.4-1c0.4,0,0.8,0,1.2,0.1c1.6,0.3,3,1.2,3.9,2.5	c0.6,1,1.1,2.1,1.4,3.2l2.7,7.1c-0.9,0.4-1.7,1.1-2.1,2l-1-0.4c-1.5-0.5-3-1.1-4.6-1.6c-0.3-0.1-0.7-0.2-1-0.3	c-1.8-0.6-3.6-1.2-4.9-2.6C7,15.5,6.6,14.9,6.3,14.2z M6.7,30.2c-0.8,0-1.5-0.2-2.2-0.5c-2.5-1.2-4-3.9-3.4-6.7	c0.3-1.6,1.2-3,2.6-3.9c1-0.7,2.2-1.1,3.4-1.1c0.4,0,0.8,0,1.1,0.1c1.1,0.3,2.2,0.7,3.3,1.3l6.9,3.1c-0.4,0.9-0.4,2-0.1,2.9	l-1.3,0.6c-1.3,0.6-2.7,1.3-4,1.9c-0.3,0.2-0.6,0.3-0.9,0.5C10.2,29.5,8.5,30.3,6.7,30.2z M16.1,40.9c-0.6,0.5-1.2,0.9-1.9,1.2	c-2.6,1-5.6,0-7.1-2.3c-0.9-1.3-1.2-3-0.9-4.6c0.3-1.6,1.2-3,2.5-3.9c1-0.6,2.1-1.1,3.2-1.4l7.1-2.7c0.4,0.9,1.1,1.7,2,2.1l-0.3,0.7	c-0.6,1.6-1.1,3.2-1.7,4.9c-0.1,0.3-0.2,0.7-0.3,1C18,37.8,17.5,39.6,16.1,40.9z M29.7,43.9c-1.2,2.5-3.9,4-6.7,3.4	c-3.3-0.6-5.5-3.8-4.8-7.1c0.3-1.1,0.7-2.2,1.3-3.3l3.1-6.9c0.9,0.4,2,0.4,2.9,0.1l0.5,1.1c0.7,1.4,1.3,2.8,2,4.2	c0.2,0.3,0.3,0.6,0.5,0.9c0.9,1.7,1.7,3.4,1.7,5.3C30.2,42.5,30,43.2,29.7,43.9z M41.6,33.2c0.9,1.4,1.2,3,0.8,4.6	c-0.3,1.6-1.3,2.9-2.7,3.8c-1.4,0.9-3,1.2-4.6,0.8c-1.6-0.3-2.9-1.3-3.8-2.6c-0.6-1-1.1-2.1-1.4-3.2l-2.7-7.1c0.9-0.4,1.7-1.1,2.1-2	l1.1,0.4c1.5,0.5,3,1.1,4.5,1.6c0.3,0.1,0.7,0.2,1,0.3c1.9,0.6,3.6,1.2,4.9,2.6C41.1,32.6,41.4,32.9,41.6,33.2z M47.4,25.3	c-0.6,3.3-3.8,5.5-7.1,4.8c-1.1-0.3-2.2-0.7-3.3-1.3l-6.9-3.1c0.4-0.9,0.4-2,0.1-2.9l1.1-0.5c1.4-0.7,2.8-1.3,4.2-2	c0.3-0.2,0.6-0.3,1-0.5c1.7-0.9,3.4-1.7,5.3-1.7c0.8,0,1.5,0.2,2.2,0.5C46.5,19.8,47.9,22.6,47.4,25.3z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.4 48.4"><path fill="%23000" d="M44.3,17.8c-0.8-0.4-1.7-0.5-2.6-0.6c-0.2,0-0.5,0-0.7,0c1.1-1,1.9-2.3,2.2-3.8c0.4-1.8,0.1-3.7-0.9-5.3	C40.3,4.9,35.9,4,32.7,6c-0.4,0.2-0.7,0.5-1,0.8c-0.2,0.2-0.3,0.3-0.5,0.5c0.1-1.5-0.3-3-1.2-4.3c-1.1-1.6-2.6-2.6-4.5-3	c-3.2-0.6-6.3,1-7.7,4c-0.4,0.8-0.6,1.7-0.6,2.6c0,0.2,0,0.5,0,0.7c-1-1.1-2.4-1.9-3.9-2.2c-1.8-0.4-3.7,0-5.3,1.1	c-2.7,1.8-3.8,5.2-2.6,8.3c0.3,0.8,0.8,1.6,1.4,2.2c0.2,0.2,0.3,0.3,0.5,0.5c-1.5-0.1-3,0.3-4.3,1.2c-1.6,1.1-2.6,2.6-3,4.5	c-0.6,3.2,1,6.3,4,7.7c0.8,0.4,1.7,0.5,2.6,0.6c0.1,0,0.2,0,0.2,0c0.2,0,0.3,0,0.5,0c-1.1,1-1.9,2.4-2.2,3.9c-0.4,1.8,0,3.7,1.1,5.3	c1.3,2,3.5,3.1,5.8,3.1c0.8,0,1.6-0.1,2.4-0.4c0.8-0.3,1.6-0.8,2.2-1.4c0.2-0.2,0.3-0.3,0.5-0.5c-0.2,3.4,2.2,6.6,5.7,7.2	c0.4,0.1,0.9,0.1,1.3,0.1c2.7,0,5.2-1.6,6.4-4.1c0.4-0.8,0.5-1.7,0.6-2.6c0-0.2,0-0.5,0-0.7c1,1.1,2.3,1.9,3.8,2.2	c0.5,0.1,1,0.2,1.5,0.2c1.3,0,2.6-0.4,3.8-1.1c1.6-1,2.7-2.6,3.1-4.4c0.4-1.8,0.1-3.7-0.9-5.3c-0.2-0.4-0.5-0.7-0.8-1	c-0.2-0.2-0.3-0.3-0.5-0.5c0.1,0,0.2,0,0.4,0c1.4,0,2.7-0.4,3.9-1.2c1.6-1.1,2.6-2.6,3-4.5C48.9,22.3,47.3,19.1,44.3,17.8z	 M32.3,7.5c0.3-0.3,0.6-0.5,0.9-0.7c2.8-1.8,6.6-1,8.4,1.8c0.9,1.4,1.2,3,0.8,4.6s-1.3,2.9-2.6,3.8c-1,0.6-2.1,1.1-3.2,1.4l-7.1,2.7	c-0.4-0.9-1.1-1.7-2-2.1l0.4-1.1c0.5-1.5,1.1-3,1.6-4.5c0.1-0.3,0.2-0.7,0.3-1C30.4,10.6,30.9,8.8,32.3,7.5z M29.1,26.3l-0.3-0.1	l-0.2,0.5c-0.3,1-1.1,1.7-2.1,2L26,28.8l0.1,0.3L26,28.9l-0.4,0.2c-0.9,0.5-2,0.4-2.9-0.1l-0.5-0.3L22,29.1l0.1-0.3l-0.5-0.2	c-1-0.3-1.7-1.1-2-2.1L19.5,26l-0.3,0.1l0.3-0.1l-0.2-0.4c-0.5-0.9-0.4-2,0.1-2.9l0.3-0.5L19.3,22l0.3,0.1l0.2-0.5	c0.3-1,1.1-1.7,2.1-2l0.5-0.1l-0.1-0.3l0.1,0.3l0.4-0.2c0.9-0.5,2-0.4,2.9,0.1l0.5,0.3l0.1-0.3l-0.1,0.3l0.5,0.2	c1,0.3,1.7,1.1,2,2.1l0.1,0.5l0.3-0.1l-0.3,0.1l0.2,0.4c0.5,0.9,0.4,2-0.1,2.9l-0.3,0.5L29.1,26.3z M18.6,4.5	c1.2-2.5,3.9-3.9,6.7-3.4c1.6,0.3,3,1.2,3.9,2.6c0.9,1.3,1.2,3,0.9,4.5c-0.3,1.1-0.7,2.2-1.3,3.3l-3.1,6.9c-0.5-0.2-1-0.3-1.5-0.3	c-0.5,0-0.9,0.1-1.4,0.2l-0.8-1.6c-0.6-1.3-1.2-2.5-1.8-3.7c-0.2-0.3-0.3-0.6-0.5-0.9c-0.9-1.7-1.7-3.4-1.7-5.3	C18.2,5.9,18.3,5.2,18.6,4.5z M6.3,14.2c-1-2.6,0-5.6,2.3-7.1c1-0.7,2.2-1,3.4-1c0.4,0,0.8,0,1.2,0.1c1.6,0.3,3,1.2,3.9,2.5	c0.6,1,1.1,2.1,1.4,3.2l2.7,7.1c-0.9,0.4-1.7,1.1-2.1,2l-1-0.4c-1.5-0.5-3-1.1-4.6-1.6c-0.3-0.1-0.7-0.2-1-0.3	c-1.8-0.6-3.6-1.2-4.9-2.6C7,15.5,6.6,14.9,6.3,14.2z M6.7,30.2c-0.8,0-1.5-0.2-2.2-0.5c-2.5-1.2-4-3.9-3.4-6.7	c0.3-1.6,1.2-3,2.6-3.9c1-0.7,2.2-1.1,3.4-1.1c0.4,0,0.8,0,1.1,0.1c1.1,0.3,2.2,0.7,3.3,1.3l6.9,3.1c-0.4,0.9-0.4,2-0.1,2.9	l-1.3,0.6c-1.3,0.6-2.7,1.3-4,1.9c-0.3,0.2-0.6,0.3-0.9,0.5C10.2,29.5,8.5,30.3,6.7,30.2z M16.1,40.9c-0.6,0.5-1.2,0.9-1.9,1.2	c-2.6,1-5.6,0-7.1-2.3c-0.9-1.3-1.2-3-0.9-4.6c0.3-1.6,1.2-3,2.5-3.9c1-0.6,2.1-1.1,3.2-1.4l7.1-2.7c0.4,0.9,1.1,1.7,2,2.1l-0.3,0.7	c-0.6,1.6-1.1,3.2-1.7,4.9c-0.1,0.3-0.2,0.7-0.3,1C18,37.8,17.5,39.6,16.1,40.9z M29.7,43.9c-1.2,2.5-3.9,4-6.7,3.4	c-3.3-0.6-5.5-3.8-4.8-7.1c0.3-1.1,0.7-2.2,1.3-3.3l3.1-6.9c0.9,0.4,2,0.4,2.9,0.1l0.5,1.1c0.7,1.4,1.3,2.8,2,4.2	c0.2,0.3,0.3,0.6,0.5,0.9c0.9,1.7,1.7,3.4,1.7,5.3C30.2,42.5,30,43.2,29.7,43.9z M41.6,33.2c0.9,1.4,1.2,3,0.8,4.6	c-0.3,1.6-1.3,2.9-2.7,3.8c-1.4,0.9-3,1.2-4.6,0.8c-1.6-0.3-2.9-1.3-3.8-2.6c-0.6-1-1.1-2.1-1.4-3.2l-2.7-7.1c0.9-0.4,1.7-1.1,2.1-2	l1.1,0.4c1.5,0.5,3,1.1,4.5,1.6c0.3,0.1,0.7,0.2,1,0.3c1.9,0.6,3.6,1.2,4.9,2.6C41.1,32.6,41.4,32.9,41.6,33.2z M47.4,25.3	c-0.6,3.3-3.8,5.5-7.1,4.8c-1.1-0.3-2.2-0.7-3.3-1.3l-6.9-3.1c0.4-0.9,0.4-2,0.1-2.9l1.1-0.5c1.4-0.7,2.8-1.3,4.2-2	c0.3-0.2,0.6-0.3,1-0.5c1.7-0.9,3.4-1.7,5.3-1.7c0.8,0,1.5,0.2,2.2,0.5C46.5,19.8,47.9,22.6,47.4,25.3z" /></svg>') no-repeat center center;
  height: 47px;
  top: 18px;
}
#product .category_choice ul li a.material2::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49 38.745"><path fill="%23000" d="M15.976,16.469c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576.872,0,1.641-.438,2.107-1.102.467.664,1.235,1.102,2.106,1.102,1.421,0,2.576-1.156,2.576-2.576,0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M24.356,21.772c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M32.207,16.196c-.259,0-.469.21-.469.469,0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.469-.469Z"/><path class="cls-1" d="M45.787,5.234c.486-.541.791-1.249.791-2.033,0-1.686-1.372-3.058-3.058-3.058-.54,0-1.059.14-1.522.407-.527-.357-1.152-.551-1.793-.551-1.126,0-2.156.59-2.732,1.534-.336-.099-.684-.149-1.039-.149-2.019,0-3.662,1.642-3.662,3.661,0,.062.002.124.005.187-1.101.729-1.774,1.966-1.774,3.298,0,.028,0,.057.001.086-.669.163-1.282.5-1.781.977-.645-.427-1.405-.658-2.184-.658-.486,0-.968.09-1.419.263-.618-1.428-2.041-2.385-3.63-2.385-.735,0-1.455.206-2.076.588-.742-.98-1.909-1.572-3.155-1.572-1.131,0-2.198.484-2.943,1.314-.693-.546-1.541-.841-2.438-.841-1.567,0-2.991.948-3.617,2.355-.357-.104-.727-.157-1.104-.157-2.181,0-3.954,1.774-3.954,3.955,0,.334.041.663.123.982-1.643.493-2.825,2.035-2.825,3.79,0,1.404.736,2.682,1.916,3.39-.349.599-.532,1.275-.532,1.983,0,2.18,1.774,3.954,3.955,3.954h.045c.158.435.395.825.681,1.17l1.46,8.327c.018.104.051.206.097.3l.849,1.75c.189.39.591.642,1.025.642h2.677c.04,0,.077-.013.116-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.634-3.628c-.045-.254-.288-.426-.543-.381-.255.045-.426.287-.382.543l.563,3.221h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.082.083.062.173.042.219-.019.046-.069.123-.185.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.966-1.156-7.118c.043-.022.088-.039.13-.062.679,1.273,2.017,2.095,3.49,2.095.79,0,1.555-.236,2.204-.671.746.925,1.862,1.464,3.073,1.464,1.125,0,2.181-.475,2.925-1.294.536.529,1.205.882,1.936,1.037l.888,4.767c.018.1.05.197.095.289l.849,1.753c.189.39.592.642,1.026.642h2.677c.04,0,.076-.013.115-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.705-4.034c-.045-.256-.288-.427-.543-.381-.255.044-.426.287-.382.542l.634,3.628h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.081.083.061.173.042.219-.02.046-.069.123-.186.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.967-.919-5.575c.473.193.98.302,1.496.302,1.63,0,3.091-1.013,3.679-2.505.041.001.083.001.124.001,2.181,0,3.955-1.774,3.955-3.954,0-.393-.057-.778-.17-1.148,1.32-.665,2.178-2.031,2.178-3.534,0-.342-.043-.679-.129-1.006.85-.65,1.348-1.648,1.348-2.736,0-.927-.361-1.792-1.006-2.435.213-.33.355-.698.435-1.08.398.124.76.178,1.083.178.625,0,1.121-.178,1.532-.325.557-.2.818-.279,1.159-.063.495.312,1.64.566,2.635.156.447-.185.998-.57,1.325-1.347,0,0,0,0,0,0h0c.068-.162.129-.334.174-.531.455-1.988-2.058-4.163-3.159-5.006ZM11.049,35.594h-.979c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219s-.069.123-.186.123h-2.677c-.076,0-.147-.044-.18-.113l-.849-1.75c-.008-.017-.014-.035-.017-.053l-1.27-7.242c.574.32,1.228.507,1.921.507.303,0,.598-.039.887-.105l1.062,6.543ZM30.363,37.683c-.02.046-.069.123-.186.123h-2.677c-.077,0-.148-.044-.181-.113l-.85-1.752c-.008-.017-.013-.034-.017-.051l-.841-4.518c.975-.034,1.874-.427,2.567-1.085l.875,5.308h-.978c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219ZM47.087,11.251c-.694.286-1.512.084-1.777-.083-.742-.468-1.398-.233-1.976-.025-.614.22-1.253.439-2.251.052-.053-.515-.231-1.007-.517-1.437.451-1.114.375-2.867-.251-5.026-.073-.248-.332-.392-.582-.319-.249.072-.392.332-.32.581.828,2.854.501,4.426-.031,4.905-.207.186-.462.214-.779.085-1.239-.506-.806-3.879-.556-5.02.055-.253-.105-.504-.358-.559-.253-.055-.503.105-.559.358-.116.529-1.069,5.195,1.118,6.089.241.099.482.148.714.148.375,0,.725-.13,1.016-.38.124.282.195.585.195.903,0,.546-.199,1.074-.561,1.488-.086.098-.127.226-.114.355.013.129.079.247.182.326.628.48.988,1.207.988,1.996,0,.882-.45,1.684-1.205,2.144-.191.117-.273.351-.196.561.121.332.182.68.182,1.035,0,1.267-.801,2.408-1.993,2.838-.122.045-.221.137-.272.257-.051.119-.05.254.002.374.169.384.255.792.255,1.213,0,1.663-1.353,3.016-3.017,3.016-.126,0-.257-.008-.39-.025-.231-.03-.449.113-.512.337-.366,1.291-1.559,2.193-2.902,2.193-.696,0-1.375-.243-1.913-.684-.104-.086-.238-.122-.371-.101-.132.021-.249.098-.322.211-.559.872-1.508,1.392-2.541,1.392-.958,0-1.838-.44-2.414-1.208-.092-.121-.237-.193-.389-.187-.152.005-.293.083-.377.21-.562.845-1.501,1.35-2.514,1.35-1.056,0-2.018-.539-2.572-1.441-.073-.119-.193-.198-.33-.219-.137-.021-.276.021-.38.112-.551.486-1.26.754-1.994.754-1.275,0-2.417-.807-2.843-2.008-.05-.142-.165-.25-.309-.293-.145-.043-.3-.014-.419.078-.531.407-1.165.622-1.834.622-1.38,0-2.582-.932-2.923-2.267-.057-.227-.273-.376-.505-.351-.117.013-.226.019-.334.019-1.663,0-3.017-1.353-3.017-3.016,0-.685.225-1.331.649-1.869.091-.115.123-.265.086-.407s-.137-.258-.272-.316c-1.122-.473-1.847-1.564-1.847-2.781,0-1.481,1.102-2.762,2.564-2.982.143-.021.268-.107.338-.233.071-.125.081-.276.026-.41-.15-.364-.226-.751-.226-1.147,0-1.663,1.353-3.017,3.016-3.017.414,0,.817.084,1.196.248.123.053.263.051.384-.005.121-.057.213-.163.251-.291.379-1.265,1.567-2.15,2.89-2.15.82,0,1.588.324,2.161.913.098.101.236.152.377.14.14-.012.268-.087.347-.203.563-.828,1.497-1.323,2.496-1.323,1.082,0,2.087.586,2.623,1.528.068.12.186.204.322.229.136.026.276-.011.382-.098.543-.442,1.201-.676,1.904-.676,1.353,0,2.549.911,2.907,2.214.038.139.138.253.271.308.133.055.284.047.41-.022.445-.247.95-.378,1.461-.378.707,0,1.396.25,1.937.705.095.08.218.119.343.107.124-.011.239-.07.319-.166.489-.584,1.174-.958,1.926-1.054.124-.016.237-.08.313-.18.076-.099.109-.225.093-.349-.019-.138-.028-.275-.028-.407,0-1.096.596-2.108,1.557-2.639.169-.094.263-.283.237-.474-.017-.126-.026-.252-.026-.372,0-1.501,1.221-2.723,2.723-2.723.375,0,.738.074,1.079.222.238.103.513-.007.617-.244.359-.828,1.174-1.363,2.076-1.363.537,0,1.059.193,1.468.544.166.142.409.151.586.02.369-.275.805-.42,1.262-.42,1.168,0,2.12.95,2.12,2.119s-.951,2.119-2.12,2.119c-.456,0-.893-.145-1.262-.419-.208-.156-.502-.112-.657.096-.154.208-.111.502.096.657.532.396,1.162.605,1.822.605.553,0,1.066-.159,1.515-.418,1.068.791,3.081,2.587,3.021,3.96l-.535-.317c-.223-.131-.511-.058-.642.165-.132.223-.059.51.165.643l.698.413c-.165.244-.38.431-.654.544Z"/><path class="cls-1" d="M43.081,6.784h-.827c-.259,0-.469.21-.469.469s.21.469.469.469h.827c.259,0,.469-.211.469-.469s-.21-.469-.469-.469Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49 38.745"><path fill="%23000" d="M15.976,16.469c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576.872,0,1.641-.438,2.107-1.102.467.664,1.235,1.102,2.106,1.102,1.421,0,2.576-1.156,2.576-2.576,0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M24.356,21.772c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M32.207,16.196c-.259,0-.469.21-.469.469,0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.469-.469Z"/><path class="cls-1" d="M45.787,5.234c.486-.541.791-1.249.791-2.033,0-1.686-1.372-3.058-3.058-3.058-.54,0-1.059.14-1.522.407-.527-.357-1.152-.551-1.793-.551-1.126,0-2.156.59-2.732,1.534-.336-.099-.684-.149-1.039-.149-2.019,0-3.662,1.642-3.662,3.661,0,.062.002.124.005.187-1.101.729-1.774,1.966-1.774,3.298,0,.028,0,.057.001.086-.669.163-1.282.5-1.781.977-.645-.427-1.405-.658-2.184-.658-.486,0-.968.09-1.419.263-.618-1.428-2.041-2.385-3.63-2.385-.735,0-1.455.206-2.076.588-.742-.98-1.909-1.572-3.155-1.572-1.131,0-2.198.484-2.943,1.314-.693-.546-1.541-.841-2.438-.841-1.567,0-2.991.948-3.617,2.355-.357-.104-.727-.157-1.104-.157-2.181,0-3.954,1.774-3.954,3.955,0,.334.041.663.123.982-1.643.493-2.825,2.035-2.825,3.79,0,1.404.736,2.682,1.916,3.39-.349.599-.532,1.275-.532,1.983,0,2.18,1.774,3.954,3.955,3.954h.045c.158.435.395.825.681,1.17l1.46,8.327c.018.104.051.206.097.3l.849,1.75c.189.39.591.642,1.025.642h2.677c.04,0,.077-.013.116-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.634-3.628c-.045-.254-.288-.426-.543-.381-.255.045-.426.287-.382.543l.563,3.221h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.082.083.062.173.042.219-.019.046-.069.123-.185.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.966-1.156-7.118c.043-.022.088-.039.13-.062.679,1.273,2.017,2.095,3.49,2.095.79,0,1.555-.236,2.204-.671.746.925,1.862,1.464,3.073,1.464,1.125,0,2.181-.475,2.925-1.294.536.529,1.205.882,1.936,1.037l.888,4.767c.018.1.05.197.095.289l.849,1.753c.189.39.592.642,1.026.642h2.677c.04,0,.076-.013.115-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.705-4.034c-.045-.256-.288-.427-.543-.381-.255.044-.426.287-.382.542l.634,3.628h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.081.083.061.173.042.219-.02.046-.069.123-.186.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.967-.919-5.575c.473.193.98.302,1.496.302,1.63,0,3.091-1.013,3.679-2.505.041.001.083.001.124.001,2.181,0,3.955-1.774,3.955-3.954,0-.393-.057-.778-.17-1.148,1.32-.665,2.178-2.031,2.178-3.534,0-.342-.043-.679-.129-1.006.85-.65,1.348-1.648,1.348-2.736,0-.927-.361-1.792-1.006-2.435.213-.33.355-.698.435-1.08.398.124.76.178,1.083.178.625,0,1.121-.178,1.532-.325.557-.2.818-.279,1.159-.063.495.312,1.64.566,2.635.156.447-.185.998-.57,1.325-1.347,0,0,0,0,0,0h0c.068-.162.129-.334.174-.531.455-1.988-2.058-4.163-3.159-5.006ZM11.049,35.594h-.979c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219s-.069.123-.186.123h-2.677c-.076,0-.147-.044-.18-.113l-.849-1.75c-.008-.017-.014-.035-.017-.053l-1.27-7.242c.574.32,1.228.507,1.921.507.303,0,.598-.039.887-.105l1.062,6.543ZM30.363,37.683c-.02.046-.069.123-.186.123h-2.677c-.077,0-.148-.044-.181-.113l-.85-1.752c-.008-.017-.013-.034-.017-.051l-.841-4.518c.975-.034,1.874-.427,2.567-1.085l.875,5.308h-.978c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219ZM47.087,11.251c-.694.286-1.512.084-1.777-.083-.742-.468-1.398-.233-1.976-.025-.614.22-1.253.439-2.251.052-.053-.515-.231-1.007-.517-1.437.451-1.114.375-2.867-.251-5.026-.073-.248-.332-.392-.582-.319-.249.072-.392.332-.32.581.828,2.854.501,4.426-.031,4.905-.207.186-.462.214-.779.085-1.239-.506-.806-3.879-.556-5.02.055-.253-.105-.504-.358-.559-.253-.055-.503.105-.559.358-.116.529-1.069,5.195,1.118,6.089.241.099.482.148.714.148.375,0,.725-.13,1.016-.38.124.282.195.585.195.903,0,.546-.199,1.074-.561,1.488-.086.098-.127.226-.114.355.013.129.079.247.182.326.628.48.988,1.207.988,1.996,0,.882-.45,1.684-1.205,2.144-.191.117-.273.351-.196.561.121.332.182.68.182,1.035,0,1.267-.801,2.408-1.993,2.838-.122.045-.221.137-.272.257-.051.119-.05.254.002.374.169.384.255.792.255,1.213,0,1.663-1.353,3.016-3.017,3.016-.126,0-.257-.008-.39-.025-.231-.03-.449.113-.512.337-.366,1.291-1.559,2.193-2.902,2.193-.696,0-1.375-.243-1.913-.684-.104-.086-.238-.122-.371-.101-.132.021-.249.098-.322.211-.559.872-1.508,1.392-2.541,1.392-.958,0-1.838-.44-2.414-1.208-.092-.121-.237-.193-.389-.187-.152.005-.293.083-.377.21-.562.845-1.501,1.35-2.514,1.35-1.056,0-2.018-.539-2.572-1.441-.073-.119-.193-.198-.33-.219-.137-.021-.276.021-.38.112-.551.486-1.26.754-1.994.754-1.275,0-2.417-.807-2.843-2.008-.05-.142-.165-.25-.309-.293-.145-.043-.3-.014-.419.078-.531.407-1.165.622-1.834.622-1.38,0-2.582-.932-2.923-2.267-.057-.227-.273-.376-.505-.351-.117.013-.226.019-.334.019-1.663,0-3.017-1.353-3.017-3.016,0-.685.225-1.331.649-1.869.091-.115.123-.265.086-.407s-.137-.258-.272-.316c-1.122-.473-1.847-1.564-1.847-2.781,0-1.481,1.102-2.762,2.564-2.982.143-.021.268-.107.338-.233.071-.125.081-.276.026-.41-.15-.364-.226-.751-.226-1.147,0-1.663,1.353-3.017,3.016-3.017.414,0,.817.084,1.196.248.123.053.263.051.384-.005.121-.057.213-.163.251-.291.379-1.265,1.567-2.15,2.89-2.15.82,0,1.588.324,2.161.913.098.101.236.152.377.14.14-.012.268-.087.347-.203.563-.828,1.497-1.323,2.496-1.323,1.082,0,2.087.586,2.623,1.528.068.12.186.204.322.229.136.026.276-.011.382-.098.543-.442,1.201-.676,1.904-.676,1.353,0,2.549.911,2.907,2.214.038.139.138.253.271.308.133.055.284.047.41-.022.445-.247.95-.378,1.461-.378.707,0,1.396.25,1.937.705.095.08.218.119.343.107.124-.011.239-.07.319-.166.489-.584,1.174-.958,1.926-1.054.124-.016.237-.08.313-.18.076-.099.109-.225.093-.349-.019-.138-.028-.275-.028-.407,0-1.096.596-2.108,1.557-2.639.169-.094.263-.283.237-.474-.017-.126-.026-.252-.026-.372,0-1.501,1.221-2.723,2.723-2.723.375,0,.738.074,1.079.222.238.103.513-.007.617-.244.359-.828,1.174-1.363,2.076-1.363.537,0,1.059.193,1.468.544.166.142.409.151.586.02.369-.275.805-.42,1.262-.42,1.168,0,2.12.95,2.12,2.119s-.951,2.119-2.12,2.119c-.456,0-.893-.145-1.262-.419-.208-.156-.502-.112-.657.096-.154.208-.111.502.096.657.532.396,1.162.605,1.822.605.553,0,1.066-.159,1.515-.418,1.068.791,3.081,2.587,3.021,3.96l-.535-.317c-.223-.131-.511-.058-.642.165-.132.223-.059.51.165.643l.698.413c-.165.244-.38.431-.654.544Z"/><path class="cls-1" d="M43.081,6.784h-.827c-.259,0-.469.21-.469.469s.21.469.469.469h.827c.259,0,.469-.211.469-.469s-.21-.469-.469-.469Z" /></svg>') no-repeat center center;
  height: 44px;
  top: 18px;
}
#product .category_choice ul li a.material3::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41.251 43.215"><path fill="%23000" d="M20.625,11.188l-.31.3c-.191.184-4.678,4.569-4.678,10.09s4.487,9.906,4.678,10.09l.31.3.31-.3c.191-.184,4.679-4.569,4.679-10.09s-4.488-9.906-4.679-10.09Zm4.1,10.388c0,4.325-3.094,8.035-4.1,9.124-1-1.088-4.1-4.792-4.1-9.124s3.093-8.034,4.1-9.124C21.629,13.542,24.722,17.251,24.722,21.576Z" /><path fill="%23000" d="M40.838,22.077c-.256-.073-6.3-1.768-11.079.993s-6.333,8.84-6.4,9.1l-.1.417.413.12a15.938,15.938,0,0,0,1.949.39l-4.191,1.693.838,7.535H18.346l.837-7.535-4.041-1.632A16.953,16.953,0,0,0,17.58,32.7l.413-.12-.1-.417c-.065-.257-1.618-6.336-6.4-9.1S.668,22,.413,22.077L0,22.2l.1.418c.064.257,1.616,6.336,6.4,9.1a13.022,13.022,0,0,0,6.506,1.574l.066,0,5.146,2.078-.872,7.854h5.917l-.873-7.854,5.183-2.093c.219.008.438.017.668.017a13.022,13.022,0,0,0,6.506-1.574c4.781-2.761,6.334-8.84,6.4-9.1l.1-.418ZM6.949,30.938C3.2,28.775,1.537,24.242,1.1,22.829c1.442-.325,6.2-1.149,9.948,1.014s5.412,6.7,5.853,8.109C15.453,32.276,10.693,33.1,6.949,30.938Zm27.353,0c-3.744,2.162-8.5,1.338-9.948,1.014.441-1.413,2.107-5.947,5.852-8.109s8.5-1.339,9.949-1.014C39.714,24.242,38.047,28.775,34.3,30.938Z" /><path fill="%23000" d="M1.248,19.643a.417.417,0,0,0,.061,0,.445.445,0,0,0,.382-.5,7.847,7.847,0,0,1,7.844-8.882c0,.04-.006.078-.006.119a10.423,10.423,0,0,0,.251,2.279.446.446,0,0,0,.871-.2,9.482,9.482,0,1,1,18.423.327.447.447,0,1,0,.864.226,10.409,10.409,0,0,0,.338-2.637c0-.038,0-.074,0-.111a7.861,7.861,0,0,1,8.323,9.325.446.446,0,0,0,.353.523.426.426,0,0,0,.086.009.448.448,0,0,0,.438-.362A8.755,8.755,0,0,0,30.226,9.371,10.372,10.372,0,0,0,9.581,9.347,8.756,8.756,0,0,0,.807,19.255.446.446,0,0,0,1.248,19.643Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41.251 43.215"><path fill="%23000" d="M20.625,11.188l-.31.3c-.191.184-4.678,4.569-4.678,10.09s4.487,9.906,4.678,10.09l.31.3.31-.3c.191-.184,4.679-4.569,4.679-10.09s-4.488-9.906-4.679-10.09Zm4.1,10.388c0,4.325-3.094,8.035-4.1,9.124-1-1.088-4.1-4.792-4.1-9.124s3.093-8.034,4.1-9.124C21.629,13.542,24.722,17.251,24.722,21.576Z" /><path fill="%23000" d="M40.838,22.077c-.256-.073-6.3-1.768-11.079.993s-6.333,8.84-6.4,9.1l-.1.417.413.12a15.938,15.938,0,0,0,1.949.39l-4.191,1.693.838,7.535H18.346l.837-7.535-4.041-1.632A16.953,16.953,0,0,0,17.58,32.7l.413-.12-.1-.417c-.065-.257-1.618-6.336-6.4-9.1S.668,22,.413,22.077L0,22.2l.1.418c.064.257,1.616,6.336,6.4,9.1a13.022,13.022,0,0,0,6.506,1.574l.066,0,5.146,2.078-.872,7.854h5.917l-.873-7.854,5.183-2.093c.219.008.438.017.668.017a13.022,13.022,0,0,0,6.506-1.574c4.781-2.761,6.334-8.84,6.4-9.1l.1-.418ZM6.949,30.938C3.2,28.775,1.537,24.242,1.1,22.829c1.442-.325,6.2-1.149,9.948,1.014s5.412,6.7,5.853,8.109C15.453,32.276,10.693,33.1,6.949,30.938Zm27.353,0c-3.744,2.162-8.5,1.338-9.948,1.014.441-1.413,2.107-5.947,5.852-8.109s8.5-1.339,9.949-1.014C39.714,24.242,38.047,28.775,34.3,30.938Z" /><path fill="%23000" d="M1.248,19.643a.417.417,0,0,0,.061,0,.445.445,0,0,0,.382-.5,7.847,7.847,0,0,1,7.844-8.882c0,.04-.006.078-.006.119a10.423,10.423,0,0,0,.251,2.279.446.446,0,0,0,.871-.2,9.482,9.482,0,1,1,18.423.327.447.447,0,1,0,.864.226,10.409,10.409,0,0,0,.338-2.637c0-.038,0-.074,0-.111a7.861,7.861,0,0,1,8.323,9.325.446.446,0,0,0,.353.523.426.426,0,0,0,.086.009.448.448,0,0,0,.438-.362A8.755,8.755,0,0,0,30.226,9.371,10.372,10.372,0,0,0,9.581,9.347,8.756,8.756,0,0,0,.807,19.255.446.446,0,0,0,1.248,19.643Z" /></svg>') no-repeat center center;
}
#product .category_choice ul li a.material4::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39.917 39.917"><path fill="%23000" d="M38.348,12.19a19.969,19.969,0,0,0-36.779,0,19.958,19.958,0,0,0,32.5,21.881A19.977,19.977,0,0,0,38.348,12.19Zm.111,13.993c-.14.143-.284.286-.438.441a10.942,10.942,0,0,0-7.342.011c-.019-.027-.04-.056-.06-.086a1.822,1.822,0,0,0-1.667-.836,6.512,6.512,0,0,0-1.486.235c-.04.01-.08.018-.138.031a8.36,8.36,0,0,1,0-2.5c.29.062.565.13.843.176a3.063,3.063,0,0,0,1.465,0,1.705,1.705,0,0,0,.969-.734.145.145,0,0,1,.19-.073c.715.169,1.426.361,2.148.49a9.256,9.256,0,0,0,3.931-.208c.361-.091.721-.187,1.08-.284.075-.02.124-.019.172.059a1.686,1.686,0,0,0,.995.754A19.3,19.3,0,0,1,38.459,26.183Zm-2.47,4.9a8.59,8.59,0,0,1-3.817-.125c-.382-.1-.762-.2-1.156-.308a9.546,9.546,0,0,0,0-3.041,9.434,9.434,0,0,1,6.689,0c-.018.195-.036.394-.056.594A19.318,19.318,0,0,1,35.989,31.087Zm-3.591,3.9c-.57.137-1.143.272-1.731.411-.034-.05-.078-.119-.127-.185a1.759,1.759,0,0,0-1.376-.72,5.7,5.7,0,0,0-1.682.226l-.109.026a.2.2,0,0,1-.047-.006,8.353,8.353,0,0,1,0-2.481c.284.06.554.127.827.174a3.225,3.225,0,0,0,1.42.016,1.7,1.7,0,0,0,1.026-.745.152.152,0,0,1,.2-.077c.706.168,1.409.35,2.121.486a8.034,8.034,0,0,0,2.228.087,19.98,19.98,0,0,1-1.395,1.552Q33.1,34.408,32.4,34.991ZM23.36,39.175a9.364,9.364,0,0,0-2.679.28q-.36.014-.723.014c-.306,0-.61-.007-.914-.021A1.909,1.909,0,0,0,17.33,38.9c-.385.046-.764.132-1.145.2-.079-.015-.157-.031-.235-.048a8.676,8.676,0,0,1,.01-2.393c.414.075.815.154,1.218.218a2.307,2.307,0,0,0,1.262-.119,1.678,1.678,0,0,0,.8-.671c.057-.092.107-.094.2-.072.7.167,1.4.355,2.106.483a9.332,9.332,0,0,0,3.972-.206q.534-.135,1.066-.281a.134.134,0,0,1,.179.068,1.8,1.8,0,0,0,1.766.82c.492-.042.98-.141,1.486-.219A19.29,19.29,0,0,1,23.36,39.175ZM7.826,35.24a1.7,1.7,0,0,0-.679-.566q-.506-.441-.985-.919-.688-.69-1.3-1.433c.252.052.5.1.749.144a2.773,2.773,0,0,0,1.333-.043,1.674,1.674,0,0,0,.913-.7.182.182,0,0,1,.247-.087,18.01,18.01,0,0,0,2.285.514,9.852,9.852,0,0,0,3.765-.244c.352-.089.7-.179,1.052-.277a.15.15,0,0,1,.2.074,1.757,1.757,0,0,0,1.521.819,5.907,5.907,0,0,0,1.672-.252l.063-.015a7.38,7.38,0,0,1,0,2.49c-.294-.061-.588-.131-.884-.18a3,3,0,0,0-1.384.008,1.716,1.716,0,0,0-1,.755c-.017.027-.038.052-.065.091a13.176,13.176,0,0,0-3.694-.646,12.9,12.9,0,0,0-3.609.625ZM3.269,9.839c.2-.059.4-.107.592-.163a.126.126,0,0,1,.169.06,1.81,1.81,0,0,0,1.677.838,6.578,6.578,0,0,0,1.5-.242c.031-.008.062-.013.112-.024a8.549,8.549,0,0,1,0,2.5c-.247-.055-.48-.116-.716-.158a3.733,3.733,0,0,0-1.373-.071,1.732,1.732,0,0,0-1.188.783.15.15,0,0,1-.2.075c-.678-.164-1.357-.322-2.036-.481l-.066-.013A19.222,19.222,0,0,1,3.269,9.839ZM6.146,6.178a1.84,1.84,0,0,0,1.345-.39,2.225,2.225,0,0,0,.38-.424.159.159,0,0,1,.2-.074c.655.16,1.306.34,1.968.464a9.468,9.468,0,0,0,4.2-.208c.328-.087.657-.171.984-.261a.127.127,0,0,1,.169.065,1.8,1.8,0,0,0,1.664.834,6.467,6.467,0,0,0,1.513-.244c.027-.007.054-.012.1-.023a8.23,8.23,0,0,1,0,2.5c-.3-.063-.577-.132-.86-.179a3.189,3.189,0,0,0-1.358-.019,1.716,1.716,0,0,0-1.061.763.144.144,0,0,1-.191.07c-.719-.17-1.435-.363-2.161-.492a9.137,9.137,0,0,0-3.795.181c-.4.1-.792.2-1.187.31-.085.022-.136.021-.192-.066A1.8,1.8,0,0,0,6.21,8.153a6.579,6.579,0,0,0-1.5.243c-.03.008-.061.014-.118.027-.016-.152-.033-.294-.046-.434A19.745,19.745,0,0,1,6.146,6.178ZM14.69,1.163c.1.03.206.055.308.084a9.351,9.351,0,0,0-.007,3.037A9.442,9.442,0,0,1,8.319,4.3,19.317,19.317,0,0,1,14.69,1.163ZM18.131.532A1.672,1.672,0,0,1,18.307.6a2.663,2.663,0,0,1-.37.163A2.9,2.9,0,0,1,16.783.7Q17.452.6,18.131.532ZM16.364,4.96a3.631,3.631,0,0,1,1.55-.171,1.91,1.91,0,0,1,.362.15L18.261,5a3.943,3.943,0,0,1-1.464.175A.651.651,0,0,1,16.364,4.96Zm9.991,3.715a9.442,9.442,0,0,1-6.7,0,9.683,9.683,0,0,0,0-3.011,9.448,9.448,0,0,1,6.7,0A9.623,9.623,0,0,0,26.355,8.675Zm-4.947,1.469a9.488,9.488,0,0,0,4.2-.209c.324-.084.648-.167.97-.258a.143.143,0,0,1,.189.076,1.782,1.782,0,0,0,1.588.817,6.5,6.5,0,0,0,1.581-.239c.031-.008.062-.012.107-.021a8.614,8.614,0,0,1,0,2.489c-.361-.071-.7-.149-1.053-.2a2.715,2.715,0,0,0-1.27.04,1.675,1.675,0,0,0-.946.719c-.065.105-.125.1-.225.076-.65-.158-1.3-.335-1.954-.458a9.488,9.488,0,0,0-4.2.21l-.984.26c-.06.016-.107.028-.152-.044a1.78,1.78,0,0,0-1.776-.844c-.47.039-.934.15-1.4.229-.036.006-.071.015-.12.026a8.664,8.664,0,0,1,0-2.491c.361.07.7.149,1.053.2a2.641,2.641,0,0,0,1.349-.066,1.666,1.666,0,0,0,.868-.691c.064-.1.122-.1.224-.078C20.1,9.844,20.751,10.021,21.408,10.144Zm6.98-4.011a2.836,2.836,0,0,0,1.124,0,1.764,1.764,0,0,0,1.157-.868c.325.084.649.165.97.252a11.705,11.705,0,0,0,1.8.337c.107.1.214.206.319.311A19.852,19.852,0,0,1,35.79,8.549L35.371,8.5a9.86,9.86,0,0,0-3.72.323c-.288.076-.576.149-.863.231a.135.135,0,0,1-.179-.068,1.8,1.8,0,0,0-1.681-.83,6.573,6.573,0,0,0-1.5.245c-.026.007-.053.012-.1.021a8.353,8.353,0,0,1,0-2.491C27.7,6,28.04,6.078,28.388,6.133Zm-.65-1.2a2.469,2.469,0,0,1,.405-.149,3.485,3.485,0,0,1,1.489.183.492.492,0,0,1-.327.189,2.2,2.2,0,0,1-.928-.019c-.209-.036-.416-.09-.623-.136Zm4.215-.365-.938-.251.057-.4Q31.521,4.229,31.953,4.566Zm5.662,7.066q.034.723.067,1.445a9.392,9.392,0,0,1-6.634,0c.03-.5.083-1.009.083-1.519s-.053-1.011-.084-1.539c.258-.07.545-.145.829-.226a9.161,9.161,0,0,1,2.465-.364,8.907,8.907,0,0,1,2.224.285h0A19.288,19.288,0,0,1,37.615,11.632Zm1.778,6.6-.307-.07a.627.627,0,0,1,.285-.178C39.379,18.064,39.386,18.147,39.393,18.23Zm-.148-1.246a1.775,1.775,0,0,0-1.191.9,10.618,10.618,0,0,0-7.35,0c-.036-.043-.053-.059-.065-.078a1.81,1.81,0,0,0-1.688-.87,6.517,6.517,0,0,0-1.5.238c-.035.009-.071.015-.122.026a8.38,8.38,0,0,1,0-2.5c.3.063.577.131.86.179a3.194,3.194,0,0,0,1.383.013,1.7,1.7,0,0,0,1.028-.742.159.159,0,0,1,.21-.082c.65.161,1.3.337,1.954.462a9.507,9.507,0,0,0,4.206-.205c.329-.085.657-.171.984-.262a.135.135,0,0,1,.18.069,1.709,1.709,0,0,0,.636.6A19.5,19.5,0,0,1,39.245,16.984Zm-1.552,4.868a9.409,9.409,0,0,1-6.672-.009,9.536,9.536,0,0,0-.005-3.03,11.3,11.3,0,0,1,3.356-.611,11.183,11.183,0,0,1,3.321.6c-.032.523-.088,1.033-.088,1.543S37.662,21.357,37.693,21.852Zm-8.715-.479a2.449,2.449,0,0,0-1.528.154,1.853,1.853,0,0,0-.752.725,13.192,13.192,0,0,0-3.7-.646,13.164,13.164,0,0,0-3.682.645c-.075-.1-.138-.2-.213-.289a1.79,1.79,0,0,0-1.61-.629c-.475.044-.944.152-1.415.231-.032.006-.064.014-.094.021a7.248,7.248,0,0,1-.012-2.484c.338.066.673.143,1.013.2a2.665,2.665,0,0,0,1.375-.064,1.69,1.69,0,0,0,.869-.691.158.158,0,0,1,.21-.082c.65.161,1.3.336,1.954.461a9.4,9.4,0,0,0,4.11-.181q.541-.138,1.079-.284a.137.137,0,0,1,.181.067,1.765,1.765,0,0,0,1.708.823c.522-.037,1.039-.144,1.578-.222a8.615,8.615,0,0,1,0,2.453C29.681,21.506,29.331,21.429,28.978,21.373Zm.663,1.145a.6.6,0,0,1-.4.21,3.09,3.09,0,0,1-1.187-.1c-.1-.021-.2-.051-.319-.081a.653.653,0,0,1,.442-.213,3.486,3.486,0,0,1,1.24.126C29.484,22.475,29.554,22.5,29.641,22.518ZM28.49,28.126c.517-.038,1.029-.144,1.562-.223a8.57,8.57,0,0,1,0,2.462c-.255-.055-.5-.116-.742-.16a3.855,3.855,0,0,0-1.262-.081,1.756,1.756,0,0,0-1.311.854c-.01.016-.022.029-.04.053a13.186,13.186,0,0,0-3.7-.646,13.247,13.247,0,0,0-3.688.648,1.7,1.7,0,0,0-1.374-.907,5.119,5.119,0,0,0-1.069.054c-.3.036-.592.118-.9.182a8.557,8.557,0,0,1,0-2.46c.528.079,1.031.181,1.539.223a1.786,1.786,0,0,0,1.758-.834c.053-.082.1-.07.173-.053.687.164,1.37.356,2.064.48a9.485,9.485,0,0,0,4.137-.227c.319-.084.639-.165.957-.254a.135.135,0,0,1,.181.068A1.774,1.774,0,0,0,28.49,28.126Zm-.748-1.179c.548-.228,1.615-.386,1.9-.006a3.729,3.729,0,0,1-1.52.171A1.307,1.307,0,0,1,27.742,26.947ZM29.653,31.3a.786.786,0,0,1-.579.232,4.306,4.306,0,0,1-1.328-.2l-.015-.041a1.877,1.877,0,0,1,.315-.148,2.391,2.391,0,0,1,1.09.037C29.3,31.207,29.46,31.252,29.653,31.3Zm-3.3,3.713a9.355,9.355,0,0,1-6.67.011c.028-.489.079-1,.079-1.506s-.05-1.019-.078-1.523a9.436,9.436,0,0,1,6.67.011A9.627,9.627,0,0,0,26.354,35.009ZM18.282,31.29l-.015.044a3.689,3.689,0,0,1-1.508.167,2.176,2.176,0,0,1-.389-.149l.01-.063c.211-.046.421-.1.633-.136a2.092,2.092,0,0,1,.954-.012A2.2,2.2,0,0,1,18.282,31.29Zm-3.292-.667a9.428,9.428,0,0,1-6.673.01c.031-.5.087-1.007.088-1.516s-.056-1.011-.088-1.514a9.425,9.425,0,0,1,6.674.01A9.439,9.439,0,0,0,14.99,30.623Zm-.212-4.135A11.95,11.95,0,0,0,11.853,26a10.822,10.822,0,0,0-3.128.431c-.229.062-.457.126-.688.18a.154.154,0,0,1-.133-.041,1.885,1.885,0,0,0-1.976-.835c-.415.05-.823.15-1.234.227-.026.005-.053.008-.095.013a8.262,8.262,0,0,1,0-2.492c.29.062.565.13.843.176a3.362,3.362,0,0,0,1.276.046,1.714,1.714,0,0,0,1.142-.76.177.177,0,0,1,.232-.09c.742.177,1.48.376,2.231.5a9.225,9.225,0,0,0,3.833-.229c.356-.091.712-.183,1.066-.281a.138.138,0,0,1,.181.069,1.77,1.77,0,0,0,1.723.821c.516-.039,1.028-.145,1.563-.224a8.376,8.376,0,0,1-.006,2.464c-.251-.055-.488-.114-.729-.159a3.884,3.884,0,0,0-1.248-.088,1.762,1.762,0,0,0-1.364.908C15.152,26.587,14.964,26.54,14.778,26.488ZM6.9,26.919c-.558.218-1.641.363-1.875,0C5.6,26.712,6.632,26.565,6.9,26.919ZM5,22.547a.636.636,0,0,1,.435-.213,3.175,3.175,0,0,1,1.119.095c.113.023.224.055.36.088a.622.622,0,0,1-.4.21,3.1,3.1,0,0,1-1.186-.1C5.222,22.608,5.121,22.577,5,22.547Zm1.191-5.6c-.494.034-.982.15-1.472.23-.036.006-.071.015-.122.026a8.307,8.307,0,0,1,0-2.494c.3.062.575.13.858.178a3.208,3.208,0,0,0,1.369.016,1.7,1.7,0,0,0,1.049-.756c.058-.094.11-.093.2-.07.65.158,1.3.336,1.954.46a9.521,9.521,0,0,0,4.206-.2c.324-.084.648-.167.971-.258a.151.151,0,0,1,.2.073,1.782,1.782,0,0,0,1.6.815A7.11,7.11,0,0,0,18.68,14.7a8.334,8.334,0,0,1,0,2.493c-.366-.071-.711-.148-1.059-.2a2.622,2.622,0,0,0-1.324.061,1.734,1.734,0,0,0-.878.68c-.028.042-.057.084-.087.127-.464-.119-.922-.241-1.382-.353a9.888,9.888,0,0,0-5.026.1c-.3.081-.593.156-.889.237a.111.111,0,0,1-.148-.053A1.746,1.746,0,0,0,6.193,16.942Zm.719,1.193c-.6.227-1.66.365-1.913-.031.376-.061.733-.13,1.094-.174a1.12,1.12,0,0,1,.665.1A1.673,1.673,0,0,1,6.912,18.135ZM4.978,13.742a2.72,2.72,0,0,1,.327-.158,1.675,1.675,0,0,1,.787-.018c.27.043.537.1.835.162a.66.66,0,0,1-.43.222A3.569,3.569,0,0,1,4.978,13.742Zm10.013-.678a9.448,9.448,0,0,1-6.7,0,9.462,9.462,0,0,0,0-3.009,9.431,9.431,0,0,1,6.7,0A9.462,9.462,0,0,0,14.991,13.064Zm1.355.664c.328-.061.619-.137.914-.165a3.321,3.321,0,0,1,.718.026,1.05,1.05,0,0,1,.3.142l-.014.044a3.95,3.95,0,0,1-1.477.176A.719.719,0,0,1,16.346,13.728Zm1.939,4.4a.716.716,0,0,1-.466.215,4.056,4.056,0,0,1-1.454-.187.639.639,0,0,1,.431-.214,3.452,3.452,0,0,1,1.254.124C18.121,18.085,18.191,18.106,18.285,18.131Zm-10,.677a12.811,12.811,0,0,1,2.834-.581,10.623,10.623,0,0,1,3.874.59,9.475,9.475,0,0,0,0,3.048,11.486,11.486,0,0,1-3.365.608,11.5,11.5,0,0,1-3.343-.608A9.5,9.5,0,0,0,8.285,18.808Zm8.081,3.707a6.253,6.253,0,0,1,.616-.132,7.232,7.232,0,0,1,.858-.046.532.532,0,0,1,.431.209C17.4,22.794,16.641,22.849,16.366,22.515Zm1.913,4.391a.587.587,0,0,1-.393.209,3.333,3.333,0,0,1-1.321-.127c-.055-.012-.108-.029-.161-.045-.007,0-.011-.011-.023-.024a.628.628,0,0,1,.415-.2A3.991,3.991,0,0,1,18.279,26.906Zm8.076-.674a9.413,9.413,0,0,1-6.7,0,9.7,9.7,0,0,0,0-3.009,9.45,9.45,0,0,1,6.7,0A9.61,9.61,0,0,0,26.355,26.232Zm-.029-8.767a9.4,9.4,0,0,1-6.67-.013,9.677,9.677,0,0,0,0-3.01,9.444,9.444,0,0,1,6.671-.01c-.028.494-.079,1-.08,1.511S26.3,16.963,26.326,17.465Zm1.421.656a5.783,5.783,0,0,1,.6-.129,7.5,7.5,0,0,1,.86-.044.589.589,0,0,1,.448.221c-.658.108-1.283.379-1.905.014Zm-.014-4.388a1.968,1.968,0,0,1,.294-.147,2.1,2.1,0,0,1,.98.008c.208.036.414.089.651.141a.854.854,0,0,1-.646.237A3.643,3.643,0,0,1,27.733,13.733Zm1.913-4.35a5.7,5.7,0,0,1-.6.128,7.728,7.728,0,0,1-.9.045.438.438,0,0,1-.394-.207C28.6,9.1,29.373,9.047,29.646,9.383Zm-13.287,0a.65.65,0,0,1,.43-.217,3.955,3.955,0,0,1,1.47.173l.02.041a1.721,1.721,0,0,1-.289.149,2.1,2.1,0,0,1-.98-.006C16.8,9.488,16.594,9.435,16.359,9.384Zm-9.441,0a3.741,3.741,0,0,1-1.524.174A2.009,2.009,0,0,1,5.006,9.4l.016-.06a3.855,3.855,0,0,1,1.467-.176A.639.639,0,0,1,6.918,9.38ZM3.631,14.413a9.615,9.615,0,0,0,0,3.066,12.076,12.076,0,0,1-3.094.59A19.466,19.466,0,0,1,1.4,13.9,17.765,17.765,0,0,1,3.631,14.413ZM.83,19.05a13.941,13.941,0,0,0,3.007-.588.159.159,0,0,1,.211.08,1.758,1.758,0,0,0,1.69.8c.494-.037.981-.153,1.471-.235.032,0,.063-.013.109-.023a8.44,8.44,0,0,1,0,2.494c-.3-.063-.591-.133-.884-.181a3,3,0,0,0-1.423.011,1.687,1.687,0,0,0-.968.733c-.058.093-.111.093-.2.071-.678-.163-1.353-.341-2.037-.473-.422-.081-.857-.092-1.287-.133-.045-.546-.07-1.1-.07-1.652,0-.3.008-.594.021-.889Zm-.2,3.563a12.256,12.256,0,0,1,3,.583,9.678,9.678,0,0,0,0,3.09l-1.98.455A19.355,19.355,0,0,1,.627,22.613ZM2.039,27.7c.62-.158,1.236-.315,1.852-.467a.157.157,0,0,1,.129.058,1.8,1.8,0,0,0,1.773.833c.475-.041.944-.152,1.416-.232l.108-.024a8.434,8.434,0,0,1,0,2.5c-.252-.055-.49-.114-.731-.158a3.749,3.749,0,0,0-1.331-.074,1.728,1.728,0,0,0-1.221.8A.132.132,0,0,1,3.87,31,19.235,19.235,0,0,1,2.039,27.7Zm4.886,3.6a.82.82,0,0,1-.606.232,4.393,4.393,0,0,1-1.3-.2l-.011-.047a1.741,1.741,0,0,1,.308-.142A3.518,3.518,0,0,1,6.925,31.3Zm11.349,4.424a.854.854,0,0,1-.263.138,3.192,3.192,0,0,1-.7.039c-.311-.028-.619-.1-.928-.159a.731.731,0,0,1,.632-.253A3.628,3.628,0,0,1,18.274,35.721Zm-9.218.424a9.874,9.874,0,0,1,5.94.232,9.494,9.494,0,0,0-.083,2.436A19.266,19.266,0,0,1,9.056,36.145Zm18.68-.469c.642-.11,1.268-.376,1.93.013C29.019,35.925,27.97,36.054,27.736,35.676ZM39.1,22.561l.014-.047.193-.048c-.008.062-.017.124-.025.186Zm-.4-.981a7.447,7.447,0,0,1,0-2.487l.753.167c.008.232.013.465.013.7q0,.74-.054,1.47C39.18,21.482,38.944,21.53,38.708,21.58ZM30.127,3.3c-.031.24-.049.483-.072.72-.363-.071-.7-.148-1.047-.2a2.651,2.651,0,0,0-1.363.066,1.7,1.7,0,0,0-.875.705.146.146,0,0,1-.192.07C25.886,4.493,25.2,4.3,24.5,4.176a9.464,9.464,0,0,0-4.109.229c-.324.085-.647.173-.972.253a.173.173,0,0,1-.149-.036,1.8,1.8,0,0,0-1.793-.846c-.475.042-.944.153-1.416.234l-.1.021a8.683,8.683,0,0,1,0-2.5c.248.054.481.112.717.156a3.886,3.886,0,0,0,1.316.081A1.752,1.752,0,0,0,19.27.931c.012-.019.026-.037.04-.057.454.117.9.237,1.353.347a9.666,9.666,0,0,0,4.687,0l.034-.008A19.242,19.242,0,0,1,30.127,3.3Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39.917 39.917"><path fill="%23000" d="M38.348,12.19a19.969,19.969,0,0,0-36.779,0,19.958,19.958,0,0,0,32.5,21.881A19.977,19.977,0,0,0,38.348,12.19Zm.111,13.993c-.14.143-.284.286-.438.441a10.942,10.942,0,0,0-7.342.011c-.019-.027-.04-.056-.06-.086a1.822,1.822,0,0,0-1.667-.836,6.512,6.512,0,0,0-1.486.235c-.04.01-.08.018-.138.031a8.36,8.36,0,0,1,0-2.5c.29.062.565.13.843.176a3.063,3.063,0,0,0,1.465,0,1.705,1.705,0,0,0,.969-.734.145.145,0,0,1,.19-.073c.715.169,1.426.361,2.148.49a9.256,9.256,0,0,0,3.931-.208c.361-.091.721-.187,1.08-.284.075-.02.124-.019.172.059a1.686,1.686,0,0,0,.995.754A19.3,19.3,0,0,1,38.459,26.183Zm-2.47,4.9a8.59,8.59,0,0,1-3.817-.125c-.382-.1-.762-.2-1.156-.308a9.546,9.546,0,0,0,0-3.041,9.434,9.434,0,0,1,6.689,0c-.018.195-.036.394-.056.594A19.318,19.318,0,0,1,35.989,31.087Zm-3.591,3.9c-.57.137-1.143.272-1.731.411-.034-.05-.078-.119-.127-.185a1.759,1.759,0,0,0-1.376-.72,5.7,5.7,0,0,0-1.682.226l-.109.026a.2.2,0,0,1-.047-.006,8.353,8.353,0,0,1,0-2.481c.284.06.554.127.827.174a3.225,3.225,0,0,0,1.42.016,1.7,1.7,0,0,0,1.026-.745.152.152,0,0,1,.2-.077c.706.168,1.409.35,2.121.486a8.034,8.034,0,0,0,2.228.087,19.98,19.98,0,0,1-1.395,1.552Q33.1,34.408,32.4,34.991ZM23.36,39.175a9.364,9.364,0,0,0-2.679.28q-.36.014-.723.014c-.306,0-.61-.007-.914-.021A1.909,1.909,0,0,0,17.33,38.9c-.385.046-.764.132-1.145.2-.079-.015-.157-.031-.235-.048a8.676,8.676,0,0,1,.01-2.393c.414.075.815.154,1.218.218a2.307,2.307,0,0,0,1.262-.119,1.678,1.678,0,0,0,.8-.671c.057-.092.107-.094.2-.072.7.167,1.4.355,2.106.483a9.332,9.332,0,0,0,3.972-.206q.534-.135,1.066-.281a.134.134,0,0,1,.179.068,1.8,1.8,0,0,0,1.766.82c.492-.042.98-.141,1.486-.219A19.29,19.29,0,0,1,23.36,39.175ZM7.826,35.24a1.7,1.7,0,0,0-.679-.566q-.506-.441-.985-.919-.688-.69-1.3-1.433c.252.052.5.1.749.144a2.773,2.773,0,0,0,1.333-.043,1.674,1.674,0,0,0,.913-.7.182.182,0,0,1,.247-.087,18.01,18.01,0,0,0,2.285.514,9.852,9.852,0,0,0,3.765-.244c.352-.089.7-.179,1.052-.277a.15.15,0,0,1,.2.074,1.757,1.757,0,0,0,1.521.819,5.907,5.907,0,0,0,1.672-.252l.063-.015a7.38,7.38,0,0,1,0,2.49c-.294-.061-.588-.131-.884-.18a3,3,0,0,0-1.384.008,1.716,1.716,0,0,0-1,.755c-.017.027-.038.052-.065.091a13.176,13.176,0,0,0-3.694-.646,12.9,12.9,0,0,0-3.609.625ZM3.269,9.839c.2-.059.4-.107.592-.163a.126.126,0,0,1,.169.06,1.81,1.81,0,0,0,1.677.838,6.578,6.578,0,0,0,1.5-.242c.031-.008.062-.013.112-.024a8.549,8.549,0,0,1,0,2.5c-.247-.055-.48-.116-.716-.158a3.733,3.733,0,0,0-1.373-.071,1.732,1.732,0,0,0-1.188.783.15.15,0,0,1-.2.075c-.678-.164-1.357-.322-2.036-.481l-.066-.013A19.222,19.222,0,0,1,3.269,9.839ZM6.146,6.178a1.84,1.84,0,0,0,1.345-.39,2.225,2.225,0,0,0,.38-.424.159.159,0,0,1,.2-.074c.655.16,1.306.34,1.968.464a9.468,9.468,0,0,0,4.2-.208c.328-.087.657-.171.984-.261a.127.127,0,0,1,.169.065,1.8,1.8,0,0,0,1.664.834,6.467,6.467,0,0,0,1.513-.244c.027-.007.054-.012.1-.023a8.23,8.23,0,0,1,0,2.5c-.3-.063-.577-.132-.86-.179a3.189,3.189,0,0,0-1.358-.019,1.716,1.716,0,0,0-1.061.763.144.144,0,0,1-.191.07c-.719-.17-1.435-.363-2.161-.492a9.137,9.137,0,0,0-3.795.181c-.4.1-.792.2-1.187.31-.085.022-.136.021-.192-.066A1.8,1.8,0,0,0,6.21,8.153a6.579,6.579,0,0,0-1.5.243c-.03.008-.061.014-.118.027-.016-.152-.033-.294-.046-.434A19.745,19.745,0,0,1,6.146,6.178ZM14.69,1.163c.1.03.206.055.308.084a9.351,9.351,0,0,0-.007,3.037A9.442,9.442,0,0,1,8.319,4.3,19.317,19.317,0,0,1,14.69,1.163ZM18.131.532A1.672,1.672,0,0,1,18.307.6a2.663,2.663,0,0,1-.37.163A2.9,2.9,0,0,1,16.783.7Q17.452.6,18.131.532ZM16.364,4.96a3.631,3.631,0,0,1,1.55-.171,1.91,1.91,0,0,1,.362.15L18.261,5a3.943,3.943,0,0,1-1.464.175A.651.651,0,0,1,16.364,4.96Zm9.991,3.715a9.442,9.442,0,0,1-6.7,0,9.683,9.683,0,0,0,0-3.011,9.448,9.448,0,0,1,6.7,0A9.623,9.623,0,0,0,26.355,8.675Zm-4.947,1.469a9.488,9.488,0,0,0,4.2-.209c.324-.084.648-.167.97-.258a.143.143,0,0,1,.189.076,1.782,1.782,0,0,0,1.588.817,6.5,6.5,0,0,0,1.581-.239c.031-.008.062-.012.107-.021a8.614,8.614,0,0,1,0,2.489c-.361-.071-.7-.149-1.053-.2a2.715,2.715,0,0,0-1.27.04,1.675,1.675,0,0,0-.946.719c-.065.105-.125.1-.225.076-.65-.158-1.3-.335-1.954-.458a9.488,9.488,0,0,0-4.2.21l-.984.26c-.06.016-.107.028-.152-.044a1.78,1.78,0,0,0-1.776-.844c-.47.039-.934.15-1.4.229-.036.006-.071.015-.12.026a8.664,8.664,0,0,1,0-2.491c.361.07.7.149,1.053.2a2.641,2.641,0,0,0,1.349-.066,1.666,1.666,0,0,0,.868-.691c.064-.1.122-.1.224-.078C20.1,9.844,20.751,10.021,21.408,10.144Zm6.98-4.011a2.836,2.836,0,0,0,1.124,0,1.764,1.764,0,0,0,1.157-.868c.325.084.649.165.97.252a11.705,11.705,0,0,0,1.8.337c.107.1.214.206.319.311A19.852,19.852,0,0,1,35.79,8.549L35.371,8.5a9.86,9.86,0,0,0-3.72.323c-.288.076-.576.149-.863.231a.135.135,0,0,1-.179-.068,1.8,1.8,0,0,0-1.681-.83,6.573,6.573,0,0,0-1.5.245c-.026.007-.053.012-.1.021a8.353,8.353,0,0,1,0-2.491C27.7,6,28.04,6.078,28.388,6.133Zm-.65-1.2a2.469,2.469,0,0,1,.405-.149,3.485,3.485,0,0,1,1.489.183.492.492,0,0,1-.327.189,2.2,2.2,0,0,1-.928-.019c-.209-.036-.416-.09-.623-.136Zm4.215-.365-.938-.251.057-.4Q31.521,4.229,31.953,4.566Zm5.662,7.066q.034.723.067,1.445a9.392,9.392,0,0,1-6.634,0c.03-.5.083-1.009.083-1.519s-.053-1.011-.084-1.539c.258-.07.545-.145.829-.226a9.161,9.161,0,0,1,2.465-.364,8.907,8.907,0,0,1,2.224.285h0A19.288,19.288,0,0,1,37.615,11.632Zm1.778,6.6-.307-.07a.627.627,0,0,1,.285-.178C39.379,18.064,39.386,18.147,39.393,18.23Zm-.148-1.246a1.775,1.775,0,0,0-1.191.9,10.618,10.618,0,0,0-7.35,0c-.036-.043-.053-.059-.065-.078a1.81,1.81,0,0,0-1.688-.87,6.517,6.517,0,0,0-1.5.238c-.035.009-.071.015-.122.026a8.38,8.38,0,0,1,0-2.5c.3.063.577.131.86.179a3.194,3.194,0,0,0,1.383.013,1.7,1.7,0,0,0,1.028-.742.159.159,0,0,1,.21-.082c.65.161,1.3.337,1.954.462a9.507,9.507,0,0,0,4.206-.205c.329-.085.657-.171.984-.262a.135.135,0,0,1,.18.069,1.709,1.709,0,0,0,.636.6A19.5,19.5,0,0,1,39.245,16.984Zm-1.552,4.868a9.409,9.409,0,0,1-6.672-.009,9.536,9.536,0,0,0-.005-3.03,11.3,11.3,0,0,1,3.356-.611,11.183,11.183,0,0,1,3.321.6c-.032.523-.088,1.033-.088,1.543S37.662,21.357,37.693,21.852Zm-8.715-.479a2.449,2.449,0,0,0-1.528.154,1.853,1.853,0,0,0-.752.725,13.192,13.192,0,0,0-3.7-.646,13.164,13.164,0,0,0-3.682.645c-.075-.1-.138-.2-.213-.289a1.79,1.79,0,0,0-1.61-.629c-.475.044-.944.152-1.415.231-.032.006-.064.014-.094.021a7.248,7.248,0,0,1-.012-2.484c.338.066.673.143,1.013.2a2.665,2.665,0,0,0,1.375-.064,1.69,1.69,0,0,0,.869-.691.158.158,0,0,1,.21-.082c.65.161,1.3.336,1.954.461a9.4,9.4,0,0,0,4.11-.181q.541-.138,1.079-.284a.137.137,0,0,1,.181.067,1.765,1.765,0,0,0,1.708.823c.522-.037,1.039-.144,1.578-.222a8.615,8.615,0,0,1,0,2.453C29.681,21.506,29.331,21.429,28.978,21.373Zm.663,1.145a.6.6,0,0,1-.4.21,3.09,3.09,0,0,1-1.187-.1c-.1-.021-.2-.051-.319-.081a.653.653,0,0,1,.442-.213,3.486,3.486,0,0,1,1.24.126C29.484,22.475,29.554,22.5,29.641,22.518ZM28.49,28.126c.517-.038,1.029-.144,1.562-.223a8.57,8.57,0,0,1,0,2.462c-.255-.055-.5-.116-.742-.16a3.855,3.855,0,0,0-1.262-.081,1.756,1.756,0,0,0-1.311.854c-.01.016-.022.029-.04.053a13.186,13.186,0,0,0-3.7-.646,13.247,13.247,0,0,0-3.688.648,1.7,1.7,0,0,0-1.374-.907,5.119,5.119,0,0,0-1.069.054c-.3.036-.592.118-.9.182a8.557,8.557,0,0,1,0-2.46c.528.079,1.031.181,1.539.223a1.786,1.786,0,0,0,1.758-.834c.053-.082.1-.07.173-.053.687.164,1.37.356,2.064.48a9.485,9.485,0,0,0,4.137-.227c.319-.084.639-.165.957-.254a.135.135,0,0,1,.181.068A1.774,1.774,0,0,0,28.49,28.126Zm-.748-1.179c.548-.228,1.615-.386,1.9-.006a3.729,3.729,0,0,1-1.52.171A1.307,1.307,0,0,1,27.742,26.947ZM29.653,31.3a.786.786,0,0,1-.579.232,4.306,4.306,0,0,1-1.328-.2l-.015-.041a1.877,1.877,0,0,1,.315-.148,2.391,2.391,0,0,1,1.09.037C29.3,31.207,29.46,31.252,29.653,31.3Zm-3.3,3.713a9.355,9.355,0,0,1-6.67.011c.028-.489.079-1,.079-1.506s-.05-1.019-.078-1.523a9.436,9.436,0,0,1,6.67.011A9.627,9.627,0,0,0,26.354,35.009ZM18.282,31.29l-.015.044a3.689,3.689,0,0,1-1.508.167,2.176,2.176,0,0,1-.389-.149l.01-.063c.211-.046.421-.1.633-.136a2.092,2.092,0,0,1,.954-.012A2.2,2.2,0,0,1,18.282,31.29Zm-3.292-.667a9.428,9.428,0,0,1-6.673.01c.031-.5.087-1.007.088-1.516s-.056-1.011-.088-1.514a9.425,9.425,0,0,1,6.674.01A9.439,9.439,0,0,0,14.99,30.623Zm-.212-4.135A11.95,11.95,0,0,0,11.853,26a10.822,10.822,0,0,0-3.128.431c-.229.062-.457.126-.688.18a.154.154,0,0,1-.133-.041,1.885,1.885,0,0,0-1.976-.835c-.415.05-.823.15-1.234.227-.026.005-.053.008-.095.013a8.262,8.262,0,0,1,0-2.492c.29.062.565.13.843.176a3.362,3.362,0,0,0,1.276.046,1.714,1.714,0,0,0,1.142-.76.177.177,0,0,1,.232-.09c.742.177,1.48.376,2.231.5a9.225,9.225,0,0,0,3.833-.229c.356-.091.712-.183,1.066-.281a.138.138,0,0,1,.181.069,1.77,1.77,0,0,0,1.723.821c.516-.039,1.028-.145,1.563-.224a8.376,8.376,0,0,1-.006,2.464c-.251-.055-.488-.114-.729-.159a3.884,3.884,0,0,0-1.248-.088,1.762,1.762,0,0,0-1.364.908C15.152,26.587,14.964,26.54,14.778,26.488ZM6.9,26.919c-.558.218-1.641.363-1.875,0C5.6,26.712,6.632,26.565,6.9,26.919ZM5,22.547a.636.636,0,0,1,.435-.213,3.175,3.175,0,0,1,1.119.095c.113.023.224.055.36.088a.622.622,0,0,1-.4.21,3.1,3.1,0,0,1-1.186-.1C5.222,22.608,5.121,22.577,5,22.547Zm1.191-5.6c-.494.034-.982.15-1.472.23-.036.006-.071.015-.122.026a8.307,8.307,0,0,1,0-2.494c.3.062.575.13.858.178a3.208,3.208,0,0,0,1.369.016,1.7,1.7,0,0,0,1.049-.756c.058-.094.11-.093.2-.07.65.158,1.3.336,1.954.46a9.521,9.521,0,0,0,4.206-.2c.324-.084.648-.167.971-.258a.151.151,0,0,1,.2.073,1.782,1.782,0,0,0,1.6.815A7.11,7.11,0,0,0,18.68,14.7a8.334,8.334,0,0,1,0,2.493c-.366-.071-.711-.148-1.059-.2a2.622,2.622,0,0,0-1.324.061,1.734,1.734,0,0,0-.878.68c-.028.042-.057.084-.087.127-.464-.119-.922-.241-1.382-.353a9.888,9.888,0,0,0-5.026.1c-.3.081-.593.156-.889.237a.111.111,0,0,1-.148-.053A1.746,1.746,0,0,0,6.193,16.942Zm.719,1.193c-.6.227-1.66.365-1.913-.031.376-.061.733-.13,1.094-.174a1.12,1.12,0,0,1,.665.1A1.673,1.673,0,0,1,6.912,18.135ZM4.978,13.742a2.72,2.72,0,0,1,.327-.158,1.675,1.675,0,0,1,.787-.018c.27.043.537.1.835.162a.66.66,0,0,1-.43.222A3.569,3.569,0,0,1,4.978,13.742Zm10.013-.678a9.448,9.448,0,0,1-6.7,0,9.462,9.462,0,0,0,0-3.009,9.431,9.431,0,0,1,6.7,0A9.462,9.462,0,0,0,14.991,13.064Zm1.355.664c.328-.061.619-.137.914-.165a3.321,3.321,0,0,1,.718.026,1.05,1.05,0,0,1,.3.142l-.014.044a3.95,3.95,0,0,1-1.477.176A.719.719,0,0,1,16.346,13.728Zm1.939,4.4a.716.716,0,0,1-.466.215,4.056,4.056,0,0,1-1.454-.187.639.639,0,0,1,.431-.214,3.452,3.452,0,0,1,1.254.124C18.121,18.085,18.191,18.106,18.285,18.131Zm-10,.677a12.811,12.811,0,0,1,2.834-.581,10.623,10.623,0,0,1,3.874.59,9.475,9.475,0,0,0,0,3.048,11.486,11.486,0,0,1-3.365.608,11.5,11.5,0,0,1-3.343-.608A9.5,9.5,0,0,0,8.285,18.808Zm8.081,3.707a6.253,6.253,0,0,1,.616-.132,7.232,7.232,0,0,1,.858-.046.532.532,0,0,1,.431.209C17.4,22.794,16.641,22.849,16.366,22.515Zm1.913,4.391a.587.587,0,0,1-.393.209,3.333,3.333,0,0,1-1.321-.127c-.055-.012-.108-.029-.161-.045-.007,0-.011-.011-.023-.024a.628.628,0,0,1,.415-.2A3.991,3.991,0,0,1,18.279,26.906Zm8.076-.674a9.413,9.413,0,0,1-6.7,0,9.7,9.7,0,0,0,0-3.009,9.45,9.45,0,0,1,6.7,0A9.61,9.61,0,0,0,26.355,26.232Zm-.029-8.767a9.4,9.4,0,0,1-6.67-.013,9.677,9.677,0,0,0,0-3.01,9.444,9.444,0,0,1,6.671-.01c-.028.494-.079,1-.08,1.511S26.3,16.963,26.326,17.465Zm1.421.656a5.783,5.783,0,0,1,.6-.129,7.5,7.5,0,0,1,.86-.044.589.589,0,0,1,.448.221c-.658.108-1.283.379-1.905.014Zm-.014-4.388a1.968,1.968,0,0,1,.294-.147,2.1,2.1,0,0,1,.98.008c.208.036.414.089.651.141a.854.854,0,0,1-.646.237A3.643,3.643,0,0,1,27.733,13.733Zm1.913-4.35a5.7,5.7,0,0,1-.6.128,7.728,7.728,0,0,1-.9.045.438.438,0,0,1-.394-.207C28.6,9.1,29.373,9.047,29.646,9.383Zm-13.287,0a.65.65,0,0,1,.43-.217,3.955,3.955,0,0,1,1.47.173l.02.041a1.721,1.721,0,0,1-.289.149,2.1,2.1,0,0,1-.98-.006C16.8,9.488,16.594,9.435,16.359,9.384Zm-9.441,0a3.741,3.741,0,0,1-1.524.174A2.009,2.009,0,0,1,5.006,9.4l.016-.06a3.855,3.855,0,0,1,1.467-.176A.639.639,0,0,1,6.918,9.38ZM3.631,14.413a9.615,9.615,0,0,0,0,3.066,12.076,12.076,0,0,1-3.094.59A19.466,19.466,0,0,1,1.4,13.9,17.765,17.765,0,0,1,3.631,14.413ZM.83,19.05a13.941,13.941,0,0,0,3.007-.588.159.159,0,0,1,.211.08,1.758,1.758,0,0,0,1.69.8c.494-.037.981-.153,1.471-.235.032,0,.063-.013.109-.023a8.44,8.44,0,0,1,0,2.494c-.3-.063-.591-.133-.884-.181a3,3,0,0,0-1.423.011,1.687,1.687,0,0,0-.968.733c-.058.093-.111.093-.2.071-.678-.163-1.353-.341-2.037-.473-.422-.081-.857-.092-1.287-.133-.045-.546-.07-1.1-.07-1.652,0-.3.008-.594.021-.889Zm-.2,3.563a12.256,12.256,0,0,1,3,.583,9.678,9.678,0,0,0,0,3.09l-1.98.455A19.355,19.355,0,0,1,.627,22.613ZM2.039,27.7c.62-.158,1.236-.315,1.852-.467a.157.157,0,0,1,.129.058,1.8,1.8,0,0,0,1.773.833c.475-.041.944-.152,1.416-.232l.108-.024a8.434,8.434,0,0,1,0,2.5c-.252-.055-.49-.114-.731-.158a3.749,3.749,0,0,0-1.331-.074,1.728,1.728,0,0,0-1.221.8A.132.132,0,0,1,3.87,31,19.235,19.235,0,0,1,2.039,27.7Zm4.886,3.6a.82.82,0,0,1-.606.232,4.393,4.393,0,0,1-1.3-.2l-.011-.047a1.741,1.741,0,0,1,.308-.142A3.518,3.518,0,0,1,6.925,31.3Zm11.349,4.424a.854.854,0,0,1-.263.138,3.192,3.192,0,0,1-.7.039c-.311-.028-.619-.1-.928-.159a.731.731,0,0,1,.632-.253A3.628,3.628,0,0,1,18.274,35.721Zm-9.218.424a9.874,9.874,0,0,1,5.94.232,9.494,9.494,0,0,0-.083,2.436A19.266,19.266,0,0,1,9.056,36.145Zm18.68-.469c.642-.11,1.268-.376,1.93.013C29.019,35.925,27.97,36.054,27.736,35.676ZM39.1,22.561l.014-.047.193-.048c-.008.062-.017.124-.025.186Zm-.4-.981a7.447,7.447,0,0,1,0-2.487l.753.167c.008.232.013.465.013.7q0,.74-.054,1.47C39.18,21.482,38.944,21.53,38.708,21.58ZM30.127,3.3c-.031.24-.049.483-.072.72-.363-.071-.7-.148-1.047-.2a2.651,2.651,0,0,0-1.363.066,1.7,1.7,0,0,0-.875.705.146.146,0,0,1-.192.07C25.886,4.493,25.2,4.3,24.5,4.176a9.464,9.464,0,0,0-4.109.229c-.324.085-.647.173-.972.253a.173.173,0,0,1-.149-.036,1.8,1.8,0,0,0-1.793-.846c-.475.042-.944.153-1.416.234l-.1.021a8.683,8.683,0,0,1,0-2.5c.248.054.481.112.717.156a3.886,3.886,0,0,0,1.316.081A1.752,1.752,0,0,0,19.27.931c.012-.019.026-.037.04-.057.454.117.9.237,1.353.347a9.666,9.666,0,0,0,4.687,0l.034-.008A19.242,19.242,0,0,1,30.127,3.3Z" /></svg>') no-repeat center center;
}
#product .category_choice ul li a.material5::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34.6 41.6"><path fill="%23000" d="M34.4,10.2c-2.4-1.2-5.7,0-7.6,1.8c-1.8,1.6-2.6,4.1-2.1,6.5c0.4,1.5,1.3,2.8,2.2,4c0.2,0.3,0.5,0.7,0.7,1	c1.2,1.8,1.5,3.7,1,5.5c-0.7,2.2-2.6,4.2-5.2,5.3L19.9,3.2h-3.7V0H7.3v3.2H3.4L1.1,29L1,29.1l0.1,0L0,41.6h24.1l-0.7-6.3	c3-1.2,5.2-3.4,6-6c0.6-2.1,0.3-4.3-1.1-6.3c-0.2-0.4-0.5-0.7-0.7-1c-0.9-1.2-1.7-2.4-2-3.7c-0.4-2.1,0.3-4.3,1.9-5.7	C29.1,11.1,32,10,34,11c0.2,0.1,0.5,0,0.6-0.2C34.7,10.6,34.6,10.3,34.4,10.2z M22.7,36.8l-2.1,1.6l-2.2-1.6l3.9-3L22.7,36.8z	 M22.3,32.8l-4.5,3.4l-2.2-1.6l6.3-4.8L22.3,32.8z M21.8,28.7L14.9,34l-2.2-1.6l8.8-6.7L21.8,28.7z M21.4,24.7L12,31.8l-2.2-1.6	L21,21.7L21.4,24.7z M20.9,20.7l-11.8,9L7,28l13.6-10.4L20.9,20.7z M20.5,16.7L6.3,27.5l-2.2-1.6l16.1-12.2L20.5,16.7z M19.6,8.6	l-2.1,1.6L9.3,4h4.3L19.6,8.6L19.6,8.6z M19.1,4l0.4,3.3L15.1,4H19.1z M8.1,0.8h7.2v2.3H8.1V0.8z M4.2,4h3.7l8.9,6.7l-2.2,1.6	l-10.5-8L4.2,4z M4,5.4l9.9,7.5l-2.2,1.6l-8-6.1L4,5.4z M3.7,9.5l7.4,5.6l-2.2,1.6l-5.5-4.2L3.7,9.5z M3.3,13.6l4.8,3.7L6,18.9	l-3-2.2L3.3,13.6z M3,17.7l2.3,1.8l-2.4,1.8l0.3,0.3l-0.3-0.3l-0.2,0.2L3,17.7z M2.5,22.6L3.4,22l0,0l2.9-2.2l2.9-2.2l2.9-2.2	l-0.3-0.3l0.3,0.3l2.9-2.2l0,0l2.9-2.2l2-1.5l0.3,3L3.4,25.3l-1-0.8L2.5,22.6z M0.9,40.8l0.3-3.4l4.6,3.4H0.9z M7.2,40.8l-5.9-4.4	l0.2-2.7l10,7.1H7.2z M13,40.8L1.6,32.6l0.3-2.9l14.7,11H13z M18,40.8l-16-12l0.3-3.3l20.1,15.2H18z M21.3,38.9l1.5-1.1l0.3,2.5	L21.3,38.9z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34.6 41.6"><path fill="%23000" d="M34.4,10.2c-2.4-1.2-5.7,0-7.6,1.8c-1.8,1.6-2.6,4.1-2.1,6.5c0.4,1.5,1.3,2.8,2.2,4c0.2,0.3,0.5,0.7,0.7,1	c1.2,1.8,1.5,3.7,1,5.5c-0.7,2.2-2.6,4.2-5.2,5.3L19.9,3.2h-3.7V0H7.3v3.2H3.4L1.1,29L1,29.1l0.1,0L0,41.6h24.1l-0.7-6.3	c3-1.2,5.2-3.4,6-6c0.6-2.1,0.3-4.3-1.1-6.3c-0.2-0.4-0.5-0.7-0.7-1c-0.9-1.2-1.7-2.4-2-3.7c-0.4-2.1,0.3-4.3,1.9-5.7	C29.1,11.1,32,10,34,11c0.2,0.1,0.5,0,0.6-0.2C34.7,10.6,34.6,10.3,34.4,10.2z M22.7,36.8l-2.1,1.6l-2.2-1.6l3.9-3L22.7,36.8z	 M22.3,32.8l-4.5,3.4l-2.2-1.6l6.3-4.8L22.3,32.8z M21.8,28.7L14.9,34l-2.2-1.6l8.8-6.7L21.8,28.7z M21.4,24.7L12,31.8l-2.2-1.6	L21,21.7L21.4,24.7z M20.9,20.7l-11.8,9L7,28l13.6-10.4L20.9,20.7z M20.5,16.7L6.3,27.5l-2.2-1.6l16.1-12.2L20.5,16.7z M19.6,8.6	l-2.1,1.6L9.3,4h4.3L19.6,8.6L19.6,8.6z M19.1,4l0.4,3.3L15.1,4H19.1z M8.1,0.8h7.2v2.3H8.1V0.8z M4.2,4h3.7l8.9,6.7l-2.2,1.6	l-10.5-8L4.2,4z M4,5.4l9.9,7.5l-2.2,1.6l-8-6.1L4,5.4z M3.7,9.5l7.4,5.6l-2.2,1.6l-5.5-4.2L3.7,9.5z M3.3,13.6l4.8,3.7L6,18.9	l-3-2.2L3.3,13.6z M3,17.7l2.3,1.8l-2.4,1.8l0.3,0.3l-0.3-0.3l-0.2,0.2L3,17.7z M2.5,22.6L3.4,22l0,0l2.9-2.2l2.9-2.2l2.9-2.2	l-0.3-0.3l0.3,0.3l2.9-2.2l0,0l2.9-2.2l2-1.5l0.3,3L3.4,25.3l-1-0.8L2.5,22.6z M0.9,40.8l0.3-3.4l4.6,3.4H0.9z M7.2,40.8l-5.9-4.4	l0.2-2.7l10,7.1H7.2z M13,40.8L1.6,32.6l0.3-2.9l14.7,11H13z M18,40.8l-16-12l0.3-3.3l20.1,15.2H18z M21.3,38.9l1.5-1.1l0.3,2.5	L21.3,38.9z" /></svg>') no-repeat center center;
}
#product .category_choice ul li a.material6::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.533 25.936"><path fill="%23000" d="M24.044,2.609h7.531c.099,0,.18.081.18.18v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M27.719,6.502v.285c0,.099.08.179.179.179h10.101c.099,0,.179-.08.179-.179v-.465h-10.28c-.099,0-.179.08-.179.179Z"/><rect class="cls-1" x="42.828" y="6.323" width="3.444" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M16.409,6.645c0-1.572-1.17-2.942-2.721-3.188-.018-.003-.04-.003-.065.019-.032.027-.051.072-.051.121v.285c0,.125.141.231.274.266,1.13.301,1.919,1.328,1.919,2.497,0,1.425-1.159,2.584-2.584,2.584-1.169,0-2.196-.789-2.497-1.919-.035-.133-.14-.273-.266-.273h-.285c-.049,0-.094.019-.121.051-.022.026-.021.048-.019.065.245,1.551,1.616,2.721,3.187,2.721,1.78,0,3.228-1.448,3.228-3.228Z"/><path class="cls-1" d="M49.888,12.646h-3.261l.93-.703c1.685-1.274,2.652-3.205,2.652-5.298,0-3.664-2.981-6.645-6.645-6.645H13.181c-3.664,0-6.645,2.981-6.645,6.645,0,2.093.967,4.025,2.652,5.298l.93.703h-3.474c-3.664,0-6.645,2.981-6.645,6.645s2.981,6.645,6.645,6.645h12.071v-.043l.532.031c.085.006.17.012.257.012h30.384c3.664,0,6.645-2.981,6.645-6.645s-2.981-6.645-6.645-6.645ZM43.565.644c1.339,0,2.609.438,3.674,1.266l.9.7h-11.374c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.939,2.076.939,3.211,0,1.193-.351,2.346-1.016,3.335l-.116.173h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.32l.929-.703c.402-.304.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.179-.08.179-.179v-.285c0-.099-.081-.179-.179-.179h-12.149l.281-.565c.463-.93.697-1.92.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321ZM7.18,6.645c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001-6.001-2.692-6.001-6.001ZM16.441,13.29l-.93.703c-.905.684-1.624,1.588-2.08,2.612l-.358.805-.357-.805c-.455-1.024-1.174-1.928-2.08-2.612l-.93-.703h6.734ZM.644,19.291c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001S.644,22.601.644,19.291ZM9.708,25.293l.93-.703c.906-.684,1.625-1.588,2.08-2.612l.357-.805.358.805c.455,1.025,1.175,1.928,2.08,2.612l.93.703h-6.734ZM13.503,19.291c0-3.309,2.692-6.001,6.001-6.001s6.001,2.692,6.001,6.001-2.692,6.001-6.001,6.001-6.001-2.692-6.001-6.001ZM54.758,22.8h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.321l.93-.703c.402-.303.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.18-.08.18-.179v-.285c0-.099-.081-.179-.18-.179h-12.149l.281-.565c.462-.93.697-1.921.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321c1.338,0,2.608.438,3.674,1.265l.901.7h-11.375c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.94,2.075.94,3.211,0,1.192-.351,2.346-1.016,3.335l-.116.173Z"/><path class="cls-1" d="M30.367,15.255h7.532c.099,0,.179.08.179.179v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.18-.081-.18-.18v-.285c0-.099.08-.179.179-.179Z"/><rect class="cls-1" x="34.043" y="18.97" width="10.46" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M49.33,18.97h3.086c.099,0,.18.081.18.18v.284c0,.099-.081.18-.18.18h-3.086c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M22.553,19.682h-.285c-.125,0-.231.141-.266.273-.301,1.13-1.328,1.92-2.497,1.92-1.425,0-2.584-1.159-2.584-2.584,0-1.169.789-2.196,1.919-2.497.132-.035.273-.141.273-.266v-.285c0-.048-.019-.094-.051-.121-.019-.016-.036-.02-.051-.02-.005,0-.01,0-.015.001-1.551.245-2.721,1.616-2.721,3.188,0,1.78,1.448,3.228,3.228,3.228,1.572,0,2.942-1.17,3.188-2.721.003-.017.003-.039-.019-.065-.027-.032-.072-.051-.121-.051Z"/><path class="cls-1" d="M6.645,16.064c-1.571,0-2.942,1.17-3.188,2.721-.003.016-.003.039.019.065.027.032.072.051.12.051h.285c.125,0,.23-.141.266-.273.301-1.13,1.328-1.919,2.497-1.919,1.425,0,2.584,1.159,2.584,2.584,0,1.169-.789,2.196-1.919,2.497-.132.035-.273.141-.273.266v.285c0,.048.019.093.051.121.026.022.048.022.065.019,1.551-.246,2.721-1.616,2.721-3.188,0-1.78-1.448-3.228-3.228-3.228Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.533 25.936"><path fill="%23000" d="M24.044,2.609h7.531c.099,0,.18.081.18.18v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M27.719,6.502v.285c0,.099.08.179.179.179h10.101c.099,0,.179-.08.179-.179v-.465h-10.28c-.099,0-.179.08-.179.179Z"/><rect class="cls-1" x="42.828" y="6.323" width="3.444" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M16.409,6.645c0-1.572-1.17-2.942-2.721-3.188-.018-.003-.04-.003-.065.019-.032.027-.051.072-.051.121v.285c0,.125.141.231.274.266,1.13.301,1.919,1.328,1.919,2.497,0,1.425-1.159,2.584-2.584,2.584-1.169,0-2.196-.789-2.497-1.919-.035-.133-.14-.273-.266-.273h-.285c-.049,0-.094.019-.121.051-.022.026-.021.048-.019.065.245,1.551,1.616,2.721,3.187,2.721,1.78,0,3.228-1.448,3.228-3.228Z"/><path class="cls-1" d="M49.888,12.646h-3.261l.93-.703c1.685-1.274,2.652-3.205,2.652-5.298,0-3.664-2.981-6.645-6.645-6.645H13.181c-3.664,0-6.645,2.981-6.645,6.645,0,2.093.967,4.025,2.652,5.298l.93.703h-3.474c-3.664,0-6.645,2.981-6.645,6.645s2.981,6.645,6.645,6.645h12.071v-.043l.532.031c.085.006.17.012.257.012h30.384c3.664,0,6.645-2.981,6.645-6.645s-2.981-6.645-6.645-6.645ZM43.565.644c1.339,0,2.609.438,3.674,1.266l.9.7h-11.374c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.939,2.076.939,3.211,0,1.193-.351,2.346-1.016,3.335l-.116.173h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.32l.929-.703c.402-.304.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.179-.08.179-.179v-.285c0-.099-.081-.179-.179-.179h-12.149l.281-.565c.463-.93.697-1.92.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321ZM7.18,6.645c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001-6.001-2.692-6.001-6.001ZM16.441,13.29l-.93.703c-.905.684-1.624,1.588-2.08,2.612l-.358.805-.357-.805c-.455-1.024-1.174-1.928-2.08-2.612l-.93-.703h6.734ZM.644,19.291c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001S.644,22.601.644,19.291ZM9.708,25.293l.93-.703c.906-.684,1.625-1.588,2.08-2.612l.357-.805.358.805c.455,1.025,1.175,1.928,2.08,2.612l.93.703h-6.734ZM13.503,19.291c0-3.309,2.692-6.001,6.001-6.001s6.001,2.692,6.001,6.001-2.692,6.001-6.001,6.001-6.001-2.692-6.001-6.001ZM54.758,22.8h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.321l.93-.703c.402-.303.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.18-.08.18-.179v-.285c0-.099-.081-.179-.18-.179h-12.149l.281-.565c.462-.93.697-1.921.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321c1.338,0,2.608.438,3.674,1.265l.901.7h-11.375c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.94,2.075.94,3.211,0,1.192-.351,2.346-1.016,3.335l-.116.173Z"/><path class="cls-1" d="M30.367,15.255h7.532c.099,0,.179.08.179.179v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.18-.081-.18-.18v-.285c0-.099.08-.179.179-.179Z"/><rect class="cls-1" x="34.043" y="18.97" width="10.46" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M49.33,18.97h3.086c.099,0,.18.081.18.18v.284c0,.099-.081.18-.18.18h-3.086c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M22.553,19.682h-.285c-.125,0-.231.141-.266.273-.301,1.13-1.328,1.92-2.497,1.92-1.425,0-2.584-1.159-2.584-2.584,0-1.169.789-2.196,1.919-2.497.132-.035.273-.141.273-.266v-.285c0-.048-.019-.094-.051-.121-.019-.016-.036-.02-.051-.02-.005,0-.01,0-.015.001-1.551.245-2.721,1.616-2.721,3.188,0,1.78,1.448,3.228,3.228,3.228,1.572,0,2.942-1.17,3.188-2.721.003-.017.003-.039-.019-.065-.027-.032-.072-.051-.121-.051Z"/><path class="cls-1" d="M6.645,16.064c-1.571,0-2.942,1.17-3.188,2.721-.003.016-.003.039.019.065.027.032.072.051.12.051h.285c.125,0,.23-.141.266-.273.301-1.13,1.328-1.919,2.497-1.919,1.425,0,2.584,1.159,2.584,2.584,0,1.169-.789,2.196-1.919,2.497-.132.035-.273.141-.273.266v.285c0,.048.019.093.051.121.026.022.048.022.065.019,1.551-.246,2.721-1.616,2.721-3.188,0-1.78-1.448-3.228-3.228-3.228Z" /></svg>') no-repeat center center;
  height: 32px;
  top: 26px;
}
#product .category_choice ul li a.material7::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36.652 36.791"><path fill="%23000" d="M36.05,3.095H13.168C12.875,1.231,10.084-.123,6.784.009,4.13.115,1.797,1.006.694,2.334.16,2.978-.073,3.702.02,4.432v27.11c-.027.211-.026.424.003.638,0,.003,0,.006,0,.009,0,.007.001.013.002.02.384,2.636,4.252,4.583,8.927,4.583.226,0,.453-.005.681-.014h26.416c.333,0,.603-.27.603-.602V3.698c0-.333-.27-.602-.603-.602ZM1.621,3.104c.877-1.057,2.923-1.8,5.211-1.891,2.802-.115,4.941.979,5.142,2.042v25.803c-1.174-.878-3.077-1.403-5.189-1.319-2.285.092-4.331.765-5.56,1.798V4.391c0-.029-.002-.058-.006-.087-.059-.404.077-.807.403-1.2ZM35.447,35.573H9.61c-4.223.169-8.042-1.432-8.386-3.502v-.43c.045-.272.176-.542.396-.807.877-1.057,2.923-1.8,5.211-1.891,2.847-.114,4.991,1.005,5.148,2.08.028.198-.04.393-.21.598-.524.631-1.771,1.076-3.177,1.132-1.771.068-2.997-.631-3.071-1.146-.003-.023-.014-.092.086-.213.244-.294.919-.608,1.876-.646,1.083-.045,1.719.39,1.742.548.048.33.355.558.683.509.33-.048.558-.354.51-.683-.14-.962-1.422-1.64-2.982-1.578-1.203.048-2.232.452-2.754,1.081-.29.349-.411.749-.352,1.156.194,1.331,2.053,2.262,4.312,2.176,1.785-.072,3.301-.657,4.056-1.566.376-.453.542-.967.481-1.488V4.3h22.269v31.273Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36.652 36.791"><path fill="%23000" d="M36.05,3.095H13.168C12.875,1.231,10.084-.123,6.784.009,4.13.115,1.797,1.006.694,2.334.16,2.978-.073,3.702.02,4.432v27.11c-.027.211-.026.424.003.638,0,.003,0,.006,0,.009,0,.007.001.013.002.02.384,2.636,4.252,4.583,8.927,4.583.226,0,.453-.005.681-.014h26.416c.333,0,.603-.27.603-.602V3.698c0-.333-.27-.602-.603-.602ZM1.621,3.104c.877-1.057,2.923-1.8,5.211-1.891,2.802-.115,4.941.979,5.142,2.042v25.803c-1.174-.878-3.077-1.403-5.189-1.319-2.285.092-4.331.765-5.56,1.798V4.391c0-.029-.002-.058-.006-.087-.059-.404.077-.807.403-1.2ZM35.447,35.573H9.61c-4.223.169-8.042-1.432-8.386-3.502v-.43c.045-.272.176-.542.396-.807.877-1.057,2.923-1.8,5.211-1.891,2.847-.114,4.991,1.005,5.148,2.08.028.198-.04.393-.21.598-.524.631-1.771,1.076-3.177,1.132-1.771.068-2.997-.631-3.071-1.146-.003-.023-.014-.092.086-.213.244-.294.919-.608,1.876-.646,1.083-.045,1.719.39,1.742.548.048.33.355.558.683.509.33-.048.558-.354.51-.683-.14-.962-1.422-1.64-2.982-1.578-1.203.048-2.232.452-2.754,1.081-.29.349-.411.749-.352,1.156.194,1.331,2.053,2.262,4.312,2.176,1.785-.072,3.301-.657,4.056-1.566.376-.453.542-.967.481-1.488V4.3h22.269v31.273Z" /></svg>') no-repeat center center;
  height: 42px;
  top: 20px;
}
#product .category_choice ul li a.material8::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 40.852"><path fill="%23000" d="M17.749,28.332c-.956-1.82-2.749-2.963-4.593-3.532-1.409-.434-2.874-.58-4.366-.58-2.905,0-5.91.552-8.791.595,2.109,3.815,3.35,8.457,6.525,11.424,1.359,1.271,3.159,2.234,5.129,2.234.072,0,.145-.001.218-.004,2.276-.083,4.401-1.53,6.49-2.577l2.622,1.52.377-.648-2.623-1.521c-.129-2.333.07-4.896-.989-6.912ZM13.825,32.396l-3.922-2.273-.626-3.7-.74.125.522,3.086-4.788-2.776-.377.648,4.789,2.776-2.938,1.08.26.704,3.521-1.295,3.923,2.274-4.403,1.699.27.699,4.965-1.916,3.312,1.92c-.3.156-.599.312-.901.475-1.584.855-3.221,1.739-4.848,1.798-.064.002-.127.003-.191.003-1.575,0-3.214-.722-4.617-2.032-2.062-1.927-3.315-4.71-4.526-7.401-.413-.918-.836-1.858-1.293-2.77,1.019-.057,2.045-.156,3.046-.254,1.498-.146,3.046-.297,4.526-.297,1.597,0,2.952.179,4.145.547,1.109.342,3.122,1.207,4.15,3.164.757,1.441.804,3.301.849,5.101.008.342.022.679.035,1.017l-3.311-1.919-.804-5.261-.742.113.712,4.664Z	M35.209,24.22c-1.492,0-2.957.146-4.366.58-1.844.569-3.637,1.712-4.593,3.532-1.06,2.016-.86,4.579-.989,6.912l-2.623,1.521.377.648,2.622-1.52c2.089,1.047,4.214,2.494,6.49,2.577.073.003.146.004.218.004,1.97,0,3.77-.964,5.129-2.234,3.175-2.967,4.416-7.609,6.525-11.424-2.88-.043-5.885-.595-8.791-.595ZM36.963,35.692c-1.402,1.311-3.042,2.032-4.617,2.032-.063,0-.127-.001-.191-.003-1.626-.059-3.264-.943-4.848-1.798-.302-.163-.601-.319-.901-.475l3.312-1.92,4.965,1.916.27-.699-4.403-1.699,3.923-2.274,3.521,1.295.26-.704-2.938-1.08,4.789-2.776-.377-.648-4.788,2.776.522-3.086-.74-.125-.626,3.7-3.922,2.273.712-4.664-.742-.113-.804,5.261-3.311,1.919c.013-.338.027-.674.035-1.017.045-1.799.092-3.66.849-5.101,1.028-1.957,3.041-2.822,4.15-3.164,1.192-.368,2.548-.547,4.145-.547,1.48,0,3.028.151,4.526.297,1.001.098,2.028.197,3.046.254-.457.912-.88,1.852-1.293,2.77-1.211,2.691-2.464,5.473-4.526,7.401Z M29.107,20.767c1.329-2.111,1.438-4.688.913-6.969-1.183-5.137-5.3-9.264-8.02-13.799-2.72,4.535-6.837,8.661-8.02,13.799-.525,2.281-.416,4.858.912,6.969,1.488,2.365,4.347,3.718,6.733,5.294v14.79h.75v-14.79c2.386-1.576,5.245-2.93,6.732-5.294ZM23.585,24.413c-.401.246-.808.503-1.21.76v-4.922l5.062-4.069-.471-.585-4.592,3.69v-5.705l3.53-2.932-.479-.577-3.052,2.535v-6.885h-.75v6.885l-3.052-2.535-.479.577,3.53,2.932v5.705l-4.592-3.69-.471.585,5.062,4.069v4.921c-.402-.257-.81-.514-1.21-.76-1.876-1.151-3.816-2.342-4.888-4.044-1.458-2.319-1.137-5.006-.816-6.401.775-3.367,2.942-6.388,5.039-9.309.758-1.056,1.536-2.14,2.25-3.243.715,1.103,1.493,2.187,2.25,3.243,2.096,2.921,4.263,5.942,5.039,9.309.321,1.396.643,4.083-.816,6.401-1.071,1.702-3.011,2.893-4.887,4.045Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 40.852"><path fill="%23000" d="M17.749,28.332c-.956-1.82-2.749-2.963-4.593-3.532-1.409-.434-2.874-.58-4.366-.58-2.905,0-5.91.552-8.791.595,2.109,3.815,3.35,8.457,6.525,11.424,1.359,1.271,3.159,2.234,5.129,2.234.072,0,.145-.001.218-.004,2.276-.083,4.401-1.53,6.49-2.577l2.622,1.52.377-.648-2.623-1.521c-.129-2.333.07-4.896-.989-6.912ZM13.825,32.396l-3.922-2.273-.626-3.7-.74.125.522,3.086-4.788-2.776-.377.648,4.789,2.776-2.938,1.08.26.704,3.521-1.295,3.923,2.274-4.403,1.699.27.699,4.965-1.916,3.312,1.92c-.3.156-.599.312-.901.475-1.584.855-3.221,1.739-4.848,1.798-.064.002-.127.003-.191.003-1.575,0-3.214-.722-4.617-2.032-2.062-1.927-3.315-4.71-4.526-7.401-.413-.918-.836-1.858-1.293-2.77,1.019-.057,2.045-.156,3.046-.254,1.498-.146,3.046-.297,4.526-.297,1.597,0,2.952.179,4.145.547,1.109.342,3.122,1.207,4.15,3.164.757,1.441.804,3.301.849,5.101.008.342.022.679.035,1.017l-3.311-1.919-.804-5.261-.742.113.712,4.664Z	M35.209,24.22c-1.492,0-2.957.146-4.366.58-1.844.569-3.637,1.712-4.593,3.532-1.06,2.016-.86,4.579-.989,6.912l-2.623,1.521.377.648,2.622-1.52c2.089,1.047,4.214,2.494,6.49,2.577.073.003.146.004.218.004,1.97,0,3.77-.964,5.129-2.234,3.175-2.967,4.416-7.609,6.525-11.424-2.88-.043-5.885-.595-8.791-.595ZM36.963,35.692c-1.402,1.311-3.042,2.032-4.617,2.032-.063,0-.127-.001-.191-.003-1.626-.059-3.264-.943-4.848-1.798-.302-.163-.601-.319-.901-.475l3.312-1.92,4.965,1.916.27-.699-4.403-1.699,3.923-2.274,3.521,1.295.26-.704-2.938-1.08,4.789-2.776-.377-.648-4.788,2.776.522-3.086-.74-.125-.626,3.7-3.922,2.273.712-4.664-.742-.113-.804,5.261-3.311,1.919c.013-.338.027-.674.035-1.017.045-1.799.092-3.66.849-5.101,1.028-1.957,3.041-2.822,4.15-3.164,1.192-.368,2.548-.547,4.145-.547,1.48,0,3.028.151,4.526.297,1.001.098,2.028.197,3.046.254-.457.912-.88,1.852-1.293,2.77-1.211,2.691-2.464,5.473-4.526,7.401Z M29.107,20.767c1.329-2.111,1.438-4.688.913-6.969-1.183-5.137-5.3-9.264-8.02-13.799-2.72,4.535-6.837,8.661-8.02,13.799-.525,2.281-.416,4.858.912,6.969,1.488,2.365,4.347,3.718,6.733,5.294v14.79h.75v-14.79c2.386-1.576,5.245-2.93,6.732-5.294ZM23.585,24.413c-.401.246-.808.503-1.21.76v-4.922l5.062-4.069-.471-.585-4.592,3.69v-5.705l3.53-2.932-.479-.577-3.052,2.535v-6.885h-.75v6.885l-3.052-2.535-.479.577,3.53,2.932v5.705l-4.592-3.69-.471.585,5.062,4.069v4.921c-.402-.257-.81-.514-1.21-.76-1.876-1.151-3.816-2.342-4.888-4.044-1.458-2.319-1.137-5.006-.816-6.401.775-3.367,2.942-6.388,5.039-9.309.758-1.056,1.536-2.14,2.25-3.243.715,1.103,1.493,2.187,2.25,3.243,2.096,2.921,4.263,5.942,5.039,9.309.321,1.396.643,4.083-.816,6.401-1.071,1.702-3.011,2.893-4.887,4.045Z" /></svg>') no-repeat center center;
}
#product .category_choice ul li a.material9::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37.75 41.598"><path fill="%23000" d="M23.87,23.739c.845.148,1.695.273,2.522.273,2.794,0,5.33-1.428,6.543-8.243,0,0-1.194-.212-2.885-.212-3.961,0-10.656,1.163-11.175,8.937.001-.001.857-.924,3.16-.924.532,0,1.141.049,1.835.17ZM30.049,16.306c.813,0,1.51.052,2,.103-1.239,6.018-3.545,6.853-5.657,6.853-.787,0-1.615-.126-2.393-.261-.69-.12-1.351-.182-1.964-.182-.939,0-1.674.141-2.233.325.655-3.386,3.081-6.838,10.248-6.838Z"/><polygon points="18.587 35.047 19.337 35.047 19.337 24.493 18.875 24.493 18.587 24.493 18.587 35.047"/><path d="M11.358,24.012c.827,0,1.677-.125,2.522-.273.694-.121,1.303-.17,1.835-.17,2.303,0,3.159.923,3.16.924-.519-7.774-7.213-8.937-11.175-8.937-1.691,0-2.885.212-2.885.212,1.213,6.816,3.749,8.243,6.543,8.243ZM7.7,16.306c7.167,0,9.592,3.452,10.248,6.838-.56-.184-1.294-.325-2.233-.325-.613,0-1.274.061-1.964.182-.778.136-1.606.261-2.393.261-2.112,0-4.418-.835-5.657-6.853.489-.051,1.186-.102,1.999-.102Z"/><path d="M18.875,2.674c4.237,0,8.36,1.493,11.608,4.204l.48-.576c-3.383-2.823-7.676-4.378-12.089-4.378C8.468,1.924,0,10.392,0,20.799c0,2.274.4,4.498,1.189,6.609l.703-.263c-.758-2.027-1.143-4.162-1.143-6.346C.75,10.805,8.881,2.674,18.875,2.674Z"/><polygon points="24.264 7.803 24.348 8.548 32.01 7.676 31.28 0 30.534 .071 31.193 7.014 24.264 7.803"/><path d="M36.561,14.19l-.703.263c.758,2.026,1.143,4.162,1.143,6.346,0,9.994-8.131,18.125-18.125,18.125-4.237,0-8.36-1.493-11.608-4.205l-.48.576c3.383,2.823,7.676,4.378,12.089,4.378,10.407,0,18.875-8.467,18.875-18.875,0-2.274-.4-4.498-1.189-6.609Z"/><polygon points="13.485 33.795 13.401 33.05 5.74 33.922 6.47 41.598 7.216 41.527 6.557 34.584 13.485 33.795" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37.75 41.598"><path fill="%23000" d="M23.87,23.739c.845.148,1.695.273,2.522.273,2.794,0,5.33-1.428,6.543-8.243,0,0-1.194-.212-2.885-.212-3.961,0-10.656,1.163-11.175,8.937.001-.001.857-.924,3.16-.924.532,0,1.141.049,1.835.17ZM30.049,16.306c.813,0,1.51.052,2,.103-1.239,6.018-3.545,6.853-5.657,6.853-.787,0-1.615-.126-2.393-.261-.69-.12-1.351-.182-1.964-.182-.939,0-1.674.141-2.233.325.655-3.386,3.081-6.838,10.248-6.838Z"/><polygon points="18.587 35.047 19.337 35.047 19.337 24.493 18.875 24.493 18.587 24.493 18.587 35.047"/><path d="M11.358,24.012c.827,0,1.677-.125,2.522-.273.694-.121,1.303-.17,1.835-.17,2.303,0,3.159.923,3.16.924-.519-7.774-7.213-8.937-11.175-8.937-1.691,0-2.885.212-2.885.212,1.213,6.816,3.749,8.243,6.543,8.243ZM7.7,16.306c7.167,0,9.592,3.452,10.248,6.838-.56-.184-1.294-.325-2.233-.325-.613,0-1.274.061-1.964.182-.778.136-1.606.261-2.393.261-2.112,0-4.418-.835-5.657-6.853.489-.051,1.186-.102,1.999-.102Z"/><path d="M18.875,2.674c4.237,0,8.36,1.493,11.608,4.204l.48-.576c-3.383-2.823-7.676-4.378-12.089-4.378C8.468,1.924,0,10.392,0,20.799c0,2.274.4,4.498,1.189,6.609l.703-.263c-.758-2.027-1.143-4.162-1.143-6.346C.75,10.805,8.881,2.674,18.875,2.674Z"/><polygon points="24.264 7.803 24.348 8.548 32.01 7.676 31.28 0 30.534 .071 31.193 7.014 24.264 7.803"/><path d="M36.561,14.19l-.703.263c.758,2.026,1.143,4.162,1.143,6.346,0,9.994-8.131,18.125-18.125,18.125-4.237,0-8.36-1.493-11.608-4.205l-.48.576c3.383,2.823,7.676,4.378,12.089,4.378,10.407,0,18.875-8.467,18.875-18.875,0-2.274-.4-4.498-1.189-6.609Z"/><polygon points="13.485 33.795 13.401 33.05 5.74 33.922 6.47 41.598 7.216 41.527 6.557 34.584 13.485 33.795" /></svg>') no-repeat center center;
}
#product .category_choice ul li a.active, #product .category_choice ul li a:hover {
  background: #000000;
  color: #ffffff;
  transition: all 0.5s ease 0s;
}
#product .category_choice ul li a.active::after, #product .category_choice ul li a:hover::after {
  background-color: #ffffff;
  transition: all 0.5s ease 0s;
}
@media (max-width: 1350px) {
  #product .category_choice ul li {
    width: calc((100% - 12vw) / 9);
    margin: 0 1.5vw 0 0;
  }
  #product .category_choice ul li:nth-child(n+10) {
    margin-top: 1.5vw;
  }
  #product .category_choice ul li a {
    border-radius: 2.3vw;
    font-size: 1.1vw;
    padding-top: 4vw;
  }
  #product .category_choice ul li a::after {
    height: 3vw;
    top: 1.5vw;
  }
  #product .category_choice ul li a.material0::after, #product .category_choice ul li a.material1::after, #product .category_choice ul li a.material2::after, #product .category_choice ul li a.material3::after, #product .category_choice ul li a.material4::after, #product .category_choice ul li a.material5::after, #product .category_choice ul li a.material6::after, #product .category_choice ul li a.material7::after, #product .category_choice ul li a.material8::after, #product .category_choice ul li a.material9::after {
    height: 3vw;
    top: 1.5vw;
  }
}
@media (max-width: 850px) {
  #product .category_choice ul li {
    width: calc((100% - 10vw) / 5);
    margin: 0 2.5vw 0 0;
  }
  #product .category_choice ul li:nth-child(n+6) {
    margin-top: 2.5vw;
  }
  #product .category_choice ul li:nth-child(9n) {
    margin-right: 2.5vw;
  }
  #product .category_choice ul li:nth-child(5n) {
    margin-right: 0;
  }
  #product .category_choice ul li a {
    font-size: 2.4vw;
    padding-top: 5.8vw;
  }
  #product .category_choice ul li a::after {
    height: 3vw;
    top: 1.5vw;
  }
  #product .category_choice ul li a.material0::after, #product .category_choice ul li a.material1::after, #product .category_choice ul li a.material2::after, #product .category_choice ul li a.material3::after, #product .category_choice ul li a.material4::after, #product .category_choice ul li a.material5::after, #product .category_choice ul li a.material6::after, #product .category_choice ul li a.material7::after, #product .category_choice ul li a.material8::after, #product .category_choice ul li a.material9::after {
    height: 5.5vw;
    top: 1.7vw;
  }
}
#product .category_list {
  margin: 0 0 30px 0;
}
#product .category_list ul {
  display: flex;
  flex-wrap: wrap;
}
#product .category_list ul li {
  background: #000000;
  border-radius: 50px;
  text-align: center;
  margin: 0 10px 10px 0;
  padding: 0px 30px;
  font-size: 24px;
  font-size: 2.4rem;
  color: #ffffff;
}
@media (max-width: 850px) {
  #product .category_list {
    margin: 0 0 3.5vw 0;
  }
  #product .category_list ul li {
    margin: 0 5px 5px 0;
    padding: 0px 3.5vw;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#product .tag_list {
  margin: 0 0 80px 0;
}
#product .tag_list ul {
  display: flex;
  flex-wrap: wrap;
}
#product .tag_list ul li {
  border-radius: 50px;
  background: #ffffff;
  padding: 2px 10px;
  min-width: 110px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 20px 10px 0;
}
@media (max-width: 850px) {
  #product .tag_list {
    margin: 0 0 9.4vw 0;
  }
  #product .tag_list ul li {
    padding: 2px 5px;
    min-width: 80px;
    font-size: 11px;
    font-size: 1.1rem;
    margin: 0 10px 10px 0;
  }
}
#product .product_detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#product .product_detail .photo {
  width: 45%;
}
#product .product_detail .photo .main {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 40px;
}
#product .product_detail .photo .main img {
  width: 100%;
}
#product .product_detail .photo .thumbnail {
  display: flex;
  flex-wrap: wrap;
}
#product .product_detail .photo .thumbnail li {
  width: 30%;
  margin: 0 5% 20px 0;
  aspect-ratio: 1/1;
  cursor: pointer;
}
#product .product_detail .photo .thumbnail li:nth-child(3n) {
  margin-right: 0;
}
#product .product_detail .detail {
  width: 47%;
}
#product .product_detail .detail .product_title {
  font-size: 26px;
  font-size: 2.6rem;
  padding: 20px 0 40px 0;
  letter-spacing: 0.2rem;
}
#product .product_detail .detail .info {
  border-top: solid 1px #000000;
  margin: 0 0 45px 0;
}
#product .product_detail .detail .info dl {
  border-bottom: solid 1px #000000;
  display: flex;
  padding: 5px 0;
}
@media (max-width: 1350px) {
  #product .product_detail .detail .info dl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#product .product_detail .detail .info dl dt {
  width: 33%;
}
#product .product_detail .detail .info dl dd {
  width: 67%;
}
#product .product_detail .detail .info dl dd a {
  position: relative;
  padding-right: 45px;
}
#product .product_detail .detail .info dl dd a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(45deg);
}
#product .product_detail .detail .manufacturer_Area,
#product .product_detail .detail .use_Area {
  display: flex;
  margin: 0 0 40px 0;
}
#product .product_detail .detail .manufacturer_Area h3,
#product .product_detail .detail .use_Area h3 {
  width: 35%;
}
#product .product_detail .detail .manufacturer_Area ul,
#product .product_detail .detail .use_Area ul {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
}
#product .product_detail .detail .manufacturer_Area ul li,
#product .product_detail .detail .use_Area ul li {
  width: 20%;
  font-size: 11px;
  font-size: 1.1rem;
  justify-content: center;
  margin: 0 0 10px 0;
  padding: 45px 10px 0 10px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  line-height: 1;
}
#product .product_detail .detail .manufacturer_Area ul li::after,
#product .product_detail .detail .use_Area ul li::after {
  position: absolute;
  top: 0px;
  left: auto;
  letter-spacing: 50%;
  content: "";
  width: 100%;
  height: 30px;
  transition: all 0.5s ease 0s;
  background-color: #000000;
}
#product .product_detail .detail .manufacturer_Area ul li.material0::after,
#product .product_detail .detail .use_Area ul li.material0::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.9 38.8"><path fill="%23000" d="M44,26.4l-0.2-0.1c0,0,0,0,0,0c-0.4-0.2-0.8-0.4-1.2-0.5c-0.3-0.1-0.7-0.3-1-0.4c-0.8-0.4-1.6-0.7-2.3-1.1	l-0.4-0.2c-0.1-0.1-0.3-0.1-0.4-0.2c0.6,0,1.1-0.1,1.7-0.1c1.9-0.1,3.7-0.8,5.1-2c1.8-1.8,1.7-4.4,1.5-6.4l-0.1-1.3 c-0.1-2.1-0.2-4.3-0.4-6.4c-0.2-2.6-1.3-7-6.1-7.1c-1.6,0-3.1,0.4-4.4,1.2c-0.3,0.1-0.5,0.3-0.7,0.5c0,0-0.1,0.1-0.1,0.1	c-0.1,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.2-0.3,0.2c-0.3,0.2-0.5,0.5-0.8,0.7l-0.2,0.2C32.6,4.4,32,5,31.4,5.6c-2,2-4,4.1-5.8,6.3	c-0.2,0.3-0.4,0.5-0.6,0.8c-0.2-1.9-0.4-3.4-0.7-4.3c0.1-0.1,0.1-0.1,0.1-0.2c0,0,0.4-4.8,2.9-6.6c0.9-0.7,2-0.9,3.3-0.6	c0.2,0,0.5-0.1,0.5-0.3c0-0.2-0.1-0.5-0.3-0.5c-1.5-0.3-2.8-0.1-4,0.8c-2.1,1.6-2.8,4.8-3.1,6.3c-0.1,0-0.1-0.1-0.2-0.1	c-0.1,0-0.1,0-0.2,0.1c-0.2-1.6-1-4.8-3.1-6.3c-1.1-0.8-2.4-1.1-4-0.8c-0.2,0-0.4,0.3-0.3,0.5C16,0.9,16.2,1,16.4,1	c1.3-0.3,2.4-0.1,3.3,0.6c2.5,1.8,2.9,6.6,2.9,6.6c0,0.1,0,0.2,0.1,0.2c-0.3,1-0.6,2.5-0.7,4.3c-0.2-0.3-0.4-0.6-0.6-0.8	c-1.8-2.2-3.7-4.3-5.8-6.3c-0.6-0.6-1.3-1.2-1.9-1.8l-0.2-0.2c-0.3-0.2-0.5-0.5-0.8-0.7c0,0-0.2-0.1-0.3-0.2	c-0.2-0.1-0.4-0.2-0.4-0.3c0-0.1-0.1-0.1-0.1-0.1c-0.2-0.2-0.5-0.3-0.7-0.5C9.7,1,8.2,0.6,6.6,0.6C1.8,0.7,0.7,5.1,0.5,7.7	c-0.2,2.3-0.3,4.6-0.4,6.9l0,0.8c-0.1,2-0.3,4.6,1.6,6.4c1.4,1.2,3.2,1.9,5.1,2c0.6,0.1,1.1,0.1,1.7,0.1C8.3,24,8.1,24,7.9,24.1	c-0.9,0.4-1.8,0.8-2.7,1.2c-0.3,0.2-0.7,0.3-1,0.4c-0.4,0.2-0.8,0.3-1.2,0.5l-0.2,0.1c-0.6,0.3-1.3,0.6-1.5,1.5	c-0.1,0.5-0.1,1.1,0.1,1.6c0.2,1,0.6,2,1,2.9c0.5,1.3,1.5,2.4,2.8,3.1c1.3,0.4,2.7,0.3,3.9-0.1c0.4-0.1,0.8-0.2,1.2-0.4l0.1,0	c0.1,0.2,0.2,0.5,0.2,0.7c0.1,0.4,0.3,0.8,0.5,1.2c0.4,0.9,1.2,1.5,2.2,1.8c0.3,0.1,0.6,0.1,1,0.1c1,0,1.9-0.3,2.7-0.9	c1.1-0.9,2-2.1,2.6-3.4c0.3-0.6,0.7-1.3,1.1-2c0.5-0.9,1-1.8,1.4-2.7c0.3,2.5,0.8,4.1,1.4,4.1c0.5,0,1-1.6,1.4-4.1	c0.4,0.9,0.9,1.9,1.4,2.8c0.4,0.7,0.8,1.4,1.1,2c0.6,1.3,1.4,2.5,2.6,3.4c0.8,0.6,1.8,0.9,2.7,0.9c0.3,0,0.7,0,1-0.1	c1-0.2,1.8-0.9,2.2-1.8c0.2-0.4,0.3-0.8,0.5-1.2c0.1-0.2,0.1-0.5,0.2-0.7l0.1,0c0.4,0.1,0.8,0.3,1.1,0.3c1.3,0.5,2.7,0.6,4,0.1	c1.2-0.7,2.2-1.8,2.7-3.1c0.4-0.9,0.8-1.9,1-2.9c0.2-0.5,0.2-1.1,0.1-1.7C45.4,27,44.6,26.6,44,26.4z M19.9,32	c-0.4,0.7-0.8,1.4-1.1,2.1c-0.5,1.2-1.3,2.3-2.3,3.1c-0.9,0.6-2,0.9-3,0.6c-0.5-0.1-1.3-0.5-1.7-1.3c-0.2-0.4-0.3-0.7-0.4-1.1	c-0.1-0.3-0.2-0.7-0.3-1c-0.1-0.2-0.3-0.4-0.6-0.4c-0.1,0-0.3,0-0.5,0.1c-0.4,0.1-0.7,0.2-1.1,0.4C7.8,35,6.6,35,5.6,34.7	c-1-0.6-1.9-1.6-2.3-2.7c-0.4-0.9-0.8-1.8-1-2.7c-0.1-0.4-0.2-0.8-0.1-1.2c0.1-0.4,0.5-0.6,1.1-0.9l0.2-0.1c0.4-0.2,0.7-0.3,1.1-0.5	c0.4-0.1,0.7-0.3,1.1-0.5c0.9-0.4,1.8-0.8,2.6-1.2c0,0,0.1,0,0.1,0c0.5-0.2,0.9-0.4,1.4-0.6l0.9-0.4c0.2-0.1,0.3-0.3,0.3-0.5	c0-0.2-0.2-0.3-0.4-0.3c-1.2,0-2.4-0.1-3.6-0.2c-1.7-0.1-3.3-0.7-4.6-1.8c-1.5-1.6-1.4-3.8-1.3-5.8l0-0.8c0.1-2.2,0.2-4.6,0.4-6.8	c0.2-2.9,1.3-6.3,5.2-6.3c1.4,0,2.8,0.4,4,1.1C10.8,2.7,11,2.8,11.2,3c0.1,0.1,0.3,0.3,0.6,0.5c0.1,0.1,0.2,0.1,0.2,0.2	c0.3,0.2,0.5,0.5,0.8,0.7l0.2,0.2c0.6,0.6,1.3,1.2,1.9,1.8c2,1.9,3.9,4,5.7,6.2c0.3,0.3,0.5,0.7,0.8,1c-0.2,2.1-0.3,4.5-0.3,7l0,0.7	c-0.1,0.1-0.3,0.1-0.4,0.2c-0.1,0-0.2,0.1-0.3,0.1l-0.3,0.1c-0.1,0.1-0.3,0.2-0.3,0.3c0,0.2,0,0.3,0.2,0.4c0.3,0.2,0.5,0.4,0.8,0.7	c0.1,0.1,0.2,0.3,0.3,0.4c0.1,1.9,0.2,3.8,0.4,5.4C21.1,29.9,20.5,31,19.9,32z M21.5,22.4c-0.1-0.1-0.2-0.2-0.3-0.3	c0.1-0.1,0.3-0.1,0.4-0.2c0,0.2,0,0.4,0,0.7C21.5,22.5,21.5,22.5,21.5,22.4z M23.5,32.3c-0.5-1.6-1-5.6-1-11.8s0.6-10.2,1-11.8	c0.5,1.6,1,5.6,1,11.8S23.9,30.7,23.5,32.3z M25.3,21.9c0.1,0.1,0.3,0.1,0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c0,0-0.1,0.1-0.1,0.1	C25.3,22.3,25.3,22.1,25.3,21.9z M44.6,29.3c-0.2,0.9-0.6,1.8-1,2.7c-0.4,1.1-1.3,2.1-2.2,2.6C40.3,35,39.1,35,38,34.5	c-0.4-0.1-0.7-0.2-1.2-0.4c-0.4-0.2-0.8-0.1-1,0.3c-0.1,0.3-0.2,0.7-0.3,1c-0.1,0.4-0.3,0.7-0.4,1.1c-0.4,0.9-1.2,1.2-1.7,1.3	c-1,0.2-2.1,0-3-0.6c-1-0.8-1.8-1.9-2.3-3.1c-0.3-0.7-0.7-1.3-1.1-2c-0.6-1.1-1.2-2.2-1.6-3.2c0.2-1.6,0.3-3.5,0.4-5.4	c0.1-0.1,0.2-0.3,0.3-0.4c0.2-0.3,0.5-0.5,0.8-0.7c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2-0.1-0.3-0.3-0.3l-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1	c-0.1-0.1-0.3-0.1-0.4-0.2c0-0.2,0-0.5,0-0.7c0-2.5-0.1-4.9-0.3-7c0.3-0.4,0.5-0.7,0.8-1c1.8-2.2,3.7-4.3,5.7-6.2	c0.6-0.6,1.2-1.2,1.9-1.8L34,4.3c0.3-0.2,0.5-0.5,0.8-0.7c0,0,0.1-0.1,0.2-0.1c0.3-0.2,0.5-0.4,0.7-0.5c0.2-0.1,0.4-0.3,0.6-0.4	c1.2-0.7,2.6-1.1,4-1.1c3.9,0,5,3.5,5.3,6.3c0.2,2.1,0.3,4.3,0.4,6.4l0.1,1.3c0.1,2,0.2,4.2-1.3,5.7c-1.3,1.1-2.9,1.7-4.6,1.8	c-1.2,0.1-2.4,0.2-3.6,0.2c-0.2,0-0.4,0.1-0.4,0.3c0,0.2,0.1,0.4,0.2,0.5l0.9,0.4c0.4,0.2,0.9,0.4,1.3,0.6l0.4,0.2	c0.8,0.3,1.6,0.7,2.3,1c0.3,0.2,0.7,0.3,1.1,0.5c0.4,0.2,0.8,0.3,1.1,0.5l0.2,0.1c0.6,0.3,1,0.5,1.1,0.9	C44.8,28.4,44.8,28.9,44.6,29.3z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.9 38.8"><path fill="%23000" d="M44,26.4l-0.2-0.1c0,0,0,0,0,0c-0.4-0.2-0.8-0.4-1.2-0.5c-0.3-0.1-0.7-0.3-1-0.4c-0.8-0.4-1.6-0.7-2.3-1.1	l-0.4-0.2c-0.1-0.1-0.3-0.1-0.4-0.2c0.6,0,1.1-0.1,1.7-0.1c1.9-0.1,3.7-0.8,5.1-2c1.8-1.8,1.7-4.4,1.5-6.4l-0.1-1.3 c-0.1-2.1-0.2-4.3-0.4-6.4c-0.2-2.6-1.3-7-6.1-7.1c-1.6,0-3.1,0.4-4.4,1.2c-0.3,0.1-0.5,0.3-0.7,0.5c0,0-0.1,0.1-0.1,0.1	c-0.1,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.2-0.3,0.2c-0.3,0.2-0.5,0.5-0.8,0.7l-0.2,0.2C32.6,4.4,32,5,31.4,5.6c-2,2-4,4.1-5.8,6.3	c-0.2,0.3-0.4,0.5-0.6,0.8c-0.2-1.9-0.4-3.4-0.7-4.3c0.1-0.1,0.1-0.1,0.1-0.2c0,0,0.4-4.8,2.9-6.6c0.9-0.7,2-0.9,3.3-0.6	c0.2,0,0.5-0.1,0.5-0.3c0-0.2-0.1-0.5-0.3-0.5c-1.5-0.3-2.8-0.1-4,0.8c-2.1,1.6-2.8,4.8-3.1,6.3c-0.1,0-0.1-0.1-0.2-0.1	c-0.1,0-0.1,0-0.2,0.1c-0.2-1.6-1-4.8-3.1-6.3c-1.1-0.8-2.4-1.1-4-0.8c-0.2,0-0.4,0.3-0.3,0.5C16,0.9,16.2,1,16.4,1	c1.3-0.3,2.4-0.1,3.3,0.6c2.5,1.8,2.9,6.6,2.9,6.6c0,0.1,0,0.2,0.1,0.2c-0.3,1-0.6,2.5-0.7,4.3c-0.2-0.3-0.4-0.6-0.6-0.8	c-1.8-2.2-3.7-4.3-5.8-6.3c-0.6-0.6-1.3-1.2-1.9-1.8l-0.2-0.2c-0.3-0.2-0.5-0.5-0.8-0.7c0,0-0.2-0.1-0.3-0.2	c-0.2-0.1-0.4-0.2-0.4-0.3c0-0.1-0.1-0.1-0.1-0.1c-0.2-0.2-0.5-0.3-0.7-0.5C9.7,1,8.2,0.6,6.6,0.6C1.8,0.7,0.7,5.1,0.5,7.7	c-0.2,2.3-0.3,4.6-0.4,6.9l0,0.8c-0.1,2-0.3,4.6,1.6,6.4c1.4,1.2,3.2,1.9,5.1,2c0.6,0.1,1.1,0.1,1.7,0.1C8.3,24,8.1,24,7.9,24.1	c-0.9,0.4-1.8,0.8-2.7,1.2c-0.3,0.2-0.7,0.3-1,0.4c-0.4,0.2-0.8,0.3-1.2,0.5l-0.2,0.1c-0.6,0.3-1.3,0.6-1.5,1.5	c-0.1,0.5-0.1,1.1,0.1,1.6c0.2,1,0.6,2,1,2.9c0.5,1.3,1.5,2.4,2.8,3.1c1.3,0.4,2.7,0.3,3.9-0.1c0.4-0.1,0.8-0.2,1.2-0.4l0.1,0	c0.1,0.2,0.2,0.5,0.2,0.7c0.1,0.4,0.3,0.8,0.5,1.2c0.4,0.9,1.2,1.5,2.2,1.8c0.3,0.1,0.6,0.1,1,0.1c1,0,1.9-0.3,2.7-0.9	c1.1-0.9,2-2.1,2.6-3.4c0.3-0.6,0.7-1.3,1.1-2c0.5-0.9,1-1.8,1.4-2.7c0.3,2.5,0.8,4.1,1.4,4.1c0.5,0,1-1.6,1.4-4.1	c0.4,0.9,0.9,1.9,1.4,2.8c0.4,0.7,0.8,1.4,1.1,2c0.6,1.3,1.4,2.5,2.6,3.4c0.8,0.6,1.8,0.9,2.7,0.9c0.3,0,0.7,0,1-0.1	c1-0.2,1.8-0.9,2.2-1.8c0.2-0.4,0.3-0.8,0.5-1.2c0.1-0.2,0.1-0.5,0.2-0.7l0.1,0c0.4,0.1,0.8,0.3,1.1,0.3c1.3,0.5,2.7,0.6,4,0.1	c1.2-0.7,2.2-1.8,2.7-3.1c0.4-0.9,0.8-1.9,1-2.9c0.2-0.5,0.2-1.1,0.1-1.7C45.4,27,44.6,26.6,44,26.4z M19.9,32	c-0.4,0.7-0.8,1.4-1.1,2.1c-0.5,1.2-1.3,2.3-2.3,3.1c-0.9,0.6-2,0.9-3,0.6c-0.5-0.1-1.3-0.5-1.7-1.3c-0.2-0.4-0.3-0.7-0.4-1.1	c-0.1-0.3-0.2-0.7-0.3-1c-0.1-0.2-0.3-0.4-0.6-0.4c-0.1,0-0.3,0-0.5,0.1c-0.4,0.1-0.7,0.2-1.1,0.4C7.8,35,6.6,35,5.6,34.7	c-1-0.6-1.9-1.6-2.3-2.7c-0.4-0.9-0.8-1.8-1-2.7c-0.1-0.4-0.2-0.8-0.1-1.2c0.1-0.4,0.5-0.6,1.1-0.9l0.2-0.1c0.4-0.2,0.7-0.3,1.1-0.5	c0.4-0.1,0.7-0.3,1.1-0.5c0.9-0.4,1.8-0.8,2.6-1.2c0,0,0.1,0,0.1,0c0.5-0.2,0.9-0.4,1.4-0.6l0.9-0.4c0.2-0.1,0.3-0.3,0.3-0.5	c0-0.2-0.2-0.3-0.4-0.3c-1.2,0-2.4-0.1-3.6-0.2c-1.7-0.1-3.3-0.7-4.6-1.8c-1.5-1.6-1.4-3.8-1.3-5.8l0-0.8c0.1-2.2,0.2-4.6,0.4-6.8	c0.2-2.9,1.3-6.3,5.2-6.3c1.4,0,2.8,0.4,4,1.1C10.8,2.7,11,2.8,11.2,3c0.1,0.1,0.3,0.3,0.6,0.5c0.1,0.1,0.2,0.1,0.2,0.2	c0.3,0.2,0.5,0.5,0.8,0.7l0.2,0.2c0.6,0.6,1.3,1.2,1.9,1.8c2,1.9,3.9,4,5.7,6.2c0.3,0.3,0.5,0.7,0.8,1c-0.2,2.1-0.3,4.5-0.3,7l0,0.7	c-0.1,0.1-0.3,0.1-0.4,0.2c-0.1,0-0.2,0.1-0.3,0.1l-0.3,0.1c-0.1,0.1-0.3,0.2-0.3,0.3c0,0.2,0,0.3,0.2,0.4c0.3,0.2,0.5,0.4,0.8,0.7	c0.1,0.1,0.2,0.3,0.3,0.4c0.1,1.9,0.2,3.8,0.4,5.4C21.1,29.9,20.5,31,19.9,32z M21.5,22.4c-0.1-0.1-0.2-0.2-0.3-0.3	c0.1-0.1,0.3-0.1,0.4-0.2c0,0.2,0,0.4,0,0.7C21.5,22.5,21.5,22.5,21.5,22.4z M23.5,32.3c-0.5-1.6-1-5.6-1-11.8s0.6-10.2,1-11.8	c0.5,1.6,1,5.6,1,11.8S23.9,30.7,23.5,32.3z M25.3,21.9c0.1,0.1,0.3,0.1,0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c0,0-0.1,0.1-0.1,0.1	C25.3,22.3,25.3,22.1,25.3,21.9z M44.6,29.3c-0.2,0.9-0.6,1.8-1,2.7c-0.4,1.1-1.3,2.1-2.2,2.6C40.3,35,39.1,35,38,34.5	c-0.4-0.1-0.7-0.2-1.2-0.4c-0.4-0.2-0.8-0.1-1,0.3c-0.1,0.3-0.2,0.7-0.3,1c-0.1,0.4-0.3,0.7-0.4,1.1c-0.4,0.9-1.2,1.2-1.7,1.3	c-1,0.2-2.1,0-3-0.6c-1-0.8-1.8-1.9-2.3-3.1c-0.3-0.7-0.7-1.3-1.1-2c-0.6-1.1-1.2-2.2-1.6-3.2c0.2-1.6,0.3-3.5,0.4-5.4	c0.1-0.1,0.2-0.3,0.3-0.4c0.2-0.3,0.5-0.5,0.8-0.7c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2-0.1-0.3-0.3-0.3l-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1	c-0.1-0.1-0.3-0.1-0.4-0.2c0-0.2,0-0.5,0-0.7c0-2.5-0.1-4.9-0.3-7c0.3-0.4,0.5-0.7,0.8-1c1.8-2.2,3.7-4.3,5.7-6.2	c0.6-0.6,1.2-1.2,1.9-1.8L34,4.3c0.3-0.2,0.5-0.5,0.8-0.7c0,0,0.1-0.1,0.2-0.1c0.3-0.2,0.5-0.4,0.7-0.5c0.2-0.1,0.4-0.3,0.6-0.4	c1.2-0.7,2.6-1.1,4-1.1c3.9,0,5,3.5,5.3,6.3c0.2,2.1,0.3,4.3,0.4,6.4l0.1,1.3c0.1,2,0.2,4.2-1.3,5.7c-1.3,1.1-2.9,1.7-4.6,1.8	c-1.2,0.1-2.4,0.2-3.6,0.2c-0.2,0-0.4,0.1-0.4,0.3c0,0.2,0.1,0.4,0.2,0.5l0.9,0.4c0.4,0.2,0.9,0.4,1.3,0.6l0.4,0.2	c0.8,0.3,1.6,0.7,2.3,1c0.3,0.2,0.7,0.3,1.1,0.5c0.4,0.2,0.8,0.3,1.1,0.5l0.2,0.1c0.6,0.3,1,0.5,1.1,0.9	C44.8,28.4,44.8,28.9,44.6,29.3z" /></svg>') no-repeat center center;
  top: 6px;
}
#product .product_detail .detail .manufacturer_Area ul li.material1,
#product .product_detail .detail .use_Area ul li.material1 {
  width: 40%;
}
#product .product_detail .detail .manufacturer_Area ul li.material1::after,
#product .product_detail .detail .use_Area ul li.material1::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.4 48.4"><path fill="%23000" d="M44.3,17.8c-0.8-0.4-1.7-0.5-2.6-0.6c-0.2,0-0.5,0-0.7,0c1.1-1,1.9-2.3,2.2-3.8c0.4-1.8,0.1-3.7-0.9-5.3	C40.3,4.9,35.9,4,32.7,6c-0.4,0.2-0.7,0.5-1,0.8c-0.2,0.2-0.3,0.3-0.5,0.5c0.1-1.5-0.3-3-1.2-4.3c-1.1-1.6-2.6-2.6-4.5-3	c-3.2-0.6-6.3,1-7.7,4c-0.4,0.8-0.6,1.7-0.6,2.6c0,0.2,0,0.5,0,0.7c-1-1.1-2.4-1.9-3.9-2.2c-1.8-0.4-3.7,0-5.3,1.1	c-2.7,1.8-3.8,5.2-2.6,8.3c0.3,0.8,0.8,1.6,1.4,2.2c0.2,0.2,0.3,0.3,0.5,0.5c-1.5-0.1-3,0.3-4.3,1.2c-1.6,1.1-2.6,2.6-3,4.5	c-0.6,3.2,1,6.3,4,7.7c0.8,0.4,1.7,0.5,2.6,0.6c0.1,0,0.2,0,0.2,0c0.2,0,0.3,0,0.5,0c-1.1,1-1.9,2.4-2.2,3.9c-0.4,1.8,0,3.7,1.1,5.3	c1.3,2,3.5,3.1,5.8,3.1c0.8,0,1.6-0.1,2.4-0.4c0.8-0.3,1.6-0.8,2.2-1.4c0.2-0.2,0.3-0.3,0.5-0.5c-0.2,3.4,2.2,6.6,5.7,7.2	c0.4,0.1,0.9,0.1,1.3,0.1c2.7,0,5.2-1.6,6.4-4.1c0.4-0.8,0.5-1.7,0.6-2.6c0-0.2,0-0.5,0-0.7c1,1.1,2.3,1.9,3.8,2.2	c0.5,0.1,1,0.2,1.5,0.2c1.3,0,2.6-0.4,3.8-1.1c1.6-1,2.7-2.6,3.1-4.4c0.4-1.8,0.1-3.7-0.9-5.3c-0.2-0.4-0.5-0.7-0.8-1	c-0.2-0.2-0.3-0.3-0.5-0.5c0.1,0,0.2,0,0.4,0c1.4,0,2.7-0.4,3.9-1.2c1.6-1.1,2.6-2.6,3-4.5C48.9,22.3,47.3,19.1,44.3,17.8z	 M32.3,7.5c0.3-0.3,0.6-0.5,0.9-0.7c2.8-1.8,6.6-1,8.4,1.8c0.9,1.4,1.2,3,0.8,4.6s-1.3,2.9-2.6,3.8c-1,0.6-2.1,1.1-3.2,1.4l-7.1,2.7	c-0.4-0.9-1.1-1.7-2-2.1l0.4-1.1c0.5-1.5,1.1-3,1.6-4.5c0.1-0.3,0.2-0.7,0.3-1C30.4,10.6,30.9,8.8,32.3,7.5z M29.1,26.3l-0.3-0.1	l-0.2,0.5c-0.3,1-1.1,1.7-2.1,2L26,28.8l0.1,0.3L26,28.9l-0.4,0.2c-0.9,0.5-2,0.4-2.9-0.1l-0.5-0.3L22,29.1l0.1-0.3l-0.5-0.2	c-1-0.3-1.7-1.1-2-2.1L19.5,26l-0.3,0.1l0.3-0.1l-0.2-0.4c-0.5-0.9-0.4-2,0.1-2.9l0.3-0.5L19.3,22l0.3,0.1l0.2-0.5	c0.3-1,1.1-1.7,2.1-2l0.5-0.1l-0.1-0.3l0.1,0.3l0.4-0.2c0.9-0.5,2-0.4,2.9,0.1l0.5,0.3l0.1-0.3l-0.1,0.3l0.5,0.2	c1,0.3,1.7,1.1,2,2.1l0.1,0.5l0.3-0.1l-0.3,0.1l0.2,0.4c0.5,0.9,0.4,2-0.1,2.9l-0.3,0.5L29.1,26.3z M18.6,4.5	c1.2-2.5,3.9-3.9,6.7-3.4c1.6,0.3,3,1.2,3.9,2.6c0.9,1.3,1.2,3,0.9,4.5c-0.3,1.1-0.7,2.2-1.3,3.3l-3.1,6.9c-0.5-0.2-1-0.3-1.5-0.3	c-0.5,0-0.9,0.1-1.4,0.2l-0.8-1.6c-0.6-1.3-1.2-2.5-1.8-3.7c-0.2-0.3-0.3-0.6-0.5-0.9c-0.9-1.7-1.7-3.4-1.7-5.3	C18.2,5.9,18.3,5.2,18.6,4.5z M6.3,14.2c-1-2.6,0-5.6,2.3-7.1c1-0.7,2.2-1,3.4-1c0.4,0,0.8,0,1.2,0.1c1.6,0.3,3,1.2,3.9,2.5	c0.6,1,1.1,2.1,1.4,3.2l2.7,7.1c-0.9,0.4-1.7,1.1-2.1,2l-1-0.4c-1.5-0.5-3-1.1-4.6-1.6c-0.3-0.1-0.7-0.2-1-0.3	c-1.8-0.6-3.6-1.2-4.9-2.6C7,15.5,6.6,14.9,6.3,14.2z M6.7,30.2c-0.8,0-1.5-0.2-2.2-0.5c-2.5-1.2-4-3.9-3.4-6.7	c0.3-1.6,1.2-3,2.6-3.9c1-0.7,2.2-1.1,3.4-1.1c0.4,0,0.8,0,1.1,0.1c1.1,0.3,2.2,0.7,3.3,1.3l6.9,3.1c-0.4,0.9-0.4,2-0.1,2.9	l-1.3,0.6c-1.3,0.6-2.7,1.3-4,1.9c-0.3,0.2-0.6,0.3-0.9,0.5C10.2,29.5,8.5,30.3,6.7,30.2z M16.1,40.9c-0.6,0.5-1.2,0.9-1.9,1.2	c-2.6,1-5.6,0-7.1-2.3c-0.9-1.3-1.2-3-0.9-4.6c0.3-1.6,1.2-3,2.5-3.9c1-0.6,2.1-1.1,3.2-1.4l7.1-2.7c0.4,0.9,1.1,1.7,2,2.1l-0.3,0.7	c-0.6,1.6-1.1,3.2-1.7,4.9c-0.1,0.3-0.2,0.7-0.3,1C18,37.8,17.5,39.6,16.1,40.9z M29.7,43.9c-1.2,2.5-3.9,4-6.7,3.4	c-3.3-0.6-5.5-3.8-4.8-7.1c0.3-1.1,0.7-2.2,1.3-3.3l3.1-6.9c0.9,0.4,2,0.4,2.9,0.1l0.5,1.1c0.7,1.4,1.3,2.8,2,4.2	c0.2,0.3,0.3,0.6,0.5,0.9c0.9,1.7,1.7,3.4,1.7,5.3C30.2,42.5,30,43.2,29.7,43.9z M41.6,33.2c0.9,1.4,1.2,3,0.8,4.6	c-0.3,1.6-1.3,2.9-2.7,3.8c-1.4,0.9-3,1.2-4.6,0.8c-1.6-0.3-2.9-1.3-3.8-2.6c-0.6-1-1.1-2.1-1.4-3.2l-2.7-7.1c0.9-0.4,1.7-1.1,2.1-2	l1.1,0.4c1.5,0.5,3,1.1,4.5,1.6c0.3,0.1,0.7,0.2,1,0.3c1.9,0.6,3.6,1.2,4.9,2.6C41.1,32.6,41.4,32.9,41.6,33.2z M47.4,25.3	c-0.6,3.3-3.8,5.5-7.1,4.8c-1.1-0.3-2.2-0.7-3.3-1.3l-6.9-3.1c0.4-0.9,0.4-2,0.1-2.9l1.1-0.5c1.4-0.7,2.8-1.3,4.2-2	c0.3-0.2,0.6-0.3,1-0.5c1.7-0.9,3.4-1.7,5.3-1.7c0.8,0,1.5,0.2,2.2,0.5C46.5,19.8,47.9,22.6,47.4,25.3z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.4 48.4"><path fill="%23000" d="M44.3,17.8c-0.8-0.4-1.7-0.5-2.6-0.6c-0.2,0-0.5,0-0.7,0c1.1-1,1.9-2.3,2.2-3.8c0.4-1.8,0.1-3.7-0.9-5.3	C40.3,4.9,35.9,4,32.7,6c-0.4,0.2-0.7,0.5-1,0.8c-0.2,0.2-0.3,0.3-0.5,0.5c0.1-1.5-0.3-3-1.2-4.3c-1.1-1.6-2.6-2.6-4.5-3	c-3.2-0.6-6.3,1-7.7,4c-0.4,0.8-0.6,1.7-0.6,2.6c0,0.2,0,0.5,0,0.7c-1-1.1-2.4-1.9-3.9-2.2c-1.8-0.4-3.7,0-5.3,1.1	c-2.7,1.8-3.8,5.2-2.6,8.3c0.3,0.8,0.8,1.6,1.4,2.2c0.2,0.2,0.3,0.3,0.5,0.5c-1.5-0.1-3,0.3-4.3,1.2c-1.6,1.1-2.6,2.6-3,4.5	c-0.6,3.2,1,6.3,4,7.7c0.8,0.4,1.7,0.5,2.6,0.6c0.1,0,0.2,0,0.2,0c0.2,0,0.3,0,0.5,0c-1.1,1-1.9,2.4-2.2,3.9c-0.4,1.8,0,3.7,1.1,5.3	c1.3,2,3.5,3.1,5.8,3.1c0.8,0,1.6-0.1,2.4-0.4c0.8-0.3,1.6-0.8,2.2-1.4c0.2-0.2,0.3-0.3,0.5-0.5c-0.2,3.4,2.2,6.6,5.7,7.2	c0.4,0.1,0.9,0.1,1.3,0.1c2.7,0,5.2-1.6,6.4-4.1c0.4-0.8,0.5-1.7,0.6-2.6c0-0.2,0-0.5,0-0.7c1,1.1,2.3,1.9,3.8,2.2	c0.5,0.1,1,0.2,1.5,0.2c1.3,0,2.6-0.4,3.8-1.1c1.6-1,2.7-2.6,3.1-4.4c0.4-1.8,0.1-3.7-0.9-5.3c-0.2-0.4-0.5-0.7-0.8-1	c-0.2-0.2-0.3-0.3-0.5-0.5c0.1,0,0.2,0,0.4,0c1.4,0,2.7-0.4,3.9-1.2c1.6-1.1,2.6-2.6,3-4.5C48.9,22.3,47.3,19.1,44.3,17.8z	 M32.3,7.5c0.3-0.3,0.6-0.5,0.9-0.7c2.8-1.8,6.6-1,8.4,1.8c0.9,1.4,1.2,3,0.8,4.6s-1.3,2.9-2.6,3.8c-1,0.6-2.1,1.1-3.2,1.4l-7.1,2.7	c-0.4-0.9-1.1-1.7-2-2.1l0.4-1.1c0.5-1.5,1.1-3,1.6-4.5c0.1-0.3,0.2-0.7,0.3-1C30.4,10.6,30.9,8.8,32.3,7.5z M29.1,26.3l-0.3-0.1	l-0.2,0.5c-0.3,1-1.1,1.7-2.1,2L26,28.8l0.1,0.3L26,28.9l-0.4,0.2c-0.9,0.5-2,0.4-2.9-0.1l-0.5-0.3L22,29.1l0.1-0.3l-0.5-0.2	c-1-0.3-1.7-1.1-2-2.1L19.5,26l-0.3,0.1l0.3-0.1l-0.2-0.4c-0.5-0.9-0.4-2,0.1-2.9l0.3-0.5L19.3,22l0.3,0.1l0.2-0.5	c0.3-1,1.1-1.7,2.1-2l0.5-0.1l-0.1-0.3l0.1,0.3l0.4-0.2c0.9-0.5,2-0.4,2.9,0.1l0.5,0.3l0.1-0.3l-0.1,0.3l0.5,0.2	c1,0.3,1.7,1.1,2,2.1l0.1,0.5l0.3-0.1l-0.3,0.1l0.2,0.4c0.5,0.9,0.4,2-0.1,2.9l-0.3,0.5L29.1,26.3z M18.6,4.5	c1.2-2.5,3.9-3.9,6.7-3.4c1.6,0.3,3,1.2,3.9,2.6c0.9,1.3,1.2,3,0.9,4.5c-0.3,1.1-0.7,2.2-1.3,3.3l-3.1,6.9c-0.5-0.2-1-0.3-1.5-0.3	c-0.5,0-0.9,0.1-1.4,0.2l-0.8-1.6c-0.6-1.3-1.2-2.5-1.8-3.7c-0.2-0.3-0.3-0.6-0.5-0.9c-0.9-1.7-1.7-3.4-1.7-5.3	C18.2,5.9,18.3,5.2,18.6,4.5z M6.3,14.2c-1-2.6,0-5.6,2.3-7.1c1-0.7,2.2-1,3.4-1c0.4,0,0.8,0,1.2,0.1c1.6,0.3,3,1.2,3.9,2.5	c0.6,1,1.1,2.1,1.4,3.2l2.7,7.1c-0.9,0.4-1.7,1.1-2.1,2l-1-0.4c-1.5-0.5-3-1.1-4.6-1.6c-0.3-0.1-0.7-0.2-1-0.3	c-1.8-0.6-3.6-1.2-4.9-2.6C7,15.5,6.6,14.9,6.3,14.2z M6.7,30.2c-0.8,0-1.5-0.2-2.2-0.5c-2.5-1.2-4-3.9-3.4-6.7	c0.3-1.6,1.2-3,2.6-3.9c1-0.7,2.2-1.1,3.4-1.1c0.4,0,0.8,0,1.1,0.1c1.1,0.3,2.2,0.7,3.3,1.3l6.9,3.1c-0.4,0.9-0.4,2-0.1,2.9	l-1.3,0.6c-1.3,0.6-2.7,1.3-4,1.9c-0.3,0.2-0.6,0.3-0.9,0.5C10.2,29.5,8.5,30.3,6.7,30.2z M16.1,40.9c-0.6,0.5-1.2,0.9-1.9,1.2	c-2.6,1-5.6,0-7.1-2.3c-0.9-1.3-1.2-3-0.9-4.6c0.3-1.6,1.2-3,2.5-3.9c1-0.6,2.1-1.1,3.2-1.4l7.1-2.7c0.4,0.9,1.1,1.7,2,2.1l-0.3,0.7	c-0.6,1.6-1.1,3.2-1.7,4.9c-0.1,0.3-0.2,0.7-0.3,1C18,37.8,17.5,39.6,16.1,40.9z M29.7,43.9c-1.2,2.5-3.9,4-6.7,3.4	c-3.3-0.6-5.5-3.8-4.8-7.1c0.3-1.1,0.7-2.2,1.3-3.3l3.1-6.9c0.9,0.4,2,0.4,2.9,0.1l0.5,1.1c0.7,1.4,1.3,2.8,2,4.2	c0.2,0.3,0.3,0.6,0.5,0.9c0.9,1.7,1.7,3.4,1.7,5.3C30.2,42.5,30,43.2,29.7,43.9z M41.6,33.2c0.9,1.4,1.2,3,0.8,4.6	c-0.3,1.6-1.3,2.9-2.7,3.8c-1.4,0.9-3,1.2-4.6,0.8c-1.6-0.3-2.9-1.3-3.8-2.6c-0.6-1-1.1-2.1-1.4-3.2l-2.7-7.1c0.9-0.4,1.7-1.1,2.1-2	l1.1,0.4c1.5,0.5,3,1.1,4.5,1.6c0.3,0.1,0.7,0.2,1,0.3c1.9,0.6,3.6,1.2,4.9,2.6C41.1,32.6,41.4,32.9,41.6,33.2z M47.4,25.3	c-0.6,3.3-3.8,5.5-7.1,4.8c-1.1-0.3-2.2-0.7-3.3-1.3l-6.9-3.1c0.4-0.9,0.4-2,0.1-2.9l1.1-0.5c1.4-0.7,2.8-1.3,4.2-2	c0.3-0.2,0.6-0.3,1-0.5c1.7-0.9,3.4-1.7,5.3-1.7c0.8,0,1.5,0.2,2.2,0.5C46.5,19.8,47.9,22.6,47.4,25.3z" /></svg>') no-repeat center center;
  top: 5px;
  height: 33px;
}
#product .product_detail .detail .manufacturer_Area ul li.material2::after,
#product .product_detail .detail .use_Area ul li.material2::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49 38.745"><path fill="%23000" d="M15.976,16.469c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576.872,0,1.641-.438,2.107-1.102.467.664,1.235,1.102,2.106,1.102,1.421,0,2.576-1.156,2.576-2.576,0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M24.356,21.772c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M32.207,16.196c-.259,0-.469.21-.469.469,0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.469-.469Z"/><path class="cls-1" d="M45.787,5.234c.486-.541.791-1.249.791-2.033,0-1.686-1.372-3.058-3.058-3.058-.54,0-1.059.14-1.522.407-.527-.357-1.152-.551-1.793-.551-1.126,0-2.156.59-2.732,1.534-.336-.099-.684-.149-1.039-.149-2.019,0-3.662,1.642-3.662,3.661,0,.062.002.124.005.187-1.101.729-1.774,1.966-1.774,3.298,0,.028,0,.057.001.086-.669.163-1.282.5-1.781.977-.645-.427-1.405-.658-2.184-.658-.486,0-.968.09-1.419.263-.618-1.428-2.041-2.385-3.63-2.385-.735,0-1.455.206-2.076.588-.742-.98-1.909-1.572-3.155-1.572-1.131,0-2.198.484-2.943,1.314-.693-.546-1.541-.841-2.438-.841-1.567,0-2.991.948-3.617,2.355-.357-.104-.727-.157-1.104-.157-2.181,0-3.954,1.774-3.954,3.955,0,.334.041.663.123.982-1.643.493-2.825,2.035-2.825,3.79,0,1.404.736,2.682,1.916,3.39-.349.599-.532,1.275-.532,1.983,0,2.18,1.774,3.954,3.955,3.954h.045c.158.435.395.825.681,1.17l1.46,8.327c.018.104.051.206.097.3l.849,1.75c.189.39.591.642,1.025.642h2.677c.04,0,.077-.013.116-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.634-3.628c-.045-.254-.288-.426-.543-.381-.255.045-.426.287-.382.543l.563,3.221h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.082.083.062.173.042.219-.019.046-.069.123-.185.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.966-1.156-7.118c.043-.022.088-.039.13-.062.679,1.273,2.017,2.095,3.49,2.095.79,0,1.555-.236,2.204-.671.746.925,1.862,1.464,3.073,1.464,1.125,0,2.181-.475,2.925-1.294.536.529,1.205.882,1.936,1.037l.888,4.767c.018.1.05.197.095.289l.849,1.753c.189.39.592.642,1.026.642h2.677c.04,0,.076-.013.115-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.705-4.034c-.045-.256-.288-.427-.543-.381-.255.044-.426.287-.382.542l.634,3.628h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.081.083.061.173.042.219-.02.046-.069.123-.186.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.967-.919-5.575c.473.193.98.302,1.496.302,1.63,0,3.091-1.013,3.679-2.505.041.001.083.001.124.001,2.181,0,3.955-1.774,3.955-3.954,0-.393-.057-.778-.17-1.148,1.32-.665,2.178-2.031,2.178-3.534,0-.342-.043-.679-.129-1.006.85-.65,1.348-1.648,1.348-2.736,0-.927-.361-1.792-1.006-2.435.213-.33.355-.698.435-1.08.398.124.76.178,1.083.178.625,0,1.121-.178,1.532-.325.557-.2.818-.279,1.159-.063.495.312,1.64.566,2.635.156.447-.185.998-.57,1.325-1.347,0,0,0,0,0,0h0c.068-.162.129-.334.174-.531.455-1.988-2.058-4.163-3.159-5.006ZM11.049,35.594h-.979c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219s-.069.123-.186.123h-2.677c-.076,0-.147-.044-.18-.113l-.849-1.75c-.008-.017-.014-.035-.017-.053l-1.27-7.242c.574.32,1.228.507,1.921.507.303,0,.598-.039.887-.105l1.062,6.543ZM30.363,37.683c-.02.046-.069.123-.186.123h-2.677c-.077,0-.148-.044-.181-.113l-.85-1.752c-.008-.017-.013-.034-.017-.051l-.841-4.518c.975-.034,1.874-.427,2.567-1.085l.875,5.308h-.978c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219ZM47.087,11.251c-.694.286-1.512.084-1.777-.083-.742-.468-1.398-.233-1.976-.025-.614.22-1.253.439-2.251.052-.053-.515-.231-1.007-.517-1.437.451-1.114.375-2.867-.251-5.026-.073-.248-.332-.392-.582-.319-.249.072-.392.332-.32.581.828,2.854.501,4.426-.031,4.905-.207.186-.462.214-.779.085-1.239-.506-.806-3.879-.556-5.02.055-.253-.105-.504-.358-.559-.253-.055-.503.105-.559.358-.116.529-1.069,5.195,1.118,6.089.241.099.482.148.714.148.375,0,.725-.13,1.016-.38.124.282.195.585.195.903,0,.546-.199,1.074-.561,1.488-.086.098-.127.226-.114.355.013.129.079.247.182.326.628.48.988,1.207.988,1.996,0,.882-.45,1.684-1.205,2.144-.191.117-.273.351-.196.561.121.332.182.68.182,1.035,0,1.267-.801,2.408-1.993,2.838-.122.045-.221.137-.272.257-.051.119-.05.254.002.374.169.384.255.792.255,1.213,0,1.663-1.353,3.016-3.017,3.016-.126,0-.257-.008-.39-.025-.231-.03-.449.113-.512.337-.366,1.291-1.559,2.193-2.902,2.193-.696,0-1.375-.243-1.913-.684-.104-.086-.238-.122-.371-.101-.132.021-.249.098-.322.211-.559.872-1.508,1.392-2.541,1.392-.958,0-1.838-.44-2.414-1.208-.092-.121-.237-.193-.389-.187-.152.005-.293.083-.377.21-.562.845-1.501,1.35-2.514,1.35-1.056,0-2.018-.539-2.572-1.441-.073-.119-.193-.198-.33-.219-.137-.021-.276.021-.38.112-.551.486-1.26.754-1.994.754-1.275,0-2.417-.807-2.843-2.008-.05-.142-.165-.25-.309-.293-.145-.043-.3-.014-.419.078-.531.407-1.165.622-1.834.622-1.38,0-2.582-.932-2.923-2.267-.057-.227-.273-.376-.505-.351-.117.013-.226.019-.334.019-1.663,0-3.017-1.353-3.017-3.016,0-.685.225-1.331.649-1.869.091-.115.123-.265.086-.407s-.137-.258-.272-.316c-1.122-.473-1.847-1.564-1.847-2.781,0-1.481,1.102-2.762,2.564-2.982.143-.021.268-.107.338-.233.071-.125.081-.276.026-.41-.15-.364-.226-.751-.226-1.147,0-1.663,1.353-3.017,3.016-3.017.414,0,.817.084,1.196.248.123.053.263.051.384-.005.121-.057.213-.163.251-.291.379-1.265,1.567-2.15,2.89-2.15.82,0,1.588.324,2.161.913.098.101.236.152.377.14.14-.012.268-.087.347-.203.563-.828,1.497-1.323,2.496-1.323,1.082,0,2.087.586,2.623,1.528.068.12.186.204.322.229.136.026.276-.011.382-.098.543-.442,1.201-.676,1.904-.676,1.353,0,2.549.911,2.907,2.214.038.139.138.253.271.308.133.055.284.047.41-.022.445-.247.95-.378,1.461-.378.707,0,1.396.25,1.937.705.095.08.218.119.343.107.124-.011.239-.07.319-.166.489-.584,1.174-.958,1.926-1.054.124-.016.237-.08.313-.18.076-.099.109-.225.093-.349-.019-.138-.028-.275-.028-.407,0-1.096.596-2.108,1.557-2.639.169-.094.263-.283.237-.474-.017-.126-.026-.252-.026-.372,0-1.501,1.221-2.723,2.723-2.723.375,0,.738.074,1.079.222.238.103.513-.007.617-.244.359-.828,1.174-1.363,2.076-1.363.537,0,1.059.193,1.468.544.166.142.409.151.586.02.369-.275.805-.42,1.262-.42,1.168,0,2.12.95,2.12,2.119s-.951,2.119-2.12,2.119c-.456,0-.893-.145-1.262-.419-.208-.156-.502-.112-.657.096-.154.208-.111.502.096.657.532.396,1.162.605,1.822.605.553,0,1.066-.159,1.515-.418,1.068.791,3.081,2.587,3.021,3.96l-.535-.317c-.223-.131-.511-.058-.642.165-.132.223-.059.51.165.643l.698.413c-.165.244-.38.431-.654.544Z"/><path class="cls-1" d="M43.081,6.784h-.827c-.259,0-.469.21-.469.469s.21.469.469.469h.827c.259,0,.469-.211.469-.469s-.21-.469-.469-.469Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49 38.745"><path fill="%23000" d="M15.976,16.469c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576.872,0,1.641-.438,2.107-1.102.467.664,1.235,1.102,2.106,1.102,1.421,0,2.576-1.156,2.576-2.576,0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M24.356,21.772c-.259,0-.469.21-.469.469,0,.904-.734,1.638-1.638,1.638s-1.637-.734-1.637-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.47-.469Z"/><path class="cls-1" d="M32.207,16.196c-.259,0-.469.21-.469.469,0,.904-.735,1.638-1.638,1.638s-1.638-.734-1.638-1.638c0-.259-.21-.469-.469-.469s-.469.21-.469.469c0,1.42,1.156,2.576,2.576,2.576s2.576-1.156,2.576-2.576c0-.259-.21-.469-.469-.469Z"/><path class="cls-1" d="M45.787,5.234c.486-.541.791-1.249.791-2.033,0-1.686-1.372-3.058-3.058-3.058-.54,0-1.059.14-1.522.407-.527-.357-1.152-.551-1.793-.551-1.126,0-2.156.59-2.732,1.534-.336-.099-.684-.149-1.039-.149-2.019,0-3.662,1.642-3.662,3.661,0,.062.002.124.005.187-1.101.729-1.774,1.966-1.774,3.298,0,.028,0,.057.001.086-.669.163-1.282.5-1.781.977-.645-.427-1.405-.658-2.184-.658-.486,0-.968.09-1.419.263-.618-1.428-2.041-2.385-3.63-2.385-.735,0-1.455.206-2.076.588-.742-.98-1.909-1.572-3.155-1.572-1.131,0-2.198.484-2.943,1.314-.693-.546-1.541-.841-2.438-.841-1.567,0-2.991.948-3.617,2.355-.357-.104-.727-.157-1.104-.157-2.181,0-3.954,1.774-3.954,3.955,0,.334.041.663.123.982-1.643.493-2.825,2.035-2.825,3.79,0,1.404.736,2.682,1.916,3.39-.349.599-.532,1.275-.532,1.983,0,2.18,1.774,3.954,3.955,3.954h.045c.158.435.395.825.681,1.17l1.46,8.327c.018.104.051.206.097.3l.849,1.75c.189.39.591.642,1.025.642h2.677c.04,0,.077-.013.116-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.634-3.628c-.045-.254-.288-.426-.543-.381-.255.045-.426.287-.382.543l.563,3.221h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.082.083.062.173.042.219-.019.046-.069.123-.185.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.966-1.156-7.118c.043-.022.088-.039.13-.062.679,1.273,2.017,2.095,3.49,2.095.79,0,1.555-.236,2.204-.671.746.925,1.862,1.464,3.073,1.464,1.125,0,2.181-.475,2.925-1.294.536.529,1.205.882,1.936,1.037l.888,4.767c.018.1.05.197.095.289l.849,1.753c.189.39.592.642,1.026.642h2.677c.04,0,.076-.013.115-.017.028.005.053.017.083.017h3.097c.467,0,.87-.267,1.05-.698.181-.431.09-.905-.237-1.239l-.949-.969-.705-4.034c-.045-.256-.288-.427-.543-.381-.255.044-.426.287-.382.542l.634,3.628h-.553c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h.914l.913.932c.081.083.061.173.042.219-.02.046-.069.123-.186.123h-2.182c.068-.36-.032-.726-.299-.998l-.947-.967-.919-5.575c.473.193.98.302,1.496.302,1.63,0,3.091-1.013,3.679-2.505.041.001.083.001.124.001,2.181,0,3.955-1.774,3.955-3.954,0-.393-.057-.778-.17-1.148,1.32-.665,2.178-2.031,2.178-3.534,0-.342-.043-.679-.129-1.006.85-.65,1.348-1.648,1.348-2.736,0-.927-.361-1.792-1.006-2.435.213-.33.355-.698.435-1.08.398.124.76.178,1.083.178.625,0,1.121-.178,1.532-.325.557-.2.818-.279,1.159-.063.495.312,1.64.566,2.635.156.447-.185.998-.57,1.325-1.347,0,0,0,0,0,0h0c.068-.162.129-.334.174-.531.455-1.988-2.058-4.163-3.159-5.006ZM11.049,35.594h-.979c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219s-.069.123-.186.123h-2.677c-.076,0-.147-.044-.18-.113l-.849-1.75c-.008-.017-.014-.035-.017-.053l-1.27-7.242c.574.32,1.228.507,1.921.507.303,0,.598-.039.887-.105l1.062,6.543ZM30.363,37.683c-.02.046-.069.123-.186.123h-2.677c-.077,0-.148-.044-.181-.113l-.85-1.752c-.008-.017-.013-.034-.017-.051l-.841-4.518c.975-.034,1.874-.427,2.567-1.085l.875,5.308h-.978c-.259,0-.469.211-.469.469,0,.26.21.469.469.469h1.334l.913.932c.081.083.061.173.042.219ZM47.087,11.251c-.694.286-1.512.084-1.777-.083-.742-.468-1.398-.233-1.976-.025-.614.22-1.253.439-2.251.052-.053-.515-.231-1.007-.517-1.437.451-1.114.375-2.867-.251-5.026-.073-.248-.332-.392-.582-.319-.249.072-.392.332-.32.581.828,2.854.501,4.426-.031,4.905-.207.186-.462.214-.779.085-1.239-.506-.806-3.879-.556-5.02.055-.253-.105-.504-.358-.559-.253-.055-.503.105-.559.358-.116.529-1.069,5.195,1.118,6.089.241.099.482.148.714.148.375,0,.725-.13,1.016-.38.124.282.195.585.195.903,0,.546-.199,1.074-.561,1.488-.086.098-.127.226-.114.355.013.129.079.247.182.326.628.48.988,1.207.988,1.996,0,.882-.45,1.684-1.205,2.144-.191.117-.273.351-.196.561.121.332.182.68.182,1.035,0,1.267-.801,2.408-1.993,2.838-.122.045-.221.137-.272.257-.051.119-.05.254.002.374.169.384.255.792.255,1.213,0,1.663-1.353,3.016-3.017,3.016-.126,0-.257-.008-.39-.025-.231-.03-.449.113-.512.337-.366,1.291-1.559,2.193-2.902,2.193-.696,0-1.375-.243-1.913-.684-.104-.086-.238-.122-.371-.101-.132.021-.249.098-.322.211-.559.872-1.508,1.392-2.541,1.392-.958,0-1.838-.44-2.414-1.208-.092-.121-.237-.193-.389-.187-.152.005-.293.083-.377.21-.562.845-1.501,1.35-2.514,1.35-1.056,0-2.018-.539-2.572-1.441-.073-.119-.193-.198-.33-.219-.137-.021-.276.021-.38.112-.551.486-1.26.754-1.994.754-1.275,0-2.417-.807-2.843-2.008-.05-.142-.165-.25-.309-.293-.145-.043-.3-.014-.419.078-.531.407-1.165.622-1.834.622-1.38,0-2.582-.932-2.923-2.267-.057-.227-.273-.376-.505-.351-.117.013-.226.019-.334.019-1.663,0-3.017-1.353-3.017-3.016,0-.685.225-1.331.649-1.869.091-.115.123-.265.086-.407s-.137-.258-.272-.316c-1.122-.473-1.847-1.564-1.847-2.781,0-1.481,1.102-2.762,2.564-2.982.143-.021.268-.107.338-.233.071-.125.081-.276.026-.41-.15-.364-.226-.751-.226-1.147,0-1.663,1.353-3.017,3.016-3.017.414,0,.817.084,1.196.248.123.053.263.051.384-.005.121-.057.213-.163.251-.291.379-1.265,1.567-2.15,2.89-2.15.82,0,1.588.324,2.161.913.098.101.236.152.377.14.14-.012.268-.087.347-.203.563-.828,1.497-1.323,2.496-1.323,1.082,0,2.087.586,2.623,1.528.068.12.186.204.322.229.136.026.276-.011.382-.098.543-.442,1.201-.676,1.904-.676,1.353,0,2.549.911,2.907,2.214.038.139.138.253.271.308.133.055.284.047.41-.022.445-.247.95-.378,1.461-.378.707,0,1.396.25,1.937.705.095.08.218.119.343.107.124-.011.239-.07.319-.166.489-.584,1.174-.958,1.926-1.054.124-.016.237-.08.313-.18.076-.099.109-.225.093-.349-.019-.138-.028-.275-.028-.407,0-1.096.596-2.108,1.557-2.639.169-.094.263-.283.237-.474-.017-.126-.026-.252-.026-.372,0-1.501,1.221-2.723,2.723-2.723.375,0,.738.074,1.079.222.238.103.513-.007.617-.244.359-.828,1.174-1.363,2.076-1.363.537,0,1.059.193,1.468.544.166.142.409.151.586.02.369-.275.805-.42,1.262-.42,1.168,0,2.12.95,2.12,2.119s-.951,2.119-2.12,2.119c-.456,0-.893-.145-1.262-.419-.208-.156-.502-.112-.657.096-.154.208-.111.502.096.657.532.396,1.162.605,1.822.605.553,0,1.066-.159,1.515-.418,1.068.791,3.081,2.587,3.021,3.96l-.535-.317c-.223-.131-.511-.058-.642.165-.132.223-.059.51.165.643l.698.413c-.165.244-.38.431-.654.544Z"/><path class="cls-1" d="M43.081,6.784h-.827c-.259,0-.469.21-.469.469s.21.469.469.469h.827c.259,0,.469-.211.469-.469s-.21-.469-.469-.469Z" /></svg>') no-repeat center center;
  top: 5px;
  height: 31px;
}
#product .product_detail .detail .manufacturer_Area ul li.material3::after,
#product .product_detail .detail .use_Area ul li.material3::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41.251 43.215"><path fill="%23000" d="M20.625,11.188l-.31.3c-.191.184-4.678,4.569-4.678,10.09s4.487,9.906,4.678,10.09l.31.3.31-.3c.191-.184,4.679-4.569,4.679-10.09s-4.488-9.906-4.679-10.09Zm4.1,10.388c0,4.325-3.094,8.035-4.1,9.124-1-1.088-4.1-4.792-4.1-9.124s3.093-8.034,4.1-9.124C21.629,13.542,24.722,17.251,24.722,21.576Z" /><path fill="%23000" d="M40.838,22.077c-.256-.073-6.3-1.768-11.079.993s-6.333,8.84-6.4,9.1l-.1.417.413.12a15.938,15.938,0,0,0,1.949.39l-4.191,1.693.838,7.535H18.346l.837-7.535-4.041-1.632A16.953,16.953,0,0,0,17.58,32.7l.413-.12-.1-.417c-.065-.257-1.618-6.336-6.4-9.1S.668,22,.413,22.077L0,22.2l.1.418c.064.257,1.616,6.336,6.4,9.1a13.022,13.022,0,0,0,6.506,1.574l.066,0,5.146,2.078-.872,7.854h5.917l-.873-7.854,5.183-2.093c.219.008.438.017.668.017a13.022,13.022,0,0,0,6.506-1.574c4.781-2.761,6.334-8.84,6.4-9.1l.1-.418ZM6.949,30.938C3.2,28.775,1.537,24.242,1.1,22.829c1.442-.325,6.2-1.149,9.948,1.014s5.412,6.7,5.853,8.109C15.453,32.276,10.693,33.1,6.949,30.938Zm27.353,0c-3.744,2.162-8.5,1.338-9.948,1.014.441-1.413,2.107-5.947,5.852-8.109s8.5-1.339,9.949-1.014C39.714,24.242,38.047,28.775,34.3,30.938Z" /><path fill="%23000" d="M1.248,19.643a.417.417,0,0,0,.061,0,.445.445,0,0,0,.382-.5,7.847,7.847,0,0,1,7.844-8.882c0,.04-.006.078-.006.119a10.423,10.423,0,0,0,.251,2.279.446.446,0,0,0,.871-.2,9.482,9.482,0,1,1,18.423.327.447.447,0,1,0,.864.226,10.409,10.409,0,0,0,.338-2.637c0-.038,0-.074,0-.111a7.861,7.861,0,0,1,8.323,9.325.446.446,0,0,0,.353.523.426.426,0,0,0,.086.009.448.448,0,0,0,.438-.362A8.755,8.755,0,0,0,30.226,9.371,10.372,10.372,0,0,0,9.581,9.347,8.756,8.756,0,0,0,.807,19.255.446.446,0,0,0,1.248,19.643Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41.251 43.215"><path fill="%23000" d="M20.625,11.188l-.31.3c-.191.184-4.678,4.569-4.678,10.09s4.487,9.906,4.678,10.09l.31.3.31-.3c.191-.184,4.679-4.569,4.679-10.09s-4.488-9.906-4.679-10.09Zm4.1,10.388c0,4.325-3.094,8.035-4.1,9.124-1-1.088-4.1-4.792-4.1-9.124s3.093-8.034,4.1-9.124C21.629,13.542,24.722,17.251,24.722,21.576Z" /><path fill="%23000" d="M40.838,22.077c-.256-.073-6.3-1.768-11.079.993s-6.333,8.84-6.4,9.1l-.1.417.413.12a15.938,15.938,0,0,0,1.949.39l-4.191,1.693.838,7.535H18.346l.837-7.535-4.041-1.632A16.953,16.953,0,0,0,17.58,32.7l.413-.12-.1-.417c-.065-.257-1.618-6.336-6.4-9.1S.668,22,.413,22.077L0,22.2l.1.418c.064.257,1.616,6.336,6.4,9.1a13.022,13.022,0,0,0,6.506,1.574l.066,0,5.146,2.078-.872,7.854h5.917l-.873-7.854,5.183-2.093c.219.008.438.017.668.017a13.022,13.022,0,0,0,6.506-1.574c4.781-2.761,6.334-8.84,6.4-9.1l.1-.418ZM6.949,30.938C3.2,28.775,1.537,24.242,1.1,22.829c1.442-.325,6.2-1.149,9.948,1.014s5.412,6.7,5.853,8.109C15.453,32.276,10.693,33.1,6.949,30.938Zm27.353,0c-3.744,2.162-8.5,1.338-9.948,1.014.441-1.413,2.107-5.947,5.852-8.109s8.5-1.339,9.949-1.014C39.714,24.242,38.047,28.775,34.3,30.938Z" /><path fill="%23000" d="M1.248,19.643a.417.417,0,0,0,.061,0,.445.445,0,0,0,.382-.5,7.847,7.847,0,0,1,7.844-8.882c0,.04-.006.078-.006.119a10.423,10.423,0,0,0,.251,2.279.446.446,0,0,0,.871-.2,9.482,9.482,0,1,1,18.423.327.447.447,0,1,0,.864.226,10.409,10.409,0,0,0,.338-2.637c0-.038,0-.074,0-.111a7.861,7.861,0,0,1,8.323,9.325.446.446,0,0,0,.353.523.426.426,0,0,0,.086.009.448.448,0,0,0,.438-.362A8.755,8.755,0,0,0,30.226,9.371,10.372,10.372,0,0,0,9.581,9.347,8.756,8.756,0,0,0,.807,19.255.446.446,0,0,0,1.248,19.643Z" /></svg>') no-repeat center center;
  top: 3px;
  height: 35px;
}
#product .product_detail .detail .manufacturer_Area ul li.material4::after,
#product .product_detail .detail .use_Area ul li.material4::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39.917 39.917"><path fill="%23000" d="M38.348,12.19a19.969,19.969,0,0,0-36.779,0,19.958,19.958,0,0,0,32.5,21.881A19.977,19.977,0,0,0,38.348,12.19Zm.111,13.993c-.14.143-.284.286-.438.441a10.942,10.942,0,0,0-7.342.011c-.019-.027-.04-.056-.06-.086a1.822,1.822,0,0,0-1.667-.836,6.512,6.512,0,0,0-1.486.235c-.04.01-.08.018-.138.031a8.36,8.36,0,0,1,0-2.5c.29.062.565.13.843.176a3.063,3.063,0,0,0,1.465,0,1.705,1.705,0,0,0,.969-.734.145.145,0,0,1,.19-.073c.715.169,1.426.361,2.148.49a9.256,9.256,0,0,0,3.931-.208c.361-.091.721-.187,1.08-.284.075-.02.124-.019.172.059a1.686,1.686,0,0,0,.995.754A19.3,19.3,0,0,1,38.459,26.183Zm-2.47,4.9a8.59,8.59,0,0,1-3.817-.125c-.382-.1-.762-.2-1.156-.308a9.546,9.546,0,0,0,0-3.041,9.434,9.434,0,0,1,6.689,0c-.018.195-.036.394-.056.594A19.318,19.318,0,0,1,35.989,31.087Zm-3.591,3.9c-.57.137-1.143.272-1.731.411-.034-.05-.078-.119-.127-.185a1.759,1.759,0,0,0-1.376-.72,5.7,5.7,0,0,0-1.682.226l-.109.026a.2.2,0,0,1-.047-.006,8.353,8.353,0,0,1,0-2.481c.284.06.554.127.827.174a3.225,3.225,0,0,0,1.42.016,1.7,1.7,0,0,0,1.026-.745.152.152,0,0,1,.2-.077c.706.168,1.409.35,2.121.486a8.034,8.034,0,0,0,2.228.087,19.98,19.98,0,0,1-1.395,1.552Q33.1,34.408,32.4,34.991ZM23.36,39.175a9.364,9.364,0,0,0-2.679.28q-.36.014-.723.014c-.306,0-.61-.007-.914-.021A1.909,1.909,0,0,0,17.33,38.9c-.385.046-.764.132-1.145.2-.079-.015-.157-.031-.235-.048a8.676,8.676,0,0,1,.01-2.393c.414.075.815.154,1.218.218a2.307,2.307,0,0,0,1.262-.119,1.678,1.678,0,0,0,.8-.671c.057-.092.107-.094.2-.072.7.167,1.4.355,2.106.483a9.332,9.332,0,0,0,3.972-.206q.534-.135,1.066-.281a.134.134,0,0,1,.179.068,1.8,1.8,0,0,0,1.766.82c.492-.042.98-.141,1.486-.219A19.29,19.29,0,0,1,23.36,39.175ZM7.826,35.24a1.7,1.7,0,0,0-.679-.566q-.506-.441-.985-.919-.688-.69-1.3-1.433c.252.052.5.1.749.144a2.773,2.773,0,0,0,1.333-.043,1.674,1.674,0,0,0,.913-.7.182.182,0,0,1,.247-.087,18.01,18.01,0,0,0,2.285.514,9.852,9.852,0,0,0,3.765-.244c.352-.089.7-.179,1.052-.277a.15.15,0,0,1,.2.074,1.757,1.757,0,0,0,1.521.819,5.907,5.907,0,0,0,1.672-.252l.063-.015a7.38,7.38,0,0,1,0,2.49c-.294-.061-.588-.131-.884-.18a3,3,0,0,0-1.384.008,1.716,1.716,0,0,0-1,.755c-.017.027-.038.052-.065.091a13.176,13.176,0,0,0-3.694-.646,12.9,12.9,0,0,0-3.609.625ZM3.269,9.839c.2-.059.4-.107.592-.163a.126.126,0,0,1,.169.06,1.81,1.81,0,0,0,1.677.838,6.578,6.578,0,0,0,1.5-.242c.031-.008.062-.013.112-.024a8.549,8.549,0,0,1,0,2.5c-.247-.055-.48-.116-.716-.158a3.733,3.733,0,0,0-1.373-.071,1.732,1.732,0,0,0-1.188.783.15.15,0,0,1-.2.075c-.678-.164-1.357-.322-2.036-.481l-.066-.013A19.222,19.222,0,0,1,3.269,9.839ZM6.146,6.178a1.84,1.84,0,0,0,1.345-.39,2.225,2.225,0,0,0,.38-.424.159.159,0,0,1,.2-.074c.655.16,1.306.34,1.968.464a9.468,9.468,0,0,0,4.2-.208c.328-.087.657-.171.984-.261a.127.127,0,0,1,.169.065,1.8,1.8,0,0,0,1.664.834,6.467,6.467,0,0,0,1.513-.244c.027-.007.054-.012.1-.023a8.23,8.23,0,0,1,0,2.5c-.3-.063-.577-.132-.86-.179a3.189,3.189,0,0,0-1.358-.019,1.716,1.716,0,0,0-1.061.763.144.144,0,0,1-.191.07c-.719-.17-1.435-.363-2.161-.492a9.137,9.137,0,0,0-3.795.181c-.4.1-.792.2-1.187.31-.085.022-.136.021-.192-.066A1.8,1.8,0,0,0,6.21,8.153a6.579,6.579,0,0,0-1.5.243c-.03.008-.061.014-.118.027-.016-.152-.033-.294-.046-.434A19.745,19.745,0,0,1,6.146,6.178ZM14.69,1.163c.1.03.206.055.308.084a9.351,9.351,0,0,0-.007,3.037A9.442,9.442,0,0,1,8.319,4.3,19.317,19.317,0,0,1,14.69,1.163ZM18.131.532A1.672,1.672,0,0,1,18.307.6a2.663,2.663,0,0,1-.37.163A2.9,2.9,0,0,1,16.783.7Q17.452.6,18.131.532ZM16.364,4.96a3.631,3.631,0,0,1,1.55-.171,1.91,1.91,0,0,1,.362.15L18.261,5a3.943,3.943,0,0,1-1.464.175A.651.651,0,0,1,16.364,4.96Zm9.991,3.715a9.442,9.442,0,0,1-6.7,0,9.683,9.683,0,0,0,0-3.011,9.448,9.448,0,0,1,6.7,0A9.623,9.623,0,0,0,26.355,8.675Zm-4.947,1.469a9.488,9.488,0,0,0,4.2-.209c.324-.084.648-.167.97-.258a.143.143,0,0,1,.189.076,1.782,1.782,0,0,0,1.588.817,6.5,6.5,0,0,0,1.581-.239c.031-.008.062-.012.107-.021a8.614,8.614,0,0,1,0,2.489c-.361-.071-.7-.149-1.053-.2a2.715,2.715,0,0,0-1.27.04,1.675,1.675,0,0,0-.946.719c-.065.105-.125.1-.225.076-.65-.158-1.3-.335-1.954-.458a9.488,9.488,0,0,0-4.2.21l-.984.26c-.06.016-.107.028-.152-.044a1.78,1.78,0,0,0-1.776-.844c-.47.039-.934.15-1.4.229-.036.006-.071.015-.12.026a8.664,8.664,0,0,1,0-2.491c.361.07.7.149,1.053.2a2.641,2.641,0,0,0,1.349-.066,1.666,1.666,0,0,0,.868-.691c.064-.1.122-.1.224-.078C20.1,9.844,20.751,10.021,21.408,10.144Zm6.98-4.011a2.836,2.836,0,0,0,1.124,0,1.764,1.764,0,0,0,1.157-.868c.325.084.649.165.97.252a11.705,11.705,0,0,0,1.8.337c.107.1.214.206.319.311A19.852,19.852,0,0,1,35.79,8.549L35.371,8.5a9.86,9.86,0,0,0-3.72.323c-.288.076-.576.149-.863.231a.135.135,0,0,1-.179-.068,1.8,1.8,0,0,0-1.681-.83,6.573,6.573,0,0,0-1.5.245c-.026.007-.053.012-.1.021a8.353,8.353,0,0,1,0-2.491C27.7,6,28.04,6.078,28.388,6.133Zm-.65-1.2a2.469,2.469,0,0,1,.405-.149,3.485,3.485,0,0,1,1.489.183.492.492,0,0,1-.327.189,2.2,2.2,0,0,1-.928-.019c-.209-.036-.416-.09-.623-.136Zm4.215-.365-.938-.251.057-.4Q31.521,4.229,31.953,4.566Zm5.662,7.066q.034.723.067,1.445a9.392,9.392,0,0,1-6.634,0c.03-.5.083-1.009.083-1.519s-.053-1.011-.084-1.539c.258-.07.545-.145.829-.226a9.161,9.161,0,0,1,2.465-.364,8.907,8.907,0,0,1,2.224.285h0A19.288,19.288,0,0,1,37.615,11.632Zm1.778,6.6-.307-.07a.627.627,0,0,1,.285-.178C39.379,18.064,39.386,18.147,39.393,18.23Zm-.148-1.246a1.775,1.775,0,0,0-1.191.9,10.618,10.618,0,0,0-7.35,0c-.036-.043-.053-.059-.065-.078a1.81,1.81,0,0,0-1.688-.87,6.517,6.517,0,0,0-1.5.238c-.035.009-.071.015-.122.026a8.38,8.38,0,0,1,0-2.5c.3.063.577.131.86.179a3.194,3.194,0,0,0,1.383.013,1.7,1.7,0,0,0,1.028-.742.159.159,0,0,1,.21-.082c.65.161,1.3.337,1.954.462a9.507,9.507,0,0,0,4.206-.205c.329-.085.657-.171.984-.262a.135.135,0,0,1,.18.069,1.709,1.709,0,0,0,.636.6A19.5,19.5,0,0,1,39.245,16.984Zm-1.552,4.868a9.409,9.409,0,0,1-6.672-.009,9.536,9.536,0,0,0-.005-3.03,11.3,11.3,0,0,1,3.356-.611,11.183,11.183,0,0,1,3.321.6c-.032.523-.088,1.033-.088,1.543S37.662,21.357,37.693,21.852Zm-8.715-.479a2.449,2.449,0,0,0-1.528.154,1.853,1.853,0,0,0-.752.725,13.192,13.192,0,0,0-3.7-.646,13.164,13.164,0,0,0-3.682.645c-.075-.1-.138-.2-.213-.289a1.79,1.79,0,0,0-1.61-.629c-.475.044-.944.152-1.415.231-.032.006-.064.014-.094.021a7.248,7.248,0,0,1-.012-2.484c.338.066.673.143,1.013.2a2.665,2.665,0,0,0,1.375-.064,1.69,1.69,0,0,0,.869-.691.158.158,0,0,1,.21-.082c.65.161,1.3.336,1.954.461a9.4,9.4,0,0,0,4.11-.181q.541-.138,1.079-.284a.137.137,0,0,1,.181.067,1.765,1.765,0,0,0,1.708.823c.522-.037,1.039-.144,1.578-.222a8.615,8.615,0,0,1,0,2.453C29.681,21.506,29.331,21.429,28.978,21.373Zm.663,1.145a.6.6,0,0,1-.4.21,3.09,3.09,0,0,1-1.187-.1c-.1-.021-.2-.051-.319-.081a.653.653,0,0,1,.442-.213,3.486,3.486,0,0,1,1.24.126C29.484,22.475,29.554,22.5,29.641,22.518ZM28.49,28.126c.517-.038,1.029-.144,1.562-.223a8.57,8.57,0,0,1,0,2.462c-.255-.055-.5-.116-.742-.16a3.855,3.855,0,0,0-1.262-.081,1.756,1.756,0,0,0-1.311.854c-.01.016-.022.029-.04.053a13.186,13.186,0,0,0-3.7-.646,13.247,13.247,0,0,0-3.688.648,1.7,1.7,0,0,0-1.374-.907,5.119,5.119,0,0,0-1.069.054c-.3.036-.592.118-.9.182a8.557,8.557,0,0,1,0-2.46c.528.079,1.031.181,1.539.223a1.786,1.786,0,0,0,1.758-.834c.053-.082.1-.07.173-.053.687.164,1.37.356,2.064.48a9.485,9.485,0,0,0,4.137-.227c.319-.084.639-.165.957-.254a.135.135,0,0,1,.181.068A1.774,1.774,0,0,0,28.49,28.126Zm-.748-1.179c.548-.228,1.615-.386,1.9-.006a3.729,3.729,0,0,1-1.52.171A1.307,1.307,0,0,1,27.742,26.947ZM29.653,31.3a.786.786,0,0,1-.579.232,4.306,4.306,0,0,1-1.328-.2l-.015-.041a1.877,1.877,0,0,1,.315-.148,2.391,2.391,0,0,1,1.09.037C29.3,31.207,29.46,31.252,29.653,31.3Zm-3.3,3.713a9.355,9.355,0,0,1-6.67.011c.028-.489.079-1,.079-1.506s-.05-1.019-.078-1.523a9.436,9.436,0,0,1,6.67.011A9.627,9.627,0,0,0,26.354,35.009ZM18.282,31.29l-.015.044a3.689,3.689,0,0,1-1.508.167,2.176,2.176,0,0,1-.389-.149l.01-.063c.211-.046.421-.1.633-.136a2.092,2.092,0,0,1,.954-.012A2.2,2.2,0,0,1,18.282,31.29Zm-3.292-.667a9.428,9.428,0,0,1-6.673.01c.031-.5.087-1.007.088-1.516s-.056-1.011-.088-1.514a9.425,9.425,0,0,1,6.674.01A9.439,9.439,0,0,0,14.99,30.623Zm-.212-4.135A11.95,11.95,0,0,0,11.853,26a10.822,10.822,0,0,0-3.128.431c-.229.062-.457.126-.688.18a.154.154,0,0,1-.133-.041,1.885,1.885,0,0,0-1.976-.835c-.415.05-.823.15-1.234.227-.026.005-.053.008-.095.013a8.262,8.262,0,0,1,0-2.492c.29.062.565.13.843.176a3.362,3.362,0,0,0,1.276.046,1.714,1.714,0,0,0,1.142-.76.177.177,0,0,1,.232-.09c.742.177,1.48.376,2.231.5a9.225,9.225,0,0,0,3.833-.229c.356-.091.712-.183,1.066-.281a.138.138,0,0,1,.181.069,1.77,1.77,0,0,0,1.723.821c.516-.039,1.028-.145,1.563-.224a8.376,8.376,0,0,1-.006,2.464c-.251-.055-.488-.114-.729-.159a3.884,3.884,0,0,0-1.248-.088,1.762,1.762,0,0,0-1.364.908C15.152,26.587,14.964,26.54,14.778,26.488ZM6.9,26.919c-.558.218-1.641.363-1.875,0C5.6,26.712,6.632,26.565,6.9,26.919ZM5,22.547a.636.636,0,0,1,.435-.213,3.175,3.175,0,0,1,1.119.095c.113.023.224.055.36.088a.622.622,0,0,1-.4.21,3.1,3.1,0,0,1-1.186-.1C5.222,22.608,5.121,22.577,5,22.547Zm1.191-5.6c-.494.034-.982.15-1.472.23-.036.006-.071.015-.122.026a8.307,8.307,0,0,1,0-2.494c.3.062.575.13.858.178a3.208,3.208,0,0,0,1.369.016,1.7,1.7,0,0,0,1.049-.756c.058-.094.11-.093.2-.07.65.158,1.3.336,1.954.46a9.521,9.521,0,0,0,4.206-.2c.324-.084.648-.167.971-.258a.151.151,0,0,1,.2.073,1.782,1.782,0,0,0,1.6.815A7.11,7.11,0,0,0,18.68,14.7a8.334,8.334,0,0,1,0,2.493c-.366-.071-.711-.148-1.059-.2a2.622,2.622,0,0,0-1.324.061,1.734,1.734,0,0,0-.878.68c-.028.042-.057.084-.087.127-.464-.119-.922-.241-1.382-.353a9.888,9.888,0,0,0-5.026.1c-.3.081-.593.156-.889.237a.111.111,0,0,1-.148-.053A1.746,1.746,0,0,0,6.193,16.942Zm.719,1.193c-.6.227-1.66.365-1.913-.031.376-.061.733-.13,1.094-.174a1.12,1.12,0,0,1,.665.1A1.673,1.673,0,0,1,6.912,18.135ZM4.978,13.742a2.72,2.72,0,0,1,.327-.158,1.675,1.675,0,0,1,.787-.018c.27.043.537.1.835.162a.66.66,0,0,1-.43.222A3.569,3.569,0,0,1,4.978,13.742Zm10.013-.678a9.448,9.448,0,0,1-6.7,0,9.462,9.462,0,0,0,0-3.009,9.431,9.431,0,0,1,6.7,0A9.462,9.462,0,0,0,14.991,13.064Zm1.355.664c.328-.061.619-.137.914-.165a3.321,3.321,0,0,1,.718.026,1.05,1.05,0,0,1,.3.142l-.014.044a3.95,3.95,0,0,1-1.477.176A.719.719,0,0,1,16.346,13.728Zm1.939,4.4a.716.716,0,0,1-.466.215,4.056,4.056,0,0,1-1.454-.187.639.639,0,0,1,.431-.214,3.452,3.452,0,0,1,1.254.124C18.121,18.085,18.191,18.106,18.285,18.131Zm-10,.677a12.811,12.811,0,0,1,2.834-.581,10.623,10.623,0,0,1,3.874.59,9.475,9.475,0,0,0,0,3.048,11.486,11.486,0,0,1-3.365.608,11.5,11.5,0,0,1-3.343-.608A9.5,9.5,0,0,0,8.285,18.808Zm8.081,3.707a6.253,6.253,0,0,1,.616-.132,7.232,7.232,0,0,1,.858-.046.532.532,0,0,1,.431.209C17.4,22.794,16.641,22.849,16.366,22.515Zm1.913,4.391a.587.587,0,0,1-.393.209,3.333,3.333,0,0,1-1.321-.127c-.055-.012-.108-.029-.161-.045-.007,0-.011-.011-.023-.024a.628.628,0,0,1,.415-.2A3.991,3.991,0,0,1,18.279,26.906Zm8.076-.674a9.413,9.413,0,0,1-6.7,0,9.7,9.7,0,0,0,0-3.009,9.45,9.45,0,0,1,6.7,0A9.61,9.61,0,0,0,26.355,26.232Zm-.029-8.767a9.4,9.4,0,0,1-6.67-.013,9.677,9.677,0,0,0,0-3.01,9.444,9.444,0,0,1,6.671-.01c-.028.494-.079,1-.08,1.511S26.3,16.963,26.326,17.465Zm1.421.656a5.783,5.783,0,0,1,.6-.129,7.5,7.5,0,0,1,.86-.044.589.589,0,0,1,.448.221c-.658.108-1.283.379-1.905.014Zm-.014-4.388a1.968,1.968,0,0,1,.294-.147,2.1,2.1,0,0,1,.98.008c.208.036.414.089.651.141a.854.854,0,0,1-.646.237A3.643,3.643,0,0,1,27.733,13.733Zm1.913-4.35a5.7,5.7,0,0,1-.6.128,7.728,7.728,0,0,1-.9.045.438.438,0,0,1-.394-.207C28.6,9.1,29.373,9.047,29.646,9.383Zm-13.287,0a.65.65,0,0,1,.43-.217,3.955,3.955,0,0,1,1.47.173l.02.041a1.721,1.721,0,0,1-.289.149,2.1,2.1,0,0,1-.98-.006C16.8,9.488,16.594,9.435,16.359,9.384Zm-9.441,0a3.741,3.741,0,0,1-1.524.174A2.009,2.009,0,0,1,5.006,9.4l.016-.06a3.855,3.855,0,0,1,1.467-.176A.639.639,0,0,1,6.918,9.38ZM3.631,14.413a9.615,9.615,0,0,0,0,3.066,12.076,12.076,0,0,1-3.094.59A19.466,19.466,0,0,1,1.4,13.9,17.765,17.765,0,0,1,3.631,14.413ZM.83,19.05a13.941,13.941,0,0,0,3.007-.588.159.159,0,0,1,.211.08,1.758,1.758,0,0,0,1.69.8c.494-.037.981-.153,1.471-.235.032,0,.063-.013.109-.023a8.44,8.44,0,0,1,0,2.494c-.3-.063-.591-.133-.884-.181a3,3,0,0,0-1.423.011,1.687,1.687,0,0,0-.968.733c-.058.093-.111.093-.2.071-.678-.163-1.353-.341-2.037-.473-.422-.081-.857-.092-1.287-.133-.045-.546-.07-1.1-.07-1.652,0-.3.008-.594.021-.889Zm-.2,3.563a12.256,12.256,0,0,1,3,.583,9.678,9.678,0,0,0,0,3.09l-1.98.455A19.355,19.355,0,0,1,.627,22.613ZM2.039,27.7c.62-.158,1.236-.315,1.852-.467a.157.157,0,0,1,.129.058,1.8,1.8,0,0,0,1.773.833c.475-.041.944-.152,1.416-.232l.108-.024a8.434,8.434,0,0,1,0,2.5c-.252-.055-.49-.114-.731-.158a3.749,3.749,0,0,0-1.331-.074,1.728,1.728,0,0,0-1.221.8A.132.132,0,0,1,3.87,31,19.235,19.235,0,0,1,2.039,27.7Zm4.886,3.6a.82.82,0,0,1-.606.232,4.393,4.393,0,0,1-1.3-.2l-.011-.047a1.741,1.741,0,0,1,.308-.142A3.518,3.518,0,0,1,6.925,31.3Zm11.349,4.424a.854.854,0,0,1-.263.138,3.192,3.192,0,0,1-.7.039c-.311-.028-.619-.1-.928-.159a.731.731,0,0,1,.632-.253A3.628,3.628,0,0,1,18.274,35.721Zm-9.218.424a9.874,9.874,0,0,1,5.94.232,9.494,9.494,0,0,0-.083,2.436A19.266,19.266,0,0,1,9.056,36.145Zm18.68-.469c.642-.11,1.268-.376,1.93.013C29.019,35.925,27.97,36.054,27.736,35.676ZM39.1,22.561l.014-.047.193-.048c-.008.062-.017.124-.025.186Zm-.4-.981a7.447,7.447,0,0,1,0-2.487l.753.167c.008.232.013.465.013.7q0,.74-.054,1.47C39.18,21.482,38.944,21.53,38.708,21.58ZM30.127,3.3c-.031.24-.049.483-.072.72-.363-.071-.7-.148-1.047-.2a2.651,2.651,0,0,0-1.363.066,1.7,1.7,0,0,0-.875.705.146.146,0,0,1-.192.07C25.886,4.493,25.2,4.3,24.5,4.176a9.464,9.464,0,0,0-4.109.229c-.324.085-.647.173-.972.253a.173.173,0,0,1-.149-.036,1.8,1.8,0,0,0-1.793-.846c-.475.042-.944.153-1.416.234l-.1.021a8.683,8.683,0,0,1,0-2.5c.248.054.481.112.717.156a3.886,3.886,0,0,0,1.316.081A1.752,1.752,0,0,0,19.27.931c.012-.019.026-.037.04-.057.454.117.9.237,1.353.347a9.666,9.666,0,0,0,4.687,0l.034-.008A19.242,19.242,0,0,1,30.127,3.3Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39.917 39.917"><path fill="%23000" d="M38.348,12.19a19.969,19.969,0,0,0-36.779,0,19.958,19.958,0,0,0,32.5,21.881A19.977,19.977,0,0,0,38.348,12.19Zm.111,13.993c-.14.143-.284.286-.438.441a10.942,10.942,0,0,0-7.342.011c-.019-.027-.04-.056-.06-.086a1.822,1.822,0,0,0-1.667-.836,6.512,6.512,0,0,0-1.486.235c-.04.01-.08.018-.138.031a8.36,8.36,0,0,1,0-2.5c.29.062.565.13.843.176a3.063,3.063,0,0,0,1.465,0,1.705,1.705,0,0,0,.969-.734.145.145,0,0,1,.19-.073c.715.169,1.426.361,2.148.49a9.256,9.256,0,0,0,3.931-.208c.361-.091.721-.187,1.08-.284.075-.02.124-.019.172.059a1.686,1.686,0,0,0,.995.754A19.3,19.3,0,0,1,38.459,26.183Zm-2.47,4.9a8.59,8.59,0,0,1-3.817-.125c-.382-.1-.762-.2-1.156-.308a9.546,9.546,0,0,0,0-3.041,9.434,9.434,0,0,1,6.689,0c-.018.195-.036.394-.056.594A19.318,19.318,0,0,1,35.989,31.087Zm-3.591,3.9c-.57.137-1.143.272-1.731.411-.034-.05-.078-.119-.127-.185a1.759,1.759,0,0,0-1.376-.72,5.7,5.7,0,0,0-1.682.226l-.109.026a.2.2,0,0,1-.047-.006,8.353,8.353,0,0,1,0-2.481c.284.06.554.127.827.174a3.225,3.225,0,0,0,1.42.016,1.7,1.7,0,0,0,1.026-.745.152.152,0,0,1,.2-.077c.706.168,1.409.35,2.121.486a8.034,8.034,0,0,0,2.228.087,19.98,19.98,0,0,1-1.395,1.552Q33.1,34.408,32.4,34.991ZM23.36,39.175a9.364,9.364,0,0,0-2.679.28q-.36.014-.723.014c-.306,0-.61-.007-.914-.021A1.909,1.909,0,0,0,17.33,38.9c-.385.046-.764.132-1.145.2-.079-.015-.157-.031-.235-.048a8.676,8.676,0,0,1,.01-2.393c.414.075.815.154,1.218.218a2.307,2.307,0,0,0,1.262-.119,1.678,1.678,0,0,0,.8-.671c.057-.092.107-.094.2-.072.7.167,1.4.355,2.106.483a9.332,9.332,0,0,0,3.972-.206q.534-.135,1.066-.281a.134.134,0,0,1,.179.068,1.8,1.8,0,0,0,1.766.82c.492-.042.98-.141,1.486-.219A19.29,19.29,0,0,1,23.36,39.175ZM7.826,35.24a1.7,1.7,0,0,0-.679-.566q-.506-.441-.985-.919-.688-.69-1.3-1.433c.252.052.5.1.749.144a2.773,2.773,0,0,0,1.333-.043,1.674,1.674,0,0,0,.913-.7.182.182,0,0,1,.247-.087,18.01,18.01,0,0,0,2.285.514,9.852,9.852,0,0,0,3.765-.244c.352-.089.7-.179,1.052-.277a.15.15,0,0,1,.2.074,1.757,1.757,0,0,0,1.521.819,5.907,5.907,0,0,0,1.672-.252l.063-.015a7.38,7.38,0,0,1,0,2.49c-.294-.061-.588-.131-.884-.18a3,3,0,0,0-1.384.008,1.716,1.716,0,0,0-1,.755c-.017.027-.038.052-.065.091a13.176,13.176,0,0,0-3.694-.646,12.9,12.9,0,0,0-3.609.625ZM3.269,9.839c.2-.059.4-.107.592-.163a.126.126,0,0,1,.169.06,1.81,1.81,0,0,0,1.677.838,6.578,6.578,0,0,0,1.5-.242c.031-.008.062-.013.112-.024a8.549,8.549,0,0,1,0,2.5c-.247-.055-.48-.116-.716-.158a3.733,3.733,0,0,0-1.373-.071,1.732,1.732,0,0,0-1.188.783.15.15,0,0,1-.2.075c-.678-.164-1.357-.322-2.036-.481l-.066-.013A19.222,19.222,0,0,1,3.269,9.839ZM6.146,6.178a1.84,1.84,0,0,0,1.345-.39,2.225,2.225,0,0,0,.38-.424.159.159,0,0,1,.2-.074c.655.16,1.306.34,1.968.464a9.468,9.468,0,0,0,4.2-.208c.328-.087.657-.171.984-.261a.127.127,0,0,1,.169.065,1.8,1.8,0,0,0,1.664.834,6.467,6.467,0,0,0,1.513-.244c.027-.007.054-.012.1-.023a8.23,8.23,0,0,1,0,2.5c-.3-.063-.577-.132-.86-.179a3.189,3.189,0,0,0-1.358-.019,1.716,1.716,0,0,0-1.061.763.144.144,0,0,1-.191.07c-.719-.17-1.435-.363-2.161-.492a9.137,9.137,0,0,0-3.795.181c-.4.1-.792.2-1.187.31-.085.022-.136.021-.192-.066A1.8,1.8,0,0,0,6.21,8.153a6.579,6.579,0,0,0-1.5.243c-.03.008-.061.014-.118.027-.016-.152-.033-.294-.046-.434A19.745,19.745,0,0,1,6.146,6.178ZM14.69,1.163c.1.03.206.055.308.084a9.351,9.351,0,0,0-.007,3.037A9.442,9.442,0,0,1,8.319,4.3,19.317,19.317,0,0,1,14.69,1.163ZM18.131.532A1.672,1.672,0,0,1,18.307.6a2.663,2.663,0,0,1-.37.163A2.9,2.9,0,0,1,16.783.7Q17.452.6,18.131.532ZM16.364,4.96a3.631,3.631,0,0,1,1.55-.171,1.91,1.91,0,0,1,.362.15L18.261,5a3.943,3.943,0,0,1-1.464.175A.651.651,0,0,1,16.364,4.96Zm9.991,3.715a9.442,9.442,0,0,1-6.7,0,9.683,9.683,0,0,0,0-3.011,9.448,9.448,0,0,1,6.7,0A9.623,9.623,0,0,0,26.355,8.675Zm-4.947,1.469a9.488,9.488,0,0,0,4.2-.209c.324-.084.648-.167.97-.258a.143.143,0,0,1,.189.076,1.782,1.782,0,0,0,1.588.817,6.5,6.5,0,0,0,1.581-.239c.031-.008.062-.012.107-.021a8.614,8.614,0,0,1,0,2.489c-.361-.071-.7-.149-1.053-.2a2.715,2.715,0,0,0-1.27.04,1.675,1.675,0,0,0-.946.719c-.065.105-.125.1-.225.076-.65-.158-1.3-.335-1.954-.458a9.488,9.488,0,0,0-4.2.21l-.984.26c-.06.016-.107.028-.152-.044a1.78,1.78,0,0,0-1.776-.844c-.47.039-.934.15-1.4.229-.036.006-.071.015-.12.026a8.664,8.664,0,0,1,0-2.491c.361.07.7.149,1.053.2a2.641,2.641,0,0,0,1.349-.066,1.666,1.666,0,0,0,.868-.691c.064-.1.122-.1.224-.078C20.1,9.844,20.751,10.021,21.408,10.144Zm6.98-4.011a2.836,2.836,0,0,0,1.124,0,1.764,1.764,0,0,0,1.157-.868c.325.084.649.165.97.252a11.705,11.705,0,0,0,1.8.337c.107.1.214.206.319.311A19.852,19.852,0,0,1,35.79,8.549L35.371,8.5a9.86,9.86,0,0,0-3.72.323c-.288.076-.576.149-.863.231a.135.135,0,0,1-.179-.068,1.8,1.8,0,0,0-1.681-.83,6.573,6.573,0,0,0-1.5.245c-.026.007-.053.012-.1.021a8.353,8.353,0,0,1,0-2.491C27.7,6,28.04,6.078,28.388,6.133Zm-.65-1.2a2.469,2.469,0,0,1,.405-.149,3.485,3.485,0,0,1,1.489.183.492.492,0,0,1-.327.189,2.2,2.2,0,0,1-.928-.019c-.209-.036-.416-.09-.623-.136Zm4.215-.365-.938-.251.057-.4Q31.521,4.229,31.953,4.566Zm5.662,7.066q.034.723.067,1.445a9.392,9.392,0,0,1-6.634,0c.03-.5.083-1.009.083-1.519s-.053-1.011-.084-1.539c.258-.07.545-.145.829-.226a9.161,9.161,0,0,1,2.465-.364,8.907,8.907,0,0,1,2.224.285h0A19.288,19.288,0,0,1,37.615,11.632Zm1.778,6.6-.307-.07a.627.627,0,0,1,.285-.178C39.379,18.064,39.386,18.147,39.393,18.23Zm-.148-1.246a1.775,1.775,0,0,0-1.191.9,10.618,10.618,0,0,0-7.35,0c-.036-.043-.053-.059-.065-.078a1.81,1.81,0,0,0-1.688-.87,6.517,6.517,0,0,0-1.5.238c-.035.009-.071.015-.122.026a8.38,8.38,0,0,1,0-2.5c.3.063.577.131.86.179a3.194,3.194,0,0,0,1.383.013,1.7,1.7,0,0,0,1.028-.742.159.159,0,0,1,.21-.082c.65.161,1.3.337,1.954.462a9.507,9.507,0,0,0,4.206-.205c.329-.085.657-.171.984-.262a.135.135,0,0,1,.18.069,1.709,1.709,0,0,0,.636.6A19.5,19.5,0,0,1,39.245,16.984Zm-1.552,4.868a9.409,9.409,0,0,1-6.672-.009,9.536,9.536,0,0,0-.005-3.03,11.3,11.3,0,0,1,3.356-.611,11.183,11.183,0,0,1,3.321.6c-.032.523-.088,1.033-.088,1.543S37.662,21.357,37.693,21.852Zm-8.715-.479a2.449,2.449,0,0,0-1.528.154,1.853,1.853,0,0,0-.752.725,13.192,13.192,0,0,0-3.7-.646,13.164,13.164,0,0,0-3.682.645c-.075-.1-.138-.2-.213-.289a1.79,1.79,0,0,0-1.61-.629c-.475.044-.944.152-1.415.231-.032.006-.064.014-.094.021a7.248,7.248,0,0,1-.012-2.484c.338.066.673.143,1.013.2a2.665,2.665,0,0,0,1.375-.064,1.69,1.69,0,0,0,.869-.691.158.158,0,0,1,.21-.082c.65.161,1.3.336,1.954.461a9.4,9.4,0,0,0,4.11-.181q.541-.138,1.079-.284a.137.137,0,0,1,.181.067,1.765,1.765,0,0,0,1.708.823c.522-.037,1.039-.144,1.578-.222a8.615,8.615,0,0,1,0,2.453C29.681,21.506,29.331,21.429,28.978,21.373Zm.663,1.145a.6.6,0,0,1-.4.21,3.09,3.09,0,0,1-1.187-.1c-.1-.021-.2-.051-.319-.081a.653.653,0,0,1,.442-.213,3.486,3.486,0,0,1,1.24.126C29.484,22.475,29.554,22.5,29.641,22.518ZM28.49,28.126c.517-.038,1.029-.144,1.562-.223a8.57,8.57,0,0,1,0,2.462c-.255-.055-.5-.116-.742-.16a3.855,3.855,0,0,0-1.262-.081,1.756,1.756,0,0,0-1.311.854c-.01.016-.022.029-.04.053a13.186,13.186,0,0,0-3.7-.646,13.247,13.247,0,0,0-3.688.648,1.7,1.7,0,0,0-1.374-.907,5.119,5.119,0,0,0-1.069.054c-.3.036-.592.118-.9.182a8.557,8.557,0,0,1,0-2.46c.528.079,1.031.181,1.539.223a1.786,1.786,0,0,0,1.758-.834c.053-.082.1-.07.173-.053.687.164,1.37.356,2.064.48a9.485,9.485,0,0,0,4.137-.227c.319-.084.639-.165.957-.254a.135.135,0,0,1,.181.068A1.774,1.774,0,0,0,28.49,28.126Zm-.748-1.179c.548-.228,1.615-.386,1.9-.006a3.729,3.729,0,0,1-1.52.171A1.307,1.307,0,0,1,27.742,26.947ZM29.653,31.3a.786.786,0,0,1-.579.232,4.306,4.306,0,0,1-1.328-.2l-.015-.041a1.877,1.877,0,0,1,.315-.148,2.391,2.391,0,0,1,1.09.037C29.3,31.207,29.46,31.252,29.653,31.3Zm-3.3,3.713a9.355,9.355,0,0,1-6.67.011c.028-.489.079-1,.079-1.506s-.05-1.019-.078-1.523a9.436,9.436,0,0,1,6.67.011A9.627,9.627,0,0,0,26.354,35.009ZM18.282,31.29l-.015.044a3.689,3.689,0,0,1-1.508.167,2.176,2.176,0,0,1-.389-.149l.01-.063c.211-.046.421-.1.633-.136a2.092,2.092,0,0,1,.954-.012A2.2,2.2,0,0,1,18.282,31.29Zm-3.292-.667a9.428,9.428,0,0,1-6.673.01c.031-.5.087-1.007.088-1.516s-.056-1.011-.088-1.514a9.425,9.425,0,0,1,6.674.01A9.439,9.439,0,0,0,14.99,30.623Zm-.212-4.135A11.95,11.95,0,0,0,11.853,26a10.822,10.822,0,0,0-3.128.431c-.229.062-.457.126-.688.18a.154.154,0,0,1-.133-.041,1.885,1.885,0,0,0-1.976-.835c-.415.05-.823.15-1.234.227-.026.005-.053.008-.095.013a8.262,8.262,0,0,1,0-2.492c.29.062.565.13.843.176a3.362,3.362,0,0,0,1.276.046,1.714,1.714,0,0,0,1.142-.76.177.177,0,0,1,.232-.09c.742.177,1.48.376,2.231.5a9.225,9.225,0,0,0,3.833-.229c.356-.091.712-.183,1.066-.281a.138.138,0,0,1,.181.069,1.77,1.77,0,0,0,1.723.821c.516-.039,1.028-.145,1.563-.224a8.376,8.376,0,0,1-.006,2.464c-.251-.055-.488-.114-.729-.159a3.884,3.884,0,0,0-1.248-.088,1.762,1.762,0,0,0-1.364.908C15.152,26.587,14.964,26.54,14.778,26.488ZM6.9,26.919c-.558.218-1.641.363-1.875,0C5.6,26.712,6.632,26.565,6.9,26.919ZM5,22.547a.636.636,0,0,1,.435-.213,3.175,3.175,0,0,1,1.119.095c.113.023.224.055.36.088a.622.622,0,0,1-.4.21,3.1,3.1,0,0,1-1.186-.1C5.222,22.608,5.121,22.577,5,22.547Zm1.191-5.6c-.494.034-.982.15-1.472.23-.036.006-.071.015-.122.026a8.307,8.307,0,0,1,0-2.494c.3.062.575.13.858.178a3.208,3.208,0,0,0,1.369.016,1.7,1.7,0,0,0,1.049-.756c.058-.094.11-.093.2-.07.65.158,1.3.336,1.954.46a9.521,9.521,0,0,0,4.206-.2c.324-.084.648-.167.971-.258a.151.151,0,0,1,.2.073,1.782,1.782,0,0,0,1.6.815A7.11,7.11,0,0,0,18.68,14.7a8.334,8.334,0,0,1,0,2.493c-.366-.071-.711-.148-1.059-.2a2.622,2.622,0,0,0-1.324.061,1.734,1.734,0,0,0-.878.68c-.028.042-.057.084-.087.127-.464-.119-.922-.241-1.382-.353a9.888,9.888,0,0,0-5.026.1c-.3.081-.593.156-.889.237a.111.111,0,0,1-.148-.053A1.746,1.746,0,0,0,6.193,16.942Zm.719,1.193c-.6.227-1.66.365-1.913-.031.376-.061.733-.13,1.094-.174a1.12,1.12,0,0,1,.665.1A1.673,1.673,0,0,1,6.912,18.135ZM4.978,13.742a2.72,2.72,0,0,1,.327-.158,1.675,1.675,0,0,1,.787-.018c.27.043.537.1.835.162a.66.66,0,0,1-.43.222A3.569,3.569,0,0,1,4.978,13.742Zm10.013-.678a9.448,9.448,0,0,1-6.7,0,9.462,9.462,0,0,0,0-3.009,9.431,9.431,0,0,1,6.7,0A9.462,9.462,0,0,0,14.991,13.064Zm1.355.664c.328-.061.619-.137.914-.165a3.321,3.321,0,0,1,.718.026,1.05,1.05,0,0,1,.3.142l-.014.044a3.95,3.95,0,0,1-1.477.176A.719.719,0,0,1,16.346,13.728Zm1.939,4.4a.716.716,0,0,1-.466.215,4.056,4.056,0,0,1-1.454-.187.639.639,0,0,1,.431-.214,3.452,3.452,0,0,1,1.254.124C18.121,18.085,18.191,18.106,18.285,18.131Zm-10,.677a12.811,12.811,0,0,1,2.834-.581,10.623,10.623,0,0,1,3.874.59,9.475,9.475,0,0,0,0,3.048,11.486,11.486,0,0,1-3.365.608,11.5,11.5,0,0,1-3.343-.608A9.5,9.5,0,0,0,8.285,18.808Zm8.081,3.707a6.253,6.253,0,0,1,.616-.132,7.232,7.232,0,0,1,.858-.046.532.532,0,0,1,.431.209C17.4,22.794,16.641,22.849,16.366,22.515Zm1.913,4.391a.587.587,0,0,1-.393.209,3.333,3.333,0,0,1-1.321-.127c-.055-.012-.108-.029-.161-.045-.007,0-.011-.011-.023-.024a.628.628,0,0,1,.415-.2A3.991,3.991,0,0,1,18.279,26.906Zm8.076-.674a9.413,9.413,0,0,1-6.7,0,9.7,9.7,0,0,0,0-3.009,9.45,9.45,0,0,1,6.7,0A9.61,9.61,0,0,0,26.355,26.232Zm-.029-8.767a9.4,9.4,0,0,1-6.67-.013,9.677,9.677,0,0,0,0-3.01,9.444,9.444,0,0,1,6.671-.01c-.028.494-.079,1-.08,1.511S26.3,16.963,26.326,17.465Zm1.421.656a5.783,5.783,0,0,1,.6-.129,7.5,7.5,0,0,1,.86-.044.589.589,0,0,1,.448.221c-.658.108-1.283.379-1.905.014Zm-.014-4.388a1.968,1.968,0,0,1,.294-.147,2.1,2.1,0,0,1,.98.008c.208.036.414.089.651.141a.854.854,0,0,1-.646.237A3.643,3.643,0,0,1,27.733,13.733Zm1.913-4.35a5.7,5.7,0,0,1-.6.128,7.728,7.728,0,0,1-.9.045.438.438,0,0,1-.394-.207C28.6,9.1,29.373,9.047,29.646,9.383Zm-13.287,0a.65.65,0,0,1,.43-.217,3.955,3.955,0,0,1,1.47.173l.02.041a1.721,1.721,0,0,1-.289.149,2.1,2.1,0,0,1-.98-.006C16.8,9.488,16.594,9.435,16.359,9.384Zm-9.441,0a3.741,3.741,0,0,1-1.524.174A2.009,2.009,0,0,1,5.006,9.4l.016-.06a3.855,3.855,0,0,1,1.467-.176A.639.639,0,0,1,6.918,9.38ZM3.631,14.413a9.615,9.615,0,0,0,0,3.066,12.076,12.076,0,0,1-3.094.59A19.466,19.466,0,0,1,1.4,13.9,17.765,17.765,0,0,1,3.631,14.413ZM.83,19.05a13.941,13.941,0,0,0,3.007-.588.159.159,0,0,1,.211.08,1.758,1.758,0,0,0,1.69.8c.494-.037.981-.153,1.471-.235.032,0,.063-.013.109-.023a8.44,8.44,0,0,1,0,2.494c-.3-.063-.591-.133-.884-.181a3,3,0,0,0-1.423.011,1.687,1.687,0,0,0-.968.733c-.058.093-.111.093-.2.071-.678-.163-1.353-.341-2.037-.473-.422-.081-.857-.092-1.287-.133-.045-.546-.07-1.1-.07-1.652,0-.3.008-.594.021-.889Zm-.2,3.563a12.256,12.256,0,0,1,3,.583,9.678,9.678,0,0,0,0,3.09l-1.98.455A19.355,19.355,0,0,1,.627,22.613ZM2.039,27.7c.62-.158,1.236-.315,1.852-.467a.157.157,0,0,1,.129.058,1.8,1.8,0,0,0,1.773.833c.475-.041.944-.152,1.416-.232l.108-.024a8.434,8.434,0,0,1,0,2.5c-.252-.055-.49-.114-.731-.158a3.749,3.749,0,0,0-1.331-.074,1.728,1.728,0,0,0-1.221.8A.132.132,0,0,1,3.87,31,19.235,19.235,0,0,1,2.039,27.7Zm4.886,3.6a.82.82,0,0,1-.606.232,4.393,4.393,0,0,1-1.3-.2l-.011-.047a1.741,1.741,0,0,1,.308-.142A3.518,3.518,0,0,1,6.925,31.3Zm11.349,4.424a.854.854,0,0,1-.263.138,3.192,3.192,0,0,1-.7.039c-.311-.028-.619-.1-.928-.159a.731.731,0,0,1,.632-.253A3.628,3.628,0,0,1,18.274,35.721Zm-9.218.424a9.874,9.874,0,0,1,5.94.232,9.494,9.494,0,0,0-.083,2.436A19.266,19.266,0,0,1,9.056,36.145Zm18.68-.469c.642-.11,1.268-.376,1.93.013C29.019,35.925,27.97,36.054,27.736,35.676ZM39.1,22.561l.014-.047.193-.048c-.008.062-.017.124-.025.186Zm-.4-.981a7.447,7.447,0,0,1,0-2.487l.753.167c.008.232.013.465.013.7q0,.74-.054,1.47C39.18,21.482,38.944,21.53,38.708,21.58ZM30.127,3.3c-.031.24-.049.483-.072.72-.363-.071-.7-.148-1.047-.2a2.651,2.651,0,0,0-1.363.066,1.7,1.7,0,0,0-.875.705.146.146,0,0,1-.192.07C25.886,4.493,25.2,4.3,24.5,4.176a9.464,9.464,0,0,0-4.109.229c-.324.085-.647.173-.972.253a.173.173,0,0,1-.149-.036,1.8,1.8,0,0,0-1.793-.846c-.475.042-.944.153-1.416.234l-.1.021a8.683,8.683,0,0,1,0-2.5c.248.054.481.112.717.156a3.886,3.886,0,0,0,1.316.081A1.752,1.752,0,0,0,19.27.931c.012-.019.026-.037.04-.057.454.117.9.237,1.353.347a9.666,9.666,0,0,0,4.687,0l.034-.008A19.242,19.242,0,0,1,30.127,3.3Z" /></svg>') no-repeat center center;
  top: 5px;
  height: 31px;
}
#product .product_detail .detail .manufacturer_Area ul li.material5::after,
#product .product_detail .detail .use_Area ul li.material5::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34.6 41.6"><path fill="%23000" d="M34.4,10.2c-2.4-1.2-5.7,0-7.6,1.8c-1.8,1.6-2.6,4.1-2.1,6.5c0.4,1.5,1.3,2.8,2.2,4c0.2,0.3,0.5,0.7,0.7,1	c1.2,1.8,1.5,3.7,1,5.5c-0.7,2.2-2.6,4.2-5.2,5.3L19.9,3.2h-3.7V0H7.3v3.2H3.4L1.1,29L1,29.1l0.1,0L0,41.6h24.1l-0.7-6.3	c3-1.2,5.2-3.4,6-6c0.6-2.1,0.3-4.3-1.1-6.3c-0.2-0.4-0.5-0.7-0.7-1c-0.9-1.2-1.7-2.4-2-3.7c-0.4-2.1,0.3-4.3,1.9-5.7	C29.1,11.1,32,10,34,11c0.2,0.1,0.5,0,0.6-0.2C34.7,10.6,34.6,10.3,34.4,10.2z M22.7,36.8l-2.1,1.6l-2.2-1.6l3.9-3L22.7,36.8z	 M22.3,32.8l-4.5,3.4l-2.2-1.6l6.3-4.8L22.3,32.8z M21.8,28.7L14.9,34l-2.2-1.6l8.8-6.7L21.8,28.7z M21.4,24.7L12,31.8l-2.2-1.6	L21,21.7L21.4,24.7z M20.9,20.7l-11.8,9L7,28l13.6-10.4L20.9,20.7z M20.5,16.7L6.3,27.5l-2.2-1.6l16.1-12.2L20.5,16.7z M19.6,8.6	l-2.1,1.6L9.3,4h4.3L19.6,8.6L19.6,8.6z M19.1,4l0.4,3.3L15.1,4H19.1z M8.1,0.8h7.2v2.3H8.1V0.8z M4.2,4h3.7l8.9,6.7l-2.2,1.6	l-10.5-8L4.2,4z M4,5.4l9.9,7.5l-2.2,1.6l-8-6.1L4,5.4z M3.7,9.5l7.4,5.6l-2.2,1.6l-5.5-4.2L3.7,9.5z M3.3,13.6l4.8,3.7L6,18.9	l-3-2.2L3.3,13.6z M3,17.7l2.3,1.8l-2.4,1.8l0.3,0.3l-0.3-0.3l-0.2,0.2L3,17.7z M2.5,22.6L3.4,22l0,0l2.9-2.2l2.9-2.2l2.9-2.2	l-0.3-0.3l0.3,0.3l2.9-2.2l0,0l2.9-2.2l2-1.5l0.3,3L3.4,25.3l-1-0.8L2.5,22.6z M0.9,40.8l0.3-3.4l4.6,3.4H0.9z M7.2,40.8l-5.9-4.4	l0.2-2.7l10,7.1H7.2z M13,40.8L1.6,32.6l0.3-2.9l14.7,11H13z M18,40.8l-16-12l0.3-3.3l20.1,15.2H18z M21.3,38.9l1.5-1.1l0.3,2.5	L21.3,38.9z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34.6 41.6"><path fill="%23000" d="M34.4,10.2c-2.4-1.2-5.7,0-7.6,1.8c-1.8,1.6-2.6,4.1-2.1,6.5c0.4,1.5,1.3,2.8,2.2,4c0.2,0.3,0.5,0.7,0.7,1	c1.2,1.8,1.5,3.7,1,5.5c-0.7,2.2-2.6,4.2-5.2,5.3L19.9,3.2h-3.7V0H7.3v3.2H3.4L1.1,29L1,29.1l0.1,0L0,41.6h24.1l-0.7-6.3	c3-1.2,5.2-3.4,6-6c0.6-2.1,0.3-4.3-1.1-6.3c-0.2-0.4-0.5-0.7-0.7-1c-0.9-1.2-1.7-2.4-2-3.7c-0.4-2.1,0.3-4.3,1.9-5.7	C29.1,11.1,32,10,34,11c0.2,0.1,0.5,0,0.6-0.2C34.7,10.6,34.6,10.3,34.4,10.2z M22.7,36.8l-2.1,1.6l-2.2-1.6l3.9-3L22.7,36.8z	 M22.3,32.8l-4.5,3.4l-2.2-1.6l6.3-4.8L22.3,32.8z M21.8,28.7L14.9,34l-2.2-1.6l8.8-6.7L21.8,28.7z M21.4,24.7L12,31.8l-2.2-1.6	L21,21.7L21.4,24.7z M20.9,20.7l-11.8,9L7,28l13.6-10.4L20.9,20.7z M20.5,16.7L6.3,27.5l-2.2-1.6l16.1-12.2L20.5,16.7z M19.6,8.6	l-2.1,1.6L9.3,4h4.3L19.6,8.6L19.6,8.6z M19.1,4l0.4,3.3L15.1,4H19.1z M8.1,0.8h7.2v2.3H8.1V0.8z M4.2,4h3.7l8.9,6.7l-2.2,1.6	l-10.5-8L4.2,4z M4,5.4l9.9,7.5l-2.2,1.6l-8-6.1L4,5.4z M3.7,9.5l7.4,5.6l-2.2,1.6l-5.5-4.2L3.7,9.5z M3.3,13.6l4.8,3.7L6,18.9	l-3-2.2L3.3,13.6z M3,17.7l2.3,1.8l-2.4,1.8l0.3,0.3l-0.3-0.3l-0.2,0.2L3,17.7z M2.5,22.6L3.4,22l0,0l2.9-2.2l2.9-2.2l2.9-2.2	l-0.3-0.3l0.3,0.3l2.9-2.2l0,0l2.9-2.2l2-1.5l0.3,3L3.4,25.3l-1-0.8L2.5,22.6z M0.9,40.8l0.3-3.4l4.6,3.4H0.9z M7.2,40.8l-5.9-4.4	l0.2-2.7l10,7.1H7.2z M13,40.8L1.6,32.6l0.3-2.9l14.7,11H13z M18,40.8l-16-12l0.3-3.3l20.1,15.2H18z M21.3,38.9l1.5-1.1l0.3,2.5	L21.3,38.9z" /></svg>') no-repeat center center;
  top: 5px;
  height: 32px;
}
#product .product_detail .detail .manufacturer_Area ul li.material6::after,
#product .product_detail .detail .use_Area ul li.material6::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.533 25.936"><path fill="%23000" d="M24.044,2.609h7.531c.099,0,.18.081.18.18v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M27.719,6.502v.285c0,.099.08.179.179.179h10.101c.099,0,.179-.08.179-.179v-.465h-10.28c-.099,0-.179.08-.179.179Z"/><rect class="cls-1" x="42.828" y="6.323" width="3.444" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M16.409,6.645c0-1.572-1.17-2.942-2.721-3.188-.018-.003-.04-.003-.065.019-.032.027-.051.072-.051.121v.285c0,.125.141.231.274.266,1.13.301,1.919,1.328,1.919,2.497,0,1.425-1.159,2.584-2.584,2.584-1.169,0-2.196-.789-2.497-1.919-.035-.133-.14-.273-.266-.273h-.285c-.049,0-.094.019-.121.051-.022.026-.021.048-.019.065.245,1.551,1.616,2.721,3.187,2.721,1.78,0,3.228-1.448,3.228-3.228Z"/><path class="cls-1" d="M49.888,12.646h-3.261l.93-.703c1.685-1.274,2.652-3.205,2.652-5.298,0-3.664-2.981-6.645-6.645-6.645H13.181c-3.664,0-6.645,2.981-6.645,6.645,0,2.093.967,4.025,2.652,5.298l.93.703h-3.474c-3.664,0-6.645,2.981-6.645,6.645s2.981,6.645,6.645,6.645h12.071v-.043l.532.031c.085.006.17.012.257.012h30.384c3.664,0,6.645-2.981,6.645-6.645s-2.981-6.645-6.645-6.645ZM43.565.644c1.339,0,2.609.438,3.674,1.266l.9.7h-11.374c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.939,2.076.939,3.211,0,1.193-.351,2.346-1.016,3.335l-.116.173h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.32l.929-.703c.402-.304.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.179-.08.179-.179v-.285c0-.099-.081-.179-.179-.179h-12.149l.281-.565c.463-.93.697-1.92.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321ZM7.18,6.645c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001-6.001-2.692-6.001-6.001ZM16.441,13.29l-.93.703c-.905.684-1.624,1.588-2.08,2.612l-.358.805-.357-.805c-.455-1.024-1.174-1.928-2.08-2.612l-.93-.703h6.734ZM.644,19.291c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001S.644,22.601.644,19.291ZM9.708,25.293l.93-.703c.906-.684,1.625-1.588,2.08-2.612l.357-.805.358.805c.455,1.025,1.175,1.928,2.08,2.612l.93.703h-6.734ZM13.503,19.291c0-3.309,2.692-6.001,6.001-6.001s6.001,2.692,6.001,6.001-2.692,6.001-6.001,6.001-6.001-2.692-6.001-6.001ZM54.758,22.8h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.321l.93-.703c.402-.303.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.18-.08.18-.179v-.285c0-.099-.081-.179-.18-.179h-12.149l.281-.565c.462-.93.697-1.921.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321c1.338,0,2.608.438,3.674,1.265l.901.7h-11.375c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.94,2.075.94,3.211,0,1.192-.351,2.346-1.016,3.335l-.116.173Z"/><path class="cls-1" d="M30.367,15.255h7.532c.099,0,.179.08.179.179v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.18-.081-.18-.18v-.285c0-.099.08-.179.179-.179Z"/><rect class="cls-1" x="34.043" y="18.97" width="10.46" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M49.33,18.97h3.086c.099,0,.18.081.18.18v.284c0,.099-.081.18-.18.18h-3.086c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M22.553,19.682h-.285c-.125,0-.231.141-.266.273-.301,1.13-1.328,1.92-2.497,1.92-1.425,0-2.584-1.159-2.584-2.584,0-1.169.789-2.196,1.919-2.497.132-.035.273-.141.273-.266v-.285c0-.048-.019-.094-.051-.121-.019-.016-.036-.02-.051-.02-.005,0-.01,0-.015.001-1.551.245-2.721,1.616-2.721,3.188,0,1.78,1.448,3.228,3.228,3.228,1.572,0,2.942-1.17,3.188-2.721.003-.017.003-.039-.019-.065-.027-.032-.072-.051-.121-.051Z"/><path class="cls-1" d="M6.645,16.064c-1.571,0-2.942,1.17-3.188,2.721-.003.016-.003.039.019.065.027.032.072.051.12.051h.285c.125,0,.23-.141.266-.273.301-1.13,1.328-1.919,2.497-1.919,1.425,0,2.584,1.159,2.584,2.584,0,1.169-.789,2.196-1.919,2.497-.132.035-.273.141-.273.266v.285c0,.048.019.093.051.121.026.022.048.022.065.019,1.551-.246,2.721-1.616,2.721-3.188,0-1.78-1.448-3.228-3.228-3.228Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.533 25.936"><path fill="%23000" d="M24.044,2.609h7.531c.099,0,.18.081.18.18v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M27.719,6.502v.285c0,.099.08.179.179.179h10.101c.099,0,.179-.08.179-.179v-.465h-10.28c-.099,0-.179.08-.179.179Z"/><rect class="cls-1" x="42.828" y="6.323" width="3.444" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M16.409,6.645c0-1.572-1.17-2.942-2.721-3.188-.018-.003-.04-.003-.065.019-.032.027-.051.072-.051.121v.285c0,.125.141.231.274.266,1.13.301,1.919,1.328,1.919,2.497,0,1.425-1.159,2.584-2.584,2.584-1.169,0-2.196-.789-2.497-1.919-.035-.133-.14-.273-.266-.273h-.285c-.049,0-.094.019-.121.051-.022.026-.021.048-.019.065.245,1.551,1.616,2.721,3.187,2.721,1.78,0,3.228-1.448,3.228-3.228Z"/><path class="cls-1" d="M49.888,12.646h-3.261l.93-.703c1.685-1.274,2.652-3.205,2.652-5.298,0-3.664-2.981-6.645-6.645-6.645H13.181c-3.664,0-6.645,2.981-6.645,6.645,0,2.093.967,4.025,2.652,5.298l.93.703h-3.474c-3.664,0-6.645,2.981-6.645,6.645s2.981,6.645,6.645,6.645h12.071v-.043l.532.031c.085.006.17.012.257.012h30.384c3.664,0,6.645-2.981,6.645-6.645s-2.981-6.645-6.645-6.645ZM43.565.644c1.339,0,2.609.438,3.674,1.266l.9.7h-11.374c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.939,2.076.939,3.211,0,1.193-.351,2.346-1.016,3.335l-.116.173h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.32l.929-.703c.402-.304.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.179-.08.179-.179v-.285c0-.099-.081-.179-.179-.179h-12.149l.281-.565c.463-.93.697-1.92.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321ZM7.18,6.645c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001-6.001-2.692-6.001-6.001ZM16.441,13.29l-.93.703c-.905.684-1.624,1.588-2.08,2.612l-.358.805-.357-.805c-.455-1.024-1.174-1.928-2.08-2.612l-.93-.703h6.734ZM.644,19.291c0-3.309,2.692-6.001,6.001-6.001s6.002,2.692,6.002,6.001-2.692,6.001-6.002,6.001S.644,22.601.644,19.291ZM9.708,25.293l.93-.703c.906-.684,1.625-1.588,2.08-2.612l.357-.805.358.805c.455,1.025,1.175,1.928,2.08,2.612l.93.703h-6.734ZM13.503,19.291c0-3.309,2.692-6.001,6.001-6.001s6.001,2.692,6.001,6.001-2.692,6.001-6.001,6.001-6.001-2.692-6.001-6.001ZM54.758,22.8h-10.836c-.099,0-.179.08-.179.179v.285c0,.099.08.179.179.179h10.452l-.978.708c-1.032.747-2.245,1.142-3.508,1.142h-27.321l.93-.703c.402-.303.763-.643,1.073-1.008l.117-.138h12.634c.099,0,.18-.08.18-.179v-.285c0-.099-.081-.179-.18-.179h-12.149l.281-.565c.462-.93.697-1.921.697-2.943,0-2.093-.967-4.025-2.652-5.298l-.93-.703h27.321c1.338,0,2.608.438,3.674,1.265l.901.7h-11.375c-.099,0-.18.08-.18.179v.285c0,.099.081.179.18.179h11.748l.115.181c.615.965.94,2.075.94,3.211,0,1.192-.351,2.346-1.016,3.335l-.116.173Z"/><path class="cls-1" d="M30.367,15.255h7.532c.099,0,.179.08.179.179v.285c0,.099-.08.179-.179.179h-7.531c-.099,0-.18-.081-.18-.18v-.285c0-.099.08-.179.179-.179Z"/><rect class="cls-1" x="34.043" y="18.97" width="10.46" height=".644" rx=".179" ry=".179"/><path class="cls-1" d="M49.33,18.97h3.086c.099,0,.18.081.18.18v.284c0,.099-.081.18-.18.18h-3.086c-.099,0-.179-.08-.179-.179v-.285c0-.099.08-.179.179-.179Z"/><path class="cls-1" d="M22.553,19.682h-.285c-.125,0-.231.141-.266.273-.301,1.13-1.328,1.92-2.497,1.92-1.425,0-2.584-1.159-2.584-2.584,0-1.169.789-2.196,1.919-2.497.132-.035.273-.141.273-.266v-.285c0-.048-.019-.094-.051-.121-.019-.016-.036-.02-.051-.02-.005,0-.01,0-.015.001-1.551.245-2.721,1.616-2.721,3.188,0,1.78,1.448,3.228,3.228,3.228,1.572,0,2.942-1.17,3.188-2.721.003-.017.003-.039-.019-.065-.027-.032-.072-.051-.121-.051Z"/><path class="cls-1" d="M6.645,16.064c-1.571,0-2.942,1.17-3.188,2.721-.003.016-.003.039.019.065.027.032.072.051.12.051h.285c.125,0,.23-.141.266-.273.301-1.13,1.328-1.919,2.497-1.919,1.425,0,2.584,1.159,2.584,2.584,0,1.169-.789,2.196-1.919,2.497-.132.035-.273.141-.273.266v.285c0,.048.019.093.051.121.026.022.048.022.065.019,1.551-.246,2.721-1.616,2.721-3.188,0-1.78-1.448-3.228-3.228-3.228Z" /></svg>') no-repeat center center;
  top: 12px;
  height: 23px;
}
#product .product_detail .detail .manufacturer_Area ul li.material7::after,
#product .product_detail .detail .use_Area ul li.material7::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36.652 36.791"><path fill="%23000" d="M36.05,3.095H13.168C12.875,1.231,10.084-.123,6.784.009,4.13.115,1.797,1.006.694,2.334.16,2.978-.073,3.702.02,4.432v27.11c-.027.211-.026.424.003.638,0,.003,0,.006,0,.009,0,.007.001.013.002.02.384,2.636,4.252,4.583,8.927,4.583.226,0,.453-.005.681-.014h26.416c.333,0,.603-.27.603-.602V3.698c0-.333-.27-.602-.603-.602ZM1.621,3.104c.877-1.057,2.923-1.8,5.211-1.891,2.802-.115,4.941.979,5.142,2.042v25.803c-1.174-.878-3.077-1.403-5.189-1.319-2.285.092-4.331.765-5.56,1.798V4.391c0-.029-.002-.058-.006-.087-.059-.404.077-.807.403-1.2ZM35.447,35.573H9.61c-4.223.169-8.042-1.432-8.386-3.502v-.43c.045-.272.176-.542.396-.807.877-1.057,2.923-1.8,5.211-1.891,2.847-.114,4.991,1.005,5.148,2.08.028.198-.04.393-.21.598-.524.631-1.771,1.076-3.177,1.132-1.771.068-2.997-.631-3.071-1.146-.003-.023-.014-.092.086-.213.244-.294.919-.608,1.876-.646,1.083-.045,1.719.39,1.742.548.048.33.355.558.683.509.33-.048.558-.354.51-.683-.14-.962-1.422-1.64-2.982-1.578-1.203.048-2.232.452-2.754,1.081-.29.349-.411.749-.352,1.156.194,1.331,2.053,2.262,4.312,2.176,1.785-.072,3.301-.657,4.056-1.566.376-.453.542-.967.481-1.488V4.3h22.269v31.273Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36.652 36.791"><path fill="%23000" d="M36.05,3.095H13.168C12.875,1.231,10.084-.123,6.784.009,4.13.115,1.797,1.006.694,2.334.16,2.978-.073,3.702.02,4.432v27.11c-.027.211-.026.424.003.638,0,.003,0,.006,0,.009,0,.007.001.013.002.02.384,2.636,4.252,4.583,8.927,4.583.226,0,.453-.005.681-.014h26.416c.333,0,.603-.27.603-.602V3.698c0-.333-.27-.602-.603-.602ZM1.621,3.104c.877-1.057,2.923-1.8,5.211-1.891,2.802-.115,4.941.979,5.142,2.042v25.803c-1.174-.878-3.077-1.403-5.189-1.319-2.285.092-4.331.765-5.56,1.798V4.391c0-.029-.002-.058-.006-.087-.059-.404.077-.807.403-1.2ZM35.447,35.573H9.61c-4.223.169-8.042-1.432-8.386-3.502v-.43c.045-.272.176-.542.396-.807.877-1.057,2.923-1.8,5.211-1.891,2.847-.114,4.991,1.005,5.148,2.08.028.198-.04.393-.21.598-.524.631-1.771,1.076-3.177,1.132-1.771.068-2.997-.631-3.071-1.146-.003-.023-.014-.092.086-.213.244-.294.919-.608,1.876-.646,1.083-.045,1.719.39,1.742.548.048.33.355.558.683.509.33-.048.558-.354.51-.683-.14-.962-1.422-1.64-2.982-1.578-1.203.048-2.232.452-2.754,1.081-.29.349-.411.749-.352,1.156.194,1.331,2.053,2.262,4.312,2.176,1.785-.072,3.301-.657,4.056-1.566.376-.453.542-.967.481-1.488V4.3h22.269v31.273Z" /></svg>') no-repeat center center;
  top: 10px;
  height: 28px;
}
#product .product_detail .detail .manufacturer_Area ul li.material8::after,
#product .product_detail .detail .use_Area ul li.material8::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 40.852"><path fill="%23000" d="M17.749,28.332c-.956-1.82-2.749-2.963-4.593-3.532-1.409-.434-2.874-.58-4.366-.58-2.905,0-5.91.552-8.791.595,2.109,3.815,3.35,8.457,6.525,11.424,1.359,1.271,3.159,2.234,5.129,2.234.072,0,.145-.001.218-.004,2.276-.083,4.401-1.53,6.49-2.577l2.622,1.52.377-.648-2.623-1.521c-.129-2.333.07-4.896-.989-6.912ZM13.825,32.396l-3.922-2.273-.626-3.7-.74.125.522,3.086-4.788-2.776-.377.648,4.789,2.776-2.938,1.08.26.704,3.521-1.295,3.923,2.274-4.403,1.699.27.699,4.965-1.916,3.312,1.92c-.3.156-.599.312-.901.475-1.584.855-3.221,1.739-4.848,1.798-.064.002-.127.003-.191.003-1.575,0-3.214-.722-4.617-2.032-2.062-1.927-3.315-4.71-4.526-7.401-.413-.918-.836-1.858-1.293-2.77,1.019-.057,2.045-.156,3.046-.254,1.498-.146,3.046-.297,4.526-.297,1.597,0,2.952.179,4.145.547,1.109.342,3.122,1.207,4.15,3.164.757,1.441.804,3.301.849,5.101.008.342.022.679.035,1.017l-3.311-1.919-.804-5.261-.742.113.712,4.664Z	M35.209,24.22c-1.492,0-2.957.146-4.366.58-1.844.569-3.637,1.712-4.593,3.532-1.06,2.016-.86,4.579-.989,6.912l-2.623,1.521.377.648,2.622-1.52c2.089,1.047,4.214,2.494,6.49,2.577.073.003.146.004.218.004,1.97,0,3.77-.964,5.129-2.234,3.175-2.967,4.416-7.609,6.525-11.424-2.88-.043-5.885-.595-8.791-.595ZM36.963,35.692c-1.402,1.311-3.042,2.032-4.617,2.032-.063,0-.127-.001-.191-.003-1.626-.059-3.264-.943-4.848-1.798-.302-.163-.601-.319-.901-.475l3.312-1.92,4.965,1.916.27-.699-4.403-1.699,3.923-2.274,3.521,1.295.26-.704-2.938-1.08,4.789-2.776-.377-.648-4.788,2.776.522-3.086-.74-.125-.626,3.7-3.922,2.273.712-4.664-.742-.113-.804,5.261-3.311,1.919c.013-.338.027-.674.035-1.017.045-1.799.092-3.66.849-5.101,1.028-1.957,3.041-2.822,4.15-3.164,1.192-.368,2.548-.547,4.145-.547,1.48,0,3.028.151,4.526.297,1.001.098,2.028.197,3.046.254-.457.912-.88,1.852-1.293,2.77-1.211,2.691-2.464,5.473-4.526,7.401Z M29.107,20.767c1.329-2.111,1.438-4.688.913-6.969-1.183-5.137-5.3-9.264-8.02-13.799-2.72,4.535-6.837,8.661-8.02,13.799-.525,2.281-.416,4.858.912,6.969,1.488,2.365,4.347,3.718,6.733,5.294v14.79h.75v-14.79c2.386-1.576,5.245-2.93,6.732-5.294ZM23.585,24.413c-.401.246-.808.503-1.21.76v-4.922l5.062-4.069-.471-.585-4.592,3.69v-5.705l3.53-2.932-.479-.577-3.052,2.535v-6.885h-.75v6.885l-3.052-2.535-.479.577,3.53,2.932v5.705l-4.592-3.69-.471.585,5.062,4.069v4.921c-.402-.257-.81-.514-1.21-.76-1.876-1.151-3.816-2.342-4.888-4.044-1.458-2.319-1.137-5.006-.816-6.401.775-3.367,2.942-6.388,5.039-9.309.758-1.056,1.536-2.14,2.25-3.243.715,1.103,1.493,2.187,2.25,3.243,2.096,2.921,4.263,5.942,5.039,9.309.321,1.396.643,4.083-.816,6.401-1.071,1.702-3.011,2.893-4.887,4.045Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 40.852"><path fill="%23000" d="M17.749,28.332c-.956-1.82-2.749-2.963-4.593-3.532-1.409-.434-2.874-.58-4.366-.58-2.905,0-5.91.552-8.791.595,2.109,3.815,3.35,8.457,6.525,11.424,1.359,1.271,3.159,2.234,5.129,2.234.072,0,.145-.001.218-.004,2.276-.083,4.401-1.53,6.49-2.577l2.622,1.52.377-.648-2.623-1.521c-.129-2.333.07-4.896-.989-6.912ZM13.825,32.396l-3.922-2.273-.626-3.7-.74.125.522,3.086-4.788-2.776-.377.648,4.789,2.776-2.938,1.08.26.704,3.521-1.295,3.923,2.274-4.403,1.699.27.699,4.965-1.916,3.312,1.92c-.3.156-.599.312-.901.475-1.584.855-3.221,1.739-4.848,1.798-.064.002-.127.003-.191.003-1.575,0-3.214-.722-4.617-2.032-2.062-1.927-3.315-4.71-4.526-7.401-.413-.918-.836-1.858-1.293-2.77,1.019-.057,2.045-.156,3.046-.254,1.498-.146,3.046-.297,4.526-.297,1.597,0,2.952.179,4.145.547,1.109.342,3.122,1.207,4.15,3.164.757,1.441.804,3.301.849,5.101.008.342.022.679.035,1.017l-3.311-1.919-.804-5.261-.742.113.712,4.664Z	M35.209,24.22c-1.492,0-2.957.146-4.366.58-1.844.569-3.637,1.712-4.593,3.532-1.06,2.016-.86,4.579-.989,6.912l-2.623,1.521.377.648,2.622-1.52c2.089,1.047,4.214,2.494,6.49,2.577.073.003.146.004.218.004,1.97,0,3.77-.964,5.129-2.234,3.175-2.967,4.416-7.609,6.525-11.424-2.88-.043-5.885-.595-8.791-.595ZM36.963,35.692c-1.402,1.311-3.042,2.032-4.617,2.032-.063,0-.127-.001-.191-.003-1.626-.059-3.264-.943-4.848-1.798-.302-.163-.601-.319-.901-.475l3.312-1.92,4.965,1.916.27-.699-4.403-1.699,3.923-2.274,3.521,1.295.26-.704-2.938-1.08,4.789-2.776-.377-.648-4.788,2.776.522-3.086-.74-.125-.626,3.7-3.922,2.273.712-4.664-.742-.113-.804,5.261-3.311,1.919c.013-.338.027-.674.035-1.017.045-1.799.092-3.66.849-5.101,1.028-1.957,3.041-2.822,4.15-3.164,1.192-.368,2.548-.547,4.145-.547,1.48,0,3.028.151,4.526.297,1.001.098,2.028.197,3.046.254-.457.912-.88,1.852-1.293,2.77-1.211,2.691-2.464,5.473-4.526,7.401Z M29.107,20.767c1.329-2.111,1.438-4.688.913-6.969-1.183-5.137-5.3-9.264-8.02-13.799-2.72,4.535-6.837,8.661-8.02,13.799-.525,2.281-.416,4.858.912,6.969,1.488,2.365,4.347,3.718,6.733,5.294v14.79h.75v-14.79c2.386-1.576,5.245-2.93,6.732-5.294ZM23.585,24.413c-.401.246-.808.503-1.21.76v-4.922l5.062-4.069-.471-.585-4.592,3.69v-5.705l3.53-2.932-.479-.577-3.052,2.535v-6.885h-.75v6.885l-3.052-2.535-.479.577,3.53,2.932v5.705l-4.592-3.69-.471.585,5.062,4.069v4.921c-.402-.257-.81-.514-1.21-.76-1.876-1.151-3.816-2.342-4.888-4.044-1.458-2.319-1.137-5.006-.816-6.401.775-3.367,2.942-6.388,5.039-9.309.758-1.056,1.536-2.14,2.25-3.243.715,1.103,1.493,2.187,2.25,3.243,2.096,2.921,4.263,5.942,5.039,9.309.321,1.396.643,4.083-.816,6.401-1.071,1.702-3.011,2.893-4.887,4.045Z" /></svg>') no-repeat center center;
  top: 5px;
  height: 34px;
}
#product .product_detail .detail .manufacturer_Area ul li.material9::after,
#product .product_detail .detail .use_Area ul li.material9::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37.75 41.598"><path fill="%23000" d="M23.87,23.739c.845.148,1.695.273,2.522.273,2.794,0,5.33-1.428,6.543-8.243,0,0-1.194-.212-2.885-.212-3.961,0-10.656,1.163-11.175,8.937.001-.001.857-.924,3.16-.924.532,0,1.141.049,1.835.17ZM30.049,16.306c.813,0,1.51.052,2,.103-1.239,6.018-3.545,6.853-5.657,6.853-.787,0-1.615-.126-2.393-.261-.69-.12-1.351-.182-1.964-.182-.939,0-1.674.141-2.233.325.655-3.386,3.081-6.838,10.248-6.838Z"/><polygon points="18.587 35.047 19.337 35.047 19.337 24.493 18.875 24.493 18.587 24.493 18.587 35.047"/><path d="M11.358,24.012c.827,0,1.677-.125,2.522-.273.694-.121,1.303-.17,1.835-.17,2.303,0,3.159.923,3.16.924-.519-7.774-7.213-8.937-11.175-8.937-1.691,0-2.885.212-2.885.212,1.213,6.816,3.749,8.243,6.543,8.243ZM7.7,16.306c7.167,0,9.592,3.452,10.248,6.838-.56-.184-1.294-.325-2.233-.325-.613,0-1.274.061-1.964.182-.778.136-1.606.261-2.393.261-2.112,0-4.418-.835-5.657-6.853.489-.051,1.186-.102,1.999-.102Z"/><path d="M18.875,2.674c4.237,0,8.36,1.493,11.608,4.204l.48-.576c-3.383-2.823-7.676-4.378-12.089-4.378C8.468,1.924,0,10.392,0,20.799c0,2.274.4,4.498,1.189,6.609l.703-.263c-.758-2.027-1.143-4.162-1.143-6.346C.75,10.805,8.881,2.674,18.875,2.674Z"/><polygon points="24.264 7.803 24.348 8.548 32.01 7.676 31.28 0 30.534 .071 31.193 7.014 24.264 7.803"/><path d="M36.561,14.19l-.703.263c.758,2.026,1.143,4.162,1.143,6.346,0,9.994-8.131,18.125-18.125,18.125-4.237,0-8.36-1.493-11.608-4.205l-.48.576c3.383,2.823,7.676,4.378,12.089,4.378,10.407,0,18.875-8.467,18.875-18.875,0-2.274-.4-4.498-1.189-6.609Z"/><polygon points="13.485 33.795 13.401 33.05 5.74 33.922 6.47 41.598 7.216 41.527 6.557 34.584 13.485 33.795" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37.75 41.598"><path fill="%23000" d="M23.87,23.739c.845.148,1.695.273,2.522.273,2.794,0,5.33-1.428,6.543-8.243,0,0-1.194-.212-2.885-.212-3.961,0-10.656,1.163-11.175,8.937.001-.001.857-.924,3.16-.924.532,0,1.141.049,1.835.17ZM30.049,16.306c.813,0,1.51.052,2,.103-1.239,6.018-3.545,6.853-5.657,6.853-.787,0-1.615-.126-2.393-.261-.69-.12-1.351-.182-1.964-.182-.939,0-1.674.141-2.233.325.655-3.386,3.081-6.838,10.248-6.838Z"/><polygon points="18.587 35.047 19.337 35.047 19.337 24.493 18.875 24.493 18.587 24.493 18.587 35.047"/><path d="M11.358,24.012c.827,0,1.677-.125,2.522-.273.694-.121,1.303-.17,1.835-.17,2.303,0,3.159.923,3.16.924-.519-7.774-7.213-8.937-11.175-8.937-1.691,0-2.885.212-2.885.212,1.213,6.816,3.749,8.243,6.543,8.243ZM7.7,16.306c7.167,0,9.592,3.452,10.248,6.838-.56-.184-1.294-.325-2.233-.325-.613,0-1.274.061-1.964.182-.778.136-1.606.261-2.393.261-2.112,0-4.418-.835-5.657-6.853.489-.051,1.186-.102,1.999-.102Z"/><path d="M18.875,2.674c4.237,0,8.36,1.493,11.608,4.204l.48-.576c-3.383-2.823-7.676-4.378-12.089-4.378C8.468,1.924,0,10.392,0,20.799c0,2.274.4,4.498,1.189,6.609l.703-.263c-.758-2.027-1.143-4.162-1.143-6.346C.75,10.805,8.881,2.674,18.875,2.674Z"/><polygon points="24.264 7.803 24.348 8.548 32.01 7.676 31.28 0 30.534 .071 31.193 7.014 24.264 7.803"/><path d="M36.561,14.19l-.703.263c.758,2.026,1.143,4.162,1.143,6.346,0,9.994-8.131,18.125-18.125,18.125-4.237,0-8.36-1.493-11.608-4.205l-.48.576c3.383,2.823,7.676,4.378,12.089,4.378,10.407,0,18.875-8.467,18.875-18.875,0-2.274-.4-4.498-1.189-6.609Z"/><polygon points="13.485 33.795 13.401 33.05 5.74 33.922 6.47 41.598 7.216 41.527 6.557 34.584 13.485 33.795" /></svg>') no-repeat center center;
  top: 5px;
  height: 34px;
}
#product .product_detail .detail .manufacturer_Area ul li.use0::after,
#product .product_detail .detail .use_Area ul li.use0::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44.4 40.1"><path fill="%23000" d="M30.6,0L14,0L0,7.1l4.9,11.4l4.5-2.7v24.3h25.5V15.7l4.5,2.7l4.9-11.4L30.6,0z M27.7,0.8c0,0.9-0.3,3.3-1.8,4.9	c-0.9,0.9-2.2,1.4-3.7,1.4c-1.5,0-2.8-0.5-3.7-1.4c-1.5-1.5-1.8-3.9-1.8-4.9H27.7z M39.1,17.2l-5-3v25H10.3v-25l-5,3L1.1,7.5l13-6.6	h1.7c0,1,0.3,3.7,2.1,5.5C19,7.4,20.4,8,22.2,8s3.2-0.6,4.3-1.7c1.7-1.8,2-4.4,2.1-5.5h1.7l13,6.6L39.1,17.2z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44.4 40.1"><path fill="%23000" d="M30.6,0L14,0L0,7.1l4.9,11.4l4.5-2.7v24.3h25.5V15.7l4.5,2.7l4.9-11.4L30.6,0z M27.7,0.8c0,0.9-0.3,3.3-1.8,4.9	c-0.9,0.9-2.2,1.4-3.7,1.4c-1.5,0-2.8-0.5-3.7-1.4c-1.5-1.5-1.8-3.9-1.8-4.9H27.7z M39.1,17.2l-5-3v25H10.3v-25l-5,3L1.1,7.5l13-6.6	h1.7c0,1,0.3,3.7,2.1,5.5C19,7.4,20.4,8,22.2,8s3.2-0.6,4.3-1.7c1.7-1.8,2-4.4,2.1-5.5h1.7l13,6.6L39.1,17.2z" /></svg>') no-repeat center center;
  top: 5px;
}
#product .product_detail .detail .manufacturer_Area ul li.use1::after,
#product .product_detail .detail .use_Area ul li.use1::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42.698 43.318"><path fill="%23000" d="M32.588,6.769V0H12.448v6.751L0,43.318h42.698L32.588,6.769ZM13.448,1h18.14v5.335H13.448V1ZM13.307,7.335h18.4l9.677,34.983H1.396L13.307,7.335Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42.698 43.318"><path fill="%23000" d="M32.588,6.769V0H12.448v6.751L0,43.318h42.698L32.588,6.769ZM13.448,1h18.14v5.335H13.448V1ZM13.307,7.335h18.4l9.677,34.983H1.396L13.307,7.335Z" /></svg>') no-repeat center center;
  top: 5px;
}
#product .product_detail .detail .manufacturer_Area ul li.use2::after,
#product .product_detail .detail .use_Area ul li.use2::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27.3 52.2"><path fill="%23000" d="M27.3,52.1L25.7,5l-0.8,0l1.6,46.3l-8,0l-4.5-35.2h1.5V4.7h10.3V0H1.5v4.7h9.2v11.5H13L9.2,51.3l-8.4,0L2.4,5L1.5,5L0,52.1	l10,0.1l3.5-32.8l4.2,32.8L27.3,52.1z M2.4,3.8v-3h22.5v3h-9.5h-4.7H2.4z M11.6,4.7h3v10.6h-3V4.7z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27.3 52.2"><path fill="%23000" d="M27.3,52.1L25.7,5l-0.8,0l1.6,46.3l-8,0l-4.5-35.2h1.5V4.7h10.3V0H1.5v4.7h9.2v11.5H13L9.2,51.3l-8.4,0L2.4,5L1.5,5L0,52.1	l10,0.1l3.5-32.8l4.2,32.8L27.3,52.1z M2.4,3.8v-3h22.5v3h-9.5h-4.7H2.4z M11.6,4.7h3v10.6h-3V4.7z" /></svg>') no-repeat center center;
  height: 38px;
  top: 3px;
}
#product .product_detail .detail .manufacturer_Area ul li.use3::after,
#product .product_detail .detail .use_Area ul li.use3::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42 49.8"><path fill="%23000" d="M42,43.8L38,10.1l-9.1-5.8c0,0,0-0.1,0-0.1l-2-4C26.8,0.1,26.7,0,26.5,0c0,0,0,0,0,0v0H15.4v0c0,0,0,0,0,0	c-0.1,0-0.3,0.1-0.3,0.2l-2,4c0,0,0,0.1,0,0.1l-9.1,5.8L0,43.8l7.1,1l-0.1,5h11.4V49H7.9l0.6-26.2l-0.8,0L7.1,43.9l-6.1-0.9	l3.8-32.4L13.6,5l7,4.7l0.5,40.1h13.9l-0.1-5L42,43.8z M28,4.3l-6.2,4.2l0.6-1.8l4.1-5.4L28,4.3z M14,4.3L14,4.3l1.5-3.1l4.1,5.4	l0.6,1.8L14,4.3z M20.3,6.2l-4-5.3h9.3l-4,5.3c0,0-0.1,0.1-0.1,0.1L21,8.1l-0.6-1.8C20.4,6.2,20.3,6.2,20.3,6.2z M34.1,49H21.9	L21.4,9.7l7-4.7l8.8,5.6L41,43.1l-6.1,0.9l-0.6-21.2l-0.8,0L34.1,49z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42 49.8"><path fill="%23000" d="M42,43.8L38,10.1l-9.1-5.8c0,0,0-0.1,0-0.1l-2-4C26.8,0.1,26.7,0,26.5,0c0,0,0,0,0,0v0H15.4v0c0,0,0,0,0,0	c-0.1,0-0.3,0.1-0.3,0.2l-2,4c0,0,0,0.1,0,0.1l-9.1,5.8L0,43.8l7.1,1l-0.1,5h11.4V49H7.9l0.6-26.2l-0.8,0L7.1,43.9l-6.1-0.9	l3.8-32.4L13.6,5l7,4.7l0.5,40.1h13.9l-0.1-5L42,43.8z M28,4.3l-6.2,4.2l0.6-1.8l4.1-5.4L28,4.3z M14,4.3L14,4.3l1.5-3.1l4.1,5.4	l0.6,1.8L14,4.3z M20.3,6.2l-4-5.3h9.3l-4,5.3c0,0-0.1,0.1-0.1,0.1L21,8.1l-0.6-1.8C20.4,6.2,20.3,6.2,20.3,6.2z M34.1,49H21.9	L21.4,9.7l7-4.7l8.8,5.6L41,43.1l-6.1,0.9l-0.6-21.2l-0.8,0L34.1,49z" /></svg>') no-repeat center center;
  height: 36px;
  top: 3px;
}
#product .product_detail .detail .manufacturer_Area ul li.use4::after,
#product .product_detail .detail .use_Area ul li.use4::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 31.3 58.9"><path fill="%23000" d="M31.3,35l-0.3-2.3c0-0.1,0-0.1,0-0.2c0-0.1,0-0.2-0.1-0.2L29,18.4L26.4,5.2l-2.9-1.6l0-0.2		c0-0.1-0.1-0.2-0.2-0.3l-3.9-2.6c0,0-0.1,0-0.2-0.1l0,0C18,0.2,16.9,0.1,15.7,0c-1.1,0.1-2.2,0.2-3.3,0.5c0,0,0,0,0,0		c0,0,0,0-0.1,0l0,0c-0.1,0-0.1,0-0.2,0.1L8.3,3.2C8.2,3.2,8.1,3.3,8.1,3.5l0,0L4.9,5.2L2.2,18.5L0,35l5.7,0.4v20.8L6,56.4		c0.3,0.1,7,2.5,11.4,2.5c0.2,0,0.5,0,0.7,0c2.2-0.1,3.1-0.5,3.1-1.1c0-0.1,0-0.3,0-0.4c3.9-1.4,3.9-1.8,3.9-2.2		c0-0.4,0.4-16.8,0.4-19.7L31.3,35z M25.5,34.5l-0.1-1l4.6-0.3l0.1,1L25.5,34.5z M19.3,1.8l3.2,2.1l0.1,0.3l0,0.1l0.1,0l0.2,0.8		l-1.5,1.1c-0.2,0.2-0.3,0.4-0.1,0.7l1.1,1.8l-5.1,5.6l-0.9-2.8L19.3,1.8z M13.6,2.9c0.7-0.2,1.4-0.4,2.1-0.4c0.7,0,1.4,0.1,2.1,0.5		l-2.1,6.8L13.6,2.9z M18.3,1.4l-0.2,0.7c-0.7-0.4-1.6-0.6-2.4-0.5c-0.8,0-1.6,0.2-2.4,0.4l-0.2-0.6C14,1.2,14.9,1,15.7,1		C16.6,1,17.5,1.2,18.3,1.4z M12.2,1.8L17,17.2L9.2,8.7l1.1-1.8c0.1-0.2,0.1-0.5-0.1-0.7L8.7,5.1L9,3.9L12.2,1.8z M1.3,33.1l4.6,0.3		l-0.1,1l-4.6-0.4L1.3,33.1z M18.1,57.9c-3.7,0.2-9.9-1.8-11.4-2.3V35l1.9-16.5l-1-0.1L6,32.4l-4.6-0.3l1.8-13.5L5.8,5.9l2-1.1		L7.7,5.2c0,0.2,0,0.4,0.2,0.5l1.4,1L8.2,8.5C8,8.7,8.1,9,8.2,9.1l9.5,10.4c0,0,0,0,0.1,0l0,0c1.1,1.4,2.1,24,2.4,38		C20,57.6,19.4,57.8,18.1,57.9z M21.2,56.3c-0.3-13.6-1.1-34.3-2.6-37.2c0,0,0,0,0,0l-1.1-3.6l5.8-6.3c0.2-0.2,0.2-0.4,0.1-0.6		l-1.1-1.8l1.4-1c0.2-0.1,0.2-0.3,0.2-0.5l-0.1-0.3l1.7,0.9L28,18.6l1.8,13.5l-4.6,0.3l-1.5-14.6l-1,0.1L24.6,35		c0,0.9-0.4,18-0.4,20C23.7,55.3,22.5,55.8,21.2,56.3z" /><path fill="%23000" d="M17.8,23.7c0-0.4-0.3-0.8-0.8-0.8c-0.4,0-0.8,0.3-0.8,0.8c0,0.4,0.3,0.8,0.8,0.8		C17.5,24.5,17.8,24.2,17.8,23.7z" /><path fill="%23000" d="M13.9,23.7c0-0.4-0.3-0.8-0.8-0.8c-0.4,0-0.8,0.3-0.8,0.8c0,0.4,0.3,0.8,0.8,0.8		C13.6,24.5,13.9,24.2,13.9,23.7z" /><path fill="%23000" d="M16.7,30.7c0,0.4,0.3,0.8,0.8,0.8s0.8-0.3,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8S16.7,30.2,16.7,30.7z" /><path fill="%23000" d="M13.6,29.9c-0.4,0-0.8,0.3-0.8,0.8c0,0.4,0.3,0.8,0.8,0.8c0.4,0,0.8-0.3,0.8-0.8C14.3,30.2,14,29.9,13.6,29.9z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 31.3 58.9"><path fill="%23000" d="M31.3,35l-0.3-2.3c0-0.1,0-0.1,0-0.2c0-0.1,0-0.2-0.1-0.2L29,18.4L26.4,5.2l-2.9-1.6l0-0.2		c0-0.1-0.1-0.2-0.2-0.3l-3.9-2.6c0,0-0.1,0-0.2-0.1l0,0C18,0.2,16.9,0.1,15.7,0c-1.1,0.1-2.2,0.2-3.3,0.5c0,0,0,0,0,0		c0,0,0,0-0.1,0l0,0c-0.1,0-0.1,0-0.2,0.1L8.3,3.2C8.2,3.2,8.1,3.3,8.1,3.5l0,0L4.9,5.2L2.2,18.5L0,35l5.7,0.4v20.8L6,56.4		c0.3,0.1,7,2.5,11.4,2.5c0.2,0,0.5,0,0.7,0c2.2-0.1,3.1-0.5,3.1-1.1c0-0.1,0-0.3,0-0.4c3.9-1.4,3.9-1.8,3.9-2.2		c0-0.4,0.4-16.8,0.4-19.7L31.3,35z M25.5,34.5l-0.1-1l4.6-0.3l0.1,1L25.5,34.5z M19.3,1.8l3.2,2.1l0.1,0.3l0,0.1l0.1,0l0.2,0.8		l-1.5,1.1c-0.2,0.2-0.3,0.4-0.1,0.7l1.1,1.8l-5.1,5.6l-0.9-2.8L19.3,1.8z M13.6,2.9c0.7-0.2,1.4-0.4,2.1-0.4c0.7,0,1.4,0.1,2.1,0.5		l-2.1,6.8L13.6,2.9z M18.3,1.4l-0.2,0.7c-0.7-0.4-1.6-0.6-2.4-0.5c-0.8,0-1.6,0.2-2.4,0.4l-0.2-0.6C14,1.2,14.9,1,15.7,1		C16.6,1,17.5,1.2,18.3,1.4z M12.2,1.8L17,17.2L9.2,8.7l1.1-1.8c0.1-0.2,0.1-0.5-0.1-0.7L8.7,5.1L9,3.9L12.2,1.8z M1.3,33.1l4.6,0.3		l-0.1,1l-4.6-0.4L1.3,33.1z M18.1,57.9c-3.7,0.2-9.9-1.8-11.4-2.3V35l1.9-16.5l-1-0.1L6,32.4l-4.6-0.3l1.8-13.5L5.8,5.9l2-1.1		L7.7,5.2c0,0.2,0,0.4,0.2,0.5l1.4,1L8.2,8.5C8,8.7,8.1,9,8.2,9.1l9.5,10.4c0,0,0,0,0.1,0l0,0c1.1,1.4,2.1,24,2.4,38		C20,57.6,19.4,57.8,18.1,57.9z M21.2,56.3c-0.3-13.6-1.1-34.3-2.6-37.2c0,0,0,0,0,0l-1.1-3.6l5.8-6.3c0.2-0.2,0.2-0.4,0.1-0.6		l-1.1-1.8l1.4-1c0.2-0.1,0.2-0.3,0.2-0.5l-0.1-0.3l1.7,0.9L28,18.6l1.8,13.5l-4.6,0.3l-1.5-14.6l-1,0.1L24.6,35		c0,0.9-0.4,18-0.4,20C23.7,55.3,22.5,55.8,21.2,56.3z" /><path fill="%23000" d="M17.8,23.7c0-0.4-0.3-0.8-0.8-0.8c-0.4,0-0.8,0.3-0.8,0.8c0,0.4,0.3,0.8,0.8,0.8		C17.5,24.5,17.8,24.2,17.8,23.7z" /><path fill="%23000" d="M13.9,23.7c0-0.4-0.3-0.8-0.8-0.8c-0.4,0-0.8,0.3-0.8,0.8c0,0.4,0.3,0.8,0.8,0.8		C13.6,24.5,13.9,24.2,13.9,23.7z" /><path fill="%23000" d="M16.7,30.7c0,0.4,0.3,0.8,0.8,0.8s0.8-0.3,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8S16.7,30.2,16.7,30.7z" /><path fill="%23000" d="M13.6,29.9c-0.4,0-0.8,0.3-0.8,0.8c0,0.4,0.3,0.8,0.8,0.8c0.4,0,0.8-0.3,0.8-0.8C14.3,30.2,14,29.9,13.6,29.9z" /></svg>') no-repeat center center;
  height: 45px;
}
#product .product_detail .detail .manufacturer_Area ul li.use5::after,
#product .product_detail .detail .use_Area ul li.use5::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.487 45.19"><path fill="%23000" d="M12.724,7.425L14.951,0H1.92l2.224,7.415L.034,37.558l-.034.245,7.388,7.388,8.1-7.363-2.764-30.402ZM13.607,1l-1.763,5.875h-6.818L3.264,1h10.344ZM1.059,37.447L5.091,7.875h6.669l2.687,29.548-7.025,6.387-6.362-6.362Z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.487 45.19"><path fill="%23000" d="M12.724,7.425L14.951,0H1.92l2.224,7.415L.034,37.558l-.034.245,7.388,7.388,8.1-7.363-2.764-30.402ZM13.607,1l-1.763,5.875h-6.818L3.264,1h10.344ZM1.059,37.447L5.091,7.875h6.669l2.687,29.548-7.025,6.387-6.362-6.362Z" /></svg>') no-repeat center center;
  height: 33px;
  top: 5px;
}
#product .product_detail .detail .manufacturer_Area ul li.use6::after,
#product .product_detail .detail .use_Area ul li.use6::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.9 36.2"><path fill="%23000" d="M34.5,9.7h-30L0,36.2h38.9L34.5,9.7z M33,10.5L19.5,22.4L5.9,10.5H33z M5.1,10.9l14.4,12.6l14.4-12.6l4.1,24.5H1L5.1,10.9z" /><path fill="%23000" d="M19.5,0.8c4.5,0,8.2,3.7,8.2,8.2h0.8c0-5-4-9-9-9c-5,0-9,4-9,9h0.8C11.3,4.5,15,0.9,19.5,0.8z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.9 36.2"><path fill="%23000" d="M34.5,9.7h-30L0,36.2h38.9L34.5,9.7z M33,10.5L19.5,22.4L5.9,10.5H33z M5.1,10.9l14.4,12.6l14.4-12.6l4.1,24.5H1L5.1,10.9z" /><path fill="%23000" d="M19.5,0.8c4.5,0,8.2,3.7,8.2,8.2h0.8c0-5-4-9-9-9c-5,0-9,4-9,9h0.8C11.3,4.5,15,0.9,19.5,0.8z" /></svg>') no-repeat center center;
  width: 45%;
  top: 7px;
}
#product .product_detail .detail .manufacturer_Area ul li.use7::after,
#product .product_detail .detail .use_Area ul li.use7::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.9 16.9"><path fill="%23000" d="M46.9,13.6l-1.2-2.4c-0.1-0.1-0.2-0.2-0.3-0.3L30.9,7.3l-1.8-1.2c0.4-0.6,0.7-1.3,0.6-1.8	c-0.1-0.4-0.3-0.7-0.7-0.9c-0.6-0.3-1.4-0.1-2.1,0.1c0-0.2,0.1-0.4,0-0.6c-0.1-0.4-0.3-0.7-0.7-0.9c-0.8-0.4-2.1,0-2.7,0.3l-3.3-2.2	c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-2.3,0.8-4.6,1.2-7,1.2c0,0,0,0,0,0	C10.2,1.2,3.1,0,3,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1-0.1,0.1	c0,0,0,0,0,0C0,2.9,0,12.2,0,12.6l0,0v3.8c0,0.3,0.2,0.5,0.5,0.5h12.1c0.3,0,0.5-0.2,0.5-0.5V14c1,0.3,1.8,0.6,2.6,1	c2,0.8,4,1.6,7.7,1.8c0.8,0,1.7,0.1,2.5,0.1c10.2,0,20.5-2.5,20.6-2.5c0.1,0,0.3-0.1,0.3-0.3C47,13.9,47,13.7,46.9,13.6z M28.5,4.3	c0.1,0,0.1,0.1,0.1,0.2c0.1,0.3-0.1,0.6-0.4,1.1l-1.5-1C27.4,4.3,28.2,4.1,28.5,4.3z M25.8,2.9c0.1,0,0.1,0.1,0.1,0.2	c0,0.2,0,0.5-0.2,0.7L24.5,3C25,2.8,25.5,2.7,25.8,2.9z M12.6,2.2c1.8,0,3.6-0.2,5.4-0.7c-1.4,1.1-3,1.8-4.7,2	c-2.3,0.3-5.5-1-7.7-2.1C8,1.8,11.2,2.2,12.6,2.2z M12.1,13.8v2.1H1v-2.8c2.2-0.1,4.5-0.1,6.7,0C9.5,13.2,10.9,13.4,12.1,13.8	C12.1,13.7,12.1,13.8,12.1,13.8z M23.5,15.7c-3.5-0.1-5.4-0.9-7.4-1.7c-2.1-0.8-4.3-1.7-8.3-1.9C6.6,12,5.3,12,4.1,12	c-1,0-2.1,0-3.1,0.1c0-2.8,0.5-8.8,2-10.9C4.5,2,9.8,5,13.5,4.6C16,4.2,18.2,3,19.9,1.2l2.9,1.9c0,0,0,0.1,0,0.1	c0.1,0.2,0.3,0.3,0.5,0.3l1.8,1.2c-0.9,1-2.2,2.1-2.7,2.2c-0.3,0.1-0.4,0.3-0.4,0.6c0.1,0.2,0.3,0.4,0.5,0.4c0,0,0.1,0,0.1,0	c0.5-0.1,2.2-1.3,3.3-2.6l1.7,1.1c-0.9,0.9-2,1.8-2.4,1.9c-0.3,0.1-0.4,0.3-0.4,0.6c0.1,0.2,0.3,0.4,0.5,0.4c0,0,0.1,0,0.1,0	c0.5-0.1,1.9-1.1,3-2.3l2,1.3c0,0,0.1,0.1,0.2,0.1l14.3,3.6l0.8,1.6C43.1,14,32.9,16.1,23.5,15.7z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.9 16.9"><path fill="%23000" d="M46.9,13.6l-1.2-2.4c-0.1-0.1-0.2-0.2-0.3-0.3L30.9,7.3l-1.8-1.2c0.4-0.6,0.7-1.3,0.6-1.8	c-0.1-0.4-0.3-0.7-0.7-0.9c-0.6-0.3-1.4-0.1-2.1,0.1c0-0.2,0.1-0.4,0-0.6c-0.1-0.4-0.3-0.7-0.7-0.9c-0.8-0.4-2.1,0-2.7,0.3l-3.3-2.2	c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-2.3,0.8-4.6,1.2-7,1.2c0,0,0,0,0,0	C10.2,1.2,3.1,0,3,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1-0.1,0.1	c0,0,0,0,0,0C0,2.9,0,12.2,0,12.6l0,0v3.8c0,0.3,0.2,0.5,0.5,0.5h12.1c0.3,0,0.5-0.2,0.5-0.5V14c1,0.3,1.8,0.6,2.6,1	c2,0.8,4,1.6,7.7,1.8c0.8,0,1.7,0.1,2.5,0.1c10.2,0,20.5-2.5,20.6-2.5c0.1,0,0.3-0.1,0.3-0.3C47,13.9,47,13.7,46.9,13.6z M28.5,4.3	c0.1,0,0.1,0.1,0.1,0.2c0.1,0.3-0.1,0.6-0.4,1.1l-1.5-1C27.4,4.3,28.2,4.1,28.5,4.3z M25.8,2.9c0.1,0,0.1,0.1,0.1,0.2	c0,0.2,0,0.5-0.2,0.7L24.5,3C25,2.8,25.5,2.7,25.8,2.9z M12.6,2.2c1.8,0,3.6-0.2,5.4-0.7c-1.4,1.1-3,1.8-4.7,2	c-2.3,0.3-5.5-1-7.7-2.1C8,1.8,11.2,2.2,12.6,2.2z M12.1,13.8v2.1H1v-2.8c2.2-0.1,4.5-0.1,6.7,0C9.5,13.2,10.9,13.4,12.1,13.8	C12.1,13.7,12.1,13.8,12.1,13.8z M23.5,15.7c-3.5-0.1-5.4-0.9-7.4-1.7c-2.1-0.8-4.3-1.7-8.3-1.9C6.6,12,5.3,12,4.1,12	c-1,0-2.1,0-3.1,0.1c0-2.8,0.5-8.8,2-10.9C4.5,2,9.8,5,13.5,4.6C16,4.2,18.2,3,19.9,1.2l2.9,1.9c0,0,0,0.1,0,0.1	c0.1,0.2,0.3,0.3,0.5,0.3l1.8,1.2c-0.9,1-2.2,2.1-2.7,2.2c-0.3,0.1-0.4,0.3-0.4,0.6c0.1,0.2,0.3,0.4,0.5,0.4c0,0,0.1,0,0.1,0	c0.5-0.1,2.2-1.3,3.3-2.6l1.7,1.1c-0.9,0.9-2,1.8-2.4,1.9c-0.3,0.1-0.4,0.3-0.4,0.6c0.1,0.2,0.3,0.4,0.5,0.4c0,0,0.1,0,0.1,0	c0.5-0.1,1.9-1.1,3-2.3l2,1.3c0,0,0.1,0.1,0.2,0.1l14.3,3.6l0.8,1.6C43.1,14,32.9,16.1,23.5,15.7z" /></svg>') no-repeat center center;
  width: 54%;
  top: 10px;
}
#product .product_detail .detail .manufacturer_Area ul li.use8::after,
#product .product_detail .detail .use_Area ul li.use8::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.7 47.2"><path fill="%23000" d="M45,44V2.6h0.9V0h-45v2.6h1.3V44H0v3.2h46.7V44H45z M34.5,44C34.5,38,35.9,32,38.8,26.6H44V44H34.5z M13.6,44	c0.1-6.3-1.5-12.5-4.4-18.1v-1.4c8.2-0.7,12-18.9,12.6-22h3.6c0.6,3.1,4.3,21.3,12.6,22V26c-3,5.5-4.5,11.8-4.4,18.1H13.6z	 M8.2,24.7v0.9H3.5v-0.9H8.2z M10.6,23.3c4.9-4.4,5-17.8,5-20.7h5.2C20.2,5.8,16.9,20.7,10.6,23.3z M39,24.7h4.7v0.9H39V24.7z	 M26.4,2.6h5.2c0,2.8,0.1,16.3,5,20.6C30.3,20.7,27,5.8,26.4,2.6z M44,23.7h-4.2c-7-0.6-7.2-17.9-7.1-21H44V23.7z M1.9,1h43v0.6h-43	V1z M14.6,2.6c0,3.1-0.1,20.5-7.1,21H3.2v-21H14.6z M3.2,26.6h5.2C11.2,32,12.7,38,12.6,44H3.2V26.6z M45.7,46.2H1V45h44.7V46.2z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.7 47.2"><path fill="%23000" d="M45,44V2.6h0.9V0h-45v2.6h1.3V44H0v3.2h46.7V44H45z M34.5,44C34.5,38,35.9,32,38.8,26.6H44V44H34.5z M13.6,44	c0.1-6.3-1.5-12.5-4.4-18.1v-1.4c8.2-0.7,12-18.9,12.6-22h3.6c0.6,3.1,4.3,21.3,12.6,22V26c-3,5.5-4.5,11.8-4.4,18.1H13.6z	 M8.2,24.7v0.9H3.5v-0.9H8.2z M10.6,23.3c4.9-4.4,5-17.8,5-20.7h5.2C20.2,5.8,16.9,20.7,10.6,23.3z M39,24.7h4.7v0.9H39V24.7z	 M26.4,2.6h5.2c0,2.8,0.1,16.3,5,20.6C30.3,20.7,27,5.8,26.4,2.6z M44,23.7h-4.2c-7-0.6-7.2-17.9-7.1-21H44V23.7z M1.9,1h43v0.6h-43	V1z M14.6,2.6c0,3.1-0.1,20.5-7.1,21H3.2v-21H14.6z M3.2,26.6h5.2C11.2,32,12.7,38,12.6,44H3.2V26.6z M45.7,46.2H1V45h44.7V46.2z" /></svg>') no-repeat center center;
  top: 8px;
}
#product .product_detail .detail .manufacturer_Area ul li.use9::after,
#product .product_detail .detail .use_Area ul li.use9::after {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.9 42"><path fill="%23000" d="M25.9,38.9c-0.2-2.6-0.8-4.7-1.3-6.7c-0.9-3.4-1.6-6.3-0.5-10.6c0.6-2.1,1.5-6,1.3-8.2	c-0.1-1.1-0.4-2.1-0.6-3.2c-0.2-0.8-0.4-1.7-0.5-2.5c0-0.1,0-0.4-0.1-0.8C23.8,0.7,23.4,0,22.7,0c0,0,0,0,0,0c-1,0.1-2,0.2-3,0.5	l0,0c-2.4,0.8-4.9,1.3-7.4,1.5c-2.2-0.1-4.4-0.6-6.5-1.5C5,0.2,4.1,0.1,3.2,0C2.5,0,2.2,0.7,1.7,6.9c0,0.4-0.1,0.7-0.1,0.9	c-0.1,0.8-0.3,1.7-0.5,2.5c-0.3,1-0.5,2.1-0.6,3.2c-0.2,2.2,0.7,6.1,1.3,8.2c1.1,4.3,0.4,7.3-0.5,10.6c-0.5,2-1,4.1-1.3,6.7l0,0.4	l0.3,0.1C4.1,41,8.1,41.9,12.2,42c0.2,0,0.4,0,0.6,0c4.4,0,8.7-0.9,12.7-2.6l0.3-0.1L25.9,38.9z M12.3,3c2.6-0.2,5.2-0.7,7.7-1.6	c0.3,1.2,0.5,2.4,0.5,3.6c0,4.5-2.6,9-7.5,9C7.4,14,5.4,8.6,5.4,4c0-0.9,0.2-1.7,0.4-2.5C7.9,2.4,10.1,2.9,12.3,3z M12.3,41	c-3.9-0.1-7.6-0.9-11.2-2.4c0.2-2.4,0.7-4.3,1.2-6.1C3.2,29,3.9,26,2.7,21.4c-0.4-1.6-1.4-5.7-1.3-7.9c0.1-1,0.3-2,0.6-3	c0.2-0.9,0.4-1.7,0.6-2.6c0-0.1,0-0.4,0.1-0.9C2.9,3.6,3.2,1.6,3.4,1c0.5,0,1,0.1,1.5,0.2C4.6,2.1,4.4,3.1,4.4,4	c0,5.5,2.6,11,8.5,11c5.6,0,8.5-5,8.5-10c0-1.3-0.2-2.6-0.5-3.8c0.5-0.1,1-0.2,1.5-0.2c0.2,0.6,0.5,2.6,0.8,6c0,0.4,0.1,0.8,0.1,0.9	c0.1,0.9,0.3,1.8,0.6,2.7c0.3,1,0.5,2,0.6,3c0.2,2.2-0.8,6.2-1.3,7.9C22,26,22.8,29,23.7,32.5c0.5,1.9,1,3.8,1.2,6.1	C20.9,40.3,16.6,41.1,12.3,41z" /></svg>') no-repeat center center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.9 42"><path fill="%23000" d="M25.9,38.9c-0.2-2.6-0.8-4.7-1.3-6.7c-0.9-3.4-1.6-6.3-0.5-10.6c0.6-2.1,1.5-6,1.3-8.2	c-0.1-1.1-0.4-2.1-0.6-3.2c-0.2-0.8-0.4-1.7-0.5-2.5c0-0.1,0-0.4-0.1-0.8C23.8,0.7,23.4,0,22.7,0c0,0,0,0,0,0c-1,0.1-2,0.2-3,0.5	l0,0c-2.4,0.8-4.9,1.3-7.4,1.5c-2.2-0.1-4.4-0.6-6.5-1.5C5,0.2,4.1,0.1,3.2,0C2.5,0,2.2,0.7,1.7,6.9c0,0.4-0.1,0.7-0.1,0.9	c-0.1,0.8-0.3,1.7-0.5,2.5c-0.3,1-0.5,2.1-0.6,3.2c-0.2,2.2,0.7,6.1,1.3,8.2c1.1,4.3,0.4,7.3-0.5,10.6c-0.5,2-1,4.1-1.3,6.7l0,0.4	l0.3,0.1C4.1,41,8.1,41.9,12.2,42c0.2,0,0.4,0,0.6,0c4.4,0,8.7-0.9,12.7-2.6l0.3-0.1L25.9,38.9z M12.3,3c2.6-0.2,5.2-0.7,7.7-1.6	c0.3,1.2,0.5,2.4,0.5,3.6c0,4.5-2.6,9-7.5,9C7.4,14,5.4,8.6,5.4,4c0-0.9,0.2-1.7,0.4-2.5C7.9,2.4,10.1,2.9,12.3,3z M12.3,41	c-3.9-0.1-7.6-0.9-11.2-2.4c0.2-2.4,0.7-4.3,1.2-6.1C3.2,29,3.9,26,2.7,21.4c-0.4-1.6-1.4-5.7-1.3-7.9c0.1-1,0.3-2,0.6-3	c0.2-0.9,0.4-1.7,0.6-2.6c0-0.1,0-0.4,0.1-0.9C2.9,3.6,3.2,1.6,3.4,1c0.5,0,1,0.1,1.5,0.2C4.6,2.1,4.4,3.1,4.4,4	c0,5.5,2.6,11,8.5,11c5.6,0,8.5-5,8.5-10c0-1.3-0.2-2.6-0.5-3.8c0.5-0.1,1-0.2,1.5-0.2c0.2,0.6,0.5,2.6,0.8,6c0,0.4,0.1,0.8,0.1,0.9	c0.1,0.9,0.3,1.8,0.6,2.7c0.3,1,0.5,2,0.6,3c0.2,2.2-0.8,6.2-1.3,7.9C22,26,22.8,29,23.7,32.5c0.5,1.9,1,3.8,1.2,6.1	C20.9,40.3,16.6,41.1,12.3,41z" /></svg>') no-repeat center center;
  top: 8px;
}
@media (max-width: 850px) {
  #product .product_detail {
    display: block;
  }
  #product .product_detail .photo {
    width: 100%;
  }
  #product .product_detail .photo .main {
    width: 100%;
    margin-bottom: 20px;
  }
  #product .product_detail .photo .thumbnail li {
    margin: 0 5% 10px 0;
  }
  #product .product_detail .detail {
    width: 100%;
  }
  #product .product_detail .detail .product_title {
    font-size: 20px;
    font-size: 2rem;
    padding: 2.3vw 0 4.7vw 0;
  }
  #product .product_detail .detail .info {
    margin: 0 0 5.2vw 0;
  }
  #product .product_detail .detail .info dl {
    font-size: 14px;
    font-size: 1.4rem;
  }
  #product .product_detail .detail .manufacturer_Area,
  #product .product_detail .detail .use_Area {
    display: block;
    margin: 0 0 20px 0;
  }
  #product .product_detail .detail .manufacturer_Area h3,
  #product .product_detail .detail .use_Area h3 {
    width: 100%;
    margin: 0 0 15px 0;
  }
  #product .product_detail .detail .manufacturer_Area ul,
  #product .product_detail .detail .use_Area ul {
    width: 100%;
  }
  #product .product_detail .detail .manufacturer_Area ul li,
  #product .product_detail .detail .use_Area ul li {
    width: 54px;
    padding: 45px 5px 0 5px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    line-height: 1;
  }
  #product .product_detail .detail .manufacturer_Area ul li::after,
  #product .product_detail .detail .use_Area ul li::after {
    position: absolute;
    top: 0px;
    left: 0;
    letter-spacing: 50%;
    content: "";
    width: 100%;
    height: 30px;
    transition: all 0.5s ease 0s;
    background-color: #000000;
  }
  #product .product_detail .detail .manufacturer_Area ul li.material1,
  #product .product_detail .detail .use_Area ul li.material1 {
    width: 100px;
  }
}

/*===== Search ======================================*/
#search .search_Area {
  margin: 0 0 90px 0;
}
@media (max-width: 850px) {
  #search .search_Area {
    margin: 0 0 10vw 0;
  }
}
#search .title_Area {
  display: flex;
  justify-content: center;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  margin: 0 0 90px 0;
  padding: 20px 0;
}
#search .title_Area .title {
  padding: 30px 0 40px 0;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
}
#search .title_Area .title.l {
  width: 37%;
  border-right: solid 1px #000000;
}
#search .title_Area .title.r {
  width: 63%;
  position: relative;
}
#search .title_Area .title.r::before {
  content: "";
  position: absolute;
  bottom: -59px;
  left: 50%;
  margin-left: -20px;
  border: 20px solid transparent;
  border-top: 20px solid #e4e1dd;
  z-index: 2;
}
#search .title_Area .title.r::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  border: 20px solid transparent;
  border-top: 20px solid #000000;
  z-index: 1;
}
@media (max-width: 850px) {
  #search .title_Area {
    margin: 0 0 10vw 0;
    padding: 2.3vw 0;
  }
  #search .title_Area .title {
    padding: 3.5vw 0 4.7vw 0;
    font-size: 3vw;
  }
  #search .title_Area .title.r::before {
    bottom: -6.9vw;
    margin-left: -2.3vw;
    border: 2.3vw solid transparent;
    border-top: 2.3vw solid #e4e1dd;
  }
  #search .title_Area .title.r::after {
    bottom: -7vw;
    margin-left: -2.3vw;
    border: 2.3vw solid transparent;
    border-top: 2.3vw solid #000000;
  }
}
#search .category {
  display: flex;
  margin: 0 0 80px 0;
  padding: 0 0 80px 0;
  position: relative;
}
#search .category::after {
  position: absolute;
  content: "";
  margin: auto;
  bottom: 0;
  left: calc(50% - 13px);
  width: 26px;
  height: 26px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(135deg);
}
#search .category.last {
  margin-bottom: 0;
}
#search .category.last::after {
  display: none;
}
#search .category h3 {
  width: 120px;
  text-align: center;
  margin: 0 90px 0 0;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
  padding: 80px 0 0 0;
}
#search .category h3.material {
  background: url(../images/common/icn_material.svg) no-repeat center top;
  background-size: 70px;
}
#search .category h3.technique {
  background: url(../images/common/icn_technique.svg) no-repeat center top;
  background-size: 70px;
}
#search .category h3.function {
  background: url(../images/common/icn_function.svg) no-repeat center top;
  background-size: 70px;
}
#search .category h3.use {
  background: url(../images/common/icn_use.svg) no-repeat center top;
  background-size: 70px;
}
#search .category .check_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 16px;
  font-size: 1.6rem;
  width: calc(100% - 210px);
}
#search .category .check_list li {
  margin: 0 40px 0 0;
  padding: 15px 0;
  width: calc((100% - 120px) / 4);
}
#search .category .check_list li:nth-child(4n) {
  margin-right: 0;
}
#search .category .check_list li input[type=checkbox] {
  display: none;
}
#search .category .check_list li input[type=checkbox]:checked + label {
  background: #000000;
  color: #e4e1dd;
  transition: ease 0.3s;
}
#search .category .check_list li label {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 50px;
  padding: 10px 0;
  transition: ease 0.3s;
}
@media (max-width: 850px) {
  #search .category {
    display: block;
    margin: 0 0 9vw 0;
    padding: 0 0 9vw 0;
  }
  #search .category::after {
    width: 20px;
    height: 20px;
    left: calc(50% - 10px);
  }
  #search .category h3 {
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 50px 0 0 0;
  }
  #search .category h3.material {
    background-size: 50px;
  }
  #search .category h3.technique {
    background-size: 50px;
  }
  #search .category h3.function {
    background-size: 50px;
  }
  #search .category h3.use {
    background-size: 50px;
  }
  #search .category .check_list {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
  }
  #search .category .check_list li {
    margin: 0 20px 0 0;
    padding: 10px 0;
    width: calc((100% - 20px) / 2);
  }
  #search .category .check_list li:nth-child(4n) {
    margin-right: 20px;
  }
  #search .category .check_list li:nth-child(2n) {
    margin-right: 0;
  }
}
#search .results_tag {
  margin: -60px 0 100px 0;
}
#search .results_tag ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#search .results_tag ul li {
  border-radius: 50px;
  background: #e4e1dd;
  text-align: center;
  margin: 0 40px 20px 0;
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  min-width: 180px;
}
@media (max-width: 850px) {
  #search .results_tag {
    margin: -2vw 0 10vw 0;
  }
  #search .results_tag ul li {
    margin: 0 10px 8px 0;
    padding: 1.1vw 10px;
    font-size: 11px;
    font-size: 1.1rem;
    min-width: 100px;
  }
}

/*===== member ======================================*/
#member .main_image {
  margin-bottom: 100px;
}
#member .main_image img {
  width: 100%;
}
@media (max-width: 850px) {
  #member .main_image {
    margin-bottom: 8vw;
  }
}
#member .intro {
  margin: 0 0 100px 0;
}
#member .intro .title {
  font-size: 26px;
  font-size: 2.6rem;
  margin: 0 0 30px 0;
}
#member .intro .text1 {
  font-size: 20px;
  font-size: 2rem;
  margin: 0 0 30px 0;
}
#member .intro .text2 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media (max-width: 850px) {
  #member .intro {
    margin-bottom: 8vw;
  }
  #member .intro .title {
    font-size: 20px;
    font-size: 2rem;
    margin: 0 0 4.5vw 0;
  }
  #member .intro .text1 {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 4.5vw 0;
  }
  #member .intro .text2 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#member .profile .profile_title {
  font-size: 26px;
  font-size: 2.6rem;
  margin: 0 0 30px 0;
}
#member .profile .block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#member .profile .block .detail {
  width: 50%;
}
#member .profile .block .detail dl {
  display: flex;
  border-bottom: solid 1px #000000;
}
#member .profile .block .detail dl dt {
  width: 30%;
  padding: 10px;
}
#member .profile .block .detail dl dd {
  width: 70%;
  padding: 10px;
}
#member .profile .block .movie {
  width: 45%;
}
#member .profile .block .movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media (max-width: 850px) {
  #member .profile .profile_title {
    font-size: 20px;
    font-size: 2rem;
    margin: 0 0 3.5vw 0;
  }
  #member .profile .block {
    display: block;
  }
  #member .profile .block .detail {
    width: 100%;
    margin: 0 0 30px 0;
  }
  #member .profile .block .detail dl {
    display: flex;
    border-bottom: solid 1px #000000;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #member .profile .block .detail dl dd {
    width: 70%;
    padding: 10px;
  }
  #member .profile .block .movie {
    width: 100%;
  }
}
#member .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#member .block.mb {
  margin-bottom: 160px;
}
#member .block.reverse {
  flex-direction: row-reverse;
}
#member .block figure {
  width: 38%;
}
#member .block figure img {
  width: 100%;
}
#member .block p {
  display: block;
  width: 54%;
}
@media (max-width: 850px) {
  #member .block {
    display: block;
  }
  #member .block.mb {
    margin-bottom: 18.8vw;
  }
  #member .block figure {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #member .block p {
    width: 100%;
  }
}
#member .block.produce {
  align-items: flex-start;
}
#member .block.produce figure {
  width: 20%;
}
#member .block.produce p {
  width: 71%;
}
@media (max-width: 850px) {
  #member .block.produce figure {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #member .block.produce p {
    width: 100%;
  }
}
#member .exhibition_list dl {
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
}
#member .exhibition_list dl dt {
  width: 25%;
  position: relative;
  padding: 0 0 0 6%;
}
@media (max-width: 1350px) {
  #member .exhibition_list dl {
    margin: 0 0 3.5vw 0;
  }
}
@media (max-width: 850px) {
  #member .exhibition_list dl {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 0 3.5vw 0;
    display: block;
  }
  #member .exhibition_list dl dt {
    width: 100%;
  }
  #member .exhibition_list dl dd {
    padding: 0 0 0 6%;
  }
}

/*===== Utility ====================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.w10 {
  width: 10px;
}

.w20 {
  width: 20px;
}

.w30 {
  width: 30px;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w50p {
  width: 50%;
  max-width: 50%;
}

.mincho {
  font-family: "EB Garamond", serif;
}

.gothic {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.fs_ss {
  font-size: 10px;
  font-size: 1rem;
}

.fs_s {
  font-size: 12px;
  font-size: 1.2rem;
}

.fs_m {
  font-size: 14px;
  font-size: 1.4rem;
}

.fs_l {
  font-size: 16px;
  font-size: 1.6rem;
}

.fs_ll {
  font-size: 18px;
  font-size: 1.8rem;
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

.tl {
  text-align: left !important;
}

.tr {
  text-align: right !important;
}

.tc {
  text-align: center !important;
}

.vt {
  vertical-align: top !important;
}

.vm {
  vertical-align: middle !important;
}

.vb {
  vertical-align: bottom !important;
}

.fl {
  padding: 0 20px 10px 0;
  float: left !important;
}

.fr {
  padding: 0 0 10px 20px;
  float: right !important;
}

.sp-only {
  display: none;
}
@media (max-width: 850px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 850px) {
  .pc-only {
    display: none;
  }
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.photo-16-9 {
  position: relative;
}
.photo-16-9::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.photo-16-9::after {
  content: "";
  display: block;
  clear: both;
}
.photo-16-9 > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.photo-16-9 > .image {
  -o-object-fit: cover;
     object-fit: cover;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 10px 0;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: rgb(46.75, 46.75, 46.75);
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: rgb(46.75, 46.75, 46.75);
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */