@charset "UTF-8";
@font-face {
  font-family: "fontello";
  src: url("../fonts/fontello.eot?83201770");
  src: url("../fonts/fontello.eot?83201770#iefix") format("embedded-opentype"), url("../fonts/fontello.woff2?83201770") format("woff2"), url("../fonts/fontello.woff?83201770") format("woff"), url("../fonts/fontello.ttf?83201770") format("truetype"), url("../fonts/fontello.svg?83201770#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?83201770#fontello') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-up-thin:before {
  content: "\2191";
}

/* '↑' */
.icon-left-open:before {
  content: "\2192";
}

/* '→' */
.icon-cancel:before {
  content: "\2715";
}

/* '✕' */
.icon-left-thin:before {
  content: "\E75D";
}

/* '' */
.icon-right-thin:before {
  content: "\E804";
}

/* '' */
.icon-phone:before {
  content: "\E805";
}

/* '' */
.icon-right-open:before {
  content: "\E807";
}

/* '' */
.icon-line:before {
  content: "\E80E";
}

/* '' */
.icon-mail:before {
  content: "\F0E0";
}

/* '' */
.icon-ok-squared:before {
  content: "\F14A";
}

/* '' */
.icon-facebook:before {
  content: "\F30D";
}

/* '' */
/**
 * Swiper 5.3.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 29, 2020
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

@-ms-viewport {
  width: device-width;
}
[v-cloak] > *,
[v-cloak] {
  display: none;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  height: 100%;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "PingFangTC-Regular", "Microsoft JhengHei", "\5FAE\8EDF\6B63\9ED1\9AD4";
  font-size: 18px;
  color: #666;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

main {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

*:focus {
  outline: none;
}

a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

a,
button {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 300ms;
  color: inherit;
}

button:focus {
  outline: 0px;
}

iframe,
img {
  vertical-align: middle;
}

img {
  width: 100%;
  height: auto;
}

::selection {
  background-color: #ffbfc8;
  color: #fff;
}

input,
textarea,
button,
select {
  border-radius: 0;
  line-height: inherit;
}

input,
textarea {
  font-size: initial;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  resize: none;
}

input {
  border: none;
  border-radius: 0;
  outline: none;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}
input[type=search]::-ms-clear, input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.lazyload,
.lazyloading {
  opacity: 0.5;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

h1 {
  font-family: "PingFangTC-Semibold";
  font-size: clamp(50px, 4vw, 70px);
  line-height: 1.2;
  padding: 0 0 25px 0;
  letter-spacing: 1.15px;
  font-weight: 500;
}

h2 {
  font-family: "PingFangTC-Semibold";
  font-size: clamp(40px, 4vw, 70px);
  line-height: 1.2;
  padding: 0 0 25px 0;
  letter-spacing: 1.15px;
  font-weight: 500;
}

h3 {
  font-family: "PingFangTC-Semibold";
  font-size: clamp(30px, 3.5vw, 60px);
  line-height: 1.2;
  padding: 0 0 25px 0;
  letter-spacing: 1.15px;
  font-weight: 500;
}

h4 {
  font-family: "PingFangTC-Semibold";
  font-size: clamp(22px, 3.25vw, 50px);
  line-height: 1.17;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
  font-weight: 500;
}

h5 {
  font-family: "PingFangTC-Semibold";
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.17;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
  font-weight: 400;
}

h6 {
  font-family: "PingFangTC-Semibold";
  font-size: clamp(17px, 2.5vw, 22px);
  line-height: 1.17;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
  font-weight: 400;
}

p {
  font-family: inherit;
  font-size: clamp(14px, 3.25vw, 18px);
  line-height: 1.5;
  padding: 0 0 0 0;
  letter-spacing: 1px;
  font-weight: 500;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 70px;
  }

  h3 {
    font-size: 60px;
  }

  h4 {
    font-size: 50px;
  }

  h5 {
    font-size: 28px;
  }

  h6 {
    font-size: 22px;
  }

  p {
    font-size: 18px;
  }
}
.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1440px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.gap-1 {
  padding: 40px 0;
}

.gap-2 {
  padding: 50px 0;
}

.gap-3 {
  padding: 80px 0;
}

@media all and (min-width: 768px) {
  .gap-1 {
    padding: 55px 0;
  }

  .gap-2 {
    padding: 65px 0;
  }

  .gap-3 {
    padding: 100px 0;
  }
}
@media all and (min-width: 992px) {
  .gap-1 {
    padding: 65px 0;
  }

  .gap-2 {
    padding: 85px 0;
  }

  .gap-3 {
    padding: 125px 0;
  }
}
@media all and (min-width: 1440px) {
  .gap-1 {
    padding: 80px 0;
  }

  .gap-2 {
    padding: 100px 0;
  }

  .gap-3 {
    padding: 150px 0;
  }
}
.white {
  color: #fff;
}

.gray {
  color: #666;
}

.grayD {
  color: #333;
}

.grayL {
  color: #A8A7A7;
}

.black {
  color: #000;
}

.pink {
  color: #ffbfc8;
}

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #4D4D4D;
}

.bg-black {
  background: #000;
}

.bg-pink {
  background: #ffbfc8;
}

.editorPanel {
  position: relative;
  background: transparent;
  color: #666;
  padding: 20px 0 20px 0;
}
.editorPanel h1 {
  font-size: clamp(50px, 4vw, 70px);
  line-height: 1.2;
  padding: 0 0 25px 0;
  letter-spacing: 1.15px;
}
.editorPanel h2 {
  font-size: clamp(40px, 4vw, 70px);
  line-height: 1.2;
  padding: 0 0 25px 0;
  letter-spacing: 1.15px;
}
.editorPanel h3 {
  font-size: clamp(30px, 3.5vw, 60px);
  line-height: 1.2;
  padding: 0 0 25px 0;
  letter-spacing: 1.15px;
}
.editorPanel h4 {
  font-size: clamp(22px, 3.25vw, 50px);
  line-height: 1.17;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
}
.editorPanel h5 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.17;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
}
.editorPanel h6 {
  font-size: clamp(17px, 2.5vw, 22px);
  line-height: 1.17;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
}
.editorPanel p {
  font-size: clamp(14px, 3.25vw, 18px);
  line-height: 1.67;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
}
.editorPanel span {
  font-size: clamp(14px, 3.25vw, 18px);
  line-height: 1.67;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
}
.editorPanel li {
  font-size: clamp(14px, 3.25vw, 18px);
  line-height: 1.67;
  padding: 0 0 10px 0;
  letter-spacing: 1.15px;
}
.editorPanel a {
  font-size: clamp(14px, 3.25vw, 18px);
  line-height: 1.67;
  padding: 0 0 20px 0;
  letter-spacing: 1.15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .editorPanel h1 {
    font-size: 70px;
  }
  .editorPanel h2 {
    font-size: 70px;
  }
  .editorPanel h3 {
    font-size: 60px;
  }
  .editorPanel h4 {
    font-size: 50px;
  }
  .editorPanel h5 {
    font-size: 28px;
  }
  .editorPanel h6 {
    font-size: 22px;
  }
  .editorPanel p {
    font-size: 18px;
  }
  .editorPanel span {
    font-size: 18px;
  }
  .editorPanel li {
    font-size: 18px;
  }
  .editorPanel a {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) {
  .editorPanel {
    padding: 20px 0 20px 0;
  }
}
@media all and (min-width: 992px) {
  .editorPanel {
    padding: 20px 0 20px 0;
  }
}
.editorPanel b,
.editorPanel strong {
  display: block;
  font-weight: bold;
  line-height: 1.5rem;
  padding-bottom: 1rem;
}
.editorPanel em {
  font-style: italic;
}
.editorPanel a {
  color: #AA8F76;
}
.editorPanel p {
  font-weight: 400;
}
.editorPanel h1, .editorPanel h2, .editorPanel h3, .editorPanel h4 {
  font-weight: bold;
  text-transform: uppercase;
}
.editorPanel ol {
  list-style: decimal;
  padding: 0 20px 0 20px;
}
.editorPanel ul {
  list-style: none;
  list-style-image: none;
  padding: 0 20px 0 20px;
}
.editorPanel ul li {
  position: relative;
}
.editorPanel ul li:before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  left: -20px;
  top: 11px;
  background: #fcc5be;
  border-radius: 50%;
}
.editorPanel hr {
  border: solid #eee;
  width: 100%;
  border-top-width: 1px;
  border-bottom-width: 0;
  margin-block-start: 20px;
  margin-block-end: 20px;
}
.editorPanel img {
  width: 100%;
  height: auto;
  padding: 20px 0 20px 0;
}
.editorPanel figure div {
  padding: 20px 0;
}
.editorPanel figure.col-xs-6 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.editorPanel figure.col-xs-6 div {
  width: calc(50% - 10px);
}
.editorPanel figure.col-xs-6 img {
  padding: 0;
}
.editorPanel figure .spec img {
  height: 100px;
  width: 100px;
  margin-bottom: 25px;
}
.editorPanel figure.step .step--num {
  position: relative;
  width: 200px;
}
.editorPanel figure.step .step--num:before {
  position: absolute;
  content: attr(step-num) "";
  font-family: "M PLUS Rounded 1c";
  font-size: 60px;
  top: 8px;
  left: 0;
  z-index: 1;
  color: #666;
  font-weight: bold;
}
.editorPanel figure.step .step--num:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 10px;
  border-radius: 68% 32% 42% 58%/53% 56% 44% 47%;
  height: 40px;
  width: 40px;
  z-index: 0;
  transition: 0.4s;
}
.editorPanel figure.step.isframe .step--num:after {
  background: #C3E9F2;
}
.editorPanel figure.step.isframe img {
  padding: 0;
}
.editorPanel figure.step.isframe .frame-bubble {
  position: relative;
  width: 80%;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  overflow: hidden;
  padding: 0;
  margin: 0 auto 20px;
}
.editorPanel figure.step.with-arrow .step--num:after {
  background: #e6c2db;
}
.editorPanel figure.step-w {
  align-items: inherit;
}
.editorPanel figure.step-w .step--num {
  position: relative;
  width: 350px;
  margin: auto;
}
.editorPanel figure.step-w .step--num:before {
  position: absolute;
  content: attr(step-num) "";
  font-family: "M PLUS Rounded 1c";
  font-size: 60px;
  top: 8px;
  left: 0;
  z-index: 1;
  color: #666;
  font-weight: bold;
}
.editorPanel figure.step-w .step--num:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 10px;
  border-radius: 68% 32% 42% 58%/53% 56% 44% 47%;
  height: 40px;
  width: 40px;
  z-index: 0;
  transition: 0.4s;
}
.editorPanel figure.step-w.with-arrow .step--num:after {
  background: #D2DADD;
}
@media all and (min-width: 768px) {
  .editorPanel figure.col-sm-6 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .editorPanel figure.col-sm-6 div {
    width: calc(50% - 10px);
  }
  .editorPanel figure.col-sm-6 img {
    padding: 0 20px 20px;
  }
}
@media all and (min-width: 992px) {
  .editorPanel figure {
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin: 0 -20px;
  }
  .editorPanel figure div {
    flex: 1;
    padding: 20px 20px;
  }
  .editorPanel figure div img {
    padding: 20px;
  }
  .editorPanel figure .spec img {
    height: 155px;
    width: 155px;
    margin-bottom: 50px;
  }
  .editorPanel figure.step {
    align-items: flex-start;
  }
  .editorPanel figure.step img {
    padding: 0;
  }
  .editorPanel figure.step.with-arrow .step--num {
    margin: 0 auto;
  }
  .editorPanel figure.step.with-arrow > div:not(:last-child) {
    position: relative;
  }
  .editorPanel figure.step.with-arrow > div:not(:last-child):after {
    content: "";
    position: absolute;
    right: -10%;
    top: 27.5%;
    height: 61.8px;
    width: 81.6px;
    background: url(../images/step-path.png) center center/cover no-repeat;
    z-index: -1;
  }
  .editorPanel figure.step.with-arrow > div:nth-child(1) {
    z-index: 2;
  }
  .editorPanel figure.step.with-arrow > div:nth-child(2) {
    z-index: 1;
  }
  .editorPanel figure.col-md-3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .editorPanel figure.col-md-3 div {
    flex: 0 1 auto;
    width: calc(25% - 10px);
    padding: 20px;
  }
  .editorPanel figure.col-md-3 img {
    padding: 0 0 20px 0;
  }
}
@media all and (min-width: 1440px) {
  .editorPanel figure {
    margin: 0 -40px;
  }
  .editorPanel figure div {
    padding: 20px 40px;
  }
  .editorPanel figure.step div {
    padding: 20px;
  }
}
@media all and (min-width: 992px) {
  .editorPanel.-center {
    width: 83.33%;
    margin: 0 auto;
  }
}
.editorPanel .w-80 {
  width: 100%;
}
@media all and (min-width: 1440px) {
  .editorPanel .w-80 {
    width: 83.33%;
  }
}
.editorPanel .col-10 {
  width: 100%;
}
@media all and (min-width: 1440px) {
  .editorPanel .col-10 {
    width: 83.3333%;
  }
}
.editorPanel .col-6 {
  width: 100%;
}
@media all and (min-width: 768px) {
  .editorPanel .col-6 {
    width: 80%;
  }
}
@media all and (min-width: 1440px) {
  .editorPanel .col-6 {
    width: 50%;
  }
}
.editorPanel .col-3 {
  width: 100%;
}
@media all and (min-width: 768px) {
  .editorPanel .col-3 {
    width: 60%;
  }
}
@media all and (min-width: 1440px) {
  .editorPanel .col-3 {
    width: 40%;
  }
}
.editorPanel .center {
  text-align: center;
}
.editorPanel .icon {
  margin-bottom: 20px;
}
.editorPanel .flex-title {
  display: flex;
  align-items: center;
  padding: 0;
}
.editorPanel .flex-title .icon {
  padding: 0;
  flex: 0 1 60px;
  padding-right: 20px;
}
.editorPanel .flex-title.jc-c {
  justify-content: center;
}

.l-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  transition: 0.5s;
  padding: 0 20px;
  z-index: 100;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
}
.l-header--logo {
  align-self: center;
}
.l-header--list {
  display: none;
}
.l-header--hamburger {
  position: relative;
  z-index: 20;
  cursor: pointer;
}
.l-header--hamburger .hamburger-box {
  position: relative;
  width: 50px;
  height: 50px;
}
.l-header--hamburger .hamburger-box #burger {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.l-header--hamburger .hamburger-box #burger .line {
  display: block;
  width: 30px;
  height: 2px;
  margin: 7px auto;
  background: #666666;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
}
.l-header--hamburger .hamburger-box._active #burger .line:nth-child(1) {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.l-header--hamburger .hamburger-box._active #burger .line:nth-child(2) {
  opacity: 0;
}
.l-header--hamburger .hamburger-box._active #burger .line:nth-child(3) {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}
.l-header--menu {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.l-header--menu_item {
  opacity: 0;
  transform: translateX(40%);
  pointer-events: none;
  display: block;
  margin: 0.25em 0;
  transition: transform 0.4s, opacity 0.3s ease-out;
}
.l-header--menu_item:nth-child(2) {
  transition-delay: 0.05s;
}
.l-header--menu_item:nth-child(3) {
  transition-delay: 0.1s;
}
.l-header--menu_item:nth-child(4) {
  transition-delay: 0.15s;
}
.l-header--menu_item:nth-child(5) {
  transition-delay: 0.2s;
}
.l-header--menu_item:nth-child(6) {
  transition-delay: 0.25s;
}
.l-header--menu_item:nth-child(7) {
  transition-delay: 0.3s;
}
.l-header--menu_item li {
  padding: 10px 0 10px 20px;
}
.l-header--menu .navigation {
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  margin: 50px 0;
  padding: 100px 50px;
}
.l-header--menu .navigation::-webkit-scrollbar {
  display: none;
}
.l-header--menu .menuPanel {
  position: relative;
  width: 100%;
}
.l-header--menu .menuPanel--img {
  width: 35px;
}
.l-header--menu .menuPanel--content {
  width: calc(100% - 50px);
}
.l-header--menu.is-opened {
  pointer-events: auto;
}
.l-header--menu.is-opened .l-header--menu_item {
  opacity: 1;
  transform: translateY(0) rotate(0);
  pointer-events: auto;
  transition: 1s cubic-bezier(0.23, 1, 0.355, 1.4);
}
.l-header--menu.is-opened .l-header--menu_item:nth-child(1) {
  transition-delay: 0.85s;
}
.l-header--menu.is-opened .l-header--menu_item:nth-child(2) {
  transition-delay: 0.8s;
}
.l-header--menu.is-opened .l-header--menu_item:nth-child(3) {
  transition-delay: 0.75s;
}
.l-header--menu.is-opened .l-header--menu_item:nth-child(4) {
  transition-delay: 0.7s;
}
.l-header--menu.is-opened .l-header--menu_item:nth-child(5) {
  transition-delay: 0.65s;
}
.l-header--menu.is-opened .l-header--menu_item:nth-child(6) {
  transition-delay: 0.6s;
}
.l-header--dropdown {
  display: none;
}
.l-header--overlay {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.l-header--overlay_path:nth-child(1) {
  fill: #E6C2DB;
}
.l-header--overlay_path:nth-child(2) {
  fill: #FCC5D4;
}
.l-header._active {
  background: #fff;
}
@media all and (min-width: 992px) {
  .l-header--list {
    display: block;
  }
  .l-header--list ul {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .l-header--list li {
    padding: 2.5px 10px;
    transition: 0.4s;
  }
  .l-header--list li:hover {
    color: #ffbfc8;
  }
  .l-header--list li._active {
    color: #ffbfc8;
  }
  .l-header--list a {
    padding: 0 5px;
    line-height: 80px;
  }
  .l-header--list .-isicon {
    font-size: 24px;
  }
  .l-header--dropdown {
    display: block;
    position: absolute;
    width: 100%;
    background: transparent;
    width: calc(100% + 40px);
    left: -20px;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
    pointer-events: none;
  }
  .l-header--dropdown:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    transform: scale3d(1, 0, 1);
    transform-origin: top;
    transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  }
  .l-header--dropdown._ishover {
    pointer-events: visible;
    opacity: 1;
  }
  .l-header--dropdown._ishover:after {
    transform: scale3d(1, 1, 1);
  }
  .l-header--dropdown .dropdownPanel {
    position: relative;
    z-index: 1;
    padding: 100px 0 50px;
    flex-wrap: wrap;
  }
  .l-header--dropdown .dropdownPanel .m-seriesPanel {
    width: 16.66%;
  }
  .l-header--dropdown .dropdownPanel .m-seriesPanel:hover .m-seriesPanel--img {
    transform: translate3d(0, -10px, 0);
  }
  .l-header--dropdown .dropdownPanel .m-seriesPanel--img {
    will-change: transform;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    max-width: 80px !important;
  }
  .l-header--dropdown .dropdownPanel .m-seriesPanel--subtitle {
    font-size: 16px !important;
  }
  .l-header--dropdown .dropdownPanel .m-seriesPanel--title {
    font-size: 17px !important;
  }
  .l-header--hamburger {
    display: none;
  }
}
@media all and (min-width: 1200px) {
  .l-header--list li {
    padding: 2.5px 20px;
  }
}

.shape-overlays.is-opened {
  pointer-events: auto;
}

.l-footer {
  position: relative;
  width: 100%;
  padding: 15px 0;
}
.l-footer--title {
  font-weight: 500;
  letter-spacing: normal;
}
.l-footer--copyright {
  font-size: 13px;
}
.l-footer .m-contactInfo {
  padding-bottom: 30px;
}
.l-footer .bubbleBox {
  display: none;
  position: absolute;
  z-index: 0;
}
@media all and (min-width: 768px) {
  .l-footer {
    padding: 30px 0;
  }
  .l-footer .m-contactInfo {
    padding-bottom: 65px;
  }
}
@media all and (min-width: 992px) {
  .l-footer .bubbleBox {
    display: block;
    bottom: 0%;
    left: 20%;
  }
}

.m-btn {
  position: relative;
  width: 205px;
  height: 55px;
  text-align: center;
  letter-spacing: 1.8px;
  border-radius: 33px;
  line-height: 55px;
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.m-btn a {
  width: 100%;
}
@media all and (min-width: 992px) {
  .m-btn:hover {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
    color: #fff;
  }
}

.m-contactInfo-item {
  padding: 2.5px 0;
}
.m-contactInfo a {
  position: relative;
  height: 100%;
  width: 100%;
}
.m-contactInfo span {
  display: inline-block;
  padding-left: 5px;
  letter-spacing: 1.8px;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
}

.m-editorNavigation {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 35px 0;
  border-top: 1px solid #eee;
}
.m-editorNavigation p {
  color: #999;
  padding-bottom: 10px;
}
.m-editorNavigation--title {
  letter-spacing: 2.2px;
}
@media all and (min-width: 992px) {
  .m-editorNavigation p {
    transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  }
  .m-editorNavigation--block.left:hover p {
    transform: translate3d(20px, 0, 0);
  }
  .m-editorNavigation--block.right:hover p {
    transform: translate3d(-20px, 0, 0);
  }
}

form {
  position: relative;
  width: 100%;
}

select::-ms-expand {
  display: none;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.form-group input[type=file] {
  opacity: 0;
}
.form-group label {
  font-size: 18px;
  color: #666;
  transform: translateY(35px);
  transition: 0.5s;
  order: 1;
  top: 0 !important;
  padding-left: 30px;
  pointer-events: none;
}
.form-group p.error-message {
  position: absolute;
  top: 35px;
  left: -15px;
  width: 100%;
  height: auto;
  text-align: right;
  color: #f34545;
  font-size: 12px;
  order: 0;
  font-weight: bold;
  pointer-events: none;
}
.form-group input, .form-group textarea {
  position: static;
  font-family: initial;
  border-radius: 25px;
  background: rgba(248, 248, 248, 0.9);
  border: 1px solid #f8f8f8;
  height: 50px;
  order: 2;
  color: #666;
  width: 100%;
  font-size: 18px;
  letter-spacing: 1.8px;
  transition: 0.5s;
}
.form-group input {
  padding: 15px 10px 15px 125px;
  line-height: 24px;
}
.form-group input.error {
  border: 1px solid #f34545;
}
.form-group .error-box {
  order: 2;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid rgba(255, 191, 200, 0.5);
}
.form-group textarea {
  height: 250px;
  padding: 15px 30px 30px 125px;
  line-height: 1.5;
}
.form-group textarea.error {
  border: 1px solid #f34545;
}

.form-button {
  position: relative;
  margin: 40px 10px 80px;
  text-align: center;
}

.m-navigation {
  position: absolute;
  width: 160px;
  right: 20px;
  bottom: 40px;
}
.m-navigation--next, .m-navigation--prev {
  position: absolute;
  top: 0;
  height: 65px;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.m-navigation--next:after, .m-navigation--prev:after {
  content: "";
  background: rgba(238, 238, 238, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -2;
}
.m-navigation--next:before, .m-navigation--prev:before {
  content: "";
  background: rgba(238, 238, 238, 0.6);
  position: absolute;
  top: 12.5px;
  left: 12.5px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  z-index: -1;
}
.m-navigation--next {
  right: 0;
}
.m-navigation--prev {
  left: 0;
}
.m-navigation .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
@media all and (min-width: 768px) {
  .m-navigation {
    width: 200px;
    bottom: 20px;
  }
}
@media all and (min-width: 1200px) {
  .m-navigation {
    width: 100%;
    right: auto;
    bottom: auto;
    left: 0px;
    top: calc(50% + 32.5px);
  }
  .m-navigation i {
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  }
  .m-navigation--next:hover i {
    transform: translate3d(5px, 0, 0);
  }
  .m-navigation--prev:hover i {
    transform: translate3d(-5px, 0, 0);
  }
}
@media all and (min-width: 1440px) {
  .m-navigation {
    width: calc(100% + 130px);
    left: -65px;
  }
}

.m-newsCard {
  position: relative;
}
.m-newsCard--img {
  display: none;
}
.m-newsCard--info {
  position: relative;
  border-radius: 25px;
  padding: 30px 20px;
  box-shadow: 3px 3px 12px 0 rgba(0, 0, 0, 0.16);
}
.m-newsCard--date {
  font-size: 15px;
}
.m-newsCard--title {
  padding: 10px 0 15px;
}
.m-newsCard--desc {
  line-height: 1.88;
  letter-spacing: 1.6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 50px;
}
.m-newsCard--btn {
  margin-top: 40px;
}
@media all and (min-width: 768px) {
  .m-newsCard--desc {
    height: 60px;
  }
}
@media all and (min-width: 992px) {
  .m-newsCard--img {
    display: block;
    position: absolute;
    top: 30px;
    left: -10px;
    width: 37%;
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
  }
  .m-newsCard--info {
    padding: 40px 20px 40px 38%;
  }
}
@media all and (min-width: 1200px) {
  .m-newsCard--img {
    top: 40px;
    left: -40px;
  }
  .m-newsCard--info {
    padding: 60px 60px 60px 35%;
  }
}

.m-pageCounter {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: clamp(14px, 3vw, 18px);
  letter-spacing: 1.8px;
}
@media all and (min-width: 992px) {
  .m-pageCounter {
    top: 50%;
    bottom: auto;
  }
}

.m-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.m-pagination--icon {
  display: inline-block;
  font-size: 30px;
  line-height: 40px;
  height: 40px;
  width: 40px;
}
.m-pagination--num {
  display: inline-block;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.m-pagination--num._active {
  color: #fff;
  border-radius: 50%;
  background: #ffbfc8;
}

.m-productSideBox {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 104;
}
.m-productSideBox--flex {
  height: 100%;
}
.m-productSideBox--bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(68, 68, 68, 0.8);
}
.m-productSideBox--close {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-productSideBox--close i {
  font-size: 25px;
}
.m-productSideBox--panel {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 20px 20px;
}
.m-productSideBox--img {
  position: relative;
  width: 33%;
  max-width: 360px;
  margin: 0 auto;
  height: 220px;
}
.m-productSideBox--content {
  position: relative;
  width: 100%;
  height: calc(100% - 220px);
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 20px;
}
.m-productSideBox--desc {
  border-bottom: dashed 3px rgba(102, 102, 102, 0.2);
  padding: 20px 0;
}
.m-productSideBox--desc li {
  position: relative;
  line-height: 1.67;
  letter-spacing: 1.8px;
}
.m-productSideBox--desc li:before {
  font-family: "fontello";
  content: "\F14A";
  margin-right: 10px;
}
.m-productSideBox--subTitle {
  padding-bottom: 10px;
}
.m-productSideBox--tagBox {
  width: 100% !important;
  margin: 0;
}
.m-productSideBox--tagBox p {
  font-size: 16px;
  pointer-events: visible !important;
}
.m-productSideBox--tagBox .m-tag {
  padding: 7.5px 20px;
}
.m-productSideBox .editor {
  padding: 20px 0;
}
.m-productSideBox .editor li {
  position: relative;
  padding-left: 20px;
}
.m-productSideBox .editor li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fcc5be;
}
.m-productSideBox .editor h6 {
  padding: 0 0 10px 0;
}
.m-productSideBox .editor p {
  font-weight: 400;
  padding: 0 0 20px 0;
}
@media all and (min-width: 768px) {
  .m-productSideBox--panel {
    width: 85%;
    padding: 100px 50px 50px;
    margin-left: auto;
    margin-right: 0;
  }
  .m-productSideBox--img {
    width: 30%;
    height: 320px;
  }
  .m-productSideBox--content {
    height: calc(100% - 320px);
  }
  .m-productSideBox--close {
    top: 30px;
    left: -80px;
  }
}
@media all and (min-width: 992px) {
  .m-productSideBox--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .m-productSideBox--img {
    width: 33%;
    height: auto;
    margin-left: 0;
    margin-right: auto;
  }
  .m-productSideBox--close {
    top: 50px;
    left: -100px;
  }
  .m-productSideBox--content {
    width: 60%;
    height: 100%;
    margin-top: 0;
    padding-right: 15px;
  }
  .m-productSideBox--panel {
    padding: 100px 80px;
  }
}
@media all and (min-width: 1200px) {
  .m-productSideBox--panel {
    width: 66%;
    padding: 100px 80px;
  }
  .m-productSideBox--content::-webkit-scrollbar {
    width: 10px;
  }
  .m-productSideBox--content::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
  }
  .m-productSideBox--content::-webkit-scrollbar-thumb {
    background: #fcc5be;
    border-radius: 5px;
  }
}
.m-productSideBox.Sidebox-leave-to .m-productSideBox--bg {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.m-productSideBox.Sidebox-leave-to .m-productSideBox--panel {
  transform: translate3d(110%, 0, 0);
}
.m-productSideBox.Sidebox-leave-to .m-productSideBox--close {
  opacity: 0;
}
.m-productSideBox.Sidebox-leave-active {
  transition: 0.5s;
}
.m-productSideBox.Sidebox-leave-active .m-productSideBox--bg {
  transition: 0.5s;
}
.m-productSideBox.Sidebox-leave-active .m-productSideBox--panel {
  transition: 0.5s;
}
.m-productSideBox.Sidebox-leave-active .m-productSideBox--close {
  transition: 0.5s;
}
.m-productSideBox.Sidebox-enter .m-productSideBox--bg {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.m-productSideBox.Sidebox-enter .m-productSideBox--panel {
  transform: translate3d(110%, 0, 0);
}
.m-productSideBox.Sidebox-enter .m-productSideBox--close {
  opacity: 0;
}
.m-productSideBox.Sidebox-enter-active {
  transition: 1s;
}
.m-productSideBox.Sidebox-enter-active .m-productSideBox--bg {
  transition: 0.7s;
}
.m-productSideBox.Sidebox-enter-active .m-productSideBox--panel {
  transition: 0.7s 0.3s;
}
.m-productSideBox.Sidebox-enter-active .m-productSideBox--close {
  transition: 0.4s 0.4s;
}

@keyframes colors {
  0% {
    fill: #999;
  }
  25% {
    fill: #eee;
  }
  50% {
    fill: #fff;
  }
  75% {
    fill: #eee;
  }
  100% {
    fill: #999;
  }
}
@keyframes jump {
  0% {
    transform: translate(0%, -50%) scale(1.25, 0.75);
  }
  50% {
    transform: translate(0%, -125%) scale(1, 1);
  }
  55% {
    transform: translate(0%, -125%) rotate(2.5deg);
  }
  70% {
    transform: translate(0%, -125%) rotate(-2.5deg);
  }
  100% {
    transform: translate(0%, -50%) scale(1.25, 0.75);
  }
}
.m-searching {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 105;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-searching:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
.m-searching .loading {
  z-index: 2;
}
.m-searching .loading .test {
  transform: translate(0%, -50%);
  animation: jump 1s infinite linear;
}
.m-searching .loading .test g {
  animation: colors 1s infinite linear;
}
.m-searching .loading .d-1 {
  animation-delay: 0.2s;
}
.m-searching .loading .d-2 {
  animation-delay: 0.4s;
}
.m-searching.searching-leave-to {
  opacity: 0;
}
.m-searching.searching-leave-to:after {
  opacity: 0;
}
.m-searching.searching-leave-to .loading {
  opacity: 0;
}
.m-searching.searching-leave-active {
  transition: 0.5s;
}
.m-searching.searching-leave-active:after {
  transition: 0.3s 0.2s ease-in-out;
}
.m-searching.searching-leave-active .loading {
  transition: 0.3s ease-in-out;
}
.m-searching.searching-enter {
  opacity: 0;
}
.m-searching.searching-enter:after {
  opacity: 0;
}
.m-searching.searching-enter .loading {
  opacity: 0;
}
.m-searching.searching-enter-active {
  transition: 0.7s;
}
.m-searching.searching-enter-active:after {
  transition: 0.3s ease-in-out;
}
.m-searching.searching-enter-active .loading {
  transition: 0.3s 0.3s ease-in-out;
}

.m-seriesPanel {
  position: relative;
  text-align: center;
}
.m-seriesPanel--img {
  max-width: 100px;
}
.m-seriesPanel--bubble {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 80%;
  padding-bottom: 80%;
  z-index: -1;
  border-radius: 43% 65% 67% 42%/71% 60% 44% 35%;
}
.m-seriesPanel--content {
  padding-top: 15px;
}
.m-seriesPanel--title {
  letter-spacing: 1.2px;
  padding: 5px 0 15px;
}
.m-seriesPanel--subtitle {
  font-size: clamp(16px, 2.25vw, 20px);
  text-transform: uppercase;
}
.m-seriesPanel--desc {
  font-size: clamp(13px, 3vw, 16px);
  letter-spacing: 1.6px;
}
@media all and (min-width: 768px) {
  .m-seriesPanel--img {
    max-width: 150px;
  }
  .m-seriesPanel--title {
    letter-spacing: 1.8px;
  }
}
@media all and (min-width: 992px) {
  .m-seriesPanel a:hover .m-seriesPanel--bubble {
    border-radius: 50%;
  }
  .m-seriesPanel--bubble {
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  }
}

.l-series .seriesSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.l-series .bubbleBox {
  display: none;
}

@media all and (min-width: 1200px) {
  .l-series .bubbleBox {
    display: block;
    position: absolute;
    top: -100px;
    left: 10%;
    z-index: -1;
  }
}
.m-tagBox {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.m-tagBox.center {
  justify-content: center;
}
.m-tagBox--board {
  padding: 45px 10px 90px;
  border-radius: 25px;
  box-shadow: 3px 3px 12px 0 rgba(0, 0, 0, 0.16);
}
.m-tagBox--board .m-btn {
  position: absolute;
  bottom: -27.5px;
  left: calc(50% - 102.5px);
}
@media all and (min-width: 992px) {
  .m-tagBox {
    width: 70%;
    margin: 0 auto;
  }
  .m-tagBox--board {
    padding: 45px 25px 90px;
  }
}

.m-tag {
  padding: 12.5px 10px;
  border: solid 3px rgba(221, 221, 221, 0.66);
  border-radius: 33px;
  margin: 5px 1.5px;
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.m-tag._active {
  border: solid 3px #ffbfc8;
}
.m-tag a {
  letter-spacing: 1.6px;
}
.m-tag--shadow._active {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
@media all and (min-width: 768px) {
  .m-tag {
    margin: 10px 5px;
    padding: 12.5px 20px;
  }
}
@media all and (min-width: 992px) {
  .m-tag:hover {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
  }
}

.m-titleBox {
  position: relative;
}
.m-titleBox--left {
  display: flex;
  align-items: flex-end;
}
.m-titleBox--right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.m-titleBox--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-titleBox--icon {
  transform: scale(0.8);
  transform-origin: bottom;
}
.m-titleBox--desc {
  font-size: clamp(17px, 2.5vw, 22px);
  letter-spacing: 2.2px;
  padding: 20px 20px 0;
  white-space: nowrap;
  overflow: hidden;
}
.m-titleBox--desc.noicon {
  padding: 20px 0 0;
}
.m-titleBox--desc span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
}
.m-titleBox--title {
  letter-spacing: 6px;
  padding: 5px 0;
}
@media all and (min-width: 768px) {
  .m-titleBox--icon {
    transform: scale(1);
  }
}

.m-toTop {
  position: fixed;
  bottom: 50px;
  right: 24px;
  height: 60px;
  width: 60px;
  z-index: 3;
  background: radial-gradient(farthest-corner at 20px 20px, #BE6495 0%, #F27B81 40%, #EED759 100%);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
  padding: 10px 0;
}
.m-toTop i, .m-toTop p {
  font-size: 13px;
  font-weight: 700;
}
.m-toTop._active {
  opacity: 1;
}
@media all and (min-width: 992px) {
  .m-toTop i {
    display: inline-block;
    transition: 0.4s;
  }
  .m-toTop:hover i {
    transform: translate3d(0, -5px, 0);
  }
}

.m-social {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 120px;
  right: 24px;
  z-index: 2;
}
.m-social a {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-social a.line {
  background: #39AE41;
  margin-bottom: 12px;
}
.m-social a.msg {
  background: #007FFF;
}
.m-social a img {
  width: 60%;
  height: auto;
}

#about .l-banners {
  position: relative;
}
#about .l-banners .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 54.55%;
  pointer-events: none;
  z-index: -1;
}
#about .l-banners .desc {
  position: relative;
  transform: translate3d(0, 22.5%, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#about .l-banners .desc h3 {
  width: 50%;
}
#about .l-banners .bubbleBox {
  position: absolute;
  top: 20%;
  left: 0;
}
#about .l-banners .bubbleBox .bubbleBox-t1 {
  display: none;
}
#about .l-banners .bubbleBox .bubbleBox-t2 {
  left: -80%;
  z-index: -1;
}
#about .l-editors {
  position: relative;
  height: 100%;
  overflow: hidden;
}
#about .l-editors .bg {
  position: absolute;
  bottom: 0;
  left: -20%;
  width: 720px;
  padding-bottom: 458px;
  pointer-events: none;
  transform: rotate(15deg);
}
#about .l-editors .bubbleBox {
  position: absolute;
  bottom: 0;
  right: 0;
}
#about .l-editors .bubbleBox .bubbleBox-t1 {
  display: none;
}
@media all and (min-width: 768px) {
  #about .l-banners {
    height: 100vh;
    max-height: 500px;
  }
  #about .l-banners .desc {
    width: 60%;
    height: 100vh;
    max-height: 500px;
  }
  #about .l-banners .desc h3 {
    width: auto;
  }
  #about .l-banners .bubbleBox .bubbleBox-t1 {
    left: 70%;
    display: block;
  }
  #about .l-editors .bg {
    width: 900px;
    padding-bottom: 572px;
  }
  #about .l-editors .bubbleBox {
    overflow: hidden;
    padding: 20px 0;
  }
  #about .l-editors .bubbleBox .bubbleBox-t1 {
    display: block;
    left: 50px;
    z-index: -1;
  }
}
@media all and (min-width: 992px) {
  #about .l-banners {
    max-height: 700px;
  }
  #about .l-banners .desc {
    max-height: 700px;
    transform: translate3d(0, 17.5%, 0);
  }
}
@media all and (min-width: 1200px) {
  #about .l-banners .desc {
    width: 41.66%;
  }
  #about .l-editors .bg {
    width: 1440px;
    padding-bottom: 916px;
  }
}
@media all and (min-width: 1440px) {
  #about .l-banners {
    max-height: none;
  }
  #about .l-banners .desc {
    max-height: none;
  }
}

html.no-webp .l-banners .bg {
  background: url(../images/about-banner.png) center center/cover no-repeat !important;
}

#contact .l-contact {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#contact .contact-block {
  position: relative;
}
#contact .conact-flex {
  display: block;
}
#contact .socialMediaBox {
  padding: 20px 0;
}
#contact .socialMediaBox--block {
  display: flex;
  align-items: flex-end;
  padding: 20px 0;
}
#contact .socialMediaBox--block div {
  padding: 0 5px;
}
#contact .bg {
  position: absolute;
  top: -5%;
  left: 15%;
  width: 100%;
  padding-bottom: 63.61%;
}
#contact .sellerSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#contact .sellerSlider--navigation {
  bottom: 0;
}
#contact .sellerBox {
  display: flex;
  flex-wrap: wrap;
}
#contact .sellerBox li {
  width: 33.333%;
}
#contact .bubbleBox {
  display: none;
}
@media all and (min-width: 768px) {
  #contact .bg {
    top: -15%;
  }
  #contact .socialMediaBox {
    display: flex;
    max-width: 728px;
    justify-content: space-between;
    padding: 20px 0 50px;
  }
  #contact .socialMediaBox--block {
    padding: 0;
  }
  #contact .socialMediaBox--link {
    border-bottom: 1px solid #ffbfc8;
  }
  #contact .sellerSlider {
    max-width: 500px;
    margin: 0 auto;
  }
  #contact .sellerSlider--navigation {
    top: calc(50% - 32.5px);
    width: 650px;
    left: calc(50% - 325px);
  }
  #contact .bubbleBox {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
  }
  #contact .bubbleBox-t1.\--s {
    top: 100px;
    position: absolute;
    left: -20px;
    z-index: -1;
    animation-delay: 0.5s;
  }
  #contact .bubbleBox-t2.\--s {
    top: 0;
    position: absolute;
    right: -30%;
  }
}
@media all and (min-width: 1200px) {
  #contact .bg {
    top: -30%;
  }
  #contact .conact-flex {
    display: flex;
    justify-content: space-between;
  }
  #contact .socialMediaBox {
    max-width: auto;
    width: 50%;
  }
  #contact .contact-block {
    width: 50%;
    height: 100%;
  }
  #contact .sellerSlider {
    margin-left: auto;
    margin-right: 0;
  }
  #contact .sellerSlider--navigation {
    left: 25px;
  }
  #contact .bubbleBox-t1.\--s {
    left: -40%;
  }
  #contact .emptyBox {
    height: 560px;
  }
}
@media all and (min-width: 1440px) {
  #contact .bg {
    top: -40%;
  }
}
@media all and (min-width: 1800px) {
  #contact .bg {
    top: -50%;
  }
  #contact .sellerSlider--navigation {
    left: 105px;
  }
}

#news .l-news {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#news .m-tagBox {
  padding: 25px 0;
}
#news .m-tagBox .m-tag {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}
#news .newsList {
  position: relative;
  width: 100%;
}
#news .newsList li {
  padding: 20px 0;
}
#news .bubbleBox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -2;
}
#news .bubbleBox .bubbleBox-t1 {
  position: absolute;
  top: 0;
  left: -10%;
}
#news .bubbleBox .bubbleBox-t2 {
  position: absolute;
  top: 0;
  left: 80%;
}
#news .bg {
  position: absolute;
  top: -5%;
  left: 15%;
  width: 100%;
  padding-bottom: 63.61%;
}
@media all and (min-width: 768px) {
  #news .newsList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #news .newsList li {
    width: calc(50% - 20px);
  }
  #news .bg {
    top: -15%;
  }
  #news .bubbleBox {
    bottom: 30%;
  }
  #news .bubbleBox .bubbleBox-t1 {
    top: 10%;
  }
}
@media all and (min-width: 1200px) {
  #news .m-tagBox {
    padding: 50px 0;
  }
  #news .newsList li {
    width: calc(50% - 40px);
  }
  #news .bg {
    top: -30%;
  }
}

#news-detail .l-editors {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#news-detail .bg {
  position: absolute;
  top: -5%;
  left: 15%;
  width: 100%;
  padding-bottom: 63.61%;
}
#news-detail .bubbleBox {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: -1;
}
#news-detail .bubbleBox.right {
  left: auto;
  right: 0;
}
#news-detail .controlPanel {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
#news-detail .form-file {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 25px;
  background: rgba(248, 248, 248, 0.9);
  border: 1px solid #f8f8f8;
  text-align: center;
  margin-top: 15px;
  transition: 0.5s;
}
#news-detail .form-file.error {
  border: 1px solid #f34545;
}
#news-detail .form-file--icon {
  margin-bottom: 10px;
}
#news-detail .form-file--content {
  position: relative;
  width: 100%;
}
#news-detail .form-file--content li {
  padding: 50px 5px 20px;
}
#news-detail .form-file--content li p {
  padding: 5px 0;
}
#news-detail .form-file--content img {
  width: 70%;
  max-width: 300px;
}
#news-detail .form-file p.error-message {
  top: 15px;
}
#news-detail .form-file .form-group {
  position: relative;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  overflow: scroll;
  -ms-overflow-style: none;
}
#news-detail .form-file .form-group:-webkit-scrollbar {
  display: none;
}
#news-detail .form-file .form-group input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  cursor: pointer;
}
#news-detail .form-file .form-group label {
  padding: 0;
}
@media all and (min-width: 768px) {
  #news-detail .bg {
    top: -10%;
    left: 40%;
  }
  #news-detail .controlPanel {
    padding-top: 0;
  }
}
@media all and (min-width: 992px) {
  #news-detail .m-editorNavigation,
#news-detail .controlPanel,
#news-detail form {
    width: 83.33%;
    margin: 0 auto;
  }
  #news-detail .controlPanel--back a span,
#news-detail .controlPanel--back a i {
    display: inline-block;
    transition: 0.4s;
  }
  #news-detail .controlPanel--back a:hover span {
    opacity: 0.8;
  }
  #news-detail .controlPanel--back a:hover i {
    transform: translate3d(-5px, 0, 0);
  }
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

.hidden-h1 {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -99999px;
}

.center {
  text-align: center;
}

.rounded1c {
  font-family: "M PLUS Rounded 1c";
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

._ban {
  overflow: hidden;
}

.flex {
  display: flex;
}
.flex--gap {
  flex: 1 0 auto;
}
.flex.ai-c {
  align-items: center;
}
.flex.jc-sb {
  justify-content: space-between;
}

.none {
  display: none;
}

.relative {
  position: relative;
}

.mx-auto {
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .body--index .l-footer {
    margin-top: -100px;
  }

  .body--about footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 32.5%;
    background: url("../images/footer-about.png") center center/cover no-repeat;
    pointer-events: none;
  }
  .body--about footer:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 100%;
    padding-bottom: 51.111%;
    z-index: -2;
    background: url("../images/footer-about-2.png") center center/cover no-repeat;
    pointer-events: none;
  }

  .body--product #app,
.body--product-detail #app {
    position: relative;
    width: 100%;
  }
  .body--product footer,
.body--product-detail footer {
    position: absolute;
    bottom: 0;
  }
  .body--product footer:before,
.body--product-detail footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 32.5%;
    background: url("../images/footer-product.png") center center/cover no-repeat;
    pointer-events: none;
  }

  .body--news footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 32.5%;
    background: url("../images/footer-news.png") center center/cover no-repeat;
    pointer-events: none;
  }
  .body--news footer:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 39%;
    z-index: -2;
    background: url("../images/footer-news-2.png") center center/cover no-repeat;
    pointer-events: none;
  }

  .body--contact footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 33.06%;
    background: url("../images/footer-contact.png") center center/cover no-repeat;
    pointer-events: none;
  }

  .body--news-detail footer:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 47.2%;
    z-index: -2;
    background: url("../images/footer-newsdetail.png") center center/cover no-repeat;
    pointer-events: none;
  }
}
@media all and (min-width: 1200px) {
  .body--index .l-footer {
    margin-top: -150px;
  }
}
#notfound .l-404 {
  position: relative;
  width: 100%;
  min-height: 70vh;
}
#notfound .l-404 .bubbleBox {
  position: absolute;
  top: 20%;
  right: 0;
  z-index: -2;
  pointer-events: none;
}

.plasma {
  backface-visibility: hidden;
  z-index: 20;
  position: relative;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
}
.plasma .gooey-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}
.plasma .gooey-container .bubble {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: right;
}
.plasma .gooey-container .bubble:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.bubbleBox-t1 {
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  animation: float 3s ease-in-out infinite;
}
.bubbleBox-t1 .gooey-container {
  filter: url(#gooey-plasma);
  animation: plasma-t1-rotate 5s linear infinite;
}
.bubbleBox-t1 .gooey-container .bubble:before {
  transform: scale(1) translate3d(75px, 0, 0);
}
.bubbleBox-t1.\--l {
  width: 300px;
  height: 300px;
}
.bubbleBox-t1.\--l .gooey-container {
  width: 400px;
  height: 400px;
}
.bubbleBox-t1.\--m {
  width: 200px;
  height: 200px;
}
.bubbleBox-t1.\--m .gooey-container {
  width: 250px;
  height: 250px;
}
.bubbleBox-t1.\--s {
  width: 50px;
  height: 50px;
}
.bubbleBox-t1.\--s .gooey-container {
  width: 75px;
  height: 75px;
}
.bubbleBox-t1.\--pink {
  box-shadow: 0 0 30px 0 #fcc5d4 inset;
}
.bubbleBox-t1.\--pink .gooey-container {
  box-shadow: 0 0 0 20px #ffe9ef inset;
}
.bubbleBox-t1.\--pink .gooey-container .bubble:before {
  background: #ffe6ec;
  box-shadow: 0 0 10px 5px #fcc5d4 inset, 0 0 10px 0 #fdb3c6 inset;
}
.bubbleBox-t1.\--blue {
  box-shadow: 0 0 30px 0 #c3e9f2 inset;
}
.bubbleBox-t1.\--blue .gooey-container {
  box-shadow: 0 0 0 20px #e7fbff inset;
}
.bubbleBox-t1.\--blue .gooey-container .bubble:before {
  background: #f2faff;
  box-shadow: 0 0 10px 5px #c3e9f2 inset, 0 0 10px 0 #c1deff inset;
}
.bubbleBox-t1.\--green {
  box-shadow: 0 0 30px 0 #c3f2d1 inset;
}
.bubbleBox-t1.\--green .gooey-container {
  box-shadow: 0 0 0 20px #baffce inset;
}
.bubbleBox-t1.\--green .gooey-container .bubble:before {
  background: #edfff3;
  box-shadow: 0 0 10px 5px #c3f2d1 inset, 0 0 10px 0 #e0ffe9 inset;
}
.bubbleBox-t2 {
  border-radius: 40% 60% 40% 60%/60% 60% 40% 40%;
  animation: float 3s ease-in-out infinite;
}
.bubbleBox-t2 .gooey-container {
  filter: url(#gooey-plasma-t2);
}
.bubbleBox-t2 .gooey-container .bubble:before {
  transform: scale(6) translate3d(20px, 0, 0);
}
.bubbleBox-t2.\--l {
  width: 300px;
  height: 300px;
}
.bubbleBox-t2.\--l .gooey-container {
  width: 350px;
  height: 350px;
}
.bubbleBox-t2.\--m {
  width: 150px;
  height: 150px;
}
.bubbleBox-t2.\--m .gooey-container {
  width: 200px;
  height: 200px;
}
.bubbleBox-t2.\--s {
  width: 75px;
  height: 75px;
}
.bubbleBox-t2.\--s .gooey-container {
  width: 100px;
  height: 100px;
}
.bubbleBox-t2.\--pink {
  box-shadow: 0 0 30px 0 #f9ccff inset;
}
.bubbleBox-t2.\--pink .gooey-container {
  box-shadow: 0 0 0 20px #e6c2db inset;
}
.bubbleBox-t2.\--pink .gooey-container .bubble:before {
  background: #fcc5d4;
  box-shadow: 0 0 10px 5px #f9ccff inset, 0 0 10px 0 #c9e3d3 inset;
}
.bubbleBox-t2.\--blue {
  box-shadow: 0 0 90px 0 #c3e9f2 inset, 0 0 30px 0 #f9ccff inset;
}
.bubbleBox-t2.\--blue .gooey-container {
  box-shadow: 0 0 0 20px #c3e9f2 inset;
}
.bubbleBox-t2.\--blue .gooey-container .bubble:before {
  background: rgba(195, 233, 242, 0.6);
  box-shadow: 0 0 15px 0 rgba(152, 204, 172, 0.3) inset, 0 0 10px 0 rgba(233, 236, 234, 0.9) inset;
}
@media all and (min-width: 768px) {
  .bubbleBox-t1.\--l {
    width: 450px;
    height: 450px;
  }
  .bubbleBox-t1.\--l .gooey-container {
    width: 550px;
    height: 550px;
  }
  .bubbleBox-t1.\--m {
    width: 350px;
    height: 350px;
  }
  .bubbleBox-t1.\--m .gooey-container {
    width: 450px;
    height: 450px;
  }
  .bubbleBox-t1.\--s {
    width: 100px;
    height: 100px;
  }
  .bubbleBox-t1.\--s .gooey-container {
    width: 150px;
    height: 150px;
  }
  .bubbleBox-t2.\--l {
    width: 500px;
    height: 500px;
  }
  .bubbleBox-t2.\--l .gooey-container {
    width: 600px;
    height: 600px;
  }
  .bubbleBox-t2.\--l .gooey-container .bubble:before {
    width: 80px;
    height: 80px;
    transform: scale(6) translate3d(80px, 0, 0);
  }
  .bubbleBox-t2.\--m {
    width: 400px;
    height: 400px;
  }
  .bubbleBox-t2.\--m .gooey-container {
    width: 500px;
    height: 500px;
  }
  .bubbleBox-t2.\--m .gooey-container .bubble:before {
    width: 60px;
    height: 60px;
    transform: scale(6) translate3d(60px, 0, 0);
  }
  .bubbleBox-t2.\--s {
    width: 200px;
    height: 200px;
  }
  .bubbleBox-t2.\--s .gooey-container {
    width: 225px;
    height: 225px;
  }
  .bubbleBox-t2.\--s .gooey-container .bubble:before {
    width: 50px;
    height: 50px;
    transform: scale(6) translate3d(50px, 0, 0);
  }
}
@media all and (min-width: 1200px) {
  .bubbleBox-t1 {
    animation: bubble-t1 3s ease infinite alternate;
  }
  .bubbleBox-t1.\--l {
    width: 650px;
    height: 650px;
  }
  .bubbleBox-t1.\--l .bubble:nth-child(1):before {
    animation: plasma-t1-l 7.5s ease 0.5s infinite;
  }
  .bubbleBox-t1.\--l .bubble:nth-child(2):before {
    animation: plasma-t1-l 15s ease 0.25s infinite;
  }
  .bubbleBox-t1.\--l .bubble:nth-child(3):before {
    animation: plasma-t1-l 22.5s ease 0.1666666667s infinite;
  }
  .bubbleBox-t1.\--l .bubble:nth-child(4):before {
    animation: plasma-t1-l 30s ease 0.125s infinite;
  }
  .bubbleBox-t1.\--l .bubble:nth-child(5):before {
    animation: plasma-t1-l 37.5s ease 0.1s infinite;
  }
  .bubbleBox-t1.\--l .bubble:nth-child(6):before {
    animation: plasma-t1-l 45s ease 0.0833333333s infinite;
  }
  .bubbleBox-t1.\--l .gooey-container {
    width: 800px;
    height: 800px;
  }
  .bubbleBox-t1.\--l .gooey-container .bubble:before {
    width: 130px;
    height: 130px;
  }
  .bubbleBox-t1.\--m {
    width: 450px;
    height: 450px;
  }
  .bubbleBox-t1.\--m .bubble:nth-child(1):before {
    animation: plasma-t1-m 4.5s ease 0.5s infinite;
  }
  .bubbleBox-t1.\--m .bubble:nth-child(2):before {
    animation: plasma-t1-m 9s ease 0.25s infinite;
  }
  .bubbleBox-t1.\--m .bubble:nth-child(3):before {
    animation: plasma-t1-m 13.5s ease 0.1666666667s infinite;
  }
  .bubbleBox-t1.\--m .bubble:nth-child(4):before {
    animation: plasma-t1-m 18s ease 0.125s infinite;
  }
  .bubbleBox-t1.\--m .bubble:nth-child(5):before {
    animation: plasma-t1-m 22.5s ease 0.1s infinite;
  }
  .bubbleBox-t1.\--m .bubble:nth-child(6):before {
    animation: plasma-t1-m 27s ease 0.0833333333s infinite;
  }
  .bubbleBox-t1.\--m .gooey-container {
    width: 600px;
    height: 600px;
  }
  .bubbleBox-t1.\--m .gooey-container .bubble:before {
    width: 90px;
    height: 90px;
  }
  .bubbleBox-t1.\--s {
    width: 250px;
    height: 250px;
    animation: bubble-t1 3s ease infinite alternate;
  }
  .bubbleBox-t1.\--s .bubble:nth-child(1):before {
    animation: plasma-t1-s 2.5s ease 0.5s infinite;
  }
  .bubbleBox-t1.\--s .bubble:nth-child(2):before {
    animation: plasma-t1-s 5s ease 0.25s infinite;
  }
  .bubbleBox-t1.\--s .bubble:nth-child(3):before {
    animation: plasma-t1-s 7.5s ease 0.1666666667s infinite;
  }
  .bubbleBox-t1.\--s .bubble:nth-child(4):before {
    animation: plasma-t1-s 10s ease 0.125s infinite;
  }
  .bubbleBox-t1.\--s .bubble:nth-child(5):before {
    animation: plasma-t1-s 12.5s ease 0.1s infinite;
  }
  .bubbleBox-t1.\--s .bubble:nth-child(6):before {
    animation: plasma-t1-s 15s ease 0.0833333333s infinite;
  }
  .bubbleBox-t1.\--s .gooey-container {
    width: 300px;
    height: 300px;
  }
  .bubbleBox-t2.\--l {
    width: 700px;
    height: 700px;
    animation: bubble-t2-l 4s ease infinite alternate;
  }
  .bubbleBox-t2.\--l .bubble:nth-child(1):before {
    animation: plasma-t2-l 6.5s linear 0.25s infinite;
  }
  .bubbleBox-t2.\--l .bubble:nth-child(2):before {
    animation: plasma-t2-l 7s linear 0.5s infinite;
  }
  .bubbleBox-t2.\--l .bubble:nth-child(3):before {
    animation: plasma-t2-l 7.5s linear 0.75s infinite;
  }
  .bubbleBox-t2.\--l .bubble:nth-child(4):before {
    animation: plasma-t2-l 8s linear 1s infinite;
  }
  .bubbleBox-t2.\--l .bubble:nth-child(5):before {
    animation: plasma-t2-l 8.5s linear 1.25s infinite;
  }
  .bubbleBox-t2.\--l .bubble:nth-child(6):before {
    animation: plasma-t2-l 9s linear 1.5s infinite;
  }
  .bubbleBox-t2.\--l .gooey-container {
    width: 800px;
    height: 800px;
  }
  .bubbleBox-t2.\--l .gooey-container .bubble:before {
    width: 120px;
    height: 120px;
  }
  .bubbleBox-t2.\--m {
    width: 500px;
    height: 500px;
    animation: bubble-t2-m 4s ease infinite alternate;
  }
  .bubbleBox-t2.\--m .bubble:nth-child(1):before {
    animation: plasma-t2-m 6.5s linear 0.25s infinite;
  }
  .bubbleBox-t2.\--m .bubble:nth-child(2):before {
    animation: plasma-t2-m 7s linear 0.5s infinite;
  }
  .bubbleBox-t2.\--m .bubble:nth-child(3):before {
    animation: plasma-t2-m 7.5s linear 0.75s infinite;
  }
  .bubbleBox-t2.\--m .bubble:nth-child(4):before {
    animation: plasma-t2-m 8s linear 1s infinite;
  }
  .bubbleBox-t2.\--m .bubble:nth-child(5):before {
    animation: plasma-t2-m 8.5s linear 1.25s infinite;
  }
  .bubbleBox-t2.\--m .bubble:nth-child(6):before {
    animation: plasma-t2-m 9s linear 1.5s infinite;
  }
  .bubbleBox-t2.\--m .gooey-container {
    width: 600px;
    height: 600px;
  }
  .bubbleBox-t2.\--m .gooey-container .bubble:before {
    width: 80px;
    height: 80px;
  }
  .bubbleBox-t2.\--s {
    width: 300px;
    height: 300px;
    animation: bubble-t2-s 4s ease infinite alternate;
  }
  .bubbleBox-t2.\--s .bubble:nth-child(1):before {
    animation: plasma-t2-s 6.5s linear 0.25s infinite;
  }
  .bubbleBox-t2.\--s .bubble:nth-child(2):before {
    animation: plasma-t2-s 7s linear 0.5s infinite;
  }
  .bubbleBox-t2.\--s .bubble:nth-child(3):before {
    animation: plasma-t2-s 7.5s linear 0.75s infinite;
  }
  .bubbleBox-t2.\--s .bubble:nth-child(4):before {
    animation: plasma-t2-s 8s linear 1s infinite;
  }
  .bubbleBox-t2.\--s .bubble:nth-child(5):before {
    animation: plasma-t2-s 8.5s linear 1.25s infinite;
  }
  .bubbleBox-t2.\--s .bubble:nth-child(6):before {
    animation: plasma-t2-s 9s linear 1.5s infinite;
  }
  .bubbleBox-t2.\--s .gooey-container {
    width: 450px;
    height: 450px;
  }
  .bubbleBox-t2.\--s .gooey-container .bubble:before {
    width: 60px;
    height: 60px;
  }
}

@keyframes plasma-t1-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes bubble-t1 {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
  100% {
    border-radius: 68% 32% 42% 58%/53% 56% 44% 47%;
  }
}
@keyframes plasma-t1-s {
  0% {
    transform: scale(6) translate3d(80px, 0, 0);
  }
  50% {
    transform: scale(1) translate3d(-100px, 0, 0);
  }
  100% {
    transform: scale(6) translate3d(80px, 0, 0);
  }
}
@keyframes plasma-t1-m {
  0% {
    transform: scale(6) translate3d(140px, 0, 0);
  }
  50% {
    transform: scale(1) translate3d(-200px, 0, 0);
  }
  100% {
    transform: scale(6) translate3d(140px, 0, 0);
  }
}
@keyframes plasma-t1-l {
  0% {
    transform: scale(6) translate3d(240px, 0, 0);
  }
  50% {
    transform: scale(1) translate3d(-300px, 0, 0);
  }
  100% {
    transform: scale(6) translate3d(240px, 0, 0);
  }
}
@keyframes bubble-t2-l {
  0% {
    border-radius: 40% 60% 40% 60%/60% 60% 40% 40%;
    height: 700px;
    width: 700px;
  }
  100% {
    border-radius: 68% 32% 42% 58%/53% 56% 44% 47%;
    width: 600px;
    height: 600px;
  }
}
@keyframes plasma-t2-l {
  0% {
    transform: scale(6) translate3d(80px, 0, 0);
  }
  50% {
    transform: scale(1) translate3d(-100px, 0, 0);
  }
  100% {
    transform: scale(6) translate3d(80px, 0, 0);
  }
}
@keyframes bubble-t2-m {
  0% {
    border-radius: 40% 60% 40% 60%/60% 60% 40% 40%;
    height: 500px;
    width: 500px;
  }
  100% {
    border-radius: 68% 32% 42% 58%/53% 56% 44% 47%;
    width: 400px;
    height: 400px;
  }
}
@keyframes plasma-t2-m {
  0% {
    transform: scale(6) translate3d(60px, 0, 0);
  }
  50% {
    transform: scale(1) translate3d(-80px, 0, 0);
  }
  100% {
    transform: scale(6) translate3d(60px, 0, 0);
  }
}
@keyframes bubble-t2-s {
  0% {
    border-radius: 40% 60% 40% 60%/60% 60% 40% 40%;
    height: 300px;
    width: 300px;
  }
  100% {
    border-radius: 68% 32% 42% 58%/53% 56% 44% 47%;
    width: 200px;
    height: 200px;
  }
}
@keyframes plasma-t2-s {
  0% {
    transform: scale(6) translate3d(50px, 0, 0);
  }
  50% {
    transform: scale(1) translate3d(-70px, 0, 0);
  }
  100% {
    transform: scale(6) translate3d(50px, 0, 0);
  }
}
#product .l-products {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#product .l-products .bg {
  position: absolute;
  top: -2%;
  left: -37%;
  width: 1440px;
  height: 916px;
  transform: rotate(-20deg);
}
#product .filterBox {
  justify-content: center;
  justify-content: space-between;
  padding: 30px 0;
  width: 225px;
}
#product .filterBox--filter {
  text-align: center;
  border-radius: 50%;
  padding: 15px 0;
  height: 90px;
  width: 90px;
  border: 3px solid #fff;
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  cursor: pointer;
  opacity: 0;
}
#product .filterBox--filter svg {
  opacity: 0.5;
  transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
#product .filterBox--filter._active {
  border: solid 3px #ffbfc8;
}
#product .filterBox--filter._active svg {
  opacity: 1;
}
#product .filterImg {
  display: none;
  pointer-events: none;
}
#product .m-tag {
  cursor: pointer;
}
#product .m-tag p {
  pointer-events: none;
}
@media all and (min-width: 992px) {
  #product .filterImg {
    position: relative;
    display: block;
    width: 70%;
    margin: 0 auto;
  }
  #product .filterImg--img {
    position: absolute;
    top: -115px;
    width: 225px;
  }
  #product .filterImg--img.iscat {
    right: 0;
    z-index: 1;
  }
  #product .filterImg--img.isdog {
    left: -100px;
  }
  #product .l-products .bg {
    left: 5%;
  }
}
@media all and (min-width: 1200px) {
  #product .l-products .bg {
    top: -1%;
    left: 14%;
    width: 100%;
    height: 0;
    padding-bottom: 63.6111%;
  }
  #product .filterImg--img {
    position: absolute;
    top: -190px;
    width: 375px;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  }
  #product .filterImg--img.iscat {
    right: 0;
    z-index: 1;
    transform: translate3d(50px, 0, 0);
  }
  #product .filterImg--img.isdog {
    left: -200px;
    transform: translate3d(-50px, 0, 0);
  }
  #product .filterImg--img._active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media all and (min-width: 1800px) {
  #product .l-products .bg {
    top: -5%;
    width: 90%;
    padding-bottom: 57.25%;
  }
}

#product .seriesPanelBox,
#product-detail .seriesPanelBox {
  flex-wrap: wrap;
}
#product .seriesPanelBox .m-seriesPanel,
#product-detail .seriesPanelBox .m-seriesPanel {
  width: 50%;
  margin: 20px 0;
}
#product .productPanel--block:not(:last-child),
#product-detail .productPanel--block:not(:last-child) {
  position: relative;
  width: 100%;
}
#product .productPanel--block:not(:last-child):after,
#product-detail .productPanel--block:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8.33%;
  width: 83.33%;
  height: 3px;
  border-bottom: dashed 3px rgba(102, 102, 102, 0.2);
}
#product .productPanelBox,
#product-detail .productPanelBox {
  flex-wrap: wrap;
}
#product .productPanelBox .m-seriesPanel,
#product-detail .productPanelBox .m-seriesPanel {
  width: 50%;
  margin: 20px 0;
}
#product .productPanelBox .m-seriesPanel--img,
#product-detail .productPanelBox .m-seriesPanel--img {
  max-width: 125px;
}
#product .l-qas,
#product-detail .l-qas {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0 200px;
}
#product .l-qas .bg,
#product-detail .l-qas .bg {
  position: absolute;
  overflow: hidden;
  top: 120px;
  left: -300px;
  width: 750px;
  padding-bottom: 616.25px;
}
#product .faqbox,
#product-detail .faqbox {
  padding: 40px 0 10px;
}
#product .tabs,
#product-detail .tabs {
  overflow: hidden;
  padding-bottom: 50px;
}
#product .tab,
#product-detail .tab {
  width: 100%;
  overflow: hidden;
}
#product .tab-label,
#product-detail .tab-label {
  position: relative;
  display: flex;
  font-family: inherit;
  font-size: clamp(17px, 2.5vw, 22px);
  cursor: pointer;
  letter-spacing: 2.2px;
  padding: 5px 25px 20px 65px;
  line-height: 40px;
}
#product .tab-label:before,
#product-detail .tab-label:before {
  position: absolute;
  content: "?";
  font-family: "M PLUS Rounded 1c";
  font-size: 60px;
  top: 8px;
  left: 0;
  z-index: 1;
  color: #666;
  font-weight: bold;
}
#product .tab-label:after,
#product-detail .tab-label:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 10px;
  background: #fcc5be;
  border-radius: 68% 32% 42% 58%/53% 56% 44% 47%;
  height: 40px;
  width: 40px;
  z-index: 0;
  transition: 0.4s;
}
#product .tab-content,
#product-detail .tab-content {
  position: relative;
  max-height: 0;
  transition: 0.8s;
  border-radius: 25px;
}
#product .tab-content .gap,
#product-detail .tab-content .gap {
  padding: 25px 20px;
}
#product .tab-content ol,
#product-detail .tab-content ol {
  list-style: decimal;
  padding-left: 20px;
}
#product .tab-content ol li,
#product-detail .tab-content ol li {
  padding-bottom: 25px;
  letter-spacing: 1.8px;
}
#product .tab-content p,
#product-detail .tab-content p {
  letter-spacing: 1.8px;
}
#product input,
#product-detail input {
  opacity: 0;
}
#product input:checked ~ .tab-label:after,
#product-detail input:checked ~ .tab-label:after {
  border-radius: 50%;
}
#product input:checked ~ .tab-content,
#product-detail input:checked ~ .tab-content {
  max-height: 200vh;
}
@media all and (min-width: 768px) {
  #product .m-seriesPanel,
#product-detail .m-seriesPanel {
    width: 33%;
  }
  #product .l-qas,
#product-detail .l-qas {
    padding: 100px 0 300px;
  }
  #product .l-qas .bg,
#product-detail .l-qas .bg {
    top: 120px;
    left: 0;
    width: 100%;
    padding-bottom: 82.16667%;
  }
  #product .l-qas .tabcontent,
#product-detail .l-qas .tabcontent {
    width: 90%;
  }
  #product .tab-label,
#product-detail .tab-label {
    margin-left: 40px;
  }
}
@media all and (min-width: 992px) {
  #product .l-qas .tabcontent,
#product-detail .l-qas .tabcontent {
    width: 80%;
  }
  #product .seriesPanelBox .m-seriesPanel,
#product-detail .seriesPanelBox .m-seriesPanel {
    width: 25%;
    margin: 60px 0;
    padding: 0 20px;
  }
  #product .productPanelBox .m-seriesPanel,
#product-detail .productPanelBox .m-seriesPanel {
    width: 20%;
    margin: 60px 0;
    padding: 0 20px;
  }
  #product .productPanelBox .m-seriesPanel--img,
#product-detail .productPanelBox .m-seriesPanel--img {
    max-width: 200px;
  }
  #product .tab-content .gap,
#product-detail .tab-content .gap {
    padding: 35px 40px;
  }
}
@media all and (min-width: 1200px) {
  #product .l-qas,
#product-detail .l-qas {
    padding: 100px 0 500px;
  }
  #product .l-qas .tabcontent,
#product-detail .l-qas .tabcontent {
    width: 66.67%;
  }
  #product .tab-content .gap,
#product-detail .tab-content .gap {
    padding: 55px 100px;
  }
}

#product-detail .l-base {
  position: relative;
  width: 100%;
}
#product-detail .l-base .bubbleBox {
  display: none;
}
#product-detail .l-base .bg {
  position: absolute;
  top: -225px;
  left: -275px;
  pointer-events: none;
}
#product-detail .l-base .bg svg {
  transform: scale(0.6);
}
#product-detail .l-editor {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -80px;
}
#product-detail .l-editor .bubbleBox {
  position: absolute;
  bottom: 0;
  left: -50px;
  z-index: -3;
}
#product-detail .infoPanel {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#product-detail .infoPanel--content {
  width: 100%;
  order: 1;
}
#product-detail .infoPanel--bg {
  position: relative;
  width: 85vw;
  height: 85vw;
  order: 0;
  pointer-events: none;
}
#product-detail .infoPanel--bg:after {
  content: "";
  position: absolute;
  background: url(../images/editor-type-bg.png) center center/cover no-repeat;
  top: -5%;
  left: -5%;
  width: 40%;
  padding-bottom: 36.513986%;
}
#product-detail .infoPanel--bg-bubble {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  animation: bubble-t1 4.5s ease infinite alternate;
}
#product-detail .infoPanel--bg-container {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 53% 73% 52% 72%/58% 52% 90% 90%;
}
#product-detail .infoPanel--thumb {
  order: 2;
  display: flex;
  width: 80%;
  margin: 0 auto;
}
#product-detail .infoPanel--thumb-item {
  position: relative;
  margin: 0 5px;
}
#product-detail .infoPanel--thumb-item:before {
  content: "";
  position: absolute;
  top: -25px;
  right: -12.5px;
  height: 50px;
  width: 50px;
  background: url(../images/talkbox.png) center center/cover no-repeat;
}
#product-detail .infoPanel--thumb-item:after {
  content: "";
  position: absolute;
  top: -15px;
  right: -2.5px;
  height: 30px;
  width: 30px;
  animation: home_img_on2 ease-in-out forwards infinite;
}
#product-detail .infoPanel--thumb-item._hasDog:after {
  background: url(../images/talkbox-dog.png) center center/cover no-repeat;
  animation-duration: 4s;
}
#product-detail .infoPanel--thumb-item._hasCat:after {
  background: url(../images/talkbox-cat.png) center center/cover no-repeat;
  animation-delay: 0.4s;
  animation-duration: 6s;
}
#product-detail .infoPanel--thumb-item._hasBoth:after {
  background: url(../images/talkbox-both.png) center center/cover no-repeat;
  animation-delay: 0.25s;
  animation-duration: 7s;
}
#product-detail .infoPanel--titleEn {
  font-size: clamp(15px, 3.25vw, 20px);
}
#product-detail .infoPanel--brand {
  font-size: clamp(17px, 2.5vw, 22px);
  letter-spacing: 2.2px;
  padding: 10px 0 5px;
}
#product-detail .infoPanel--desc {
  padding: 15px 0 20px;
}
@media all and (min-width: 768px) {
  #product-detail .l-base .bubbleBox {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
  }
  #product-detail .l-base .bubbleBox .bubbleBox-t2 {
    position: absolute;
    right: 0;
    z-index: -2;
    bottom: 40%;
  }
  #product-detail .infoPanel {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #product-detail .infoPanel--content {
    width: 50%;
    order: 0;
  }
  #product-detail .infoPanel--bg {
    position: absolute;
    width: 50vw;
    height: 50vw;
    top: 0;
    right: 5vw;
    order: 1;
    z-index: -2;
  }
  #product-detail .infoPanel--bg:after {
    top: 15%;
    left: -15%;
    width: 25%;
    padding-bottom: 22.821241%;
  }
  #product-detail .infoPanel--thumb {
    margin: 0;
    width: 25%;
  }
  #product-detail .l-editor {
    margin-top: -100px;
  }
}
@media all and (min-width: 992px) {
  #product-detail .m-tagBox {
    width: 100%;
  }
  #product-detail .l-editor {
    margin-top: -125px;
  }
}
@media all and (min-width: 1200px) {
  #product-detail .l-base .bg {
    top: -200px;
    left: -250px;
  }
  #product-detail .l-base .bg svg {
    transform: scale(0.8);
  }
  #product-detail .infoPanel--content {
    width: 33.33%;
  }
  #product-detail .infoPanel--desc {
    padding: 15px 0 35px;
  }
  #product-detail .infoPanel--bg {
    top: -10vw;
    right: 5vw;
    max-width: 850px;
    max-height: 850px;
  }
  #product-detail .infoPanel--thumb {
    width: auto;
    height: 100%;
  }
  #product-detail .infoPanel--thumb-item:before {
    height: 80px;
    width: 80px;
    top: -40px;
    right: -20px;
  }
  #product-detail .infoPanel--thumb-item:after {
    height: 50px;
    width: 50px;
    top: -25px;
    right: -5px;
  }
  #product-detail .l-editor {
    margin-top: -150px;
  }
}
@media all and (min-width: 1800px) {
  #product-detail .l-base .bg {
    top: -175px;
    left: -225px;
  }
  #product-detail .l-base .bg svg {
    transform: scale(1);
  }
}
#product-detail .hasbubble {
  position: relative;
}
#product-detail .hasbubble.type-1:after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 20px;
  width: 46.42%;
  padding-bottom: 42.249308%;
  background: url(../images/editor-type-1.png) center center/cover no-repeat;
}
#product-detail .hasbubble.type-2:after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 20px;
  width: 34%;
  padding-bottom: 31.66%;
  background: url(../images/editor-type-2.png) center center/cover no-repeat;
}
#product-detail .hasbubble.type-2 .bubble {
  animation-delay: 0.6s;
}
#product-detail .hasbubble.type-3:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 30.7142%;
  padding-bottom: 30.7142%;
  background: url(../images/editor-type-3.png) center center/cover no-repeat;
}
#product-detail .hasbubble.type-3 .bubble {
  animation-delay: 0.6s;
}
#product-detail .hasbubble .bubble {
  position: absolute;
  top: 10%;
  left: 10%;
  height: 80%;
  width: 80%;
  padding: 0;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: -1;
  animation: bubble-t1 5.5s ease infinite alternate;
}
/*# sourceMappingURL=style.css.map*/