@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;
}

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-floatSelectBox {
  position: relative;
  width: 100%;
  height: 100px;
  z-index: 3;
}
.m-floatSelectBox li {
  position: absolute;
}
.m-floatSelectBox li.tag-1 div, .m-floatSelectBox li.tag-2 div, .m-floatSelectBox li.tag-3 div {
  animation: float 5s ease-in-out infinite;
}
.m-floatSelectBox li.tag-1 div:after, .m-floatSelectBox li.tag-2 div:after, .m-floatSelectBox li.tag-3 div:after {
  opacity: 0.89;
  content: "#" attr(data-tag);
  text-indent: -21px;
  font-size: 13px;
}
.m-floatSelectBox li.tag-1 {
  top: 110%;
  left: 50%;
}
.m-floatSelectBox li.tag-1 div {
  animation-delay: 0.4s;
}
.m-floatSelectBox li.tag-1 div:before {
  content: "";
  position: absolute;
  width: 105.5px;
  height: 89px;
  top: -40px;
  left: calc(50% - 52.75px);
  background: url("../images/tag-pink.png") center center/cover no-repeat;
}
.m-floatSelectBox li.tag-2 {
  top: 80%;
  left: 5%;
}
.m-floatSelectBox li.tag-2 div {
  animation-delay: 0.9s;
}
.m-floatSelectBox li.tag-2 div:before {
  content: "";
  position: absolute;
  width: 105.5px;
  height: 89px;
  top: -40px;
  left: calc(50% - 52.75px);
  background: url("../images/tag-green.png") center center/cover no-repeat;
}
.m-floatSelectBox li.tag-3 {
  top: 0;
  left: 80%;
}
.m-floatSelectBox li.tag-3 div {
  animation-delay: 0.1s;
}
.m-floatSelectBox li.tag-3 div:before {
  content: "";
  position: absolute;
  width: 71.5px;
  height: 72.5px;
  top: -30px;
  left: calc(50% - 35.75px);
  background: url("../images/tag-blue.png") center center/cover no-repeat;
}
@media all and (min-width: 768px) {
  .m-floatSelectBox li.tag-4 div, .m-floatSelectBox li.tag-5 div {
    animation: float 5s ease-in-out infinite;
  }
  .m-floatSelectBox li.tag-4 div:after, .m-floatSelectBox li.tag-5 div:after {
    opacity: 0.89;
    content: "#" attr(data-tag);
    text-indent: -21px;
    font-size: 13px;
  }
  .m-floatSelectBox li.tag-4 {
    top: 110%;
    left: 80%;
  }
  .m-floatSelectBox li.tag-4 div {
    animation-delay: 0.3s;
  }
  .m-floatSelectBox li.tag-4 div:before {
    content: "";
    position: absolute;
    width: 143px;
    height: 145px;
    top: -60px;
    left: calc(50% - 71.5px);
    background: url("../images/tag-blue.png") center center/cover no-repeat;
  }
  .m-floatSelectBox li.tag-5 {
    top: 25%;
    left: 60%;
  }
  .m-floatSelectBox li.tag-5 div {
    animation-delay: 0.7s;
  }
  .m-floatSelectBox li.tag-5 div:before {
    content: "";
    position: absolute;
    width: 105.5px;
    height: 89px;
    top: -40px;
    left: calc(50% - 52.75px);
    background: url("../images/tag-green.png") center center/cover no-repeat;
  }
}
@media all and (min-width: 1200px) {
  .m-floatSelectBox {
    position: relative;
    width: 75%;
    height: 100px;
    margin-left: auto;
    margin-right: 0;
    z-index: 3;
  }
  .m-floatSelectBox li div {
    animation: float 5s ease-in-out infinite;
  }
  .m-floatSelectBox li div:after {
    opacity: 0.89;
    content: "#" attr(data-tag);
    text-indent: -21px;
    font-size: 16px !important;
  }
  .m-floatSelectBox li.tag-1 {
    top: 310%;
    left: 20%;
  }
  .m-floatSelectBox li.tag-2 {
    top: 170%;
  }
  .m-floatSelectBox li.tag-3 {
    top: 400%;
    left: 10%;
  }
  .m-floatSelectBox li.tag-3 div:before {
    width: 143px;
    height: 145px;
    top: -60px;
    left: calc(50% - 71.5px);
  }
  .m-floatSelectBox li.tag-4 {
    top: 80%;
    left: 90%;
  }
  .m-floatSelectBox li.tag-5 {
    top: 0%;
    left: 70%;
  }
  .m-floatSelectBox li.tag-6 {
    top: 120%;
    left: 50%;
  }
  .m-floatSelectBox li.tag-6 div {
    animation-delay: 0.1s;
  }
  .m-floatSelectBox li.tag-6 div:before {
    content: "";
    position: absolute;
    width: 105.5px;
    height: 89px;
    top: -40px;
    left: calc(50% - 52.75px);
    background: url("../images/tag-yellow.png") center center/cover no-repeat;
  }
  .m-floatSelectBox li.tag-7 {
    top: -20%;
    left: 40%;
  }
  .m-floatSelectBox li.tag-7 div {
    animation-delay: 0.6s;
  }
  .m-floatSelectBox li.tag-7 div:before {
    content: "";
    position: absolute;
    width: 211px;
    height: 178px;
    top: -80px;
    left: calc(50% - 105.5px);
    background: url("../images/tag-pink.png") center center/cover no-repeat;
  }
}

.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-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-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;
}

#index .l-banners {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
}
#index .l-banners .bannersSlider {
  position: relative;
  width: 100%;
}
#index .l-banners .bannersSlider .swiper-slide {
  opacity: 1 !important;
  pointer-events: none;
}
#index .l-banners .bannersSlider .swiper-slide .bannersPanel--img {
  opacity: 0;
}
#index .l-banners .bannersSlider .swiper-slide-active {
  pointer-events: visible;
}
#index .l-banners .bannersSlider .swiper-slide-active .bannersPanel--content {
  opacity: 1;
}
#index .l-banners .bannersSlider .swiper-slide-active .bannersPanel--img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
#index .l-banners .bannersSlider .swiper-slide-next .bannersPanel--img {
  opacity: 1;
  transform: translate3d(100%, 0, 0) scale3d(0.8, 0.8, 0.8);
}
#index .l-banners .bannersSlider .swiper-slide-next ~ .swiper-slide .bannersPanel--img {
  opacity: 0;
  transform: translate3d(300%, 0, 0) scale3d(0.8, 0.8, 0.8);
}
#index .l-banners .bannersSlider .swiper-slide-next + .swiper-slide .bannersPanel--img {
  opacity: 1;
  transform: translate3d(200%, 0, 0) scale3d(0.8, 0.8, 0.8);
}
#index .l-banners .bannersSlider .swiper-slide-prev .bannersPanel--img {
  opacity: 0;
  transform: translate3d(-100%, 0, 0) scale3d(0.8, 0.8, 0.8);
}
#index .l-banners .bannersSlider--pagination {
  display: none;
}
#index .l-banners .bubbleBox {
  display: none;
}
#index .l-banners .bgBox {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
#index .l-banners .bgBox .bubbleBox-t1.\--green.\--m {
  top: 50%;
  left: -20%;
  z-index: -2;
}
#index .l-banners .bgBox .bubbleBox-t2.\--blue.\--s {
  display: none;
}
#index .l-banners .bgBox .bubbleBox-t2.\--blue.\--s .bubble::before {
  content: none !important;
}
#index .l-banners .bg {
  position: absolute;
  top: -5%;
  left: 15%;
  width: 100%;
  padding-bottom: 63.61%;
  z-index: -1;
}
#index .bannersPanel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#index .bannersPanel--content {
  order: 1;
  opacity: 0;
  width: 100%;
  transition: 0.8s cubic-bezier(0.45, 0, 0.55, 1);
}
#index .bannersPanel--title {
  font-size: clamp(50px, 4vw, 70px);
}
#index .bannersPanel--img {
  order: 0;
  width: 160px;
  transition: 0.6s cubic-bezier(0.45, 0, 0.55, 1);
}
#index .l-tags {
  position: relative;
  overflow: hidden;
  margin-top: -40px;
}
#index .l-tags .bg {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 75%;
  padding-bottom: 53.94%;
  z-index: -1;
  transform: rotate(45deg);
}
#index .l-tags .bubbleBox {
  display: none;
}
#index .l-news {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#index .l-news .bg {
  position: absolute;
  top: 17%;
  right: -30%;
  width: 720px;
  padding-bottom: 458px;
  pointer-events: none;
}
#index .l-news .bg.-dog {
  z-index: 2;
}
#index .l-news .bg .bubbleBox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#index .l-news .m-titleBox {
  text-align: right;
}
#index .l-news .m-newsCard {
  padding: 20px 0 40px;
}
#index .l-news .m-newsCard .bubbleBox {
  position: absolute;
  display: none;
}
#index .l-series {
  margin-top: -40px;
}
#index .objBox {
  position: relative;
  width: 100%;
  height: 300px;
}
#index .objBox .fullwidth {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#index .objBox .obj {
  position: absolute;
}
#index .objBox .obj-1 {
  bottom: 0;
  right: -50px;
  width: 357.33px;
  height: 166px;
}
#index .objBox .obj-2 {
  bottom: 0;
  left: 0;
  width: 114px;
  height: 195px;
}
#index .objBox .obj-3 {
  bottom: -20px;
  left: 100px;
  width: 157px;
  height: 137.33px;
}
#index .objBox .obj-4 {
  top: 80px;
  left: 100px;
  width: 65.333px;
  height: 103px;
  z-index: -1;
}
#index .objBox .obj-5 {
  top: 50px;
  right: 20px;
  width: 92px;
  height: 135px;
  z-index: -1;
}
#index .objBox .bubbleBox {
  top: -80px;
  left: 25%;
}
#index .objBox .bubbleBox .bubble::before {
  content: none !important;
}
@media all and (min-width: 768px) {
  #index .l-banners .bubbleBox {
    position: absolute;
    top: 100px;
    left: calc(50% - 200px);
    z-index: -1;
    animation: float 3s ease-in-out infinite;
  }
  #index .l-banners .bubbleBox .bubbleBox-t2 {
    transition: 0.8s cubic-bezier(0.45, 0, 0.55, 1);
  }
  #index .l-banners .bubbleBox ._transform {
    transform: scale3d(1.15, 1.15, 1.15) rotate(45deg);
  }
  #index .l-banners .bg {
    top: -15%;
    left: 40%;
    width: 70%;
    padding-bottom: 44.527%;
  }
  #index .l-banners .bgBox .bubbleBox-t1.\--green.\--m {
    top: 10%;
    left: -10%;
  }
  #index .bannersPanel--content {
    text-align: center;
  }
  #index .l-news .bg {
    top: 7%;
    right: -20%;
    width: 900px;
    padding-bottom: 572px;
  }
  #index .l-news .m-titleBox {
    padding: 0 17%;
  }
  #index .l-news .m-newsCard {
    margin: 0 17%;
    padding: 30px 0 65px;
  }
  #index .l-tags {
    overflow: visible;
    margin-top: -60px;
  }
  #index .l-tags .bg {
    top: 0;
    width: 60%;
    padding-bottom: 43.152%;
  }
  #index .l-series {
    margin-top: -60px;
  }
  #index .objBox {
    height: 500px;
    margin: 0 auto;
  }
  #index .objBox .fullwidth {
    left: auto;
    right: 0;
    width: 800px;
  }
  #index .objBox .obj-1 {
    right: 0;
    width: 536px;
    height: 249px;
  }
  #index .objBox .obj-2 {
    left: 130px;
    width: 171px;
    height: 294.5px;
  }
  #index .objBox .obj-3 {
    bottom: -40px;
    left: 290px;
    width: 235.5px;
    height: 206px;
  }
  #index .objBox .obj-4 {
    top: 130px;
    left: 360px;
    width: 98px;
    height: 154.5px;
    z-index: -1;
  }
  #index .objBox .obj-5 {
    top: 130px;
    right: 100px;
    width: 138px;
    height: 202.5px;
    z-index: -1;
  }
  #index .objBox .bubbleBox {
    display: none;
  }
}
@media all and (min-width: 992px) {
  #index .l-tags .bg {
    width: 40%;
    padding-bottom: 28.768%;
  }
  #index .l-news .bg {
    top: 16%;
    right: -5%;
  }
  #index .l-news .m-newsCard {
    padding: 40px 0 95px;
  }
  #index .l-banners {
    padding-top: 100px;
    padding-bottom: 150px;
  }
  #index .l-banners .bannersSlider .swiper-slide-active .bannersPanel--img {
    transform: rotate(0) translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  #index .l-banners .bannersSlider .swiper-slide-next .bannersPanel--img {
    transform: rotate(20deg) translate3d(110%, -5%, 0) scale3d(0.9, 0.9, 0.9);
  }
  #index .l-banners .bannersSlider .swiper-slide-next ~ .swiper-slide .bannersPanel--img {
    transform: rotate(60deg) translate3d(300%, -60%, 0) scale3d(0.7, 0.7, 0.7);
  }
  #index .l-banners .bannersSlider .swiper-slide-next + .swiper-slide .bannersPanel--img {
    transform: rotate(40deg) translate3d(200%, -30%, 0) scale3d(0.8, 0.8, 0.8);
  }
  #index .l-banners .bannersSlider .swiper-slide-prev .bannersPanel--img {
    transform: rotate(-20deg) translate3d(-110%, 5%, 0) scale3d(0.9, 0.9, 0.9);
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(1) picture {
    animation-delay: 0.4s;
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(2) picture {
    animation-delay: 0.2s;
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(4) picture {
    animation-delay: 0.3s;
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(5) picture {
    animation-delay: 0.1s;
  }
  #index .l-banners .bubbleBox {
    top: calc(50% - 250px);
  }
  #index .bannersPanel {
    flex-direction: row;
    width: 70%;
  }
  #index .bannersPanel--content {
    order: 0;
    width: 60%;
    text-align: left;
  }
  #index .bannersPanel--img {
    order: 1;
    width: 300px;
  }
  #index .bannersPanel--img picture {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
  }
  #index .m-newsCard--img {
    top: 115px;
  }
}
@media all and (min-width: 1200px) {
  #index .l-banners .bg {
    width: 85%;
    padding-bottom: 54.0685%;
  }
  #index .l-banners .bubbleBox {
    display: block;
  }
  #index .l-banners .floatBox {
    position: absolute;
    bottom: 200px;
    left: 30%;
    z-index: -1;
    animation: float 3s 0.5s ease-in-out infinite;
  }
  #index .l-banners .floatBox:before {
    content: "";
    position: absolute;
    width: 105.5px;
    height: 89px;
    top: 0;
    left: 0;
    background: url("../images/tag-pink.png") center center/cover no-repeat;
  }
  #index .l-banners .bgBox .bubbleBox-t1.\--green.\--m {
    top: -15%;
    left: -5%;
  }
  #index .l-banners .bgBox .bubbleBox-t2.\--blue.\--s {
    display: block;
    z-index: 2;
    top: 60%;
    left: 70%;
  }
  #index .l-banners .bannersSlider--pagination {
    display: block;
    position: absolute;
    top: calc(50% - 70px);
    left: -40px;
    width: 10px;
    height: 140px;
  }
  #index .l-banners .bannersSlider--pagination_current {
    display: inline-block;
    margin-bottom: 25px;
    color: #B9E6E4;
  }
  #index .l-banners .bannersSlider--pagination_line {
    position: relative;
    width: 1px;
    height: 70px;
    background: rgba(203, 203, 203, 0.25);
    margin: 0 auto;
  }
  #index .l-banners .bannersSlider--pagination_total {
    display: inline-block;
    margin-top: 25px;
    color: #999999;
  }
  #index .l-news {
    height: 916px;
  }
  #index .l-news .bg {
    top: 0%;
    right: 0;
    width: 1440px;
    padding-bottom: 916px;
  }
  #index .l-news .m-newsCard .bubbleBox {
    display: block;
    z-index: 1;
    left: 80%;
    top: 0%;
  }
  #index .l-tags {
    margin-top: -150px;
  }
  #index .l-tags .bubbleBox {
    display: block;
    position: absolute;
    z-index: -1;
  }
  #index .l-tags .outter.bubbleBox {
    top: 250px;
    left: 100px;
  }
  #index .l-series {
    margin-top: -100px;
  }
}
@media all and (min-width: 1440px) {
  #index .l-banners .bannersSlider--pagination {
    left: -70px;
  }
  #index .l-tags .bubbleBox {
    top: -80px;
  }
  #index .objBox {
    width: 90%;
    height: 1000px;
  }
  #index .objBox .fullwidth {
    left: 0;
    width: 1260px;
  }
  #index .objBox .obj-1 {
    bottom: 100px;
    width: 1072px;
    height: 498px;
  }
  #index .objBox .obj-2 {
    bottom: 75px;
    left: 50px;
    width: 342px;
    height: 585px;
  }
  #index .objBox .obj-3 {
    bottom: 0;
    left: 350px;
    width: 471px;
    height: 412px;
  }
  #index .objBox .obj-4 {
    top: 160px;
    left: 500px;
    width: 196px;
    height: 309px;
    z-index: -1;
  }
  #index .objBox .obj-5 {
    top: 130px;
    right: 150px;
    width: 276px;
    height: 405px;
    z-index: -1;
  }
  #index .objBox .bubbleBox {
    display: block;
    left: 50%;
    top: -20%;
  }
  #index .m-newsCard--img {
    top: 130px;
  }
}
@media all and (min-width: 1800px) {
  #index .objBox {
    width: 75%;
  }
}

_::-webkit-full-page-media,
_:future,
:root .bubble::before {
  content: none !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .bubble::before {
    content: none !important;
  }

  #index .l-banners {
    padding-top: 100px;
    padding-bottom: 150px;
  }
  #index .l-banners .bannersSlider .swiper-slide {
    opacity: 0 !important;
  }
  #index .l-banners .bannersSlider .swiper-slide-active {
    opacity: 1 !important;
  }
  #index .l-banners .bannersSlider .swiper-slide-active .bannersPanel--img {
    transform: none !important;
  }
  #index .l-banners .bannersSlider .swiper-slide-next .bannersPanel--img {
    transform: none !important;
  }
  #index .l-banners .bannersSlider .swiper-slide-next ~ .swiper-slide .bannersPanel--img {
    opacity: inherit;
    transform: none !important;
  }
  #index .l-banners .bannersSlider .swiper-slide-next + .swiper-slide .bannersPanel--img {
    transform: none !important;
  }
  #index .l-banners .bannersSlider .swiper-slide-prev .bannersPanel--img {
    opacity: inherit;
    transform: none !important;
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(1) picture {
    animation: none;
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(2) picture {
    animation: none;
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(4) picture {
    animation: none;
  }
  #index .l-banners .bannersSlider .swiper-slide:nth-child(5) picture {
    animation: none;
  }
}
html.no-webp .obj-1 {
  background: url(../images/index-obj-1.png) center center/cover no-repeat !important;
}
html.no-webp .obj-2 {
  background: url(../images/index-obj-2.png) center center/cover no-repeat !important;
}
html.no-webp .obj-3 {
  background: url(../images/index-obj-3.png) center center/cover no-repeat !important;
}
html.no-webp .obj-4 {
  background: url(../images/index-obj-4.png) center center/cover no-repeat !important;
}
html.no-webp .obj-5 {
  background: url(../images/index-obj-5.png) center center/cover no-repeat !important;
}

.dobanner {
  animation: home_img_on2 1.5s ease-in-out forwards;
}

@keyframes home_img_on2 {
  0% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(2.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-2.5deg);
    transform-origin: right bottom;
  }
  66% {
    transform: rotate(1.25deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-0.625deg);
    transform-origin: left bottom;
  }
  100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
}
@keyframes float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  65% {
    transform: translate3d(0, 15px, 0);
  }
  100% {
    transform: translate3d(0, 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);
  }
}
/*# sourceMappingURL=index.css.map*/