/* ======================================================= */
/********** header **********/
header {
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 0 2.4rem;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
  border-bottom: 1px solid transparent;
}

header.active {
  background-color: #fff;
  border-color: var(--border-light-gray);
}

header.active nav > ul > li > div {
  top: calc(100% + 1.2rem);
}

header.nav_open {
  background-color: #fff !important;
  border-color: var(--border-light-gray) !important;
}

header > div {
  width: 100%;
  height: 100%;
  max-width: 132rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header > div > h1 a {
  width: 20rem;
  display: block;
}

header > div > h1 a img {
  width: 100%;
  display: block;
}

header > div nav {
  height: 100%;
}

header > div nav > ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

header > div nav > ul > li {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header > div nav > ul > li:last-child > a::after {
  left: auto;
  right: 0;
  -webkit-transform: none;
          transform: none;
}

header > div nav > ul > li:last-child > div {
  left: auto;
  right: 0;
  -webkit-transform: translateX(0) scale(0);
          transform: translateX(0) scale(0);
}

header > div nav > ul > li:last-child > div.active {
  -webkit-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
}

header > div nav > ul > li > a {
  display: block;
  padding: 1rem;
  font-size: 1.7rem;
  font-weight: 500;
  border-radius: .6rem;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  z-index: 1;
}

header > div nav > ul > li > a::after {
  content: "";
  display: none;
  width: 240px;
  height: 120px;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: transparent;
  z-index: -1;
  cursor: default;
}

header > div nav > ul > li > a.up::after {
  display: block;
}

header > div nav > ul > li > a:hover {
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--shadow-primary);
}

header > div nav > ul > li > div {
  width: 240px;
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
  background-color: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(56, 56, 56, 0.15);
          box-shadow: 0 0 1rem rgba(56, 56, 56, 0.15);
  border-radius: .6rem;
  padding: 1.2rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  margin-top: -1.2rem;
}

header > div nav > ul > li > div.active {
  opacity: 1;
  pointer-events: auto;
  margin-top: 0;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}

header > div nav > ul > li > div a {
  width: 100%;
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  text-align: center;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
  border-radius: .6rem;
}

header > div nav > ul > li > div a:hover {
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--shadow-primary);
}

header > div button {
  display: none;
}

header > div button.icon_button::after {
  font-size: 28px;
  color: var(--icon-light-gray);
}

/********** header end **********/
/* ======================================================= */
/********** main **********/
main {
  width: 100%;
  min-height: 100vh;
}

main .container {
  width: 100%;
  position: relative;
}

main .container.hidden {
  display: none;
}

main article {
  background-color: #fff;
}

main article.full {
  height: 100vh;
  overflow: hidden;
}

main article.product_list {
  padding: 24rem 2.4rem 16rem;
}

main article.product_list .list_head .list_title h2 {
  font-size: 3.6rem;
  font-weight: 700;
}

main article.product_list .list_head .list_title p {
  font-size: 1.8rem;
  margin-top: .6rem;
}

main article.product_list .list_head .list_tab {
  width: 100%;
  position: relative;
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
}

main article.product_list .list_head .list_tab a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
  background-color: #efefef;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border-radius: 2.4rem;
  border: 1px solid var(--border-gray);
}

main article.product_list .list_head .list_tab a:hover {
  background-color: #dfdfdf;
}

main article.product_list .list_head .list_tab a.active {
  color: #fff;
  background-color: #282828;
  border-color: transparent;
}

main article.product_list .list_container {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  margin-top: 7.2rem;
}

main article.product_list .list_container > div {
  width: calc((100% / 3) - (8rem / 3));
  position: relative;
  border: 1px solid var(--border-gray);
  border-radius: 1.6rem;
  overflow: hidden;
}

main article.product_list .list_container > div.hidden {
  display: none;
}

main article.product_list .list_container > div .image_box {
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--border-gray);
}

main article.product_list .list_container > div .image_box::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

main article.product_list .list_container > div .image_box img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

main article.product_list .list_container > div .text_box {
  width: 100%;
  position: relative;
  padding: 2.4rem 1.6rem;
}

main article.product_list .list_container > div .text_box h5 {
  font-size: 1.8rem;
  font-weight: 600;
}

main article.product_list .list_container > div .text_box p {
  margin-top: .8rem;
  font-size: 1.6rem;
  color: var(--text-gray);
}

main article.main {
  padding: 100px 2.4rem 50px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(225, 0, 255, 0.1)), to(rgba(155, 44, 170, 0)));
  background: linear-gradient(360deg, rgba(225, 0, 255, 0.1) 0%, rgba(155, 44, 170, 0) 100%);
}

main article.main .layout .image_group {
  position: relative;
}

main article.main .layout .image_group img {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  pointer-events: none;
}

main article.main .layout .image_group .main_image_asset {
  width: 100%;
  position: absolute;
  left: 0;
  top: -50%;
  z-index: 1;
  pointer-events: none;
}

main article.prod_info {
  padding: 0 2.4rem;
}

main article.prod_cards {
  background-color: rgba(175, 173, 255, 0.1);
  padding: 12rem 2.4rem;
}

main article.prod_cards .card_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}

main article.prod_cards .card_container > div {
  width: calc((100% / 2) - (8rem / 4));
  overflow: hidden;
  background-color: #fff;
  border-radius: 1.6rem;
  -webkit-box-shadow: 0.4rem 0.6rem 1.2rem rgba(56, 56, 56, 0.1);
          box-shadow: 0.4rem 0.6rem 1.2rem rgba(56, 56, 56, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: opacity 0.7s, -webkit-box-shadow 0.2s, -webkit-transform 0.7s;
  transition: opacity 0.7s, -webkit-box-shadow 0.2s, -webkit-transform 0.7s;
  transition: box-shadow 0.2s, transform 0.7s, opacity 0.7s;
  transition: box-shadow 0.2s, transform 0.7s, opacity 0.7s, -webkit-box-shadow 0.2s, -webkit-transform 0.7s;
}

main article.prod_cards .card_container > div:hover {
  -webkit-box-shadow: 0.8rem 1.2rem 2.4rem rgba(56, 56, 56, 0.2);
          box-shadow: 0.8rem 1.2rem 2.4rem rgba(56, 56, 56, 0.2);
}

main article.prod_cards .card_container > div.full {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
}

main article.prod_cards .card_container > div.full .text_box {
  width: 50%;
  padding-left: 10rem;
}

main article.prod_cards .card_container > div.full .text_box * {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

main article.prod_cards .card_container > div.full .text_box h3 {
  margin-top: 0;
}

main article.prod_cards .card_container > div.full .text_box .tags span {
  padding-left: 1.6rem !important;
}

main article.prod_cards .card_container > div.full .clip_box {
  width: 50%;
  height: auto;
  margin: 0;
}

main article.prod_cards .card_container > div.full .clip_box img {
  width: 32rem;
  height: auto;
  margin: 0 auto;
}

main article.prod_cards .card_container > div .text_box h3 {
  padding: 0 1.6rem;
  margin: 3.2rem 0 1.2rem;
  font-size: 2.8rem;
  font-weight: 700;
}

main article.prod_cards .card_container > div .text_box p {
  padding: 0 1.6rem;
  font-size: 1.8rem;
}

main article.prod_cards .card_container > div .text_box .tags {
  padding: 0 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .6rem .8rem;
  margin-top: 1.6rem;
}

main article.prod_cards .card_container > div .text_box .tags span {
  color: #fff;
  padding: .8rem 1.6rem;
  border-radius: 2.4rem;
  font-size: 1.5rem;
  background-color: rgba(155, 44, 170, 0.75);
}

main article.prod_cards .card_container > div .text_box a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3.2rem 1.6rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-light-gray);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

main article.prod_cards .card_container > div .text_box a::after {
  content: "chevron_right";
  font-family: var(--material-icons);
  font-size: 2.4rem;
  opacity: 0;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

main article.prod_cards .card_container > div .text_box a:hover {
  color: var(--primary-color);
}

main article.prod_cards .card_container > div .text_box a:hover::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

main article.prod_cards .card_container > div .clip_box {
  width: 100%;
  height: 32rem;
  overflow: hidden;
  margin-top: 3.2rem;
}

main article.prod_cards .card_container > div .clip_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main article.cs {
  padding: 12rem 2.4rem;
}

main article.cs h2,
main article.cs p {
  word-break: keep-all;
}

main article.cs h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 5.2rem;
  text-align: center;
}

main article.cs p {
  font-size: 2rem;
  color: var(--text-gray);
  text-align: center;
  margin: 4rem 0 8rem;
}

main article.cs ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main article.cs ul li {
  width: 30%;
  padding: 4.8rem 2.4rem;
  text-align: center;
  -webkit-box-shadow: 0 0 0.6rem rgba(56, 56, 56, 0.15);
          box-shadow: 0 0 0.6rem rgba(56, 56, 56, 0.15);
  border-radius: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 4rem;
  -webkit-transition: -webkit-transform 0.4s, -webkit-box-shadow 0.4s;
  transition: -webkit-transform 0.4s, -webkit-box-shadow 0.4s;
  transition: transform 0.4s, box-shadow 0.4s;
  transition: transform 0.4s, box-shadow 0.4s, -webkit-transform 0.4s, -webkit-box-shadow 0.4s;
}

main article.cs ul li:hover {
  -webkit-transform: translateY(-1.6rem);
          transform: translateY(-1.6rem);
  -webkit-box-shadow: 0 0.6rem 1.8rem rgba(56, 56, 56, 0.2);
          box-shadow: 0 0.6rem 1.8rem rgba(56, 56, 56, 0.2);
}

main article.cs ul li:nth-of-type(1) {
  margin-left: 0;
}

main article.cs ul li img {
  height: 16rem;
  margin: 0 auto;
}

main article.cs ul li h5 {
  font-size: 2rem;
  font-weight: 400;
  margin: 3.2rem 0 .6rem;
  color: var(--text-gray);
  word-break: keep-all;
}

main article.cs ul li a {
  font-size: 2.4rem;
  font-weight: 600;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  word-break: keep-all;
}

main article.cs ul li a:hover {
  color: var(--primary-color);
}

main article .layout {
  width: 100%;
  max-width: 132rem;
  margin: 0 auto;
}

main article .layout.full_flex_container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main article .layout .text_group {
  width: 50%;
}

main article .layout .text_group .keywords {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

main article .layout .text_group .keywords span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
}

main article .layout .text_group h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 5.2rem;
  word-break: keep-all;
}

main article .layout .text_group h2 span {
  display: block;
}

main article .layout .text_group h2 span:nth-of-type(1) {
  font-weight: 400;
}

main article .layout .text_group h2 span:nth-of-type(2) {
  font-weight: 800;
  color: var(--primary-color);
}

main article .layout .text_group p {
  margin-top: 1.6rem;
  font-size: 2rem;
  line-height: 3rem;
  word-break: keep-all;
}

main article .layout .image_group {
  width: 50%;
}

main article .layout .rolling_wrap {
  width: 50%;
}

main article .layout .rolling_container {
  width: 50%;
  -webkit-transform: translateX(2.4rem);
          transform: translateX(2.4rem);
}

main article .layout .rolling_container .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

main article .layout .rolling_container .inner > div {
  width: 32rem;
  min-width: 32rem;
  height: 32rem;
  border-radius: 1.6rem;
  -webkit-box-shadow: 0.8rem 1.2rem 2.4rem rgba(56, 56, 56, 0.2);
          box-shadow: 0.8rem 1.2rem 2.4rem rgba(56, 56, 56, 0.2);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 1.6rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

main article .layout .rolling_container .inner > div h6 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  padding: .6rem 1.8rem;
  border-radius: 2.4rem;
}

main article .layout .rolling_container .inner > div p {
  font-size: 1.8rem;
  color: #fff;
}

main article .layout .rolling_container .inner > div img {
  width: 12rem;
}

/********** main end **********/
/* ======================================================= */
/********** footer **********/
footer {
  padding: 6rem 2.4rem;
  background-color: #25051c;
}

footer * {
  font-size: 14px;
  line-height: 22px;
  color: #ccc;
}

footer .layout {
  width: 100%;
  max-width: 132rem;
  margin: 0 auto;
}

footer .layout .cs * {
  font-size: 16px;
}

footer .layout .cs a {
  font-weight: 600;
  display: inline-block;
  margin-right: .6rem;
}

footer .layout .info {
  margin: 2rem 0 4rem;
}

/********** footer end **********/
/* ======================================================= */
/********** common util **********/
.icon_button::after {
  content: attr(data-icon);
  font-family: var(--material-icons);
  font-size: 24px;
  font-weight: 400;
  color: var(--icon-black);
}

.rolling_controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .8rem;
  margin-top: 2.4rem;
}

.rolling_controller button {
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--border-gray);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.rolling_controller button::after {
  color: var(--icon-gray);
}

.rolling_controller button:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.rolling_controller button:hover::after {
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.pagination {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 7.2rem;
}

.pagination > button::after {
  color: var(--icon-light-gray);
}

.pagination > button:hover::after {
  color: var(--icon-black);
}

.pagination button {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 400;
}

.pagination > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination > div button {
  color: var(--text-light-gray);
  opacity: .8;
}

.pagination > div button:hover {
  opacity: 1;
  color: var(--text-black);
}

.pagination > div button.active {
  opacity: 1;
  font-weight: 600;
  color: var(--text-black);
}

/********** common util end **********/
/* ======================================================= */
@media (min-width: 1200px) {
  .pc_hidden {
    display: none;
  }
}

/* ======================================================= */
@media (max-width: 1199px) {
  .pc_hidden {
    display: block;
  }
  header {
    height: 10rem;
  }
  header > div nav {
    position: fixed;
    right: 0;
    top: 10rem;
    width: 100%;
    max-width: 36rem;
    height: calc(100vh - 10rem);
    background-color: transparent;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header > div nav .layer {
    width: 100%;
    height: calc(100% - 10rem);
    position: fixed;
    display: block;
    left: 0;
    top: 10rem;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
  }
  header > div nav ul {
    position: relative;
    left: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    background-color: #fff;
    overflow-y: auto;
  }
  header > div nav ul li {
    width: 100%;
    height: auto;
    display: block;
  }
  header > div nav ul li > a {
    width: 100%;
    min-height: 7.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--border-light-gray);
  }
  header > div nav ul li > a::after {
    display: none !important;
  }
  header > div nav ul li > a[data-depth="true"] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header > div nav ul li > a[data-depth="true"]::before {
    content: "add";
    display: block;
    font-family: var(--material-icons);
    font-size: 20px;
    font-weight: 400;
    color: var(--icon-light-gray);
  }
  header > div nav ul li > a[data-depth="true"].active::before {
    content: "remove";
  }
  header > div nav ul li > a[data-depth="true"].active ~ div {
    display: block;
  }
  header > div nav ul li > div {
    width: 100%;
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    padding: 0;
    background-color: var(--shadow-light-gray);
    border-bottom: 1px solid var(--border-light-gray);
    display: none;
  }
  header > div nav ul li > div > a {
    height: auto;
    min-height: 5.4rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
  header > div nav ul li > div > a::before {
    content: "-";
    display: block;
    font-size: 2rem;
    color: var(--icon-light-gray);
    margin-right: .6rem;
  }
  header > div nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  header > div nav.active ul {
    left: 0;
    opacity: 1;
  }
  header > div button {
    z-index: 20;
  }
  main article {
    padding: 10rem 2.4rem !important;
  }
  main article.product_list {
    padding: 16rem 2.4rem !important;
  }
  main article.product_list .list_head .list_title h2,
  main article.product_list .list_head .list_title p {
    text-align: center;
  }
  main article.product_list .list_head .list_tab {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main article.product_list .list_container {
    gap: 2rem;
  }
  main article.product_list .list_container > div {
    width: calc((100% / 3) - (4rem / 3));
  }
  main article.full {
    height: auto !important;
  }
  main article.main .layout .text_group {
    margin-top: 6rem;
  }
  main article.main .layout .image_group img {
    max-width: 32rem;
  }
  main article.prod_cards .card_container {
    gap: 3rem;
  }
  main article.prod_cards .card_container > div,
  main article.prod_cards .card_container > div.full {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    padding: 0;
  }
  main article.prod_cards .card_container > div .text_box,
  main article.prod_cards .card_container > div.full .text_box {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 3.2rem;
    position: relative;
  }
  main article.prod_cards .card_container > div .text_box h3,
  main article.prod_cards .card_container > div .text_box p,
  main article.prod_cards .card_container > div .text_box a,
  main article.prod_cards .card_container > div .text_box .tags,
  main article.prod_cards .card_container > div.full .text_box h3,
  main article.prod_cards .card_container > div.full .text_box p,
  main article.prod_cards .card_container > div.full .text_box a,
  main article.prod_cards .card_container > div.full .text_box .tags {
    margin: 0;
    padding: 0;
    word-break: keep-all;
  }
  main article.prod_cards .card_container > div .text_box h3,
  main article.prod_cards .card_container > div.full .text_box h3 {
    font-size: 2.4rem;
    margin-bottom: .6rem;
  }
  main article.prod_cards .card_container > div .text_box .tags,
  main article.prod_cards .card_container > div.full .text_box .tags {
    margin-top: 1.2rem;
    padding-bottom: 4.8rem;
  }
  main article.prod_cards .card_container > div .text_box .tags span,
  main article.prod_cards .card_container > div.full .text_box .tags span {
    font-size: 1.4rem;
  }
  main article.prod_cards .card_container > div .text_box a,
  main article.prod_cards .card_container > div.full .text_box a {
    position: absolute;
    bottom: 3.2rem;
  }
  main article.prod_cards .card_container > div .clip_box,
  main article.prod_cards .card_container > div.full .clip_box {
    width: auto;
    margin: 0;
  }
  main article.prod_cards .card_container > div .clip_box img,
  main article.prod_cards .card_container > div.full .clip_box img {
    width: 32rem;
  }
  main article.cs ul li {
    margin-left: 3rem;
    padding: 3.2rem 1.6rem;
  }
  main article.cs ul li img {
    height: 10rem;
  }
  main article.cs ul li h5 {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
  main article.cs ul li a {
    font-size: 2rem;
  }
  main article .layout .text_group,
  main article .layout .image_group {
    width: 100%;
  }
  main article .layout .text_group {
    text-align: center;
  }
  main article .layout .text_group .keywords {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main article .layout .image_group {
    margin-top: 12rem;
  }
  main article .layout .rolling_wrap {
    width: 100%;
  }
  main article .layout .rolling_container {
    width: 100%;
    margin-top: 6rem;
    left: 50%;
    -webkit-transform: translateX(-16rem);
            transform: translateX(-16rem);
    position: relative;
  }
  main article .layout .rolling_container .inner {
    width: 100%;
    position: relative;
  }
  main article .layout .rolling_container .inner > div {
    width: 100%;
    max-width: 32rem !important;
  }
  main .layout.full_flex_container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer {
    text-align: center;
  }
  footer .layout .cs a {
    display: block;
    margin-right: 0;
  }
  .rolling_controller {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) {
  header > div > h1 a {
    width: 16rem;
  }
  main article .layout .text_group h2 {
    font-size: 3.2rem;
    line-height: 4.4rem;
  }
  main article.product_list .list_container > div {
    width: calc((100% / 2) - (2rem / 2));
  }
  main article.prod_cards .card_container > div,
  main article.prod_cards .card_container > div.full {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main article.prod_cards .card_container > div .text_box,
  main article.prod_cards .card_container > div.full .text_box {
    width: 100%;
  }
  main article.prod_cards .card_container > div .clip_box,
  main article.prod_cards .card_container > div.full .clip_box {
    height: 24rem;
  }
  main article.prod_cards .card_container > div .clip_box img,
  main article.prod_cards .card_container > div.full .clip_box img {
    width: 100%;
    height: 100%;
  }
  main article.cs h2 {
    font-size: 3.2rem;
    line-height: 4.4rem;
  }
  main article.cs ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    gap: 3rem 0;
  }
  main article.cs ul li {
    width: 100%;
    margin-left: 0;
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}

@media (max-width: 374px) {
  main article.product_list .list_container > div {
    width: 100%;
  }
}
