@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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, tt, var, 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-weight: inherit;
  vertical-align: baseline;
}

/* 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;
}

a {
  color: inherit;
  text-decoration: none;
}

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

input::-ms-clear, input::-ms-reveal {
  display: none;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #000000 !important;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input,
textarea {
  border-radius: 0;
}

@font-face {
  font-family: "微軟正黑體修正";
  unicode-range: U+7db0, U+78A7, U+7B75;
  font-style: normal;
  font-weight: bold;
  src: local(MS Gothic), local(Yu Gothic);
}
@font-face {
  font-family: "微軟正黑體修正";
  unicode-range: U+7db0, U+78A7, U+7B75;
  font-style: normal;
  font-weight: normal;
  src: local(微軟正黑體), local(Microsoft JhengHei);
}
@font-face {
  font-family: "JhengHei-Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Microsoft JhengHei UI Bold"), local("Microsoft JhengHei UI 粗體"), local("Microsoft JhengHei Bold"), local("Microsoft JhengHei 粗體");
}
modern-modal {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s 0.3s;
  transition: 0.5s 0.3s;
  display: none;
}
modern-modal.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
modern-modal .modal-scroller {
  position: relative;
  width: 100%;
  height: 100%;
}
modern-modal .modal-scroller .os-content {
  border-right: none !important;
}
modern-modal .modal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
modern-modal .modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  margin: auto;
}

modern-modal[data-modal-animate=fade-up].show .modal-content {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=fade-up] .modal-content {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=fade-down].show .modal-content {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=fade-down] .modal-content {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=fade-right].show .modal-content {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=fade-right] .modal-content {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=fade-left].show .modal-content {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=fade-left] .modal-content {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=zoom-in].show .modal-content {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=zoom-in] .modal-content {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=zoom-out].show .modal-content {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=zoom-out] .modal-content {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=clip-up].show .modal-content {
  opacity: 1;
  -webkit-clip-path: polygon(0 -15%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 -15%, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=clip-up] .modal-content {
  opacity: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=clip-down].show .modal-content {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 115%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 115%, 0 100%);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=clip-down] .modal-content {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=clip-right].show .modal-content {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 115% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 115% 0, 100% 100%, 0 100%);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=clip-right] .modal-content {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
modern-modal[data-modal-animate=clip-left].show .modal-content {
  opacity: 1;
  -webkit-clip-path: polygon(-15% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(-15% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}
modern-modal[data-modal-animate=clip-left] .modal-content {
  opacity: 0;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

[data-aost][data-aost-fade] {
  opacity: 0;
}
[data-aost][data-aost-fade].aost-show {
  opacity: 1;
  -webkit-transition: opacity var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s);
}
[data-aost][data-aost-fade-up] {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
[data-aost][data-aost-fade-up].aost-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
}
[data-aost][data-aost-fade-down] {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
[data-aost][data-aost-fade-down].aost-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
}
[data-aost][data-aost-fade-right] {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
[data-aost][data-aost-fade-right].aost-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
}
[data-aost][data-aost-fade-left] {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
[data-aost][data-aost-fade-left].aost-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), transform var(--aost-trans, 0.8s), -webkit-transform var(--aost-trans, 0.8s);
}
[data-aost][data-aost-clip-down] {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
[data-aost][data-aost-clip-down].aost-show {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 115%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 115%, 0 100%);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
}
[data-aost][data-aost-clip-left] {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
[data-aost][data-aost-clip-left].aost-show {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
}
[data-aost][data-aost-clip-right] {
  opacity: 0;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
[data-aost][data-aost-clip-right].aost-show {
  opacity: 1;
  -webkit-clip-path: polygon(-10% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(-10% 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
}
[data-aost][data-aost-scale] {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
[data-aost][data-aost-scale].aost-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s);
  transition: opacity var(--aost-trans, 0.8s), clip-path var(--aost-trans, 0.8s), -webkit-clip-path var(--aost-trans, 0.8s);
}

._article ._contentWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

._article ._imgCover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0px;
  width: 100%;
  max-height: 100%;
}
._article ._imgCover .swiper {
  width: 100%;
}
._article ._imgCover + ._H {
  margin-top: 0;
}
@media only screen and (max-width: 900px) {
  ._article ._imgCover {
    margin-bottom: 0px;
  }
  ._article ._imgCover + ._wordCover {
    margin-top: 0;
  }
  ._article ._imgCover + ._H {
    margin-top: 20px;
  }
}

._article ._cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  ._article ._cover {
    margin-bottom: 20px;
  }
}

._article ._photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
._article ._photo video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
._article ._photo .playButton {
  cursor: pointer;
}

._article ._wordCover {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 900px) {
  ._article ._wordCover {
    margin-top: 20px;
  }
}

._article ._H {
  padding: 0 20px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
._article ._H + ._wordCover {
  margin: 0;
}
._article ._H:nth-last-child(2) {
  margin-top: 0;
}
@media only screen and (max-width: 900px) {
  ._article ._H {
    padding: 0 0;
    margin: 20px 0 10px;
    font-size: 1.25rem;
  }
}

._article ._subH {
  padding: 0 20px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 900px) {
  ._article ._subH {
    padding: 0 0;
    margin-bottom: 10px;
    font-size: 1rem;
  }
}

._article ._P {
  padding: 0 20px;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
._article ._P .instagram-media.instagram-media-rendered {
  margin: 15px 0 !important;
  max-width: 100% !important;
  min-width: auto !important;
  width: 100% !important;
}
._article ._P a:not(.more-button) {
  color: #007aff;
}
._article ._P ol li,
._article ._P ul li {
  margin-left: 16px;
}
._article ._P ol {
  list-style: decimal !important;
}
._article ._P ul {
  list-style: disc !important;
}
@media only screen and (max-width: 900px) {
  ._article ._P {
    padding: 0 0;
    font-size: 0.875rem;
  }
}

._article ._description {
  margin-top: 10px;
  padding: 0 10px;
  width: 100%;
  font-size: 0.875rem;
}
@media only screen and (max-width: 900px) {
  ._article ._description {
    font-size: 0.75rem;
  }
}

._article ._buttonCover {
  display: block;
  margin-top: 30px;
  text-align: left;
}
._article ._buttonCover .more-button .circle {
  width: 30px;
  height: 30px;
}
._article ._buttonCover .more-button .circle-wrap {
  font-size: 0.75rem;
}
@media only screen and (max-width: 900px) {
  ._article ._buttonCover {
    margin-top: 20px;
  }
}

._article ._button {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  font-size: 0.875rem;
  z-index: 0;
}
._article ._button span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media only screen and (min-width: 900px) {
  ._article ._button:hover span {
    opacity: 1;
  }
}
@media only screen and (max-width: 900px) {
  ._article ._button {
    font-size: 0.75rem;
  }
}

._article[img-swiper=on] .swiper-pagination {
  margin: calc(20px - 20px) 0 20px;
  display: block;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}
@media only screen and (max-width: 900px) {
  ._article[img-swiper=on] .swiper-pagination {
    margin: calc(20px - 20px) 0 20px;
  }
}

._article[img-swiper=on] .swiper-pagination .swiper-pagination-bullet {
  margin: 0 10px;
  background-color: #272223;
  width: 6px;
  height: 6px;
  cursor: pointer;
}

._article[img-swiper=on] .swiper-button-cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

._article[img-swiper=on] .swiper-button-cover .swiper-button-prev, ._article[img-swiper=on] .swiper-button-cover .swiper-button-next {
  position: absolute;
  top: 50%;
  margin: 0;
  pointer-events: auto;
  width: 20px;
  height: 20px;
}
._article[img-swiper=on] .swiper-button-cover .swiper-button-prev:after, ._article[img-swiper=on] .swiper-button-cover .swiper-button-next:after {
  content: "";
}

._article[img-swiper=on] .swiper-button-cover .swiper-button-next {
  right: 20px;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

._article[img-swiper=on] .swiper-button-cover .swiper-button-prev {
  left: 20px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
}

._article[img-swiper=on] .swiper-wrapper {
  height: auto;
}
@media only screen and (max-width: 900px) {
  ._article ._H,
._article ._wordCover {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
._article.typeSL ._subH, ._article.typeSR ._subH {
  margin-bottom: 0;
  width: 35%;
}
@media only screen and (max-width: 900px) {
  ._article.typeSL ._subH,
._article.typeSL ._P, ._article.typeSR ._subH,
._article.typeSR ._P {
    width: 100%;
  }
  ._article.typeSL ._subH, ._article.typeSR ._subH {
    margin-bottom: 10px;
  }
  ._article.typeSL ._P, ._article.typeSR ._P {
    margin: 0;
  }
}
._article.typeSL ._subH {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
._article.typeSL ._P {
  margin-left: calc(40px - 20px);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: calc(65% - 40px - 20px);
}
@media only screen and (max-width: 900px) {
  ._article.typeSL ._subH,
._article.typeSL ._P {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 100%;
  }
  ._article.typeSL ._P {
    margin: 0;
  }
}
._article.typeSR ._subH {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
._article.typeSR ._P {
  margin-right: calc(40px - 20px);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc(65% - 40px - 20px);
}
@media only screen and (max-width: 900px) {
  ._article.typeSR ._subH,
._article.typeSR ._P {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 100%;
  }
  ._article.typeSR ._P {
    margin: 0;
  }
}

._article.typeU ._imgCover, ._article.typeUL ._imgCover, ._article.typeUR ._imgCover {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
._article.typeU ._wordCover, ._article.typeUL ._wordCover, ._article.typeUR ._wordCover {
  margin: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  ._article.typeU ._imgCover, ._article.typeUL ._imgCover, ._article.typeUR ._imgCover {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  ._article.typeU ._wordCover, ._article.typeUL ._wordCover, ._article.typeUR ._wordCover {
    margin-bottom: 20px;
  }
}
._article.typeUL ._H, ._article.typeUR ._H {
  width: 35%;
}
@media only screen and (max-width: 900px) {
  ._article.typeUL ._H, ._article.typeUR ._H {
    width: 100%;
  }
}
._article.typeUL ._H {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
._article.typeUL ._wordCover {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: calc(40px - 20px);
  width: calc(65% - 40px - 20px);
}
@media only screen and (max-width: 900px) {
  ._article.typeUL ._wordCover {
    margin: 0;
    width: 100%;
  }
}
._article.typeUR ._H {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
._article.typeUR ._wordCover {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: calc(40px - 20px);
  width: calc(65% - 40px - 20px);
}
@media only screen and (max-width: 900px) {
  ._article.typeUR ._H {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  ._article.typeUR ._wordCover {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
    width: 100%;
  }
}

._article.typeD ._imgCover, ._article.typeDL ._imgCover, ._article.typeDR ._imgCover {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: calc(20px - 20px) !important;
}
._article.typeD[img-merge=on] ._imgCover, ._article.typeDL[img-merge=on] ._imgCover, ._article.typeDR[img-merge=on] ._imgCover {
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 900px) {
  ._article.typeD ._imgCover, ._article.typeDL ._imgCover, ._article.typeDR ._imgCover {
    margin-bottom: -20px !important;
  }
  ._article.typeD[img-merge=on] ._imgCover, ._article.typeDL[img-merge=on] ._imgCover, ._article.typeDR[img-merge=on] ._imgCover {
    margin-bottom: 20px !important;
  }
}
._article.typeDL ._H, ._article.typeDR ._H {
  width: 35%;
}
@media only screen and (max-width: 900px) {
  ._article.typeDL ._H, ._article.typeDR ._H {
    width: 100%;
  }
}
._article.typeD ._wordCover {
  margin: 0;
}
._article.typeDL ._H {
  margin-bottom: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
._article.typeDL ._wordCover {
  margin-top: 0;
  margin-left: calc(40px - 20px);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: calc(65% - 40px - 20px);
}
@media only screen and (max-width: 900px) {
  ._article.typeDL ._H,
._article.typeDL ._wordCover {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  ._article.typeDL ._H {
    margin-bottom: 10px;
  }
  ._article.typeDL ._wordCover {
    margin: 0;
    width: 100%;
  }
}
._article.typeDR ._H {
  margin-bottom: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
._article.typeDR ._wordCover {
  margin-top: 0;
  margin-right: calc(40px - 20px);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc(65% - 40px - 20px);
}
@media only screen and (max-width: 900px) {
  ._article.typeDR ._H,
._article.typeDR ._wordCover {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  ._article.typeDR ._H {
    margin-bottom: 10px;
  }
  ._article.typeDR ._wordCover {
    margin: 0;
    width: 100%;
  }
}

._article.typeL ._contentWrap, ._article.typeR ._contentWrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

._article.typeL ._imgCover, ._article.typeLR ._imgCover {
  margin-left: 30px;
  width: calc(50% - 30px);
}
._article.typeL ._imgCover .swiper-button-cover, ._article.typeLR ._imgCover .swiper-button-cover {
  left: auto;
  right: 0;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  ._article.typeL ._imgCover, ._article.typeLR ._imgCover {
    margin: 0 0 -20px;
    width: 100%;
  }
  ._article.typeL ._H, ._article.typeLR ._H {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
._article.typeL ._imgCover {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
._article.typeL ._wordCover {
  margin-top: 0;
  width: 50%;
}
._article.typeL[img-row=x2] ._imgCover, ._article.typeL[img-row=x3] ._imgCover, ._article.typeL[img-row=x4] ._imgCover, ._article.typeL[img-row=x5] ._imgCover {
  margin: 0 -10px -20px 20px;
  width: calc(50% - 20px + 10px);
}
._article.typeL[img-merge=on] ._imgCover {
  margin: 0 0 0 30px;
  width: calc(50% - 30px);
}
@media only screen and (max-width: 900px) {
  ._article.typeL ._imgCover {
    margin: 0 0 -20px;
    width: 100%;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  ._article.typeL ._wordCover {
    margin-top: 20px;
    width: 100%;
  }
  ._article.typeL ._H {
    margin-top: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  ._article.typeL[img-row=x2] ._imgCover, ._article.typeL[img-row=x3] ._imgCover, ._article.typeL[img-row=x4] ._imgCover, ._article.typeL[img-row=x5] ._imgCover {
    margin: 0 -10px -20px;
    width: calc(100% + 20px);
  }
  ._article.typeL[img-merge=on] ._imgCover {
    margin: 0;
    width: 100%;
  }
}
._article.typeLR:after, ._article.typeLR:before {
  display: block;
  clear: both;
  content: "";
}
._article.typeLR ._contentWrap {
  display: block;
}
._article.typeLR ._imgCover {
  float: right;
  margin-bottom: 0px;
}
._article.typeLR[img-row=x2] ._imgCover, ._article.typeLR[img-row=x3] ._imgCover, ._article.typeLR[img-row=x4] ._imgCover, ._article.typeLR[img-row=x5] ._imgCover {
  margin: 0 -10px 0px 20px;
  width: calc(50% - 20px + 10px);
}
._article.typeLR[img-merge=on] ._imgCover {
  margin: 0 0 0 30px;
  width: calc(50% - 30px);
}
@media only screen and (max-width: 900px) {
  ._article.typeLR ._imgCover,
._article.typeLR ._H,
._article.typeLR ._subH {
    float: none;
    width: 100%;
  }
  ._article.typeLR ._H {
    margin-top: 20px !important;
  }
  ._article.typeLR[img-row=x2] ._imgCover, ._article.typeLR[img-row=x3] ._imgCover, ._article.typeLR[img-row=x4] ._imgCover, ._article.typeLR[img-row=x5] ._imgCover {
    margin: 0 -10px -20px;
    width: calc(100% + 20px);
  }
  ._article.typeLR[img-merge=on] ._imgCover {
    margin: 0;
    width: 100%;
  }
}

._article.typeR ._imgCover, ._article.typeRR ._imgCover {
  margin-right: 30px;
  width: calc(50% - 30px);
}
._article.typeR ._imgCover .swiper-button-cover, ._article.typeRR ._imgCover .swiper-button-cover {
  width: 100%;
}
@media only screen and (max-width: 900px) {
  ._article.typeR ._imgCover, ._article.typeRR ._imgCover {
    margin: 0 0 -20px;
    width: 100%;
  }
  ._article.typeR ._H, ._article.typeRR ._H {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
._article.typeR ._wordCover {
  margin-top: 0;
  width: 50%;
}
._article.typeR[img-row=x2] ._imgCover, ._article.typeR[img-row=x3] ._imgCover, ._article.typeR[img-row=x4] ._imgCover, ._article.typeR[img-row=x5] ._imgCover {
  margin: 0 20px -20px -10px;
  width: calc(50% - 20px + 10px);
}
._article.typeR[img-merge=on] ._imgCover {
  margin: 0 30px 0 0;
  width: calc(50% - 30px);
}
@media only screen and (max-width: 900px) {
  ._article.typeR ._imgCover {
    margin: 0 0 -20px;
    width: 100%;
  }
  ._article.typeR ._wordCover {
    margin-top: 20px;
    width: 100%;
  }
  ._article.typeR ._H {
    margin-top: 0;
  }
  ._article.typeR[img-row=x2] ._imgCover, ._article.typeR[img-row=x3] ._imgCover, ._article.typeR[img-row=x4] ._imgCover, ._article.typeR[img-row=x5] ._imgCover {
    margin: 0 -10px -20px;
    width: calc(100% + 20px);
  }
  ._article.typeR[img-merge=on] ._imgCover {
    margin: 0;
    width: 100%;
  }
}
._article.typeRR:after, ._article.typeRR:before {
  display: block;
  clear: both;
  content: "";
}
._article.typeRR ._contentWrap {
  display: block;
}
._article.typeRR ._imgCover {
  float: left;
  margin-bottom: 0px;
}
._article.typeRR[img-row=x2] ._imgCover, ._article.typeRR[img-row=x3] ._imgCover, ._article.typeRR[img-row=x4] ._imgCover, ._article.typeRR[img-row=x5] ._imgCover {
  margin: 0 20px 0px -10px;
  width: calc(50% - 20px + 10px);
}
._article.typeRR[img-merge=on] ._imgCover {
  margin: 0 30px 0 0;
  width: calc(50% - 30px);
}
@media only screen and (max-width: 900px) {
  ._article.typeRR ._imgCover,
._article.typeRR ._H,
._article.typeRR ._subH {
    float: none;
    width: 100%;
  }
  ._article.typeRR ._H {
    margin-top: 20px !important;
  }
  ._article.typeRR[img-row=x2] ._imgCover, ._article.typeRR[img-row=x3] ._imgCover, ._article.typeRR[img-row=x4] ._imgCover, ._article.typeRR[img-row=x5] ._imgCover {
    margin: 0 -10px;
    width: calc(100% + 20px);
  }
  ._article.typeRR[img-merge=on] ._imgCover {
    margin: 0;
    width: 100%;
  }
}

._article.typeF, ._article.typeFL, ._article.typeFR, ._article.typeFBox, ._article.typeFBoxL, ._article.typeFBoxR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 0;
  padding: 100px 40px;
}
._article.typeF ._backgroundWrap,
._article.typeF ._pc,
._article.typeF ._mobile, ._article.typeFL ._backgroundWrap,
._article.typeFL ._pc,
._article.typeFL ._mobile, ._article.typeFR ._backgroundWrap,
._article.typeFR ._pc,
._article.typeFR ._mobile, ._article.typeFBox ._backgroundWrap,
._article.typeFBox ._pc,
._article.typeFBox ._mobile, ._article.typeFBoxL ._backgroundWrap,
._article.typeFBoxL ._pc,
._article.typeFBoxL ._mobile, ._article.typeFBoxR ._backgroundWrap,
._article.typeFBoxR ._pc,
._article.typeFBoxR ._mobile {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
._article.typeF ._pc,
._article.typeF ._mobile, ._article.typeFL ._pc,
._article.typeFL ._mobile, ._article.typeFR ._pc,
._article.typeFR ._mobile, ._article.typeFBox ._pc,
._article.typeFBox ._mobile, ._article.typeFBoxL ._pc,
._article.typeFBoxL ._mobile, ._article.typeFBoxR ._pc,
._article.typeFBoxR ._mobile {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
._article.typeF ._mobile, ._article.typeFL ._mobile, ._article.typeFR ._mobile, ._article.typeFBox ._mobile, ._article.typeFBoxL ._mobile, ._article.typeFBoxR ._mobile {
  display: none;
}
._article.typeF ._contentWrap, ._article.typeFL ._contentWrap, ._article.typeFR ._contentWrap, ._article.typeFBox ._contentWrap, ._article.typeFBoxL ._contentWrap, ._article.typeFBoxR ._contentWrap {
  width: 75%;
}
._article.typeF ._wordCover, ._article.typeFL ._wordCover, ._article.typeFR ._wordCover, ._article.typeFBox ._wordCover, ._article.typeFBoxL ._wordCover, ._article.typeFBoxR ._wordCover {
  margin: 0;
}
._article.typeF ._imgCover + ._wordCover, ._article.typeFL ._imgCover + ._wordCover, ._article.typeFR ._imgCover + ._wordCover, ._article.typeFBox ._imgCover + ._wordCover, ._article.typeFBoxL ._imgCover + ._wordCover, ._article.typeFBoxR ._imgCover + ._wordCover {
  margin-top: 20px;
}
@media only screen and (max-width: 900px) {
  ._article.typeF, ._article.typeFL, ._article.typeFR, ._article.typeFBox, ._article.typeFBoxL, ._article.typeFBoxR {
    margin: 0 -20px;
    padding: 20px;
  }
  ._article.typeF ._H, ._article.typeFL ._H, ._article.typeFR ._H, ._article.typeFBox ._H, ._article.typeFBoxL ._H, ._article.typeFBoxR ._H {
    margin-top: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  ._article.typeF ._pc, ._article.typeFL ._pc, ._article.typeFR ._pc, ._article.typeFBox ._pc, ._article.typeFBoxL ._pc, ._article.typeFBoxR ._pc {
    display: none;
  }
  ._article.typeF ._mobile, ._article.typeFL ._mobile, ._article.typeFR ._mobile, ._article.typeFBox ._mobile, ._article.typeFBoxL ._mobile, ._article.typeFBoxR ._mobile {
    display: block;
  }
  ._article.typeF ._contentWrap, ._article.typeFL ._contentWrap, ._article.typeFR ._contentWrap, ._article.typeFBox ._contentWrap, ._article.typeFBoxL ._contentWrap, ._article.typeFBoxR ._contentWrap {
    width: 100%;
  }
  ._article.typeF ._imgCover + ._wordCover, ._article.typeFL ._imgCover + ._wordCover, ._article.typeFR ._imgCover + ._wordCover, ._article.typeFBox ._imgCover + ._wordCover, ._article.typeFBoxL ._imgCover + ._wordCover, ._article.typeFBoxR ._imgCover + ._wordCover {
    margin-top: 20px;
  }
}
._article.typeFBox ._contentWrap, ._article.typeFBoxL ._contentWrap, ._article.typeFBoxR ._contentWrap {
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 900px) {
  ._article.typeFBox ._contentWrap, ._article.typeFBoxL ._contentWrap, ._article.typeFBoxR ._contentWrap {
    padding: 40px 20px;
  }
}
._article.typeFL {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
._article.typeFR {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
._article.typeFBoxL {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
._article.typeFBoxR {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

._article:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 900px) {
  ._article:not(:last-child) {
    margin-bottom: 50px;
  }
}
._article[img-swiper=on] ._imgCover {
  position: relative;
}
._article[img-swiper=on] ._imgCover .swiper-button-cover:before {
  display: block;
  width: 100%;
  content: "";
}
._article[img-swiper=on][swiper-num="2"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 28.125% !important;
}
._article[img-swiper=on][swiper-num="3"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 18.75% !important;
}
._article[img-swiper=on][swiper-num="4"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 14.0625% !important;
}
._article[img-swiper=on][swiper-num="5"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 11.25% !important;
}
@media only screen and (max-width: 900px) {
  ._article[img-swiper=on][swiper-num="2"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
  ._article[img-swiper=on][swiper-num="3"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
  ._article[img-swiper=on][swiper-num="4"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
  ._article[img-swiper=on][swiper-num="5"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
}
._article[img-row=x2] ._imgCover {
  margin: 0 -10px -20px -10px;
  width: calc(100% + 20px);
}
._article[img-row=x2] ._imgCover ._cover {
  margin-bottom: 20px;
  padding: 0 10px;
  width: calc(100% / 2);
}
@media only screen and (max-width: 900px) {
  ._article[img-row=x2] ._imgCover {
    margin: 0 -10px -20px -10px;
    width: calc(100% + 20px);
  }
  ._article[img-row=x2] ._imgCover ._cover {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 50%;
  }
}
._article[img-row=x3] ._imgCover {
  margin: 0 -10px -20px -10px;
  width: calc(100% + 20px);
}
._article[img-row=x3] ._imgCover ._cover {
  margin-bottom: 20px;
  padding: 0 10px;
  width: calc(100% / 3);
}
@media only screen and (max-width: 900px) {
  ._article[img-row=x3] ._imgCover {
    margin: 0 -10px -20px -10px;
    width: calc(100% + 20px);
  }
  ._article[img-row=x3] ._imgCover ._cover {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 50%;
  }
}
._article[img-row=x4] ._imgCover {
  margin: 0 -10px -20px -10px;
  width: calc(100% + 20px);
}
._article[img-row=x4] ._imgCover ._cover {
  margin-bottom: 20px;
  padding: 0 10px;
  width: calc(100% / 4);
}
@media only screen and (max-width: 900px) {
  ._article[img-row=x4] ._imgCover {
    margin: 0 -10px -20px -10px;
    width: calc(100% + 20px);
  }
  ._article[img-row=x4] ._imgCover ._cover {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 50%;
  }
}
._article[img-row=x5] ._imgCover {
  margin: 0 -10px -20px -10px;
  width: calc(100% + 20px);
}
._article[img-row=x5] ._imgCover ._cover {
  margin-bottom: 20px;
  padding: 0 10px;
  width: calc(100% / 5);
}
@media only screen and (max-width: 900px) {
  ._article[img-row=x5] ._imgCover {
    margin: 0 -10px -20px -10px;
    width: calc(100% + 20px);
  }
  ._article[img-row=x5] ._imgCover ._cover {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 50%;
  }
}
._article[img-merge=on] ._imgCover {
  margin: 0;
  width: 100%;
}
._article[img-merge=on] ._imgCover ._cover {
  padding: 0;
  margin-bottom: 0;
}
._article[img-merge=on] ._imgCover ._cover ._description {
  display: none;
}
._article[article-flex=up].typeL ._contentWrap, ._article[article-flex=up].typeR ._contentWrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
._article[article-flex=center].typeL ._contentWrap, ._article[article-flex=center].typeR ._contentWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
._article[article-flex=down].typeL ._contentWrap, ._article[article-flex=down].typeR ._contentWrap {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
._article[h-align=center] ._H {
  text-align: center;
}
._article[h-align=right] ._H {
  text-align: right;
}
._article[subh-align=center] ._subH {
  text-align: center;
}
._article[subh-align=right] ._subH {
  text-align: right;
}
._article[p-align=center] ._P {
  text-align: center;
}
._article[p-align=right] ._P {
  text-align: right;
}
._article[description-align=center] ._description {
  text-align: center;
}
._article[description-align=right] ._description {
  text-align: right;
}
._article[button-align=center] ._buttonCover {
  text-align: center;
}
._article[button-align=right] ._buttonCover {
  text-align: right;
}
._article[img-size=x11] ._imgCover img, ._article[img-size=x34] ._imgCover img, ._article[img-size=x43] ._imgCover img, ._article[img-size=x169] ._imgCover img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 101%;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  object-posititon: 50% 50%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  ._article[img-size=x11] ._imgCover img, ._article[img-size=x34] ._imgCover img, ._article[img-size=x43] ._imgCover img, ._article[img-size=x169] ._imgCover img {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
  }
}
._article[img-size=x11] ._imgCover .swiper-button-cover:before,
._article[img-size=x11] ._imgCover ._photo:before {
  display: block;
  padding-bottom: 100% !important;
  width: 100%;
  content: "";
}
._article[img-size=x11][swiper-num="2"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 50% !important;
}
._article[img-size=x11][swiper-num="3"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 33.3333333333% !important;
}
._article[img-size=x11][swiper-num="4"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 25% !important;
}
._article[img-size=x11][swiper-num="5"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 20% !important;
}
@media only screen and (max-width: 900px) {
  ._article[img-size=x11][swiper-num="2"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 100% !important;
  }
  ._article[img-size=x11][swiper-num="3"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 100% !important;
  }
  ._article[img-size=x11][swiper-num="4"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 100% !important;
  }
  ._article[img-size=x11][swiper-num="5"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 100% !important;
  }
}
._article[img-size=x34] ._imgCover .swiper-button-cover:before,
._article[img-size=x34] ._imgCover ._photo:before {
  display: block;
  padding-bottom: 133.3% !important;
  width: 100%;
  content: "";
}
._article[img-size=x34][swiper-num="2"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 66.65% !important;
}
._article[img-size=x34][swiper-num="3"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 44.4333333333% !important;
}
._article[img-size=x34][swiper-num="4"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 33.325% !important;
}
._article[img-size=x34][swiper-num="5"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 26.66% !important;
}
@media only screen and (max-width: 900px) {
  ._article[img-size=x34][swiper-num="2"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 133.3% !important;
  }
  ._article[img-size=x34][swiper-num="3"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 133.3% !important;
  }
  ._article[img-size=x34][swiper-num="4"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 133.3% !important;
  }
  ._article[img-size=x34][swiper-num="5"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 133.3% !important;
  }
}
._article[img-size=x43] ._imgCover .swiper-button-cover:before,
._article[img-size=x43] ._imgCover ._photo:before {
  display: block;
  padding-bottom: 75% !important;
  width: 100%;
  content: "";
}
._article[img-size=x43][swiper-num="2"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 37.5% !important;
}
._article[img-size=x43][swiper-num="3"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 25% !important;
}
._article[img-size=x43][swiper-num="4"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 18.75% !important;
}
._article[img-size=x43][swiper-num="5"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 15% !important;
}
@media only screen and (max-width: 900px) {
  ._article[img-size=x43][swiper-num="2"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 75% !important;
  }
  ._article[img-size=x43][swiper-num="3"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 75% !important;
  }
  ._article[img-size=x43][swiper-num="4"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 75% !important;
  }
  ._article[img-size=x43][swiper-num="5"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 75% !important;
  }
}
._article[img-size=x169] ._imgCover .swiper-button-cover:before,
._article[img-size=x169] ._imgCover ._photo:before {
  display: block;
  padding-bottom: 56.25% !important;
  width: 100%;
  content: "";
}
._article[img-size=x169][swiper-num="2"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 28.125% !important;
}
._article[img-size=x169][swiper-num="3"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 18.75% !important;
}
._article[img-size=x169][swiper-num="4"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 14.0625% !important;
}
._article[img-size=x169][swiper-num="5"] ._imgCover .swiper-button-cover:before {
  padding-bottom: 11.25% !important;
}
@media only screen and (max-width: 900px) {
  ._article[img-size=x169][swiper-num="2"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
  ._article[img-size=x169][swiper-num="3"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
  ._article[img-size=x169][swiper-num="4"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
  ._article[img-size=x169][swiper-num="5"] ._imgCover .swiper-button-cover:before {
    padding-bottom: 56.25% !important;
  }
}
._article[img-flex=center] ._imgCover ._cover {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
._article[img-flex=down] ._imgCover ._cover {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
._article[img-firstbig=on] ._imgCover ._cover:first-child {
  width: 100%;
}
._article[typeFull-size=s] ._contentWrap {
  width: 50%;
}
@media only screen and (max-width: 900px) {
  ._article[typeFull-size=s] ._contentWrap {
    width: 100%;
  }
}
._article[typeFull-size=m] ._contentWrap {
  width: 65%;
}
@media only screen and (max-width: 900px) {
  ._article[typeFull-size=m] ._contentWrap {
    width: 100%;
  }
}
._article[typeFull-size=l] ._contentWrap {
  width: 75%;
}
@media only screen and (max-width: 900px) {
  ._article[typeFull-size=l] ._contentWrap {
    width: 100%;
  }
}
._article[typeFull-size=xl] ._contentWrap {
  width: 90%;
}
@media only screen and (max-width: 900px) {
  ._article[typeFull-size=xl] ._contentWrap {
    width: 100%;
  }
}
._article[typeFull-Slice=on].typeFBox, ._article[typeFull-Slice=on].typeFBoxL, ._article[typeFull-Slice=on].typeFBoxR {
  padding: 0;
}

[video-template] .modal-wrapper {
  padding: 0 60px;
}
[video-template] .modal-content {
  max-width: 1280px;
  width: 100%;
}
[video-template] .close-button {
  position: absolute;
  top: -30px;
  right: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
  cursor: pointer;
}
[video-template] .close-button:before, [video-template] .close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  background-color: #fff;
}
[video-template] .close-button:before {
  width: 3px;
  height: 20px;
}
[video-template] .close-button:after {
  width: 20px;
  height: 3px;
}

video-player .player-container {
  position: relative;
}
video-player .player-wrapper::before {
  display: block;
  padding-bottom: 56.25%;
  content: "";
}
video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video4-cover {
  position: relative;
}
.video4-cover .playButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  background-color: #E2233D;
  -webkit-box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.5);
          box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.5);
  border-radius: 500px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.video4-cover .playButton::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 9px;
  border-color: transparent transparent transparent #fff !important;
  content: "";
}
.video4-cover .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.video4-cover.onPage iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

dropdown-el {
  margin: 0 auto;
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
}
dropdown-el[d4-selected=""] .select-display {
  font-weight: 700;
  color: #272223;
}
dropdown-el[d4-status=open] .dropdown-icon {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
dropdown-el[multiple] .select-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
dropdown-el[multiple] .option-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 15px;
}
dropdown-el[multiple] .option-btn .text {
  color: #fff;
}
dropdown-el[multiple] .option-btn .remove-icon {
  position: relative;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 10px;
}
dropdown-el[multiple] .option-btn .remove-icon::before, dropdown-el[multiple] .option-btn .remove-icon::after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
dropdown-el[multiple] .option-btn .remove-icon::before {
  width: 100%;
  height: 1px;
}
dropdown-el[multiple] .option-btn .remove-icon::after {
  width: 1px;
  height: 100%;
}
dropdown-el:not([multiple]) .select-display {
  padding-right: 20px;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
dropdown-el.disabled {
  opacity: 0.5;
  pointer-events: none;
}
dropdown-el > li {
  display: none;
}
dropdown-el .select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 40px;
  cursor: pointer;
}
dropdown-el .select-display {
  padding: 2px 0;
  font-weight: 700;
}
dropdown-el .dropdown-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 25px;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
dropdown-el .dropdown-icon::before {
  display: block;
  width: 9px;
  height: 9px;
  border-left: 2px solid #272223;
  border-bottom: 2px solid #272223;
  -webkit-transform: translate3d(-2px, -2px, 0) rotate(-45deg);
          transform: translate3d(-2px, -2px, 0) rotate(-45deg);
  content: "";
}
dropdown-el .dropdown {
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  z-index: 1;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: opacity 0.4s cubic-bezier(0.02, 0.01, 0.47, 1);
  overflow: hidden;
  pointer-events: none;
}
dropdown-el .dropdown.show {
  opacity: 1;
  pointer-events: auto;
}
dropdown-el .dropdown.show .os-scrollbar-handle {
  pointer-events: auto;
}
dropdown-el .dropdown .os-scrollbar-handle {
  pointer-events: none;
}
dropdown-el .dropdown .filter-bar {
  width: 100%;
  margin: 0 auto;
  padding: 5px 5px 0;
}
dropdown-el .dropdown .filter-input {
  padding: 0 10px;
  display: block;
  border: none;
  border-radius: 8px;
  border: 1px solid #272223;
  width: 100%;
  height: 50px;
  font-size: 1rem;
}
dropdown-el .dropdown .dropdown-scroller {
  width: 100%;
  max-height: 225px;
  overflow: hidden;
}
dropdown-el .dropdown .dropdown-list {
  position: relative;
  width: 100%;
}
dropdown-el .dropdown .dropdown-list > li {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  text-align: center;
}
dropdown-el .dropdown .dropdown-list > li.active {
  color: #E2233D;
}
dropdown-el .dropdown .dropdown-list > li:hover {
  background-color: #F0F0F0;
}
dropdown-el .os-theme-dark > .os-scrollbar-vertical,
dropdown-el .os-theme-light > .os-scrollbar-vertical {
  width: 7px;
}
dropdown-el .os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
  background: #4F5F6B;
}
dropdown-el .os-theme-dark > .os-scrollbar > .os-scrollbar-track {
  background: var(--scrollbar-track-color);
  border-radius: var(--scrollbar-radius);
}
dropdown-el .os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background-color: rgba(79, 95, 107, 0.2);
  border-radius: 10px;
}

.no-image {
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  border: 1px solid #ABABAB;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.no-image .slash1, .no-image .slash2 {
  position: absolute;
  top: 0;
  height: 1px;
  background-color: #ABABAB;
}
.no-image .slash1 {
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.no-image .slash2 {
  right: 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

[data-upload-item] {
  position: relative;
}
[data-upload-item] input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 99;
  cursor: pointer;
}

[data-preview] {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
[data-preview] img {
  display: block;
  width: 100%;
  height: 100%;
}
[data-preview] img.cover {
  -o-object-fit: cover;
     object-fit: cover;
}
[data-preview] img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: block;
  color: #272223;
  font-size: 2.5rem;
  font-family: "icomoon" !important;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after {
  content: "\e907";
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next::after {
  content: "\e908";
}

.swiper-pagination {
  position: absolute;
  top: 50%;
  right: 50px;
  bottom: auto;
  left: auto;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column-align: center;
      justify-self: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  width: 20px;
}
.swiper-pagination.white {
  color: #fff;
}
.swiper-pagination.white .p-progress {
  background-color: rgba(255, 255, 255, 0.2);
}
.swiper-pagination.white .p-progress span {
  background-color: #fff;
}
.swiper-pagination.black {
  color: #272223;
}
.swiper-pagination.black .p-progress {
  background-color: rgba(39, 34, 35, 0.2);
}
.swiper-pagination.black .p-progress span {
  background-color: #272223;
}
.swiper-pagination .p-current {
  position: relative;
  color: #E2233D;
}
.swiper-pagination .p-current::before {
  display: block;
  position: absolute;
  top: 0;
  right: -2px;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  border-radius: 500px;
  background-color: #E2233D;
  width: 8px;
  height: 8px;
  content: "";
}
.swiper-pagination .p-progress {
  margin: 10px 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  width: 1px;
  height: 100px;
}
.swiper-pagination .p-progress span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  -webkit-animation-name: progress_height;
          animation-name: progress_height;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
}

.os-viewport {
  -ms-scroll-chaining: none !important;
      overscroll-behavior: contain !important;
}

.flatpickr-calendar {
  -webkit-animation: none !important;
          animation: none !important;
  -webkit-transform: translateY(15px) !important;
          transform: translateY(15px) !important;
}
.flatpickr-calendar::before, .flatpickr-calendar::after {
  display: none !important;
}

.copied-wrapper {
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  z-index: 99999999;
}
.copied-wrapper .text {
  position: relative;
  font-size: 0.875rem;
  padding: 10px;
  color: #fff;
  background-color: #E2233D;
  border-radius: 10px;
  white-space: nowrap;
  -webkit-box-shadow: 2.5px 4.3px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 2.5px 4.3px 20px 0 rgba(0, 0, 0, 0.1);
}
.copied-wrapper .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 9px 7px;
  border-color: transparent transparent #E2233D transparent;
}
.copied-wrapper #clipboard {
  position: absolute;
  width: 100%;
  min-width: 200px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -10;
  opacity: 0;
  cursor: default;
}

.sample-tips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 20px;
  background-color: #F6F6F6;
  margin: 50px 0;
}
.sample-tips::before {
  content: attr(tips-text);
  color: #E64646;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  white-space: pre-wrap;
}
@media only screen and (max-width: 575px) {
  .sample-tips::before {
    font-size: 1rem;
  }
}

.loading-wrapper {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(240, 240, 240, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.loading-wrapper .newton-cradle,
.loading-wrapper .newton-cradle > div {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.loading-wrapper .newton-cradle {
  display: block;
}
.loading-wrapper .newton-cradle > div {
  display: inline-block;
  float: none;
  background-color: #4F5F6B;
  border: 0 solid #4F5F6B;
}
.loading-wrapper .newton-cradle {
  width: 80px;
  height: 20px;
}
.loading-wrapper .newton-cradle > div {
  width: 20px;
  height: 20px;
  border-radius: 100%;
}
.loading-wrapper .newton-cradle > div:first-child {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-animation: newton-cradle-left 1s 0s ease-out infinite;
          animation: newton-cradle-left 1s 0s ease-out infinite;
}
.loading-wrapper .newton-cradle > div:last-child {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-animation: newton-cradle-right 1s 0s ease-out infinite;
          animation: newton-cradle-right 1s 0s ease-out infinite;
}
@-webkit-keyframes newton-cradle-left {
  25% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes newton-cradle-left {
  25% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes newton-cradle-right {
  50% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  75% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes newton-cradle-right {
  50% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  75% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes progress_height {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes progress_height {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes progress_width {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress_width {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
* {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 100%;
}
html.scrollbarStyle {
  scrollbar-width: thin;
  scrollbar-color: rgb(108, 110, 113) transparent;
}
html.scrollbarStyle body::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
html.scrollbarStyle body::-webkit-scrollbar {
  width: 6px;
}
@media only screen and (max-width: 768px) {
  html.scrollbarStyle body::-webkit-scrollbar {
    display: none;
  }
}
html.scrollbarStyle body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(108, 110, 113);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
html:not(.isMac), html.isMacBigSurUp, html.isFirefox {
  width: 100vw;
}
html:not(.isMac) body, html.isMacBigSurUp body, html.isFirefox body {
  width: 100vw;
  overflow-y: auto;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}
html body {
  color: #272223;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

input {
  font-family: "Lato", sans-serif;
}

.first-enter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-transition: opacity 0.4s 0.4s;
  transition: opacity 0.4s 0.4s;
}
.first-enter.hidden {
  opacity: 0;
  pointer-events: none;
}
.first-enter .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.first-enter .single {
  width: 78px;
  overflow: hidden;
}
.first-enter .single img {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-animation: enter 1s 0.6s forwards;
          animation: enter 1s 0.6s forwards;
}
.first-enter .text {
  width: 137px;
  overflow: hidden;
}
.first-enter .text img {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-animation: enter 1s 1.2s forwards;
          animation: enter 1s 1.2s forwards;
}
.first-enter span {
  margin: 0 20px;
  display: block;
  background-color: #E2233D;
  width: 2px;
  height: 28px;
}
@-webkit-keyframes enter {
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes enter {
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
          clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.d-none {
  display: none !important;
}

.lazy {
  opacity: 0;
}
.lazy.loaded {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.swiper-lazy {
  opacity: 0;
}
.swiper-lazy.swiper-lazy-loaded {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.main-wrapper.gap {
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .main-wrapper.gap {
    padding-top: 75px;
  }
}

main.gap {
  padding: 0 0 150px;
}
@media only screen and (max-width: 1280px) {
  main.gap {
    padding: 0 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  main.gap {
    padding: 0;
  }
}

@media only screen and (min-width: 1201px) {
  .mb-trigger:hover .more-button .arrow {
    color: #E2233D !important;
  }
  .mb-trigger:hover .more-button p {
    -webkit-transform: translate3d(6px, 0, 0);
            transform: translate3d(6px, 0, 0);
  }
}
@media only screen and (max-width: 1200px) {
  .mb-trigger:active .more-button .arrow {
    color: #E2233D !important;
  }
  .mb-trigger:active .more-button p {
    -webkit-transform: translate3d(6px, 0, 0);
            transform: translate3d(6px, 0, 0);
  }
}

.go-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.go-top::before {
  display: block;
  font-size: 1.375rem;
  font-family: "icomoon" !important;
  content: "\e906";
}

.more-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.more-button.black {
  color: #272223;
}
.more-button.black .arrow {
  color: #272223;
}
.more-button.white {
  color: #fff;
}
.more-button.white .arrow {
  color: #fff;
}
.more-button.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}
.more-button.vertical .arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.more-button.vertical p {
  margin: 10px 0 0;
}
.more-button .arrow {
  color: #E2233D;
  font-size: 2.5rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.more-button .circle {
  width: 60px;
  height: 60px;
}
.more-button .circle-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  background-color: #E2233D;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 0.75rem;
}
.more-button .circle-wrap.blue {
  background-color: #4F5F6B;
}
.more-button p {
  margin-left: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media only screen and (min-width: 1201px) {
  .more-button:hover .arrow {
    color: #E2233D !important;
  }
  .more-button:hover p {
    -webkit-transform: translate3d(6px, 0, 0);
            transform: translate3d(6px, 0, 0);
  }
  .more-button:hover.vertical p {
    -webkit-transform: translate3d(0, 6px, 0);
            transform: translate3d(0, 6px, 0);
  }
}
@media only screen and (max-width: 1200px) {
  .more-button:active .arrow {
    color: #E2233D !important;
  }
  .more-button:active p {
    -webkit-transform: translate3d(6px, 0, 0);
            transform: translate3d(6px, 0, 0);
  }
  .more-button:active.vertical p {
    -webkit-transform: translate3d(0, 6px, 0);
            transform: translate3d(0, 6px, 0);
  }
}
@media only screen and (max-width: 1280px) {
  .more-button .circle {
    width: 50px;
    height: 50px;
  }
}

.rect-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  width: 185px;
  height: 60px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.rect-button.border {
  color: #272223;
  border: 2px solid rgba(39, 34, 35, 0.5);
  -webkit-transition: color 0.4s, border 0.4s;
  transition: color 0.4s, border 0.4s;
}
.rect-button.red {
  background-color: #E2233D;
}
.rect-button.blue {
  background-color: #4F5F6B;
}
.rect-button.disable {
  color: rgba(39, 34, 35, 0.5);
  background-color: rgba(39, 34, 35, 0.1);
  pointer-events: none;
  cursor: default;
}
@media only screen and (min-width: 1201px) {
  .rect-button:hover.border {
    color: #E2233D;
    border: 2px solid rgba(79, 95, 107, 0.5);
  }
}
@media only screen and (max-width: 1200px) {
  .rect-button:active.border {
    color: #E2233D;
    border: 2px solid rgba(79, 95, 107, 0.5);
  }
}
@media only screen and (max-width: 767px) {
  .rect-button {
    width: 160px;
    height: 50px;
  }
}

.back-button {
  display: inline-block;
  width: 60px;
  height: 60px;
}
.back-button .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  background-color: #E2233D;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.back-button i.icon-cross {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .back-button {
    width: 50px;
    height: 50px;
  }
  .back-button .circle {
    font-size: 1rem;
  }
}

.text-button {
  font-size: 0.875rem;
  cursor: pointer;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-7 {
  font-weight: 700;
}

.fw-9 {
  font-weight: 900;
}

.price-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 10px;
}
.price-group p {
  font-size: 1rem;
}
.price-group p:first-child:not(:only-child) {
  position: relative;
  color: rgba(39, 34, 35, 0.6);
  font-size: 0.875rem;
}
.price-group p:first-child:not(:only-child)::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, calc(-50% + 0.5px), 0);
          transform: translate3d(0, calc(-50% + 0.5px), 0);
  background-color: rgba(39, 34, 35, 0.6);
  width: 100%;
  height: 1px;
  content: "";
}
.price-group .red {
  color: #E2233D;
}

.add-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  cursor: pointer;
}
.add-favorite.added i {
  color: #E2233D;
}
.add-favorite p {
  color: rgba(79, 95, 107, 0.5);
  font-size: 0.75rem;
  line-height: 1.2;
}
.add-favorite i {
  color: rgba(39, 34, 35, 0.2);
  font-size: 1.25rem;
}

.number-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.number-count > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.number-count .minus,
.number-count .plus {
  width: 15px;
  height: 15px;
  font-size: 1rem;
  cursor: pointer;
}
.number-count input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  outline: none;
  border: none;
  background: none;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  width: 100%;
}

.add-cart {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 40px;
  cursor: pointer;
}
.add-cart > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  line-height: 1.2;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.add-cart > div .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.3125rem;
}
.add-cart .ing {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.add-cart .ing .circle {
  position: relative;
  width: 30px;
  height: 30px;
}
.add-cart .ing .circle > div {
  position: absolute;
  width: 24.1379%;
  height: 24.1379%;
  border-radius: 500px;
  background-color: #4F5F6B;
  -webkit-animation-name: circle_loading;
          animation-name: circle_loading;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
.add-cart .ing .circle > div:nth-child(1) {
  left: 0;
  top: 39.6552%;
  -webkit-animation-delay: 0.41s;
          animation-delay: 0.41s;
}
.add-cart .ing .circle > div:nth-child(2) {
  left: 10.3448%;
  top: 10.3448%;
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.add-cart .ing .circle > div:nth-child(3) {
  top: 0;
  left: 39.6552%;
  -webkit-animation-delay: 0.69s;
          animation-delay: 0.69s;
}
.add-cart .ing .circle > div:nth-child(4) {
  right: 10.3448%;
  top: 10.3448%;
  -webkit-animation-delay: 0.83s;
          animation-delay: 0.83s;
}
.add-cart .ing .circle > div:nth-child(5) {
  right: 0;
  top: 39.6552%;
  -webkit-animation-delay: 0.97s;
          animation-delay: 0.97s;
}
.add-cart .ing .circle > div:nth-child(6) {
  right: 10.3448%;
  bottom: 10.3448%;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.add-cart .ing .circle > div:nth-child(7) {
  left: 39.6552%;
  bottom: 0;
  -webkit-animation-delay: 1.24s;
          animation-delay: 1.24s;
}
.add-cart .ing .circle > div:nth-child(8) {
  left: 10.3448%;
  bottom: 10.3448%;
  -webkit-animation-delay: 1.38s;
          animation-delay: 1.38s;
}
@-webkit-keyframes circle_loading {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
@keyframes circle_loading {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
.add-cart[loading] {
  pointer-events: none;
  cursor: wait !important;
}
.add-cart[loading] > div {
  opacity: 0;
}
.add-cart[loading] .ing {
  opacity: 1;
}

.unit-point {
  max-width: 640px;
}
.unit-point.center {
  text-align: center;
}
.unit-point.right {
  text-align: right;
}
.unit-point .main {
  font-size: 3.125rem;
  line-height: 1.2;
}
.unit-point .main:not(:first-child) {
  margin-top: 20px;
}
.unit-point .sub {
  color: #4F5F6B;
  font-size: 2.5rem;
  line-height: 1.2;
}
.unit-point .sub:not(:first-child) {
  margin-top: 20px;
}
.unit-point .text {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1280px) {
  .unit-point .main {
    font-size: 2.625rem;
  }
  .unit-point .sub {
    margin-top: 10px;
    font-size: 2rem;
  }
  .unit-point .text {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .unit-point .main {
    font-size: 2.25rem;
  }
  .unit-point .sub {
    font-size: 1.625rem;
  }
}

.block-point {
  max-width: 640px;
}
.block-point.center {
  text-align: center;
}
.block-point.right {
  text-align: right;
}
.block-point .sub {
  color: #E2233D;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.block-point .sub:not(:first-child) {
  margin-top: 20px;
}
.block-point .main {
  font-size: 2.5rem;
  line-height: 1.2;
}
.block-point .main:not(:first-child) {
  margin-top: 20px;
}
.block-point .main.fz-50 {
  font-size: 3.125rem;
}
.block-point .text {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1280px) {
  .block-point .main {
    font-size: 2.25rem;
  }
  .block-point .main.fz-50 {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 1024px) {
  .block-point .main {
    font-size: 1.875rem;
  }
  .block-point .main.fz-50 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .block-point .sub:not(:first-child) {
    margin-top: 10px;
  }
  .block-point .main:not(:first-child) {
    margin-top: 10px;
  }
  .block-point .text {
    margin-top: 10px;
  }
}

.item-point.center {
  text-align: center;
}
.item-point.right {
  text-align: right;
}
.item-point .main {
  font-size: 1.25rem;
  line-height: 1.4;
}
.item-point .main:not(:first-child) {
  margin-top: 10px;
}
.item-point .main.fz-30 {
  font-size: 1.875rem;
  line-height: 1.2;
}
.item-point .main.fz-50 {
  font-size: 3.125rem;
  line-height: 1.2;
}
.item-point .sub {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.item-point .sub:not(:first-child) {
  margin-top: 10px;
}
.item-point .sub.fz-18 {
  font-size: 1.125rem;
  line-height: 1.4;
}
.item-point .text {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 1280px) {
  .item-point .main.fz-30 {
    font-size: 1.75rem;
  }
  .item-point .main.fz-50 {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 1024px) {
  .item-point .main.fz-30 {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .item-point .main {
    font-size: 1.125rem;
  }
  .item-point .main.fz-30 {
    font-size: 1.5rem;
  }
  .item-point .main.fz-50 {
    font-size: 2.25rem;
  }
  .item-point .text {
    -webkit-line-clamp: 3;
  }
}

.control-bar {
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(79, 95, 107, 0.2);
}
.control-bar .breadcrumbs,
.control-bar .paging,
.control-bar .control {
  padding: 16px 0;
}
.control-bar .breadcrumbs:only-child,
.control-bar .paging:only-child,
.control-bar .control:only-child {
  width: 100%;
}
.control-bar .breadcrumbs {
  width: 70%;
}
.control-bar .breadcrumbs .breadcrumbs-content {
  position: relative;
}
.control-bar .breadcrumbs .breadcrumbs-content.slidable {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff 80%, rgba(255, 255, 255, 0));
          mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
          mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff 80%, rgba(255, 255, 255, 0));
  overflow: hidden;
}
.control-bar .breadcrumbs .breadcrumbs-content.slidable .wrapper {
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.control-bar .breadcrumbs .breadcrumbs-content.slidable .wrapper.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.control-bar .breadcrumbs .breadcrumbs-content.slidable .wrapper.moving .category {
  pointer-events: none;
}
.control-bar .breadcrumbs .breadcrumbs-content.is-start {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
  -webkit-mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
          mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
          mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
}
.control-bar .breadcrumbs .breadcrumbs-content.is-end {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
          mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
          mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
}
.control-bar .breadcrumbs .wrapper {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  -ms-grid-rows: none;
  grid-template-rows: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: auto hidden;
  overscroll-behavior-inline: contain;
  -ms-scroll-snap-type: inline mandatory;
      scroll-snap-type: inline mandatory;
  scroll-padding-inline: 85px;
  -webkit-scrollbar-width: none;
  -moz-scrollbar-width: none;
  -ms-scrollbar-width: none;
  scrollbar-width: none;
}
.control-bar .breadcrumbs .wrapper.scrollable {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff 80%, rgba(255, 255, 255, 0));
          mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
          mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff 80%, rgba(255, 255, 255, 0));
}
.control-bar .breadcrumbs .wrapper.start {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
  -webkit-mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
          mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
          mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
}
.control-bar .breadcrumbs .wrapper.end {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
          mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
          mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
}
.control-bar .breadcrumbs .wrapper::-webkit-scrollbar {
  display: none;
}
.control-bar .breadcrumbs .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #272223;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.2;
  cursor: default;
  white-space: nowrap;
}
.control-bar .breadcrumbs .item:not(:last-child)::after {
  margin: 0 10px;
  display: block;
  border-radius: 500px;
  background-color: rgba(79, 95, 107, 0.2);
  width: 5px;
  height: 5px;
  content: "";
}
.control-bar .paging {
  position: relative;
  width: 30%;
  text-align: right;
}
.control-bar .paging .paging-dropdown {
  position: relative;
  display: inline-block;
  max-width: 380px;
  width: 100%;
}
.control-bar .paging .dropdown-block {
  cursor: pointer;
}
.control-bar .paging .dropdown-block .selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 15px;
}
.control-bar .paging .dropdown-block .down::before {
  display: block;
  font-family: "icomoon";
  font-size: 0.75rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  content: "\e90f";
}
.control-bar .paging .dropdown-block.active .down::before {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.control-bar .paging .dropdown-wrap {
  padding: 10px;
  position: absolute;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  display: none;
  background: #fff;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.control-bar .paging .dropdown-wrap .scroll-wrap {
  max-height: 360px;
  overflow: auto;
  width: 250px;
}
.control-bar .paging .dropdown-wrap .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.control-bar .paging .dropdown-wrap .link {
  padding: 15px 30px;
  display: block;
  border-radius: 5px;
}
.control-bar .paging .dropdown-wrap .link.active {
  color: #E2233D;
}
@media only screen and (min-width: 1201px) {
  .control-bar .paging .dropdown-wrap .link:hover {
    background: #F0F0F0;
  }
}
@media only screen and (max-width: 1200px) {
  .control-bar .paging .dropdown-wrap .link:active {
    background: #F0F0F0;
  }
}
.control-bar .paging .os-scrollbar-vertical {
  width: 7px;
}
.control-bar .paging .os-scrollbar-handle {
  background: #4F5F6B;
  opacity: 0.2;
}
.control-bar .paging.paging-large .dropdown-block {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 30px;
}
.control-bar .paging.paging-large .dropdown-block .back-overview {
  color: #4F5F6B;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.control-bar .paging.paging-large .dropdown-block.active .back-overview {
  opacity: 1;
}
.control-bar .paging.paging-large .dropdown-wrap {
  z-index: 9;
  padding: 80px 0 150px;
  width: 100vw;
  top: -26px;
  right: -60px;
}
.control-bar .paging.paging-large .dropdown-wrap .container {
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.2083vw;
  text-align: left;
}
.control-bar .paging.paging-large .dropdown-wrap .link-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #272223;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
}
.control-bar .paging.paging-large .dropdown-wrap .link-wrap > a {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}
.control-bar .paging.paging-large .dropdown-wrap .link-wrap > a:not(:last-child) {
  margin-bottom: 15px;
}
.control-bar .paging.paging-large .dropdown-wrap .link-wrap > a:first-child {
  margin-top: 20px;
}
.control-bar .text-button {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (min-width: 1201px) {
  .control-bar .text-button:hover {
    color: #4F5F6B;
  }
}
@media only screen and (max-width: 1200px) {
  .control-bar .text-button:active {
    color: #4F5F6B;
  }
}
@media only screen and (max-width: 1024px) {
  .control-bar {
    padding: 0 40px;
  }
  .control-bar .paging.paging-large .dropdown-wrap {
    right: -40px;
  }
}
@media only screen and (max-width: 992px) {
  .control-bar .breadcrumbs {
    width: 60%;
  }
  .control-bar .paging {
    width: 40%;
  }
  .control-bar .paging.paging-large .dropdown-wrap {
    padding: 80px 20px 60px;
    right: -20px;
  }
  .control-bar .paging.paging-large .dropdown-wrap .container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-height: 500px;
    overflow-y: auto;
  }
  .control-bar .breadcrumbs,
.control-bar .paging {
    padding: 12px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .control-bar {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .control-bar .breadcrumbs,
.control-bar .paging,
.control-bar .control {
    padding: 15px 20px;
  }
  .control-bar .breadcrumbs {
    position: relative;
    z-index: 2;
  }
  .control-bar .breadcrumbs li:not(:last-child)::after {
    margin: 0 5px;
  }
  .control-bar .paging {
    position: relative;
    z-index: 1;
    text-align: left;
  }
  .control-bar .paging .paging-dropdown {
    width: auto;
  }
  .control-bar .paging .dropdown-wrap {
    right: auto;
    left: 0;
  }
  .control-bar .paging .dropdown-block {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .control-bar .paging .dropdown-block .back-overview {
    display: none;
  }
  .control-bar .paging.paging-large .dropdown-wrap {
    padding: 55px 20px 20px;
    right: auto;
    left: -20px;
  }
  .control-bar .paging.paging-large .dropdown-wrap .container {
    padding: 0;
    max-height: 400px;
  }
  .control-bar .paging.paging-large .dropdown-wrap .link-wrap {
    font-size: 1.875rem;
  }
  .control-bar .paging.paging-large .dropdown-wrap .link-wrap > a:not(:last-child) {
    margin-bottom: 5px;
  }
  .control-bar .paging.paging-large .dropdown-wrap .link-wrap > a:first-child {
    margin-top: 10px;
  }
  .control-bar .text-button {
    padding: 0 20px;
    margin: 0 auto 0 0;
  }
}

.share-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.share-group::before {
  margin-right: 25px;
  display: block;
  color: #4F5F6B;
  opacity: 0.5;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  content: "SHARE TO";
}
.share-group ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column-align: center;
      justify-self: center;
  gap: 20px;
}
.share-group a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.25rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (min-width: 1201px) {
  .share-group a:hover {
    color: #E2233D;
  }
}
@media only screen and (max-width: 1200px) {
  .share-group a:active {
    color: #E2233D;
  }
}
.share-group .icon-fb {
  font-size: 1.375rem;
}
.share-group .icon-wechat {
  font-size: 1.375rem;
}
@media only screen and (max-width: 767px) {
  .share-group::before {
    margin-right: 15px;
  }
}

.common-banner {
  padding-top: 100px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 600px;
}
.common-banner[theme-align=left] .content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.common-banner[theme-align=left] .category-navbar .category-container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.common-banner[theme-align=center] .content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.common-banner[theme-align=right] .content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
.common-banner[theme-align=right] .category-navbar .category-container {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.common-banner[font-color=white] {
  color: #fff;
}
.common-banner[font-color=white] .unit-point .sub {
  color: #fff;
}
.common-banner[font-color=white] .control-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.common-banner[font-color=white] .control-bar .breadcrumbs .item {
  color: #fff;
}
.common-banner[font-color=white] .control-bar .breadcrumbs .item:not(:last-child):after {
  background-color: rgba(255, 255, 255, 0.2);
}
.common-banner[font-color=black] {
  color: #272223;
}
.common-banner .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.common-banner .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.common-banner .background .mobile {
  display: none;
}
.common-banner .container {
  padding: 0 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.common-banner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  width: 100%;
}
.common-banner .content .unit-point {
  width: 100%;
}
.common-banner .content .unit-point .text {
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.common-banner .control-bar {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  width: 100%;
}
.common-banner .category-navbar {
  margin-top: 35px;
}
.common-banner .category-navbar .category-container {
  padding: 0 !important;
}
@media only screen and (max-width: 768px) {
  .common-banner {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .common-banner {
    height: 120vw;
  }
  .common-banner .background .mobile {
    display: block;
  }
  .common-banner .background .desktop {
    display: none;
  }
  .common-banner .container {
    padding: 0 20px;
  }
  .common-banner .content {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    text-align: center !important;
  }
  .common-banner .control-bar .breadcrumbs {
    background: none;
  }
  .common-banner .category-navbar .category-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

.category-navbar {
  padding: 0 60px;
}
.category-navbar .category-container {
  margin: 0 auto;
  padding: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 1070px;
  width: 100%;
  text-align: center;
}
.category-navbar .wrapper {
  padding: 2px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 45px;
}
.category-navbar .item {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  cursor: pointer;
}
@media only screen and (min-width: 1201px) {
  .category-navbar .item:hover .category::after {
    left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .category-navbar .item:active .category::after {
    left: 0;
    width: 100%;
  }
}
.category-navbar .item.active:not([data-anchor-target]) .category:not([data-anchor-target]) {
  color: #E2233D;
}
.category-navbar .item.active:not([data-anchor-target]) .category:not([data-anchor-target])::after {
  background-color: #E2233D;
  width: 100%;
}
.category-navbar .category {
  display: block;
  position: relative;
  padding: 15px 0;
}
.category-navbar .category::after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #4F5F6B;
  width: 0;
  height: 2px;
  -webkit-transition: width 0.2s, background 0.2s;
  transition: width 0.2s, background 0.2s;
  content: "";
}
@media only screen and (max-width: 767px) {
  .category-navbar {
    padding: 0;
  }
  .category-navbar .category-container {
    padding: 0;
  }
  .category-navbar .wrapper {
    padding: 2px 30px;
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
    -ms-grid-rows: none;
    grid-template-rows: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 25px !important;
    overflow: auto hidden;
    overscroll-behavior-inline: contain;
    -ms-scroll-snap-type: inline mandatory;
        scroll-snap-type: inline mandatory;
    scroll-padding-inline: 85px;
    -webkit-scrollbar-width: none;
    -moz-scrollbar-width: none;
    -ms-scrollbar-width: none;
    scrollbar-width: none;
  }
  .category-navbar .wrapper::-webkit-scrollbar {
    display: none;
  }
  .category-navbar .wrapper.center {
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
    -webkit-mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff 80%, rgba(255, 255, 255, 0));
            mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
            mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff 80%, rgba(255, 255, 255, 0));
  }
  .category-navbar .wrapper.start {
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
    -webkit-mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
            mask-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
            mask-image: linear-gradient(270deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
  }
  .category-navbar .wrapper.end {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
    -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
            mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), to(#fff));
            mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 20%, #fff);
  }
}

.common-pagination {
  margin-top: clamp(80px, 5.2083vw, 100px);
  text-align: center;
}
.common-pagination .bullet-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.common-pagination .bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.common-pagination .bullet.active {
  background-color: #E2233D;
  color: #fff;
}
.common-pagination .uni {
  position: relative;
}
.common-pagination .uni::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  border-radius: 500px;
  border: 2px solid rgba(79, 95, 107, 0.5);
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  content: "";
}
@media only screen and (min-width: 1201px) {
  .common-pagination .uni:hover {
    background-color: #E2233D;
    color: #fff;
  }
  .common-pagination .uni:hover::before {
    opacity: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .common-pagination .uni:active {
    background-color: #E2233D;
    color: #fff;
  }
  .common-pagination .uni:active::before {
    opacity: 0;
  }
}
.common-pagination .less {
  cursor: default;
}
.common-pagination .less span {
  margin: 0 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 500px;
  background-color: #272223;
  width: 3px;
  height: 3px;
}
.common-pagination .less::before, .common-pagination .less::after {
  display: block;
  border-radius: 500px;
  background-color: #272223;
  width: 3px;
  height: 3px;
  content: "";
}
@media only screen and (min-width: 1201px) {
  .common-pagination .main:not(.active):hover {
    color: #E2233D;
  }
}
@media only screen and (max-width: 1200px) {
  .common-pagination .main:not(.active):active {
    color: #E2233D;
  }
}
@media only screen and (max-width: 767px) {
  .common-pagination {
    margin-top: 50px;
  }
}

.empty-block {
  padding: 140px 60px 0;
}
.empty-block .block {
  margin: 0 auto;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  border: 1px dashed #4F5F6B;
  max-width: 1100px;
  text-align: center;
}
.empty-block .block img {
  margin: -140px 0 50px;
  max-width: 100%;
  width: auto;
}
.empty-block .block .sub {
  margin-bottom: 15px;
  color: #E2233D;
  font-size: 1rem;
  line-height: 1.2;
}
.empty-block .block .main {
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.empty-block .block .text {
  font-size: 1rem;
  line-height: 1.5;
}
.empty-block .related-product {
  margin-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .empty-block {
    padding: 140px 40px 60px;
  }
}
@media only screen and (max-width: 992px) {
  .empty-block .related-product {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .empty-block {
    padding: 140px 20px 60px;
  }
  .empty-block .block {
    padding: 0 30px 50px;
  }
  .empty-block .block img {
    margin: -90px 0 30px;
    width: 200px;
  }
}

.cart-item {
  padding: 0 20px;
}
.cart-item .gap {
  padding: 30px 0;
}
.cart-item .gap:not(:last-child) {
  border-bottom: 1px solid rgba(79, 95, 107, 0.1);
}
.cart-item .detail-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-item .detail-group .content {
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 10px;
  width: 100%;
  line-height: 1.2;
}
.cart-item .detail-group .photo {
  position: relative;
  background-color: #F2F2F2;
  max-width: 100px;
  width: 100%;
}
.cart-item .detail-group .photo::before {
  display: block;
  padding-bottom: 100%;
  content: "";
}
.cart-item .detail-group .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-item .detail-group .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  max-width: 250px;
  width: 100%;
}
.cart-item .detail-group .price-group {
  color: #4F5F6B;
}
.cart-item .detail-group .qty {
  margin: 0 auto;
  width: 35px;
  font-size: 1.25rem;
  text-align: right;
}
.cart-item .detail-group .subtotal {
  width: 70px;
  color: #4F5F6B;
  text-align: right;
}
.cart-item .detail-group .delete {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}
.cart-item .detail-group .delete div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 500px;
  background-color: rgba(39, 34, 35, 0.3);
  width: 20px;
  height: 20px;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
}
.cart-item .detail-group .delete div i {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.cart-item .detail-fee {
  padding-right: 35px;
  margin-top: 10px;
  line-height: 1.2;
  text-align: right;
}
.cart-item .detail-fee span {
  color: #4F5F6B;
}
.cart-item .detail-fee p {
  font-size: 0.875rem;
}
.cart-item .select-info {
  line-height: 1.5;
}
.cart-item .select-info .b {
  line-height: 1.6;
}
.cart-item .select-info div:not(:last-child) {
  margin-bottom: 5px;
}
.cart-item .addons > p {
  color: #4F5F6B;
}
.cart-item .addons .control {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart-item .addons .control p {
  color: #4F5F6B;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .cart-item {
    padding: 0 15px;
  }
  .cart-item .gap {
    padding: 20px 0;
  }
  .cart-item .gap:first-child {
    padding-top: 10px;
  }
  .cart-item .gap:last-child {
    padding-bottom: 10px;
  }
  .cart-item .detail-group .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cart-item .detail-group .photo {
    max-width: 80px;
  }
  .cart-item .detail-group .desc {
    margin-bottom: 10px;
    max-width: none;
  }
  .cart-item .detail-group .qty,
.cart-item .detail-group .subtotal {
    margin: 0 auto 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cart-item .detail-group .qty::before,
.cart-item .detail-group .subtotal::before {
    margin-right: 5px;
    display: block;
    -webkit-transform: translate3d(0, 2px, 0);
            transform: translate3d(0, 2px, 0);
    color: #272223;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.2;
  }
  .cart-item .detail-group .qty::before {
    content: "QTY";
  }
  .cart-item .detail-group .subtotal::before {
    content: "SUBTOTAL";
  }
  .cart-item .detail-fee {
    text-align: left;
  }
  .cart-item .addons > p {
    margin-bottom: 10px;
  }
}

nav.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100px;
}
nav.navbar[font-color=white] {
  color: #fff;
}
nav.navbar[font-color=white] .navbar-logo .white {
  display: block;
}
nav.navbar[font-color=white] .navbar-logo .black {
  display: none;
}
nav.navbar[font-color=white] .navbar-logo .text {
  background-color: #F0F0F0;
  color: #272223;
}
nav.navbar[font-color=white] .navbar-tools .cart span {
  background-color: #F0F0F0;
  color: #272223;
}
nav.navbar[font-color=white] .navbar-tools .menu-button .menu-dot {
  background-color: #fff;
}
@media only screen and (min-width: 1201px) {
  nav.navbar[font-color=white] .navbar-tools .menu-button:hover .dot1 {
    background-color: #fff !important;
  }
}
@media only screen and (max-width: 1200px) {
  nav.navbar[font-color=white] .navbar-tools .menu-button:active .dot1 {
    background-color: #fff !important;
  }
}
nav.navbar[font-color=black] {
  color: #272223;
}
nav.navbar[font-color=black] .navbar-logo .text {
  background-color: #272223;
  color: #fff;
}
nav.navbar[font-color=black] .navbar-tools .cart span {
  background-color: #272223;
  color: #fff;
}
nav.navbar.transparent .container {
  background: none;
}
nav.navbar.fixed {
  position: fixed;
  top: -100px;
  color: #272223;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
nav.navbar.fixed .navbar-logo .text {
  background-color: #272223;
  color: #fff;
}
nav.navbar.fixed .navbar-tools .cart span {
  background-color: #272223;
  color: #fff;
}
nav.navbar.fixed .navbar-tools .menu-button .menu-dot {
  background-color: #4F5F6B !important;
}
nav.navbar.fixed .navbar-tools .menu-button .dot1 {
  background-color: #E2233D !important;
}
@media only screen and (min-width: 1201px) {
  nav.navbar.fixed .navbar-tools .menu-button:hover .dot1 {
    background-color: #4F5F6B !important;
  }
}
@media only screen and (max-width: 1200px) {
  nav.navbar.fixed .navbar-tools .menu-button:active .dot1 {
    background-color: #4F5F6B !important;
  }
}
@media only screen and (min-width: 1201px) {
  nav.navbar.fixed:hover .container {
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  }
}
nav.navbar.fixed .navbar-logo .white {
  display: none;
}
nav.navbar.fixed .navbar-logo .black {
  display: block;
}
nav.navbar.fixed .navbar-tools .menu-button .white {
  display: none;
}
nav.navbar.fixed .navbar-tools .menu-button .blue {
  display: block;
}
nav.navbar.show {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}
nav.navbar .container {
  padding: 0 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: background 0.4s, -webkit-box-shadow 0.4s;
  transition: background 0.4s, -webkit-box-shadow 0.4s;
  transition: background 0.4s, box-shadow 0.4s;
  transition: background 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}
nav.navbar .container::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background-color: #E2233D;
  width: 280px;
  height: 8px;
  content: "";
}
nav.navbar .navbar-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
nav.navbar .navbar-logo .white {
  display: none;
}
nav.navbar .navbar-logo .black {
  display: block;
}
nav.navbar .navbar-logo img {
  width: 250px;
}
nav.navbar .navbar-logo img.mobile {
  display: none;
}
nav.navbar .navbar-logo .text {
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  background-color: #272223;
  width: 75px;
  height: 40px;
  color: #fff;
}
nav.navbar .navbar-list {
  margin: 0 auto;
  display: inline-block;
}
nav.navbar .navbar-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
nav.navbar .navbar-list li {
  width: 100px;
  text-align: center;
}
nav.navbar .navbar-list a {
  line-height: 1.2;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (min-width: 1201px) {
  nav.navbar .navbar-list a:hover {
    color: #E2233D;
  }
}
@media only screen and (max-width: 1200px) {
  nav.navbar .navbar-list a:active {
    color: #E2233D;
  }
}
nav.navbar .navbar-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 25px;
  width: 340px;
}
nav.navbar .navbar-tools .filter-button {
  font-size: 1.125rem;
  cursor: pointer;
}
nav.navbar .navbar-tools .filter-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
}
nav.navbar .navbar-tools .tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 22px;
}
nav.navbar .navbar-tools .tools > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 5px;
  font-weight: 700;
}
nav.navbar .navbar-tools .tools > div i {
  font-size: 1.25rem;
}
nav.navbar .navbar-tools .tools > div span {
  font-size: 0.875rem;
  line-height: 1.2;
}
nav.navbar .navbar-tools .cart span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  background-color: #272223;
  width: 25px;
  height: 25px;
  color: #fff;
}
@media only screen and (max-width: 1366px) {
  nav.navbar .navbar-logo img {
    width: 200px;
  }
  nav.navbar .navbar-logo .text {
    width: 70px;
    height: 35px;
  }
  nav.navbar .navbar-tools {
    width: 285px;
  }
}
@media only screen and (max-width: 1200px) {
  nav.navbar {
    height: 100px;
  }
  nav.navbar.fixed .container {
    background-color: #fff;
  }
  nav.navbar .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  nav.navbar .navbar-list {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  nav.navbar .container {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  nav.navbar {
    height: 75px;
  }
  nav.navbar.fixed {
    top: -75px;
  }
}
@media only screen and (max-width: 767px) {
  nav.navbar .container {
    padding: 0 20px;
  }
  nav.navbar .container::after {
    width: 100px;
  }
  nav.navbar .navbar-logo img {
    width: 65px;
  }
  nav.navbar .navbar-logo img.desktop {
    display: none;
  }
  nav.navbar .navbar-logo img.mobile {
    display: block;
  }
  nav.navbar .navbar-logo .text {
    margin-left: 5px;
    width: 65px;
    height: 30px;
  }
  nav.navbar .navbar-tools {
    gap: 15px;
  }
  nav.navbar .navbar-tools .tools {
    gap: 15px;
  }
}
@media only screen and (max-width: 400px) {
  nav.navbar .container {
    padding: 0 15px;
  }
}

.menu-button {
  position: relative;
  width: 23px;
  height: 23px;
  cursor: pointer;
}
@media only screen and (min-width: 1201px) {
  .menu-button:not(.active):hover .dot1 {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    background-color: #4F5F6B;
  }
}
@media only screen and (max-width: 1200px) {
  .menu-button:not(.active):active .dot1 {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    background-color: #4F5F6B;
  }
}
.menu-button .menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.menu-button .menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #4F5F6B;
  -webkit-transition: background-color 0.2s, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: background-color 0.2s, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: background-color 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: background-color 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-button .menu-dot.dot1 {
  background-color: #E2233D;
  -webkit-transform: translate3d(-100%, -100%, 0px);
          transform: translate3d(-100%, -100%, 0px);
}
.menu-button.active .dot1 {
  -webkit-transform: translate3d(9px, 9px, 0);
          transform: translate3d(9px, 9px, 0);
}
.menu-button.active .dot2 {
  -webkit-transform: translate3d(0, 9px, 0);
          transform: translate3d(0, 9px, 0);
}
.menu-button.active .dot3 {
  -webkit-transform: translate3d(-9px, 9px, 0);
          transform: translate3d(-9px, 9px, 0);
}
.menu-button.active .dot4 {
  -webkit-transform: translate3d(9px, 0, 0);
          transform: translate3d(9px, 0, 0);
}
.menu-button.active .dot6 {
  -webkit-transform: translate3d(-9px, 0, 0);
          transform: translate3d(-9px, 0, 0);
}
.menu-button.active .dot7 {
  -webkit-transform: translate3d(9px, -9px, 0);
          transform: translate3d(9px, -9px, 0);
}
.menu-button.active .dot8 {
  -webkit-transform: translate3d(0, -9px, 0);
          transform: translate3d(0, -9px, 0);
}
.menu-button.active .dot9 {
  -webkit-transform: translate3d(-9px, -9px, 0);
          transform: translate3d(-9px, -9px, 0);
}
.menu-button.scatter .menu-dot {
  background-color: #4F5F6B;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.menu-button.scatter .dot1 {
  background-color: #4F5F6B;
}
.menu-button.scatter .dot5 {
  background-color: #E2233D;
}
.menu-button.scatter .dot2,
.menu-button.scatter .dot4,
.menu-button.scatter .dot6,
.menu-button.scatter .dot8 {
  opacity: 0;
}

.filter-modal {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(39, 34, 35, 0.3);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  display: none;
}
.filter-modal.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.filter-modal.active {
  display: block;
}
.filter-modal .modal-wrapper {
  width: 100%;
  height: 100%;
}
.filter-modal .modal-content {
  margin: 0 0 0 auto;
  -webkit-box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  height: 100%;
}
.filter-modal .modal-scroller {
  max-height: 100%;
  overflow: auto;
}
.filter-modal .container {
  padding: 50px 0;
  background-color: #fff;
  min-height: calc(100vh - 80px);
  min-height: calc(var(--vh, 1px) * 100 - 80px);
  text-align: center;
}
.filter-modal .back-button {
  margin: 0 auto 40px;
}
.filter-modal .outline {
  text-align: center;
}
.filter-modal .outline .sub {
  color: #E2233D;
  line-height: 1.2;
  letter-spacing: 1px;
}
.filter-modal .outline .sub:not(:first-child) {
  margin-top: 20px;
}
.filter-modal .outline .title {
  font-size: 1.5rem;
  line-height: 1.5;
}
.filter-modal .outline .title:not(:first-child) {
  margin-top: 20px;
}
.filter-modal .outline .text {
  margin-top: 20px;
  line-height: 1.5;
}
.filter-modal .outline .text span {
  margin: 0 6px;
}
.filter-modal .filter-search {
  margin: 50px auto 0;
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 500px;
  background-color: #F0F0F0;
  max-width: 450px;
  width: 100%;
}
.filter-modal .filter-search input {
  outline: none;
  border: none;
  background: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: "Lato";
}
.filter-modal .filter-search input::-webkit-input-placeholder {
  color: rgba(39, 34, 35, 0.2);
  font-weight: 900;
  font-size: 1.125rem;
  font-family: "Lato";
  opacity: 1;
  text-overflow: ellipsis;
}
.filter-modal .filter-search input::-moz-placeholder {
  color: rgba(39, 34, 35, 0.2);
  font-weight: 900;
  font-size: 1.125rem;
  font-family: "Lato";
  opacity: 1;
  text-overflow: ellipsis;
}
.filter-modal .filter-search input:-ms-input-placeholder {
  color: rgba(39, 34, 35, 0.2);
  font-weight: 900;
  font-size: 1.125rem;
  font-family: "Lato";
  opacity: 1;
  text-overflow: ellipsis;
}
.filter-modal .filter-search input::-ms-input-placeholder {
  color: rgba(39, 34, 35, 0.2);
  font-weight: 900;
  font-size: 1.125rem;
  font-family: "Lato";
  opacity: 1;
  text-overflow: ellipsis;
}
.filter-modal .filter-search input::placeholder {
  color: rgba(39, 34, 35, 0.2);
  font-weight: 900;
  font-size: 1.125rem;
  font-family: "Lato";
  opacity: 1;
  text-overflow: ellipsis;
}
.filter-modal .filter-search .cancel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 500px;
  background-color: rgba(39, 34, 35, 0.3);
  width: 20px;
  height: 20px;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
}
.filter-modal .filter-search .cancel i {
  -webkit-transform: scale(0.83);
          transform: scale(0.83);
}
.filter-modal .group {
  margin-top: 50px;
  padding: 0 clamp(40px, 3.9063vw, 75px);
}
.filter-modal .group-wrapper {
  text-align: left;
}
.filter-modal .group-wrapper .b {
  padding: 0 10px;
  line-height: 1.6;
}
.filter-modal .group-wrapper ul {
  padding: 20px;
  margin-top: 10px;
  border-top: 5px solid #4F5F6B;
}
.filter-modal .group-wrapper li:not(:last-child) {
  margin-bottom: 10px;
}
.filter-modal .group-wrapper label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.6;
  cursor: pointer;
}
.filter-modal .group-wrapper label input {
  display: none;
}
.filter-modal .group-wrapper label input:checked + .checkbox::before {
  opacity: 1;
}
.filter-modal .group-wrapper .checkbox {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  border: 2px solid rgba(39, 34, 35, 0.5);
  width: 20px;
  height: 20px;
}
.filter-modal .group-wrapper .checkbox::before {
  display: block;
  background-color: #E2233D;
  border-radius: 500px;
  width: 10px;
  height: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  content: "";
}
.filter-modal .bottom-group {
  position: sticky;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.filter-modal .bottom-group .button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4F5F6B;
  padding: 0 30px;
  width: 50%;
  height: 80px;
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
}
.filter-modal .bottom-group .button span {
  margin: 0 6px;
}
.filter-modal .bottom-group .button:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .filter-modal .container {
    padding: 50px 20px;
  }
  .filter-modal .outline .title {
    font-size: 1.25rem;
  }
  .filter-modal .filter-search {
    margin: 30px auto 0;
  }
  .filter-modal .group {
    margin-top: 30px;
    padding: 0;
  }
}

.cart-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.cart-wrapper.show {
  opacity: 1;
  pointer-events: auto;
}
.cart-wrapper.active {
  display: block;
}
.cart-wrapper .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(39, 34, 35, 0.3);
}
.cart-wrapper .cart-container {
  margin-left: auto;
  background-color: #fff;
  -webkit-box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  width: 100%;
  height: 100%;
}
.cart-wrapper .cart-scrollbar {
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.cart-wrapper .cart-dialog {
  height: 100%;
}
.cart-wrapper .cart-content,
.cart-wrapper .cart-empty {
  padding: 50px 50px 80px;
  min-height: calc(100% - 80px);
}
.cart-wrapper .back-button {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.cart-wrapper .outline .b {
  font-size: 1.5rem;
  line-height: 1.5;
}
.cart-wrapper .outline div {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cart-wrapper .outline div i {
  font-size: 1.875rem;
}
.cart-wrapper .outline div span {
  font-size: 1.25rem;
  line-height: 1.2;
}
.cart-wrapper .bottom-group {
  position: sticky;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.cart-wrapper .button {
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 80px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
}
.cart-wrapper .button.blue {
  background-color: #4F5F6B;
}
.cart-wrapper .button.red {
  background-color: #E2233D;
}
@media only screen and (max-width: 767px) {
  .cart-wrapper .cart-content,
.cart-wrapper .cart-empty {
    padding: 50px 20px 80px;
  }
}

.cart-content .list {
  margin-top: 40px;
}
.cart-content .list-head {
  padding: 0 55px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  line-height: 1.2;
  gap: 10px;
}
.cart-content .list-head .desc {
  max-width: 360px;
  width: 100%;
}
.cart-content .list-head .qty {
  margin: 0 auto;
  width: 35px;
  text-align: right;
}
.cart-content .list-head .subtotal {
  width: 70px;
  text-align: right;
}
.cart-content .list-body {
  margin-top: 15px;
}
.cart-content .list-body li {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.cart-content .list-body li:not(:last-child) {
  margin-bottom: 15px;
}
.cart-content .info {
  margin-top: 30px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F2F2F2;
}
.cart-content .total {
  padding-left: 20px;
  margin-left: 20px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  border-left: 1px solid rgba(79, 95, 107, 0.1);
  width: 120px;
  line-height: 1.6;
  text-align: right;
}
.cart-content .total .b {
  color: #4F5F6B;
}
.cart-content .event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  line-height: 1.2;
}
.cart-content .event .text {
  color: rgba(79, 95, 107, 0.5);
  font-size: 0.875rem;
  line-height: 1.5;
}
.cart-content .event-detail {
  line-height: 1.5;
}
.cart-content .event-detail .sub {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 300;
}
.cart-content .event-detail .sub span {
  color: #E2233D;
}
@media only screen and (max-width: 767px) {
  .cart-content .list {
    margin-top: 30px;
  }
  .cart-content .list-head {
    display: none;
  }
  .cart-content .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cart-content .total {
    padding: 10px 0 0;
    margin: 10px 0 0;
    border: none;
    border-top: 1px solid rgba(79, 95, 107, 0.1);
    width: 100%;
  }
}

.cart-empty .photo {
  margin: 95px auto 0;
  position: relative;
  max-width: 300px;
  width: 100%;
}
.cart-empty .photo::before {
  display: block;
  padding-bottom: 100%;
  content: "";
}
.cart-empty .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-empty .item-point {
  margin: 45px auto 0;
  max-width: 400px;
}
.cart-empty .item-point .sub {
  color: #E2233D;
  text-transform: uppercase;
}
.cart-empty .item-point .main {
  font-size: 1.5rem;
}

.menu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.menu-wrapper.show {
  opacity: 1;
  pointer-events: auto;
}
.menu-wrapper.active {
  display: block;
}
.menu-wrapper .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.8);
}
.menu-wrapper .menu-container {
  margin-left: auto;
  background-color: #fff;
  -webkit-box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
  height: 100%;
}
.menu-wrapper .menu-scrollbar {
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.menu-wrapper .menu-dialog {
  min-height: 100vh;
}
.menu-wrapper .menu-content,
.menu-wrapper .menu-empty {
  padding: 40px 60px;
}
.menu-wrapper .back-button {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.menu-wrapper .outline .b {
  font-size: 1.5rem;
  line-height: 1.5;
}
.menu-wrapper .outline div {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.menu-wrapper .outline div i {
  font-size: 1.875rem;
}
.menu-wrapper .outline div span {
  font-size: 1.25rem;
  line-height: 1.2;
}
.menu-wrapper .bottom-group {
  position: sticky;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.menu-wrapper .button {
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 80px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
}
.menu-wrapper .button.blue {
  background-color: #4F5F6B;
}
.menu-wrapper .button.red {
  background-color: #E2233D;
}
@media only screen and (max-width: 767px) {
  .menu-wrapper .menu-content,
.menu-wrapper .menu-empty {
    padding: 50px 20px 80px;
  }
}

.menu-content .tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 22px;
}
.menu-content .member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 5px;
  font-weight: 700;
}
.menu-content .member i {
  font-size: 1.25rem;
}
.menu-content .member span {
  font-size: 0.875rem;
  line-height: 1.2;
}
.menu-content .menu-list {
  margin-top: 60px;
}
.menu-content .menu-list::before {
  margin-bottom: 30px;
  display: block;
  background-color: #E2233D;
  width: 45px;
  height: 8px;
  content: "";
}
.menu-content .menu-list > li:not(:last-child) {
  margin-bottom: 20px;
}
.menu-content .menu-list > li .b {
  font-size: 1.25rem;
  line-height: 1.2;
}
.menu-content .menu-list .list {
  padding: 10px 0;
}
.menu-content .menu-list .list li {
  color: rgba(39, 34, 35, 0.5);
  line-height: 1.2;
}
.menu-content .menu-list .list li:not(:last-child) {
  margin-bottom: 15px;
}
.menu-content .other {
  padding-top: 60px;
}
.menu-content .other .button-group {
  margin-bottom: 50px;
}
.menu-content .other .button-group .rect-button.blue {
  background-color: #758B9C;
}
.menu-content .other .button-group .rect-button:not(:last-child) {
  margin-bottom: 15px;
}
.menu-content .other .social {
  margin-bottom: 50px;
}
.menu-content .other .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 25px;
}
.menu-content .other .social li {
  font-size: 1.125rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (min-width: 1201px) {
  .menu-content .other .social li:hover {
    color: #E2233D;
  }
}
@media only screen and (max-width: 1200px) {
  .menu-content .other .social li:active {
    color: #E2233D;
  }
}
.menu-content .other .social .icon-youtube {
  font-size: 1.25rem;
}
.menu-content .other .links {
  margin-bottom: 20px;
}
.menu-content .other .links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 30px;
  white-space: nowrap;
}
.menu-content .other .links li {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (min-width: 1201px) {
  .menu-content .other .links li:hover {
    color: #E2233D;
  }
}
@media only screen and (max-width: 1200px) {
  .menu-content .other .links li:active {
    color: #E2233D;
  }
}
.menu-content .other .copyright {
  font-size: 0.875rem;
  line-height: 1.2;
}
.menu-content .other .copyright br {
  display: none;
}

footer.footer {
  padding: 120px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4F5F6B;
}
footer.footer .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1400px;
  width: 100%;
}
footer.footer .list {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px 60px;
  max-width: 450px;
}
footer.footer .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 0 80px;
}
footer.footer .group ul {
  width: 185px;
}
footer.footer .group li {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}
footer.footer .group li.b {
  color: #fff;
}
footer.footer .group-list,
footer.footer .group-main {
  padding-top: 70px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
footer.footer .group-list::before,
footer.footer .group-main::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 8px;
  content: "";
}
footer.footer .group-list {
  gap: 0 4.1667vw;
}
footer.footer .group-list::before {
  background-color: #E2233D;
}
footer.footer .group-list li.b {
  margin-bottom: 30px;
  font-size: 1.25rem;
}
footer.footer .group-list li:not(:last-child) {
  margin-bottom: 16px;
}
footer.footer .group-main::before {
  background-color: #4F5F6B;
}
footer.footer .group-main li:not(:last-child) {
  margin-bottom: 25px;
}
footer.footer .other {
  padding-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
footer.footer .other .go-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: #fff;
}
footer.footer .other .tools {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
footer.footer .other .rect-button.blue {
  background-color: #758B9C;
}
footer.footer .other .social {
  margin-bottom: 50px;
}
footer.footer .other .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 25px;
}
footer.footer .other .social li {
  color: #fff;
  font-size: 1.25rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (min-width: 1201px) {
  footer.footer .other .social li:hover {
    color: #E2233D;
  }
}
@media only screen and (max-width: 1200px) {
  footer.footer .other .social li:active {
    color: #E2233D;
  }
}
footer.footer .other .social .icon-youtube {
  font-size: 1.375rem;
}
footer.footer .other .links {
  margin-bottom: 20px;
}
footer.footer .other .links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 30px;
  white-space: nowrap;
}
footer.footer .other .links li {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (min-width: 1201px) {
  footer.footer .other .links li:hover {
    color: #E2233D;
  }
}
@media only screen and (max-width: 1200px) {
  footer.footer .other .links li:active {
    color: #E2233D;
  }
}
footer.footer .other .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: right;
}
footer.footer .other .copyright br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  footer.footer {
    padding: 100px 80px;
  }
  footer.footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer.footer .list {
    margin: 0 auto;
  }
  footer.footer .group-list,
footer.footer .group-main {
    padding-top: 40px;
  }
  footer.footer .other {
    margin-top: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer.footer .other .go-top {
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@media only screen and (max-width: 767px) {
  footer.footer {
    padding: 50px 20px;
  }
  footer.footer .list {
    display: none;
  }
  footer.footer .other {
    margin: 0;
    padding-top: 80px;
  }
  footer.footer .other .go-top {
    top: 10px;
  }
  footer.footer .other .tools {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer.footer .other .links ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

[data-modal-id=submit-success] {
  background-color: rgba(240, 240, 240, 0.9);
}
[data-modal-id=submit-success] .modal-content {
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  max-width: 450px;
  width: 100%;
}
[data-modal-id=submit-success] .content {
  padding: 80px 50px;
}
[data-modal-id=submit-success] .content img {
  margin: -170px auto 65px;
  max-width: 180px;
  width: 100%;
}
[data-modal-id=submit-success] .bottom {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid rgba(79, 95, 107, 0.2);
}
[data-modal-id=submit-success] .bottom .more-button .circle {
  width: 30px;
  height: 30px;
}
[data-modal-id=submit-success] .bottom .more-button .circle-wrap {
  font-size: 0.75rem;
}
@media only screen and (max-width: 767px) {
  [data-modal-id=submit-success] .content {
    padding: 30px 40px;
  }
  [data-modal-id=submit-success] .content img {
    margin: -100px auto 30px;
    max-width: 120px;
  }
}

[data-modal-id=return-modal] {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}
[data-modal-id=return-modal] .modal-wrapper {
  padding: 150px 50px;
}
[data-modal-id=return-modal] .modal-content {
  padding: 80px 100px 50px;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  max-width: 700px;
}
[data-modal-id=return-modal] .back-button {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
[data-modal-id=return-modal] .block-point {
  margin: 0 auto;
}
[data-modal-id=return-modal] .wdd-form {
  margin-top: 30px;
}
[data-modal-id=return-modal] .button-group {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  [data-modal-id=return-modal] .modal-wrapper {
    padding: 100px 15px;
  }
  [data-modal-id=return-modal] .modal-content {
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 767px) {
  [data-modal-id=return-modal] .modal-content {
    padding: 140px 20px 70px;
  }
  [data-modal-id=return-modal] .back-button {
    top: 70px;
    width: 50px;
    height: 50px;
  }
}

.notice-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.notice-lightbox.show {
  opacity: 1;
  pointer-events: auto;
}
.notice-lightbox.show .wrapper .photo img {
  opacity: 1;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.notice-lightbox.active {
  display: block;
}
.notice-lightbox .background {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(240, 240, 240, 0.9);
  z-index: -1;
  width: 100%;
  height: 100%;
}
.notice-lightbox .lightbox-scrollbar {
  width: 100%;
  height: 100%;
  overflow: auto;
  pointer-events: none;
}
.notice-lightbox .lightbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.notice-lightbox .lightbox-container::before {
  content: "";
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5 1;
          flex: 0.5 1;
}
.notice-lightbox .lightbox-dialog {
  position: relative;
  max-width: 450px;
  width: 100%;
  min-height: 400px;
  pointer-events: auto;
}
.notice-lightbox .container {
  background-color: #fff;
  height: 100%;
}
.notice-lightbox .wrapper {
  padding: 125px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 70px);
}
.notice-lightbox .wrapper .photo {
  background-size: cover;
  background-image: url("../assets/img/notice_floor.png");
  margin: -215px auto 80px;
  max-width: 180px;
  width: 100%;
}
.notice-lightbox .wrapper .photo img {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
}
.notice-lightbox .wrapper .block-point {
  margin: auto;
}
.notice-lightbox .button-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid rgba(79, 95, 107, 0.2);
}
.notice-lightbox .more-button {
  padding: 20px;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
}
.notice-lightbox .more-button:not(:only-child):last-child::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  display: block;
  background-color: rgba(79, 95, 107, 0.2);
  width: 1px;
  height: 30px;
  content: "";
}
.notice-lightbox .more-button .circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 767px) {
  .notice-lightbox .lightbox-dialog {
    padding: 0 20px;
  }
  .notice-lightbox .wrapper {
    padding: 50px 40px;
  }
  .notice-lightbox .wrapper.fix {
    height: calc(100% - 100px);
  }
  .notice-lightbox .wrapper .photo {
    margin: -110px auto 60px;
    max-width: 120px;
  }
  .notice-lightbox .block-point .sub:not(:first-child) {
    margin-top: 15px;
  }
  .notice-lightbox .block-point .main:not(:first-child) {
    margin-top: 15px;
  }
  .notice-lightbox .block-point .text {
    margin-top: 15px;
  }
  .notice-lightbox .button-group.special {
    padding: 15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .notice-lightbox .button-group.special .more-button {
    padding: 0;
  }
  .notice-lightbox .button-group.special .more-button:not(:only-child):last-child::after {
    content: none;
  }
  .notice-lightbox .more-button {
    width: 100%;
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
            transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
            transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transform: translateZ(0) scaleY(0.95);
            transform: translateZ(0) scaleY(0.95);
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
            transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

@keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
            transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
            transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transform: translateZ(0) scaleY(0.95);
            transform: translateZ(0) scaleY(0.95);
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
            transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.cookie-check {
  padding: 50px 20px;
  width: 100vw;
  background-color: #4F5F6B;
  position: fixed;
  left: 0;
  bottom: 0;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  -webkit-transform: translate3d(0, 101%, 0);
          transform: translate3d(0, 101%, 0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.cookie-check.first {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}
.cookie-check.first.agree {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  opacity: 0;
}
.cookie-check .container {
  max-width: 820px;
  margin: 0 auto;
}
.cookie-check .inner-text {
  line-height: 1.5;
  color: #fff;
}
.cookie-check .inner-text a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  border-bottom: solid 1px #E2233D;
}
.cookie-check .inner-text span {
  margin-left: 3px;
  font-weight: 700;
}
.cookie-check .btn-wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
.cookie-check .check-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.cookie-check .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E2233D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cookie-check .decline .circle {
  background-color: #fff;
  color: #4F5F6B;
}
.cookie-check .icon-cross {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  font-size: 0.5rem;
}
.cookie-check .icon {
  margin-right: 10px;
  font-weight: 100;
  font-size: 0.8125rem;
}
.cookie-check .divider {
  margin: 0 25px;
  height: 20px;
  width: 1px;
  background-color: #fff;
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  .cookie-check {
    padding: 50px 30px;
  }
}
/*# sourceMappingURL=style.css.map */