@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;
}
.module_desc.white {
  color: #fff;
}

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

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  color: #393939;
  font-size: 14px;
  font-family: "Noto Serif TC", 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;
}

.editor h2 {
  font-family: "Cormorant Infant", sans-serif;
}
.editor h3 {
  font-family: "Noto Serif TC", sans-serif;
}

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

.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: #84ccc9;
}

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: #393939;
  font-size: 14px;
  font-family: "Noto Serif TC", 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=file] {
  padding: 4.5px 10px !important;
}

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

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

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

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

.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,
.wider_container {
  width: 100%;
  padding: 0 60px;
  margin: 0 auto;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .container,
  .wider_container {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .container,
  .wider_container {
    padding: 0 25px;
  }
}

.container {
  max-width: 1520px;
}

.wider_container {
  max-width: 1720px;
}

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

.row_by_gap {
  display: flex;
  flex-wrap: wrap;
}
.row_by_gap:not(.no_gutter) {
  gap: 15px;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .row_by_gap:not(.no_gutter) {
    gap: 10px;
  }
}

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

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

.price--del {
  color: #939598;
  text-decoration: line-through;
}
.price--origin {
  color: #000;
}
.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, .btn:focus {
  color: #ffffff;
  background-color: #040000;
}
.btn--primary {
  border-color: #040000;
  color: #ffffff;
  background-color: #040000;
}
.btn--primary:focus {
  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:focus {
  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:focus {
  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:focus {
  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: "Cormorant Infant", sans-serif;
  letter-spacing: 2px;
  text-indent: 2px;
}
.title-box__sub-title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif TC", 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-disabled {
  pointer-events: none;
  opacity: 0.1;
}
.slick-slider .slick-arrow.slick-prev {
  left: 0;
}
.slick-slider .slick-arrow.slick-next {
  right: 0;
}

.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;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all 0.1s;
}
.slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .slick-dots li {
    width: 8px;
    height: 8px;
  }
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  color: transparent;
  font-size: 0;
  background: #c9caca;
  border-radius: 50%;
  transition: background 0.1s;
}
@media (max-width: 768px) {
  .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.slick-dots li.slick-active button {
  background: #84ccc9;
}

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

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: rgba(4, 0, 0, 0.15);
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #040000;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .no_yijin {
  margin-left: 8px;
  font-size: 13px;
  font-family: "Noto Serif TC", sans-serif;
  padding: 3px 6px;
  background: #fff;
  border: 1px solid #ccc;
  transition: all 0.1s;
}
.daterangepicker .drp-buttons .no_yijin:hover {
  color: #fff;
  background: #040000;
  border: 1px solid #040000;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/* Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }
  .daterangepicker .ranges ul {
    width: 140px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }
  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }
  .daterangepicker {
    direction: ltr;
    text-align: left;
  }
  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }
  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }
  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }
  .daterangepicker .ranges {
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
.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: 18px;
  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: #84ccc9;
}
.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: #84ccc9;
}
.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: #84ccc9;
}
.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;
}
.header01 .menu-box .menu-box__search .search__input {
  width: 80px;
  border: 0;
  padding: 0;
  margin-right: auto;
  font-size: 18px;
  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: #84ccc9;
  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: #c8b8a9;
}

.header02 {
  width: 100%;
  position: fixed;
  top: 0;
  letter-spacing: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  background-color: rgb(246, 239, 232);
  z-index: 100;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .header02 {
    padding: 0 15px;
  }
}
.header02 .header_marquee {
  padding: 0 4.1667vw;
  background: #003c5c;
  transition: all 0.3s;
  display: none;
}
@media (max-width: 1440px) {
  .header02 .header_marquee {
    padding: 0 2.5vw;
  }
}
@media (max-width: 1200px) {
  .header02 .header_marquee {
    display: none;
  }
}
.header02 .header_marquee .row_by_gap {
  height: 25px;
  align-items: center;
  justify-content: space-between;
}
.header02 .header_marquee .left_tools,
.header02 .header_marquee .right_tools {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  width: 320px;
}
.header02 .header_marquee .left_tools a,
.header02 .header_marquee .right_tools a {
  color: #fff;
  font-size: 14px;
}
.header02 .header_marquee .msg {
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.header02 .navbar {
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .header02 .navbar {
    padding: 0 2.5vw;
  }
}
@media (max-width: 1200px) {
  .header02 .navbar {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .header02 .navbar {
    padding: 0 15px;
  }
}
.header02 .navbar .logo {
  width: 96px;
  height: 90px;
}
.header02 .navbar .logo img {
  max-height: 90px;
}
@media (max-width: 600px) {
  .header02 .navbar .logo {
    width: 65px;
    height: 60px;
  }
}
.header02 .navbar .navmenu {
  display: flex;
  gap: 35px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .header02 .navbar .navmenu {
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .header02 .navbar .navmenu {
    display: none;
  }
}
.header02 .navbar .navmenu > li {
  position: relative;
  overflow: hidden;
}
.header02 .navbar .navmenu > li > a {
  display: block;
  color: #393939;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  padding: 34px 6px;
  transition: all 0.3s;
}
.header02 .navbar .navmenu > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  transform: translate(-100%, 0);
  transition: all 0.6s;
  background-color: #84ccc9;
  opacity: 0;
  visibility: hidden;
}
.header02 .navbar .navmenu > li:hover::before, .header02 .navbar .navmenu > li.active::before {
  left: 0;
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}
.header02 .navbar .navmenu > li:hover > a, .header02 .navbar .navmenu > li.active > a {
  color: #84ccc9;
}
.header02 .navbar .navmenu > li ul {
  position: absolute;
  top: 100%;
  left: 50%;
  width: max-content;
  min-width: 142px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: all 0.3s;
}
.header02 .navbar .navmenu > li ul ul {
  top: 0;
  left: 100%;
  transform: translate(0, 0);
}
.header02 .navbar .navmenu > li ul li {
  position: relative;
}
.header02 .navbar .navmenu > li ul li + li {
  border-top: 1px solid #e9e9e9;
}
.header02 .navbar .navmenu > li ul li a {
  display: block;
  color: #393939;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 20px;
  background: #fff;
  transition: all 0.3s;
}
.header02 .navbar .navmenu > li ul li:hover > a, .header02 .navbar .navmenu > li ul li.active > a {
  color: #fff;
  background: #84ccc9;
}
.header02 .navbar .navmenu li:hover > ul {
  opacity: 1;
  pointer-events: auto;
}
.header02 .navbar .navtool {
  display: none;
  flex-shrink: 0;
  gap: 20px;
}
@media (max-width: 1366px) {
  .header02 .navbar .navtool {
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .header02 .navbar .navtool {
    display: block;
  }
}
@media (max-width: 480px) {
  .header02 .navbar .navtool {
    gap: 15px;
  }
}
.header02 .navbar .navtool > div,
.header02 .navbar .navtool > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 70px;
  cursor: pointer;
  transition: all 0.3s;
}
.header02 .navbar .navtool > div > i,
.header02 .navbar .navtool > a > i {
  color: #393939;
  font-size: 25px;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .header02 .navbar .navtool > div > i,
  .header02 .navbar .navtool > a > i {
    font-size: 20px;
  }
}
.header02 .navbar .navtool > div > svg,
.header02 .navbar .navtool > a > svg {
  display: block;
  width: auto;
  height: 20px;
  fill: #393939;
  transition: all 0.3s;
}
.header02 .navbar .navtool > div form,
.header02 .navbar .navtool > a form {
  display: flex;
  position: absolute;
  top: 100%;
  right: 0;
  width: fit-content;
  padding: 15px;
  background: #003c5c;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .header02 .navbar .navtool > div form,
  .header02 .navbar .navtool > a form {
    right: 50%;
    transform: translate(50%);
  }
  .header02 .navbar .navtool > div form input,
  .header02 .navbar .navtool > a form input {
    width: 180px;
  }
}
.header02 .navbar .navtool > div form button,
.header02 .navbar .navtool > a form button {
  color: #fff;
  font-size: 20px;
  margin-left: 13px;
  transition: all 0.3s;
}
.header02 .navbar .navtool > div form button:hover,
.header02 .navbar .navtool > a form button:hover {
  color: #84ccc9;
}
.header02 .navbar .navtool > div ul,
.header02 .navbar .navtool > a ul {
  position: absolute;
  top: 100%;
  right: 50%;
  width: max-content;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 0);
  transition: all 0.3s;
}
.header02 .navbar .navtool > div ul li + li,
.header02 .navbar .navtool > a ul li + li {
  border-top: 1px solid #e9e9e9;
}
.header02 .navbar .navtool > div ul li a,
.header02 .navbar .navtool > a ul li a {
  display: block;
  color: #393939;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 20px;
  background: #fff;
  transition: all 0.3s;
}
.header02 .navbar .navtool > div ul li:hover > a, .header02 .navbar .navtool > div ul li.active > a,
.header02 .navbar .navtool > a ul li:hover > a,
.header02 .navbar .navtool > a ul li.active > a {
  color: #fff;
  background: #84ccc9;
}
.header02 .navbar .navtool > div:hover > i,
.header02 .navbar .navtool > a:hover > i {
  color: #84ccc9;
}
.header02 .navbar .navtool > div:hover > svg,
.header02 .navbar .navtool > a:hover > svg {
  fill: #84ccc9;
}
.header02 .navbar .navtool > div:hover form,
.header02 .navbar .navtool > div:hover ul,
.header02 .navbar .navtool > a:hover form,
.header02 .navbar .navtool > a:hover ul {
  opacity: 1;
  pointer-events: auto;
}
.header02 .navbar .navtool #google_translate_element .skiptranslate {
  font-size: 0;
}
.header02 .navbar .navtool #google_translate_element .skiptranslate > div select {
  font-size: 14px;
  font-family: "Noto Serif TC", sans-serif;
  padding: 1px 25px 1px 10px;
  margin: 0;
}
.header02 .navbar .navtool #google_translate_element .skiptranslate > span {
  display: none;
}
.header02 .navbar .navtool .member_btn p,
.header02 .navbar .navtool .cart_btn p,
.header02 .navbar .navtool .bell_btn p,
.header02 .navbar .navtool .heart_btn p {
  position: absolute;
  top: 17px;
  right: -9px;
  width: 16px;
  line-height: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  letter-spacing: 0;
  text-indent: 0;
  background: #c30d23;
  border-radius: 50%;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .header02 .navbar .navtool .member_btn,
  .header02 .navbar .navtool .bell_btn {
    display: none;
  }
}
@media (min-width: 1201px) {
  .header02 .navbar .navtool .mbPanel_btn {
    display: none;
  }
}
.header02 .navbar .navtool .mbPanel_btn .bars {
  position: relative;
  width: 30px;
  height: 2px;
}
.header02 .navbar .navtool .mbPanel_btn .bars .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8a7669;
  border-radius: 10px;
}
.header02 .navbar .navtool .mbPanel_btn .bars .bar.bar1 {
  top: -8px;
  transform: rotate(0deg);
  transition: top 0.3s 0.5s, transform 0.3s;
}
.header02 .navbar .navtool .mbPanel_btn .bars .bar.bar2 {
  opacity: 1;
  transition: opacity 0s 0.3s;
}
.header02 .navbar .navtool .mbPanel_btn .bars .bar.bar3 {
  top: 8px;
  transform: rotate(0deg);
  transition: top 0.3s 0.5s, transform 0.3s;
}
.header02 .navbar .navtool .mbPanel_btn.active .bars .bar.bar1 {
  top: 0;
  left: 0;
  transform: rotate(45deg);
  transition: top 0.3s, transform 0.3s 0.5s;
}
.header02 .navbar .navtool .mbPanel_btn.active .bars .bar.bar2 {
  opacity: 0;
}
.header02 .navbar .navtool .mbPanel_btn.active .bars .bar.bar3 {
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  transition: top 0.3s, transform 0.3s 0.5s;
}
.header02.active {
  display: none;
}

.banner17 {
  position: relative;
  background: #000;
}
.banner17 .index_banner {
  z-index: 1;
}
.banner17 .index_banner .slick-slide {
  overflow: hidden;
}
.banner17 .index_banner .slick-slide picture {
  display: block;
  min-height: 100vh;
}
.banner17 .index_banner .slick-slide picture img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.03);
}
.banner17 .index_banner .slick-slide .cover {
  position: absolute;
  top: 50%;
  right: 11.6666666667vw;
  width: max-content;
  max-width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .banner17 .index_banner .slick-slide .cover {
    bottom: 60px;
  }
}
@media (max-width: 720px) {
  .banner17 .index_banner .slick-slide .cover {
    right: inherit;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
  }
}
.banner17 .index_banner .slick-slide .cover p:nth-child(1) {
  color: #84ccc9;
  font-weight: 400;
  font-family: "Cormorant Infant", sans-serif;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.3s, opacity 1s, transform 1s;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(16px, 1.25vw, 24px);
  text-transform: uppercase;
}
.banner17 .index_banner .slick-slide .cover p:nth-child(2) {
  color: #795c47;
  font-weight: 800;
  font-family: "Noto Serif TC", sans-serif;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.3s, opacity 1s, transform 1s ease-in-out 0.3s;
  font-size: clamp(48px, 4.1666666667vw, 80px);
  line-height: clamp(48px, 4.1666666667vw, 80px);
  letter-spacing: 0.2em;
  margin-top: 30px;
}
.banner17 .index_banner .slick-slide .cover p:nth-child(3) {
  color: #795c47;
  font-weight: 600;
  font-family: "Noto Serif TC", sans-serif;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.3s, opacity 1s, transform 1s ease-in-out 0.6s;
  font-size: clamp(18px, 1.5625vw, 30px);
  line-height: clamp(18px, 1.5625vw, 30px);
  letter-spacing: 0.1em;
  margin-top: 25px;
}
.banner17 .index_banner .slick-slide .cover p:nth-child(4) {
  color: #4e3c2f;
  font-weight: 500;
  font-family: "Noto Serif TC", sans-serif, "Cormorant Infant";
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.3s, opacity 1s, transform 1s ease-in-out 0.9s;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(16px, 1.25vw, 24px);
  letter-spacing: 0.025em;
  margin-top: 22px;
}
.banner17 .index_banner .slick-slide .cover [class^=button] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s, opacity 1s, transform 1s;
  width: 171px;
  height: 46px;
  margin-top: 3.2291666667vw;
}
.banner17 .index_banner .slick-slide.slick-current picture img {
  animation: banner17_zoom 6s linear forwards;
}
@keyframes banner17_zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}
.banner17 .index_banner .slick-slide.slick-current .cover p:nth-child(1),
.banner17 .index_banner .slick-slide.slick-current .cover p:nth-child(2),
.banner17 .index_banner .slick-slide.slick-current .cover p:nth-child(3),
.banner17 .index_banner .slick-slide.slick-current .cover p:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s, opacity 1s 1s, transform 1s 1s;
}
.banner17 .index_banner .slick-slide.slick-current .cover [class^=button] {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s, opacity 1s 1.3s, transform 1s 1.3s;
}
.banner17 .index_banner .slick-dots {
  right: 8.5416666667vw;
  left: initial;
  transform: initial;
  bottom: 2.3958333333vw;
}
@media (max-width: 1024px) {
  .banner17 .index_banner .slick-dots {
    bottom: 20px;
  }
}
@media (max-width: 960px) {
  .banner17 .index_banner .slick-dots {
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
}
.banner17 .index_banner .slick-dots li button {
  background-color: #cce8e8;
  border-radius: 10px;
}
.banner17 .index_banner .slick-dots li.slick-active {
  width: 40px;
  transition: all 0.6s ease-in-out;
}
.banner17 .index_banner .slick-dots li.slick-active button {
  width: 40px;
  background-color: #84ccc9;
  transition: all 0.6s ease-in-out;
}
.banner17 .page_banner {
  margin-top: 95px;
}
.banner17 .page_banner .slick-slide a {
  display: block;
  position: relative;
}
.banner17 .page_banner .slick-slide a picture {
  display: block;
}
.banner17 .page_banner .slick-slide a picture img {
  width: 100%;
}
.banner17 .page_banner .slick-slide a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}
.banner17 .page_banner .slick-slide a .page_title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 15px;
  transform: translateY(-50%);
}
.banner17 .page_banner .slick-slide a .page_title p {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
}
.banner17 .page_banner .slick-slide a .page_title p:nth-child(1) {
  font-size: calc(1.5rem + 0.9375vw);
  font-weight: 700;
}
.banner17 .page_banner .slick-slide a .page_title p:nth-child(2) {
  font-size: calc(1rem + 0.3125vw);
}

.about02 {
  position: relative;
  padding-top: 7.1875vw;
}
@media (max-width: 600px) {
  .about02 {
    width: 100%;
    overflow: hidden;
  }
}
.about02 .container {
  max-width: 1540px;
}
.about02 .about_content {
  display: flex;
  transition: all 0.3s;
  justify-content: space-between;
  gap: 3.0208333333vw;
}
@media (max-width: 1400px) {
  .about02 .about_content {
    align-items: center;
  }
}
@media (max-width: 1200px) {
  .about02 .about_content {
    margin: 0px;
  }
}
@media (max-width: 900px) {
  .about02 .about_content {
    flex-direction: column;
    gap: 2.6041666667vw;
  }
}
.about02 .about_content .right {
  width: calc(100% - 39.6875vw - 3.0208333333vw);
  transition: all 0.3s;
}
@media (max-width: 1680px) {
  .about02 .about_content .right {
    width: 46.9791666667vw;
  }
}
@media (max-width: 1200px) {
  .about02 .about_content .right {
    padding: 0px;
  }
}
@media (max-width: 900px) {
  .about02 .about_content .right {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
  }
}
.about02 .about_content .right .module_title {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .about02 .about_content .right .module_title {
    order: 1;
    transform: translateY(40px);
  }
}
.about02 .about_content .right .module_title p:nth-child(1) {
  color: #84ccc9;
  font-weight: 600;
  font-family: "Cormorant Infant", sans-serif, "Noto Serif TC", sans-serif;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  line-height: clamp(18px, 1.0416666667vw, 20px);
  text-transform: uppercase;
}
.about02 .about_content .right .module_title p:nth-child(2) {
  color: #795c47;
  font-weight: 600;
  font-family: "Cormorant Infant", sans-serif;
  font-size: clamp(48px, 3.75vw, 72px);
  line-height: clamp(48px, 3.75vw, 72px);
  margin-top: 1.6666666667vw;
}
.about02 .about_content .right .module_title p:nth-child(3) {
  color: #795c47;
  font-weight: 600;
  font-family: "Noto Serif TC", sans-serif;
  font-size: clamp(18px, 1.4583333333vw, 28px);
  line-height: clamp(18px, 1.4583333333vw, 28px);
  letter-spacing: 0.1em;
  margin-top: 1.4583333333vw;
}
.about02 .about_content .right .module_desc {
  color: #4e3c2f;
  font-weight: 500;
  font-family: "Noto Serif TC", sans-serif, "Cormorant Infant";
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.3s, opacity 1s, transform 1s ease-in-out 0.9s;
  font-size: clamp(16px, 0.8854166667vw, 17px);
  line-height: clamp(30px, 1.7708333333vw, 34px);
  letter-spacing: 0.075em;
  margin-top: 1.6666666667vw;
}
@media (max-width: 900px) {
  .about02 .about_content .right .module_desc {
    order: 2;
    transform: translateY(40px);
  }
}
.about02 .about_content .right .button_set {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s, opacity 1s ease-out, transform 1s ease-out;
  margin-top: 3.2291666667vw !important;
}
@media (max-width: 900px) {
  .about02 .about_content .right .button_set {
    justify-content: flex-start;
    order: 4;
    margin-top: 40px !important;
  }
}
.about02 .about_content .left {
  width: 39.6875vw;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 1200px) {
  .about02 .about_content .left {
    padding: 0 0px;
    width: 50%;
  }
}
@media (max-width: 900px) {
  .about02 .about_content .left {
    width: 100%;
  }
}
.about02 .about_content .left .contact_btn_all {
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  border-radius: 50%;
  position: absolute;
  top: -5.2083333333vw;
  left: -5.2083333333vw;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 0;
}
@media (max-width: 900px) {
  .about02 .about_content .left .contact_btn_all {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
    z-index: 5;
  }
}
.about02 .about_content .left .contact_btn_all .contact_btn {
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  border-radius: 50%;
  animation: rotate 10s linear infinite reverse;
  transition: all 0.3s;
  z-index: 1;
}
@media (max-width: 900px) {
  .about02 .about_content .left .contact_btn_all .contact_btn {
    width: 100px;
    height: 100px;
  }
}
.about02 .about_content .left .contact_btn_all .contact_btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about02 .about_content .left .contact_btn_all .contact_btn02 {
  width: 3.125vw;
  height: 3.125vw;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}
@media (max-width: 900px) {
  .about02 .about_content .left .contact_btn_all .contact_btn02 {
    width: 60px;
    height: 60px;
  }
}
.about02 .about_content .left .contact_btn_all .contact_btn02 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about02 .about_content .left .pictures {
  position: relative;
  z-index: 5;
  width: 100%;
}
@media (max-width: 1500px) {
  .about02 .about_content .left .pictures {
    width: 100%;
  }
}
.about02 .about_content .left .pictures .big {
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.about02 .about_content .left .pictures .big .about_slick_1 .slick-slide {
  padding: 0 23.5px;
}
@media (max-width: 1024px) {
  .about02 .about_content .left .pictures .big .about_slick_1 .slick-slide {
    padding: 0px;
  }
}
.about02 .about_content .left .pictures .big .about_slick_1 .slick-slide p {
  position: relative;
  height: auto;
}
.about02 .about_content .left .pictures .big .about_slick_1 .slick-slide p img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.about02 .about_timeline {
  margin-top: 4.2708333333vw;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .about02 .about_timeline {
    order: 3;
  }
}
.about02 .about_timeline .about_slick_3 {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  display: none;
}
.about02 .about_timeline .about_slick_3 .slick-slide p {
  position: relative;
  height: 0;
  padding-bottom: 65.4761904762%;
  border-radius: 10px;
  overflow: hidden;
}
.about02 .about_timeline .about_slick_3 .slick-slide p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about02 .about_timeline .year_slick_wrap {
  position: relative;
}
@media (max-width: 900px) {
  .about02 .about_timeline .year_slick_wrap {
    margin: 0 -50px;
    margin-top: 50px;
  }
}
.about02 .about_timeline .year_slick_wrap .slick-arrow {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #c1977a;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: initial;
  top: 11%;
}
@media (max-width: 1024px) {
  .about02 .about_timeline .year_slick_wrap .slick-arrow {
    top: 9%;
  }
}
@media (max-width: 900px) {
  .about02 .about_timeline .year_slick_wrap .slick-arrow {
    display: none !important;
  }
}
.about02 .about_timeline .year_slick_wrap .slick-arrow svg {
  width: 28px;
  height: 19px;
  fill: #c1977a;
}
.about02 .about_timeline .year_slick_wrap .slick-arrow.slick-prev {
  transform: scaleX(-1);
  left: 0;
}
.about02 .about_timeline .year_slick_wrap .slick-arrow.slick-next {
  right: 0;
}
.about02 .about_timeline .year_slick {
  padding: 0 98px 0 98px;
  padding-bottom: 0px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 1400px) {
  .about02 .about_timeline .year_slick {
    padding: 0 0 0 50px;
  }
}
@media (max-width: 900px) {
  .about02 .about_timeline .year_slick {
    padding: 0px 60px;
    margin-bottom: 40px;
  }
}
.about02 .about_timeline .year_slick::before {
  content: "";
  display: block;
  position: absolute;
  top: 71px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #dbc2b0;
}
@media (max-width: 1400px) {
  .about02 .about_timeline .year_slick::before {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .about02 .about_timeline .year_slick::before {
    left: -10px;
    right: -10px;
    width: calc(100% + 20px);
  }
}
.about02 .about_timeline .year_slick .slick-slide {
  padding: 0 2.2916666667vw;
  position: relative;
}
.about02 .about_timeline .year_slick .slick-slide .year_top {
  width: 100%;
  height: 88px;
  position: relative;
}
.about02 .about_timeline .year_slick .slick-slide .year_top p {
  font-family: "Cormorant Infant", sans-serif;
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  color: #c8a48b;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 480px) {
  .about02 .about_timeline .year_slick .slick-slide .year_top p {
    font-size: 17px;
  }
}
.about02 .about_timeline .year_slick .slick-slide .year_top::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.about02 .about_timeline .year_slick .slick-slide .year_top::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #c1977a;
  background: #fff;
  position: absolute;
  bottom: 6px;
  left: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.about02 .about_timeline .year_slick .slick-slide .year_text {
  width: 100%;
  height: auto;
  padding: 22px 19px;
  background-color: transparent;
  border-radius: 10px;
  margin-top: 18px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.about02 .about_timeline .year_slick .slick-slide .year_text p:nth-child(1) {
  font-family: "Noto Serif TC", sans-serif;
  font-size: clamp(20px, 1.0416666667vw, 20px);
  line-height: clamp(20px, 1.0416666667vw, 20px);
  font-weight: 700;
  color: #795c47;
}
.about02 .about_timeline .year_slick .slick-slide .year_text p:nth-child(2) {
  font-family: "Noto Serif TC", serif, "Cormorant Infant";
  font-size: clamp(17px, 0.8854166667vw, 17px);
  line-height: clamp(30px, 1.5625vw, 30px);
  color: #4e3c2f;
  margin-top: 1.0416666667vw;
}
.about02 .about_timeline .year_slick .slick-slide:hover .year_top p {
  color: #84ccc9;
}
.about02 .about_timeline .year_slick .slick-slide:hover .year_top::after {
  border-color: #84ccc9;
  background: #f9f4f0;
}
.about02 .about_timeline .year_slick .slick-slide:hover .year_top::before {
  border-color: #84ccc9;
  background: #84ccc9;
}
.about02 .about_timeline .year_slick .slick-slide:hover .year_text {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.about02 .about_timeline .year_slick .slick-slide .slick-arrow {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #c1977a;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: initial;
  top: 11%;
}
@media (max-width: 1024px) {
  .about02 .about_timeline .year_slick .slick-slide .slick-arrow {
    top: 9%;
  }
}
@media (max-width: 900px) {
  .about02 .about_timeline .year_slick .slick-slide .slick-arrow {
    display: none !important;
  }
}
.about02 .about_timeline .year_slick .slick-slide .slick-arrow svg {
  width: 28px;
  height: 19px;
  fill: #c1977a;
}
.about02 .about_timeline .year_slick .slick-slide .slick-arrow.slick-prev {
  transform: scaleX(-1);
}
.about02 .about_timeline .history_slick {
  padding-left: 65px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 1024px) {
  .about02 .about_timeline .history_slick {
    padding-left: 0;
  }
}
.about02 .about_timeline .history_slick .slick-slide {
  padding-left: 20px;
}
@media (max-width: 1024px) {
  .about02 .about_timeline .history_slick .slick-slide {
    padding-left: 0;
  }
}
.about02 .about_timeline .history_slick .slick-slide::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #393939;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .about02 .about_timeline .history_slick .slick-slide::before {
    display: none;
  }
}
.about02 .year_slick_but {
  width: auto;
  height: 67px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (min-width: 901px) {
  .about02 .year_slick_but {
    display: none;
  }
}
.about02 .year_slick_but .button12 {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #c1977a;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: initial;
  top: 11%;
}
@media (max-width: 1024px) {
  .about02 .year_slick_but .button12 {
    top: 9%;
  }
}
.about02 .year_slick_but .button12 svg {
  width: 28px;
  height: 19px;
  fill: #c1977a;
}
.about02 .year_slick_but .button12.slick-prev {
  transform: scaleX(-1);
}
.about02.in .about_content .right .module_title {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 900px) {
  .about02.in .about_content .right .module_title {
    transform: translateY(0);
  }
}
.about02.in .about_content .right .module_desc {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}
@media (max-width: 900px) {
  .about02.in .about_content .right .module_desc {
    transform: translateY(0);
  }
}
.about02.in .about_content .right .button_set {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s, opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}
@media (max-width: 900px) {
  .about02.in .about_content .right .button_set {
    transition: all 0.3s, opacity 1s ease-out 1.5s, transform 1s ease-out 1.5s;
  }
}
.about02.in .about_content .left .pictures .big {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}
.about02.in .about_content .left .pictures .small {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease-out 1.2s, transform 1s ease-out 1.2s;
}
.about02.in .about_timeline .about_slick_3 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}
.about02.in .about_timeline .year_slick {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out 0.9s, transform 1s ease-out 0.9s;
}
.about02.in .about_timeline .history_slick {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out 1.2s, transform 1s ease-out 1.2s;
}
.about02.in .marquee01 {
  opacity: 1;
  transition: opacity 2s ease-out;
}
.about02 .about_bgbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.about02 .about_bgbox picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about02 .about_bgbox picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about02 .marquee01 {
  padding-top: 34px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-out;
}
.about02 .marquee01 p {
  width: max-content;
  font-size: 166px;
  font-weight: 700;
  font-family: "Cormorant Infant", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  animation: marquee01_move 10s linear infinite;
  transition: all 0.3s;
  background: linear-gradient(to bottom, rgb(243, 240, 236) 20%, rgba(243, 240, 236, 0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .about02 .marquee01 p {
    font-size: 100px;
  }
}
@media (max-width: 600px) {
  .about02 .marquee01 p {
    font-size: 80px;
  }
}
@media (max-width: 480px) {
  .about02 .marquee01 p {
    font-size: 60px;
  }
}
@keyframes marquee01_move {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

.product12 {
  position: relative;
  padding-top: 3.8541666667vw;
  padding-bottom: 4.4270833333vw;
  background: transparent;
}
@media (max-width: 1200px) {
  .product12 {
    padding: 60px 0;
  }
}
.product12 .product_bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%; /* ★改成100%，讓它能填滿父層 */
  top: 0;
  left: 0;
  pointer-events: none; /* 防止它擋住後面的點擊動作 */
}
.product12 .product_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product12 .honey_box {
  width: 22.0833333333vw;
  height: 16.71875vw;
  position: absolute;
  left: -4.1666666667vw;
  bottom: -4.1666666667vw;
  opacity: 0;
  transform: translateY(120px);
  transition: all 2s ease-in-out 0.25s;
  overflow: hidden;
}
@media (max-width: 640px) {
  .product12 .honey_box {
    width: 160px;
    height: 120px;
    left: -30px;
    bottom: -30px;
    opacity: 1;
    animation: beeFloating 8s ease-in-out infinite;
  }
}
.product12 .honey_box img {
  position: absolute;
  top: 0;
  right: 0;
  width: 22.0833333333vw;
  height: 16.71875vw;
  max-width: initial;
  object-fit: cover;
}
@media (max-width: 640px) {
  .product12 .honey_box img {
    width: 160px;
    height: 120px;
  }
}
.product12 .honey_box.in {
  opacity: 1;
  transform: translateY(0);
  transition: all 2s ease-in-out 0.25s;
}
.product12 .honey_box.floating {
  animation: beeFloating 8s ease-in-out infinite;
}
@keyframes beeFloating {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(0, -15px) rotate(3deg);
  }
  40% {
    transform: translate(0, 10px) rotate(-2deg);
  }
  60% {
    transform: translate(0, 5px) rotate(4deg);
  }
  80% {
    transform: translate(0, -10px) rotate(-3deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.product12 .high_area {
  position: relative;
  z-index: 1; /* 加上 z-index 確保內容一定在背景之上 */
}
.product12 .high_area .pro_nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  width: 100%;
  z-index: 2;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  .product12 .high_area .pro_nav {
    align-items: center;
    flex-direction: column;
    position: relative;
    top: unset;
    left: unset;
    margin-bottom: 40px;
  }
}
.product12 .high_area .pro_nav .module_title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 960px) {
  .product12 .high_area .pro_nav .module_title {
    text-align: center;
  }
}
.product12 .high_area .pro_nav .module_title p:nth-child(1) {
  color: #84ccc9;
  font-weight: 700;
  font-family: "Cormorant Infant", "Noto Serif TC", sans-serif;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  line-height: clamp(18px, 1.0416666667vw, 20px);
  text-transform: uppercase;
}
.product12 .high_area .pro_nav .module_title p:nth-child(2) {
  color: #795c47;
  font-weight: 600;
  font-family: "Cormorant Infant", sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 3.75vw, 72px);
  line-height: clamp(48px, 3.75vw, 72px);
  margin-top: 0.625vw;
}
.product12 .high_area .pro_nav .module_title p:nth-child(3) {
  color: #795c47;
  font-weight: 600;
  font-family: "Noto Serif TC", sans-serif;
  font-size: clamp(20px, 1.4583333333vw, 28px);
  line-height: clamp(20px, 1.4583333333vw, 28px);
  letter-spacing: 0.1em;
  margin-top: 1.4583333333vw;
}
.product12 .high_area .pro_nav .module_tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 1024px) {
  .product12 .high_area .pro_nav .module_tabs {
    display: none;
  }
}
.product12 .high_area .pro_nav .module_selector {
  position: relative;
}
@media (min-width: 1025px) {
  .product12 .high_area .pro_nav .module_selector {
    display: none;
  }
}
.product12 .high_area .pro_nav .module_selector .module_select_list {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  z-index: 2;
  transform: translateX(-50%);
}
.product12 .high_area .pro_nav .module_select {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 30px;
  background: #84ccc9;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (min-width: 1025px) {
  .product12 .high_area .pro_nav .module_select {
    display: none;
  }
}
.product12 .high_area .pro_nav .module_select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.product12 .high_area .pro_nav .module_select_list {
  display: none;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 1025px) {
  .product12 .high_area .pro_nav .module_select_list {
    display: none !important;
  }
}
.product12 .high_area .pro_nav .module_select_list li {
  color: #393939;
  font-size: 15px;
  text-align: center;
  padding: 11px 30px 12px;
  background: #fff;
}
.product12 .high_area .pro_nav .module_select_list li + li {
  border-top: 1px solid #ededed;
}
.product12 .high_area .pro_nav.in .module_tabs,
.product12 .high_area .pro_nav.in .module_select {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}
.product12 .high_area .pro_nav .module_tabs {
  pointer-events: auto;
}
@media (max-width: 1500px) {
  .product12 .high_area .pro_nav .module_tabs .category {
    width: max-content;
  }
}
.product12 .high_area .pro_nav .module_tabs .category.button06 {
  width: 163px;
  height: 45px;
  padding: 0px;
  padding-right: 0px;
  border: 1px solid #d9c4b4;
  transition: all 0.3s ease-in-out;
}
.product12 .high_area .pro_nav .module_tabs .category.button06 span {
  color: #8a7669;
  transition: all 0.3s ease-in-out;
}
.product12 .high_area .pro_nav .module_tabs .category.button06:hover, .product12 .high_area .pro_nav .module_tabs .category.button06.active {
  border: 1px solid #84ccc9;
  transition: all 0.3s ease-in-out;
}
.product12 .high_area .pro_nav .module_tabs .category.button06:hover span, .product12 .high_area .pro_nav .module_tabs .category.button06.active span {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.product12 .high_area .pro_nav .module_selector {
  pointer-events: auto;
}
@media (max-width: 960px) {
  .product12 .high_area .pro_nav .module_selector {
    width: 100%;
  }
}
@media (min-width: 961px) {
  .product12 .high_area .pro_nav .module_selector .module_select {
    width: 230px;
  }
}
.product12 .high_area .module_content {
  position: relative;
  width: 77.1875vw;
  margin: 0 auto;
  margin-top: 5.625vw;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s, opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 960px) {
  .product12 .high_area .module_content {
    padding-bottom: 75px;
  }
}
@media (max-width: 768px) {
  .product12 .high_area .module_content {
    margin: 0 -10px;
  }
}
@media (max-width: 640px) {
  .product12 .high_area .module_content {
    margin: 0 auto;
    width: 70%;
    padding-bottom: 0px;
  }
}
.product12 .high_area .module_content .pro_slick {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.product12 .high_area .module_content .pro_slick.active {
  opacity: 1;
  pointer-events: auto;
}
.product12 .high_area .module_content .pro_slick:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.product12 .high_area .module_content .pro_slick .slick-slide {
  padding: 0 3.0208333333vw;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .product12 .high_area .module_content .pro_slick .slick-slide {
    padding: 0 10px;
  }
}
@media (max-width: 440px) {
  .product12 .high_area .module_content .pro_slick .slick-slide {
    padding: 0;
  }
}
.product12 .high_area .module_content .pro_slick .slick-slide > div {
  display: flex;
  align-items: center;
  padding: 0px;
  background: transparent;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div {
    padding: 0;
  }
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a {
  display: block;
  width: 100%;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 35px;
  border-radius: 10px;
  border: 2px solid #c2a58c;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 1600px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a > div {
    margin-bottom: 30px;
  }
}
@media (max-width: 1440px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a > div {
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a > div {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a > div {
    margin-bottom: 15px;
  }
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div .hover_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(193, 151, 122, 0.02);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  z-index: -1;
  transition: all 2s;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div .hover_box .hover_icon {
  width: 114px;
  height: 79px;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div .hover_box .hover_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div .hover_box .hover_txt {
  font-size: clamp(21px, 1.09375vw, 21px);
  line-height: clamp(21px, 1.09375vw, 21px);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.075em;
  font-family: "Noto Serif TC", sans-serif;
  margin-top: 20px;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div:hover img {
  transform: scale(1.2);
  transition: all 2s ease-in-out;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a > div:hover .hover_box {
  background: rgba(193, 151, 122, 0.86);
  opacity: 1;
  transition: all 2s;
  z-index: 1;
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a .t1 {
  color: #000;
  font-size: 15px;
  text-align: center;
  margin-bottom: 7px;
  transition: all 0.3s;
}
@media (max-width: 1600px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t1 {
    margin-bottom: 5px;
  }
}
@media (max-width: 1440px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t1 {
    margin-bottom: 2px;
  }
}
@media (max-width: 768px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t1 {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t1 {
    font-size: 12px;
  }
}
.product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
  color: #67503f;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  transition: all 0.3s;
}
@media (max-width: 1600px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
    font-size: 24px;
  }
}
@media (max-width: 1440px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
    font-size: 23px;
  }
}
@media (max-width: 1200px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
    font-size: 21px;
  }
}
@media (max-width: 960px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .product12 .high_area .module_content .pro_slick .slick-slide > div > a .t2 {
    font-size: 16px;
  }
}
.product12 .high_area .module_content .pro_slick .slick-arrow {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: initial;
  top: 50%;
  transform: translateY(calc(-50% - 50px));
}
@media (max-width: 640px) {
  .product12 .high_area .module_content .pro_slick .slick-arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.product12 .high_area .module_content .pro_slick .slick-arrow svg {
  width: 28px;
  height: 19px;
  fill: #c1977a;
}
.product12 .high_area .module_content .pro_slick .slick-arrow.slick-prev {
  left: -55px;
  transform: scaleX(-1) translateY(calc(-50% - 50px));
}
@media (max-width: 640px) {
  .product12 .high_area .module_content .pro_slick .slick-arrow.slick-prev {
    transform: scaleX(-1) translateY(-50%);
  }
}
.product12 .high_area .module_content .pro_slick .slick-arrow.slick-next {
  right: -55px;
}
.product12 .high_area .module_content .pro_slick .slick-arrow:hover {
  background: #84ccc9;
}
.product12 .high_area .module_content .pro_slick .slick-arrow:hover svg {
  fill: #fff;
}
.product12 .high_area .module_content .button_set {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: 80px !important;
}
@media (max-width: 600px) {
  .product12 .high_area .module_content .button_set {
    margin-top: 40px !important;
  }
}
@media (min-width: 769px) {
  .product12 .high_area .module_content .button_set .arrowtype {
    display: none;
  }
}
.product12.in .high_area .pro_nav .module_title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.product12.in .high_area .pro_nav .module_tabs,
.product12.in .high_area .pro_nav .module_select {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}
.product12.in .high_area .module_content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s, opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.solution {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 5.8854166667vw;
  overflow: hidden;
}
@media (max-width: 640px) {
  .solution {
    padding-top: 80px;
  }
}
.solution .solution_bgbox {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* ★改成100%，讓它能填滿父層 */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  /* 防止它擋住後面的點擊動作 */
}
.solution .solution_bgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution .solution_content {
  position: relative;
  z-index: 1;
  /* 加上 z-index 確保內容一定在背景之上 */
  width: 82.7083333333vw;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  gap: 8.75vw;
  padding-bottom: 5.8854166667vw;
}
@media (max-width: 900px) {
  .solution .solution_content {
    flex-direction: column;
    align-items: center;
    gap: 4.1666666667vw;
  }
}
.solution .solution_content .left {
  width: calc(100% - 41.9791666667vw - 8.75vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .solution .solution_content .left {
    width: 100%;
  }
}
.solution .solution_content .left .module_title {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .solution .solution_content .left .module_title {
    width: 100%;
    order: 1;
    transform: translateY(40px);
  }
}
.solution .solution_content .left .module_title p:nth-child(1) {
  color: #84ccc9;
  font-weight: 600;
  font-family: "Cormorant Infant", sans-serif, "Noto Serif TC", sans-serif;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  line-height: clamp(18px, 1.0416666667vw, 20px);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .solution .solution_content .left .module_title p:nth-child(1) {
    text-align: center;
    width: 100%;
  }
}
.solution .solution_content .left .module_title p:nth-child(2) {
  color: #795c47;
  font-weight: 600;
  font-family: "Cormorant Infant", sans-serif;
  font-size: clamp(48px, 3.75vw, 72px);
  line-height: clamp(48px, 3.75vw, 72px);
  margin-top: 1.6666666667vw;
}
@media (max-width: 900px) {
  .solution .solution_content .left .module_title p:nth-child(2) {
    text-align: center;
    width: 100%;
  }
}
.solution .solution_content .left .module_title p:nth-child(3) {
  color: #795c47;
  font-weight: 600;
  font-family: "Noto Serif TC", sans-serif;
  font-size: clamp(20px, 1.4583333333vw, 28px);
  line-height: clamp(20px, 1.4583333333vw, 28px);
  letter-spacing: 0.1em;
  margin-top: 1.4583333333vw;
}
@media (max-width: 900px) {
  .solution .solution_content .left .module_title p:nth-child(3) {
    width: 100%;
    text-align: center;
  }
}
.solution .solution_content .left .module_desc {
  color: #4e3c2f;
  font-weight: 500;
  font-family: "Noto Serif TC", sans-serif, "Cormorant Infant";
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.3s, opacity 1s, transform 1s ease-in-out 0.9s;
  font-size: clamp(16px, 0.8854166667vw, 17px);
  line-height: clamp(30px, 1.7708333333vw, 34px);
  letter-spacing: 0.075em;
  margin-top: 1.6666666667vw;
}
@media (max-width: 900px) {
  .solution .solution_content .left .module_desc {
    order: 2;
    transform: translateY(40px);
  }
}
@media (max-width: 900px) {
  .solution .solution_content .left .button_set {
    display: none;
  }
}
.solution .solution_content .right {
  width: 41.9791666667vw;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2.6041666667vw;
}
@media (max-width: 900px) {
  .solution .solution_content .right {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.solution .solution_content .right .item_box {
  width: 100%;
  height: 313px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  background: #0b0b0b;
  border-radius: 10px;
  overflow: hidden;
  padding: 19px 23px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease-in-out 1.2s;
}
@media (max-width: 900px) {
  .solution .solution_content .right .item_box {
    height: 280px;
  }
}
@media (max-width: 640px) {
  .solution .solution_content .right .item_box {
    height: auto;
  }
}
.solution .solution_content .right .item_box .item_bg_img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.43;
}
.solution .solution_content .right .item_box .item_bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution .solution_content .right .item_box .item_content_box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.63);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 0px 58px;
}
@media (max-width: 900px) {
  .solution .solution_content .right .item_box .item_content_box {
    flex-direction: column;
    padding: 30px;
    gap: 10px;
  }
}
.solution .solution_content .right .item_box .item_content_box .item_text_box {
  width: calc(100% - 2.96875vw - 2.6041666667vw);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .solution .solution_content .right .item_box .item_content_box .item_text_box {
    width: 100%;
  }
}
.solution .solution_content .right .item_box .item_content_box .item_text_box .item_text_title {
  font-family: "Cormorant Infant", "Noto Serif TC", sans-serif;
  text-transform: uppercase;
  font-size: clamp(20px, 1.5625vw, 30px);
  line-height: clamp(20px, 1.5625vw, 30px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
.solution .solution_content .right .item_box .item_content_box .item_text_box .item_text_desc {
  font-family: "Cormorant Infant", "Noto Serif TC", sans-serif;
  font-size: clamp(16px, 0.8333333333vw, 16px);
  line-height: clamp(28px, 1.4583333333vw, 28px);
  letter-spacing: 0.075em;
  font-weight: 600;
  color: #fff;
}
.solution .solution_content .right .item_box .item_content_box .item_text_box_icon {
  width: 57px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .solution .solution_content .right .item_box .item_content_box .item_text_box_icon {
    width: 100%;
    justify-content: flex-end;
  }
}
.solution .solution_content .right .item_box .item_content_box .item_text_box_icon .slick-arrow {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: initial;
  top: 50%;
  transform: translateY(calc(-50% - 50px));
}
.solution .solution_content .right .item_box .item_content_box .item_text_box_icon .slick-arrow svg {
  width: 24px;
  height: 16px;
  fill: #c1977a;
}
.solution .solution_content .right .item_box .item_content_box .item_text_box_icon .slick-arrow.slick-prev {
  transform: scaleX(1);
}
.solution .solution_content .right .item_box .item_content_box .item_text_box_icon .slick-arrow.slick-next {
  right: -55px;
}
.solution .solution_content .right .item_box .item_content_box .item_text_box_icon .slick-arrow:hover {
  background: #84ccc9;
}
.solution .solution_content .right .item_box .item_content_box .item_text_box_icon .slick-arrow:hover svg {
  fill: #fff;
}
.solution .solution_content .right .item_box:hover .item_bg_img {
  opacity: 0.84;
}
.solution .solution_bg_txt {
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
  font-size: clamp(100px, 7.96875vw, 153px);
  line-height: clamp(100px, 7.96875vw, 153px);
  color: #eee8e2;
  top: 84px;
  left: -25px;
  font-weight: 700;
  font-family: "Cormorant Infant", sans-serif;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-lr;
  opacity: 0;
  transform: translateY(120px);
  transition: all 1s ease-in-out 0.5s;
}
@media (max-width: 640px) {
  .solution .solution_bg_txt {
    display: none;
  }
}
.solution.in .solution_content .left .module_title {
  opacity: 1;
  transform: translateX(0);
}
.solution.in .solution_content .left .module_desc {
  opacity: 1;
  transform: translateX(0);
}
.solution.in .solution_content .right .item_box {
  opacity: 1;
  transform: translateY(0);
}
.solution.in .solution_bg_txt {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-in-out 0.5s;
}
.solution .photo_marque {
  width: 1590px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .solution .photo_marque {
    width: 60%;
  }
}
.solution .photo_marque .slick-list {
  overflow: visible;
}
.solution .photo_marque .photo_marque_item {
  margin: 0 6px;
}
.solution .photo_marque .photo_marque_item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 1/1;
}

.service {
  height: 938px;
  padding-top: 5.8854166667vw;
  position: relative;
}
@media (max-width: 1440px) {
  .service {
    width: 100%;
    height: auto;
    padding-bottom: 5.8854166667vw;
    overflow: hidden;
  }
}
.service .service_bg_img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.service .service_bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service .service_content {
  width: 100%;
  max-width: 82.8125vw;
  height: auto;
  margin: 0 auto;
  padding-right: 4.1666666667vw;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
  gap: 8.75vw;
}
@media (max-width: 1680px) {
  .service .service_content {
    padding-right: 0px;
  }
}
@media (max-width: 1024px) {
  .service .service_content {
    gap: 50px;
  }
}
@media (max-width: 900px) {
  .service .service_content {
    flex-direction: column;
    max-width: 100%;
    padding: 60px 60px;
  }
}
@media (max-width: 640px) {
  .service .service_content {
    flex-direction: column;
    max-width: 100%;
    padding: 60px 30px;
  }
}
.service .service_content .left_box {
  width: 34.2708333333vw;
  height: 37.96875vw;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease-in-out 0.3s;
  position: relative;
}
@media (max-width: 1024px) {
  .service .service_content .left_box {
    width: calc(50% - 25px);
    height: auto;
  }
}
@media (max-width: 900px) {
  .service .service_content .left_box {
    width: 100%;
    height: 91.1458333333vw;
    order: 2;
  }
}
.service .service_content .left_box .left_item {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease-in-out 0.3s;
}
.service .service_content .left_box .left_item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.service .service_content .left_box .left_item.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease-in-out 0.3s;
}
.service .service_content .right_box {
  width: calc(100% - 34.2708333333vw - 8.75vw);
  padding-right: 3.9583333333vw;
}
@media (max-width: 1680px) {
  .service .service_content .right_box {
    padding-right: 0px;
  }
}
@media (max-width: 1024px) {
  .service .service_content .right_box {
    width: calc(50% - 25px);
    height: auto;
  }
}
@media (max-width: 900px) {
  .service .service_content .right_box {
    width: 100%;
    height: auto;
    order: 1;
  }
}
.service .service_content .right_box .module_title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease-in-out 0.6s;
}
@media (max-width: 960px) {
  .service .service_content .right_box .module_title {
    text-align: left;
  }
}
.service .service_content .right_box .module_title p:nth-child(1) {
  color: #84ccc9;
  font-weight: 700;
  font-family: "Noto Serif TC", sans-serif, "Cormorant Infant";
  font-size: clamp(18px, 1.0416666667vw, 20px);
  line-height: clamp(18px, 1.0416666667vw, 20px);
  text-transform: uppercase;
}
.service .service_content .right_box .module_title p:nth-child(2) {
  color: #795c47;
  font-weight: 700;
  font-family: "Cormorant Infant", sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 3.75vw, 72px);
  line-height: clamp(48px, 3.75vw, 72px);
  margin-top: 0.625vw;
}
.service .service_content .right_box .module_title .rbox_txt_box {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 1.4583333333vw;
}
@media (max-width: 640px) {
  .service .service_content .right_box .module_title .rbox_txt_box {
    margin-top: 20px;
    height: 165px;
  }
}
.service .service_content .right_box .module_title .rbox_txt_box .rbox_txt {
  position: absolute;
  color: #795c47;
  font-weight: 600;
  font-family: "Noto Serif TC", sans-serif;
  font-size: clamp(16px, 0.8854166667vw, 17px);
  line-height: clamp(32px, 1.6666666667vw, 32px);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out 0.3s;
}
.service .service_content .right_box .module_title .rbox_txt_box .rbox_txt.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease-in-out 0.3s;
}
.service .service_content .right_box .content_button_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2.9166666667vw;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease-in-out 0.6s;
}
@media (max-width: 960px) {
  .service .service_content .right_box .content_button_box {
    margin-top: 50px;
  }
}
.service .service_content .right_box .content_button_box .content_button {
  width: 100%;
  height: 4.6354166667vw;
  border-radius: 0px;
  background-color: transparent;
  transition: all 0.6s ease-in-out;
  padding: 0px 42px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  border-bottom: 1px solid #67503f;
}
@media (max-width: 960px) {
  .service .service_content .right_box .content_button_box .content_button {
    height: 7.7777777778vw;
  }
}
@media (max-width: 960px) {
  .service .service_content .right_box .content_button_box .content_button {
    height: 56px;
  }
}
.service .service_content .right_box .content_button_box .content_button .button_item {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.service .service_content .right_box .content_button_box .content_button .button_item .item_nuber {
  font-family: "Cormorant Infant", sans-serif;
  font-weight: 700;
  color: #67503f;
  font-size: clamp(20px, 1.5625vw, 30px);
  line-height: clamp(20px, 1.5625vw, 30px);
  text-transform: uppercase;
  margin-right: 1.0416666667vw;
}
.service .service_content .right_box .content_button_box .content_button .button_item .item_txt {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 600;
  color: #67503f;
  font-size: clamp(16px, 0.8854166667vw, 17px);
  line-height: clamp(16px, 0.8854166667vw, 17px);
}
.service .service_content .right_box .content_button_box .content_button .button_icon {
  width: 28px;
  height: 19px;
}
.service .service_content .right_box .content_button_box .content_button .button_icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #67503f;
}
.service .service_content .right_box .content_button_box .content_button:hover, .service .service_content .right_box .content_button_box .content_button.active {
  background-color: #edd2b8;
  border-bottom: 0px solid #67503f;
  border-radius: 10px;
}
.service .service_content .right_box .content_button_box .content_button:hover .button_item, .service .service_content .right_box .content_button_box .content_button.active .button_item {
  transition: all 0.6s ease-in-out;
}
.service .service_content .right_box .content_button_box .button_set {
  margin-top: 2.6041666667vw;
}
.service .service_content .right_box .content_button_box .button_set.end {
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .service .service_content .right_box .content_button_box .button_set.end {
    justify-content: center;
  }
}
.service .solution_bg_txt {
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
  font-size: clamp(100px, 7.96875vw, 153px);
  line-height: clamp(100px, 7.96875vw, 153px);
  color: #eee8e2;
  top: 9.2708333333vw;
  right: -25px;
  font-weight: 700;
  font-family: "Cormorant Infant", sans-serif;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-lr;
  opacity: 0;
  transform: translateY(120px);
  transition: all 1s ease-in-out 0.5s;
}
@media (max-width: 640px) {
  .service .solution_bg_txt {
    display: none;
  }
}
.service.in .service_content .left_box {
  opacity: 1;
  transform: translateY(0);
}
.service.in .service_content .right_box .module_title {
  opacity: 1;
  transform: translateY(0);
}
.service.in .service_content .right_box .content_button_box {
  opacity: 1;
  transform: translateY(0);
}
.service.in .solution_bg_txt {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-in-out 0.5s;
}

.news_list02 .news_item {
  width: 25%;
  padding-bottom: 50px;
}
@media (max-width: 1440px) {
  .news_list02 .news_item {
    width: 33.3333333333%;
  }
}
@media (max-width: 960px) {
  .news_list02 .news_item {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .news_list02 .news_item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .news_list02 .news_item {
    padding-bottom: 30px;
  }
}
.news_list02 .news_item.video_type .news_info, .news_list02 .news_item.album_type .news_info {
  position: relative;
}
.news_list02 .news_item.video_type .news_info::before, .news_list02 .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_list02 .news_item .news_info {
  height: 100%;
}
.news_list02 .news_item .news_info a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
}
.news_list02 .news_item .news_info a .news_img {
  position: relative;
  height: 0;
  padding-bottom: 57.9268292683%;
  overflow: hidden;
}
.news_list02 .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_list02 .news_item .news_info a .news_content {
  padding: 18px 0 0;
}
.news_list02 .news_item .news_info a .news_content .cate_date {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.news_list02 .news_item .news_info a .news_content .cate_date .cate {
  color: #fff;
  font-size: 15px;
  text-indent: 2px;
  letter-spacing: 2px;
  padding: 0 6px;
  margin-right: 15px;
  background: #84ccc9;
}
.news_list02 .news_item .news_info a .news_content .cate_date .date {
  color: #393939;
  font-size: 16px;
}
.news_list02 .news_item .news_info a .news_content .news_title {
  color: #393939;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news_list02 .news_item .news_info a .news_content .news_desc {
  color: #393939;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news_list02 .news_item .news_info:hover a .news_img img {
  transform: scale(1.05);
}
.news_list02 .news_item .news_info:hover a .news_content .news_title {
  color: #84ccc9;
}
.news_list02 .news_item .lightGallery {
  height: 0;
  overflow: hidden;
}
.news_list02 [class^=pagination] {
  padding: 30px 0;
}

.news_detail02 {
  padding-bottom: 60px;
}
.news_detail02 .news_top {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .news_detail02 .news_top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.news_detail02 .news_top .cate_date {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .news_detail02 .news_top .cate_date {
    margin-bottom: 20px;
  }
}
.news_detail02 .news_top .cate_date .cate {
  color: #fff;
  font-size: 15px;
  text-indent: 2px;
  letter-spacing: 2px;
  padding: 0 6px;
  background: #84ccc9;
}
.news_detail02 .news_top .cate_date .date {
  color: #393939;
  font-size: 16px;
  margin-left: 15px;
}
.news_detail02 .news_top .news_title {
  color: #393939;
  font-size: 25px;
  line-height: 1.2;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .news_detail02 .news_top .news_title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .news_detail02 .news_top .news_title {
    font-size: 26px;
  }
}
.news_detail02 .news_pic {
  margin-bottom: 40px;
}
.news_detail02 .news_pic img {
  margin: 0 auto;
}
.news_detail02 .back_to_list {
  margin-top: 60px;
}
.news_detail02 .back_to_list > * p {
  font-family: inherit;
}

.faq01 {
  padding-bottom: 60px;
}
.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;
  font-family: "Cormorant Infant", sans-serif;
  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: #84ccc9;
  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: #84ccc9 !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;
  font-family: "Cormorant Infant", sans-serif;
  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 {
  padding-top: 6.25vw;
  padding-bottom: 4.9479166667vw;
}
.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%;
}
.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: #84ccc9;
  border: 2px solid #84ccc9;
}
.contact01 .contact_right .contact_info a:hover p:nth-child(2) {
  color: #84ccc9;
}

.footer01 {
  position: relative;
}
.footer01 {
  padding-top: 5.46875vw;
  padding-bottom: 4.7395833333vw;
  color: #b2b2b2;
  background-color: #c1977a;
}
@media (max-width: 1200px) {
  .footer01 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 640px) {
  .footer01 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footer01 a {
  color: #b2b2b2;
}
.footer01 .wider_container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .footer01 .wider_container {
    flex-direction: column;
  }
}
.footer01 .logo {
  width: 10vw;
}
@media (max-width: 1200px) {
  .footer01 .logo {
    margin: auto;
  }
}
@media (max-width: 960px) {
  .footer01 .logo {
    width: 200px;
  }
}
@media (max-width: 640px) {
  .footer01 .logo {
    width: 160px;
  }
}
.footer01 .contact-info {
  width: 56.25vw;
  display: inline-flex;
  justify-content: space-between;
  gap: 12px 7.3958333333vw;
  padding: 0 4.6875vw;
  padding-top: 3.3854166667vw;
  padding-bottom: 2.1875vw;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .footer01 .contact-info {
    align-items: center;
    flex-direction: column;
    gap: 20px 0;
    margin-top: 25px;
    padding: 0;
    padding-left: 0;
  }
}
@media (max-width: 960px) {
  .footer01 .contact-info {
    width: 100%;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 961px) {
  .footer01 .contact-info .contact-info__item br {
    display: none;
  }
}
.footer01 .contact-info .contact-info__item:nth-child(odd) {
  width: 17.1875vw;
}
@media (max-width: 1440px) {
  .footer01 .contact-info .contact-info__item:nth-child(odd) {
    width: 20vw;
  }
}
@media (max-width: 1024px) {
  .footer01 .contact-info .contact-info__item:nth-child(odd) {
    width: 100%;
    text-align: center;
  }
}
.footer01 .contact-info .contact-info__item:nth-child(even) {
  width: 19.0625vw;
}
@media (max-width: 1024px) {
  .footer01 .contact-info .contact-info__item:nth-child(even) {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 960px) {
  .footer01 .contact-info .contact-info__item:nth-child(1) {
    order: 1;
  }
}
@media (max-width: 960px) {
  .footer01 .contact-info .contact-info__item:nth-child(2) {
    order: 3;
  }
}
@media (max-width: 960px) {
  .footer01 .contact-info .contact-info__item:nth-child(3) {
    order: 2;
  }
}
.footer01 .contact-info .contact-info__item:nth-child(4) {
  line-height: 24px;
}
@media (max-width: 960px) {
  .footer01 .contact-info .contact-info__item:nth-child(4) {
    display: none;
  }
}
@media (max-width: 1200px) {
  .footer01 .contact-info .contact-info__item {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.footer01 .contact-info .contact-info__item__content {
  font-size: 15px;
  line-height: 15px;
  color: #ffffff;
  letter-spacing: 0.075em;
}
.footer01 .contact-info .contact-info__item__content:hover {
  color: #84ccc9;
}
.footer01 .contact-info .contact-info__item__title {
  color: #fff;
}
.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: #84ccc9;
}
.footer01 .copyright {
  width: 100%;
  color: #fff;
  font-size: 14px;
  align-self: flex-start;
}
@media (max-width: 1200px) {
  .footer01 .copyright {
    order: 5;
    align-self: unset;
    text-align: center;
  }
}
.footer01 .copyright br {
  display: none;
}
.footer01 .copyright a {
  color: #fff;
}
.footer01 .copyright a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer01 .social-link {
  width: calc(100% - 10vw - 9.4791666667vw - 17.1875vw - 19.0625vw - 7.3958333333vw - 6.25vw);
  display: flex;
  align-items: center;
  padding-left: 5.2083333333vw;
  gap: 15px;
  border-left: 1px solid rgba(218, 218, 218, 0.7);
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .footer01 .social-link {
    order: 2;
    justify-content: center;
    padding-top: 0;
    margin-top: 24px;
  }
}
@media (max-width: 960px) {
  .footer01 .social-link {
    width: 100%;
    justify-content: center;
    padding: 0;
    margin-top: 30px;
    border-left: 0px solid rgba(218, 218, 218, 0.7);
    border-top: 1px solid rgba(218, 218, 218, 0.7);
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.footer01 .social-link a svg {
  display: block;
  width: auto;
  height: 20px;
  fill: #fff;
}
.footer01 .social-link a:hover svg {
  fill: #84ccc9;
}
.footer01 .social-link .button_all_box {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 6px;
}
.footer01 .social-link .button_all_box .button_item {
  width: 132px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 15px;
  color: #fff;
  border: 1px solid #fff;
  gap: 6px;
  border-radius: 10px;
}
.footer01 .social-link .button_all_box .button_item a {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 15px;
  color: #fff;
  gap: 6px;
}
.footer01 .social-link .button_all_box .button_item a .icon_box {
  width: 21px;
  height: 19px;
}
.footer01 .social-link .button_all_box .button_item a .icon_box svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.footer01 .social-link .button_all_box .social-link_all {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 15px;
  color: #fff;
  gap: 6px;
  margin-top: 14px;
}
@media (max-width: 960px) {
  .footer01 .social-link .button_all_box .social-link_all {
    display: none;
  }
}
.footer01 .social-link .button_all_box .social-link_all .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 .button_all_box .social-link_all .social-link__title {
    width: 100%;
  }
}
.footer01 .social-link .button_all_box .social-link_all .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 .button_all_box .social-link_all .social-link__item {
  font-size: 16px;
  color: #ffffff;
}
.footer01 .social-link .button_all_box .social-link_all .social-link__item:hover {
  color: #b2b2b2;
}
.footer01 .social-link .button_all_box .social-link_all .social-link__item .adshop-line {
  position: relative;
  top: 2px;
  font-size: 26px;
}
.footer01 .copyright_mb {
  width: 100%;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 961px) {
  .footer01 .copyright_mb {
    display: none;
  }
}
.footer01 .copyright_mb a {
  color: #fff;
}
.footer01 .social-link_all_mb {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 15px;
  color: #fff;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media (min-width: 961px) {
  .footer01 .social-link_all_mb {
    display: none;
  }
}
.footer01 .social-link_all_mb svg {
  fill: #FFF;
}
.footer01 .social-link_all_mb svg:hover {
  fill: #84ccc9;
}
.footer01 .social-link_all_mb .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_all_mb .social-link__title {
    width: 100%;
  }
}
.footer01 .social-link_all_mb .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_all_mb .social-link__item {
  font-size: 16px;
  color: #ffffff;
}
.footer01 .social-link_all_mb .social-link__item:hover {
  color: #b2b2b2;
}
.footer01 .social-link_all_mb .social-link__item .adshop-line {
  position: relative;
  top: 2px;
  font-size: 26px;
}

.product-list01 .container {
  max-width: 1700px;
}
.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: 18px;
  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: 66.6666666667%;
  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: 18px;
  }
}
.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: 18px;
  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: 18px;
}
@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;
}

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

.product-detail01 .addition_slick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .product-detail01 .addition_slick {
    margin: 0 -25px;
  }
}
.product-detail01 .addition_slick .left {
  width: calc(100% - 100px);
  padding-right: 3.6458333333vw;
}
@media (max-width: 540px) {
  .product-detail01 .addition_slick .left {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 540px) {
  .product-detail01 .addition_slick .left .big_slide {
    margin: 0 -30px;
  }
}
@media (max-width: 480px) {
  .product-detail01 .addition_slick .left .big_slide {
    margin: 0 -25px;
  }
}
.product-detail01 .addition_slick .left .big_slide .slick-slide img {
  width: 100%;
}
.product-detail01 .addition_slick .left .big_slide .slick-dots {
  flex-direction: column;
  bottom: 10px;
  left: unset;
  right: 10px;
  transform: unset;
}
.product-detail01 .addition_slick .left .big_slide .slick-dots li button {
  width: 4px;
  height: 4px;
  background: #fff;
}
.product-detail01 .addition_slick .left .big_slide .slick-dots li.slick-active button {
  background: #84ccc9;
}
.product-detail01 .addition_slick .right {
  width: 100px;
}
@media (max-width: 540px) {
  .product-detail01 .addition_slick .right {
    display: none;
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 540px) {
  .product-detail01 .addition_slick .right .small_slide {
    padding: 0 15px;
  }
}
.product-detail01 .addition_slick .right .small_slide .slick-slide {
  padding: 10px 0;
}
@media (max-width: 1366px) {
  .product-detail01 .addition_slick .right .small_slide .slick-slide {
    padding: 5px 0;
  }
}
@media (max-width: 540px) {
  .product-detail01 .addition_slick .right .small_slide .slick-slide {
    padding: 0 7.5px;
  }
}
.product-detail01 .addition_slick .right .small_slide .slick-slide p {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}
.product-detail01 .addition_slick .right .small_slide .slick-slide p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail01 .addition_slick .right .small_slide .slick-slide.slick-current p {
  border: 1px solid #000;
}
.product-detail01 .addition_slick .right .small_slide .slick-arrow svg {
  display: block;
  width: auto;
  height: 25px;
  fill: #393939;
}
@media (min-width: 541px) {
  .product-detail01 .addition_slick .right .small_slide .slick-arrow {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .product-detail01 .addition_slick .right .small_slide .slick-arrow.slick-prev {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .product-detail01 .addition_slick .right .small_slide .slick-arrow.slick-prev svg {
    transform: scale(-1, 1) rotate(-90deg);
  }
  .product-detail01 .addition_slick .right .small_slide .slick-arrow.slick-next {
    top: unset;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%);
  }
  .product-detail01 .addition_slick .right .small_slide .slick-arrow.slick-next svg {
    transform: rotate(90deg);
  }
}
@media (max-width: 540px) {
  .product-detail01 .addition_slick .right .small_slide .slick-arrow {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .product-detail01 .addition_slick .right .small_slide .slick-arrow.slick-prev svg {
    transform: scale(-1, 1);
  }
}
.product-detail01 .addition_tabs {
  display: flex;
  margin-top: 40px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
@media (max-width: 1200px) {
  .product-detail01 .addition_tabs {
    position: sticky;
    top: 70px;
    background-color: #fff;
    z-index: 1;
  }
}
.product-detail01 .addition_tabs div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  color: #393939;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
}
.product-detail01 .addition_tabs div + div {
  background-image: linear-gradient(to bottom, #dedede 0%, #dedede 100%);
  background-size: 1px 50%;
  background-position: left center;
  background-repeat: no-repeat;
}
.product-detail01 .addition_tabs div.active {
  border-bottom: 1px solid #9c9c9e;
}
.product-detail01 .tabs_content {
  margin: 20px 0;
}
.product-detail01 .tabs_content > div + div {
  display: none;
}
.product-detail01 .social-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
}
.product-detail01 .social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.product-detail01 .social-link a svg {
  display: block;
  width: auto;
  height: 12px;
  fill: #ffffff;
}
.product-detail01 .social-link a i {
  color: #ffffff;
}
.product-detail01 .social-link a.fb {
  background-color: #0866FF;
}
.product-detail01 .social-link a.line {
  background-color: #07BE5B;
}
.product-detail01 .social-link a.tt {
  background-color: #5DA9DD;
}
.product-detail01 .social-link a.in {
  background-color: #0A66C2;
}
.product-detail01 .social-link a.link {
  background-color: #1575f0;
}
.product-detail01 .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-detail01 .social-link__item:hover {
  background-color: #414042;
}
.product-detail01 .dropdown-box {
  border-top-color: rgba(178, 178, 178, 0.5);
}
.product-detail01 .dropdown-box__title::before, .product-detail01 .dropdown-box__title::after {
  background-color: rgba(178, 178, 178, 0.5);
}
@media (min-width: 1201px) {
  .product-detail01 .container {
    display: flex;
    align-items: flex-start;
    max-width: 1920px;
    padding: 0;
  }
}
@media (min-width: 1201px) {
  .product-detail01 .product__img-box {
    width: calc(100% - 700px);
  }
}
.product-detail01 .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-detail01 .product__img-box .img-box__list .slick-dots {
    display: none !important;
  }
}
.product-detail01 .product__text-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}
@media (min-width: 1201px) {
  .product-detail01 .product__text-box {
    width: 700px;
    position: sticky;
    top: 150px;
    z-index: 9;
    padding: 70px 50px 50px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }
  .product-detail01 .product__text-box::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .product-detail01 .product__text-box::-webkit-scrollbar:vertical {
    width: 5px;
  }
  .product-detail01 .product__text-box::-webkit-scrollbar:horizontal {
    height: 10px;
  }
  .product-detail01 .product__text-box::-webkit-scrollbar-thumb {
    background-color: #999999;
    border-radius: 3px;
    border: 0;
  }
  .product-detail01 .product__text-box::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #e0e0e0;
  }
}
@media (max-width: 1200px) {
  .product-detail01 .product__text-box {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}
.product-detail01 .product__text-box .text-box__class {
  width: 100%;
  margin-bottom: 10px;
  color: #939598;
}
.product-detail01 .product__text-box .text-box__title {
  width: 100%;
  font-size: 20px;
}
.product-detail01 .product__text-box .text-box__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 15px;
  width: 100%;
  font-size: 20px;
  margin-top: 5px;
}
.product-detail01 .product__text-box .text-box__tag {
  width: 100%;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #939598;
}
.product-detail01 .product__text-box .text-box__tag .tag {
  margin-right: 5px;
}
.product-detail01 .product__text-box .text-box__tag .tag:not(:first-child) {
  margin-top: 10px;
}
.product-detail01 .product__text-box .text-box__tag + .text-box__colors, .product-detail01 .product__text-box .text-box__tag + .text-box__type, .product-detail01 .product__text-box .text-box__tag + .text-box__selects {
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .product-detail01 .product__text-box .text-box__tag + .text-box__colors, .product-detail01 .product__text-box .text-box__tag + .text-box__type, .product-detail01 .product__text-box .text-box__tag + .text-box__selects {
    margin-top: 30px;
  }
}
.product-detail01 .product__text-box .text-box__colors, .product-detail01 .product__text-box .text-box__type {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
@media (min-width: 1201px) {
  .product-detail01 .product__text-box .text-box__colors .color-text,
  .product-detail01 .product__text-box .text-box__colors .type-text, .product-detail01 .product__text-box .text-box__type .color-text,
  .product-detail01 .product__text-box .text-box__type .type-text {
    width: 100%;
    padding-left: 5px;
  }
}
@media (max-width: 1200px) {
  .product-detail01 .product__text-box .text-box__colors .color-text,
  .product-detail01 .product__text-box .text-box__colors .type-text, .product-detail01 .product__text-box .text-box__type .color-text,
  .product-detail01 .product__text-box .text-box__type .type-text {
    order: 2;
    align-self: center;
  }
}
@media (max-width: 1200px) {
  .product-detail01 .product__text-box .text-box__colors .color-picker:last-child,
  .product-detail01 .product__text-box .text-box__colors .type-picker:last-child, .product-detail01 .product__text-box .text-box__type .color-picker:last-child,
  .product-detail01 .product__text-box .text-box__type .type-picker:last-child {
    margin-right: auto;
  }
}
.product-detail01 .product__text-box .text-box__colors .color-picker__text,
.product-detail01 .product__text-box .text-box__colors .type-picker__text, .product-detail01 .product__text-box .text-box__type .color-picker__text,
.product-detail01 .product__text-box .text-box__type .type-picker__text {
  display: none;
}
.product-detail01 .product__text-box .text-box__text-btns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
  margin-top: 5px;
}
.product-detail01 .product__text-box .text-box__text-btns .addto-favorite:not(.active),
.product-detail01 .product__text-box .text-box__text-btns .remove-favorite:not(.active) {
  display: none;
}
.product-detail01 .product__text-box .text-box__selects {
  width: 100%;
  margin-top: 15px;
}
.product-detail01 .product__text-box .text-box__btns {
  width: 100%;
  padding: 20px 0;
  background: #fff;
}
@media (max-width: 1200px) {
  .product-detail01 .product__text-box .text-box__btns {
    position: sticky;
    bottom: 0;
  }
}
.product-detail01 .product__text-box .text-box__btns > button:not(:last-child) {
  color: #fff;
  background-color: #000;
}
.product-detail01 .product__text-box .text-box__dropdown {
  width: 100%;
  margin-top: 30px;
  border-bottom: 1px solid rgba(178, 178, 178, 0.5);
}
.product-detail01 .product__text-box .social-link {
  width: 100%;
  margin-top: 30px;
}
.product-detail01 .product__text-box .social-link::before {
  content: "Share us";
  display: block;
}
.product-detail01 .product-detail_bottom-btns {
  position: sticky;
  bottom: 0;
  z-index: 9;
  padding: 20px 30px;
  background-color: #ffffff;
}
@media (min-width: 1201px) {
  .product-detail01 .product-detail_bottom-btns {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .product-detail01 .product-detail_bottom-btns {
    padding: 20px 25px;
  }
}
.product-detail01 .product-detail_bottom-btns button:not(:last-child) {
  color: #fff;
  background-color: #000;
}

.product_list02 {
  padding-top: 6.25vw;
  padding-bottom: 4.9479166667vw;
}
.product_list02 .container {
  max-width: 1700px;
}
.product_list02 .product-list01 {
  padding-top: 0;
}
.product_list02 .product-list01 .container {
  padding: 0;
}
.product_list02 .product-list01 .card-list__item__text-box {
  gap: 8px;
}
.product_list02 .product-list01 .card-list__item__text-box .text-box__size {
  margin: 0;
}
@media (max-width: 640px) {
  .product_list02 .product-list01 .card-list__item__text-box .text-box__text-btns {
    margin-top: 0;
  }
}
.product_list02 .pro_left {
  width: 280px;
  margin-right: 50px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .product_list02 .pro_left {
    width: 100%;
    margin-right: unset;
    margin-bottom: 40px;
  }
}
.product_list02 .pro_left > div {
  position: sticky;
  top: 110px;
}
.product_list02 .pro_left > div > p {
  color: #393939;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
}
.product_list02 .pro_left > div > p span {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .product_list02 .pro_left .catalog_type {
    display: none;
  }
}
.product_list02 .pro_left .catalog_type .catalog_menu > li {
  border-bottom: 1px solid #e7e7e7;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 10px 0;
  transition: all 0.3s;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li > a:hover, .product_list02 .pro_left .catalog_type .catalog_menu > li > a.active {
  color: #84ccc9;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li.moremenu {
  position: relative;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li.moremenu::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a {
  position: relative;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before, .product_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #A7A9AC;
  transition: all 0.3s ease-out;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.product_list02 .pro_left .catalog_type .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.product_list02 .pro_left .catalog_type .catalog_menu > li ul {
  display: none;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 10px 0 10px 10px;
  border-top: 1px solid #e7e7e7;
  transition: all 0.3s;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li ul li a:hover, .product_list02 .pro_left .catalog_type .catalog_menu > li ul li a.active {
  color: #84ccc9;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li ul li:first-child a {
  border-top: 1px solid #e7e7e7;
}
.product_list02 .pro_left .catalog_type .catalog_menu > li ul li ul a {
  padding: 10px 0 10px 25px;
}
@media (min-width: 1025px) {
  .product_list02 .pro_left .catalog_type_mb {
    display: none;
  }
}
.product_list02 .pro_left .catalog_type_mb .catalog_btn {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 35px 10px 25px;
  background: #84ccc9;
}
.product_list02 .pro_left .catalog_type_mb .catalog_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu {
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li + li {
  border-top: 1px solid #ededed;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
  padding: 10px 25px;
  background: #fff;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li > a.active {
  background: #ededed;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a {
  position: relative;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before, .product_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #a7a9ac;
  transition: all 0.3s ease-out;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li ul {
  display: none;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 11px 25px 12px;
  background: #fff;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li ul li a.active {
  background: #ededed;
}
.product_list02 .pro_left .catalog_type_mb .catalog_menu > li ul ul {
  padding-left: 25px;
}
.product_list02 .pro_right {
  width: calc(100% - 330px);
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .product_list02 .pro_right {
    width: 100%;
  }
}

/* 下面是宜瑾的原始內容 */
.product_list02 .card-list {
  margin: 0 -10px;
}
@media (max-width: 640px) {
  .product_list02 .card-list {
    margin: 0 -5px;
  }
}
.product_list02 .card-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.product_list02 .card-list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.product_list02 .card-list__item {
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 1440px) {
  .product_list02 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 1200px) {
  .product_list02 .card-list__item {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .product_list02 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 720px) {
  .product_list02 .card-list__item {
    width: 50%;
    padding: 0 5px;
  }
}
.product_list02 .card-list__item__img-box {
  position: relative;
  display: block;
}
.product_list02 .card-list__item__img-box.box--soldout {
  position: relative;
}
.product_list02 .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_list02 .card-list__item__img-box.box--soldout::after {
    font-size: 16px;
  }
}
.product_list02 .card-list__item__img-box[data-top]::before {
  content: "top " attr(data-top);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 18px;
  line-height: 20px;
  padding: 0 8px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #939598;
}
@media (max-width: 640px) {
  .product_list02 .card-list__item__img-box[data-top]::before {
    top: 10px;
    right: 10px;
    font-size: 12px;
    line-height: 18px;
  }
}
.product_list02 .card-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}
.product_list02 .card-list__item__img-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_list02 .card-list__item__img-box a.multi img {
  transition: all 0.8s;
}
.product_list02 .card-list__item__img-box a.multi img:nth-child(1) {
  opacity: 1;
}
.product_list02 .card-list__item__img-box a.multi img:nth-child(2) {
  opacity: 0;
}
.product_list02 .card-list__item__img-box a.multi:hover img:nth-child(1) {
  opacity: 0;
}
.product_list02 .card-list__item__img-box a.multi:hover img:nth-child(2) {
  opacity: 1;
}
.product_list02 .card-list__item__text-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.product_list02 .card-list__item .text-box__title {
  width: 50%;
  flex-grow: 1;
  color: #414042;
}
@media (max-width: 1200px) {
  .product_list02 .card-list__item .text-box__title {
    font-size: 18px;
  }
}
@media (max-width: 540px) {
  .product_list02 .card-list__item .text-box__title {
    width: 100%;
    order: 2;
  }
}
.product_list02 .card-list__item .text-box__tag {
  max-width: 50%;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
  line-height: 20px;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .product_list02 .card-list__item .text-box__tag {
    line-height: 18px;
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .product_list02 .card-list__item .text-box__tag {
    order: 1;
  }
}
.product_list02 .card-list__item .text-box__size {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  width: 100%;
  margin: 14px 0 0;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .product_list02 .card-list__item .text-box__size {
    margin: 10px 0 0;
  }
}
@media (max-width: 540px) {
  .product_list02 .card-list__item .text-box__size {
    order: 3;
  }
}
.product_list02 .card-list__item .text-box__size.text-btns .text-btn:not(.active) {
  color: #b2b2b2;
  cursor: auto;
}
.product_list02 .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: 540px) {
  .product_list02 .card-list__item .text-box__price {
    order: 4;
  }
}
.product_list02 .card-list__item .text-box__text-btns {
  display: flex;
  gap: 4px 12px;
  flex-shrink: 0;
  max-width: 70px;
  margin-left: auto;
}
@media (max-width: 540px) {
  .product_list02 .card-list__item .text-box__text-btns {
    order: 4;
  }
}
.product_list02 .card-list__item .text-box__text-btns .text-btn {
  font-size: 20px;
}
@media (max-width: 640px) {
  .product_list02 .card-list__item .text-box__text-btns .text-btn {
    font-size: 16px;
  }
}
.product_list02 .card-list__item .text-box__text-btns .text-btn:hover .adshop-heart-h {
  color: #e64d4d;
}
.product_list02 .card-list__item .text-box__text-btns .text-btn .adshop-heart-f {
  color: #e64d4d;
}
.product_list02 .card-list__item .text-box__text-btns .addto-favorite:not(.active),
.product_list02 .card-list__item .text-box__text-btns .remove-favorite:not(.active) {
  display: none;
}
.product_list02 .best-item {
  margin-bottom: 40px;
}
.product_list02 .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_list02 .best-item__list {
  margin-top: 55px;
}
@media (max-width: 640px) {
  .product_list02 .best-item__list {
    margin-top: 30px;
  }
}
.product_list02 .filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  .product_list02 .filter {
    margin-bottom: 20px;
  }
}
.product_list02 .filter-more__btn {
  font-weight: 500;
  color: #414042;
  margin-right: 45px;
}
@media (max-width: 640px) {
  .product_list02 .filter-more__btn {
    margin-right: 20px;
  }
}
.product_list02 .filter-order {
  position: relative;
  z-index: 10;
}
.product_list02 .filter-order:hover .filter-order__drowdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.product_list02 .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_list02 .filter-order__toggler {
    justify-content: center;
    border: 1px solid #414042;
    padding: 8px 24px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .product_list02 .filter-order__toggler {
    min-width: auto;
    padding: 0 20px;
    line-height: 20px;
  }
}
.product_list02 .filter-order__toggler__text {
  padding: 8px 24px;
}
@media (max-width: 1200px) {
  .product_list02 .filter-order__toggler__text {
    padding: 0;
  }
}
.product_list02 .filter-order__toggler__icon {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .product_list02 .filter-order__toggler__icon {
    display: none;
  }
}
.product_list02 .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_list02 .filter-order__drowdown-item {
  padding: 8px 22px;
  color: #939598;
  transition: all 0.4s ease;
}
.product_list02 .filter-order__drowdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(147, 149, 152, 0.25);
}
.product_list02 .filter-order__drowdown-item:hover {
  color: #414042;
  border-bottom-color: #b2b2b2;
  background-color: #b2b2b2;
}

.product_detail02 {
  padding-top: 6.25vw;
  padding-bottom: 4.9479166667vw;
}
@media (max-width: 480px) {
  .product_detail02 {
    margin-top: -60px;
  }
}
.product_detail02 .container {
  max-width: 1700px;
}
.product_detail02 .pro_left {
  width: 280px;
  margin-right: 50px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_left {
    display: none;
    width: 100%;
    margin-right: unset;
    margin-bottom: 40px;
  }
}
.product_detail02 .pro_left > div {
  position: sticky;
  top: 110px;
}
.product_detail02 .pro_left > div > p {
  color: #393939;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
}
.product_detail02 .pro_left > div > p span {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_left .catalog_type {
    display: none;
  }
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li {
  border-bottom: 1px solid #e7e7e7;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 10px 0;
  transition: all 0.3s;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li > a:hover, .product_detail02 .pro_left .catalog_type .catalog_menu > li > a.active {
  color: #84ccc9;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li.moremenu {
  position: relative;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li.moremenu::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li.moremenu > a {
  position: relative;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before, .product_detail02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #A7A9AC;
  transition: all 0.3s ease-out;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li ul {
  display: none;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 10px 0 10px 10px;
  border-top: 1px solid #e7e7e7;
  transition: all 0.3s;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li ul li a:hover, .product_detail02 .pro_left .catalog_type .catalog_menu > li ul li a.active {
  color: #84ccc9;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li ul li:first-child a {
  border-top: 1px solid #e7e7e7;
}
.product_detail02 .pro_left .catalog_type .catalog_menu > li ul li ul a {
  padding: 10px 0 10px 25px;
}
@media (min-width: 1025px) {
  .product_detail02 .pro_left .catalog_type_mb {
    display: none;
  }
}
.product_detail02 .pro_left .catalog_type_mb .catalog_btn {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 35px 10px 25px;
  background: #84ccc9;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu {
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li + li {
  border-top: 1px solid #ededed;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
  padding: 10px 25px;
  background: #fff;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li > a.active {
  background: #ededed;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a {
  position: relative;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before, .product_detail02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #a7a9ac;
  transition: all 0.3s ease-out;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li ul {
  display: none;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 11px 25px 12px;
  background: #fff;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li ul li a.active {
  background: #ededed;
}
.product_detail02 .pro_left .catalog_type_mb .catalog_menu > li ul ul {
  padding-left: 25px;
}
.product_detail02 .pro_right {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: calc(100% - 330px);
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_right {
    width: 100%;
  }
}
.product_detail02 .pro_right .content_left {
  display: flex;
  flex-wrap: wrap;
  width: 62.4%;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left {
    width: 100%;
  }
}
.product_detail02 .pro_right .content_left .pro_slick {
  width: 89.7435897436%;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_slick {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-list {
    margin: 0 -25px;
  }
}
.product_detail02 .pro_right .content_left .pro_slick .slick-slide a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-slide a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
  left: -50px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -48px;
  }
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -45px;
  }
}
@media (max-width: 768px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -30px;
  }
}
@media (max-width: 480px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -28px;
  }
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
  right: -50px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -48px;
  }
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -45px;
  }
}
@media (max-width: 768px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -30px;
  }
}
@media (max-width: 480px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -28px;
  }
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow svg {
  width: auto;
  height: 100%;
  fill: #000;
  transition: all 0.1s;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow:hover svg {
  fill: #84ccc9;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow.white svg {
  fill: #fff;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow.white:hover svg {
  fill: #84ccc9;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-arrow {
  width: 20px !important;
  height: 20px !important;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_slick .slick-arrow {
    display: none !important;
  }
}
.product_detail02 .pro_right .content_left .pro_slick .slick-dots {
  flex-direction: column;
  bottom: 10px;
  left: unset;
  right: 10px;
  transform: unset;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-dots li button {
  width: 4px;
  height: 4px;
  background: #fff;
}
.product_detail02 .pro_right .content_left .pro_slick .slick-dots li.slick-active button {
  background: #84ccc9;
}
.product_detail02 .pro_right .content_left .pro_thumbnail {
  width: 7.0512820513%;
  margin: -3px 0 -3px 3.2051282051%;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_thumbnail {
    display: none;
    width: 100%;
    margin: 15px 0 0;
  }
}
.product_detail02 .pro_right .content_left .pro_thumbnail .slick-slide {
  padding: 3px 0;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_thumbnail .slick-slide {
    padding: 0 5px;
  }
}
.product_detail02 .pro_right .content_left .pro_thumbnail .slick-slide a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  border: 1px solid transparent;
  overflow: hidden;
}
.product_detail02 .pro_right .content_left .pro_thumbnail .slick-slide a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .product_detail02 .pro_right .content_left .pro_thumbnail .slick-slide a:hover {
    border: 1px solid #999;
  }
}
.product_detail02 .pro_right .content_left .pro_thumbnail .slick-slide.slick-current a {
  border: 1px solid #999;
}
.product_detail02 .pro_right .content_left .pro_nav {
  margin-top: 40px;
}
.product_detail02 .pro_right .content_left .pro_nav,
.product_detail02 .pro_right .content_left .pro_name,
.product_detail02 .pro_right .content_left .pro_price {
  width: 100%;
}
@media (min-width: 841px) {
  .product_detail02 .pro_right .content_left .pro_nav,
  .product_detail02 .pro_right .content_left .pro_name,
  .product_detail02 .pro_right .content_left .pro_price {
    display: none;
  }
}
.product_detail02 .pro_right .content_left .pro_content {
  width: 100%;
  margin-top: 5.2083333333vw;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_left .pro_content {
    margin-top: 40px;
  }
}
.product_detail02 .pro_right .content_left .pro_content .pro_tab {
  display: flex;
  background-image: linear-gradient(to right, #dcdcdc, #dcdcdc);
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.product_detail02 .pro_right .content_left .pro_content .pro_tab div {
  color: #7b7b7b;
  padding: 5px 15px;
  cursor: pointer;
}
.product_detail02 .pro_right .content_left .pro_content .pro_tab div.active {
  color: #393939;
  background-image: linear-gradient(to right, #dcdcdc, #dcdcdc), linear-gradient(to bottom, #dcdcdc, #dcdcdc), linear-gradient(to right, #fff, #fff), linear-gradient(to bottom, #dcdcdc, #dcdcdc);
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: left top, right top, left bottom, left top;
  background-repeat: no-repeat;
}
.product_detail02 .pro_right .content_left .pro_content .pro_tab_content_all .pro_tab_content:not(.active) {
  display: none;
}
.product_detail02 .pro_right .content_right {
  width: 33.6%;
  margin-left: 4%;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_right {
    width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }
}
.product_detail02 .pro_right .content_right > div {
  position: sticky;
  top: 160px;
}
@media (min-width: 841px) {
  .product_detail02 .pro_right .content_right > div {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  }
}
@media (min-width: 1025px) {
  .product_detail02 .pro_right .content_right > div {
    padding-right: 20px;
  }
  .product_detail02 .pro_right .content_right > div::-webkit-scrollbar {
    width: 5px;
  }
  .product_detail02 .pro_right .content_right > div::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 20px;
  }
  .product_detail02 .pro_right .content_right > div::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 20px;
  }
  .product_detail02 .pro_right .content_right > div::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
}
@media (max-width: 1200px) {
  .product_detail02 .pro_right .content_right > div {
    top: 70px;
  }
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_right > div .pro_nav,
  .product_detail02 .pro_right .content_right > div .pro_name,
  .product_detail02 .pro_right .content_right > div .pro_price {
    display: none;
  }
}
@media (min-width: 841px) {
  .product_detail02 .pro_right .content_right > div .pro_promotional {
    margin-top: 50px;
  }
}
.product_detail02 .pro_right .content_right > div .pro_promotional p:nth-child(1) {
  color: #000;
  font-size: 16px;
  margin-bottom: 5px;
}
.product_detail02 .pro_right .content_right > div .pro_promotional p:nth-child(n+2) {
  display: flex;
  align-items: center;
  gap: 5px 15px;
}
@media (max-width: 840px) {
  .product_detail02 .pro_right .content_right > div .pro_promotional p:nth-child(n+2) {
    flex-wrap: wrap;
  }
}
.product_detail02 .pro_right .content_right > div .pro_promotional p:nth-child(n+2) + p {
  margin-top: 5px;
}
.product_detail02 .pro_right .content_right > div .pro_promotional p:nth-child(n+2) span {
  display: block;
}
.product_detail02 .pro_right .content_right > div .pro_promotional p:nth-child(n+2) span:nth-child(1) {
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  background: #e64d4d;
}
.product_detail02 .pro_right .content_right > div .pro_promotional p:nth-child(n+2) span:nth-child(2) {
  color: gray;
  font-size: 14px;
}
.product_detail02 .pro_right .content_right > div form.pro_pick {
  margin-top: 20px;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item:not(:first-child) {
  margin-top: 15px;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item select {
  width: 100%;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .color_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .color_cards p {
  width: 100%;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .color_cards .color_pick {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 35px;
  height: 35px;
  padding: 3px;
  border: 1px solid transparent;
  cursor: pointer;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .color_cards .color_pick::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: var(--color);
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .color_cards .color_pick input {
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .color_cards .color_pick.active {
  border: 1px solid #999;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .pattern_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .pattern_cards p {
  width: 100%;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .pattern_cards .pattern_pick {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 35px;
  height: 35px;
  padding: 3px;
  border: 1px solid transparent;
  cursor: pointer;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .pattern_cards .pattern_pick::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: var(--pattern);
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .pattern_cards .pattern_pick input {
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .pattern_cards .pattern_pick.active {
  border: 1px solid #999;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .button_set {
  margin-top: 30px !important;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .button_set .middle {
  width: 50%;
}
.product_detail02 .pro_right .content_right > div form.pro_pick .form_item .button_set .productArrivalNoticeBtn {
  width: 100%;
}
.product_detail02 .pro_right .content_right > div ul.pro_tips {
  margin-top: 50px;
}
.product_detail02 .pro_right .content_right > div ul.pro_tips li:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}
.product_detail02 .pro_right .content_right > div ul.pro_tips li > a {
  display: block;
  position: relative;
  color: #010101;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 6.5px 20px 6.5px 0;
}
.product_detail02 .pro_right .content_right > div ul.pro_tips li > a::before, .product_detail02 .pro_right .content_right > div ul.pro_tips li > a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  background: #a7a9ac;
}
.product_detail02 .pro_right .content_right > div ul.pro_tips li > a::after {
  transform: rotate(90deg);
  transition: all 0.3s;
}
.product_detail02 .pro_right .content_right > div ul.pro_tips li .module_desc {
  display: none;
  padding-bottom: 6.5px;
}
.product_detail02 .pro_right .content_right > div ul.pro_tips li.active > a::after {
  transform: rotate(0);
}
.product_detail02 .pro_right .content_right > div .pro_share {
  display: flex;
  gap: 10px 20px;
  margin-top: 25px;
}
.product_detail02 .pro_right .content_right > div .pro_share > p {
  flex-shrink: 0;
  color: #010101;
  font-size: 15px;
}
.product_detail02 .pro_right .content_right > div .pro_share div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product_detail02 .pro_right .content_right > div .pro_share div a {
  display: block;
  font-size: 22px;
  transition: all 0.3s;
}
.product_detail02 .pro_right .content_right > div .pro_share div a i {
  display: block;
}
.product_detail02 .pro_right .content_right > div .pro_share div a svg {
  display: block;
  width: auto;
  height: 22px;
}
.product_detail02 .pro_right .content_right > div .pro_share div a.fb {
  color: #0866FF;
  fill: #0866FF;
}
.product_detail02 .pro_right .content_right > div .pro_share div a.line {
  color: #07BE5B;
  fill: #07BE5B;
}
.product_detail02 .pro_right .content_right > div .pro_share div a.tt {
  color: #5DA9DD;
  fill: #5DA9DD;
}
.product_detail02 .pro_right .content_right > div .pro_share div a.in {
  color: #0A66C2;
  fill: #0A66C2;
}
.product_detail02 .pro_right .content_right > div .pro_share div a.link {
  color: #1575f0;
  fill: #1575f0;
}
.product_detail02 .pro_right .content_right > div .pro_view_record {
  margin-top: 25px;
}
@media (min-width: 841px) {
  .product_detail02 .pro_right .content_right > div .pro_view_record {
    margin-bottom: 40px;
  }
}
.product_detail02 .pro_right .content_right > div .pro_view_record > p {
  color: #010101;
  font-size: 15px;
  margin-bottom: 10px;
}
.product_detail02 .pro_right .content_right > div .pro_view_record ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  margin: 0 -7.5px;
}
.product_detail02 .pro_right .content_right > div .pro_view_record ul li {
  width: 25%;
  padding: 0 7.5px;
}
.product_detail02 .pro_right .content_right > div .pro_view_record ul li a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.1s;
}
.product_detail02 .pro_right .content_right > div .pro_view_record ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .product_detail02 .pro_right .content_right > div .pro_view_record ul li a:hover {
    border: 1px solid #999;
  }
}
.product_detail02 .pro_right .pro_nav {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 10px;
}
.product_detail02 .pro_right .pro_nav .pro_cate {
  width: 100%;
  color: #939598;
  font-size: 14px;
}
.product_detail02 .pro_right .pro_nav .favorite_io {
  flex-shrink: 0;
}
.product_detail02 .pro_right .pro_nav .favorite_io button {
  display: block;
  color: #e64d4d;
  font-size: 25px;
}
.product_detail02 .pro_right .pro_nav .favorite_io button i {
  display: block;
}
.product_detail02 .pro_right .pro_nav .favorite_io button:not(.active) {
  display: none;
}
.product_detail02 .pro_right .pro_name {
  color: #393939;
  font-size: 20px;
}
.product_detail02 .pro_right .pro_price {
  margin-top: 5px;
}
.product_detail02 .pro_right .pro_price span {
  font-size: 20px;
}
.product_detail02 .pro_right .pro_price span:nth-child(1) {
  color: #939598;
  text-decoration: line-through;
}
.product_detail02 .pro_right .pro_price span:nth-child(2) {
  color: #e64d4d;
  padding-left: 15px;
}
.product_detail02 .pro_right .pro_price:not(.on_sale) span:nth-child(1) {
  text-decoration: none;
}
.product_detail02 .pro_right .pro_price:not(.on_sale) span:nth-child(2) {
  display: none;
}
.product_detail02 .pro_more {
  margin-top: calc(2.8125rem + 2.34375vw);
}
.product_detail02 .pro_more > p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_more > p {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .product_detail02 .pro_more > p {
    margin-bottom: 30px;
  }
}
.product_detail02 .pro_rank {
  margin-top: calc(2.8125rem + 2.34375vw);
}
.product_detail02 .pro_rank .rank_tabs {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_rank .rank_tabs {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .product_detail02 .pro_rank .rank_tabs {
    margin-bottom: 30px;
  }
}
.product_detail02 .pro_rank .rank_tabs a {
  color: #999;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
  background-image: linear-gradient(to right, #000, #000);
  background-size: 0 2px;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.product_detail02 .pro_rank .rank_tabs a.active {
  color: #000;
  background-size: 100% 2px;
}
.product_detail02 .pro_rank .rank_slick {
  position: relative;
}
.product_detail02 .pro_rank .rank_slick .pro_more_slick {
  transition: all 0.3s;
}
.product_detail02 .pro_rank .rank_slick .pro_more_slick:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.product_detail02 .pro_rank .rank_slick .pro_more_slick:not(.active) {
  opacity: 0;
  pointer-events: none;
}
.product_detail02 .pro_more .button_set .middle,
.product_detail02 .pro_rank .button_set .middle {
  width: 80px;
}
.product_detail02 .pro_more_slick {
  margin: 0 -10px;
}
.product_detail02 .pro_more_slick .slick-slide {
  padding: 0 10px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_img {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  margin-bottom: 12px;
  overflow: hidden;
}
.product_detail02 .pro_more_slick .slick-slide .pro_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_detail02 .pro_more_slick .slick-slide .pro_img.multi img {
  transition: all 0.8s;
}
.product_detail02 .pro_more_slick .slick-slide .pro_img.multi img:nth-child(2) {
  opacity: 0;
}
.product_detail02 .pro_more_slick .slick-slide .pro_img.multi:hover img:nth-child(1) {
  opacity: 0;
}
.product_detail02 .pro_more_slick .slick-slide .pro_img.multi:hover img:nth-child(2) {
  opacity: 1;
}
.product_detail02 .pro_more_slick .slick-slide .pro_title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row-reverse;
}
@media (max-width: 540px) {
  .product_detail02 .pro_more_slick .slick-slide .pro_title {
    align-items: flex-start;
    flex-direction: column;
  }
}
.product_detail02 .pro_more_slick .slick-slide .pro_title p {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_title p span {
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 0 8px;
  background: #393939;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_more_slick .slick-slide .pro_title p span {
    font-size: 12px;
    line-height: 18px;
  }
}
.product_detail02 .pro_more_slick .slick-slide .pro_title a {
  width: 100%;
  color: #393939;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_more_slick .slick-slide .pro_title a {
    font-size: 13px;
  }
}
.product_detail02 .pro_more_slick .slick-slide .pro_size {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 8px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price > p span {
  font-size: 14px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price > p span:nth-child(1) {
  color: #e64d4d;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price > p span:nth-child(2) {
  color: #939598;
  text-decoration: line-through;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price > p:not(.on_sale) span:nth-child(2) {
  display: none;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price .pro_btn {
  display: flex;
  flex-shrink: 0;
  gap: 4px 12px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io {
  display: flex;
  flex-shrink: 0;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io button:not(.active) {
  display: none;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io button.off:hover, .product_detail02 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io button.on.active {
  color: #e64d4d;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price .pro_btn button {
  display: block;
  color: #393939;
  font-size: 20px;
}
.product_detail02 .pro_more_slick .slick-slide .pro_price .pro_btn button i {
  display: block;
}
.product_detail02 .pro_more_slick .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_more_slick .slick-arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 840px) {
  .product_detail02 .pro_more_slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.product_detail02 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
  left: -33px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -40px;
  }
}
@media (max-width: 840px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -37px;
  }
}
@media (max-width: 768px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -21px;
  }
}
@media (max-width: 480px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -18px;
  }
}
.product_detail02 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
  right: -33px;
}
@media (max-width: 1200px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -40px;
  }
}
@media (max-width: 840px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -37px;
  }
}
@media (max-width: 768px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -21px;
  }
}
@media (max-width: 480px) {
  .product_detail02 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -18px;
  }
}
.product_detail02 .pro_more_slick .slick-arrow svg {
  width: auto;
  height: 100%;
  fill: #000;
  transition: all 0.1s;
}
.product_detail02 .pro_more_slick .slick-arrow:hover svg {
  fill: #84ccc9;
}
.product_detail02 .pro_more_slick .slick-arrow.white svg {
  fill: #fff;
}
.product_detail02 .pro_more_slick .slick-arrow.white:hover svg {
  fill: #84ccc9;
}

.rental-list01 .container {
  max-width: 1700px;
}
.rental-list01 {
  padding: 60px 0 70px;
}
@media (max-width: 640px) {
  .rental-list01 {
    padding: 50px 0 60px;
  }
}
.rental-list01:not(:first-child) {
  padding-top: 0;
}
.rental-list01:not(:last-child) {
  padding-bottom: 0;
}
.rental-list01 .card-list {
  margin: 0 -10px;
}
@media (max-width: 640px) {
  .rental-list01 .card-list {
    margin: 0 -5px;
  }
}
.rental-list01 .card-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.rental-list01 .card-list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.rental-list01 .card-list__item {
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .rental-list01 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .rental-list01 .card-list__item {
    width: 50%;
    padding: 0 5px;
  }
}
.rental-list01 .card-list__item__img-box {
  position: relative;
  display: block;
}
.rental-list01 .card-list__item__img-box.box--soldout {
  position: relative;
}
.rental-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) {
  .rental-list01 .card-list__item__img-box.box--soldout::after {
    font-size: 16px;
  }
}
.rental-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: 18px;
  line-height: 20px;
  padding: 0 8px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #939598;
}
@media (max-width: 640px) {
  .rental-list01 .card-list__item__img-box[data-top]::before {
    top: 10px;
    right: 10px;
    font-size: 12px;
    line-height: 18px;
  }
}
.rental-list01 .card-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}
.rental-list01 .card-list__item__img-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental-list01 .card-list__item__img-box a.multi img {
  transition: all 0.8s;
}
.rental-list01 .card-list__item__img-box a.multi img:nth-child(1) {
  opacity: 1;
}
.rental-list01 .card-list__item__img-box a.multi img:nth-child(2) {
  opacity: 0;
}
.rental-list01 .card-list__item__img-box a.multi:hover img:nth-child(1) {
  opacity: 0;
}
.rental-list01 .card-list__item__img-box a.multi:hover img:nth-child(2) {
  opacity: 1;
}
.rental-list01 .card-list__item__text-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  margin-top: 12px;
}
.rental-list01 .card-list__item .text-box__title {
  width: 50%;
  flex-grow: 1;
  color: #414042;
}
@media (max-width: 1200px) {
  .rental-list01 .card-list__item .text-box__title {
    font-size: 18px;
  }
}
.rental-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: 18px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .rental-list01 .card-list__item .text-box__tag {
    line-height: 18px;
    font-size: 12px;
  }
}
.rental-list01 .card-list__item .text-box__size {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  width: 100%;
  margin: 14px 0;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .rental-list01 .card-list__item .text-box__size {
    margin: 10px 0;
  }
}
.rental-list01 .card-list__item .text-box__size.text-btns .text-btn:not(.active) {
  color: #b2b2b2;
  cursor: auto;
}
.rental-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) {
  .rental-list01 .card-list__item .text-box__price {
    width: 100%;
  }
}
.rental-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) {
  .rental-list01 .card-list__item .text-box__text-btns {
    margin-top: 10px;
  }
}
.rental-list01 .card-list__item .text-box__text-btns .text-btn {
  font-size: 20px;
}
@media (max-width: 640px) {
  .rental-list01 .card-list__item .text-box__text-btns .text-btn {
    font-size: 16px;
  }
}
.rental-list01 .card-list__item .text-box__text-btns .text-btn:hover .adshop-heart-h {
  color: #e64d4d;
}
.rental-list01 .card-list__item .text-box__text-btns .text-btn .adshop-heart-f {
  color: #e64d4d;
}
.rental-list01 .card-list__item .text-box__text-btns .addto-favorite:not(.active),
.rental-list01 .card-list__item .text-box__text-btns .remove-favorite:not(.active) {
  display: none;
}
.rental-list01 .best-item {
  margin-bottom: 40px;
}
.rental-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);
}
.rental-list01 .best-item__list {
  margin-top: 55px;
}
@media (max-width: 640px) {
  .rental-list01 .best-item__list {
    margin-top: 30px;
  }
}
.rental-list01 .filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  .rental-list01 .filter {
    margin-bottom: 20px;
  }
}
.rental-list01 .filter-more__btn {
  font-weight: 500;
  color: #414042;
  margin-right: 45px;
}
@media (max-width: 640px) {
  .rental-list01 .filter-more__btn {
    margin-right: 20px;
  }
}
.rental-list01 .filter-order {
  position: relative;
  z-index: 10;
}
.rental-list01 .filter-order:hover .filter-order__drowdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.rental-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) {
  .rental-list01 .filter-order__toggler {
    justify-content: center;
    border: 1px solid #414042;
    padding: 8px 24px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .rental-list01 .filter-order__toggler {
    min-width: auto;
    padding: 0 20px;
    line-height: 20px;
  }
}
.rental-list01 .filter-order__toggler__text {
  padding: 8px 24px;
}
@media (max-width: 1200px) {
  .rental-list01 .filter-order__toggler__text {
    padding: 0;
  }
}
.rental-list01 .filter-order__toggler__icon {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .rental-list01 .filter-order__toggler__icon {
    display: none;
  }
}
.rental-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;
}
.rental-list01 .filter-order__drowdown-item {
  padding: 8px 22px;
  color: #939598;
  transition: all 0.4s ease;
}
.rental-list01 .filter-order__drowdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(147, 149, 152, 0.25);
}
.rental-list01 .filter-order__drowdown-item:hover {
  color: #414042;
  border-bottom-color: #b2b2b2;
  background-color: #b2b2b2;
}

.rental_list02 .container {
  max-width: 1700px;
}
.rental_list02 .rental-list01 {
  padding-top: 0;
}
.rental_list02 .rental-list01 .container {
  padding: 0;
}
.rental_list02 .rental-list01 .card-list__item__text-box {
  gap: 8px;
}
.rental_list02 .rental-list01 .card-list__item__text-box .text-box__size {
  margin: 0;
}
@media (max-width: 640px) {
  .rental_list02 .rental-list01 .card-list__item__text-box .text-box__text-btns {
    margin-top: 0;
  }
}
.rental_list02 .pro_left {
  width: 280px;
  margin-right: 50px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .rental_list02 .pro_left {
    width: 100%;
    margin-right: unset;
    margin-bottom: 40px;
  }
}
.rental_list02 .pro_left > div {
  position: sticky;
  top: 110px;
}
.rental_list02 .pro_left > div > p {
  color: #393939;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
}
.rental_list02 .pro_left > div > p span {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .rental_list02 .pro_left .catalog_type {
    display: none;
  }
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li {
  border-bottom: 1px solid #e7e7e7;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 10px 0;
  transition: all 0.3s;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li > a:hover, .rental_list02 .pro_left .catalog_type .catalog_menu > li > a.active {
  color: #84ccc9;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li.moremenu {
  position: relative;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li.moremenu::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a {
  position: relative;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before, .rental_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #A7A9AC;
  transition: all 0.3s ease-out;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li ul {
  display: none;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 10px 0 10px 10px;
  border-top: 1px solid #e7e7e7;
  transition: all 0.3s;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li ul li a:hover, .rental_list02 .pro_left .catalog_type .catalog_menu > li ul li a.active {
  color: #84ccc9;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li ul li:first-child a {
  border-top: 1px solid #e7e7e7;
}
.rental_list02 .pro_left .catalog_type .catalog_menu > li ul li ul a {
  padding: 10px 0 10px 25px;
}
@media (min-width: 1025px) {
  .rental_list02 .pro_left .catalog_type_mb {
    display: none;
  }
}
.rental_list02 .pro_left .catalog_type_mb .catalog_btn {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 35px 10px 25px;
  background: #84ccc9;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu {
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li + li {
  border-top: 1px solid #ededed;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
  padding: 10px 25px;
  background: #fff;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li > a.active {
  background: #ededed;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a {
  position: relative;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before, .rental_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #a7a9ac;
  transition: all 0.3s ease-out;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li ul {
  display: none;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 11px 25px 12px;
  background: #fff;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li ul li a.active {
  background: #ededed;
}
.rental_list02 .pro_left .catalog_type_mb .catalog_menu > li ul ul {
  padding-left: 25px;
}
.rental_list02 .pro_right {
  width: calc(100% - 330px);
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .rental_list02 .pro_right {
    width: 100%;
  }
}

/* 下面是宜瑾的原始內容 */
.rental_list02 .card-list {
  margin: 0 -10px;
}
@media (max-width: 640px) {
  .rental_list02 .card-list {
    margin: 0 -5px;
  }
}
.rental_list02 .card-list:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.rental_list02 .card-list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.rental_list02 .card-list__item {
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 1440px) {
  .rental_list02 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 1200px) {
  .rental_list02 .card-list__item {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .rental_list02 .card-list__item {
    width: 33.3333333333%;
  }
}
@media (max-width: 720px) {
  .rental_list02 .card-list__item {
    width: 50%;
    padding: 0 5px;
  }
}
.rental_list02 .card-list__item__img-box {
  position: relative;
  display: block;
}
.rental_list02 .card-list__item__img-box.box--soldout {
  position: relative;
}
.rental_list02 .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) {
  .rental_list02 .card-list__item__img-box.box--soldout::after {
    font-size: 16px;
  }
}
.rental_list02 .card-list__item__img-box[data-top]::before {
  content: "top " attr(data-top);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 18px;
  line-height: 20px;
  padding: 0 8px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #939598;
}
@media (max-width: 640px) {
  .rental_list02 .card-list__item__img-box[data-top]::before {
    top: 10px;
    right: 10px;
    font-size: 12px;
    line-height: 18px;
  }
}
.rental_list02 .card-list__item__img-box a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}
.rental_list02 .card-list__item__img-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_list02 .card-list__item__img-box a.multi img {
  transition: all 0.8s;
}
.rental_list02 .card-list__item__img-box a.multi img:nth-child(1) {
  opacity: 1;
}
.rental_list02 .card-list__item__img-box a.multi img:nth-child(2) {
  opacity: 0;
}
.rental_list02 .card-list__item__img-box a.multi:hover img:nth-child(1) {
  opacity: 0;
}
.rental_list02 .card-list__item__img-box a.multi:hover img:nth-child(2) {
  opacity: 1;
}
.rental_list02 .card-list__item__text-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.rental_list02 .card-list__item .text-box__title {
  width: 50%;
  flex-grow: 1;
  color: #414042;
}
@media (max-width: 1200px) {
  .rental_list02 .card-list__item .text-box__title {
    font-size: 18px;
  }
}
@media (max-width: 540px) {
  .rental_list02 .card-list__item .text-box__title {
    width: 100%;
    order: 2;
  }
}
.rental_list02 .card-list__item .text-box__tag {
  max-width: 50%;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
  line-height: 20px;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .rental_list02 .card-list__item .text-box__tag {
    line-height: 18px;
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .rental_list02 .card-list__item .text-box__tag {
    order: 1;
  }
}
.rental_list02 .card-list__item .text-box__size {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  width: 100%;
  margin: 14px 0 0;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .rental_list02 .card-list__item .text-box__size {
    margin: 10px 0 0;
  }
}
@media (max-width: 540px) {
  .rental_list02 .card-list__item .text-box__size {
    order: 3;
  }
}
.rental_list02 .card-list__item .text-box__size.text-btns .text-btn:not(.active) {
  color: #b2b2b2;
  cursor: auto;
}
.rental_list02 .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: 540px) {
  .rental_list02 .card-list__item .text-box__price {
    order: 4;
  }
}
.rental_list02 .card-list__item .text-box__text-btns {
  display: flex;
  gap: 4px 12px;
  flex-shrink: 0;
  max-width: 70px;
  margin-left: auto;
}
@media (max-width: 540px) {
  .rental_list02 .card-list__item .text-box__text-btns {
    order: 4;
  }
}
.rental_list02 .card-list__item .text-box__text-btns .text-btn {
  font-size: 20px;
}
@media (max-width: 640px) {
  .rental_list02 .card-list__item .text-box__text-btns .text-btn {
    font-size: 16px;
  }
}
.rental_list02 .card-list__item .text-box__text-btns .text-btn:hover .adshop-heart-h {
  color: #e64d4d;
}
.rental_list02 .card-list__item .text-box__text-btns .text-btn .adshop-heart-f {
  color: #e64d4d;
}
.rental_list02 .card-list__item .text-box__text-btns .addto-favorite:not(.active),
.rental_list02 .card-list__item .text-box__text-btns .remove-favorite:not(.active) {
  display: none;
}
.rental_list02 .best-item {
  margin-bottom: 40px;
}
.rental_list02 .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);
}
.rental_list02 .best-item__list {
  margin-top: 55px;
}
@media (max-width: 640px) {
  .rental_list02 .best-item__list {
    margin-top: 30px;
  }
}
.rental_list02 .filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  .rental_list02 .filter {
    margin-bottom: 20px;
  }
}
.rental_list02 .filter-more__btn {
  font-weight: 500;
  color: #414042;
  margin-right: 45px;
}
@media (max-width: 640px) {
  .rental_list02 .filter-more__btn {
    margin-right: 20px;
  }
}
.rental_list02 .filter-order {
  position: relative;
  z-index: 10;
}
.rental_list02 .filter-order:hover .filter-order__drowdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.rental_list02 .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) {
  .rental_list02 .filter-order__toggler {
    justify-content: center;
    border: 1px solid #414042;
    padding: 8px 24px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .rental_list02 .filter-order__toggler {
    min-width: auto;
    padding: 0 20px;
    line-height: 20px;
  }
}
.rental_list02 .filter-order__toggler__text {
  padding: 8px 24px;
}
@media (max-width: 1200px) {
  .rental_list02 .filter-order__toggler__text {
    padding: 0;
  }
}
.rental_list02 .filter-order__toggler__icon {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .rental_list02 .filter-order__toggler__icon {
    display: none;
  }
}
.rental_list02 .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;
}
.rental_list02 .filter-order__drowdown-item {
  padding: 8px 22px;
  color: #939598;
  transition: all 0.4s ease;
}
.rental_list02 .filter-order__drowdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(147, 149, 152, 0.25);
}
.rental_list02 .filter-order__drowdown-item:hover {
  color: #414042;
  border-bottom-color: #b2b2b2;
  background-color: #b2b2b2;
}

@media (max-width: 480px) {
  .rental_detail01 {
    margin-top: -60px;
  }
}
.rental_detail01 .wider_container {
  max-width: 100%;
}
.rental_detail01 .container {
  max-width: 1700px;
}
.rental_detail01 .pro_left {
  display: none;
  width: 280px;
  margin-right: 50px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_left {
    display: none;
    width: 100%;
    margin-right: unset;
    margin-bottom: 40px;
  }
}
.rental_detail01 .pro_left > div {
  position: sticky;
  top: 110px;
}
.rental_detail01 .pro_left > div > p {
  color: #393939;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
}
.rental_detail01 .pro_left > div > p span {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_left .catalog_type {
    display: none;
  }
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li {
  border-bottom: 1px solid #e7e7e7;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 10px 0;
  transition: all 0.3s;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li > a:hover, .rental_detail01 .pro_left .catalog_type .catalog_menu > li > a.active {
  color: #84ccc9;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li.moremenu {
  position: relative;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li.moremenu::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li.moremenu > a {
  position: relative;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before, .rental_detail01 .pro_left .catalog_type .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #A7A9AC;
  transition: all 0.3s ease-out;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li ul {
  display: none;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 10px 0 10px 10px;
  border-top: 1px solid #e7e7e7;
  transition: all 0.3s;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li ul li a:hover, .rental_detail01 .pro_left .catalog_type .catalog_menu > li ul li a.active {
  color: #84ccc9;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li ul li:first-child a {
  border-top: 1px solid #e7e7e7;
}
.rental_detail01 .pro_left .catalog_type .catalog_menu > li ul li ul a {
  padding: 10px 0 10px 25px;
}
@media (min-width: 1025px) {
  .rental_detail01 .pro_left .catalog_type_mb {
    display: none;
  }
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_btn {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 35px 10px 25px;
  background: #84ccc9;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu {
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li + li {
  border-top: 1px solid #ededed;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li > a {
  display: block;
  color: #393939;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
  padding: 10px 25px;
  background: #fff;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li > a.active {
  background: #ededed;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a {
  position: relative;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before, .rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #a7a9ac;
  transition: all 0.3s ease-out;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li.moremenu > a::before {
  transform: rotate(90deg);
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li.moremenu.active > a::before {
  transform: rotate(0deg);
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li ul {
  display: none;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li ul li a {
  display: block;
  color: #393939;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 11px 25px 12px;
  background: #fff;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li ul li a::before {
  content: "─";
  padding: 0 5px;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li ul li a.active {
  background: #ededed;
}
.rental_detail01 .pro_left .catalog_type_mb .catalog_menu > li ul ul {
  padding-left: 25px;
}
.rental_detail01 .pro_right {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
.rental_detail01 .pro_right .content_left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 62.4%;
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left {
    width: 100%;
  }
}
.rental_detail01 .pro_right .content_left .pro_slick {
  width: 84.2625899281%;
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_slick {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-list {
    margin: 0 -25px;
  }
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-slide a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-slide a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
  left: -50px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -48px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -45px;
  }
}
@media (max-width: 768px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -30px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -28px;
  }
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
  right: -50px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -48px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -45px;
  }
}
@media (max-width: 768px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -30px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -28px;
  }
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow svg {
  width: auto;
  height: 100%;
  fill: #000;
  transition: all 0.1s;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow:hover svg {
  fill: #84ccc9;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.white svg {
  fill: #fff;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow.white:hover svg {
  fill: #84ccc9;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-arrow {
  width: 20px !important;
  height: 20px !important;
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_slick .slick-arrow {
    display: none !important;
  }
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-dots {
  flex-direction: column;
  bottom: 10px;
  left: unset;
  right: 10px;
  transform: unset;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-dots li button {
  width: 4px;
  height: 4px;
  background: #fff;
}
.rental_detail01 .pro_right .content_left .pro_slick .slick-dots li.slick-active button {
  background: #84ccc9;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail {
  width: 11.2410071942%;
  margin: 0 0 0 4.4964028777%;
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail {
    display: none;
    width: 100%;
    margin: 15px 0 0;
  }
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-slide {
  padding: 10px 0;
}
@media (max-width: 1440px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-slide {
    padding: 5px 0;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-slide {
    padding: 0 5px;
  }
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-slide a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  border: 1px solid transparent;
  overflow: hidden;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-slide a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-slide a:hover {
    border: 1px solid #999;
  }
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-slide.slick-current a {
  border: 1px solid #999;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-prev:not(.keep_default) {
  left: -50px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-prev:not(.keep_default) {
    left: -48px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-prev:not(.keep_default) {
    left: -45px;
  }
}
@media (max-width: 768px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-prev:not(.keep_default) {
    left: -30px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-prev:not(.keep_default) {
    left: -28px;
  }
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-next:not(.keep_default) {
  right: -50px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-next:not(.keep_default) {
    right: -48px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-next:not(.keep_default) {
    right: -45px;
  }
}
@media (max-width: 768px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-next:not(.keep_default) {
    right: -30px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-next:not(.keep_default) {
    right: -28px;
  }
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow svg {
  width: auto;
  height: 100%;
  fill: #000;
  transition: all 0.1s;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow:hover svg {
  fill: #84ccc9;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.white svg {
  fill: #fff;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.white:hover svg {
  fill: #84ccc9;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow {
  width: 20px !important;
  height: 20px !important;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-prev {
  left: -25px;
}
.rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-next {
  right: -25px;
}
@media (min-width: 841px) {
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow {
    transform: translateX(-50%) rotate(90deg);
  }
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-prev {
    top: -30px;
    left: 50%;
  }
  .rental_detail01 .pro_right .content_left .pro_thumbnail .slick-arrow.slick-next {
    top: unset;
    bottom: -30px;
    left: 50%;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_left .pro_content {
    display: none;
  }
}
.rental_detail01 .pro_right .content_right {
  width: 33.6%;
  margin-left: 4%;
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .content_right {
    width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }
}
.rental_detail01 .pro_right .content_right .pro_nav {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 10px;
}
.rental_detail01 .pro_right .content_right .pro_nav .pro_cate {
  width: 100%;
  color: #939598;
  font-size: 14px;
}
.rental_detail01 .pro_right .content_right .pro_nav .favorite_io {
  flex-shrink: 0;
}
.rental_detail01 .pro_right .content_right .pro_nav .favorite_io button {
  display: block;
  color: #e64d4d;
  font-size: 25px;
}
.rental_detail01 .pro_right .content_right .pro_nav .favorite_io button i {
  display: block;
}
.rental_detail01 .pro_right .content_right .pro_nav .favorite_io button:not(.active) {
  display: none;
}
.rental_detail01 .pro_right .content_right .pro_name {
  color: #393939;
  font-size: 22px;
  font-weight: 500;
}
.rental_detail01 .pro_right .content_right .pro_desc {
  color: #393939;
  font-size: 14px;
  margin-top: 5px;
}
.rental_detail01 .pro_right .content_right .pro_divider {
  height: 1px;
  margin: 15px 0;
  background: #cecece;
}
.rental_detail01 .pro_right .content_right .pro_hownew {
  display: flex;
  align-items: center;
}
.rental_detail01 .pro_right .content_right .pro_hownew span {
  color: #939598;
  font-size: 12px;
  margin-right: 10px;
}
.rental_detail01 .pro_right .content_right .pro_hownew i {
  color: #393939;
  font-size: 14px;
  margin-right: 3px;
  cursor: pointer;
}
.rental_detail01 .pro_right .content_right .pro_hownew p {
  color: #393939;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.rental_detail01 .pro_right .content_right .pro_price {
  margin-top: 20px;
}
.rental_detail01 .pro_right .content_right .pro_price p + p {
  margin-top: 5px;
}
.rental_detail01 .pro_right .content_right .pro_price p:nth-child(1) {
  color: #e64d4d;
  font-size: 14px;
}
.rental_detail01 .pro_right .content_right .pro_price p:nth-child(2) {
  color: #000;
  font-size: 12px;
}
.rental_detail01 .pro_right .content_right .pro_price p:nth-child(3) {
  color: #a5a5a5;
  font-size: 12px;
  text-decoration: line-through;
}
.rental_detail01 .pro_right .content_right .pro_more_desc > p {
  color: #000;
  font-size: 20px;
}
.rental_detail01 .pro_right .content_right .pro_more_desc > p span {
  font-size: 14px;
}
.rental_detail01 .pro_right .content_right .pro_more_desc div {
  margin-top: 10px;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item:not(:first-child) {
  margin-top: 30px;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item label {
  display: block;
  color: #000;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .content_right form.pro_pick .form_item label {
    margin-bottom: 10px;
  }
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item label span {
  font-size: 14px;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item .price_plans {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.3020833333vw;
  margin-top: 10px;
}
@media (max-width: 1366px) {
  .rental_detail01 .pro_right .content_right form.pro_pick .form_item .price_plans {
    gap: 20px;
  }
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item .price_plans p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(25% - 0.9765625vw);
  height: 70px;
  color: #040000;
  font-size: 14px;
  padding: 5px;
  background: transparent;
  border: 1px solid #040000;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 1366px) {
  .rental_detail01 .pro_right .content_right form.pro_pick .form_item .price_plans p {
    width: calc(50% - 10px);
  }
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item .price_plans p:hover, .rental_detail01 .pro_right .content_right form.pro_pick .form_item .price_plans p.active {
  color: #fff;
  background: #040000;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item > p {
  color: #000;
  font-size: 14px;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item > input {
  width: 100%;
  max-width: 210px;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item > a {
  line-height: 68px;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item .button_set {
  margin-top: 30px !important;
}
.rental_detail01 .pro_right .content_right form.pro_pick .form_item .button_set .middle {
  width: 50%;
}
@media (min-width: 1201px) {
  .rental_detail01 .pro_right .content_right form.pro_pick .form_item.one_line {
    display: flex;
    gap: 0 20px;
  }
  .rental_detail01 .pro_right .content_right form.pro_pick .form_item.one_line label {
    flex-shrink: 0;
  }
}
.rental_detail01 .pro_right .content_right ul.pro_tips {
  margin-top: 30px;
}
.rental_detail01 .pro_right .content_right ul.pro_tips li {
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}
.rental_detail01 .pro_right .content_right ul.pro_tips li > a {
  display: block;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.rental_detail01 .pro_right .content_right ul.pro_tips li .pro_size_guide {
  text-decoration: underline;
  cursor: pointer;
}
.rental_detail01 .pro_right .content_right .pro_share {
  display: flex;
  gap: 10px 20px;
  margin-top: 40px;
}
.rental_detail01 .pro_right .content_right .pro_share > p {
  flex-shrink: 0;
  color: #010101;
  font-size: 15px;
}
.rental_detail01 .pro_right .content_right .pro_share div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rental_detail01 .pro_right .content_right .pro_share div a {
  display: block;
  font-size: 22px;
  transition: all 0.3s;
}
.rental_detail01 .pro_right .content_right .pro_share div a i {
  display: block;
}
.rental_detail01 .pro_right .content_right .pro_share div a svg {
  display: block;
  width: auto;
  height: 22px;
}
.rental_detail01 .pro_right .content_right .pro_share div a.fb {
  color: #0866FF;
  fill: #0866FF;
}
.rental_detail01 .pro_right .content_right .pro_share div a.line {
  color: #07BE5B;
  fill: #07BE5B;
}
.rental_detail01 .pro_right .content_right .pro_share div a.tt {
  color: #5DA9DD;
  fill: #5DA9DD;
}
.rental_detail01 .pro_right .content_right .pro_share div a.in {
  color: #0A66C2;
  fill: #0A66C2;
}
.rental_detail01 .pro_right .content_right .pro_share div a.link {
  color: #1575f0;
  fill: #1575f0;
}
.rental_detail01 .pro_right .content_right .pro_view_record {
  margin-top: 25px;
}
@media (min-width: 841px) {
  .rental_detail01 .pro_right .content_right .pro_view_record {
    margin-bottom: 40px;
  }
}
.rental_detail01 .pro_right .content_right .pro_view_record > p {
  color: #010101;
  font-size: 15px;
  margin-bottom: 10px;
}
.rental_detail01 .pro_right .content_right .pro_view_record ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  margin: 0 -7.5px;
}
.rental_detail01 .pro_right .content_right .pro_view_record ul li {
  width: 25%;
  padding: 0 7.5px;
}
.rental_detail01 .pro_right .content_right .pro_view_record ul li a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.1s;
}
.rental_detail01 .pro_right .content_right .pro_view_record ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .rental_detail01 .pro_right .content_right .pro_view_record ul li a:hover {
    border: 1px solid #999;
  }
}
@media (min-width: 841px) {
  .rental_detail01 .pro_right .content_right .pro_content {
    display: none;
  }
}
.rental_detail01 .pro_right .pro_content {
  width: 100%;
  margin-top: 5.2083333333vw;
}
@media (max-width: 840px) {
  .rental_detail01 .pro_right .pro_content {
    margin-top: 40px;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab {
  display: flex;
  background-image: linear-gradient(to right, #dcdcdc, #dcdcdc);
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.rental_detail01 .pro_right .pro_content .pro_tab div {
  color: #7b7b7b;
  padding: 5px 15px;
  cursor: pointer;
}
.rental_detail01 .pro_right .pro_content .pro_tab div.active {
  color: #393939;
  background-image: linear-gradient(to right, #dcdcdc, #dcdcdc), linear-gradient(to bottom, #dcdcdc, #dcdcdc), linear-gradient(to right, #fff, #fff), linear-gradient(to bottom, #dcdcdc, #dcdcdc);
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: left top, right top, left bottom, left top;
  background-repeat: no-repeat;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content:not(.active) {
  display: none;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item {
  display: flex;
  gap: 0 20px;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item:not(:last-child) {
  margin-bottom: 35px;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_img {
  width: 110px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_img {
    display: none;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_img p {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  isolation: isolate;
  overflow: hidden;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_img p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info {
  width: calc(100% - 130px);
  padding-bottom: 25px;
  border-bottom: 1px solid #dcdcdc;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info {
    width: 100%;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 13px;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(1) {
  flex-shrink: 0;
  width: 70px;
}
@media (min-width: 1201px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(1) {
    display: none;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(1) p {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  isolation: isolate;
  overflow: hidden;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(1) p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 5px 30px;
  width: 100%;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(2) {
    align-items: flex-start;
    flex-direction: column;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(2) > span:nth-child(1) {
  color: #393939;
  font-size: 20px;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(2) > span:nth-child(1) {
    font-size: 18px;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) i {
  display: inline-block;
  color: #ffdd22;
  font-size: 20px;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) i {
    font-size: 18px;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .cus_said {
  color: #393939;
  font-size: 18px;
  margin-bottom: 15px;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .cus_said {
    font-size: 16px;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .cus_upload {
  width: 120px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .cus_upload {
    width: 110px;
  }
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .cus_upload {
    width: 100px;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .cus_upload p {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border: 1px solid #bbb;
  overflow: hidden;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments .item .cus_info .cus_upload p img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login {
  display: flex;
  gap: 0 20px;
  margin-top: 50px;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_img {
  width: 110px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_img {
    display: none;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_img p {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  isolation: isolate;
  overflow: hidden;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_img p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info {
  width: calc(100% - 130px);
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info {
    width: 100%;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 13px;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(1) {
  flex-shrink: 0;
  width: 70px;
}
@media (min-width: 1201px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(1) {
    display: none;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(1) p {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  isolation: isolate;
  overflow: hidden;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(1) p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 5px 30px;
  width: 100%;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) {
    align-items: flex-start;
    flex-direction: column;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(1) {
  color: #393939;
  font-size: 20px;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(1) {
    font-size: 18px;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) i {
  display: inline-block;
  color: #ffdd22;
  font-size: 20px;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) i {
    font-size: 18px;
  }
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) span {
  cursor: pointer;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) span i:last-child {
  display: none;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) span.active i:first-child {
  display: none;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info .acc_stars > div:nth-child(2) > span:nth-child(2) span.active i:last-child {
  display: inline-block;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info form textarea {
  display: block;
  width: 100%;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info form .button_set {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px !important;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info form .button_set p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
}
.rental_detail01 .pro_right .pro_content .pro_tab_content_all .pro_tab_content .pro_comments_login .cus_info form .button_set p input[type=file] {
  width: 100%;
  max-width: 299px;
  padding: unset !important;
  border: unset;
}
.rental_detail01 .pro_more {
  margin-top: calc(2.8125rem + 2.34375vw);
}
.rental_detail01 .pro_more > p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_more > p {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_more > p {
    margin-bottom: 30px;
  }
}
.rental_detail01 .pro_rank {
  margin-top: calc(2.8125rem + 2.34375vw);
}
.rental_detail01 .pro_rank .rank_tabs {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_rank .rank_tabs {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_rank .rank_tabs {
    margin-bottom: 30px;
  }
}
.rental_detail01 .pro_rank .rank_tabs a {
  color: #999;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
  background-image: linear-gradient(to right, #000, #000);
  background-size: 0 2px;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.rental_detail01 .pro_rank .rank_tabs a.active {
  color: #000;
  background-size: 100% 2px;
}
.rental_detail01 .pro_rank .rank_slick {
  position: relative;
}
.rental_detail01 .pro_rank .rank_slick .pro_more_slick {
  transition: all 0.3s;
}
.rental_detail01 .pro_rank .rank_slick .pro_more_slick:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.rental_detail01 .pro_rank .rank_slick .pro_more_slick:not(.active) {
  opacity: 0;
  pointer-events: none;
}
.rental_detail01 .pro_more .button_set .middle,
.rental_detail01 .pro_rank .button_set .middle {
  width: 80px;
}
.rental_detail01 .pro_more_slick {
  margin: 0 -10px;
}
.rental_detail01 .pro_more_slick .slick-slide {
  padding: 0 10px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_img {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  margin-bottom: 12px;
  overflow: hidden;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_img.multi img {
  transition: all 0.8s;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_img.multi img:nth-child(2) {
  opacity: 0;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_img.multi:hover img:nth-child(1) {
  opacity: 0;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_img.multi:hover img:nth-child(2) {
  opacity: 1;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row-reverse;
}
@media (max-width: 540px) {
  .rental_detail01 .pro_more_slick .slick-slide .pro_title {
    align-items: flex-start;
    flex-direction: column;
  }
}
.rental_detail01 .pro_more_slick .slick-slide .pro_title p {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_title p span {
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 0 8px;
  background: #393939;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_more_slick .slick-slide .pro_title p span {
    font-size: 12px;
    line-height: 18px;
  }
}
.rental_detail01 .pro_more_slick .slick-slide .pro_title a {
  width: 100%;
  color: #393939;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_more_slick .slick-slide .pro_title a {
    font-size: 13px;
  }
}
.rental_detail01 .pro_more_slick .slick-slide .pro_size {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 8px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price > p span {
  font-size: 14px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price > p span:nth-child(1) {
  color: #e64d4d;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price > p span:nth-child(2) {
  color: #939598;
  text-decoration: line-through;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price > p:not(.on_sale) span:nth-child(2) {
  display: none;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price .pro_btn {
  display: flex;
  flex-shrink: 0;
  gap: 4px 12px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io {
  display: flex;
  flex-shrink: 0;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io button:not(.active) {
  display: none;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io button.off:hover, .rental_detail01 .pro_more_slick .slick-slide .pro_price .pro_btn .favorite_io button.on.active {
  color: #e64d4d;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price .pro_btn button {
  display: block;
  color: #393939;
  font-size: 20px;
}
.rental_detail01 .pro_more_slick .slick-slide .pro_price .pro_btn button i {
  display: block;
}
.rental_detail01 .pro_more_slick .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_more_slick .slick-arrow {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_more_slick .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.rental_detail01 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
  left: -33px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -40px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -37px;
  }
}
@media (max-width: 768px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -21px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-prev:not(.keep_default) {
    left: -18px;
  }
}
.rental_detail01 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
  right: -33px;
}
@media (max-width: 1200px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -40px;
  }
}
@media (max-width: 840px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -37px;
  }
}
@media (max-width: 768px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -21px;
  }
}
@media (max-width: 480px) {
  .rental_detail01 .pro_more_slick .slick-arrow.slick-next:not(.keep_default) {
    right: -18px;
  }
}
.rental_detail01 .pro_more_slick .slick-arrow svg {
  width: auto;
  height: 100%;
  fill: #000;
  transition: all 0.1s;
}
.rental_detail01 .pro_more_slick .slick-arrow:hover svg {
  fill: #84ccc9;
}
.rental_detail01 .pro_more_slick .slick-arrow.white svg {
  fill: #fff;
}
.rental_detail01 .pro_more_slick .slick-arrow.white:hover svg {
  fill: #84ccc9;
}

.rental_detail01_popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: all 0.3s;
}
.rental_detail01_popup .close_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.rental_detail01_popup .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;
}
.rental_detail01_popup .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;
  z-index: 1;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .rental_detail01_popup .popup_content .close_btn {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
.rental_detail01_popup .popup_content .close_btn::before, .rental_detail01_popup .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) {
  .rental_detail01_popup .popup_content .close_btn::before, .rental_detail01_popup .popup_content .close_btn::after {
    width: 15px;
  }
}
.rental_detail01_popup .popup_content .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.rental_detail01_popup .popup_content .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.rental_detail01_popup .popup_content .editor {
  max-height: calc(100vh - 60px);
  overflow: auto;
}
.rental_detail01_popup.show {
  opacity: 1;
  pointer-events: auto;
}
.rental_detail01_popup.show .popup_content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@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 #ededed;
  }
}
.pay01 .pay-info__cart-list .cart-list__thead {
  display: flex;
  line-height: 50px;
  background-color: #b5b5b5;
}
.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 #ededed;
}
@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;
  }
}
@media (max-width: 768px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__pic {
    width: 100px;
    padding: 0;
  }
}
@media (max-width: 540px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__pic {
    width: 80px;
  }
}
.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;
  }
}
@media (max-width: 540px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info {
    padding-top: 0;
  }
}
.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-price {
    display: none;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info-num {
    margin: 10px 0;
  }
}
@media (max-width: 540px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info-num {
    float: left;
    margin: 10px 0 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;
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info-subtotal {
    color: #e64d4d;
  }
}
@media (max-width: 540px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__info-subtotal {
    float: right;
    margin-top: 15px;
  }
  .pay01 .pay-info__cart-list .cart-list__tbody__info-subtotal::before {
    display: none;
  }
}
.pay01 .pay-info__cart-list .cart-list__tbody__del {
  flex-shrink: 0;
  padding-top: 40px;
  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: 20px;
  }
}
@media (max-width: 1200px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__del {
    width: 50px;
    padding-top: 0;
    align-self: center;
  }
}
@media (max-width: 540px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__del {
    width: 25px;
    align-self: flex-start;
  }
}
.pay01 .pay-info__cart-list .cart-list__tbody__del-btn {
  color: #b2b2b2;
  font-size: 26px;
  font-weight: 700;
  font-family: "Gruppo", cursive;
}
@media (max-width: 540px) {
  .pay01 .pay-info__cart-list .cart-list__tbody__del-btn {
    font-size: 15px;
    padding: 3px 7px;
  }
}
.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 {
  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 #b5b5b5;
  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 #b5b5b5;
}
.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: #e6e6e6;
}
@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: 0px 0px 8px 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 {
  width: 50%;
  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.5;
}
@media (max-width: 1200px) {
  .pay01 .pay-summary__shipping {
    line-height: 1.2;
  }
}
.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;
}
@media (max-width: 1200px) {
  .pay01 .pay-summary__total {
    width: 50%;
    padding-top: 30px;
  }
}
.pay01 .pay-summary__total-title {
  width: 50%;
  flex-grow: 1;
  padding-right: 10px;
}
@media (max-width: 1200px) {
  .pay01 .pay-summary__total-title {
    width: auto;
    flex-grow: unset;
  }
}
.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 {
    width: auto;
    margin-top: 20px;
    margin-left: auto;
  }
}
.pay01 .pay-thank {
  position: sticky;
  z-index: 9;
  text-align: center;
  padding: 50px;
  background-color: #e6e6e6;
}
@media (min-width: 1201px) {
  .pay01 .pay-thank {
    width: 380px;
    top: 200px;
    order: 2;
    font-size: 18px;
  }
}
@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.5;
  }
}
@media (max-width: 640px) {
  .login01 .quick-pay__description {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.5;
  }
}
.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:nth-child(n+2) {
  padding-top: 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%;
  }
}
@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: #f5f5f5;
  }
}
.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: 20px;
}
@media (max-width: 640px) {
  .member01 .member__info-bar .info-bar__base__item-icon {
    font-size: 20px;
  }
}
.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;
}
@media (max-width: 640px) {
  .member01 .member__info-bar .info-bar__base__item-text .item-text__price {
    font-size: 16px;
  }
}
.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__base__item-text .item-text__price.no_after::after {
  display: none;
}
@media (min-width: 961px) {
  .member01 .member__info-bar .info-bar__base__item-text .item-text__price br {
    display: none;
  }
}
.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: #f5f5f5;
  }
}
@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: 18px;
  color: #ffffff;
  background-color: #e64d4d;
  border-radius: 8px;
  text-align: center;
}
.member01 .member__info-bar .info-bar__news__item.no_font_size, .member01 .member__info-bar .info-bar__news__info.no_font_size {
  font-size: unset;
}
@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 #b5b5b5;
}
.member01 .member__info-list .info-list__box {
  display: flex;
}
.member01 .member__info-list .info-list__box:not(:last-child) {
  border-bottom: 1px solid #b5b5b5;
}
.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: #f5f5f5;
}
@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: #d9d9d9;
}
@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: #b5b5b5;
}
.member01 .member__btns {
  max-width: 400px;
  margin: 40px auto 0;
}
@media (min-width: 1201px) {
  .member01 .member__coupon-list {
    margin-top: 15px;
    border: 1px solid #b5b5b5;
  }
}
.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: #b5b5b5;
}
@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 #b5b5b5;
  }
}
@media (max-width: 1200px) {
  .member01 .member__coupon-list .coupon-list__tbody {
    border: 1px solid #b5b5b5;
    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 #b5b5b5;
  }
  .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: #f5f5f5;
  }
  .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;
    z-index: 1;
  }
}
@media (min-width: 1201px) {
  .member01 .member__order-list {
    margin-top: 15px;
    border: 1px solid #b5b5b5;
  }
}
@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: #f5f5f5;
}
.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 #b5b5b5;
  }
}
@media (max-width: 1200px) {
  .member01 .member__order-list .order-list__tbody {
    border: 1px solid #b5b5b5;
    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 #b5b5b5;
  }
  .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: #f5f5f5;
  }
  .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 #b5b5b5;
}
.member01 .member__favorite-list .favorite-list__thead {
  display: flex;
  padding: 20px 0;
  background-color: #f5f5f5;
}
.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 #b5b5b5;
  }
  .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 #b5b5b5;
  }
  .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 #b5b5b5;
  }
}
@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: #f5f5f5;
}
.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 #b5b5b5;
  }
}
@media (max-width: 1200px) {
  .member01 .member__inquiry-list .inquiry-list__tbody {
    border: 1px solid #b5b5b5;
    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 #b5b5b5;
  }
  .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: #f5f5f5;
  }
  .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: #f5f5f5;
}

.member_point01 {
  padding-bottom: 50px;
}
.member_point01 .member_point {
  margin-top: 15px;
}
.member_point01 .member_point .point_tab {
  display: flex;
  border-bottom: 1px solid #dedede;
}
.member_point01 .member_point .point_tab a {
  color: #393939;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 15px calc(1.5625rem + 1.5625vw);
  background-image: linear-gradient(to right, #dedede, #dedede);
  background-size: 0 2px;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
@media (max-width: 540px) {
  .member_point01 .member_point .point_tab a {
    width: 50%;
  }
}
.member_point01 .member_point .point_tab a + a {
  position: relative;
}
.member_point01 .member_point .point_tab a + a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 1px;
  height: calc(100% - 30px);
  background: #dedede;
}
.member_point01 .member_point .point_tab a.active {
  background-size: 92px 2px;
}
.member_point01 .member_point .point_list {
  max-height: 679px;
  overflow-y: auto;
}
.member_point01 .member_point .point_list:not(.active) {
  display: none;
}
.member_point01 .member_point .point_list .point_record {
  padding: 15px 0;
  border-bottom: 1px solid #dedede;
}
.member_point01 .member_point .point_list .point_record > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 500px;
}
.member_point01 .member_point .point_list .point_record > div .point_info p:nth-child(1) {
  color: #393939;
  font-size: 15px;
  margin-bottom: 5px;
}
.member_point01 .member_point .point_list .point_record > div .point_info p:nth-child(2) {
  color: #393939;
  font-size: 15px;
}
.member_point01 .member_point .point_list .point_record > div .point_info p:nth-child(3) {
  color: #939598;
  font-size: 14px;
  font-weight: 500;
}
.member_point01 .member_point .point_list .point_record > div .point_state {
  color: #e64d4d;
  font-size: 20px;
  font-family: "Poppings", sans-serif;
}

.profit_distribution01 {
  padding-bottom: 50px;
}
.profit_distribution01 .profit_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 3.125vw;
  margin-top: 35px;
}
@media (max-width: 991px) {
  .profit_distribution01 .profit_bar {
    align-items: flex-end;
  }
}
@media (max-width: 640px) {
  .profit_distribution01 .profit_bar {
    align-items: center;
    flex-direction: column;
  }
}
.profit_distribution01 .profit_bar .left {
  display: flex;
  align-items: center;
  gap: 15px 3.125vw;
  width: 100%;
}
@media (max-width: 991px) {
  .profit_distribution01 .profit_bar .left {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .profit_distribution01 .profit_bar .left {
    align-items: center;
  }
}
.profit_distribution01 .profit_bar .left .profit_btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0 18px;
  width: 230px;
}
.profit_distribution01 .profit_bar .left form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .profit_distribution01 .profit_bar .left form {
    gap: 10px 15px;
  }
}
@media (max-width: 640px) {
  .profit_distribution01 .profit_bar .left form {
    justify-content: center;
  }
}
.profit_distribution01 .profit_bar .left form .form_item {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.profit_distribution01 .profit_bar .left form .form_item label {
  color: #393939;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .profit_distribution01 .profit_bar .left form .form_item label {
    display: none;
  }
}
.profit_distribution01 .profit_bar .left form .form_item input {
  width: calc(10.375rem + 4.375vw);
}
.profit_distribution01 .profit_bar .left form .form_item a {
  padding: 0 10px;
  border-radius: 10px;
}
.profit_distribution01 .profit_bar .left form .form_item a i {
  font-size: 13px;
  font-weight: 700;
  margin-right: 5px;
}
.profit_distribution01 .profit_bar .right {
  flex-shrink: 0;
}
.profit_distribution01 .profit_content {
  margin-top: 35px;
}

.profit_rule01 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: all 0.3s;
}
.profit_rule01 .close_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.profit_rule01 .profit_rule_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;
}
.profit_rule01 .profit_rule_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;
  z-index: 1;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .profit_rule01 .profit_rule_content .close_btn {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
.profit_rule01 .profit_rule_content .close_btn::before, .profit_rule01 .profit_rule_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) {
  .profit_rule01 .profit_rule_content .close_btn::before, .profit_rule01 .profit_rule_content .close_btn::after {
    width: 15px;
  }
}
.profit_rule01 .profit_rule_content .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.profit_rule01 .profit_rule_content .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.profit_rule01 .profit_rule_content .editor {
  max-height: calc(100vh - 60px);
  overflow: auto;
}
.profit_rule01.show {
  opacity: 1;
  pointer-events: auto;
}
.profit_rule01.show .profit_rule_content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.profit_withdraw01 {
  padding-bottom: 50px;
}
.profit_withdraw01 .profit_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 3.125vw;
  margin-top: 35px;
}
@media (max-width: 991px) {
  .profit_withdraw01 .profit_bar {
    align-items: flex-end;
  }
}
@media (max-width: 640px) {
  .profit_withdraw01 .profit_bar {
    align-items: center;
    flex-direction: column;
  }
}
.profit_withdraw01 .profit_bar .left {
  display: flex;
  align-items: center;
  gap: 15px 3.125vw;
  width: 100%;
}
@media (max-width: 991px) {
  .profit_withdraw01 .profit_bar .left {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .profit_withdraw01 .profit_bar .left {
    align-items: center;
  }
}
.profit_withdraw01 .profit_bar .left .profit_btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0 18px;
  width: 140px;
}
.profit_withdraw01 .profit_bar .right {
  flex-shrink: 0;
}
.profit_withdraw01 .profit_content {
  margin-top: 35px;
}
.profit_withdraw01 .profit_content .member__coupon-list {
  margin-top: 0;
}
.profit_withdraw01 .profit_content .member__coupon-list + .member__coupon-list {
  margin-top: 50px;
}

.profit_cash_request01 {
  padding-bottom: 50px;
}
.profit_cash_request01 .profit_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 3.125vw;
  margin-top: 35px;
}
@media (max-width: 991px) {
  .profit_cash_request01 .profit_bar {
    align-items: flex-end;
  }
}
@media (max-width: 640px) {
  .profit_cash_request01 .profit_bar {
    align-items: center;
    flex-direction: column;
  }
}
.profit_cash_request01 .profit_bar .left {
  display: flex;
  align-items: center;
  gap: 15px 3.125vw;
  width: 100%;
}
@media (max-width: 991px) {
  .profit_cash_request01 .profit_bar .left {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .profit_cash_request01 .profit_bar .left {
    align-items: center;
  }
}
.profit_cash_request01 .profit_bar .left .profit_btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0 18px;
  width: 140px;
}
.profit_cash_request01 .profit_bar .right {
  flex-shrink: 0;
}
.profit_cash_request01 .profit_content {
  margin-top: 35px;
}
.profit_cash_request01 .profit_content form .form_item {
  display: flex;
  align-items: center;
  gap: 5px 20px;
}
@media (max-width: 640px) {
  .profit_cash_request01 .profit_content form .form_item {
    flex-direction: column;
  }
}
.profit_cash_request01 .profit_content form .form_item + .form_item {
  margin-top: 20px;
}
.profit_cash_request01 .profit_content form .form_item:last-child {
  margin-top: 40px;
}
@media (min-width: 641px) {
  .profit_cash_request01 .profit_content form .form_item.sp {
    align-items: flex-start;
  }
}
.profit_cash_request01 .profit_content form .form_item label {
  width: 85px;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 640px) {
  .profit_cash_request01 .profit_content form .form_item label {
    width: unset;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .profit_cash_request01 .profit_content form .form_item .able {
    text-align: center;
  }
}
.profit_cash_request01 .profit_content form .form_item .able p:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
@media (max-width: 640px) {
  .profit_cash_request01 .profit_content form .form_item .able p:nth-child(1) {
    justify-content: center;
  }
}
.profit_cash_request01 .profit_content form .form_item .able p:nth-child(1) span {
  color: #e64d4d;
  font-size: 24px;
  font-family: "Poppings", sans-serif;
  line-height: 1;
}
.profit_cash_request01 .profit_content form .form_item .able p:nth-child(2) {
  color: #e64d4d;
  font-size: 15px;
  margin-top: 5px;
}
.profit_cash_request01 .profit_content form .form_item input {
  width: 300px;
  max-width: 100%;
}
.profit_cash_request01 .profit_content form .form_item select {
  width: 300px;
  max-width: 100%;
}
.profit_cash_request01 .profit_content form .form_item .profit_btn {
  display: flex;
  align-items: center;
  gap: 0 calc(0.625rem + 1.5625vw);
}
.profit_cash_request01 .profit_content form .form_item .profit_btn a {
  width: 126px;
}

.topmenu01 {
  margin-bottom: 40px;
  padding-top: 4.1666666667vw;
}
.topmenu01 * img {
  border-radius: 10px;
}
.topmenu01 ul.pc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}
@media (max-width: 1024px) {
  .topmenu01 ul.pc {
    display: none;
  }
}
.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;
  border-radius: 10px;
}
.topmenu01 ul.pc li a:hover, .topmenu01 ul.pc li a.active {
  color: #fff;
  background: #84ccc9;
  border: 1px solid #84ccc9;
}
.topmenu01 .selector {
  position: relative;
  width: 100%;
  max-width: 450px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 30px;
  background: #84ccc9;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .topmenu01 .selector {
    display: none;
  }
}
.topmenu01 .selector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.topmenu01 ul.mb {
  display: none;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 1025px) {
  .topmenu01 ul.mb {
    display: none !important;
  }
}
.topmenu01 ul.mb li + li {
  border-top: 1px solid #ededed;
}
.topmenu01 ul.mb li a {
  display: block;
  color: #393939;
  font-size: 15px;
  text-align: center;
  padding: 11px 30px 12px;
  background: #fff;
}
.topmenu01 ul.mb li a.active {
  background: #ededed;
}

.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;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  padding: 0 20px;
}
.pagination01 .pagination-box__links a {
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .pagination01 .pagination-box__links {
    width: 100%;
    order: -1;
    padding: 0 0 5px;
    margin-bottom: 5px;
  }
  .pagination01 .pagination-box__links a.active {
    font-size: 18px;
  }
}
@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;
  }
}
.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 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 6.40625vw;
  right: 3.2291666667vw;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  padding: 12px;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 30;
  transition: all 0.4s ease;
}
@media (max-width: 1280px) {
  .gotop01_footer {
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .gotop01_footer {
    bottom: initial;
    top: 20px;
  }
}
@media (max-width: 960px) {
  .gotop01_footer {
    display: none;
  }
}
.gotop01_footer .gotop01_content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 1px dashed #fff;
  border-radius: 50%;
}
.gotop01_footer .gotop01_content .main_box {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 6px;
  flex-direction: column;
}
.gotop01_footer .gotop01_content .main_box .icon_box {
  width: 16px;
  height: 10px;
  transform: rotate(-90deg);
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.gotop01_footer .gotop01_content .main_box .icon_box svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #fff;
}
.gotop01_footer .gotop01_content .main_box .txt_box {
  font-size: 15px;
  line-height: 15px;
  color: #FFF;
  font-family: "Cormorant Infant", sans-serif;
  text-transform: uppercase;
  margin-top: 4px;
}

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

.popup01 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 150;
  transition: all 0.3s;
}
.popup01 .close_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.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;
}
.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;
  z-index: 1;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .popup01 .popup_content .close_btn {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
.popup01 .popup_content .close_btn::before, .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) {
  .popup01 .popup_content .close_btn::before, .popup01 .popup_content .close_btn::after {
    width: 15px;
  }
}
.popup01 .popup_content .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup01 .popup_content .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup01 .popup_content .editor {
  max-height: calc(100vh - 60px);
  overflow: auto;
}
.popup01.show {
  opacity: 1;
  pointer-events: auto;
}
.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: 14px;
  line-height: 33px;
}
.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: #f5f5f5;
}
.mobile_menu01 .mobile-menu__nav__link.dropdown.active::after {
  top: 2px;
  transform: rotate(45deg);
}
.mobile_menu01 .mobile-menu__nav__dropdown {
  display: none;
  background-color: #f5f5f5;
}
.mobile_menu01 .mobile-menu__nav__dropdown__link {
  display: block;
  padding: 15px 22px;
  font-size: 16px;
  color: #414042;
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__link {
  margin-top: 0;
  padding: 15px 22px;
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__link.dropdown {
  position: relative;
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__link.dropdown::before, .mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__link.dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 2px;
  border-top: unset;
  border-bottom: unset;
  background: rgba(65, 64, 66, 0.5);
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__link.dropdown::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__link.dropdown.active {
  background-color: #f5f5f5;
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__link.dropdown.active::after {
  transform: rotate(0deg);
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__dropdown {
  background-color: #f5f5f5;
}
.mobile_menu01 .mobile-menu__nav__dropdown > div .mobile-menu__nav__dropdown__link {
  padding: 15px 22px 15px 38px;
}
.mobile_menu01 .mobile-menu__close-btn {
  position: relative;
  width: 70px;
  margin: 0 0 0 auto;
  padding: 35px 0 10px;
  background: #84ccc9;
  color: #fff;
  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: 20px;
  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;
}

.gdpr01 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 30px;
  background: rgba(34, 34, 34, 0.85);
  opacity: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .gdpr01 {
    padding: 15px;
  }
}
.gdpr01.show {
  opacity: 1;
  transform: translateY(0%);
}
.gdpr01 div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gdpr01 div {
    flex-direction: column;
  }
}
.gdpr01 div .gdpr_txt {
  width: calc(100% - 150px);
  color: #fff;
  font-size: 14px;
  text-align: justify;
  padding: 0 15px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .gdpr01 div .gdpr_txt {
    width: 100%;
    padding: 0 0 15px;
  }
}
.gdpr01 div .gdpr_txt a {
  color: #fff;
  text-decoration: underline;
}
.gdpr01 div .gdpr_btn {
  display: block;
  width: 200px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 11px 0;
  margin: 0 15px;
  background: #db9b8f;
  border-width: 1px;
  border-style: solid;
  border-color: #db9b8f;
  border-radius: 50px;
  transition: all 0.3s;
}
.gdpr01 div .gdpr_btn:hover {
  background: transparent;
}

.gdpr02 {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 760px;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.1);
  z-index: 200;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s;
}
.gdpr02.show {
  opacity: 1;
  transform: translateY(0%);
}
.gdpr02 div .module_desc {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}
.gdpr02 div .module_desc a {
  color: #db9b8f;
  font-weight: 700;
}

.gdpr02_mng {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.gdpr02_mng .close_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.gdpr02_mng .mng_content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  padding: 30px 20px;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 40px));
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 480px) {
  .gdpr02_mng .mng_content {
    padding: 30px 15px;
  }
}
.gdpr02_mng .mng_content .close_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #84ccc9;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .gdpr02_mng .mng_content .close_btn {
    width: 35px;
    height: 35px;
  }
}
.gdpr02_mng .mng_content .close_btn::before, .gdpr02_mng .mng_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) {
  .gdpr02_mng .mng_content .close_btn::before, .gdpr02_mng .mng_content .close_btn::after {
    width: 20px;
  }
}
.gdpr02_mng .mng_content .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gdpr02_mng .mng_content .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gdpr02_mng .mng_content .mng_title {
  color: #393939;
  font-size: calc(1.25rem + 0.3645833333vw);
  font-weight: 700;
  margin-bottom: 20px;
}
.gdpr02_mng .mng_content .module_desc {
  line-height: 1.5;
  margin-bottom: 20px;
}
.gdpr02_mng .mng_content .other_link {
  display: block;
  color: #393939;
  font-weight: 700;
}
.gdpr02_mng .mng_content .other_link + .other_link {
  margin-top: 10px;
}
.gdpr02_mng .mng_content .other_link:hover {
  color: #84ccc9;
}
@media (max-width: 400px) {
  .gdpr02_mng .mng_content .button_set a span span {
    display: none;
  }
}
.gdpr02_mng.show {
  opacity: 1;
  pointer-events: auto;
}
.gdpr02_mng.show .mng_content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.loading00 {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 0;
}

.loading01 {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
}
.loading01 > * {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading01 img {
  width: 100%;
  height: 100%;
  animation: loadingBlurScale 4s ease-in-out forwards;
}

@keyframes loadingBlurScale {
  0% {
    transform: scale(1.5);
    filter: blur(15px);
    opacity: 1;
  }
  33.33% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  66.66% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    filter: blur(15px);
    opacity: 0;
  }
}
.button01 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  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 i {
  font-size: 13px;
}
.button01.center {
  margin: 0 auto;
}
.button01.arrowtype {
  padding: 0;
}
.button01 span {
  color: #000;
  font-family: "Noto Serif TC", sans-serif;
  transition: all 0.3s;
}
.button01 svg {
  width: auto;
  height: 50%;
  fill: #000;
  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 span, .button01.active span {
  color: #84ccc9;
}
.button01:hover svg, .button01.active svg {
  fill: #84ccc9;
}
.button01.white span {
  color: #fff;
}
.button01.white svg {
  fill: #fff;
}
.button01.white:hover span, .button01.white.active span {
  color: #84ccc9;
}
.button01.white:hover svg, .button01.white.active svg {
  fill: #84ccc9;
}

.button06 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  padding-right: 2.8645833333vw;
  border-radius: 12px;
  background: transparent;
  border: 1px solid #c8b8a9;
  cursor: pointer;
  position: relative;
  width: 180px;
  height: 45px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .button06 {
    width: 160px;
    height: 40px;
  }
}
.button06.arrowtype {
  width: 45px;
}
@media (max-width: 1200px) {
  .button06.arrowtype {
    width: 40px;
  }
}
.button06 span {
  font-size: 14px;
}
@media (max-width: 1200px) {
  .button06 span {
    font-size: 13px;
  }
}
.button06 i {
  font-size: 13px;
}
.button06.center {
  margin: 0 auto;
}
.button06.arrowtype {
  padding: 0;
}
.button06 span {
  font-size: 14px;
  font-weight: 700;
  color: #8a7669;
  font-family: "Noto Serif TC", sans-serif;
  transition: all 0.3s;
}
@media (max-width: 600px) {
  .button06 span {
    margin-left: -26px;
  }
}
.button06 svg {
  width: 26px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 0.9895833333vw;
  transform: translateY(-50%);
  fill: #8a7669;
  transition: all 0.3s;
}
.button06 i {
  position: relative;
  top: 1px;
  color: #8a7669;
  transition: all 0.3s;
}
.button06:not(.arrowtype) svg {
  margin: 0 0 0 32px;
}
@media (max-width: 1200px) {
  .button06:not(.arrowtype) svg {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 600px) {
  .button06:not(.arrowtype) svg {
    padding-right: 10px;
  }
}
.button06:not(.arrowtype) i {
  margin: 0 0 0 7px;
}
.button06.mirror {
  flex-direction: row-reverse;
}
.button06.mirror svg, .button06.mirror i {
  transform: scale(-1, 1);
}
.button06.mirror:not(.arrowtype) svg {
  margin: 0 32px 0 0;
}
@media (max-width: 1200px) {
  .button06.mirror:not(.arrowtype) svg {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 400px) {
  .button06.mirror:not(.arrowtype) svg {
    margin: 0 10px 0 0;
  }
}
.button06.mirror:not(.arrowtype) i {
  margin: 0 7px 0 0;
}
.button06:hover, .button06.active {
  background: #84ccc9;
  border: 1px solid #84ccc9;
}
.button06:hover span, .button06:hover i, .button06.active span, .button06.active i {
  color: #fff;
}
.button06:hover svg, .button06.active svg {
  fill: #fff;
}
.button06.white {
  background: transparent;
  border: 1px solid #fff;
}
@media (max-width: 1024px) {
  .button06.white {
    background: #fff;
  }
  .button06.white span, .button06.white i {
    color: #84ccc9;
  }
  .button06.white svg {
    fill: #84ccc9;
  }
}
.button06.white:hover, .button06.white.active {
  background: #fff;
}
.button06.white:hover span, .button06.white:hover i, .button06.white.active span, .button06.white.active i {
  color: #84ccc9;
}
.button06.white:hover svg, .button06.white.active svg {
  fill: #84ccc9;
}
.button06.spro:hover, .button06.spro.active {
  background: #c1977a;
  border: 1px solid #c1977a;
}
.button06.spro:hover span, .button06.spro:hover i, .button06.spro.active span, .button06.spro.active i {
  color: #fff;
}
.button06.spro:hover svg, .button06.spro.active svg {
  fill: #fff;
}

.cb_module {
  font-family: "Noto Serif TC", 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 * {
  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: 23px;
  font-weight: 500;
  font-family: "Cormorant Infant", sans-serif;
  margin: 0;
  transition: all 0.3s;
}
@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: "Noto Serif TC", sans-serif;
  margin: 0;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .cb_module .cb_title h3 {
    font-size: 16px;
  }
}

.cb_text02 .comma_box {
  position: relative;
  padding: 50px;
  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: #84ccc9;
  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: #84ccc9;
  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.cb_margin_bottom {
  margin: 0 0 20px !important;
}
.cb_text03 blockquote {
  padding: 10px 20px;
  margin: 0;
  border-left: 5px solid #84ccc9;
}
.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;
  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_text05 .cb_content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  margin: 0 -20px;
}
@media (max-width: 1200px) {
  .cb_text05 .cb_content {
    gap: 20px 0;
    margin: 0 -10px;
  }
}
.cb_text05 .cb_content > div {
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .cb_text05 .cb_content > div {
    padding: 0 10px;
  }
}
@media (max-width: 960px) {
  .cb_text05 .cb_content > div {
    width: 100%;
  }
}
.cb_text05 .cb_content > div .cb_title {
  margin-bottom: 10px;
}

.cb_text06 .cb_content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  margin: 0 -20px;
}
@media (max-width: 1200px) {
  .cb_text06 .cb_content {
    gap: 20px 0;
    margin: 0 -10px;
  }
}
.cb_text06 .cb_content > div {
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .cb_text06 .cb_content > div {
    padding: 0 10px;
  }
}
@media (max-width: 960px) {
  .cb_text06 .cb_content > div {
    width: 100%;
  }
}
.cb_text06 .cb_content > div > div {
  padding: 30px;
}
@media (max-width: 480px) {
  .cb_text06 .cb_content > div > div {
    padding: 25px;
  }
}
.cb_text06 .cb_content > div > div .cb_title {
  margin-bottom: 10px;
}

.cb_text07 .cb_content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  margin: 0 -20px;
}
@media (max-width: 1200px) {
  .cb_text07 .cb_content {
    gap: 20px 0;
    margin: 0 -10px;
  }
}
.cb_text07 .cb_content > div {
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .cb_text07 .cb_content > div {
    padding: 0 10px;
  }
}
@media (max-width: 960px) {
  .cb_text07 .cb_content > div {
    width: 100%;
  }
}
.cb_text07 .cb_content > div .cb_title {
  padding-bottom: 15px;
  margin-bottom: 14px;
}

.cb_text08 .cb_content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  margin: 0 -20px;
}
@media (max-width: 1200px) {
  .cb_text08 .cb_content {
    gap: 20px 0;
    margin: 0 -10px;
  }
}
.cb_text08 .cb_content > div {
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .cb_text08 .cb_content > div {
    padding: 0 10px;
  }
}
@media (max-width: 960px) {
  .cb_text08 .cb_content > div {
    width: 100%;
  }
}
.cb_text08 .cb_content > div > div {
  padding: 30px;
}
@media (max-width: 480px) {
  .cb_text08 .cb_content > div > div {
    padding: 25px;
  }
}
.cb_text08 .cb_content > div > div .cb_title {
  padding-bottom: 15px;
  margin-bottom: 14px;
}

.cb_text09 p {
  display: flex;
  padding: 10px 0;
}
.cb_text09 p > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: -4px;
  width: 35px;
  height: 35px;
  margin-right: 15px;
  border-radius: 50%;
}

.cb_text10 .cb_content {
  display: flex;
  align-items: center;
  gap: 0 60px;
}
@media (max-width: 720px) {
  .cb_text10 .cb_content {
    flex-wrap: wrap;
  }
}
.cb_text10 .cb_content > div:nth-child(1) {
  width: 100%;
}
.cb_text10 .cb_content > div:nth-child(2) {
  flex-shrink: 0;
}

.cb_photo01 {
  width: 100%;
}
.cb_photo01 img {
  width: 100%;
  margin: 0 auto;
}

.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 {
  position: relative;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo06 {
    padding: 10% 30px;
  }
}
.cb_photo06 .cb_background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.cb_photo06 .cb_background img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo06 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cb_photo06 .cb_wrap > div {
  width: 100%;
  max-width: 780px;
}

.cb_photo07 {
  position: relative;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo07 {
    padding: 10% 30px;
  }
}
.cb_photo07 .cb_background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.cb_photo07 .cb_background img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo07 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.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 {
  position: relative;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo08 {
    padding: 10% 30px;
  }
}
.cb_photo08 .cb_background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.cb_photo08 .cb_background img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo08 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.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 {
  position: relative;
  padding: 5.8% 30px;
}
@media (max-width: 960px) {
  .cb_photo09 {
    padding: 10% 30px;
  }
}
.cb_photo09 .cb_background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.cb_photo09 .cb_background img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo09 .cb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.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_photo10.mirror .cb_wrap {
  transform: scale(-1, 1);
}
.cb_photo10.mirror .cb_wrap .cb_marquee {
  transform: scale(-1, 1);
}
.cb_photo10.mirror .cb_wrap .cb_content > div:nth-child(1) img {
  transform: scale(-1, 1);
}
.cb_photo10.mirror .cb_wrap .cb_content > div:nth-child(2) > div {
  transform: scale(-1, 1);
}

.cb_photo11 {
  background: linear-gradient(to bottom, transparent 0%, transparent 246px, var(--bg-color) 246px, var(--bg-color) 100%);
}
@media (max-width: 1300px) {
  .cb_photo11 {
    background: var(--bg-color);
  }
}
.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_photo14 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.cb_photo14 .cb_wrap > div:nth-child(1) {
  flex-shrink: 0;
  width: calc(25% + 25px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_photo14 .cb_wrap > div:nth-child(1) {
    width: 100%;
    max-width: 350px;
    padding-right: 0;
    margin-bottom: 35px;
  }
}
.cb_photo14 .cb_wrap > div:nth-child(1) img {
  width: 100%;
}
.cb_photo14 .cb_wrap > div:nth-child(2) {
  width: calc(75% - 25px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_photo14 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }
}

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

.cb_photo16 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.cb_photo16 .cb_wrap > div:nth-child(1) {
  flex-shrink: 0;
  width: calc(25% + 25px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_photo16 .cb_wrap > div:nth-child(1) {
    width: 100%;
    max-width: 350px;
    padding-right: 0;
    margin-bottom: 35px;
  }
}
.cb_photo16 .cb_wrap > div:nth-child(1) > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_photo16 .cb_wrap > div:nth-child(1) > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_photo16 .cb_wrap > div:nth-child(2) {
  width: calc(75% - 25px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_photo16 .cb_wrap > div:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }
}

.cb_photo17 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .cb_photo17 .cb_wrap {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
.cb_photo17 .cb_wrap > div:nth-child(1) {
  width: calc(75% - 25px);
  padding-right: 25px;
}
@media (max-width: 960px) {
  .cb_photo17 .cb_wrap > div:nth-child(1) {
    width: 100%;
    padding-right: 0;
  }
}
.cb_photo17 .cb_wrap > div:nth-child(2) {
  flex-shrink: 0;
  width: calc(25% + 25px);
  padding-left: 25px;
}
@media (max-width: 960px) {
  .cb_photo17 .cb_wrap > div:nth-child(2) {
    width: 100%;
    max-width: 350px;
    padding-left: 0;
    margin-bottom: 35px;
  }
}
.cb_photo17 .cb_wrap > div:nth-child(2) > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_photo17 .cb_wrap > 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_card02 .cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card02 .cards > div {
  width: 33.3333333333%;
  padding: 15px;
}
@media (max-width: 960px) {
  .cb_card02 .cards > div {
    width: 50%;
  }
}
@media (max-width: 720px) {
  .cb_card02 .cards > div {
    width: 100%;
  }
}
.cb_card02 .cards > div img {
  width: 100%;
}

.cb_card03 .cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card03 .cards > div {
  width: 25%;
  padding: 15px;
}
@media (max-width: 1200px) {
  .cb_card03 .cards > div {
    width: 33.3333333333%;
  }
}
@media (max-width: 960px) {
  .cb_card03 .cards > div {
    width: 50%;
  }
}
@media (max-width: 720px) {
  .cb_card03 .cards > div {
    width: 100%;
  }
}
.cb_card03 .cards > div img {
  width: 100%;
}

.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 > img {
  width: 100%;
}
.cb_card04 .cb_slick:not(.slick-slider) > div > div {
  padding: 25px 15px 30px;
}
.cb_card04 .cb_slick.slick-slider {
  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 > img {
  width: 100%;
}
.cb_card04 .cb_slick.slick-slider .slick-slide > div {
  padding: 25px 15px 30px;
}

.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 {
  padding: 25px 15px 30px;
  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: #84ccc9 !important;
}
.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.reverse {
  color: #393939;
  background: #e6e7e8 !important;
}
.cb_card05 .cb_slick.slick-slider {
  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 {
  padding: 25px 15px 30px;
  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: #84ccc9 !important;
}
.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.reverse {
  color: #393939;
  background: #e6e7e8 !important;
}

.cb_card06 .cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card06 .cards > div {
  width: 50%;
  padding: 15px;
}
@media (max-width: 720px) {
  .cb_card06 .cards > div {
    width: 100%;
  }
}
.cb_card06 .cards > div .image {
  max-width: 52.5547445255%;
  margin: 0 auto;
}
.cb_card06 .cards > div .image > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_card06 .cards > div .image > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_card07 .cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card07 .cards > div {
  width: 33.3333333333%;
  padding: 15px;
}
@media (max-width: 960px) {
  .cb_card07 .cards > div {
    width: 50%;
  }
}
@media (max-width: 720px) {
  .cb_card07 .cards > div {
    width: 100%;
  }
}
.cb_card07 .cards > div .image {
  max-width: 77.1812080537%;
  margin: 0 auto;
}
.cb_card07 .cards > div .image > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_card07 .cards > div .image > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_card08 .cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card08 .cards > div {
  width: 25%;
  padding: 15px;
}
@media (max-width: 1200px) {
  .cb_card08 .cards > div {
    width: 33.3333333333%;
  }
}
@media (max-width: 960px) {
  .cb_card08 .cards > div {
    width: 50%;
  }
}
@media (max-width: 720px) {
  .cb_card08 .cards > div {
    width: 100%;
  }
}
.cb_card08 .cards > div .image {
  max-width: 72.5373134328%;
  margin: 0 auto;
}
.cb_card08 .cards > div .image > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_card08 .cards > div .image > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_card09 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cb_card09 .cb_slick:not(.slick-slider) > div {
  width: 33.3333333333%;
  padding: 15px;
}
.cb_card09 .cb_slick:not(.slick-slider) > div > div:nth-child(1) {
  max-width: 77.1812080537%;
  margin: 0 auto 20px;
}
.cb_card09 .cb_slick:not(.slick-slider) > div > div:nth-child(1) > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_card09 .cb_slick:not(.slick-slider) > div > div:nth-child(1) > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_card09 .cb_slick:not(.slick-slider) > div > div:nth-child(2) {
  padding: 15px 15px 20px;
}
.cb_card09 .cb_slick.slick-slider {
  margin: 0 -15px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card09 .cb_slick.slick-slider {
    margin: 0 -5px;
  }
}
.cb_card09 .cb_slick.slick-slider .slick-slide {
  padding: 0 15px;
}
@media (max-width: 720px) {
  .cb_card09 .cb_slick.slick-slider .slick-slide {
    padding: 0 5px;
  }
}
.cb_card09 .cb_slick.slick-slider .slick-slide > div:nth-child(1) {
  max-width: 77.1812080537%;
  margin: 0 auto 20px;
}
.cb_card09 .cb_slick.slick-slider .slick-slide > div:nth-child(1) > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_card09 .cb_slick.slick-slider .slick-slide > div:nth-child(1) > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_card09 .cb_slick.slick-slider .slick-slide > div:nth-child(2) {
  padding: 15px 15px 20px;
}

.cb_card10 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.cb_card10 .cb_slick:not(.slick-slider) > div {
  width: 25%;
  padding: 10px;
}
.cb_card10 .cb_slick:not(.slick-slider) > div > div:nth-child(1) {
  max-width: 72.5373134328%;
  margin: 0 auto 20px;
}
.cb_card10 .cb_slick:not(.slick-slider) > div > div:nth-child(1) > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_card10 .cb_slick:not(.slick-slider) > div > div:nth-child(1) > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_card10 .cb_slick:not(.slick-slider) > div > div:nth-child(2) {
  padding: 15px 15px 20px;
  transition: all 0.3s;
}
.cb_card10 .cb_slick:not(.slick-slider) > div > div:nth-child(2) p {
  transition: all 0.3s;
}
.cb_card10 .cb_slick:not(.slick-slider) > div:hover > div:nth-child(2) {
  background: #84ccc9 !important;
}
.cb_card10 .cb_slick:not(.slick-slider) > div:hover > div:nth-child(2) h3 {
  color: #fff;
}
.cb_card10 .cb_slick:not(.slick-slider) > div:hover > div:nth-child(2) p {
  color: #fff;
}
.cb_card10 .cb_slick:not(.slick-slider) > div:hover > div:nth-child(2) .cb_button01.reverse {
  color: #393939;
  background: #e6e7e8 !important;
}
.cb_card10 .cb_slick.slick-slider {
  margin: 0 -10px;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .cb_card10 .cb_slick.slick-slider {
    margin: 0 -5px;
  }
}
.cb_card10 .cb_slick.slick-slider .slick-slide {
  padding: 0 10px;
}
@media (max-width: 720px) {
  .cb_card10 .cb_slick.slick-slider .slick-slide {
    padding: 0 5px;
  }
}
.cb_card10 .cb_slick.slick-slider .slick-slide > div:nth-child(1) {
  max-width: 72.5373134328%;
  margin: 0 auto 20px;
}
.cb_card10 .cb_slick.slick-slider .slick-slide > div:nth-child(1) > div {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.cb_card10 .cb_slick.slick-slider .slick-slide > div:nth-child(1) > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_card10 .cb_slick.slick-slider .slick-slide > div:nth-child(2) {
  padding: 15px 15px 20px;
  transition: all 0.3s;
}
.cb_card10 .cb_slick.slick-slider .slick-slide > div:nth-child(2) p {
  transition: all 0.3s;
}
.cb_card10 .cb_slick.slick-slider .slick-slide:hover > div:nth-child(2) {
  background: #84ccc9 !important;
}
.cb_card10 .cb_slick.slick-slider .slick-slide:hover > div:nth-child(2) h3 {
  color: #fff;
}
.cb_card10 .cb_slick.slick-slider .slick-slide:hover > div:nth-child(2) p {
  color: #fff;
}
.cb_card10 .cb_slick.slick-slider .slick-slide:hover > div:nth-child(2) .cb_button01.reverse {
  color: #393939;
  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) .box {
  width: 25%;
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box01 .cb_slick:not(.slick-slider) .box {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box01 .cb_slick:not(.slick-slider) .box {
    padding: 30px 15px;
  }
}
@media (max-width: 960px) {
  .cb_box01 .cb_slick:not(.slick-slider) .box {
    width: 33.3333333333%;
  }
}
@media (max-width: 720px) {
  .cb_box01 .cb_slick:not(.slick-slider) .box {
    width: 50%;
  }
}
.cb_box01 .cb_slick:not(.slick-slider) .box img {
  margin: 0 auto 15px;
}
.cb_box01 .cb_slick:not(.slick-slider) .box h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box01 .cb_slick:not(.slick-slider) .box h4 {
  font-weight: 400;
  margin: 0;
}
.cb_box01 .cb_slick.slick-slider .slick-slide .box {
  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 {
  overflow: hidden;
}
.cb_box02 .cb_slick {
  margin: 0 -15px;
}
.cb_box02 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
}
.cb_box02 .cb_slick:not(.slick-slider) .box {
  width: 20%;
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box02 .cb_slick:not(.slick-slider) .box {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box02 .cb_slick:not(.slick-slider) .box {
    width: 25%;
    padding: 30px 15px;
  }
}
@media (max-width: 960px) {
  .cb_box02 .cb_slick:not(.slick-slider) .box {
    width: 33.3333333333%;
  }
}
@media (max-width: 720px) {
  .cb_box02 .cb_slick:not(.slick-slider) .box {
    width: 50%;
  }
}
.cb_box02 .cb_slick:not(.slick-slider) .box img {
  margin: 0 auto 15px;
}
.cb_box02 .cb_slick:not(.slick-slider) .box h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box02 .cb_slick:not(.slick-slider) .box h4 {
  font-weight: 400;
  margin: 0;
}
.cb_box02 .cb_slick.slick-slider .slick-slide .box {
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box02 .cb_slick.slick-slider .slick-slide .box {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box02 .cb_slick.slick-slider .slick-slide .box {
    padding: 30px 15px;
  }
}
.cb_box02 .cb_slick.slick-slider .slick-slide .box img {
  margin: 0 auto 15px;
}
.cb_box02 .cb_slick.slick-slider .slick-slide .box h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box02 .cb_slick.slick-slider .slick-slide .box h4 {
  font-weight: 400;
  margin: 0;
}

.cb_box03 {
  overflow: hidden;
}
.cb_box03 .cb_slick {
  margin: 0 -15px;
}
.cb_box03 .cb_slick:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
}
.cb_box03 .cb_slick:not(.slick-slider) .box {
  width: 16.6666666667%;
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box03 .cb_slick:not(.slick-slider) .box {
    padding: 40px 15px;
  }
}
@media (max-width: 1366px) {
  .cb_box03 .cb_slick:not(.slick-slider) .box {
    width: 20%;
  }
}
@media (max-width: 1200px) {
  .cb_box03 .cb_slick:not(.slick-slider) .box {
    width: 25%;
    padding: 30px 15px;
  }
}
@media (max-width: 960px) {
  .cb_box03 .cb_slick:not(.slick-slider) .box {
    width: 33.3333333333%;
  }
}
@media (max-width: 720px) {
  .cb_box03 .cb_slick:not(.slick-slider) .box {
    width: 50%;
  }
}
.cb_box03 .cb_slick:not(.slick-slider) .box img {
  margin: 0 auto 15px;
}
.cb_box03 .cb_slick:not(.slick-slider) .box h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box03 .cb_slick:not(.slick-slider) .box h4 {
  font-weight: 400;
  margin: 0;
}
.cb_box03 .cb_slick.slick-slider .slick-slide .box {
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box03 .cb_slick.slick-slider .slick-slide .box {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box03 .cb_slick.slick-slider .slick-slide .box {
    padding: 30px 15px;
  }
}
.cb_box03 .cb_slick.slick-slider .slick-slide .box img {
  margin: 0 auto 15px;
}
.cb_box03 .cb_slick.slick-slider .slick-slide .box h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box03 .cb_slick.slick-slider .slick-slide .box h4 {
  font-weight: 400;
  margin: 0;
}

.cb_box04 .boxes {
  display: flex;
  flex-wrap: wrap;
}
.cb_box04 .boxes .box {
  width: 50%;
  padding: 7.5px;
}
.cb_box04 .boxes .box > div {
  padding: 50px 15px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  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_box04 .boxes .box > div img {
  margin: 0 auto 15px;
}
.cb_box04 .boxes .box > div h3 {
  font-weight: 400;
  margin: 0 0 10px;
}
.cb_box04 .boxes .box > div h4 {
  font-weight: 400;
  margin: 0;
}

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

.cb_box06 .boxes {
  display: flex;
  flex-wrap: wrap;
}
.cb_box06 .boxes .box {
  width: 50%;
  padding: 7.5px;
}
@media (max-width: 540px) {
  .cb_box06 .boxes .box {
    width: 100%;
  }
}
.cb_box06 .boxes .box > div {
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box06 .boxes .box > div {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box06 .boxes .box > div {
    padding: 30px 15px;
  }
}

.cb_box07 .boxes {
  display: flex;
  flex-wrap: wrap;
}
.cb_box07 .boxes .box {
  width: 33.3333333333%;
  padding: 7.5px;
}
@media (max-width: 720px) {
  .cb_box07 .boxes .box {
    width: 100%;
  }
}
.cb_box07 .boxes .box > div {
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box07 .boxes .box > div {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box07 .boxes .box > div {
    padding: 30px 15px;
  }
}

.cb_box08 .boxes {
  display: flex;
  flex-wrap: wrap;
}
.cb_box08 .boxes .box {
  width: 25%;
  padding: 7.5px;
}
@media (max-width: 1200px) {
  .cb_box08 .boxes .box {
    width: 50%;
  }
}
@media (max-width: 540px) {
  .cb_box08 .boxes .box {
    width: 100%;
  }
}
.cb_box08 .boxes .box > div {
  padding: 50px 15px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .cb_box08 .boxes .box > div {
    padding: 40px 15px;
  }
}
@media (max-width: 1200px) {
  .cb_box08 .boxes .box > div {
    padding: 30px 15px;
  }
}

.cb_box09 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_box09 .cb_wrap .box {
  position: relative;
  width: 33.3333333333%;
  background: #84ccc9;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cb_box09 .cb_wrap .box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cb_box09 .cb_wrap .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 1200px) {
  .cb_box09 .cb_wrap .box > div:nth-child(1) {
    width: 55%;
  }
}
@media (max-width: 540px) {
  .cb_box09 .cb_wrap .box > div:nth-child(1) {
    width: 100%;
  }
}
.cb_box09 .cb_wrap .box > div:nth-child(1) div {
  position: relative;
  height: 0;
  padding-bottom: 78.125%;
  overflow: hidden;
}
.cb_box09 .cb_wrap .box > div:nth-child(1) div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_box09 .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_box09 .cb_wrap .box > div:nth-child(1) div::after {
    display: none;
  }
}
.cb_box09 .cb_wrap .box > div:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 5vw);
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .cb_box09 .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: 540px) {
  .cb_box09 .cb_wrap .box > div:nth-child(2) {
    width: 100%;
    padding: 30px 15px;
  }
}
.cb_box09 .cb_wrap .box:hover > div:nth-child(1) div::after {
  opacity: 1;
}
.cb_box09 .cb_wrap .box:hover > div:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
}

.cb_box10 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_box10 .cb_wrap .box {
  position: relative;
  width: 25%;
  background: #84ccc9;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cb_box10 .cb_wrap .box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cb_box10 .cb_wrap .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 1200px) {
  .cb_box10 .cb_wrap .box > div:nth-child(1) {
    width: 55%;
  }
}
@media (max-width: 540px) {
  .cb_box10 .cb_wrap .box > div:nth-child(1) {
    width: 100%;
  }
}
.cb_box10 .cb_wrap .box > div:nth-child(1) div {
  position: relative;
  height: 0;
  padding-bottom: 78.125%;
  overflow: hidden;
}
.cb_box10 .cb_wrap .box > div:nth-child(1) div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cb_box10 .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_box10 .cb_wrap .box > div:nth-child(1) div::after {
    display: none;
  }
}
.cb_box10 .cb_wrap .box > div:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .cb_box10 .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: 540px) {
  .cb_box10 .cb_wrap .box > div:nth-child(2) {
    width: 100%;
    padding: 30px 15px;
  }
}
.cb_box10 .cb_wrap .box:hover > div:nth-child(1) div::after {
  opacity: 1;
}
.cb_box10 .cb_wrap .box:hover > div:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
}

.cb_box11 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_box11 .cb_wrap .box {
  width: 33.3333333333%;
}
@media (max-width: 720px) {
  .cb_box11 .cb_wrap .box {
    width: 50%;
  }
}
.cb_box11 .cb_wrap .box div {
  position: relative;
  height: 0;
  padding-bottom: 78.125%;
  overflow: hidden;
}
.cb_box11 .cb_wrap .box div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_box12 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_box12 .cb_wrap .box {
  width: 25%;
}
@media (max-width: 720px) {
  .cb_box12 .cb_wrap .box {
    width: 50%;
  }
}
.cb_box12 .cb_wrap .box div {
  position: relative;
  height: 0;
  padding-bottom: 78.125%;
  overflow: hidden;
}
.cb_box12 .cb_wrap .box div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_box13 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_box13 .cb_wrap .box {
  width: 20%;
}
@media (max-width: 1200px) {
  .cb_box13 .cb_wrap .box {
    width: 33.3333333333%;
  }
}
@media (max-width: 720px) {
  .cb_box13 .cb_wrap .box {
    width: 50%;
  }
}
.cb_box13 .cb_wrap .box div {
  position: relative;
  height: 0;
  padding-bottom: 78.125%;
  overflow: hidden;
}
.cb_box13 .cb_wrap .box div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cb_box14 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_box14 .cb_wrap .box {
  width: 16.6666666667%;
}
@media (max-width: 1200px) {
  .cb_box14 .cb_wrap .box {
    width: 33.3333333333%;
  }
}
@media (max-width: 720px) {
  .cb_box14 .cb_wrap .box {
    width: 50%;
  }
}
.cb_box14 .cb_wrap .box div {
  position: relative;
  height: 0;
  padding-bottom: 78.125%;
  overflow: hidden;
}
.cb_box14 .cb_wrap .box div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.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_map04 .cb_content {
  position: relative;
}
.cb_map04 .cb_content .cb_map_txt {
  padding: 30px;
}
@media (min-width: 961px) {
  .cb_map04 .cb_content .cb_map_txt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 60%;
    width: 400px;
    max-width: 30%;
    padding: calc(0.625rem + 1.0416666667vw);
    overflow-y: auto;
    z-index: 2;
  }
}
.cb_map04 .cb_content .rwd_frame {
  position: relative;
  height: 0;
  padding-bottom: 500px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  .cb_map04 .cb_content .rwd_frame {
    padding-bottom: 56.25%;
  }
}
@media (max-width: 640px) {
  .cb_map04 .cb_content .rwd_frame {
    padding-bottom: 325px;
  }
}
.cb_map04 .cb_content .rwd_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.cb_history01 .cb_wrap > div {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 540px) {
  .cb_history01 .cb_wrap > div {
    width: 100% !important;
    padding-bottom: 30px;
  }
}
.cb_history01 .cb_wrap > div::before {
  content: "";
  position: absolute;
  top: calc(1.125rem + 0.5208333333vw);
  width: 30px;
  height: 30px;
  background: rgba(132, 204, 201, 0.3);
  border-radius: 50%;
}
.cb_history01 .cb_wrap > div::after {
  content: "";
  position: absolute;
  top: calc(1.125rem + 0.5208333333vw);
  width: 20px;
  height: 20px;
  background: #84ccc9;
  border-radius: 50%;
}
.cb_history01:not(.reverse) .cb_wrap > div {
  width: calc(50% + 0.5px);
  text-align: right;
  padding-right: 45px;
  border-right: 1px solid var(--border-color);
}
@media (max-width: 540px) {
  .cb_history01:not(.reverse) .cb_wrap > div {
    text-align: left;
    padding-right: unset;
    padding-left: 30px;
    border-right: unset;
    border-left: 1px solid var(--border-color);
  }
}
.cb_history01:not(.reverse) .cb_wrap > div::before, .cb_history01:not(.reverse) .cb_wrap > div::after {
  left: 100%;
  transform: translate(-50%, -50%);
}
@media (max-width: 540px) {
  .cb_history01:not(.reverse) .cb_wrap > div::before, .cb_history01:not(.reverse) .cb_wrap > div::after {
    left: unset;
    right: 100%;
    transform: translate(calc(50% - 1px), -50%);
  }
}
.cb_history01:not(.reverse) .cb_wrap > div img {
  margin: 0 0 0 auto;
}
@media (max-width: 540px) {
  .cb_history01:not(.reverse) .cb_wrap > div img {
    margin: unset;
  }
}
.cb_history01.reverse .cb_wrap > div {
  width: calc(50% + 0.5px);
  padding-left: 45px;
  margin: 0 0 0 auto;
  border-left: 1px solid var(--border-color);
}
@media (max-width: 540px) {
  .cb_history01.reverse .cb_wrap > div {
    padding-left: 30px;
  }
}
.cb_history01.reverse .cb_wrap > div::before, .cb_history01.reverse .cb_wrap > div::after {
  right: 100%;
  transform: translate(calc(50% - 1px), -50%);
}

.cb_history02 .cb_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cb_history02 .cb_wrap .time {
  flex-shrink: 0;
  position: relative;
  width: 147px;
  text-align: right;
  padding: 5px 20px 20px 0;
  border-right: 3px solid var(--border-color);
}
@media (max-width: 1024px) {
  .cb_history02 .cb_wrap .time {
    width: 107px;
  }
}
@media (max-width: 540px) {
  .cb_history02 .cb_wrap .time {
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    text-align: left;
    padding: 0 0 5px 0;
    border-right: unset;
    border-bottom: 3px solid var(--border-color);
  }
}
.cb_history02 .cb_wrap .time::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 100%;
  width: 16px;
  height: 16px;
  background: #fff url("../img/arrow/arrow19.svg") no-repeat center center;
  border: 2px solid #84ccc9;
  border-radius: 50%;
  transform: translateX(calc(-50% + 1px));
  transition: background 0.2s;
}
@media (max-width: 1024px) {
  .cb_history02 .cb_wrap .time::before {
    background: #84ccc9 url("../img/arrow/arrow19.svg") no-repeat center center;
  }
}
@media (max-width: 540px) {
  .cb_history02 .cb_wrap .time::before {
    flex-shrink: 0;
    position: unset;
    transform: unset;
  }
}
.cb_history02 .cb_wrap .note {
  width: calc(100% - 150px);
  padding: 14px 0 20px 20px;
}
@media (max-width: 1024px) {
  .cb_history02 .cb_wrap .note {
    width: calc(100% - 110px);
  }
}
@media (max-width: 540px) {
  .cb_history02 .cb_wrap .note {
    width: 100%;
    padding: 10px 0 30px;
  }
}
.cb_history02 .cb_wrap:hover .time::before {
  background: #84ccc9 url("../img/arrow/arrow19.svg") no-repeat center center;
}

.cb_button01 {
  display: block;
  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: #84ccc9 !important;
}
.cb_button01.reverse {
  color: #fff;
  background: #84ccc9 !important;
}
.cb_button01.reverse:hover {
  color: #393939;
  background: #e6e7e8 !important;
}

.cb_button02 {
  display: flex;
  align-items: center;
  justify-content: center;
  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: #84ccc9 !important;
}
.cb_button02:hover span svg polyline {
  stroke: #fff;
}
.cb_button02.reverse {
  color: #fff;
  background: #84ccc9 !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: 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: #84ccc9;
  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: #84ccc9 !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: 200px;
  max-width: 100%;
  font-size: 12px;
  text-decoration: none;
  padding: 13px 10px;
  background: #84ccc9 !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: #e6e7e8 !important;
}
.cb_button04.reverse::before {
  background: #84ccc9;
}
.cb_button04.reverse > span {
  color: #fff;
}
.cb_button04.reverse > span span svg line {
  stroke: #fff;
}
.cb_button04.reverse > span span svg circle {
  stroke: #fff;
}
.cb_button04.reverse > span span svg polygon {
  fill: #fff;
}
.cb_button04.reverse:hover > span {
  color: #393939;
}
.cb_button04.reverse:hover > span span svg line {
  stroke: #393939;
}
.cb_button04.reverse:hover > span span svg circle {
  stroke: #393939;
}
.cb_button04.reverse:hover > span span svg polygon {
  fill: #393939;
}

.cb_button05 {
  display: flex;
  align-items: center;
  justify-content: center;
  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: #84ccc9 !important;
}
.cb_button05:hover span svg path {
  fill: #fff;
}
.cb_button05.reverse {
  color: #fff;
  background: #84ccc9 !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: 200px;
  max-width: 100%;
  color: #393939;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  padding: 13px 35px;
  background: #fff !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: #84ccc9 !important;
}
.cb_button06:hover::before {
  background: #fff;
}
.cb_button06.reverse {
  color: #fff;
  background: #84ccc9 !important;
}
.cb_button06.reverse::before {
  background: #fff;
}
.cb_button06.reverse:hover {
  color: #393939;
  background: #fff !important;
}
.cb_button06.reverse:hover::before {
  background: #393939;
}

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