@charset "UTF-8";
/* 拷貝範例
opacity: 0;
transform: translateY(40px);
transition: all 0.3s, opacity $ani_duration $ani_function, transform $ani_duration $ani_function;
*/
.module_desc {
  color: #393939;
  line-height: 1.8;
  text-align: justify;
}

.button_set {
  display: flex;
  align-items: center;
  margin-top: 40px !important;
}
@media (max-width: 1200px) {
  .button_set {
    margin-top: 35px !important;
  }
}
.button_set.center {
  justify-content: center;
}
.button_set [class^=button].middle {
  margin: 0 15px;
}
.button_set.no_middle [class^=button]:not(.middle) {
  margin: 0 7.5px;
}
.button_set.no_middle [class^=button].middle {
  display: none;
}

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

*,
*:focus,
*:active,
*:hover {
  outline: none;
}

@keyframes smoothscroll1 {
  from, to {
    scroll-behavior: smooth;
  }
}
@keyframes smoothscroll2 {
  from, to {
    scroll-behavior: smooth;
  }
}
html {
  animation: smoothscroll1 1s;
}

html:focus-within {
  animation-name: smoothscroll2;
  scroll-behavior: smooth;
}

body {
  color: #393939;
  font-size: 14px;
  font-family: "Microsoft JhengHei", sans-serif;
  line-height: 1.5;
  margin: 0;
  background: #fff;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
}
body.no_overflow {
  overflow: hidden;
}

ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.editor ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding-left: 40px;
}

.editor ul:not(.slick-dots) {
  list-style-type: disc;
  margin: 1em 0;
  padding-left: 40px;
}

img {
  display: block;
  max-width: 100%;
}

.editor img {
  display: inline;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

h1.seo,
h2.seo {
  position: fixed;
  top: -100%;
  left: -100%;
  visibility: hidden;
}

a {
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #db9b8f;
}

button {
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  border: 0;
  background: unset;
  appearance: none;
  cursor: pointer;
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

form {
  width: 100%;
  margin: 0 auto;
}

input:not([type=radio]):not([type=checkbox]), textarea, select {
  color: #000;
  font-size: 14px;
  font-family: "Microsoft JhengHei", sans-serif;
  letter-spacing: 1px;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #ccc;
  appearance: none;
}
input:not([type=radio]):not([type=checkbox])::placeholder, textarea::placeholder, select::placeholder {
  color: #bbb;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  max-width: 100%;
  padding: 7px 25px 7px 15px;
  background: #fff url("../img/tw/select_arrow.png") calc(100% - 8px) center no-repeat;
  cursor: pointer;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.txt_center {
  text-align: center;
}

.float_right {
  float: right;
}

.float_left {
  float: left;
}

.underline {
  text-decoration: underline;
}

.del {
  text-decoration: line-through;
}

.break_all {
  word-break: break-all;
}

.swal2-popup {
  width: 20em !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid #fff !important;
  border-radius: 35px !important;
}
.swal2-popup .swal2-close {
  width: 35px;
  height: 35px;
  color: #000 !important;
  font-size: 28px;
  padding: 0 0 2px;
  background: #fff !important;
  margin: 15px 15px -35px 0;
  border-radius: 50% !important;
  box-shadow: 3px 3px 10px 0 rgba(0, 158, 247, 0.25) !important;
}
.swal2-popup .swal2-icon {
  display: none !important;
}
.swal2-popup .swal2-title {
  color: #000;
  font-size: 22px;
  padding: 3em 1em 0;
}
.swal2-popup .swal2-title strong {
  font-weight: 400;
}
.swal2-popup .swal2-html-container {
  color: #009ef7;
  font-size: 18px;
  margin: 0;
  padding: 15px 15px 40px;
}
.swal2-popup .swal2-html-container > div:not(#captcha) {
  margin-top: 15px !important;
}
.swal2-popup .swal2-html-container > div:not(#captcha) a {
  display: block;
  width: fit-content;
  color: #009ef7;
  font-size: 17px;
  text-decoration: none !important;
  padding: 8px 23px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #009ef7;
  border-radius: 20px !important;
}

.container {
  width: 100%;
  max-width: 1700px;
  padding: 0 60px;
  margin: 0 auto;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 25px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row:not(.no_gutter) {
  margin: 0 -15px;
  transition: all 0.3s;
}
.row:not(.no_gutter) > * {
  padding: 0 15px;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .row:not(.no_gutter) {
    margin: 0 -10px;
  }
  .row:not(.no_gutter) > * {
    padding: 0 10px;
  }
}

@media (max-width: 1200px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (min-width: 1201px) {
  .pc-hide {
    display: none !important;
  }
}

.price--origin {
  color: #939598;
  text-decoration: line-through;
}
.price--primary {
  color: #e64d4d;
}

.tag--default, .tag--primary, .tag--dark {
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  color: #ffffff;
}
.tag--default {
  background-color: #939598;
}
.tag--primary {
  background-color: #e64d4d;
}
.tag--dark {
  background-color: #414042;
}

.tab {
  flex: 1;
}
.tab-box {
  display: flex;
}
.tab-content__item {
  display: none;
}
.tab-content__item.active {
  display: block;
}

.dropdown-box {
  border-top: 1px solid #414042;
}
.dropdown-box.active .dropdown-box__title::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.dropdown-box__title {
  position: relative;
  padding: 5px 25px 5px 0;
  cursor: pointer;
}
.dropdown-box__title::before, .dropdown-box__title::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 12px;
  height: 1px;
  background-color: rgba(65, 64, 66, 0.5);
}
.dropdown-box__title::after {
  top: 10px;
  right: 6px;
  width: 1px;
  height: 12px;
}
.dropdown-box__content {
  padding: 15px 0;
  display: none;
}

.btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
@media (max-width: 640px) {
  .btn-box {
    gap: 10px 5px;
  }
}
.btn-box.box--full .btn {
  flex-grow: 1;
}
.btn {
  display: block;
  padding: 0 20px;
  line-height: 38px;
  border: 1px solid #414042;
  font-size: 14px;
  color: #414042;
  background-color: #ffffff;
  text-align: center;
  transition: all 0.4s ease;
}
.btn:hover {
  color: #ffffff;
  background-color: #040000;
}
.btn--primary {
  border-color: #040000;
  color: #ffffff;
  background-color: #040000;
}
.btn--primary:hover {
  color: #040000;
  background-color: #ffffff;
}
.btn--secondary {
  border-color: #939598;
  color: #ffffff;
  background-color: #939598;
}
.btn--secondary:hover {
  color: #939598;
  background-color: #ffffff;
}
.btn--warn {
  border-color: #e64d4d;
  color: #ffffff;
  background-color: #e64d4d;
}
.btn--warn:hover {
  color: #e64d4d;
  background-color: #ffffff;
}
.btn--line {
  border-color: #06C755;
  color: #ffffff;
  background-color: #06C755;
}
.btn--line:hover {
  color: #06C755;
  background-color: #ffffff;
}
.btn--white {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.btn--white:hover {
  color: #414042;
  background-color: #ffffff;
}
.btn--secondary-outline {
  border-color: #939598;
  color: #939598;
  background-color: #ffffff;
}
.btn--secondary-outline:hover {
  color: #ffffff;
  background-color: #939598;
}
.btn--small {
  padding: 0 5px;
  font-size: 12px;
  line-height: 30px;
}

.text-btn {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #414042;
}
.text-btn--inline {
  display: inline-block;
}
.text-btn--underline {
  text-decoration: underline;
  transition: all 0.4s ease;
}
.text-btn--underline:hover {
  text-decoration-color: transparent;
}
.text-btn--blue {
  color: #1C75BC;
}
.text-btn .adshop-heart-f {
  color: #e64d4d;
}

.select-box,
.input-box,
.textarea-box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}
@media (max-width: 640px) {
  .select-box,
  .input-box,
  .textarea-box {
    gap: 5px;
  }
}
.select-box.box--full .select,
.select-box.box--full .input:not([type=radio]):not([type=checkbox]),
.select-box.box--full .textarea,
.input-box.box--full .select,
.input-box.box--full .input:not([type=radio]):not([type=checkbox]),
.input-box.box--full .textarea,
.textarea-box.box--full .select,
.textarea-box.box--full .input:not([type=radio]):not([type=checkbox]),
.textarea-box.box--full .textarea {
  flex-grow: 1;
}
.select--error,
.input--error,
.textarea--error {
  box-shadow: 0 0 10px #e64d4d;
}

.select,
.input:not([type=radio]):not([type=checkbox]),
.textarea {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 38px;
  border: 1px solid #414042;
  font-size: 14px;
  color: #414042;
  background-color: #ffffff;
}

.textarea {
  line-height: 1.6;
  height: 200px;
  padding: 10px;
  resize: none;
}
.textarea::-webkit-scrollbar {
  -webkit-appearance: none;
}
.textarea::-webkit-scrollbar:vertical {
  width: 5px;
}
.textarea::-webkit-scrollbar:horizontal {
  height: 10px;
}
.textarea::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 3px;
  border: 0;
}
.textarea::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #e0e0e0;
}

.select option[disabled] {
  color: #b2b2b2;
}

.radio {
  width: 10px;
  height: 10px;
  border: 1px solid #414042;
  border-radius: 50%;
  appearance: none;
}
.radio:checked {
  background-color: #414042;
}

.checkbox {
  position: relative;
  width: 10px;
  height: 10px;
  border: 1px solid #414042;
  appearance: none;
}
.checkbox:not([type=checkbox]) {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.active > .checkbox::before, .checkbox:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #b2b2b2;
}
.color-picker__text {
  opacity: 0;
}
.color-picker__btn {
  order: 2;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 5px;
  padding: 0;
  border: 1px solid #b2b2b2;
  background-color: var(--color);
  cursor: pointer;
  appearance: none;
}
.color-picker__btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  border: 1px solid #b2b2b2;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  opacity: 0;
}
.color-picker__btn:checked::before,
.color-picker__btn:checked + .color-picker__text {
  opacity: 1;
}

.type-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #b2b2b2;
}
.type-picker__text {
  opacity: 0;
}
.type-picker__btn {
  order: 2;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 5px;
  padding: 0;
  border: 1px solid #b2b2b2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  appearance: none;
}
.type-picker__btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  border: 1px solid #b2b2b2;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  opacity: 0;
}
.type-picker__btn:checked::before,
.type-picker__btn:checked + .type-picker__text {
  opacity: 1;
}

.class-link {
  display: flex;
  border: 1px solid #b2b2b2;
}
.class-link__btn {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 1;
  padding: 10px;
  color: #414042;
  transition: all 0.4s ease;
}
.class-link__btn.active, .class-link__btn:hover {
  color: #ffffff;
  background-color: #040000;
}
.class-link__btn:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: calc(100% - 10px);
  background-color: #b2b2b2;
}

.title-box.box--center {
  text-align: center;
}
.title-box__title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Microsoft JhengHei", sans-serif;
  letter-spacing: 2px;
  text-indent: 2px;
}
.title-box__sub-title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-indent: 3px;
}

.slick-slider {
  display: block;
  position: relative;
  box-sizing: border-box;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.slick-slider .slick-arrow.slick-hidden {
  display: none !important;
}
.slick-slider .slick-arrow.slick-prev {
  left: 5px;
}
.slick-slider .slick-arrow.slick-next {
  right: 5px;
}

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

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

.slick-loading .slick-track {
  visibility: hidden;
}
.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  float: left;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-dots {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all 0.1s;
}
@media (max-width: 768px) {
  .slick-dots {
    bottom: 7px;
  }
}
.slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  cursor: pointer;
  transition: all 0.1s;
}
@media (max-width: 768px) {
  .slick-dots li {
    width: 10px;
    height: 10px;
  }
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  color: transparent;
  font-size: 0;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  transition: all 0.1s;
}
@media (max-width: 768px) {
  .slick-dots li button {
    width: 5px;
    height: 5px;
  }
}
.slick-dots li.slick-active button {
  background: #db9b8f;
}

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}
.slick-lightbox .slick-prev,
.slick-lightbox .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: 0;
}
.slick-lightbox .slick-prev::before,
.slick-lightbox .slick-next::before {
  color: #fff;
  font-size: 20px;
  font-family: FontAwesome;
  line-height: 20px;
}
.slick-lightbox .slick-prev {
  left: 15px;
}
.slick-lightbox .slick-prev::before {
  content: "\f053";
}
.slick-lightbox .slick-next {
  right: 15px;
}
.slick-lightbox .slick-next::before {
  content: "\f054";
}

.slick-lightbox-hide {
  opacity: 0;
}
.slick-lightbox-hide.slick-lightbox-ie {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}
.slick-lightbox-hide-init.slick-lightbox-ie {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}
.slick-lightbox-slick-item::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  max-width: 90%;
  max-height: 90%;
  vertical-align: middle;
}

.slick-lightbox-slick-img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto;
}

.slick-lightbox-slick-caption {
  color: white;
  margin: 10px 0 0;
}

.slick-lightbox-close {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.slick-lightbox-close::before {
  content: "×";
  color: white;
  font-size: 20px;
  font-family: "slick";
  line-height: 1;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-lightbox-close::focus {
  outline: none;
}

.header01 {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #6d6e71;
  background-color: #ffffff;
}
.header01 a {
  color: #393939;
}
@media (max-width: 1200px) {
  .header01 .top-box {
    display: none !important;
  }
}
.header01 .top-box {
  font-size: 12px;
  color: #ffffff;
  background-color: #393939;
}
.header01 .top-box .container {
  display: flex;
  align-items: center;
  height: 25px;
}
.header01 .top-box .top-box__msg {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
  padding-left: 300px;
  padding-right: 30px;
}
.header01 .top-box .top-box__text-btns {
  display: flex;
  flex-shrink: 0;
  gap: 0 24px;
}
.header01 .top-box .top-box__text-btns .text-btn {
  color: #ffffff;
}
@media (min-width: 1201px) {
  .header01 .main-box {
    border-bottom: 1px solid rgba(57, 57, 57, 0.5);
  }
}
.header01 .main-box .container {
  display: flex;
  align-items: center;
  height: 70px;
}
.header01 .main-box .main-box__logo {
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 200px;
}
@media (max-width: 1200px) {
  .header01 .main-box .main-box__logo {
    margin-left: 0;
    padding-left: 0;
  }
}
.header01 .main-box .main-box__logo .logo-link {
  display: block;
  width: 94px;
}
@media (max-width: 1200px) {
  .header01 .main-box .main-box__logo .logo-link {
    width: 60px;
  }
}
.header01 .main-box .main-box__text-btns {
  flex-shrink: 0;
  display: flex;
  gap: 0 20px;
}
@media (max-width: 1200px) {
  .header01 .main-box .main-box__text-btns {
    gap: 0 15px;
  }
}
.header01 .main-box .main-box__text-btns .text-btn {
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 1200px) {
  .header01 .main-box .main-box__text-btns .text-btn {
    font-size: 20px;
  }
}
.header01 .main-box .main-box__text-btns .text-btn[data-num] {
  position: relative;
}
.header01 .main-box .main-box__text-btns .text-btn[data-num]::after {
  content: attr(data-num);
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 12px;
  height: 12px;
  line-height: 12px;
  padding: 0 3px;
  font-size: 6px;
  color: #ffffff;
  background-color: #414042;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
}
.header01 .main-box .main-box__text-btns .text-btn[data-num]:hover::after {
  background-color: #db9b8f;
}
.header01 .main-box .main-box__text-btns .text-btn .menu-bar {
  position: relative;
  display: block;
  width: 28px;
  height: 20px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.header01 .main-box .main-box__text-btns .text-btn .menu-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.header01 .menu-box {
  border-bottom: 1px solid rgba(57, 57, 57, 0.5);
}
@media (max-width: 1200px) {
  .header01 .menu-box {
    display: none !important;
  }
}
.header01 .menu-box .container {
  display: flex;
  align-items: center;
  height: 50px;
}
.header01 .menu-box .menu-box__toggler {
  position: relative;
  display: block;
  margin-right: auto;
  margin-left: 50px;
  padding-left: 60px;
  color: #414042;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1580px) {
  .header01 .menu-box .menu-box__toggler {
    margin-left: 0;
  }
}
.header01 .menu-box .menu-box__toggler::before, .header01 .menu-box .menu-box__toggler::after {
  content: "";
  position: absolute;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: currentColor;
  transform-origin: center;
  transition: all 0.4s ease;
}
.header01 .menu-box .menu-box__toggler::before {
  bottom: calc(50% + 3px);
}
.header01 .menu-box .menu-box__toggler::after {
  top: calc(50% + 3px);
}
.header01 .menu-box .menu-box__toggler:hover::before, .header01 .menu-box .menu-box__toggler.active::before {
  bottom: 50%;
  transform: rotate(20deg);
}
.header01 .menu-box .menu-box__toggler:hover::after, .header01 .menu-box .menu-box__toggler.active::after {
  top: 50%;
  transform: rotate(-20deg);
}
.header01 .menu-box .menu-box__navbar {
  display: flex;
  gap: 0 40px;
  padding: 0 40px;
}
@media (max-width: 1300px) {
  .header01 .menu-box .menu-box__navbar {
    gap: 0 30px;
  }
}
.header01 .menu-box .menu-box__navbar .navbar-nav {
  position: relative;
}
.header01 .menu-box .menu-box__navbar .navbar-nav:hover .navbar-nav__link::before {
  opacity: 1;
}
.header01 .menu-box .menu-box__navbar .navbar-nav:hover .navbar-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header01 .menu-box .menu-box__navbar .navbar-nav:hover .navbar-nav__link {
  color: #db9b8f;
}
.header01 .menu-box .menu-box__navbar .navbar-nav__link {
  position: relative;
  display: block;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}
.header01 .menu-box .menu-box__navbar .navbar-nav__link::before {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  background-color: rgba(65, 64, 66, 0.5);
  opacity: 0;
}
.header01 .menu-box .menu-box__navbar .navbar-nav__dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: calc(50% - 60px);
  width: 120px;
  border: 1px solid rgba(65, 64, 66, 0.5);
  background-color: #ffffff;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header01 .menu-box .menu-box__navbar .navbar-nav__dropdown__link {
  display: block;
  padding: 8px 4px;
  transition: all 0.3s;
}
.header01 .menu-box .menu-box__navbar .navbar-nav__dropdown__link:hover {
  color: #db9b8f;
}
.header01 .menu-box .menu-box__search {
  flex-shrink: 0;
  display: flex;
  width: 130px;
  height: 30px;
  padding: 0 10px;
  margin-left: auto;
  border-radius: 15px;
  border: 1px solid #b2b2b2;
  background-color: rgb(241.75, 241.75, 241.75);
}
.header01 .menu-box .menu-box__search .search__input {
  width: 80px;
  border: 0;
  padding: 0;
  margin-right: auto;
  font-size: 13px;
  line-height: 30px;
  color: #414042;
  background-color: transparent;
}
.header01 .menu-accordion {
  border-bottom: 1px solid rgba(57, 57, 57, 0.5);
}
@media (max-width: 1200px) {
  .header01 .menu-accordion {
    display: none !important;
  }
}
.header01 .menu-accordion {
  display: none;
  padding: 50px 0;
}
@media (max-width: 1580px) {
  .header01 .menu-accordion {
    padding: 30px 0;
  }
}
.header01 .menu-accordion__scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
  padding: 0 25px;
  max-height: 50vh;
  overflow-y: auto;
}
@media (max-width: 1580px) {
  .header01 .menu-accordion__scroll {
    padding: 0;
    margin: 0 -15px;
  }
}
.header01 .menu-accordion__scroll::-webkit-scrollbar {
  -webkit-appearance: none;
}
.header01 .menu-accordion__scroll::-webkit-scrollbar:vertical {
  width: 5px;
}
.header01 .menu-accordion__scroll::-webkit-scrollbar:horizontal {
  height: 10px;
}
.header01 .menu-accordion__scroll::-webkit-scrollbar-thumb {
  background-color: rgba(65, 64, 66, 0.5);
  border-radius: 3px;
  border: 0;
}
.header01 .menu-accordion__scroll::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #ffffff;
}
.header01 .menu-accordion__nav {
  width: 20%;
  padding: 0 25px;
}
@media (max-width: 1580px) {
  .header01 .menu-accordion__nav {
    padding: 0 15px;
  }
}
.header01 .menu-accordion__nav__title {
  color: #58595b;
  padding: 0 15px 15px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(57, 57, 57, 0.5);
}
.header01 .menu-accordion__nav__link {
  display: block;
  margin-top: 20px;
  padding: 0 20px;
  font-weight: 700;
}
.header01 .menu-accordion__nav__link:hover {
  color: #db9b8f;
}

.banner01 .container {
  max-width: 100%;
  padding: 0;
}
.banner01 .banner-list__item {
  position: relative;
}
.banner01 .banner-list__item__bg {
  width: 100%;
}
.banner01 .banner-list__item__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  padding-left: calc((100vw - 1580px) / 2);
}
@media (min-width: 1201px) {
  .banner01 .banner-list__item__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}
@media (max-width: 1800px) {
  .banner01 .banner-list__item__text {
    padding-left: 100px;
  }
}
@media (max-width: 1200px) {
  .banner01 .banner-list__item__text {
    width: 100%;
    padding: 100px 30px 0;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .banner01 .banner-list__item__text {
    padding: 50px 20px 0;
    pointer-events: none;
  }
}
.banner01 .banner-list__item__text__title {
  font-size: 50px;
}
@media (max-width: 640px) {
  .banner01 .banner-list__item__text__title {
    font-size: 32px;
    font-weight: 700;
  }
}
.banner01 .banner-list__item__text__title .title--light {
  font-weight: 300;
}
@media (max-width: 640px) {
  .banner01 .banner-list__item__text__title .title--light {
    font-size: 26px;
  }
}
.banner01 .banner-list__item__text__description {
  margin-top: 40px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .banner01 .banner-list__item__text__description {
    margin-top: 30px;
  }
}
.banner01 .banner-list__item__text__description .description--small {
  margin-top: 5px;
  font-size: 15px;
}
.banner01 .banner-list__item__text__btns {
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .banner01 .banner-list__item__text__btns {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .banner01 .banner-list__item__text__btns {
    display: none;
  }
}
.banner01 .banner-list__item__text__btns .btn {
  width: 180px;
  text-transform: uppercase;
}
.banner01 .banner-list .arrowPrev,
.banner01 .banner-list .arrowNext {
  position: absolute;
  top: calc(50% - 15px);
  left: 60px;
  width: 30px;
  height: 30px;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .banner01 .banner-list .arrowPrev,
  .banner01 .banner-list .arrowNext {
    display: none !important;
  }
}
@media (max-width: 1800px) {
  .banner01 .banner-list .arrowPrev,
  .banner01 .banner-list .arrowNext {
    left: 30px;
  }
}
.banner01 .banner-list .arrowPrev::before,
.banner01 .banner-list .arrowNext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #939598;
  border-left: 2px solid #939598;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.banner01 .banner-list .arrowPrev:hover::before,
.banner01 .banner-list .arrowNext:hover::before {
  border-top: 2px solid #db9b8f;
  border-left: 2px solid #db9b8f;
}
.banner01 .banner-list .arrowNext {
  left: auto;
  right: 60px;
}
@media (max-width: 1800px) {
  .banner01 .banner-list .arrowNext {
    right: 30px;
  }
}
.banner01 .banner-list .arrowNext::before {
  left: -10px;
  transform: rotate(135deg);
}

.footer01 {
  position: relative;
}
.footer01 {
  padding: 60px 0;
  color: #b2b2b2;
  background-color: #000000;
}
.footer01 a {
  color: #b2b2b2;
}
.footer01 .container {
  display: flex;
  flex-wrap: wrap;
}
.footer01 .logo {
  width: 153px;
}
@media (max-width: 1200px) {
  .footer01 .logo {
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .footer01 .logo a img {
    margin: 0 auto;
  }
}
.footer01 .contact-info {
  width: calc(76% - 153px);
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .footer01 .contact-info {
    width: 100%;
    padding-right: 0;
  }
}
.footer01 .contact-info {
  display: flex;
  gap: 30px 50px;
  padding-left: 0px;
}
@media (max-width: 1580px) {
  .footer01 .contact-info {
    flex-wrap: wrap;
    gap: 30px 0;
    padding-top: 0;
  }
}
@media (max-width: 1200px) {
  .footer01 .contact-info {
    order: 3;
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
    margin-top: 25px;
    padding-left: 0;
  }
}
@media (max-width: 1580px) {
  .footer01 .contact-info .contact-info__item {
    width: 50%;
    padding-left: 60px;
  }
}
@media (max-width: 1200px) {
  .footer01 .contact-info .contact-info__item {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.footer01 .contact-info .contact-info__item__title {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}
.footer01 .contact-info .contact-info__item__title::before {
  content: "-";
  margin-right: 6px;
}
@media (max-width: 1200px) {
  .footer01 .contact-info .contact-info__item__title::before {
    display: none;
  }
}
.footer01 .contact-info .contact-info__item__content {
  display: block;
  color: #b2b2b2;
}
.footer01 .contact-info .contact-info__item__content:hover {
  color: #fff;
  text-decoration: underline;
}
.footer01 .contact-info .contact-info__item__content {
  letter-spacing: 1.8px;
}
.footer01 .link-box {
  position: relative;
  width: 24%;
  padding-left: 120px;
  border-left: 1px solid rgba(178, 178, 178, 0.5);
}
@media (max-width: 1580px) {
  .footer01 .link-box {
    padding-left: 60px;
  }
}
@media (max-width: 1200px) {
  .footer01 .link-box {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 1200px) {
  .footer01 .link-box {
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.footer01 .link-box .link-box__title {
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  .footer01 .link-box .link-box__title {
    order: 2;
    margin-top: 60px;
  }
}
.footer01 .link-box .link-box__pic {
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  .footer01 .link-box .link-box__pic {
    order: 3;
    max-width: 260px;
  }
}
.footer01 .link-box .link-box__item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .footer01 .link-box .link-box__item {
    display: block;
    margin-top: 25px;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.footer01 .link-box .link-box__item:hover:hover {
  color: #fff;
  text-decoration: none;
}
.footer01 .link-box form.subscribe {
  margin-top: 10px;
}
@media (max-width: 1200px) {
  .footer01 .link-box form.subscribe {
    width: 260px;
    max-width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .footer01 .link-box form.subscribe .link-box__item {
    text-align: center;
    margin-bottom: 5px;
  }
}
.footer01 .link-box form.subscribe .subscribe_mail {
  display: flex;
}
.footer01 .link-box form.subscribe .subscribe_mail input {
  width: calc(100% - 70px);
  padding: 2px 5px;
}
.footer01 .link-box form.subscribe .subscribe_mail button {
  width: 70px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  text-indent: 2px;
  background: #414042;
  transition: all 0.3s;
}
.footer01 .link-box form.subscribe .subscribe_mail button:hover {
  background: #db9b8f;
}
.footer01 .copyright {
  width: 76%;
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .footer01 .copyright {
    width: 100%;
    padding-right: 0;
  }
}
.footer01 .copyright {
  color: #7f7f7f;
  font-size: 13px;
  align-self: flex-end;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .footer01 .copyright {
    order: 5;
    align-self: unset;
    text-align: center;
  }
}
.footer01 .copyright br {
  display: none;
}
.footer01 .copyright a {
  color: #7f7f7f;
}
.footer01 .copyright a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer01 .social-link {
  position: relative;
  width: 24%;
  padding-left: 120px;
  border-left: 1px solid rgba(178, 178, 178, 0.5);
}
@media (max-width: 1580px) {
  .footer01 .social-link {
    padding-left: 60px;
  }
}
@media (max-width: 1200px) {
  .footer01 .social-link {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }
}
.footer01 .social-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 100px;
}
@media (max-width: 1580px) {
  .footer01 .social-link {
    padding-top: 60px;
  }
}
@media (max-width: 1200px) {
  .footer01 .social-link {
    order: 2;
    justify-content: center;
    padding-top: 0;
    margin-top: 24px;
  }
}
.footer01 .social-link .social-link__title {
  display: flex;
  flex-shrink: 0;
  font-size: 20px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
}
@media (max-width: 1580px) and (min-width: 1201px) {
  .footer01 .social-link .social-link__title {
    width: 100%;
  }
}
.footer01 .social-link .social-link__title::after {
  content: "";
  align-self: flex-end;
  width: 14px;
  height: 1px;
  margin-left: 4px;
  margin-bottom: 6px;
  background-color: rgba(178, 178, 178, 0.5);
}
.footer01 .social-link .social-link__item {
  font-size: 16px;
  color: #ffffff;
}
.footer01 .social-link .social-link__item:hover {
  color: #b2b2b2;
}
.footer01 .social-link .social-link__item .adshop-line {
  position: relative;
  top: 2px;
  font-size: 30px;
}

.home-news01 {
  padding: 60px 0;
  background-color: #f2ede7;
}
@media (max-width: 640px) {
  .home-news01 {
    padding: 30px 0;
  }
}
.home-news01 .container {
  max-width: 1330px;
}
.home-news01 .news-list {
  position: relative;
  margin-top: 20px;
}
.home-news01 .news-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
@media (max-width: 1200px) {
  .home-news01 .news-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-news01 .news-list__item {
  position: relative;
  width: 33.3333333333%;
  padding: 0 10px;
}
@media (max-width: 960px) {
  .home-news01 .news-list__item {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .home-news01 .news-list__item {
    width: 100%;
    padding: 0 5px;
  }
}
.home-news01 .news-list__item__img-box {
  position: relative;
}
.home-news01 .news-list__item__img-box::before {
  content: "view more";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  background-color: rgba(147, 149, 152, 0.5);
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.home-news01 .news-list__item__img-box::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  transform: scale(1.2);
  opacity: 0;
  pointer-events: none;
}
.home-news01 .news-list__item__img-box:hover::before {
  opacity: 1;
}
.home-news01 .news-list__item__img-box:hover::after {
  opacity: 1;
  transform: scale(1);
}
.home-news01 .news-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 84.7328244275%;
  overflow: hidden;
}
.home-news01 .news-list__item .img-box__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-news01 .news-list__item__text-box {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  background-color: #ffffff;
}
.home-news01 .news-list__item__text-box::before {
  content: "";
  display: block;
  order: 2;
  width: 50px;
  height: 1px;
  margin: 15px 0;
  background-color: #939598;
}
.home-news01 .news-list__item .text-box__date {
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
}
.home-news01 .news-list__item .text-box__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  transition: all 0.3s;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 640px) {
  .home-news01 .news-list__item .text-box__title {
    font-size: 17px;
    line-height: 27px;
    max-height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.home-news01 .news-list__item .text-box__description {
  order: 3;
  font-size: 15px;
  line-height: 24px;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 640px) {
  .home-news01 .news-list__item .text-box__description {
    font-size: 14px;
    line-height: 21px;
    max-height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.home-news01 .news-list .arrowPrev,
.home-news01 .news-list .arrowNext {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 26px;
  height: 26px;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .home-news01 .news-list .arrowPrev,
  .home-news01 .news-list .arrowNext {
    left: -10px;
    width: 20px;
    height: 20px;
  }
}
.home-news01 .news-list .arrowPrev::before,
.home-news01 .news-list .arrowNext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #939598;
  border-left: 2px solid #939598;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.home-news01 .news-list .arrowPrev:hover::before,
.home-news01 .news-list .arrowNext:hover::before {
  border-color: #db9b8f;
}
.home-news01 .news-list .arrowNext {
  left: auto;
  right: -50px;
}
@media (max-width: 1200px) {
  .home-news01 .news-list .arrowNext {
    right: -15px;
  }
}
.home-news01 .news-list .arrowNext::before {
  left: -10px;
  transform: rotate(135deg);
}
.home-news01 .news-btns {
  width: 180px;
  margin: 60px auto 0;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .home-news01 .news-btns {
    margin-top: 30px;
  }
}

.home-product01 {
  padding: 60px 0;
}
@media (max-width: 640px) {
  .home-product01 {
    padding: 30px 0;
  }
}
.home-product01 .product-list {
  position: relative;
  margin-top: 30px;
}
.home-product01 .product-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
@media (max-width: 1200px) {
  .home-product01 .product-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-product01 .product-list__item {
  position: relative;
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 1300px) {
  .home-product01 .product-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 960px) {
  .home-product01 .product-list__item {
    width: 50%;
  }
}
.home-product01 .product-list__item__img-box {
  position: relative;
}
.home-product01 .product-list__item__img-box::before {
  content: "view more";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  background-color: rgba(147, 149, 152, 0.5);
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.home-product01 .product-list__item__img-box::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  transform: scale(1.2);
  opacity: 0;
  pointer-events: none;
}
.home-product01 .product-list__item__img-box:hover::before {
  opacity: 1;
}
.home-product01 .product-list__item__img-box:hover::after {
  opacity: 1;
  transform: scale(1);
}
.home-product01 .product-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 129.8701298701%;
  overflow: hidden;
}
.home-product01 .product-list__item .img-box__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-product01 .product-list__item__text-box {
  margin-top: 15px;
}
.home-product01 .product-list__item .text-box__title {
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .home-product01 .product-list__item .text-box__title {
    justify-content: center;
    font-size: 17px;
  }
}
.home-product01 .product-list .arrowPrev,
.home-product01 .product-list .arrowNext {
  position: absolute;
  top: calc(50% - 13px);
  left: -50px;
  width: 26px;
  height: 26px;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .home-product01 .product-list .arrowPrev,
  .home-product01 .product-list .arrowNext {
    top: calc(50% - 10px);
    left: -10px;
    width: 20px;
    height: 20px;
  }
}
.home-product01 .product-list .arrowPrev::before,
.home-product01 .product-list .arrowNext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #939598;
  border-left: 2px solid #939598;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.home-product01 .product-list .arrowPrev:hover::before,
.home-product01 .product-list .arrowNext:hover::before {
  border-color: #db9b8f;
}
.home-product01 .product-list .arrowNext {
  left: auto;
  right: -50px;
}
@media (max-width: 1200px) {
  .home-product01 .product-list .arrowNext {
    right: -15px;
  }
}
.home-product01 .product-list .arrowNext::before {
  left: -10px;
  transform: rotate(135deg);
}
.home-product01 .product-btns {
  width: 180px;
  margin: 40px auto 0;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .home-product01 .product-btns {
    margin-top: 30px;
  }
}

.home-advertise01 .container {
  max-width: 100%;
  padding: 0;
}
.home-advertise01 .advertise__img-box .img-box__pic {
  width: 100%;
}

@media (max-width: 1366px) {
  .advertise02 {
    height: unset !important;
    background: unset !important;
    background-attachment: unset !important;
  }
}
.advertise02 img {
  width: 100%;
}
@media (min-width: 1367px) {
  .advertise02 img {
    display: none;
  }
}

.home-video01 {
  padding: 60px 0;
}
@media (max-width: 640px) {
  .home-video01 {
    padding: 30px 0 40px;
  }
}
.home-video01 .container {
  max-width: 1320px;
}
.home-video01 .video-list {
  position: relative;
  margin-top: 40px;
}
.home-video01 .video-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
@media (max-width: 1200px) {
  .home-video01 .video-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 640px) {
  .home-video01 .video-list {
    margin-top: 25px;
  }
}
.home-video01 .video-list__item {
  position: relative;
}
.home-video01 .video-list__item::before {
  content: "";
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background: url(./../img/sample/video_play01.png) no-repeat;
  background-size: contain;
}
@media (max-width: 640px) {
  .home-video01 .video-list__item::before {
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
  }
}
.home-video01 .video-list__item__pic {
  width: 100%;
}
.home-video01 .video-list .arrowPrev,
.home-video01 .video-list .arrowNext {
  position: absolute;
  top: calc(50% - 13px);
  left: -50px;
  width: 26px;
  height: 26px;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .home-video01 .video-list .arrowPrev,
  .home-video01 .video-list .arrowNext {
    top: calc(50% - 10px);
    left: -10px;
    width: 20px;
    height: 20px;
  }
}
.home-video01 .video-list .arrowPrev::before,
.home-video01 .video-list .arrowNext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #939598;
  border-left: 2px solid #939598;
  transform: rotate(-45deg);
  transition: all 0.4s ease;
}
.home-video01 .video-list .arrowPrev:hover::before,
.home-video01 .video-list .arrowNext:hover::before {
  border-color: #414042;
}
.home-video01 .video-list .arrowNext {
  left: auto;
  right: -50px;
}
@media (max-width: 1200px) {
  .home-video01 .video-list .arrowNext {
    right: -15px;
  }
}
.home-video01 .video-list .arrowNext::before {
  left: -10px;
  transform: rotate(135deg);
}
.home-video01 .video-btns {
  width: 180px;
  margin: 60px auto 0;
}
@media (max-width: 640px) {
  .home-video01 .video-btns {
    margin-top: 30px;
  }
}

.video02 {
  padding: 60px 0;
}
.video02 .container {
  max-width: 1320px;
}
.video02 .video_slick {
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .video02 .video_slick {
    padding: 0 30px;
  }
}
.video02 .video_slick .slick-slide > div {
  position: relative;
  height: 0;
  padding-bottom: 46.6666666667%;
  cursor: pointer;
  overflow: hidden;
}
.video02 .video_slick .slick-slide > div::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s;
}
.video02 .video_slick .slick-slide > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video02 .video_slick .slick-slide > div .video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  z-index: 3;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .video02 .video_slick .slick-slide > div .video_btn {
    transform: scale(0.8);
  }
}
@media (max-width: 720px) {
  .video02 .video_slick .slick-slide > div .video_btn {
    transform: scale(0.7);
  }
}
@media (max-width: 400px) {
  .video02 .video_slick .slick-slide > div .video_btn {
    transform: scale(0.55);
  }
}
.video02 .video_slick .slick-slide > div .video_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -12px 0 0 -3px;
  border-style: solid;
  border-width: 12px 0 12px 14px;
  border-color: transparent transparent transparent #db9b8f;
}
.video02 .video_slick .slick-slide > div .video_btn .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video02 .video_slick .slick-slide > div .video_btn .circle::before {
  content: "";
  position: absolute;
  top: 7%;
  left: 7%;
  width: 86%;
  height: 86%;
  border: 1px solid #fff;
  border-radius: 50%;
}
.video02 .video_slick .slick-slide > div .video_btn .circle svg {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  transform: rotate(-90deg);
}
.video02 .video_slick .slick-slide > div .video_btn .circle svg circle {
  fill: none;
  stroke: #db9b8f;
  stroke-width: 2;
  stroke-dashoffset: 360;
  stroke-dasharray: 360;
  animation: service15_draw 5s linear infinite;
}
@keyframes service15_draw {
  0% {
    stroke-dashoffset: 360;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.video02 .video_slick .slick-slide > div .video_btn .circle::after {
  content: "";
  position: absolute;
  top: 11%;
  left: 11%;
  width: 78%;
  height: 78%;
  border: 1px dashed #fff;
  border-radius: 50%;
  animation: service15_circle 25s linear infinite;
}
.video02 .video_slick .slick-slide > div .video_btn .stroke {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  margin: -5px 0 0 -5px;
  animation: service15_circle 15s linear infinite reverse;
}
@keyframes service15_circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.video02 .video_slick .slick-slide > div .video_btn .stroke svg {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}
.video02 .video_slick .slick-slide > div .video_btn .stroke svg circle {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-dasharray: 2, 4;
}
.video02 .video_slick .slick-slide > div:hover::before {
  background: rgba(212, 171, 165, 0);
}
.video02 .video_slick .slick-slide > div:hover .video_btn {
  background: rgba(255, 255, 255, 0.2);
}
.video02 .video_slick .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .video02 .video_slick .slick-arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 840px) {
  .video02 .video_slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.video02 .video_slick .slick-arrow.slick-prev:not(.keep_default) {
  left: -30px;
}
@media (max-width: 480px) {
  .video02 .video_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -25px;
  }
}
.video02 .video_slick .slick-arrow.slick-next:not(.keep_default) {
  right: -30px;
}
@media (max-width: 480px) {
  .video02 .video_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -25px;
  }
}
.video02 .video_slick .slick-arrow svg {
  width: auto;
  height: 100%;
  fill: #939598;
  transition: all 0.1s;
}
.video02 .video_slick .slick-arrow:hover svg {
  fill: #db9b8f;
}
.video02 .video_slick .slick-arrow.white svg {
  fill: #fff;
}
.video02 .video_slick .slick-arrow.white:hover svg {
  fill: #fff;
}
@media (max-width: 1200px) {
  .video02 .video_slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.video02 .video_slick .slick-arrow.slick-prev:not(.keep_default) {
  left: -50px;
}
@media (max-width: 1200px) {
  .video02 .video_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -10px;
  }
}
.video02 .video_slick .slick-arrow.slick-next:not(.keep_default) {
  right: -50px;
}
@media (max-width: 1200px) {
  .video02 .video_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -10px;
  }
}
.video02 [class^=button] {
  margin-top: 40px !important;
}

.home-about01 .container {
  position: relative;
  max-width: 100%;
  padding: 0;
}
.home-about01 .about__img-box .img-box__pic {
  width: 100%;
}
@media (min-width: 1201px) {
  .home-about01 .about__text-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-left: calc((100vw - 1580px) / 2);
    padding-right: calc((100vw - 1580px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
  }
}
@media (min-width: 1201px) and (max-width: 1800px) {
  .home-about01 .about__text-box {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1200px) {
  .home-about01 .about__text-box {
    padding: 30px 10px;
    text-align: center;
  }
}
.home-about01 .about__text-box .text-box__title {
  margin-top: 40px;
  font-size: 45px;
}
@media (max-width: 1400px) {
  .home-about01 .about__text-box .text-box__title {
    margin-top: 20px;
  }
}
@media (max-width: 1200px) {
  .home-about01 .about__text-box .text-box__title {
    margin-top: 0;
    font-size: 32px;
  }
}
.home-about01 .about__text-box .text-box__description {
  margin-top: 5px;
  font-size: 18px;
}
.home-about01 .about__text-box .text-box__btns {
  width: 180px;
  margin-top: 40px;
}

.home-link01 {
  padding: 30px 0;
  background-color: #efefef;
}
.home-link01 .container {
  max-width: 1520px;
}
.home-link01 .link-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.home-link01 .link-list__item {
  display: flex;
  color: #393939;
}
@media (min-width: 1201px) {
  .home-link01 .link-list__item {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0 30px;
  }
}
@media (max-width: 1200px) {
  .home-link01 .link-list__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
}
@media (min-width: 961px) {
  .home-link01 .link-list__item {
    width: 25%;
  }
  .home-link01 .link-list__item:not(:nth-child(4n)) {
    border-right: 1px solid #ccc;
  }
}
@media (max-width: 960px) {
  .home-link01 .link-list__item {
    width: 50%;
  }
}
.home-link01 .link-list__item__pic {
  width: 65px;
  filter: brightness(0);
  transition: all 0.3s;
}
@media (min-width: 1201px) {
  .home-link01 .link-list__item__pic {
    flex-shrink: 0;
  }
}
.home-link01 .link-list__item__title {
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}
@media (min-width: 1201px) {
  .home-link01 .link-list__item__title {
    width: calc(100% - 65px - 15px);
    padding-bottom: 30px;
    margin-left: 15px;
  }
}
.home-link01 .link-list__item__description {
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 1201px) {
  .home-link01 .link-list__item__description {
    width: calc(100% - 65px - 15px);
    margin-left: auto;
    margin-top: -25px;
  }
}
.home-link01 .link-list > a.link-list__item:hover .link-list__item__pic {
  filter: brightness(1);
}
.home-link01 .link-list > a.link-list__item:hover .link-list__item__title {
  color: #db9b8f;
}

.news_list01 {
  padding: 60px 0;
}
.news_list01 .news_item {
  width: 25%;
  padding-bottom: 30px;
}
@media (max-width: 1440px) {
  .news_list01 .news_item {
    width: 33.3333333333%;
  }
}
@media (max-width: 960px) {
  .news_list01 .news_item {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .news_list01 .news_item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .news_list01 .news_item {
    padding-bottom: 20px;
  }
}
.news_list01 .news_item.video_type .news_info, .news_list01 .news_item.album_type .news_info {
  position: relative;
}
.news_list01 .news_item.video_type .news_info::before, .news_list01 .news_item.album_type .news_info::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.news_list01 .news_item .news_info {
  height: 100%;
}
.news_list01 .news_item .news_info a {
  display: block;
  height: 100%;
  background: #f0f0f0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
.news_list01 .news_item .news_info a .news_img {
  position: relative;
  height: 0;
  padding-bottom: 84.7328244275%;
  overflow: hidden;
}
.news_list01 .news_item .news_info a .news_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.001);
  transition: all 0.3s;
}
.news_list01 .news_item .news_info a .news_content {
  padding: 30px 25px;
  transition: all 0.3s;
}
.news_list01 .news_item .news_info a .news_content .news_date {
  color: #393939;
  font-size: 12px;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.news_list01 .news_item .news_info a .news_content .news_title {
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #393939;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .news_list01 .news_item .news_info a .news_content .news_title {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .news_list01 .news_item .news_info a .news_content .news_title {
    font-size: 16px;
  }
}
.news_list01 .news_item .news_info a .news_content .news_line {
  width: 40px;
  height: 1px;
  margin: 12px 0;
  background: #393939;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .news_list01 .news_item .news_info a .news_content .news_line {
    margin: 10px 0;
  }
}
.news_list01 .news_item .news_info a .news_content .news_desc {
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #393939;
  transition: all 0.3s;
}
.news_list01 .news_item .news_info:hover a {
  background: #db9b8f;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.news_list01 .news_item .news_info:hover a .news_img img {
  transform: scale(1.05);
}
.news_list01 .news_item .news_info:hover a .news_content .news_date {
  color: #fff;
}
.news_list01 .news_item .news_info:hover a .news_content .news_title {
  color: #fff;
}
.news_list01 .news_item .news_info:hover a .news_content .news_line {
  background: #fff;
}
.news_list01 .news_item .news_info:hover a .news_content .news_desc {
  color: #fff;
}
.news_list01 .news_item .lightGallery {
  height: 0;
  overflow: hidden;
}

.news_detail01 {
  padding: 60px 0;
}
.news_detail01 .news_top {
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  background-image: linear-gradient(to right, #303030 0%, #303030 100%);
  background-size: 70px 3px;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .news_detail01 .news_top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.news_detail01 .news_top .news_title {
  color: #db9b8f;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .news_detail01 .news_top .news_title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .news_detail01 .news_top .news_title {
    font-size: 26px;
  }
}
.news_detail01 .news_top .news_date {
  color: #393939;
  font-size: 16px;
  margin-top: 10px;
}
.news_detail01 .news_top .news_share {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 0 15px;
}
.news_detail01 .news_top .news_share a {
  display: block;
  color: #BCBEC0;
  font-size: 22px;
  transition: all 0.3s;
}
.news_detail01 .news_top .news_share a i {
  display: block;
}
.news_detail01 .news_top .news_share a svg {
  display: block;
  width: auto;
  height: 22px;
  fill: #BCBEC0;
  transition: all 0.3s;
}
.news_detail01 .news_top .news_share a:hover {
  color: #db9b8f;
}
.news_detail01 .news_top .news_share a:hover svg {
  fill: #db9b8f;
}
.news_detail01 .news_pic {
  margin-bottom: 40px;
}
.news_detail01 .news_pic img {
  margin: 0 auto;
}
.news_detail01 .back_to_list {
  margin-top: 60px;
}
.news_detail01 .back_to_list > * p {
  font-family: inherit;
}
.news_detail01 .related {
  margin: 60px 0 0;
}
.news_detail01 .related .related_title {
  color: #393939;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .news_detail01 .related .related_title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .news_detail01 .related .related_title {
    font-size: 26px;
  }
}
.news_detail01 .related .related_slick {
  margin: 0 -20px;
}
@media (max-width: 1024px) {
  .news_detail01 .related .related_slick {
    padding-bottom: 30px;
  }
}
.news_detail01 .related .related_slick .slick-list {
  padding: 0 10px 15px;
}
.news_detail01 .related .related_slick .slick-slide {
  padding: 0 10px;
}
.news_detail01 .related .related_slick .slick-slide a {
  display: block;
  height: 100%;
  background: #f0f0f0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}
.news_detail01 .related .related_slick .slick-slide a .news_img {
  position: relative;
  height: 0;
  padding-bottom: 84.7328244275%;
  overflow: hidden;
}
.news_detail01 .related .related_slick .slick-slide a .news_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: all 0.3s;
}
.news_detail01 .related .related_slick .slick-slide a .news_content {
  padding: 30px 25px;
  transition: all 0.5s;
}
.news_detail01 .related .related_slick .slick-slide a .news_content .news_date {
  color: #393939;
  font-size: 12px;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.news_detail01 .related .related_slick .slick-slide a .news_content .news_title {
  display: -webkit-box;
  height: 48px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #393939;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .news_detail01 .related .related_slick .slick-slide a .news_content .news_title {
    display: -webkit-box;
    height: 50px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .news_detail01 .related .related_slick .slick-slide a .news_content .news_title {
    display: -webkit-box;
    height: 48px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
  }
}
.news_detail01 .related .related_slick .slick-slide a .news_content .news_line {
  width: 40px;
  height: 1px;
  margin: 12px 0;
  background: #393939;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .news_detail01 .related .related_slick .slick-slide a .news_content .news_line {
    margin: 10px 0;
  }
}
.news_detail01 .related .related_slick .slick-slide a .news_content .news_desc {
  display: -webkit-box;
  height: 44px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #393939;
  line-height: 1.5;
  transition: all 0.3s;
}
.news_detail01 .related .related_slick .slick-slide a:hover {
  background: #db9b8f;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.4);
}
.news_detail01 .related .related_slick .slick-slide a:hover .news_img img {
  transform: scale(1.05);
}
.news_detail01 .related .related_slick .slick-slide a:hover .news_content .news_date {
  color: #fff;
}
.news_detail01 .related .related_slick .slick-slide a:hover .news_content .news_title {
  color: #fff;
}
.news_detail01 .related .related_slick .slick-slide a:hover .news_content .news_line {
  background: #fff;
}
.news_detail01 .related .related_slick .slick-slide a:hover .news_content .news_desc {
  color: #fff;
}
.news_detail01 .related .related_slick .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .news_detail01 .related .related_slick .slick-arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 840px) {
  .news_detail01 .related .related_slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.news_detail01 .related .related_slick .slick-arrow.slick-prev:not(.keep_default) {
  left: -30px;
}
@media (max-width: 480px) {
  .news_detail01 .related .related_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -25px;
  }
}
.news_detail01 .related .related_slick .slick-arrow.slick-next:not(.keep_default) {
  right: -30px;
}
@media (max-width: 480px) {
  .news_detail01 .related .related_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -25px;
  }
}
.news_detail01 .related .related_slick .slick-arrow svg {
  width: auto;
  height: 100%;
  fill: #939598;
  transition: all 0.1s;
}
.news_detail01 .related .related_slick .slick-arrow:hover svg {
  fill: #db9b8f;
}
.news_detail01 .related .related_slick .slick-arrow.white svg {
  fill: #fff;
}
.news_detail01 .related .related_slick .slick-arrow.white:hover svg {
  fill: #fff;
}
@media (max-width: 1024px) {
  .news_detail01 .related .related_slick .slick-arrow {
    display: none !important;
  }
}

.product-list01 {
  padding: 60px 0 70px;
}
@media (max-width: 640px) {
  .product-list01 {
    padding: 50px 0 60px;
  }
}
.product-list01:not(:first-child) {
  padding-top: 0;
}
.product-list01:not(:last-child) {
  padding-bottom: 0;
}
.product-list01 .card-list {
  margin: 0 -10px;
}
@media (max-width: 640px) {
  .product-list01 .card-list {
    margin: 0 -5px;
  }
}
.product-list01 .card-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.product-list01 .card-list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.product-list01 .card-list__item {
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .product-list01 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .product-list01 .card-list__item {
    width: 50%;
    padding: 0 5px;
  }
}
.product-list01 .card-list__item__img-box {
  position: relative;
  display: block;
}
.product-list01 .card-list__item__img-box.box--soldout {
  position: relative;
}
.product-list01 .card-list__item__img-box.box--soldout::after {
  content: "Sold out";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  font-size: 20px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: rgba(4, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .product-list01 .card-list__item__img-box.box--soldout::after {
    font-size: 16px;
  }
}
.product-list01 .card-list__item__img-box[data-top]::before {
  content: "top " attr(data-top);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 15px;
  line-height: 20px;
  padding: 0 8px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #939598;
}
@media (max-width: 640px) {
  .product-list01 .card-list__item__img-box[data-top]::before {
    top: 10px;
    right: 10px;
    font-size: 12px;
    line-height: 18px;
  }
}
.product-list01 .card-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 129.8701298701%;
  overflow: hidden;
}
.product-list01 .card-list__item__img-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-list01 .card-list__item__img-box a.multi img {
  transition: all 0.8s;
}
.product-list01 .card-list__item__img-box a.multi img:nth-child(1) {
  opacity: 1;
}
.product-list01 .card-list__item__img-box a.multi img:nth-child(2) {
  opacity: 0;
}
.product-list01 .card-list__item__img-box a.multi:hover img:nth-child(1) {
  opacity: 0;
}
.product-list01 .card-list__item__img-box a.multi:hover img:nth-child(2) {
  opacity: 1;
}
.product-list01 .card-list__item__text-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  margin-top: 12px;
}
.product-list01 .card-list__item .text-box__title {
  width: 50%;
  flex-grow: 1;
  color: #414042;
}
@media (max-width: 1200px) {
  .product-list01 .card-list__item .text-box__title {
    font-size: 13px;
  }
}
.product-list01 .card-list__item .text-box__tag {
  max-width: 50%;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
  line-height: 20px;
  font-size: 15px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .product-list01 .card-list__item .text-box__tag {
    line-height: 18px;
    font-size: 12px;
  }
}
.product-list01 .card-list__item .text-box__size {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  width: 100%;
  margin: 14px 0;
  font-size: 13px;
}
@media (max-width: 1200px) {
  .product-list01 .card-list__item .text-box__size {
    margin: 10px 0;
  }
}
.product-list01 .card-list__item .text-box__size.text-btns .text-btn:not(.active) {
  color: #b2b2b2;
  cursor: auto;
}
.product-list01 .card-list__item .text-box__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 20px;
  flex-grow: 1;
  width: calc(100% - 80px);
}
@media (max-width: 640px) {
  .product-list01 .card-list__item .text-box__price {
    width: 100%;
  }
}
.product-list01 .card-list__item .text-box__text-btns {
  display: flex;
  gap: 4px 12px;
  flex-shrink: 0;
  max-width: 70px;
  margin-left: auto;
}
@media (max-width: 640px) {
  .product-list01 .card-list__item .text-box__text-btns {
    margin-top: 10px;
  }
}
.product-list01 .card-list__item .text-box__text-btns .text-btn {
  font-size: 20px;
}
@media (max-width: 640px) {
  .product-list01 .card-list__item .text-box__text-btns .text-btn {
    font-size: 16px;
  }
}
.product-list01 .card-list__item .text-box__text-btns .text-btn:hover .adshop-heart-h {
  color: #e64d4d;
}
.product-list01 .card-list__item .text-box__text-btns .text-btn .adshop-heart-f {
  color: #e64d4d;
}
.product-list01 .card-list__item .text-box__text-btns .addto-favorite:not(.active),
.product-list01 .card-list__item .text-box__text-btns .remove-favorite:not(.active) {
  display: none;
}
.product-list01 .best-item {
  margin-bottom: 40px;
}
.product-list01 .best-item__title {
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 1px;
  text-indent: 1px;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid rgba(65, 64, 66, 0.25);
  border-bottom: 1px solid rgba(65, 64, 66, 0.25);
}
.product-list01 .best-item__list {
  margin-top: 55px;
}
@media (max-width: 640px) {
  .product-list01 .best-item__list {
    margin-top: 30px;
  }
}
.product-list01 .filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  .product-list01 .filter {
    margin-bottom: 20px;
  }
}
.product-list01 .filter-more__btn {
  font-weight: 500;
  color: #414042;
  margin-right: 45px;
}
@media (max-width: 640px) {
  .product-list01 .filter-more__btn {
    margin-right: 20px;
  }
}
.product-list01 .filter-order {
  position: relative;
  z-index: 10;
}
.product-list01 .filter-order:hover .filter-order__drowdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.product-list01 .filter-order__toggler {
  display: flex;
  align-items: center;
  min-width: 170px;
  border-bottom: 1px solid #414042;
  font-weight: 500;
  color: #414042;
}
@media (max-width: 1200px) {
  .product-list01 .filter-order__toggler {
    justify-content: center;
    border: 1px solid #414042;
    padding: 8px 24px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .product-list01 .filter-order__toggler {
    min-width: auto;
    padding: 0 20px;
    line-height: 20px;
  }
}
.product-list01 .filter-order__toggler__text {
  padding: 8px 24px;
}
@media (max-width: 1200px) {
  .product-list01 .filter-order__toggler__text {
    padding: 0;
  }
}
.product-list01 .filter-order__toggler__icon {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .product-list01 .filter-order__toggler__icon {
    display: none;
  }
}
.product-list01 .filter-order__drowdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.product-list01 .filter-order__drowdown-item {
  padding: 8px 22px;
  color: #939598;
  transition: all 0.4s ease;
}
.product-list01 .filter-order__drowdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(147, 149, 152, 0.25);
}
.product-list01 .filter-order__drowdown-item:hover {
  color: #414042;
  border-bottom-color: #b2b2b2;
  background-color: #b2b2b2;
}

.product-suggestion01 {
  padding: 60px 0 70px;
}
@media (max-width: 640px) {
  .product-suggestion01 {
    padding: 50px 0;
  }
}
.product-suggestion01:not(:first-child) {
  padding-top: 0;
}
.product-suggestion01:not(:last-child) {
  padding-bottom: 0;
}
.product-suggestion01 .card-list {
  margin: 0 -10px;
}
@media (max-width: 640px) {
  .product-suggestion01 .card-list {
    margin: 0 -5px;
  }
}
.product-suggestion01 .card-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.product-suggestion01 .card-list__item {
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .product-suggestion01 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .product-suggestion01 .card-list__item {
    width: 50%;
    padding: 0 5px;
  }
}
.product-suggestion01 .card-list__item__img-box {
  position: relative;
  display: block;
}
.product-suggestion01 .card-list__item__img-box__pic {
  width: 100%;
}
.product-suggestion01 .card-list__item__img-box.box--soldout {
  position: relative;
}
.product-suggestion01 .card-list__item__img-box.box--soldout::after {
  content: "Sold out";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(4, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .product-suggestion01 .card-list__item__img-box.box--soldout::after {
    font-size: 16px;
  }
}
.product-suggestion01 .card-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 129.8701298701%;
  overflow: hidden;
}
.product-suggestion01 .card-list__item__img-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-suggestion01 .card-list__item__img-box a.multi img {
  transition: all 0.8s;
}
.product-suggestion01 .card-list__item__img-box a.multi img:nth-child(1) {
  opacity: 1;
}
.product-suggestion01 .card-list__item__img-box a.multi img:nth-child(2) {
  opacity: 0;
}
.product-suggestion01 .card-list__item__img-box a.multi:hover img:nth-child(1) {
  opacity: 0;
}
.product-suggestion01 .card-list__item__img-box a.multi:hover img:nth-child(2) {
  opacity: 1;
}
.product-suggestion01 .card-list__item__text-box {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.product-suggestion01 .card-list__item .text-box__title {
  color: #414042;
  font-size: 16px;
}
@media (max-width: 1200px) {
  .product-suggestion01 .card-list__item .text-box__title {
    font-size: 13px;
  }
}
.product-suggestion01 .card-list__item .text-box__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 20px;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .product-suggestion01 .card-list__item .text-box__price {
    margin-top: 10px;
  }
}
.product-suggestion01 .product-suggestion {
  margin-bottom: 40px;
}
.product-suggestion01 .product-suggestion__title {
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 641px) {
  .product-suggestion01 .product-suggestion__title {
    text-align: center;
  }
}
.product-suggestion01 .product-suggestion__list {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .product-suggestion01 .product-suggestion__list {
    margin-top: 15px;
  }
}
.product-suggestion01 .product-suggestion__btns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 24px;
}
.product-suggestion01 .product-suggestion__btns-link {
  text-transform: uppercase;
}
.product-suggestion01 .product-suggestion__btns-prev, .product-suggestion01 .product-suggestion__btns-next {
  position: relative;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.product-suggestion01 .product-suggestion__btns-prev::before, .product-suggestion01 .product-suggestion__btns-next::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-top: 1px solid #939598;
  border-left: 1px solid #939598;
  transform: rotate(-45deg);
}
.product-suggestion01 .product-suggestion__btns-prev.slick-hidden, .product-suggestion01 .product-suggestion__btns-next.slick-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.product-suggestion01 .product-suggestion__btns-next::before {
  transform: rotate(135deg);
}

@media (min-width: 1201px) {
  .product-suggestion01 .container {
    max-width: 1920px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.product-detail02 {
  padding: 0 0 50px;
}
.product-detail02 .social-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
}
.product-detail02 .social-link__item {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 12px;
  color: #ffffff;
  background-color: #b2b2b2;
  text-align: center;
  transition: all 0.4s ease;
}
.product-detail02 .social-link__item:hover {
  background-color: #414042;
}
.product-detail02 .dropdown-box {
  border-top-color: rgba(178, 178, 178, 0.5);
}
.product-detail02 .dropdown-box__title::before, .product-detail02 .dropdown-box__title::after {
  background-color: rgba(178, 178, 178, 0.5);
}
@media (min-width: 1201px) {
  .product-detail02 .container {
    display: flex;
    align-items: flex-start;
    max-width: 1920px;
    padding: 0;
  }
}
@media (min-width: 1201px) {
  .product-detail02 .product__img-box {
    width: calc(100% - 580px);
  }
}
.product-detail02 .product__img-box .img-box__list .slick-dots {
  bottom: auto;
  left: auto;
  top: 10px;
  right: 10px;
  transform: translate(0, 0);
}
@media (min-width: 1201px) {
  .product-detail02 .product__img-box .img-box__list .slick-dots {
    display: none !important;
  }
}
.product-detail02 .product__text-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}
@media (min-width: 1201px) {
  .product-detail02 .product__text-box {
    width: 580px;
    position: sticky;
    top: 150px;
    z-index: 9;
    padding: 70px 50px 50px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }
  .product-detail02 .product__text-box::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .product-detail02 .product__text-box::-webkit-scrollbar:vertical {
    width: 5px;
  }
  .product-detail02 .product__text-box::-webkit-scrollbar:horizontal {
    height: 10px;
  }
  .product-detail02 .product__text-box::-webkit-scrollbar-thumb {
    background-color: #999999;
    border-radius: 3px;
    border: 0;
  }
  .product-detail02 .product__text-box::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #e0e0e0;
  }
}
@media (max-width: 1200px) {
  .product-detail02 .product__text-box {
    padding-top: 20px;
  }
}
.product-detail02 .product__text-box .text-box__class {
  width: 100%;
  margin-bottom: 15px;
  color: #939598;
}
.product-detail02 .product__text-box .text-box__title {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .product-detail02 .product__text-box .text-box__title {
    width: 100%;
  }
}
.product-detail02 .product__text-box .text-box__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .product-detail02 .product__text-box .text-box__price {
    gap: 5px 8px;
    width: 100%;
    margin-top: 10px;
  }
}
.product-detail02 .product__text-box .text-box__tag {
  width: 100%;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 500;
  color: #939598;
}
.product-detail02 .product__text-box .text-box__tag .tag {
  margin-right: 5px;
}
.product-detail02 .product__text-box .text-box__tag .tag:not(:first-child) {
  margin-top: 10px;
}
.product-detail02 .product__text-box .text-box__tag + .text-box__colors, .product-detail02 .product__text-box .text-box__tag + .text-box__type, .product-detail02 .product__text-box .text-box__tag + .text-box__selects {
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .product-detail02 .product__text-box .text-box__tag + .text-box__colors, .product-detail02 .product__text-box .text-box__tag + .text-box__type, .product-detail02 .product__text-box .text-box__tag + .text-box__selects {
    margin-top: 30px;
  }
}
.product-detail02 .product__text-box .text-box__colors, .product-detail02 .product__text-box .text-box__type {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
@media (min-width: 1201px) {
  .product-detail02 .product__text-box .text-box__colors .color-text,
  .product-detail02 .product__text-box .text-box__colors .type-text, .product-detail02 .product__text-box .text-box__type .color-text,
  .product-detail02 .product__text-box .text-box__type .type-text {
    width: 100%;
    padding-left: 5px;
  }
}
@media (max-width: 1200px) {
  .product-detail02 .product__text-box .text-box__colors .color-text,
  .product-detail02 .product__text-box .text-box__colors .type-text, .product-detail02 .product__text-box .text-box__type .color-text,
  .product-detail02 .product__text-box .text-box__type .type-text {
    order: 2;
    align-self: center;
  }
}
@media (max-width: 1200px) {
  .product-detail02 .product__text-box .text-box__colors .color-picker:last-child,
  .product-detail02 .product__text-box .text-box__colors .type-picker:last-child, .product-detail02 .product__text-box .text-box__type .color-picker:last-child,
  .product-detail02 .product__text-box .text-box__type .type-picker:last-child {
    margin-right: auto;
  }
}
.product-detail02 .product__text-box .text-box__colors .color-picker__text,
.product-detail02 .product__text-box .text-box__colors .type-picker__text, .product-detail02 .product__text-box .text-box__type .color-picker__text,
.product-detail02 .product__text-box .text-box__type .type-picker__text {
  display: none;
}
.product-detail02 .product__text-box .text-box__text-btns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
  margin-top: 5px;
}
.product-detail02 .product__text-box .text-box__text-btns .addto-favorite:not(.active),
.product-detail02 .product__text-box .text-box__text-btns .remove-favorite:not(.active) {
  display: none;
}
.product-detail02 .product__text-box .text-box__selects {
  width: 100%;
  margin-top: 15px;
}
.product-detail02 .product__text-box .text-box__btns {
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .product-detail02 .product__text-box .text-box__btns {
    display: none !important;
  }
}
.product-detail02 .product__text-box .text-box__dropdown {
  width: 100%;
  margin-top: 30px;
  border-bottom: 1px solid rgba(178, 178, 178, 0.5);
}
.product-detail02 .product__text-box .social-link {
  width: 100%;
  margin-top: 30px;
}
.product-detail02 .product__text-box .social-link::before {
  content: "Share us";
  display: block;
}
.product-detail02 .product-detail_bottom-btns {
  position: sticky;
  bottom: 0;
  z-index: 9;
  margin-top: 50px;
  background-color: #ffffff;
}
@media (min-width: 1201px) {
  .product-detail02 .product-detail_bottom-btns {
    display: none !important;
  }
}

.faq01 {
  padding: 60px 0;
}
.faq01 .faq_list .faq_item {
  border: 1px solid #ccc;
}
.faq01 .faq_list .faq_item:not(:last-child) {
  margin-bottom: 15px;
}
.faq01 .faq_list .faq_item .faq_title {
  display: flex;
  padding-left: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .faq01 .faq_list .faq_item .faq_title {
    padding-left: 10px;
  }
}
.faq01 .faq_list .faq_item .faq_title > *:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  color: #393939;
  font-size: 24px;
  line-height: 24px;
  padding-top: 18px;
  transition: all 0.3s;
}
.faq01 .faq_list .faq_item .faq_title > *:first-child i {
  display: block;
}
.faq01 .faq_list .faq_item .faq_title > p {
  display: flex;
  align-items: center;
  width: calc(100% - 110px);
  color: #393939;
  font-size: 16px;
  padding: 10px 15px 10px 0;
  transition: all 0.3s;
}
.faq01 .faq_list .faq_item .faq_title > *:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  min-height: 60px;
  color: #fff;
  font-size: 16px;
  background: #db9b8f;
  transition: all 0.3s;
}
.faq01 .faq_list .faq_item .faq_title > *:last-child i {
  display: block;
  transition: all 0.3s;
}
.faq01 .faq_list .faq_item .faq_title.active {
  background: #db9b8f !important;
}
.faq01 .faq_list .faq_item .faq_title.active > *:first-child {
  color: #fff;
}
.faq01 .faq_list .faq_item .faq_title.active > p {
  color: #fff;
}
.faq01 .faq_list .faq_item .faq_title.active > *:last-child {
  color: #393939;
}
.faq01 .faq_list .faq_item .faq_title.active > *:last-child i {
  transform: rotate(45deg);
}
.faq01 .faq_list .faq_item:nth-child(odd) .faq_title {
  background: #E6E7E9;
}
.faq01 .faq_list .faq_item:nth-child(odd) .faq_title.active > *:last-child {
  background: #E6E7E9;
}
.faq01 .faq_list .faq_item:nth-child(even) .faq_title {
  background: #FBFBFB;
}
.faq01 .faq_list .faq_item:nth-child(even) .faq_title.active > *:last-child {
  background: #FBFBFB;
}
.faq01 .faq_list .faq_item .faq_answer {
  display: none;
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid #ccc;
}
.faq01 .faq_list .faq_item .faq_answer > div {
  display: flex;
  align-items: flex-start;
  padding: 30px 60px 30px 20px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .faq01 .faq_list .faq_item .faq_answer > div {
    padding: 25px 30px 25px 10px;
  }
}
.faq01 .faq_list .faq_item .faq_answer > div > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  color: #393939;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}
.faq01 .faq_list .faq_item .faq_answer > div > div:nth-child(1) i {
  display: block;
}
.faq01 .faq_list .faq_item .faq_answer > div > div:nth-child(2) {
  width: calc(100% - 50px);
}
.faq01 [class^=pagination] {
  margin-top: 50px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .faq01 [class^=pagination] {
    margin-top: 40px;
  }
}

.contact01 .contact_left {
  width: 65%;
  padding-right: 65px;
}
@media (max-width: 1024px) {
  .contact01 .contact_left {
    width: 100%;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.contact01 .contact_left .hello {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #c6c6c6;
}
.contact01 .contact_left form .form_item {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .contact01 .contact_left form .form_item.w50 {
    width: 50%;
  }
}
.contact01 .contact_left form .form_item .label {
  margin-bottom: 5px;
}
.contact01 .contact_left form .form_item.one_line .label {
  display: inline-block;
}
.contact01 .contact_left form .form_item label {
  color: #393939;
  font-size: 16px;
  margin-right: 7px;
}
.contact01 .contact_left form .form_item label.must::after {
  content: "*";
  color: #d20014;
}
.contact01 .contact_left form .form_item label.radio {
  cursor: pointer;
  border: unset;
  border-radius: unset;
}
.contact01 .contact_left form .form_item input:not([type=radio]) {
  display: block;
  width: 100%;
}
.contact01 .contact_left form .form_item textarea {
  display: block;
  width: 100%;
  max-width: 100%;
}
.contact01 .contact_left form .form_item .submit {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .contact01 .contact_left form .form_item .submit {
    margin-top: 20px;
  }
  .contact01 .contact_left form .form_item .submit > * {
    margin: 0 auto;
  }
}
.contact01 .contact_left form .form_item input[type=submit] {
  display: none;
}
.contact01 .contact_right {
  width: 35%;
}
@media (max-width: 1024px) {
  .contact01 .contact_right {
    width: 100%;
  }
}
.contact01 .contact_right .snazzy {
  margin-bottom: 30px;
}
.contact01 .contact_right .snazzy #map {
  height: 0;
  padding-bottom: 78%;
}
@media (max-width: 1024px) {
  .contact01 .contact_right .snazzy #map {
    padding-bottom: 300px;
  }
}
.contact01 .contact_right .google_map {
  margin-bottom: 30px;
}
.contact01 .contact_right .google_map iframe {
  max-width: 100%;
}
@media (min-width: 1025px) {
  .contact01 .contact_right .google_map {
    position: relative;
    height: 0;
    padding-bottom: 78%;
    overflow: hidden;
  }
  .contact01 .contact_right .google_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.contact01 .contact_right .contact_info a {
  display: flex;
  align-items: center;
}
.contact01 .contact_right .contact_info a:not(:last-child) {
  margin-bottom: 10px;
}
.contact01 .contact_right .contact_info a p {
  transition: all 0.3s;
}
.contact01 .contact_right .contact_info a p:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: #a5a5a5;
  font-size: 20px;
  margin-right: 10px;
  border: 2px solid #a5a5a5;
  border-radius: 50%;
}
.contact01 .contact_right .contact_info a p:nth-child(1) i {
  display: block;
}
.contact01 .contact_right .contact_info a p:nth-child(2) {
  display: flex;
  align-items: center;
  color: #393939;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  word-break: break-all;
}
.contact01 .contact_right .contact_info a p:nth-child(2) span {
  padding-right: 10px;
  word-break: keep-all;
}
.contact01 .contact_right .contact_info a:hover p:nth-child(1) {
  color: #db9b8f;
  border: 2px solid #db9b8f;
}
.contact01 .contact_right .contact_info a:hover p:nth-child(2) {
  color: #db9b8f;
}

.add-purchase01 {
  padding: 40px 0 50px;
}
.add-purchase01 .card-list {
  margin: 0 -10px;
}
@media (max-width: 640px) {
  .add-purchase01 .card-list {
    margin: 0 -5px;
  }
}
.add-purchase01 .card-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.add-purchase01 .card-list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.add-purchase01 .card-list__item {
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .add-purchase01 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .add-purchase01 .card-list__item {
    width: 50%;
    padding: 0 5px;
  }
}
.add-purchase01 .card-list__item__img-box__pic {
  width: 100%;
}
.add-purchase01 .card-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 129.8701298701%;
  overflow: hidden;
}
.add-purchase01 .card-list__item__img-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.add-purchase01 .card-list__item__img-box a.multi img {
  transition: all 0.8s;
}
.add-purchase01 .card-list__item__img-box a.multi img:nth-child(1) {
  opacity: 1;
}
.add-purchase01 .card-list__item__img-box a.multi img:nth-child(2) {
  opacity: 0;
}
.add-purchase01 .card-list__item__img-box a.multi:hover img:nth-child(1) {
  opacity: 0;
}
.add-purchase01 .card-list__item__img-box a.multi:hover img:nth-child(2) {
  opacity: 1;
}
.add-purchase01 .card-list__item__text-box {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.add-purchase01 .card-list__item .text-box__title {
  color: #414042;
  font-size: 16px;
}
@media (max-width: 1200px) {
  .add-purchase01 .card-list__item .text-box__title {
    font-size: 13px;
  }
}
.add-purchase01 .card-list__item .text-box__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 20px;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .add-purchase01 .card-list__item .text-box__price {
    margin-top: 10px;
  }
}
.add-purchase01 .add-purchase {
  margin-bottom: 40px;
}
.add-purchase01 .add-purchase__title {
  font-size: 16px;
  font-weight: 400;
}
.add-purchase01 .add-purchase__list {
  margin-top: 30px;
}
@media (max-width: 640px) {
  .add-purchase01 .add-purchase__list {
    margin-top: 15px;
  }
}

@media (min-width: 1201px) {
  .pay01 .container {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 1201px) {
  .pay01 .pay-info {
    width: calc(100% - 380px);
    padding-right: 100px;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-info {
    display: flex;
    flex-direction: column;
  }
}
.pay01 .pay-info__progress-bar {
  display: flex;
  gap: 3px;
  padding: 25px 0;
}
.pay01 .pay-info__progress-bar__item {
  flex: 1;
  text-align: center;
}
.pay01 .pay-info__progress-bar__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  margin-top: 5px;
  background-color: #fff;
  border: 1px solid #000;
}
.pay01 .pay-info__progress-bar__item.active::after {
  background-color: #000;
}
.pay01 .pay-info__progress-bar__item:first-child::after {
  border-radius: 24px 0 0 24px;
}
.pay01 .pay-info__progress-bar__item:last-child::after {
  border-radius: 0 24px 24px 0;
}
.pay01 .pay-info__login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 25px;
  background-color: #BF1E2E;
}
@media (max-width: 1200px) {
  .pay01 .pay-info__login {
    order: -1;
    margin-bottom: 0;
    color: #ffffff;
  }
}
.pay01 .pay-info__login-text {
  color: #fff;
}
.pay01 .pay-info__login .btn {
  flex-shrink: 0;
  width: 50px;
  line-height: 20px;
  margin-left: 30px;
  color: #414042;
  background-color: #ffffff;
  border-color: #ffffff;
}
.pay01 .pay-info__login .btn:hover {
  color: #ffffff;
  background-color: #BF1E2E;
  border-color: #ffffff;
}
@media (max-width: 1200px) {
  .pay01 .pay-info__login .btn {
    margin-left: 10px;
    border-color: #ffffff;
    color: #414042;
    background-color: #ffffff;
  }
}
.pay01 .pay-info__cart:last-child {
  padding-bottom: 50px;
}
.pay01 .pay-info__cart-description .description--highlight {
  color: #e64d4d;
}
.pay01 .pay-info__cart-list {
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list {
    border-top: 1px solid #414042;
  }
}
.pay01 .pay-info__cart-list .cart-list__thead {
  display: flex;
  line-height: 50px;
  background-color: rgb(216.25, 216.25, 216.25);
}
.pay01 .pay-info__cart-list .cart-list__thead__title {
  flex-grow: 1;
  padding-left: 20px;
}
.pay01 .pay-info__cart-list .cart-list__thead__price, .pay01 .pay-info__cart-list .cart-list__thead__num, .pay01 .pay-info__cart-list .cart-list__thead__subtotal, .pay01 .pay-info__cart-list .cart-list__thead__del {
  flex-shrink: 0;
  text-align: center;
  padding: 0 10px;
}
.pay01 .pay-info__cart-list .cart-list__thead__price {
  width: 15%;
}
.pay01 .pay-info__cart-list .cart-list__thead__num {
  width: 17%;
}
.pay01 .pay-info__cart-list .cart-list__thead__subtotal {
  width: 14%;
}
.pay01 .pay-info__cart-list .cart-list__thead__del {
  width: 12%;
}
.pay01 .pay-info__cart-list .cart-list__tbody {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #939598;
}
@media (max-width: 1500px) {
  .pay01 .pay-info__cart-list .cart-list__tbody {
    padding: 15px 0;
  }
}
.pay01 .pay-info__cart-list .cart-list__tbody__pic {
  flex-shrink: 0;
  width: 17%;
  padding: 0 20px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__pic {
    padding: 0 10px;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__pic {
    width: 150px;
  }
}
.pay01 .pay-info__cart-list .cart-list__tbody__info {
  flex-grow: 1;
  padding-top: 40px;
}
@media (min-width: 1201px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info {
    display: flex;
  }
  .pay01 .pay-info__cart-list .cart-list__tbody__info-title {
    flex-grow: 1;
  }
  .pay01 .pay-info__cart-list .cart-list__tbody__info-price, .pay01 .pay-info__cart-list .cart-list__tbody__info-num, .pay01 .pay-info__cart-list .cart-list__tbody__info-subtotal {
    flex-shrink: 0;
    padding: 0 10px;
    text-align: center;
  }
  .pay01 .pay-info__cart-list .cart-list__tbody__info-price {
    width: 22%;
  }
  .pay01 .pay-info__cart-list .cart-list__tbody__info-num {
    width: 23%;
  }
  .pay01 .pay-info__cart-list .cart-list__tbody__info-subtotal {
    width: 19%;
  }
}
@media (max-width: 1500px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info {
    padding-top: 20px;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info {
    padding-top: 10px;
    padding-left: 15px;
  }
  .pay01 .pay-info__cart-list .cart-list__tbody__info [data-title]::before {
    content: attr(data-title);
    margin-right: 10px;
  }
}
.pay01 .pay-info__cart-list .cart-list__tbody__info-title__type {
  color: #939598;
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info-title {
    margin-bottom: 5px;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info-num {
    margin: 10px 0;
  }
}
.pay01 .pay-info__cart-list .cart-list__tbody__info-num__select {
  width: 100%;
  max-width: 180px;
  line-height: 30px;
  padding-left: 10px;
  border-color: #b2b2b2;
}
.pay01 .pay-info__cart-list .cart-list__tbody__del {
  flex-shrink: 0;
  padding-top: 30px;
  text-align: center;
}
@media (min-width: 1201px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__del {
    width: 12%;
  }
}
@media (max-width: 1500px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__del {
    padding-top: 10px;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__del {
    width: 50px;
    padding-top: 0;
    align-self: center;
  }
}
.pay01 .pay-info__cart-list .cart-list__tbody__del-btn {
  color: #b2b2b2;
  font-size: 26px;
}
.pay01 .pay-info__cart-btns {
  max-width: 200px;
  margin-top: 25px;
}
.pay01 .pay-info__form-title {
  font-size: 16px;
  font-weight: 700;
}
.pay01 .pay-info__form-list {
  padding-bottom: 60px;
}
@media (min-width: 641px) {
  .pay01 .pay-info__form .form-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
  }
}
@media (min-width: 641px) {
  .pay01 .pay-info__form .form-list__box {
    width: 50%;
    padding: 15px 7px;
  }
  .pay01 .pay-info__form .form-list__box.box--full {
    width: 100%;
  }
  .pay01 .pay-info__form .form-list__box.box--small {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 640px) {
  .pay01 .pay-info__form .form-list__box {
    margin-top: 15px;
  }
}
.pay01 .pay-info__form .form-list__box.box--require .form-list__box__title::after {
  content: "*";
  color: #e64d4d;
}
.pay01 .pay-info__form .form-list__box.box--end {
  align-self: flex-end;
}
.pay01 .pay-info__form .form-list__box.address-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
@media (min-width: 641px) {
  .pay01 .pay-info__form .form-list__box .address-box__city, .pay01 .pay-info__form .form-list__box .address-box__town, .pay01 .pay-info__form .form-list__box .address-box__post-code {
    width: 150px;
  }
}
@media (min-width: 641px) and (max-width: 960px) {
  .pay01 .pay-info__form .form-list__box .address-box__city, .pay01 .pay-info__form .form-list__box .address-box__town, .pay01 .pay-info__form .form-list__box .address-box__post-code {
    flex-grow: 1;
  }
}
@media (min-width: 961px) {
  .pay01 .pay-info__form .form-list__box .address-box__address {
    width: auto;
    flex-grow: 1;
  }
}
.pay01 .pay-info__form .form-list__box.invoice-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 35px;
}
@media (max-width: 1200px) {
  .pay01 .pay-info__form .form-list__box.invoice-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.pay01 .pay-info__form .form-list__box .invoice-box__input {
  margin: 0 5px 0 0;
}
.pay01 .pay-info__form .form-list__box .invoice-box__select {
  display: none;
  line-height: normal;
}
.pay01 .pay-info__form .form-list__box .input,
.pay01 .pay-info__form .form-list__box .select,
.pay01 .pay-info__form .form-list__box .textarea,
.pay01 .pay-info__form .form-list__box .checkbox,
.pay01 .pay-info__form .form-list__box .radio {
  border-color: #b2b2b2;
}
.pay01 .pay-info__form .form-list__box__title {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.pay01 .pay-info__form .form-list__box__title#same-as-shopper {
  width: fit-content;
}
.pay01 .pay-info__form .form-list__box__input {
  width: 100%;
}
.pay01 .pay-info__form .form-list__box__input-box {
  display: flex;
  gap: 5px 7px;
}
.pay01 .pay-info__form .form-list__box__description {
  width: 100%;
  color: #b2b2b2;
}
.pay01 .pay-info__form .form-list__box__description:not(:first-child) {
  margin-top: 15px;
}
.pay01 .pay-info__form .form-list__box__text-btn {
  display: inline-block;
  font-size: 12px;
}
@media (min-width: 641px) {
  .pay01 .pay-info__form .form-list__box__text-btn {
    line-height: 40px;
  }
}
.pay01 .pay-info__cart-info {
  border: 1px solid rgb(216.25, 216.25, 216.25);
  margin-top: 40px;
}
.pay01 .pay-info__cart-info .cart-info__box {
  display: flex;
}
.pay01 .pay-info__cart-info .cart-info__box:not(:last-child) {
  border-bottom: 1px solid rgb(216.25, 216.25, 216.25);
}
.pay01 .pay-info__cart-info .cart-info__box__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  padding: 25px;
  background-color: rgb(241.75, 241.75, 241.75);
}
@media (max-width: 960px) {
  .pay01 .pay-info__cart-info .cart-info__box__title {
    width: 160px;
    padding: 20px 10px;
  }
}
@media (max-width: 400px) {
  .pay01 .pay-info__cart-info .cart-info__box__title {
    width: 120px;
  }
}
.pay01 .pay-info__cart-info .cart-info__box__info {
  padding: 25px 35px;
}
@media (max-width: 960px) {
  .pay01 .pay-info__cart-info .cart-info__box__info {
    padding: 20px 30px;
  }
}
.pay01 .pay-info__cart-info .cart-info__box__info .info--highlight {
  color: #e64d4d;
}
.pay01 .pay-info__cart-info .cart-info__box__info .info--down {
  color: #b2b2b2;
}
.pay01 .pay-info__btns {
  margin: 70px auto 100px;
  width: 100%;
  max-width: 620px;
}
@media (max-width: 1200px) {
  .pay01 .pay-info__btns {
    margin: 40px auto;
  }
}
@media (max-width: 640px) {
  .pay01 .pay-info__btns {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .pay01 .pay-info__btns .btn--line {
    width: 100%;
  }
}
.pay01 .pay-info__btns .btn .adshop-line {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  font-size: 26px;
}
.pay01 .pay-summary {
  position: sticky;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1201px) {
  .pay01 .pay-summary {
    width: 380px;
    top: 150px;
    padding: 50px 0;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-summary {
    bottom: 0;
    padding: 20px 30px;
    margin-left: -30px;
    margin-right: -30px;
    background-color: #ffffff;
    box-shadow: 4px -4px 4px rgba(4, 0, 0, 0.15);
  }
}
@media (max-width: 640px) {
  .pay01 .pay-summary {
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.pay01 .pay-summary__title {
  flex-grow: 1;
  padding-bottom: 5px;
  border-bottom: 1px solid #939598;
}
@media (min-width: 1201px) {
  .pay01 .pay-summary__title {
    font-size: 20px;
  }
}
.pay01 .pay-summary__toggle {
  flex-shrink: 0;
  padding-left: 10px;
  border-bottom: 1px solid #939598;
  color: #b2b2b2;
  cursor: pointer;
}
.pay01 .pay-summary__toggle.active .fa-caret-up {
  transform: rotate(180deg);
}
.pay01 .pay-summary__toggle-box {
  width: 100%;
}
@media (min-width: 1201px) {
  .pay01 .pay-summary__toggle-box {
    display: block !important;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-summary__toggle-box {
    display: none;
  }
}
.pay01 .pay-summary__shipping {
  padding: 15px 0;
  border-bottom: 1px solid #939598;
  line-height: 1.7857142857;
}
@media (max-width: 1200px) {
  .pay01 .pay-summary__shipping {
    line-height: 1.3571428571;
  }
}
.pay01 .pay-summary__discount {
  padding: 15px 0 20px;
  border-bottom: 1px solid #939598;
}
.pay01 .pay-summary__discount-title {
  font-size: 16px;
}
.pay01 .pay-summary__discount-tags {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 10px;
  color: #e64d4d;
}
.pay01 .pay-summary__discount-tags .tag {
  flex-shrink: 0;
}
.pay01 .pay-summary__discount-tags .tag-text {
  flex-grow: 1;
}
.pay01 .pay-summary__discount-tags .text-price {
  flex-shrink: 0;
}
.pay01 .pay-summary__coupon {
  display: flex;
  align-items: flex-start;
  gap: 5px 15px;
  padding: 15px 0;
  border-bottom: 1px solid #939598;
}
.pay01 .pay-summary__coupon-title {
  flex-shrink: 0;
}
.pay01 .pay-summary__coupon-item {
  flex-grow: 1;
}
.pay01 .pay-summary__coupon-item__input {
  width: 100%;
  padding: 0 10px !important;
  line-height: 30px;
  font-size: 12px;
}
.pay01 .pay-summary__coupon-item__description {
  color: #939598;
}
.pay01 .pay-summary__coupon-btns {
  flex-shrink: 0;
  gap: 5px;
  width: 80px;
}
.pay01 .pay-summary__subtotal {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #939598;
}
.pay01 .pay-summary__subtotal-title {
  width: 50%;
  flex-grow: 1;
  padding: 5px 10px 5px 0;
}
.pay01 .pay-summary__subtotal-title:not(:nth-last-child(2)) {
  border-bottom: 1px solid #b2b2b2;
}
.pay01 .pay-summary__subtotal-price {
  flex-shrink: 0;
  padding: 5px 0;
}
.pay01 .pay-summary__subtotal-price:not(:last-child) {
  border-bottom: 1px solid #b2b2b2;
}
.pay01 .pay-summary__total {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 15px;
  color: #e64d4d;
}
.pay01 .pay-summary__total-title {
  width: 50%;
  flex-grow: 1;
  padding-right: 10px;
}
.pay01 .pay-summary__total-price {
  flex-shrink: 0;
}
.pay01 .pay-summary__btns {
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .pay01 .pay-summary__btns {
    margin-top: 20px;
  }
}
.pay01 .pay-thank {
  position: sticky;
  z-index: 9;
  text-align: center;
  padding: 50px;
  background-color: rgb(241.75, 241.75, 241.75);
}
@media (min-width: 1201px) {
  .pay01 .pay-thank {
    width: 380px;
    top: 200px;
    order: 2;
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-thank {
    padding: 10px;
    margin-bottom: 20px;
  }
  .pay01 .pay-thank br {
    display: none;
  }
}

.login01 {
  padding: 150px 0 90px;
}
@media (max-width: 1200px) {
  .login01 {
    padding: 50px 0 60px;
  }
}
@media (max-width: 640px) {
  .login01 {
    padding: 20px 0 40px;
  }
}
.login01 .container {
  max-width: 1160px;
}
@media (min-width: 1201px) {
  .login01 .container {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) and (min-width: 401px) {
  .login01 .container {
    padding: 0 50px;
  }
}
@media (min-width: 1201px) {
  .login01 .login__quick-pay {
    width: 50%;
    order: 2;
  }
  .login01 .login__quick-register {
    width: 50%;
    order: 4;
  }
  .login01 .login__form {
    width: 50%;
    padding-right: 80px;
    order: 1;
  }
  .login01 .login__form:first-child:last-child {
    width: 445px;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .login01 .login__forgot-pwd {
    width: 50%;
    padding-right: 80px;
    order: 3;
  }
}
@media (max-width: 1200px) {
  .login01 .login__form {
    margin: 50px auto 0;
    max-width: 640px;
  }
  .login01 .login__form:first-child:last-child {
    margin-top: 0;
  }
}
.login01 .register__title {
  font-size: 26px;
  text-align: center;
}
.login01 .register__title-icon {
  margin-right: 5px;
  transform: rotateY(180deg);
}
.login01 .recertification__title,
.login01 .reset-password__title {
  font-size: 20px;
  color: #939598;
}
@media (max-width: 1200px) {
  .login01 .recertification__title,
  .login01 .reset-password__title {
    font-size: 16px;
    text-align: center;
  }
}
.login01 .quick-pay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px;
  border: 1px solid #939598;
  text-align: center;
}
.login01 .quick-pay__title {
  font-size: 26px;
}
@media (max-width: 640px) {
  .login01 .quick-pay__title {
    font-size: 20px;
  }
}
@media (min-width: 641px) {
  .login01 .quick-pay__description {
    max-width: 240px;
    margin-top: 20px;
    line-height: 1.9285714286;
  }
}
@media (max-width: 640px) {
  .login01 .quick-pay__description {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.6666666667;
  }
}
.login01 .quick-pay__btn {
  width: 100%;
  max-width: 280px;
  margin-top: 20px;
}
.login01 .quick-login {
  padding-bottom: 20px;
  border-bottom: 1px solid #939598;
  text-align: center;
}
.login01 .quick-login__title {
  font-size: 26px;
}
.login01 .quick-login__title-icon {
  margin-right: 5px;
  transform: rotateY(180deg);
}
.login01 .quick-login__btns {
  margin-top: 20px;
}
.login01 .quick-login__btns .btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 20px;
}
.login01 .login-form__title {
  display: block;
  width: 100%;
  margin-top: 20px;
}
.login01 .login-form__input {
  width: 100%;
  margin-top: 15px;
  border-color: #939598 !important;
}
.login01 .login-form__checkbox {
  display: inline-block;
  vertical-align: middle;
}
.login01 .login-form__description {
  margin-top: 15px;
  color: #b2b2b2;
}
.login01 .login-form__btn {
  margin-top: 25px;
}
.login01 .login__quick-register,
.login01 .login__forgot-pwd {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 1201px) {
  .login01 .login__forgot-pwd .text-btn--underline {
    text-decoration-color: transparent;
  }
  .login01 .login__forgot-pwd .text-btn--underline:hover {
    text-decoration-color: currentColor;
  }
}

.member01 {
  padding: 40px 0 50px;
}
@media (max-width: 1200px) {
  .member01 {
    padding: 0 0 50px;
  }
}
.member01:first-child:not(:last-child) {
  padding-bottom: 0;
}
.member01:not(:first-child) {
  padding-top: 0;
}
.member01 .member__info-bar {
  display: flex;
  flex-wrap: wrap;
  padding: 45px 0;
}
@media (max-width: 1200px) {
  .member01 .member__info-bar {
    padding: 15px 0;
  }
}
.member01 .member__info-bar .info-bar__base {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1201px) {
  .member01 .member__info-bar .info-bar__base {
    flex: 2;
    padding-right: 15px;
  }
}
@media (max-width: 1200px) {
  .member01 .member__info-bar .info-bar__base {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media (max-width: 640px) {
  .member01 .member__info-bar .info-bar__base {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}
.member01 .member__info-bar .info-bar__base__item {
  width: calc(50% - 15px);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  color: #414042;
}
@media (min-width: 1201px) {
  .member01 .member__info-bar .info-bar__base__item {
    background-color: rgb(241.75, 241.75, 241.75);
  }
}
.member01 .member__info-bar .info-bar__base__item:not(:last-child) {
  position: relative;
}
.member01 .member__info-bar .info-bar__base__item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -15px;
  width: 1px;
  height: 100%;
  background-color: #b2b2b2;
}
.member01 .member__info-bar .info-bar__base__item-icon {
  margin-right: 10px;
  font-size: 50px;
}
@media (max-width: 640px) {
  .member01 .member__info-bar .info-bar__base__item-icon {
    font-size: 40px;
  }
}
.member01 .member__info-bar .info-bar__base__item-text {
  color: #b2b2b2;
}
.member01 .member__info-bar .info-bar__base__item-text .item-text__title {
  display: block;
  color: #414042;
  font-size: 18px;
}
@media (max-width: 640px) {
  .member01 .member__info-bar .info-bar__base__item-text .item-text__title {
    font-size: 16px;
  }
}
.member01 .member__info-bar .info-bar__base__item-text .item-text__price {
  display: block;
  margin-top: 5px;
  color: #e64d4d;
  font-size: 18px;
}
.member01 .member__info-bar .info-bar__base__item-text .item-text__price::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b2b2b2;
  border-right: 1px solid #b2b2b2;
  transform: rotate(45deg);
}
.member01 .member__info-bar .info-bar__news {
  display: flex;
}
@media (min-width: 1201px) {
  .member01 .member__info-bar .info-bar__news {
    flex: 4;
    border-left: 1px solid #b2b2b2;
  }
}
@media (max-width: 1200px) {
  .member01 .member__info-bar .info-bar__news {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .member01 .member__info-bar .info-bar__news {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}
.member01 .member__info-bar .info-bar__news__item, .member01 .member__info-bar .info-bar__news__info {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  font-size: 18px;
  color: #414042;
}
.member01 .member__info-bar .info-bar__news__item::before, .member01 .member__info-bar .info-bar__news__info::before {
  content: "";
  position: absolute;
  bottom: calc(50% - 30px);
  left: 0;
  width: 1px;
  height: 30px;
  background-color: #b2b2b2;
}
.member01 .member__info-bar .info-bar__news__item:first-child::before, .member01 .member__info-bar .info-bar__news__info:first-child::before {
  display: none;
}
@media (min-width: 1201px) {
  .member01 .member__info-bar .info-bar__news__item, .member01 .member__info-bar .info-bar__news__info {
    width: 25%;
    background-color: rgb(241.75, 241.75, 241.75);
  }
}
@media (max-width: 1200px) {
  .member01 .member__info-bar .info-bar__news__item, .member01 .member__info-bar .info-bar__news__info {
    flex: 1;
  }
}
@media (max-width: 480px) {
  .member01 .member__info-bar .info-bar__news__item, .member01 .member__info-bar .info-bar__news__info {
    font-size: 14px;
  }
}
.member01 .member__info-bar .info-bar__news__item-num, .member01 .member__info-bar .info-bar__news__item-icon, .member01 .member__info-bar .info-bar__news__info-num, .member01 .member__info-bar .info-bar__news__info-icon {
  font-size: 26px;
  line-height: 40px;
}
.member01 .member__info-bar .info-bar__news__item-icon[data-num], .member01 .member__info-bar .info-bar__news__info-icon[data-num] {
  position: relative;
}
.member01 .member__info-bar .info-bar__news__item-icon[data-num]::after, .member01 .member__info-bar .info-bar__news__info-icon[data-num]::after {
  content: attr(data-num);
  position: absolute;
  top: -1px;
  right: -12px;
  min-width: 15px;
  height: 15px;
  line-height: 15px;
  padding: 0 3px;
  font-size: 10px;
  color: #ffffff;
  background-color: #e64d4d;
  border-radius: 8px;
  text-align: center;
}
@media (min-width: 1201px) {
  .member01 .member__info-bar .info-bar__news__item::before {
    content: "";
    bottom: 15%;
    height: 70%;
  }
  .member01 .member__info-bar .info-bar__news__item:first-child {
    width: calc(25% - 15px);
    margin-left: auto;
  }
  .member01 .member__info-bar .info-bar__news__item:nth-last-child(2) {
    width: calc(25% - 15px);
    margin-right: auto;
  }
}
@media (min-width: 1201px) {
  .member01 .member__info-bar .info-bar__news__info {
    width: calc(25% - 15px);
    margin-left: auto;
  }
  .member01 .member__info-bar .info-bar__news__info::before {
    content: "";
    bottom: 0;
    left: -15px;
    height: 100%;
  }
}
.member01 .member__info-list {
  margin-top: 15px;
  border: 1px solid rgb(216.25, 216.25, 216.25);
}
.member01 .member__info-list .info-list__box {
  display: flex;
}
.member01 .member__info-list .info-list__box:not(:last-child) {
  border-bottom: 1px solid rgb(216.25, 216.25, 216.25);
}
.member01 .member__info-list .info-list__box__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  padding: 20px;
  background-color: rgb(241.75, 241.75, 241.75);
}
@media (max-width: 960px) {
  .member01 .member__info-list .info-list__box__title {
    width: 160px;
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .member01 .member__info-list .info-list__box__title {
    width: 120px;
  }
}
.member01 .member__info-list .info-list__box__info {
  flex-grow: 1;
  padding: 20px 35px;
}
@media (max-width: 960px) {
  .member01 .member__info-list .info-list__box__info {
    padding: 10px 30px;
  }
}
@media (max-width: 400px) {
  .member01 .member__info-list .info-list__box__info {
    padding: 10px 20px;
  }
}
.member01 .member__info-list .info-list__box__info.btn-box {
  align-items: center;
}
.member01 .member__info-list .info-list__box__info.btn-box .btn {
  font-size: 12px;
  line-height: 16px;
}
.member01 .member__info-list .info-list__box__info .info--highlight {
  color: #e64d4d;
}
.member01 .member__info-list .info-list__box__info .info--down {
  color: #b2b2b2;
}
.member01 .member__info-list .info-list__box__info .input,
.member01 .member__info-list .info-list__box__info .select,
.member01 .member__info-list .info-list__box__info .textarea {
  border-color: rgb(216.25, 216.25, 216.25);
}
@media (max-width: 960px) {
  .member01 .member__info-list .info-list__box__info .input,
  .member01 .member__info-list .info-list__box__info .select,
  .member01 .member__info-list .info-list__box__info .textarea {
    width: 100%;
  }
}
.member01 .member__info-list .info-list__box__info .input,
.member01 .member__info-list .info-list__box__info .select {
  line-height: 30px;
}
.member01 .member__info-list .info-list__box__info-title {
  margin: 0 20px;
}
.member01 .member__info-list .info-list__box__info.adderss-box {
  display: flex;
  gap: 5px 15px;
}
@media (max-width: 960px) {
  .member01 .member__info-list .info-list__box__info.adderss-box {
    flex-direction: column;
  }
}
@media (min-width: 961px) {
  .member01 .member__info-list .info-list__box__info .adderss-box__city, .member01 .member__info-list .info-list__box__info .adderss-box__town, .member01 .member__info-list .info-list__box__info .adderss-box__post-code {
    width: 16%;
  }
  .member01 .member__info-list .info-list__box__info .adderss-box__address {
    flex-grow: 1;
  }
}
.member01 .member__verification-code {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 25px;
  margin-top: 25px;
}
@media (max-width: 640px) {
  .member01 .member__verification-code {
    gap: 5px;
  }
}
.member01 .member__verification-code .verification-code__input {
  width: 300px;
  line-height: 30px;
  border-color: rgb(216.25, 216.25, 216.25);
}
.member01 .member__btns {
  max-width: 400px;
  margin: 40px auto 0;
}
@media (min-width: 1201px) {
  .member01 .member__coupon-list {
    margin-top: 15px;
    border: 1px solid rgb(216.25, 216.25, 216.25);
  }
}
.member01 .member__coupon-list .coupon-list__thead__title, .member01 .member__coupon-list .coupon-list__thead__date, .member01 .member__coupon-list .coupon-list__thead__price, .member01 .member__coupon-list .coupon-list__thead__state, .member01 .member__coupon-list .coupon-list__thead__note, .member01 .member__coupon-list .coupon-list__tbody__title, .member01 .member__coupon-list .coupon-list__tbody__date, .member01 .member__coupon-list .coupon-list__tbody__price, .member01 .member__coupon-list .coupon-list__tbody__state, .member01 .member__coupon-list .coupon-list__tbody__note {
  padding: 0 25px;
}
.member01 .member__coupon-list .coupon-list__thead__title, .member01 .member__coupon-list .coupon-list__thead__date, .member01 .member__coupon-list .coupon-list__tbody__title, .member01 .member__coupon-list .coupon-list__tbody__date {
  width: 18%;
}
.member01 .member__coupon-list .coupon-list__thead__price, .member01 .member__coupon-list .coupon-list__thead__state, .member01 .member__coupon-list .coupon-list__tbody__price, .member01 .member__coupon-list .coupon-list__tbody__state {
  width: 12%;
}
.member01 .member__coupon-list .coupon-list__thead__note, .member01 .member__coupon-list .coupon-list__tbody__note {
  width: 22%;
}
.member01 .member__coupon-list .coupon-list__thead {
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(241.75, 241.75, 241.75);
}
@media (min-width: 1201px) {
  .member01 .member__coupon-list .coupon-list__thead {
    padding: 20px 55px;
  }
}
.member01 .member__coupon-list .coupon-list__tbody:hover {
  background-color: rgba(178, 178, 178, 0.05);
}
@media (min-width: 1201px) {
  .member01 .member__coupon-list .coupon-list__tbody {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 55px;
    color: #939598;
    border-top: 1px solid rgb(216.25, 216.25, 216.25);
  }
}
@media (max-width: 1200px) {
  .member01 .member__coupon-list .coupon-list__tbody {
    border: 1px solid rgb(216.25, 216.25, 216.25);
    margin-top: 50px;
  }
  .member01 .member__coupon-list .coupon-list__tbody__title, .member01 .member__coupon-list .coupon-list__tbody__date, .member01 .member__coupon-list .coupon-list__tbody__price, .member01 .member__coupon-list .coupon-list__tbody__state, .member01 .member__coupon-list .coupon-list__tbody__note {
    display: flex;
    padding: 10px 25px 10px 0;
    width: 100%;
  }
  .member01 .member__coupon-list .coupon-list__tbody__title:not(:first-child), .member01 .member__coupon-list .coupon-list__tbody__date:not(:first-child), .member01 .member__coupon-list .coupon-list__tbody__price:not(:first-child), .member01 .member__coupon-list .coupon-list__tbody__state:not(:first-child), .member01 .member__coupon-list .coupon-list__tbody__note:not(:first-child) {
    border-top: 1px solid rgb(216.25, 216.25, 216.25);
  }
  .member01 .member__coupon-list .coupon-list__tbody__title[data-title], .member01 .member__coupon-list .coupon-list__tbody__date[data-title], .member01 .member__coupon-list .coupon-list__tbody__price[data-title], .member01 .member__coupon-list .coupon-list__tbody__state[data-title], .member01 .member__coupon-list .coupon-list__tbody__note[data-title] {
    position: relative;
    align-items: center;
  }
  .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::after {
    width: 200px;
  }
}
@media (max-width: 1200px) and (max-width: 960px) {
  .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::after {
    width: 160px;
  }
}
@media (max-width: 1200px) and (max-width: 400px) {
  .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::after {
    width: 120px;
  }
}
@media (max-width: 1200px) {
  .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::before, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgb(241.75, 241.75, 241.75);
  }
  .member01 .member__coupon-list .coupon-list__tbody__title[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__date[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__price[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__state[data-title]::after, .member01 .member__coupon-list .coupon-list__tbody__note[data-title]::after {
    content: attr(data-title);
    position: relative;
    order: -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 10px;
    margin-right: 25px;
  }
}
@media (min-width: 1201px) {
  .member01 .member__order-list {
    margin-top: 15px;
    border: 1px solid rgb(216.25, 216.25, 216.25);
  }
}
@media (min-width: 1201px) {
  .member01 .member__order-list .order-list__thead, .member01 .member__order-list .order-list__tbody {
    display: flex;
    padding: 20px;
    gap: 0 20px;
    text-align: center;
  }
  .member01 .member__order-list .order-list__thead__date, .member01 .member__order-list .order-list__thead__no, .member01 .member__order-list .order-list__tbody__date, .member01 .member__order-list .order-list__tbody__no {
    flex-shrink: 0;
    width: 10%;
  }
  .member01 .member__order-list .order-list__thead__price, .member01 .member__order-list .order-list__thead__info, .member01 .member__order-list .order-list__tbody__price, .member01 .member__order-list .order-list__tbody__info {
    flex-shrink: 0;
    width: 7%;
  }
  .member01 .member__order-list .order-list__thead__btns, .member01 .member__order-list .order-list__tbody__btns {
    flex-grow: 1;
  }
}
.member01 .member__order-list .order-list__thead {
  background-color: rgb(241.75, 241.75, 241.75);
}
.member01 .member__order-list .order-list__tbody:hover {
  background-color: rgba(178, 178, 178, 0.05);
}
@media (min-width: 1201px) {
  .member01 .member__order-list .order-list__tbody {
    color: #939598;
    border-top: 1px solid rgb(216.25, 216.25, 216.25);
  }
}
@media (max-width: 1200px) {
  .member01 .member__order-list .order-list__tbody {
    border: 1px solid rgb(216.25, 216.25, 216.25);
    margin-top: 50px;
  }
  .member01 .member__order-list .order-list__tbody__date, .member01 .member__order-list .order-list__tbody__no, .member01 .member__order-list .order-list__tbody__price, .member01 .member__order-list .order-list__tbody__info, .member01 .member__order-list .order-list__tbody__btns {
    padding: 10px 25px 10px 0;
  }
  .member01 .member__order-list .order-list__tbody__date:not(:first-child), .member01 .member__order-list .order-list__tbody__no:not(:first-child), .member01 .member__order-list .order-list__tbody__price:not(:first-child), .member01 .member__order-list .order-list__tbody__info:not(:first-child), .member01 .member__order-list .order-list__tbody__btns:not(:first-child) {
    border-top: 1px solid rgb(216.25, 216.25, 216.25);
  }
  .member01 .member__order-list .order-list__tbody [data-title] {
    position: relative;
    display: flex;
    align-items: center;
  }
  .member01 .member__order-list .order-list__tbody [data-title]::before, .member01 .member__order-list .order-list__tbody [data-title]::after {
    width: 200px;
  }
}
@media (max-width: 1200px) and (max-width: 960px) {
  .member01 .member__order-list .order-list__tbody [data-title]::before, .member01 .member__order-list .order-list__tbody [data-title]::after {
    width: 160px;
  }
}
@media (max-width: 1200px) and (max-width: 400px) {
  .member01 .member__order-list .order-list__tbody [data-title]::before, .member01 .member__order-list .order-list__tbody [data-title]::after {
    width: 120px;
  }
}
@media (max-width: 1200px) {
  .member01 .member__order-list .order-list__tbody [data-title]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgb(241.75, 241.75, 241.75);
  }
  .member01 .member__order-list .order-list__tbody [data-title]::after {
    content: attr(data-title);
    position: relative;
    order: -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 10px;
    margin-right: 25px;
  }
}
.member01 .member__order-list .order-list__tbody__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.member01 .member__order-list .order-list__tbody__btns .text-btn {
  color: #939598;
}
.member01 .member__order-list .order-list__tbody__btns .text-btn:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  margin: 0 6px;
  background-color: #939598;
}
.member01 .member__favorite-list {
  margin-top: 15px;
  border: 1px solid rgb(216.25, 216.25, 216.25);
}
.member01 .member__favorite-list .favorite-list__thead {
  display: flex;
  padding: 20px 0;
  background-color: rgb(241.75, 241.75, 241.75);
}
.member01 .member__favorite-list .favorite-list__thead__title {
  width: 50%;
  padding-left: 80px;
}
.member01 .member__favorite-list .favorite-list__thead__del {
  width: 50%;
  text-align: center;
}
.member01 .member__favorite-list .favorite-list__tbody {
  display: flex;
  color: #939598;
}
.member01 .member__favorite-list .favorite-list__tbody:hover {
  background-color: rgba(178, 178, 178, 0.05);
}
@media (min-width: 1201px) {
  .member01 .member__favorite-list .favorite-list__tbody {
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgb(216.25, 216.25, 216.25);
  }
  .member01 .member__favorite-list .favorite-list__tbody__pic {
    width: 180px;
    padding-left: 80px;
  }
  .member01 .member__favorite-list .favorite-list__tbody__info {
    width: calc(50% - 180px);
    display: flex;
  }
  .member01 .member__favorite-list .favorite-list__tbody__info-title {
    padding-left: 50px;
    padding-right: 20px;
  }
  .member01 .member__favorite-list .favorite-list__tbody__btns {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .member01 .member__favorite-list .favorite-list__tbody {
    gap: 0 20px;
    padding: 10px 20px;
  }
  .member01 .member__favorite-list .favorite-list__tbody:not(:last-child) {
    border-bottom: 1px solid rgb(216.25, 216.25, 216.25);
  }
  .member01 .member__favorite-list .favorite-list__tbody__pic {
    width: 90px;
    align-self: flex-start;
  }
  .member01 .member__favorite-list .favorite-list__tbody__info {
    flex-grow: 1;
    padding-top: 10px;
  }
  .member01 .member__favorite-list .favorite-list__tbody__info-price {
    margin-top: 15px;
  }
  .member01 .member__favorite-list .favorite-list__tbody__btns {
    width: 100px;
  }
  .member01 .member__favorite-list .favorite-list__tbody [data-title]::before {
    content: attr(data-title);
    margin-right: 20px;
  }
}
.member01 .member__favorite-list .favorite-list__tbody__btns {
  display: flex;
}
@media (min-width: 1201px) {
  .member01 .member__favorite-list .favorite-list__tbody__btns {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .member01 .member__favorite-list .favorite-list__tbody__btns {
    flex-direction: column;
    align-items: flex-end;
    padding-top: 20px;
  }
}
.member01 .member__favorite-list .favorite-list__tbody__btns .text-btn {
  font-size: 26px;
  color: #b2b2b2;
}
@media (min-width: 1201px) {
  .member01 .member__inquiry-list {
    margin-top: 15px;
    border: 1px solid rgb(216.25, 216.25, 216.25);
  }
}
@media (min-width: 1201px) {
  .member01 .member__inquiry-list .inquiry-list__thead, .member01 .member__inquiry-list .inquiry-list__tbody {
    display: flex;
    padding: 20px 80px;
    gap: 0 20px;
  }
  .member01 .member__inquiry-list .inquiry-list__thead__date, .member01 .member__inquiry-list .inquiry-list__thead__title, .member01 .member__inquiry-list .inquiry-list__tbody__date, .member01 .member__inquiry-list .inquiry-list__tbody__title {
    width: 15%;
  }
  .member01 .member__inquiry-list .inquiry-list__thead__info, .member01 .member__inquiry-list .inquiry-list__tbody__info {
    width: 70%;
  }
}
.member01 .member__inquiry-list .inquiry-list__thead {
  background-color: rgb(241.75, 241.75, 241.75);
}
.member01 .member__inquiry-list .inquiry-list__tbody:hover {
  background-color: rgba(178, 178, 178, 0.05);
}
@media (min-width: 1201px) {
  .member01 .member__inquiry-list .inquiry-list__tbody {
    color: #939598;
    border-top: 1px solid rgb(216.25, 216.25, 216.25);
  }
}
@media (max-width: 1200px) {
  .member01 .member__inquiry-list .inquiry-list__tbody {
    border: 1px solid rgb(216.25, 216.25, 216.25);
    margin-top: 50px;
  }
  .member01 .member__inquiry-list .inquiry-list__tbody__date, .member01 .member__inquiry-list .inquiry-list__tbody__title, .member01 .member__inquiry-list .inquiry-list__tbody__info {
    padding: 10px 25px 10px 0;
  }
  .member01 .member__inquiry-list .inquiry-list__tbody__date:not(:first-child), .member01 .member__inquiry-list .inquiry-list__tbody__title:not(:first-child), .member01 .member__inquiry-list .inquiry-list__tbody__info:not(:first-child) {
    border-top: 1px solid rgb(216.25, 216.25, 216.25);
  }
  .member01 .member__inquiry-list .inquiry-list__tbody [data-title] {
    position: relative;
    display: flex;
    align-items: center;
  }
  .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::before, .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::after {
    width: 200px;
  }
}
@media (max-width: 1200px) and (max-width: 960px) {
  .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::before, .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::after {
    width: 160px;
  }
}
@media (max-width: 1200px) and (max-width: 400px) {
  .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::before, .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::after {
    width: 120px;
  }
}
@media (max-width: 1200px) {
  .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgb(241.75, 241.75, 241.75);
  }
  .member01 .member__inquiry-list .inquiry-list__tbody [data-title]::after {
    content: attr(data-title);
    position: relative;
    order: -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 10px;
    margin-right: 25px;
  }
}
.member01 .member-terms__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.member01 .member-terms__content {
  margin-top: 30px;
}
.member01 .member-terms__checkbox {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.member01 .member-terms__btns {
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .member01 .class-link {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .member01 .m-class-link {
    display: none !important;
  }
}
.member01 .m-class-link__toggler {
  position: relative;
  padding: 8px 40px 8px 12px;
  font-size: 16px;
  color: #ffffff;
  background-color: #040000;
  cursor: pointer;
}
.member01 .m-class-link__toggler::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.member01 .m-class-link__dropdown {
  display: none;
  border: 1px solid #b2b2b2;
  background-color: #ffffff;
}
.member01 .m-class-link__dropdown-item {
  display: block;
  padding: 5px 12px;
  color: #414042;
}
.member01 .m-class-link__dropdown-item:not(:last-child) {
  border-bottom: 1px solid #b2b2b2;
}
.member01 .m-class-link__dropdown-item.active {
  background-color: #e5e5e5;
}

.topmenu01 {
  margin-bottom: 40px;
}
.topmenu01 ul.pc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .topmenu01 ul.pc {
    display: none;
  }
}
.topmenu01 ul.pc li {
  padding: 0 10px;
}
.topmenu01 ul.pc li a {
  display: block;
  min-width: 120px;
  color: #393939;
  font-size: 16px;
  text-align: center;
  padding: 5px 10px;
  background: #f0f0f0;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}
.topmenu01 ul.pc li a:hover, .topmenu01 ul.pc li a.active {
  color: #fff;
  background: #db9b8f;
  border: 1px solid #db9b8f;
}
.topmenu01 .selector {
  position: relative;
  width: 100%;
  max-width: 450px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: #db9b8f;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .topmenu01 .selector {
    display: none;
  }
}
.topmenu01 .selector::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 15px;
  width: 6px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.topmenu01 .selector::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 11px;
  width: 6px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
.topmenu01 ul.mb {
  display: none;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .topmenu01 ul.mb {
    display: none !important;
  }
}
.topmenu01 ul.mb li:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.topmenu01 ul.mb li a {
  display: block;
  color: #393939;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  background: #f0f0f0;
}

.pagination01 {
  padding: 75px 0;
}
@media (max-width: 1200px) {
  .pagination01 {
    padding: 60px 0 50px;
  }
}
.pagination01 .pagination-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 20px;
}
@media (max-width: 1200px) {
  .pagination01 .pagination-box {
    column-gap: 30px;
  }
}
@media (max-width: 480px) {
  .pagination01 .pagination-box {
    column-gap: 16px;
  }
}
.pagination01 .pagination-box__prev::before {
  content: "< ";
}
.pagination01 .pagination-box__next::after {
  content: " >";
}
.pagination01 .pagination-box__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 10px;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .pagination01 .pagination-box__links {
    width: 100%;
    order: -1;
    padding: 0 0 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #939598;
  }
}
@media (min-width: 1201px) {
  .pagination01 .text-btns .text-btn {
    font-size: 18px;
  }
}
.pagination01 .text-btns .text-btn:not(.active):not(:hover) {
  color: #939598;
}

.not-found01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url(./../img/sample/404.png) no-repeat center;
}
@media (max-width: 960px) {
  .not-found01 {
    background-image: url(./../img/sample/mobile_404.png);
    background-size: cover;
  }
}
.not-found01 .container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.not-found01 .not-found__title {
  font-size: 175px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1200px) {
  .not-found01 .not-found__title {
    font-size: 115px;
  }
}
.not-found01 .not-found__description {
  margin-top: 30px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 1201px) {
  .not-found01 .not-found__description {
    font-size: 18px;
  }
}
.not-found01 .not-found__btn-box {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding: 50px 0;
}
@media (max-width: 1200px) {
  .not-found01 .not-found__btn-box {
    padding: 25px 0;
  }
}
.not-found01 .not-found__btn-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  box-shadow: 4px 4px 7px rgba(4, 0, 0, 0.15);
}
.not-found01 .not-found__btn-box__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1200px) {
  .not-found01 .not-found__btn-box__title {
    font-size: 16px;
  }
}
.not-found01 .not-found__btn-box__btns {
  max-width: 360px;
  margin: 40px auto 0;
}
@media (max-width: 1200px) {
  .not-found01 .not-found__btn-box__btns {
    margin-top: 30px;
  }
}

/* 宜瑾原本的float版 */
.gotop01 {
  position: fixed;
  bottom: 260px;
  right: 35px;
  z-index: 30;
  padding-top: 70px;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 1750px) {
  .gotop01 {
    bottom: 90px;
    right: 15px;
  }
}
@media (max-width: 640px) {
  .gotop01 {
    bottom: 200px;
  }
}
.gotop01.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gotop01:not(.show) {
  transform: translateY(-20px);
}
.gotop01:hover {
  transform: translateY(10px);
}
.gotop01.active {
  color: #939598;
}
.gotop01::before {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 10px);
  width: 10px;
  height: 60px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skewY(-45deg);
}

/* 後來要釘在footer的版本 */
.gotop01_footer {
  position: absolute;
  bottom: 60px;
  right: 15px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  padding-top: 70px;
  cursor: pointer;
  z-index: 30;
  transition: all 0.4s ease;
}
.gotop01_footer::before {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 10px);
  width: 10px;
  height: 60px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skewY(-45deg);
}

.popup01 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popup01.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup01__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4, 0, 0, 0.4);
}
.popup01__box {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 600px;
  background-color: #ffffff;
  display: none;
}
@media (min-width: 1201px) {
  .popup01__box#addto-cart-popup01 {
    max-width: 800px;
  }
}
.popup01__box#addto-cart-check-popup01 {
  max-width: 360px;
}
.popup01__box#addto-cart-check-popup01 .popup-box__title {
  font-size: 20px;
}
@media (min-width: 1201px) {
  .popup01__box#member-join-popup01 {
    max-width: 1200px;
  }
}
.popup01__box#order-tracking-popup01 .popup-box__title {
  font-size: 20px;
}
@media (min-width: 1201px) {
  .popup01__box#service-query-popup01, .popup01__box#return-apply-popup01, .popup01__box#remit-popup01, .popup01__box#order-detail-popup01 {
    max-width: 930px;
  }
}
.popup01__box#return-apply-popup01 .return-process__box {
  display: none;
}
.popup01__box#size-tryon-popup01 .popup-box__content {
  padding: 0;
}
.popup01 .popup-box__close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(4, 0, 0, 0.8);
  cursor: pointer;
}
.popup01 .popup-box__close::before, .popup01 .popup-box__close::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: calc(50% - 30%);
  width: 60%;
  height: 1px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
@media (max-width: 640px) {
  .popup01 .popup-box__close::before, .popup01 .popup-box__close::after {
    left: calc(50% - 26.5%);
    width: 53%;
  }
}
.popup01 .popup-box__close::after {
  transform: rotate(-45deg);
}
@media (max-width: 640px) {
  .popup01 .popup-box__close {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
.popup01 .popup-box__title {
  padding: 40px 40px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #414042;
  text-align: center;
}
@media (max-width: 1200px) {
  .popup01 .popup-box__title {
    padding-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .popup01 .popup-box__title {
    padding: 30px 20px 20px;
  }
}
.popup01 .popup-box__title.title--underline {
  padding-bottom: 15px;
  text-align: left;
}
.popup01 .popup-box__title.title--underline::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background-color: #414042;
  opacity: 0.25;
}
.popup01 .popup-box__content {
  padding: 0 40px 40px;
  max-height: 50vh;
  overflow-y: auto;
}
.popup01 .popup-box__content::-webkit-scrollbar {
  -webkit-appearance: none;
}
.popup01 .popup-box__content::-webkit-scrollbar:vertical {
  width: 5px;
}
.popup01 .popup-box__content::-webkit-scrollbar:horizontal {
  height: 10px;
}
.popup01 .popup-box__content::-webkit-scrollbar-thumb {
  background-color: rgba(147, 149, 152, 0.5);
  border-radius: 3px;
  border: 0;
}
.popup01 .popup-box__content::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #ffffff;
}
@media (max-width: 640px) {
  .popup01 .popup-box__content {
    padding: 0 20px 30px;
  }
}
.popup01 .popup-box--right {
  max-width: 300px;
  height: 100%;
  margin-left: auto;
}
.popup01 .popup-box--right .popup-box__close {
  top: 30px;
  right: 15px;
  height: 20px;
  border-radius: 0;
  background-color: transparent;
}
.popup01 .popup-box--right .popup-box__close::before {
  background-color: #414042;
  transform: rotate(0);
}
.popup01 .popup-box--right .popup-box__close::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popup01 .popup-box--right .popup-box__title {
  padding: 25px 15px;
  font-size: 18px;
  text-align-last: left;
}
.popup01 .popup-box--right .popup-box__title-icon {
  margin-right: 15px;
}
.popup01 .popup-box--right .popup-box__content {
  padding: 0 15px;
  max-height: none;
}
.popup01 .popup-box--primary {
  color: #ffffff;
  background-color: #040000;
}
.popup01 .popup-box--primary .popup-box__title {
  color: #ffffff;
}
.popup01 .popup-box .filter-more__title {
  margin-bottom: 10px;
  font-size: 12px;
  color: #939598;
  text-align: center;
}
.popup01 .popup-box .filter-more__range__bar {
  position: relative;
  width: calc(100% - 70px);
  max-width: 300px;
  height: 5px;
  margin: 30px auto;
  border-radius: 5px;
  border: 0;
  box-shadow: unset;
  background: #e6e7e8;
}
.popup01 .popup-box .filter-more__range__bar::before, .popup01 .popup-box .filter-more__range__bar::after {
  position: absolute;
  top: calc(100% + 10px);
  width: 70px;
  font-size: 12px;
  color: #939598;
  text-align: center;
}
.popup01 .popup-box .filter-more__range__bar::before {
  content: "NT$" attr(data-min);
  left: -35px;
}
.popup01 .popup-box .filter-more__range__bar::after {
  content: "NT$" attr(data-max);
  right: -35px;
}
.popup01 .popup-box .filter-more__range__bar .noUi-handle {
  width: 10px;
  height: 10px;
  right: -5px;
  top: -3px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(4, 0, 0, 0.3);
  cursor: pointer;
}
.popup01 .popup-box .filter-more__range__bar .noUi-handle::before {
  content: attr(data-value);
  position: absolute;
  top: auto;
  bottom: calc(100% + 5px);
  left: calc(50% - 35px);
  width: 70px;
  height: auto;
  font-size: 12px;
  color: #939598;
  text-align: center;
  background: transparent;
}
.popup01 .popup-box .filter-more__range__bar .noUi-handle::after {
  display: none;
}
.popup01 .popup-box .filter-more__range__bar .noUi-connect {
  background: #414042;
}
.popup01 .popup-box .filter-more__size {
  margin-top: 60px;
}
.popup01 .popup-box .filter-more__size__text-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 15px;
  margin-top: 5px;
}
.popup01 .popup-box .filter-more__size__text-btns .text-btn:not(.active) {
  color: #939598;
}
.popup01 .popup-box .filter-more__btns {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 390px;
}
.popup01 .popup-box .filter-order {
  text-align: center;
}
.popup01 .popup-box .filter-order__item {
  display: block;
  color: #939598;
}
.popup01 .popup-box .filter-order__item.active {
  color: #414042;
}
.popup01 .popup-box .filter-order__item:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .popup01 .popup-box .filter-order__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.popup01 .popup-box .addto-cart {
  padding: 0;
  max-height: 70vh;
}
@media (min-width: 1201px) {
  .popup01 .popup-box .addto-cart {
    display: flex;
    max-height: 450px;
  }
}
@media (min-width: 1201px) {
  .popup01 .popup-box .addto-cart__img-box {
    width: 42%;
    position: sticky;
    top: 0;
  }
}
@media (max-width: 1200px) {
  .popup01 .popup-box .addto-cart__img-box {
    display: none;
  }
}
.popup01 .popup-box .addto-cart__img-box__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1201px) {
  .popup01 .popup-box .addto-cart__text-box {
    width: 58%;
    padding: 40px 50px;
    align-self: flex-start;
  }
}
@media (max-width: 1200px) {
  .popup01 .popup-box .addto-cart__text-box {
    padding: 40px;
  }
}
@media (max-width: 640px) {
  .popup01 .popup-box .addto-cart__text-box {
    padding: 30px 20px;
  }
}
.popup01 .popup-box .addto-cart__text-box__class {
  margin-bottom: 8px;
  color: #939598;
}
.popup01 .popup-box .addto-cart__text-box__title {
  font-size: 20px;
  font-weight: 500;
}
.popup01 .popup-box .addto-cart__text-box__price {
  margin-top: 10px;
}
.popup01 .popup-box .addto-cart__text-box__price .price--origin {
  font-size: 12px;
}
.popup01 .popup-box .addto-cart__text-box__price .price--primary {
  font-size: 20px;
}
.popup01 .popup-box .addto-cart__text-box__tag {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 500;
  color: #939598;
}
.popup01 .popup-box .addto-cart__text-box__tag .tag:not(:first-child) {
  margin-top: 10px;
}
.popup01 .popup-box .addto-cart__text-box__colors, .popup01 .popup-box .addto-cart__text-box__type {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.popup01 .popup-box .addto-cart__text-box__selects {
  margin-top: 15px;
}
.popup01 .popup-box .addto-cart__text-box__text-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
  margin-top: 5px;
}
.popup01 .popup-box .addto-cart__text-box__text-btns .addto-favorite:not(.active),
.popup01 .popup-box .addto-cart__text-box__text-btns .remove-favorite:not(.active) {
  display: none;
}
.popup01 .popup-box .addto-cart__text-box__btns {
  margin-top: 20px;
}
.popup01 .popup-box .addto-cart-check__btns {
  flex-direction: column;
  max-width: 230px;
  margin: 0 auto;
}
.popup01 .popup-box .shopping-cart__list {
  min-height: 30vh;
  max-height: calc(100vh - 200px);
  padding-right: 10px;
  margin-right: -10px;
  overflow-y: auto;
}
.popup01 .popup-box .shopping-cart__list::-webkit-scrollbar {
  -webkit-appearance: none;
}
.popup01 .popup-box .shopping-cart__list::-webkit-scrollbar:vertical {
  width: 5px;
}
.popup01 .popup-box .shopping-cart__list::-webkit-scrollbar:horizontal {
  height: 10px;
}
.popup01 .popup-box .shopping-cart__list::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 3px;
  border: 0;
}
.popup01 .popup-box .shopping-cart__list::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #e0e0e0;
}
.popup01 .popup-box .shopping-cart__list-item {
  display: flex;
  align-items: flex-start;
  gap: 5px 12px;
  padding: 8px 0;
}
.popup01 .popup-box .shopping-cart__list-item__pic {
  width: 55px;
  height: 75px;
  flex-shrink: 0;
  object-fit: cover;
}
.popup01 .popup-box .shopping-cart__list-item__text {
  flex-grow: 1;
  font-size: 12px;
}
.popup01 .popup-box .shopping-cart__list-item__text-num {
  margin-top: 10px;
}
.popup01 .popup-box .shopping-cart__list-item__del {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.popup01 .popup-box .shopping-cart__list-item__del::before, .popup01 .popup-box .shopping-cart__list-item__del::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: calc(50% - 50%);
  width: 100%;
  height: 1px;
  background-color: #939598;
  transform: rotate(45deg);
}
.popup01 .popup-box .shopping-cart__list-item__del::after {
  transform: rotate(-45deg);
}
.popup01 .popup-box .shopping-cart__price {
  display: flex;
  flex: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding-bottom: 15px;
  margin-top: 10px;
  border-bottom: 1px solid #939598;
  font-size: 18px;
}
.popup01 .popup-box .shopping-cart__price-total {
  font-size: 14px;
}
.popup01 .popup-box .shopping-cart__btns {
  margin-top: 15px;
}
.popup01 .popup-box .terms-content {
  border: 1px solid rgba(65, 64, 66, 0.25);
  max-height: 30vh;
  padding: 15px 40px 15px 15px;
  line-height: 2.1428571429;
  overflow-y: auto;
}
.popup01 .popup-box .terms-content::-webkit-scrollbar {
  -webkit-appearance: none;
}
.popup01 .popup-box .terms-content::-webkit-scrollbar:vertical {
  width: 5px;
}
.popup01 .popup-box .terms-content::-webkit-scrollbar:horizontal {
  height: 10px;
}
.popup01 .popup-box .terms-content::-webkit-scrollbar-thumb {
  background-color: rgba(147, 149, 152, 0.5);
  border-radius: 3px;
  border: 0;
}
.popup01 .popup-box .terms-content::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #ffffff;
}
.popup01 .popup-box .terms-checkbox {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.popup01 .popup-box .terms-checkbox .checkbox {
  flex-shrink: 0;
}
.popup01 .popup-box .terms-btns {
  max-width: 250px;
  margin: 10px auto 0;
}
.popup01 .popup-box .process-list {
  display: flex;
}
.popup01 .popup-box .process-list__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
  text-align: center;
}
@media (max-width: 640px) {
  .popup01 .popup-box .process-list__item {
    gap: 10px 0;
  }
}
.popup01 .popup-box .process-list__item__pic {
  padding: 0 15px;
}
.popup01 .popup-box .process-list__item__description {
  position: relative;
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 640px) {
  .popup01 .popup-box .process-list__item__description {
    padding-top: 25px;
  }
}
.popup01 .popup-box .process-list__item__description::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background-color: #939598;
  box-shadow: 0 0 0 1px #939598;
}
@media (max-width: 640px) {
  .popup01 .popup-box .process-list__item__description::after {
    left: calc(50% - 9px);
    width: 18px;
    height: 18px;
  }
}
.popup01 .popup-box .process-list__item__description::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #939598;
}
@media (max-width: 640px) {
  .popup01 .popup-box .process-list__item__description::before {
    top: 9px;
  }
}
.popup01 .popup-box .process-list__item__description .description--highlight {
  color: #e64d4d;
}
.popup01 .popup-box .process-list__item:first-child .process-list__item__description::before {
  left: 50%;
  width: 50%;
}
.popup01 .popup-box .process-list__item:last-child .process-list__item__description::before {
  width: 50%;
}
.popup01 .popup-box .process-description {
  margin-top: 35px;
}
@media (min-width: 1201px) {
  .popup01 .popup-box .process-description {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .popup01 .popup-box .process-description {
    margin-top: 20px;
  }
}
.popup01 .popup-box .process-btns {
  max-width: 250px;
  margin: 40px auto 0;
}
@media (max-width: 640px) {
  .popup01 .popup-box .process-btns {
    margin-top: 20px;
  }
}
.popup01 .popup-box .order-tracking__input {
  width: 100%;
  margin-bottom: 25px;
  border-color: rgba(65, 64, 66, 0.25);
}
.popup01 .popup-box .order-tracking__btns {
  max-width: 250px;
  margin: 25px auto 0;
}
@media (max-width: 640px) {
  .popup01 .popup-box .order-tracking__btns {
    margin-top: 0;
  }
}
.popup01 .popup-box .query-form {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgb(216.25, 216.25, 216.25);
}
@media (min-width: 1201px) {
  .popup01 .popup-box .query-form:has(.box--half:last-child) .box--half:nth-last-child(2) {
    border-bottom: 0;
  }
}
.popup01 .popup-box .query-form__box {
  display: flex;
  width: 100%;
}
.popup01 .popup-box .query-form__box:not(:last-child) {
  border-bottom: 1px solid rgb(216.25, 216.25, 216.25);
}
@media (min-width: 1201px) {
  .popup01 .popup-box .query-form__box.box--half {
    width: 50%;
  }
}
.popup01 .popup-box .query-form__box__title {
  width: 120px;
  flex-shrink: 0;
  padding: 20px;
  text-align: center;
  background-color: rgb(241.75, 241.75, 241.75);
}
@media (max-width: 640px) {
  .popup01 .popup-box .query-form__box__title {
    width: 80px;
    padding: 15px 10px;
  }
}
.popup01 .popup-box .query-form__box__content {
  padding: 20px;
  flex-grow: 1;
}
@media (max-width: 640px) {
  .popup01 .popup-box .query-form__box__content {
    padding: 15px 10px;
  }
}
.popup01 .popup-box .query-form__box__content .input,
.popup01 .popup-box .query-form__box__content .select,
.popup01 .popup-box .query-form__box__content .textarea {
  width: 100%;
  border-color: rgba(65, 64, 66, 0.25);
}
.popup01 .popup-box .query-form__box__content .textarea {
  height: 150px;
}
.popup01 .popup-box .query-form__box__content .content--highlight {
  color: #e64d4d;
}
.popup01 .popup-box .query-btns {
  max-width: 250px;
  margin: 25px auto 0;
}
.popup01 .popup-box .apply-list {
  margin-top: 40px;
  border: 1px solid rgb(216.25, 216.25, 216.25);
}
.popup01 .popup-box .apply-list__thead, .popup01 .popup-box .apply-list__tbody {
  display: flex;
  gap: 0 20px;
  padding: 20px;
}
@media (max-width: 1200px) {
  .popup01 .popup-box .apply-list__thead, .popup01 .popup-box .apply-list__tbody {
    gap: 0;
  }
}
@media (max-width: 640px) {
  .popup01 .popup-box .apply-list__thead, .popup01 .popup-box .apply-list__tbody {
    padding: 15px 20px;
  }
}
.popup01 .popup-box .apply-list__thead__title, .popup01 .popup-box .apply-list__tbody__title {
  flex-grow: 1;
}
.popup01 .popup-box .apply-list__thead__note, .popup01 .popup-box .apply-list__tbody__note {
  flex-shrink: 0;
  width: 45%;
}
.popup01 .popup-box .apply-list__thead {
  background-color: rgb(241.75, 241.75, 241.75);
}
@media (max-width: 1200px) {
  .popup01 .popup-box .apply-list__tbody {
    flex-wrap: wrap;
  }
}
.popup01 .popup-box .apply-list__tbody:not(:last-child) {
  border-bottom: 1px solid rgb(216.25, 216.25, 216.25);
}
@media (max-width: 1200px) {
  .popup01 .popup-box .apply-list__tbody__note {
    width: 100%;
  }
  .popup01 .popup-box .apply-list__tbody__note[data-title]::before {
    content: attr(data-title) ":";
    display: block;
    margin-bottom: 5px;
  }
}
.popup01 .popup-box .apply-list__tbody .textarea {
  width: 100%;
  height: 120px;
  border-color: rgb(216.25, 216.25, 216.25);
}
.popup01 .popup-box .apply-checkbox {
  display: flex;
  gap: 0 15px;
  margin-top: 20px;
}
@media (min-width: 1201px) {
  .popup01 .popup-box .apply-checkbox {
    padding-left: 40px;
  }
}
.popup01 .popup-box .apply-checkbox .checkbox {
  flex-shrink: 0;
}
.popup01 .popup-box .apply-checkbox__description .description--highlight {
  color: #e64d4d;
}
.popup01 .popup-box .apply-btns {
  margin-top: 30px;
}
@media (min-width: 641px) {
  .popup01 .popup-box .apply-btns {
    padding-left: 100px;
  }
}
@media (max-width: 640px) {
  .popup01 .popup-box .apply-btns {
    flex-direction: column;
    align-items: center;
  }
}
.popup01 .popup-box .apply-btns .btn {
  width: 250px;
  max-width: 100%;
}
@media (min-width: 641px) {
  .popup01 .popup-box .apply-btns .btn {
    margin-left: auto;
  }
}
@media (min-width: 641px) {
  .popup01 .popup-box .apply-btns .text-btn {
    margin-left: auto;
  }
}
.popup01 .popup-box .remit-content {
  border: 1px solid rgba(65, 64, 66, 0.25);
  max-height: 30vh;
  padding: 15px 40px 15px 15px;
  line-height: 2.1428571429;
  overflow-y: auto;
}
.popup01 .popup-box .remit-content::-webkit-scrollbar {
  -webkit-appearance: none;
}
.popup01 .popup-box .remit-content::-webkit-scrollbar:vertical {
  width: 5px;
}
.popup01 .popup-box .remit-content::-webkit-scrollbar:horizontal {
  height: 10px;
}
.popup01 .popup-box .remit-content::-webkit-scrollbar-thumb {
  background-color: rgba(147, 149, 152, 0.5);
  border-radius: 3px;
  border: 0;
}
.popup01 .popup-box .remit-content::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #ffffff;
}
.popup01 .popup-box .remit-checkbox {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.popup01 .popup-box .remit-checkbox .checkbox {
  flex-shrink: 0;
}
.popup01 .popup-box .remit-btns {
  max-width: 520px;
  margin: 20px auto 0;
}
.popup01 .popup-box .order-detail__title {
  position: sticky;
  top: 0;
  z-index: 9;
  padding: 20px 0;
  background-color: #ffffff;
}
.popup01 .popup-box .order-detail__title:not(:first-child) {
  margin-top: 25px;
}
.popup01 .popup-box .order-detail__list {
  border: 1px solid rgb(216.25, 216.25, 216.25);
}
.popup01 .popup-box .order-detail__list__thead, .popup01 .popup-box .order-detail__list__tbody, .popup01 .popup-box .order-detail__list__tfoot {
  display: flex;
  padding: 20px;
}
@media (min-width: 1201px) {
  .popup01 .popup-box .order-detail__list__thead, .popup01 .popup-box .order-detail__list__tbody, .popup01 .popup-box .order-detail__list__tfoot {
    gap: 0 20px;
  }
}
@media (max-width: 640px) {
  .popup01 .popup-box .order-detail__list__thead, .popup01 .popup-box .order-detail__list__tbody, .popup01 .popup-box .order-detail__list__tfoot {
    padding: 15px 20px;
  }
}
.popup01 .popup-box .order-detail__list__thead__title, .popup01 .popup-box .order-detail__list__tbody__title, .popup01 .popup-box .order-detail__list__tfoot__title {
  flex-grow: 1;
}
.popup01 .popup-box .order-detail__list__thead__spec, .popup01 .popup-box .order-detail__list__thead__num, .popup01 .popup-box .order-detail__list__thead__price, .popup01 .popup-box .order-detail__list__thead__subtotal, .popup01 .popup-box .order-detail__list__tbody__spec, .popup01 .popup-box .order-detail__list__tbody__num, .popup01 .popup-box .order-detail__list__tbody__price, .popup01 .popup-box .order-detail__list__tbody__subtotal, .popup01 .popup-box .order-detail__list__tfoot__spec, .popup01 .popup-box .order-detail__list__tfoot__num, .popup01 .popup-box .order-detail__list__tfoot__price, .popup01 .popup-box .order-detail__list__tfoot__subtotal {
  flex-shrink: 0;
  width: 12%;
}
@media (min-width: 1201px) {
  .popup01 .popup-box .order-detail__list__thead__spec, .popup01 .popup-box .order-detail__list__thead__num, .popup01 .popup-box .order-detail__list__thead__price, .popup01 .popup-box .order-detail__list__thead__subtotal, .popup01 .popup-box .order-detail__list__tbody__spec, .popup01 .popup-box .order-detail__list__tbody__num, .popup01 .popup-box .order-detail__list__tbody__price, .popup01 .popup-box .order-detail__list__tbody__subtotal, .popup01 .popup-box .order-detail__list__tfoot__spec, .popup01 .popup-box .order-detail__list__tfoot__num, .popup01 .popup-box .order-detail__list__tfoot__price, .popup01 .popup-box .order-detail__list__tfoot__subtotal {
    text-align: center;
  }
}
.popup01 .popup-box .order-detail__list__thead {
  background-color: rgb(241.75, 241.75, 241.75);
}
@media (max-width: 1200px) {
  .popup01 .popup-box .order-detail__list__tbody {
    flex-wrap: wrap;
  }
}
.popup01 .popup-box .order-detail__list__tbody:not(:last-child) {
  border-bottom: 1px solid rgb(216.25, 216.25, 216.25);
}
.popup01 .popup-box .order-detail__list__tbody__title {
  width: 100%;
}
@media (max-width: 1200px) {
  .popup01 .popup-box .order-detail__list__tbody__spec, .popup01 .popup-box .order-detail__list__tbody__num, .popup01 .popup-box .order-detail__list__tbody__price, .popup01 .popup-box .order-detail__list__tbody__subtotal {
    width: auto;
  }
  .popup01 .popup-box .order-detail__list__tbody__spec[data-title]::before, .popup01 .popup-box .order-detail__list__tbody__num[data-title]::before, .popup01 .popup-box .order-detail__list__tbody__price[data-title]::before, .popup01 .popup-box .order-detail__list__tbody__subtotal[data-title]::before {
    content: attr(data-title) ":";
  }
  .popup01 .popup-box .order-detail__list__tbody__spec:not(:last-child)::after, .popup01 .popup-box .order-detail__list__tbody__num:not(:last-child)::after, .popup01 .popup-box .order-detail__list__tbody__price:not(:last-child)::after, .popup01 .popup-box .order-detail__list__tbody__subtotal:not(:last-child)::after {
    content: "、";
  }
}
.popup01 .popup-box .order-detail__list__tfoot {
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.popup01 .popup-box .order-detail__list__tfoot__title, .popup01 .popup-box .order-detail__list__tfoot__price {
  padding-top: 15px;
  padding-bottom: 15px;
}
.popup01 .popup-box .order-detail__list__tfoot__title:not(:last-child):not(:nth-last-child(2)), .popup01 .popup-box .order-detail__list__tfoot__price:not(:last-child):not(:nth-last-child(2)) {
  border-bottom: 1px solid rgb(216.25, 216.25, 216.25);
}
@media (max-width: 1200px) {
  .popup01 .popup-box .order-detail__list__tfoot__title, .popup01 .popup-box .order-detail__list__tfoot__price {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.popup01 .popup-box .order-detail__list__tfoot__title {
  width: calc(100% - (12% + 40px));
}
@media (min-width: 1201px) {
  .popup01 .popup-box .order-detail__list__tfoot__title {
    text-align: right;
  }
}
@media (max-width: 1200px) {
  .popup01 .popup-box .order-detail__list__tfoot__title {
    width: 120px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    background-color: rgb(241.75, 241.75, 241.75);
  }
}
@media (max-width: 640px) {
  .popup01 .popup-box .order-detail__list__tfoot__title {
    flex-grow: unset;
    width: 80px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.popup01 .popup-box .order-detail__list__tfoot__price {
  width: calc(12% + 40px);
  padding-left: 20px;
  padding-right: 20px;
  color: #939598;
}
@media (max-width: 1200px) {
  .popup01 .popup-box .order-detail__list__tfoot__price {
    width: calc(100% - 120px);
    flex-grow: 1;
  }
}

.index_popup01 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 150;
  transition: all 0.3s;
}
.index_popup01 .close_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.index_popup01 .popup_content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  padding: 10px;
  background: #fff;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 40px));
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.index_popup01 .popup_content .close_btn {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .index_popup01 .popup_content .close_btn {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
.index_popup01 .popup_content .close_btn::before, .index_popup01 .popup_content .close_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .index_popup01 .popup_content .close_btn::before, .index_popup01 .popup_content .close_btn::after {
    width: 15px;
  }
}
.index_popup01 .popup_content .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.index_popup01 .popup_content .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.index_popup01 .popup_content .editor {
  max-height: calc(100vh - 60px);
  overflow: auto;
}
.index_popup01.show {
  opacity: 1;
  pointer-events: auto;
}
.index_popup01.show .popup_content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.mobile_menu01 {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: 100%;
  height: 100vh;
  display: flex;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile_menu01.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile_menu01:not(.active) {
  transform: translateX(350px);
}
.mobile_menu01 .container {
  flex-shrink: 0;
  width: calc(100% - 60px);
  max-width: 280px;
  height: 100vh;
  padding: 0;
  margin: 0 0 0 auto;
  background-color: #ffffff;
  box-shadow: -7px 0 5px rgba(4, 0, 0, 0.15);
  overflow-y: auto;
}
.mobile_menu01 .container::-webkit-scrollbar {
  -webkit-appearance: none;
}
.mobile_menu01 .container::-webkit-scrollbar:vertical {
  width: 5px;
}
.mobile_menu01 .container::-webkit-scrollbar:horizontal {
  height: 10px;
}
.mobile_menu01 .container::-webkit-scrollbar-thumb {
  background-color: rgba(65, 64, 66, 0.5);
  border-radius: 3px;
  border: 0;
}
.mobile_menu01 .container::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #ffffff;
}
.mobile_menu01 .mobile-menu__close {
  order: -1;
  flex-grow: 1;
}
.mobile_menu01 .mobile-menu__logo {
  width: 80px;
  margin: 15px auto 0;
}
.mobile_menu01 .mobile-menu__btns {
  margin-top: 15px;
  padding: 0 18px;
  column-gap: 15px;
}
.mobile_menu01 .mobile-menu__btns .btn {
  font-size: 12px;
  line-height: 18px;
}
.mobile_menu01 .mobile-menu__text-btns {
  display: flex;
  margin-top: 25px;
}
.mobile_menu01 .mobile-menu__text-btns .text-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  flex: 1;
}
.mobile_menu01 .mobile-menu__text-btns .text-btn:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  height: 25px;
  background-color: rgba(65, 64, 66, 0.25);
}
.mobile_menu01 .mobile-menu__text-btns .text-btn__icon {
  font-size: 20px;
}
.mobile_menu01 .mobile-menu__nav {
  margin-top: 30px;
  padding-bottom: 30px;
}
.mobile_menu01 .mobile-menu__nav__title {
  padding: 0 20px;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}
.mobile_menu01 .mobile-menu__nav__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 15px auto 0;
  background-color: rgba(65, 64, 66, 0.15);
}
.mobile_menu01 .mobile-menu__nav__link {
  display: block;
  width: 100%;
  padding: 5px 22px;
  margin-top: 10px;
  font-size: 16px;
  color: #414042;
  text-align: left;
}
.mobile_menu01 .mobile-menu__nav__link.dropdown {
  display: flex;
  align-items: center;
}
.mobile_menu01 .mobile-menu__nav__link.dropdown::after {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(65, 64, 66, 0.5);
  border-left: 1px solid rgba(65, 64, 66, 0.5);
  margin-left: auto;
  transform-origin: center;
  transform: rotate(-135deg);
}
.mobile_menu01 .mobile-menu__nav__link.dropdown.active {
  background-color: rgb(246.85, 246.85, 246.85);
}
.mobile_menu01 .mobile-menu__nav__link.dropdown.active::after {
  top: 2px;
  transform: rotate(45deg);
}
.mobile_menu01 .mobile-menu__nav__dropdown {
  display: none;
  background-color: rgb(234.1, 234.1, 234.1);
}
.mobile_menu01 .mobile-menu__nav__dropdown__link {
  display: block;
  padding: 15px 22px;
  font-size: 16px;
  color: #414042;
}
.mobile_menu01 .mobile-menu__close-btn {
  position: relative;
  width: 70px;
  margin: 20px 0 0 auto;
  padding-top: 25px;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.mobile_menu01 .mobile-menu__close-btn::before, .mobile_menu01 .mobile-menu__close-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 15px);
  width: 30px;
  height: 1px;
  background-color: currentColor;
  transform-origin: center;
  transform: rotate(40deg);
  opacity: 0.8;
}
.mobile_menu01 .mobile-menu__close-btn::after {
  transform: rotate(-40deg);
}

.quick-link01 {
  position: sticky;
  bottom: 0;
  z-index: 90;
  border-top: 1px solid rgba(65, 64, 66, 0.25);
  background-color: #ffffff;
}
.quick-link01 .quick-link__box {
  display: flex;
  height: 50px;
  padding: 0;
}
.quick-link01 .quick-link__box .text-btn {
  position: relative;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
.quick-link01 .quick-link__box .text-btn:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px);
  background-color: rgba(65, 64, 66, 0.25);
}
.quick-link01 .quick-link__box .text-btn__icon {
  font-size: 18px;
}

.button01 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background: #db9b8f;
  border: 1px solid #db9b8f;
  cursor: pointer;
  width: 180px;
  height: 45px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .button01 {
    width: 160px;
    height: 40px;
  }
}
.button01.arrowtype {
  width: 45px;
}
@media (max-width: 1200px) {
  .button01.arrowtype {
    width: 40px;
  }
}
.button01 span {
  font-size: 14px;
}
@media (max-width: 1200px) {
  .button01 span {
    font-size: 13px;
  }
}
.button01.center {
  margin: 0 auto;
}
.button01.arrowtype {
  padding: 0;
}
.button01 span {
  color: #fff;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s;
}
.button01 svg {
  width: auto;
  height: 10px;
  fill: #fff;
  transition: all 0.3s;
}
.button01:not(.arrowtype) svg {
  margin: 0 0 0 32px;
}
@media (max-width: 1200px) {
  .button01:not(.arrowtype) svg {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 400px) {
  .button01:not(.arrowtype) svg {
    margin: 0 0 0 10px;
  }
}
.button01.mirror {
  flex-direction: row-reverse;
}
.button01.mirror svg {
  transform: scale(-1, 1);
}
.button01.mirror:not(.arrowtype) svg {
  margin: 0 32px 0 0;
}
@media (max-width: 1200px) {
  .button01.mirror:not(.arrowtype) svg {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 400px) {
  .button01.mirror:not(.arrowtype) svg {
    margin: 0 10px 0 0;
  }
}
.button01:hover, .button01.active {
  background: #fff;
}
.button01:hover span, .button01.active span {
  color: #db9b8f;
}
.button01:hover svg, .button01.active svg {
  fill: #db9b8f;
}
.button01.white {
  background: transparent;
  border: 1px solid #fff;
}
@media (max-width: 1024px) {
  .button01.white {
    background: #fff;
  }
  .button01.white span {
    color: #db9b8f;
  }
  .button01.white svg {
    fill: #db9b8f;
  }
}
.button01.white:hover, .button01.white.active {
  background: #fff;
}
.button01.white:hover span, .button01.white.active span {
  color: #db9b8f;
}
.button01.white:hover svg, .button01.white.active svg {
  fill: #db9b8f;
}

.cb_module {
  font-family: "Microsoft JhengHei", sans-serif;
  transition: all 0.3s, opacity 1s ease-out, transform 1s ease-out;
}
.cb_module.cb_margin_bottom {
  margin: 0 0 95px;
}
@media (max-width: 1440px) {
  .cb_module.cb_margin_bottom {
    margin: 0 0 70px;
  }
}
@media (max-width: 960px) {
  .cb_module.cb_margin_bottom {
    margin: 0 0 50px;
  }
}
@media (max-width: 480px) {
  .cb_module.cb_margin_bottom {
    margin: 0 0 40px;
  }
}
.cb_module * {
  font-family: inherit;
  box-sizing: border-box;
}
.cb_module p {
  line-height: 1.8;
  margin: 0;
}
.cb_module img {
  display: block;
  height: auto !important;
}
.cb_module .cb_title h2 {
  font-size: calc(1.125rem + 0.72917vw);
  font-weight: 500;
  font-family: "Microsoft JhengHei", sans-serif;
  margin: 0;
  transition: all 0.3s;
}
@media (max-width: 823px) {
  .cb_module .cb_title h2 {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .cb_module .cb_title h2 {
    font-size: 21px;
  }
}
.cb_module .cb_title h3 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin: 0;
  transition: all 0.3s;
}
@media (max-width: 823px) {
  .cb_module .cb_title h3 {
    font-size: 17px;
  }
}
@media (max-width: 640px) {
  .cb_module .cb_title h3 {
    font-size: 16px;
  }
}

.cb_text02 .comma_box {
  position: relative;
  padding: 50px;
  background: #F6F8F8;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cb_text02 .comma_box {
    padding: 40px;
  }
}
.cb_text02 .comma_box::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: -20px;
  color: #db9b8f;
  font-size: 62px;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cb_text02 .comma_box::before {
    top: 10px;
    left: -25px;
  }
}
.cb_text02 .comma_box::after {
  content: "”";
  position: absolute;
  bottom: -20px;
  right: -20px;
  color: #db9b8f;
  font-size: 62px;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cb_text02 .comma_box::after {
    bottom: -25px;
    right: -25px;
  }
}

.cb_text03 blockquote {
  padding: 10px 20px;
  margin: 0;
  border-left: 5px solid #db9b8f;
}
.cb_text03 blockquote p {
  font-weight: 500;
}

.cb_text04 .frame_box {
  padding: 0 7.5px;
}
.cb_text04 .frame_box > div {
  position: relative;
  padding: 40px 16px;
  margin-top: 15.5px;
  border: 1px solid #b9b9b9;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cb_text04 .frame_box > div {
    padding: 30px 16px;
  }
}
.cb_text04 .frame_box > div .frame_name {
  position: absolute;
  top: 0;
  left: 50%;
  width: max-content;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 12px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cb_photo01 {
  width: 100%;
}
.cb_photo01 img {
  width: 100%;
}

.cb_photo02 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.cb_photo02 .cb_wrap > div:nth-child(1) {
  width: calc(50% + 65px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_photo02 .cb_wrap > div:nth-child(1) {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
}
.cb_photo02 .cb_wrap > div:nth-child(1) img {
  width: 100%;
}
.cb_photo02 .cb_wrap > div:nth-child(2) {
  width: calc(50% - 65px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_photo02 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }
}

.cb_photo03 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .cb_photo03 .cb_wrap {
    flex-direction: column-reverse;
  }
}
.cb_photo03 .cb_wrap > div:nth-child(1) {
  width: calc(50% - 65px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_photo03 .cb_wrap > div:nth-child(1) {
    width: 100%;
    padding-right: 0;
  }
}
.cb_photo03 .cb_wrap > div:nth-child(2) {
  width: calc(50% + 65px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_photo03 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
    margin-bottom: 35px;
  }
}
.cb_photo03 .cb_wrap > div:nth-child(2) img {
  width: 100%;
}

.cb_photo04 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_photo04 .cb_wrap > div {
  width: 50%;
}
@media (max-width: 960px) {
  .cb_photo04 .cb_wrap > div {
    width: 100%;
  }
}
.cb_photo04 .cb_wrap > div:nth-child(1) img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo04 .cb_wrap > div:nth-child(2) {
  padding: 3.5% 10% 3.5% 5%;
  transition: all 0.3s;
}
@media (max-width: 1366px) {
  .cb_photo04 .cb_wrap > div:nth-child(2) {
    padding: 3.5% 5%;
  }
}

.cb_photo05 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .cb_photo05 .cb_wrap {
    flex-direction: column-reverse;
  }
}
.cb_photo05 .cb_wrap > div {
  width: 50%;
}
@media (max-width: 960px) {
  .cb_photo05 .cb_wrap > div {
    width: 100%;
  }
}
.cb_photo05 .cb_wrap > div:nth-child(1) {
  padding: 3.5% 5% 3.5% 10%;
  transition: all 0.3s;
}
@media (max-width: 1366px) {
  .cb_photo05 .cb_wrap > div:nth-child(1) {
    padding: 3.5% 5%;
  }
}
.cb_photo05 .cb_wrap > div:nth-child(2) img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_photo06 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo06 .cb_wrap {
    padding: 10% 30px;
  }
}
.cb_photo06 .cb_wrap > div {
  width: 100%;
  max-width: 780px;
}

.cb_photo07 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo07 .cb_wrap {
    padding: 10% 30px;
  }
}
.cb_photo07 .cb_wrap > div {
  width: 100%;
  max-width: calc(100% - 10.416vw);
  transition: all 0.3s;
}
@media (max-width: 840px) {
  .cb_photo07 .cb_wrap > div {
    max-width: 100%;
  }
}
.cb_photo07 .cb_wrap > div > div {
  width: 100%;
  max-width: 545px;
}

.cb_photo08 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo08 .cb_wrap {
    padding: 10% 30px;
  }
}
.cb_photo08 .cb_wrap > div {
  width: 100%;
  max-width: calc(100% - 10.416vw);
  transition: all 0.3s;
}
@media (max-width: 840px) {
  .cb_photo08 .cb_wrap > div {
    max-width: 100%;
  }
}
.cb_photo08 .cb_wrap > div > div {
  width: 100%;
  max-width: 545px;
  margin: 0 0 0 auto;
}

.cb_photo09 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo09 .cb_wrap {
    padding: 10% 30px;
  }
}
.cb_photo09 .cb_wrap > div {
  width: 100%;
  max-width: 900px;
  padding: 3.125vw;
}

.cb_photo10 .cb_wrap {
  display: flex;
}
.cb_photo10 .cb_wrap .cb_marquee {
  position: relative;
  width: 17.34%;
  overflow: hidden;
}
@media (max-width: 840px) {
  .cb_photo10 .cb_wrap .cb_marquee {
    display: none;
  }
}
.cb_photo10 .cb_wrap .cb_marquee p {
  position: absolute;
  top: 100%;
  left: 50%;
  color: transparent;
  font-size: calc(3.64583vw + 3rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  white-space: nowrap;
  transform: translate(-50%, 0%);
  animation: cb_marquee 15s linear infinite;
}
@keyframes cb_marquee {
  0% {
    top: 100%;
    transform: translate(-50%, 0%);
  }
  100% {
    top: 0%;
    transform: translate(-50%, -100%);
  }
}
.cb_photo10 .cb_wrap .cb_marquee p:hover {
  animation-play-state: paused;
}
.cb_photo10 .cb_wrap .cb_content {
  display: flex;
  flex-wrap: wrap;
  width: 82.66%;
  padding: 40px 0 40px 40px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .cb_photo10 .cb_wrap .cb_content {
    padding: 20px 0 20px 20px;
  }
}
@media (max-width: 840px) {
  .cb_photo10 .cb_wrap .cb_content {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .cb_photo10 .cb_wrap .cb_content {
    padding: 20px;
  }
}
.cb_photo10 .cb_wrap .cb_content > div:nth-child(1) {
  width: 36.917%;
}
@media (max-width: 720px) {
  .cb_photo10 .cb_wrap .cb_content > div:nth-child(1) {
    width: 100%;
  }
}
.cb_photo10 .cb_wrap .cb_content > div:nth-child(1) img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo10 .cb_wrap .cb_content > div:nth-child(2) {
  display: flex;
  align-items: center;
  width: 63.083%;
  padding: 5.2083vw;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_photo10 .cb_wrap .cb_content > div:nth-child(2) {
    padding: 3vw;
  }
}
@media (max-width: 720px) {
  .cb_photo10 .cb_wrap .cb_content > div:nth-child(2) {
    width: 100%;
  }
}
.cb_photo10 .cb_wrap .cb_content > div:nth-child(2) > div {
  width: 100%;
  max-width: 572px;
}

.cb_photo11 {
  background: linear-gradient(to bottom, transparent 0%, transparent 246px, #c7c7c7 246px, #c7c7c7 100%);
}
@media (max-width: 1300px) {
  .cb_photo11 {
    background: #c7c7c7;
  }
}
.cb_photo11 .cb_content {
  width: calc(100% - 60px);
  max-width: 1300px;
  margin: 0 auto;
  transition: all 0.3s;
}
@media (max-width: 1366px) {
  .cb_photo11 .cb_content {
    width: 100%;
  }
}
.cb_photo11 .cb_content > div:nth-child(1) img {
  width: 100%;
}
.cb_photo11 .cb_content > div:nth-child(2) {
  padding: 40px 15px 60px;
}

.cb_photo12 .cb_wrap {
  position: relative;
  padding: 3.90625vw 0;
}
@media (max-width: 840px) {
  .cb_photo12 .cb_wrap {
    padding: 0;
  }
}
.cb_photo12 .cb_wrap .bg_color {
  position: absolute;
  top: 0;
  right: 0;
  width: 86.98%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 840px) {
  .cb_photo12 .cb_wrap .bg_color {
    width: 100%;
  }
}
.cb_photo12 .cb_wrap .cb_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cb_photo12 .cb_wrap .cb_content > div:nth-child(1) {
  width: 43.75%;
}
@media (max-width: 840px) {
  .cb_photo12 .cb_wrap .cb_content > div:nth-child(1) {
    width: 100%;
  }
}
.cb_photo12 .cb_wrap .cb_content > div:nth-child(1) div {
  position: relative;
  height: 0;
  padding-bottom: 71.43%;
  overflow: hidden;
}
.cb_photo12 .cb_wrap .cb_content > div:nth-child(1) div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo12 .cb_wrap .cb_content > div:nth-child(2) {
  width: 56.25%;
  padding: 0 7.0312vw 0 3.5156vw;
}
@media (max-width: 840px) {
  .cb_photo12 .cb_wrap .cb_content > div:nth-child(2) {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .cb_photo12 .cb_wrap .cb_content > div:nth-child(2) {
    padding: 15px;
  }
}

.cb_photo13 .cb_wrap {
  position: relative;
  padding: 3.90625vw 0;
}
@media (max-width: 840px) {
  .cb_photo13 .cb_wrap {
    padding: 0;
  }
}
.cb_photo13 .cb_wrap .bg_color {
  position: absolute;
  top: 0;
  left: 0;
  width: 86.98%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 840px) {
  .cb_photo13 .cb_wrap .bg_color {
    width: 100%;
  }
}
.cb_photo13 .cb_wrap .cb_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 840px) {
  .cb_photo13 .cb_wrap .cb_content {
    flex-direction: column-reverse;
  }
}
.cb_photo13 .cb_wrap .cb_content > div:nth-child(1) {
  width: 56.25%;
  padding: 0 3.5156vw 0 7.0312vw;
}
@media (max-width: 840px) {
  .cb_photo13 .cb_wrap .cb_content > div:nth-child(1) {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .cb_photo13 .cb_wrap .cb_content > div:nth-child(1) {
    padding: 15px;
  }
}
.cb_photo13 .cb_wrap .cb_content > div:nth-child(2) {
  width: 43.75%;
}
@media (max-width: 840px) {
  .cb_photo13 .cb_wrap .cb_content > div:nth-child(2) {
    width: 100%;
  }
}
.cb_photo13 .cb_wrap .cb_content > div:nth-child(2) div {
  position: relative;
  height: 0;
  padding-bottom: 71.43%;
  overflow: hidden;
}
.cb_photo13 .cb_wrap .cb_content > div:nth-child(2) div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_card01 .cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card01 .cards > div {
  width: 50%;
  padding: 15px;
}
@media (max-width: 720px) {
  .cb_card01 .cards > div {
    width: 100%;
  }
}
.cb_card01 .cards > div img {
  width: 100%;
}
.cb_card01 .cards > div h3 {
  font-weight: 500;
  margin: 0;
}

.cb_card02 .cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card02 .cards > div {
  width: 50%;
  padding: 15px;
}
@media (max-width: 720px) {
  .cb_card02 .cards > div {
    width: 100%;
  }
}
.cb_card02 .cards > div div {
  position: relative;
  height: 0;
  padding-bottom: 52.713%;
  overflow: hidden;
}
.cb_card02 .cards > div h3 {
  font-weight: 500;
  margin: 0;
}

.cb_card03 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card03 .cb_slick:not(.slick-slider) > div {
  width: 33.3333333333%;
  padding: 15px;
}
.cb_card03 .cb_slick:not(.slick-slider) > div img {
  width: 100%;
}
.cb_card03 .cb_slick:not(.slick-slider) > div div {
  padding: 2.34375vw;
}
.cb_card03 .cb_slick:not(.slick-slider) > div div h3 {
  font-weight: 500;
  margin: 0;
}
.cb_card03 .cb_slick.slick-slider {
  padding-bottom: 16px;
  margin: 0 -15px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card03 .cb_slick.slick-slider {
    margin: 0 -5px;
  }
}
.cb_card03 .cb_slick.slick-slider .slick-slide {
  padding: 0 15px;
}
@media (max-width: 720px) {
  .cb_card03 .cb_slick.slick-slider .slick-slide {
    padding: 0 5px;
  }
}
.cb_card03 .cb_slick.slick-slider .slick-slide img {
  width: 100%;
}
.cb_card03 .cb_slick.slick-slider .slick-slide div {
  padding: 2.34375vw;
}
@media (max-width: 720px) {
  .cb_card03 .cb_slick.slick-slider .slick-slide div {
    padding: 30px 15px;
  }
}
.cb_card03 .cb_slick.slick-slider .slick-slide div h3 {
  font-weight: 500;
  margin: 0;
}

.cb_card04 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card04 .cb_slick:not(.slick-slider) > div {
  width: 33.3333333333%;
  padding: 15px;
}
.cb_card04 .cb_slick:not(.slick-slider) > div div:nth-child(1) {
  position: relative;
  height: 0;
  padding-bottom: 77.83%;
  margin-bottom: 20px;
  overflow: hidden;
}
.cb_card04 .cb_slick:not(.slick-slider) > div div:nth-child(2) {
  padding: 2.34375vw;
}
.cb_card04 .cb_slick:not(.slick-slider) > div div:nth-child(2) h3 {
  font-weight: 500;
  margin: 0;
}
.cb_card04 .cb_slick.slick-slider {
  padding-bottom: 16px;
  margin: 0 -15px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card04 .cb_slick.slick-slider {
    margin: 0 -5px;
  }
}
.cb_card04 .cb_slick.slick-slider .slick-slide {
  padding: 0 15px;
}
@media (max-width: 720px) {
  .cb_card04 .cb_slick.slick-slider .slick-slide {
    padding: 0 5px;
  }
}
.cb_card04 .cb_slick.slick-slider .slick-slide div:nth-child(1) {
  position: relative;
  height: 0;
  padding-bottom: 77.83%;
  margin-bottom: 20px;
  overflow: hidden;
}
.cb_card04 .cb_slick.slick-slider .slick-slide div {
  padding: 2.34375vw;
}
@media (max-width: 720px) {
  .cb_card04 .cb_slick.slick-slider .slick-slide div {
    padding: 30px 15px;
  }
}
.cb_card04 .cb_slick.slick-slider .slick-slide div h3 {
  font-weight: 500;
  margin: 0;
}

.cb_card05 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.cb_card05 .cb_slick:not(.slick-slider) > div {
  width: 25%;
  padding: 10px;
}
.cb_card05 .cb_slick:not(.slick-slider) > div img {
  width: 100%;
}
.cb_card05 .cb_slick:not(.slick-slider) > div div {
  background: #fff;
  padding: 30px 15px;
  transition: all 0.3s;
}
.cb_card05 .cb_slick:not(.slick-slider) > div div h3 {
  font-weight: 500;
  margin: 0;
  transition: all 0.3s;
}
.cb_card05 .cb_slick:not(.slick-slider) > div div p {
  transition: all 0.3s;
}
.cb_card05 .cb_slick:not(.slick-slider) > div:hover div {
  background: #db9b8f;
}
.cb_card05 .cb_slick:not(.slick-slider) > div:hover div h3 {
  color: #fff;
}
.cb_card05 .cb_slick:not(.slick-slider) > div:hover div p {
  color: #fff;
}
.cb_card05 .cb_slick:not(.slick-slider) > div:hover div .cb_button01 {
  color: #414042;
  background: #e6e7e8 !important;
}
.cb_card05 .cb_slick.slick-slider {
  padding-bottom: 16px;
  margin: 0 -10px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card05 .cb_slick.slick-slider {
    margin: 0 -5px;
  }
}
.cb_card05 .cb_slick.slick-slider .slick-slide {
  padding: 0 10px;
}
@media (max-width: 720px) {
  .cb_card05 .cb_slick.slick-slider .slick-slide {
    padding: 0 5px;
  }
}
.cb_card05 .cb_slick.slick-slider .slick-slide img {
  width: 100%;
}
.cb_card05 .cb_slick.slick-slider .slick-slide div {
  background: #fff;
  padding: 2vw;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card05 .cb_slick.slick-slider .slick-slide div {
    padding: 30px 15px;
  }
}
.cb_card05 .cb_slick.slick-slider .slick-slide div h3 {
  font-weight: 500;
  margin: 0;
  transition: all 0.3s;
}
.cb_card05 .cb_slick.slick-slider .slick-slide div p {
  transition: all 0.3s;
}
.cb_card05 .cb_slick.slick-slider .slick-slide:hover div {
  background: #db9b8f;
}
.cb_card05 .cb_slick.slick-slider .slick-slide:hover div h3 {
  color: #fff;
}
.cb_card05 .cb_slick.slick-slider .slick-slide:hover div p {
  color: #fff;
}
.cb_card05 .cb_slick.slick-slider .slick-slide:hover div .cb_button01 {
  color: #414042;
  background: #e6e7e8 !important;
}

.cb_card06 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.cb_card06 .cb_slick:not(.slick-slider) > div {
  width: 25%;
  padding: 10px;
}
.cb_card06 .cb_slick:not(.slick-slider) > div div:nth-child(1) {
  position: relative;
  height: 0;
  padding-bottom: 73.016%;
  margin-bottom: 20px;
  overflow: hidden;
}
.cb_card06 .cb_slick:not(.slick-slider) > div div:nth-child(2) {
  background: #fff;
  padding: 30px 15px;
  transition: all 0.3s;
}
.cb_card06 .cb_slick:not(.slick-slider) > div div:nth-child(2) h3 {
  font-weight: 500;
  margin: 0;
  transition: all 0.3s;
}
.cb_card06 .cb_slick:not(.slick-slider) > div div:nth-child(2) p {
  transition: all 0.3s;
}
.cb_card06 .cb_slick:not(.slick-slider) > div:hover div:nth-child(2) {
  background: #db9b8f;
}
.cb_card06 .cb_slick:not(.slick-slider) > div:hover div:nth-child(2) h3 {
  color: #fff;
}
.cb_card06 .cb_slick:not(.slick-slider) > div:hover div:nth-child(2) p {
  color: #fff;
}
.cb_card06 .cb_slick:not(.slick-slider) > div:hover div:nth-child(2) .cb_button01 {
  color: #414042;
  background: #e6e7e8 !important;
}
.cb_card06 .cb_slick.slick-slider {
  padding-bottom: 16px;
  margin: 0 -10px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card06 .cb_slick.slick-slider {
    margin: 0 -5px;
  }
}
.cb_card06 .cb_slick.slick-slider .slick-slide {
  padding: 0 10px;
}
@media (max-width: 720px) {
  .cb_card06 .cb_slick.slick-slider .slick-slide {
    padding: 0 5px;
  }
}
.cb_card06 .cb_slick.slick-slider .slick-slide div:nth-child(1) {
  position: relative;
  height: 0;
  padding-bottom: 73.016%;
  margin-bottom: 20px;
  overflow: hidden;
}
.cb_card06 .cb_slick.slick-slider .slick-slide div:nth-child(2) {
  background: #fff;
  padding: 2vw;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card06 .cb_slick.slick-slider .slick-slide div:nth-child(2) {
    padding: 30px 15px;
  }
}
.cb_card06 .cb_slick.slick-slider .slick-slide div:nth-child(2) h3 {
  font-weight: 500;
  margin: 0;
  transition: all 0.3s;
}
.cb_card06 .cb_slick.slick-slider .slick-slide div:nth-child(2) p {
  transition: all 0.3s;
}
.cb_card06 .cb_slick.slick-slider .slick-slide:hover div:nth-child(2) {
  background: #db9b8f;
}
.cb_card06 .cb_slick.slick-slider .slick-slide:hover div:nth-child(2) h3 {
  color: #fff;
}
.cb_card06 .cb_slick.slick-slider .slick-slide:hover div:nth-child(2) p {
  color: #fff;
}
.cb_card06 .cb_slick.slick-slider .slick-slide:hover div:nth-child(2) .cb_button01 {
  color: #414042;
  background: #e6e7e8 !important;
}

.cb_box01 {
  overflow: hidden;
}
.cb_box01 .cb_slick {
  margin: 0 -15px;
}
.cb_box01 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
}
.cb_box01 .cb_slick:not(.slick-slider) > div {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
.cb_box01 .cb_slick:not(.slick-slider) > div .box {
  width: 50%;
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box01 .cb_slick:not(.slick-slider) > div .box {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box01 .cb_slick:not(.slick-slider) > div .box {
    padding: 30px 15px;
  }
}
.cb_box01 .cb_slick:not(.slick-slider) > div .box img {
  margin: 0 auto 15px;
}
.cb_box01 .cb_slick:not(.slick-slider) > div .box h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box01 .cb_slick:not(.slick-slider) > div .box h4 {
  font-weight: 400;
  margin: 0;
}
.cb_box01 .cb_slick.slick-slider {
  padding-bottom: 16px;
}
.cb_box01 .cb_slick.slick-slider .slick-slide {
  display: flex;
  flex-wrap: wrap;
}
.cb_box01 .cb_slick.slick-slider .slick-slide .box {
  width: 50%;
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box01 .cb_slick.slick-slider .slick-slide .box {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box01 .cb_slick.slick-slider .slick-slide .box {
    padding: 30px 15px;
  }
}
.cb_box01 .cb_slick.slick-slider .slick-slide .box img {
  margin: 0 auto 15px;
}
.cb_box01 .cb_slick.slick-slider .slick-slide .box h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box01 .cb_slick.slick-slider .slick-slide .box h4 {
  font-weight: 400;
  margin: 0;
}

.cb_box02 .boxes {
  display: flex;
  flex-wrap: wrap;
}
.cb_box02 .boxes .box {
  width: 50%;
  padding: 7.5px;
}
.cb_box02 .boxes .box div {
  padding: 50px 15px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box02 .boxes .box div {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box02 .boxes .box div {
    padding: 30px 15px;
  }
}
.cb_box02 .boxes .box div img {
  margin: 0 auto 15px;
}
.cb_box02 .boxes .box div h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box02 .boxes .box div h4 {
  font-weight: 400;
  margin: 0;
}

.cb_box03 .boxes {
  display: flex;
  flex-wrap: wrap;
}
.cb_box03 .boxes .box {
  width: 33.3333333333%;
  padding: 7.5px;
}
@media (max-width: 720px) {
  .cb_box03 .boxes .box {
    width: 50%;
  }
}
.cb_box03 .boxes .box div {
  padding: 50px 15px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box03 .boxes .box div {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box03 .boxes .box div {
    padding: 30px 15px;
  }
}
.cb_box03 .boxes .box div img {
  margin: 0 auto 15px;
}
.cb_box03 .boxes .box div h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box03 .boxes .box div h4 {
  font-weight: 400;
  margin: 0;
}

.cb_box04 .boxes {
  display: flex;
  flex-wrap: wrap;
}
.cb_box04 .boxes .box {
  width: 25%;
  padding: 7.5px;
}
@media (max-width: 1200px) {
  .cb_box04 .boxes .box {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .cb_box04 .boxes .box {
    width: 100%;
  }
}
.cb_box04 .boxes .box > div {
  padding: 50px 15px;
  border: 1px solid #db9b8f;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box04 .boxes .box > div {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box04 .boxes .box > div {
    padding: 30px 15px;
  }
}

.cb_box05 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_box05 .cb_wrap .box {
  position: relative;
  width: 33.3333333333%;
  background: #db9b8f;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cb_box05 .cb_wrap .box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cb_box05 .cb_wrap .box:nth-child(2) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 1200px) {
  .cb_box05 .cb_wrap .box > div:nth-child(1) {
    width: 55%;
  }
}
@media (max-width: 720px) {
  .cb_box05 .cb_wrap .box > div:nth-child(1) {
    width: 100%;
  }
}
.cb_box05 .cb_wrap .box > div:nth-child(1) div {
  position: relative;
  height: 0;
  padding-bottom: 78.125%;
  overflow: hidden;
}
.cb_box05 .cb_wrap .box > div:nth-child(1) div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_box05 .cb_wrap .box > div:nth-child(1) div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s;
}
@media (max-width: 1200px) {
  .cb_box05 .cb_wrap .box > div:nth-child(1) div::after {
    display: none;
  }
}
.cb_box05 .cb_wrap .box > div:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 10vw);
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box05 .cb_wrap .box > div:nth-child(2) {
    width: calc(100% - 5vw);
  }
}
@media (max-width: 1200px) {
  .cb_box05 .cb_wrap .box > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: unset;
    left: unset;
    width: 45%;
    opacity: 1;
    pointer-events: auto;
    transform: unset;
  }
}
@media (max-width: 720px) {
  .cb_box05 .cb_wrap .box > div:nth-child(2) {
    width: 100%;
    padding: 30px 15px;
  }
}
.cb_box05 .cb_wrap .box:hover > div:nth-child(1) div::after {
  opacity: 1;
}
.cb_box05 .cb_wrap .box:hover > div:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
}

.cb_video01 .rwd_frame {
  position: relative;
  height: 0;
  padding-bottom: 34.23%;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .cb_video01 .rwd_frame {
    padding-bottom: 56.25%;
  }
}
.cb_video01 .rwd_frame * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.cb_video02 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cb_video02 .cb_wrap > div:nth-child(1) {
  width: calc(50% + 65px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_video02 .cb_wrap > div:nth-child(1) {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
}
.cb_video02 .cb_wrap > div:nth-child(1) .rwd_frame {
  position: relative;
  height: 0;
  padding-bottom: 63.77%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .cb_video02 .cb_wrap > div:nth-child(1) .rwd_frame {
    padding-bottom: 56.25%;
  }
}
.cb_video02 .cb_wrap > div:nth-child(1) .rwd_frame * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.cb_video02 .cb_wrap > div:nth-child(2) {
  width: calc(50% - 65px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_video02 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }
}

.cb_video03 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 960px) {
  .cb_video03 .cb_wrap {
    flex-direction: column-reverse;
  }
}
.cb_video03 .cb_wrap > div:nth-child(1) {
  width: calc(50% - 65px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_video03 .cb_wrap > div:nth-child(1) {
    width: 100%;
    padding-right: 0;
  }
}
.cb_video03 .cb_wrap > div:nth-child(2) {
  width: calc(50% + 65px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_video03 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
    margin-bottom: 35px;
  }
}
.cb_video03 .cb_wrap > div:nth-child(2) .rwd_frame {
  position: relative;
  height: 0;
  padding-bottom: 63.77%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .cb_video03 .cb_wrap > div:nth-child(2) .rwd_frame {
    padding-bottom: 56.25%;
  }
}
.cb_video03 .cb_wrap > div:nth-child(2) .rwd_frame * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.cb_map01 .rwd_frame {
  position: relative;
  height: 0;
  padding-bottom: 34.23%;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .cb_map01 .rwd_frame {
    padding-bottom: 56.25%;
  }
}
.cb_map01 .rwd_frame * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.cb_map02 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cb_map02 .cb_wrap > div:nth-child(1) {
  width: calc(50% + 65px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_map02 .cb_wrap > div:nth-child(1) {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
}
.cb_map02 .cb_wrap > div:nth-child(1) .rwd_frame {
  position: relative;
  height: 0;
  padding-bottom: 63.77%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .cb_map02 .cb_wrap > div:nth-child(1) .rwd_frame {
    padding-bottom: 56.25%;
  }
}
.cb_map02 .cb_wrap > div:nth-child(1) .rwd_frame * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.cb_map02 .cb_wrap > div:nth-child(2) {
  width: calc(50% - 65px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_map02 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }
}

.cb_map03 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 960px) {
  .cb_map03 .cb_wrap {
    flex-direction: column-reverse;
  }
}
.cb_map03 .cb_wrap > div:nth-child(1) {
  width: calc(50% - 65px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_map03 .cb_wrap > div:nth-child(1) {
    width: 100%;
    padding-right: 0;
  }
}
.cb_map03 .cb_wrap > div:nth-child(2) {
  width: calc(50% + 65px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_map03 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
    margin-bottom: 35px;
  }
}
.cb_map03 .cb_wrap > div:nth-child(2) .rwd_frame {
  position: relative;
  height: 0;
  padding-bottom: 63.77%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .cb_map03 .cb_wrap > div:nth-child(2) .rwd_frame {
    padding-bottom: 56.25%;
  }
}
.cb_map03 .cb_wrap > div:nth-child(2) .rwd_frame * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.cb_button01 {
  display: block;
  width: fit-content;
  min-width: 200px;
  max-width: 100%;
  color: #393939;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  padding: 13px 10px;
  background: #e6e7e8 !important;
  transition: all 0.3s;
}
.cb_button01.center {
  margin: 0 auto;
}
.cb_button01.right {
  margin: 0 0 0 auto;
}
.cb_button01 span {
  display: inline-block;
  padding-left: 7px;
  transform: scale(0.7);
}
.cb_button01:hover {
  color: #fff;
  background: #db9b8f !important;
}
.cb_button01.reverse {
  color: #fff;
  background: #db9b8f !important;
}
.cb_button01.reverse:hover {
  color: #393939;
  background: #e6e7e8 !important;
}

.cb_button02 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 200px;
  max-width: 100%;
  color: #393939;
  font-size: 12px;
  text-decoration: none;
  padding: 13px 10px;
  background: #fff !important;
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  transition: all 0.3s;
}
.cb_button02.center {
  margin: 0 auto;
}
.cb_button02.right {
  margin: 0 0 0 auto;
}
.cb_button02 span {
  display: inline-block;
  padding-left: 30px;
}
.cb_button02 span svg {
  display: block;
}
.cb_button02 span svg polyline {
  stroke: #393939;
  transition: all 0.3s;
}
.cb_button02:hover {
  color: #fff;
  background: #db9b8f !important;
}
.cb_button02:hover span svg polyline {
  stroke: #fff;
}
.cb_button02.reverse {
  color: #fff;
  background: #db9b8f !important;
}
.cb_button02.reverse span svg polyline {
  stroke: #fff;
}
.cb_button02.reverse:hover {
  color: #393939;
  background: #fff !important;
}
.cb_button02.reverse:hover span svg polyline {
  stroke: #393939;
}

.cb_button03 {
  display: block;
  position: relative;
  width: fit-content;
  min-width: 200px;
  max-width: 100%;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  padding: 13px 40px;
  background: #e6e7e8 !important;
}
.cb_button03.center {
  margin: 0 auto;
}
.cb_button03.right {
  margin: 0 0 0 auto;
}
.cb_button03::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #db9b8f;
  transition: all 0.3s;
}
.cb_button03 svg {
  position: absolute;
  bottom: 15px;
  left: 15px;
  opacity: 1;
  transform: translate(-50%, 50%);
  transition: all 0.3s;
}
.cb_button03 svg line {
  stroke: #fff;
}
.cb_button03 svg polygon {
  stroke: #fff;
}
.cb_button03 svg rect {
  fill: #fff;
}
.cb_button03 span {
  position: relative;
  color: #393939;
  transition: all 0.3s;
}
.cb_button03:hover::before {
  width: 100%;
  height: 100%;
}
.cb_button03:hover svg {
  opacity: 0;
}
.cb_button03:hover span {
  color: #fff;
}
.cb_button03.reverse {
  background: #db9b8f !important;
}
.cb_button03.reverse::before {
  background: #e6e7e8;
}
.cb_button03.reverse svg line {
  stroke: #231F20;
}
.cb_button03.reverse svg polygon {
  stroke: #231F20;
}
.cb_button03.reverse svg rect {
  fill: #231F20;
}
.cb_button03.reverse span {
  color: #fff;
}
.cb_button03.reverse:hover span {
  color: #393939;
}

.cb_button04 {
  display: block;
  position: relative;
  width: fit-content;
  min-width: 200px;
  max-width: 100%;
  font-size: 12px;
  text-decoration: none;
  padding: 13px 10px;
  background: #db9b8f !important;
}
.cb_button04.center {
  margin: 0 auto;
}
.cb_button04.right {
  margin: 0 0 0 auto;
}
.cb_button04::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #e6e7e8;
  transition: all 0.3s;
}
.cb_button04 > span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #393939;
  transition: all 0.3s;
}
.cb_button04 > span span {
  display: inline-block;
  padding-left: 40px;
}
.cb_button04 > span span svg {
  display: block;
}
.cb_button04 > span span svg line {
  stroke: #393939;
  transition: all 0.3s;
}
.cb_button04 > span span svg circle {
  stroke: #393939;
  transition: all 0.3s;
}
.cb_button04 > span span svg polygon {
  fill: #393939;
  transition: all 0.3s;
}
.cb_button04:hover::before {
  width: 0%;
  background: #ababab;
}
.cb_button04:hover > span {
  color: #fff;
}
.cb_button04:hover > span span svg line {
  stroke: #fff;
}
.cb_button04:hover > span span svg circle {
  stroke: #fff;
}
.cb_button04:hover > span span svg polygon {
  fill: #fff;
}
.cb_button04.reverse {
  background: #ababab !important;
}
.cb_button04.reverse::before {
  background: #db9b8f;
}
.cb_button04.reverse > span {
  color: #939598;
}
.cb_button04.reverse > span span svg line {
  stroke: #939598;
}
.cb_button04.reverse > span span svg circle {
  stroke: #939598;
}
.cb_button04.reverse > span span svg polygon {
  fill: #939598;
}
.cb_button04.reverse:hover > span {
  color: #fff;
}
.cb_button04.reverse:hover > span span svg line {
  stroke: #fff;
}
.cb_button04.reverse:hover > span span svg circle {
  stroke: #fff;
}
.cb_button04.reverse:hover > span span svg polygon {
  fill: #fff;
}

.cb_button05 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 200px;
  max-width: 100%;
  color: #393939;
  font-size: 12px;
  text-decoration: none;
  padding: 13px 10px;
  background: #fff !important;
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 0.3s;
}
.cb_button05.center {
  margin: 0 auto;
}
.cb_button05.right {
  margin: 0 0 0 auto;
}
.cb_button05 span {
  display: inline-block;
  padding-left: 30px;
}
.cb_button05 span svg {
  display: block;
}
.cb_button05 span svg path {
  fill: #393939;
  transition: all 0.3s;
}
.cb_button05:hover {
  color: #fff;
  background: #db9b8f !important;
}
.cb_button05:hover span svg path {
  fill: #fff;
}
.cb_button05.reverse {
  color: #fff;
  background: #db9b8f !important;
}
.cb_button05.reverse span svg path {
  fill: #fff;
}
.cb_button05.reverse:hover {
  color: #393939;
  background: #fff !important;
}
.cb_button05.reverse:hover span svg path {
  fill: #393939;
}

.cb_button06 {
  display: block;
  position: relative;
  width: fit-content;
  min-width: 200px;
  max-width: 100%;
  color: #393939;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  padding: 13px 35px;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  transition: all 0.3s;
}
.cb_button06.center {
  margin: 0 auto;
}
.cb_button06.right {
  margin: 0 0 0 auto;
}
.cb_button06::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  width: 5px;
  height: 5px;
  background: #393939;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cb_button06:hover {
  color: #fff;
  background: rgba(219, 155, 143, 0.7) !important;
}
.cb_button06:hover::before {
  background: #fff;
}
.cb_button06.reverse {
  color: #fff;
  background: rgba(219, 155, 143, 0.7) !important;
}
.cb_button06.reverse::before {
  background: #fff;
}
.cb_button06.reverse:hover {
  color: #393939;
  background: rgba(255, 255, 255, 0.7) !important;
}
.cb_button06.reverse:hover::before {
  background: #393939;
}

/*# sourceMappingURL=style.css.map */
