:root {
  --mart-base: #666666;
  --mart-base-dark: #5c5c5c;
  --mart-pink: #df9abf;
  --mart-pink-dark: #d95e9a;
  --mart-soft: #f7f7f8;
  --mart-text: #222222;
  --mart-line: #dedede;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.u-body {
  margin: 0;
  min-height: 100vh;
  color: var(--mart-text);
  background: #ffffff;
  font-family: "Open Sans", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.u-dialog-open-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 500;
}

p {
  margin-bottom: 0.5rem;
}

.u-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.u-section,
section[class*="u-section-"] {
  position: relative;
}

.u-sheet {
  position: relative;
  width: 1140px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .u-sheet {
    width: 940px;
  }
}

@media (max-width: 991px) {
  .u-sheet {
    width: 720px;
  }
}

@media (max-width: 767px) {
  .u-sheet {
    width: 540px;
  }
}

@media (max-width: 575px) {
  .u-sheet {
    width: 340px;
  }
}

@media (max-width: 359px) {
  .u-sheet {
    width: calc(100% - 20px);
  }
}

.u-expanded-width,
.u-expanded-width-xs,
.u-expanded-width-sm,
.u-expanded-width-md,
.u-expanded-width-lg,
.u-expanded-width-xl,
.u-expanded-width-xxl {
  width: 100%;
}

.custom-expanded {
  max-width: none;
}

.u-align-left {
  text-align: left;
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

@media (min-width: 1200px) {
  .u-align-left-xl {
    text-align: left;
  }

  .u-align-center-xl {
    text-align: center;
  }

  .u-align-right-xl {
    text-align: right;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .u-align-left-lg {
    text-align: left;
  }

  .u-align-center-lg {
    text-align: center;
  }

  .u-align-right-lg {
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .u-align-left-md {
    text-align: left;
  }

  .u-align-center-md {
    text-align: center;
  }

  .u-align-right-md {
    text-align: right;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .u-align-left-sm {
    text-align: left;
  }

  .u-align-center-sm {
    text-align: center;
  }

  .u-align-right-sm {
    text-align: right;
  }
}

@media (max-width: 575px) {
  .u-align-left-xs {
    text-align: left;
  }

  .u-align-center-xs {
    text-align: center;
  }

  .u-align-right-xs {
    text-align: right;
  }
}

.u-valign-top,
.u-valign-top-xs,
.u-valign-top-sm,
.u-valign-top-md,
.u-valign-top-lg,
.u-valign-top-xl,
.u-valign-top-xxl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.u-valign-middle,
.u-valign-middle-xs,
.u-valign-middle-sm,
.u-valign-middle-md,
.u-valign-middle-lg,
.u-valign-middle-xl,
.u-valign-middle-xxl {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.u-valign-bottom,
.u-valign-bottom-xs,
.u-valign-bottom-sm,
.u-valign-bottom-md,
.u-valign-bottom-lg,
.u-valign-bottom-xl,
.u-valign-bottom-xxl {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.u-container-style,
.u-group,
.u-list,
.u-list-item,
.u-repeater-item,
.u-layout,
.u-layout-wrap,
.u-layout-cell,
.u-form-group {
  position: relative;
}

.u-container-layout {
  position: relative;
  flex: 1 1 auto;
  max-width: 100%;
}

.u-list .u-repeater,
.u-gallery-inner {
  display: grid;
}

.u-list:not(.u-layout-horizontal) .u-repeater {
  grid-auto-flow: row;
}

.u-layout-row {
  display: flex;
  flex-wrap: nowrap;
  min-height: 100%;
}

.u-layout-col {
  display: flex;
  flex-direction: column;
}

.u-layout-cell {
  display: flex;
  min-height: 1px;
}

.u-size-60 {
  flex: 0 0 100%;
  max-width: 100%;
}

.u-size-30,
.u-size-30-lg,
.u-size-30-xl,
.u-size-30-xxl {
  flex: 0 0 50%;
  max-width: 50%;
}

.u-size-36-lg,
.u-size-36-xl,
.u-size-36-xxl {
  flex: 0 0 60%;
  max-width: 60%;
}

.u-size-34-md,
.u-size-34-sm,
.u-size-34-xs {
  flex: 0 0 56.6667%;
  max-width: 56.6667%;
}

.u-size-32-md,
.u-size-32-sm,
.u-size-32-xs {
  flex: 0 0 53.3333%;
  max-width: 53.3333%;
}

.u-size-31-lg,
.u-size-31-xl {
  flex: 0 0 51.6667%;
  max-width: 51.6667%;
}

.u-size-29-lg,
.u-size-29-xl {
  flex: 0 0 48.3333%;
  max-width: 48.3333%;
}

.u-size-28-md,
.u-size-28-sm,
.u-size-28-xs {
  flex: 0 0 46.6667%;
  max-width: 46.6667%;
}

.u-size-26-md,
.u-size-26-sm,
.u-size-26-xs {
  flex: 0 0 43.3333%;
  max-width: 43.3333%;
}

.u-size-24-lg,
.u-size-24-xl,
.u-size-24-xxl {
  flex: 0 0 40%;
  max-width: 40%;
}

@media (max-width: 767px) {
  .u-layout-row {
    flex-direction: column;
  }

  .u-layout-row > [class*="u-size-"] {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
}

.u-image,
.u-back-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.u-image-contain,
.u-video-contain {
  background-size: contain;
}

img.u-image,
.u-back-image,
.u-expanded {
  display: block;
  object-fit: cover;
}

.u-expanded {
  width: 100%;
  height: 100%;
}

.u-image-circle,
.u-shape-circle,
.u-icon-circle {
  border-radius: 50%;
}

.u-radius,
.u-btn-round,
.u-image-round,
.u-shape-round {
  border-radius: var(--radius, 10px);
}

.u-shape-rectangle {
  border-radius: 0;
}

.u-line {
  display: block;
  border-style: solid;
  border-width: 0;
}

.u-line-horizontal {
  border-bottom-width: 1px;
}

.u-btn,
.u-button-style {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
  border: 0 solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.u-button-link {
  background: transparent;
  border-color: transparent;
}

.u-file-icon:not(.u-custom-list),
.u-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.u-file-icon img {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
}

.u-custom-list {
  display: block;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.u-custom-list li {
  display: flex;
  align-items: baseline;
  gap: 0.45em;
}

.u-custom-list .u-list-icon {
  flex: 0 0 1.1em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  line-height: inherit;
}

.u-custom-list .u-list-icon > div {
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-hidden {
  display: none !important;
}

@media (max-width: 575px) {
  .u-hidden-xs {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .u-hidden-sm {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .u-hidden-md {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .u-hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .u-hidden-xl {
    display: none !important;
  }
}

.u-white {
  color: #111111;
  background-color: #ffffff;
}

.u-black {
  color: #ffffff;
  background-color: #000000;
}

.u-grey-5 {
  color: #111111;
  background-color: #f2f2f2;
}

.u-grey-10 {
  color: #111111;
  background-color: #e5e5e5;
}

.u-grey-25 {
  color: #111111;
  background-color: #c0c0c0;
}

.u-grey-30 {
  color: #111111;
  background-color: #b3b3b3;
}

.u-grey-40 {
  color: #111111;
  background-color: #999999;
}

.u-grey-50 {
  color: #ffffff;
  background-color: #808080;
}

.u-grey-70 {
  color: #ffffff;
  background-color: #4d4d4d;
}

.u-palette-1-base {
  color: #ffffff;
  background-color: var(--mart-base);
}

.u-palette-2-base {
  color: #ffffff;
  background-color: var(--mart-pink);
}

.u-palette-2-light-2 {
  color: #111111;
  background-color: #f5d8e8;
}

.u-palette-3-base {
  color: #ffffff;
  background-color: var(--mart-pink-dark);
}

.u-palette-4-base {
  color: #111111;
  background-color: #f7d7e6;
}

.u-palette-5-base {
  color: #ffffff;
  background-color: #6a7078;
}

.u-text-white,
.u-text-grey-5,
.u-text-body-alt-color {
  color: #ffffff !important;
}

.u-text-black,
.u-text-body-color {
  color: #111111 !important;
}

.u-text-grey-30 {
  color: #b3b3b3 !important;
}

.u-text-grey-50 {
  color: #808080 !important;
}

.u-text-palette-1-base {
  color: var(--mart-base) !important;
}

.u-text-palette-2-base {
  color: var(--mart-pink) !important;
}

.u-text-palette-3-base {
  color: var(--mart-pink-dark) !important;
}

.u-text-palette-4-base {
  color: #f7d7e6 !important;
}

.u-text-palette-5-base {
  color: #6a7078 !important;
}

.u-border-2 {
  border-width: 2px !important;
}

.u-border-4 {
  border-width: 4px !important;
}

.u-border-5 {
  border-width: 5px !important;
}

.u-border-white {
  border-color: #ffffff !important;
}

.u-border-grey-5 {
  border-color: #f2f2f2 !important;
}

.u-border-grey-75 {
  border-color: #404040 !important;
}

.u-border-palette-1-base {
  border-color: var(--mart-base) !important;
}

.u-border-palette-2-base {
  border-color: var(--mart-pink) !important;
}

.u-border-palette-3-base,
.u-border-active-palette-3-base.active,
.u-tab-link.active.u-border-active-palette-3-base {
  border-color: var(--mart-pink-dark) !important;
}

.u-border-no-left {
  border-left-width: 0 !important;
}

.u-border-no-right {
  border-right-width: 0 !important;
}

.u-border-no-top {
  border-top-width: 0 !important;
}

.u-border-none {
  border-width: 0 !important;
}

.u-hover-white:hover,
.u-active-white.active,
.u-tab-link.active.u-active-white {
  color: #111111 !important;
  background-color: #ffffff !important;
}

.u-hover-grey-25:hover {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}

.u-hover-grey-40:hover {
  color: #111111 !important;
  background-color: #999999 !important;
}

.u-hover-palette-1-base:hover {
  color: #ffffff !important;
  background-color: var(--mart-base) !important;
}

.u-hover-palette-2-base:hover {
  color: #ffffff !important;
  background-color: var(--mart-pink) !important;
}

.u-hover-palette-2-light-2:hover {
  color: #111111 !important;
  background-color: #f5d8e8 !important;
}

.u-text-hover-palette-1-base:hover {
  color: var(--mart-base) !important;
}

.u-text-hover-palette-2-base:hover {
  color: var(--mart-pink) !important;
}

.u-text-hover-palette-3-base:hover,
.u-tab-link.active.u-text-active-palette-3-base {
  color: var(--mart-pink-dark) !important;
}

.u-opacity {
  opacity: 1;
}

.u-opacity-65 {
  opacity: 0.65;
}

.u-opacity-70 {
  opacity: 0.7;
}

.u-opacity-85 {
  opacity: 0.85;
}

.u-opacity-90 {
  opacity: 0.9;
}

.u-opacity-95 {
  opacity: 0.95;
}

.u-shading {
  position: relative;
}

.u-shading::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.34));
}

.u-shading > * {
  position: relative;
  z-index: 1;
}

.u-carousel {
  position: relative;
  overflow: hidden;
}

.u-carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.u-carousel-item {
  position: relative;
  display: none;
  width: 100%;
  min-height: 100%;
  backface-visibility: hidden;
}

.u-carousel-item.u-active,
.u-carousel-item.active {
  display: block;
}

.u-carousel-indicators {
  position: absolute;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-absolute-hcenter {
  left: 50%;
  transform: translateX(-50%);
}

.u-absolute-vcenter {
  top: 50%;
  transform: translateY(-50%);
}

.u-carousel-indicators li {
  display: block;
  border: 0;
  cursor: pointer;
  opacity: 0.55;
}

.u-carousel-indicators li.u-active,
.u-carousel-indicators li.active {
  opacity: 1;
}

.u-carousel-control,
.u-gallery-nav {
  position: absolute;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}

.u-carousel-control span,
.u-gallery-nav span {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.u-carousel-control svg,
.u-gallery-nav svg {
  width: 55%;
  height: 55%;
}

.u-carousel-control-prev,
.u-gallery-nav-prev {
  left: 0;
}

.u-carousel-control-next,
.u-gallery-nav-next {
  right: 0;
}

.u-tabs {
  position: relative;
}

.u-tab-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-tab-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.u-tab-pane {
  display: none;
}

.u-tab-pane.u-tab-active,
.u-tab-pane.active {
  display: block;
}

.u-dialog-block {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  min-height: 100vh;
  padding: 24px;
  overflow: auto;
  background: rgba(102, 102, 102, 0.9);
  align-items: center;
  justify-content: center;
}

.u-dialog-block.u-dialog-open {
  display: flex;
}

.u-dialog {
  position: relative;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.u-dialog-close-button {
  z-index: 2;
  border: 0;
  cursor: pointer;
}

.u-gallery {
  position: relative;
}

.u-gallery-item {
  position: relative;
  overflow: hidden;
}

.u-back-slide {
  width: 100%;
  height: 100%;
}

.u-over-slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.u-effect-hover-zoom .u-back-image {
  transition: transform 0.28s ease;
}

.u-effect-hover-zoom:hover .u-back-image {
  transform: scale(1.05);
}

.u-form {
  position: relative;
}

.u-form-group {
  margin-bottom: 1rem;
}

.u-form-group label {
  display: block;
}

.u-input,
.u-form-control,
input.u-input,
textarea.u-input,
select.u-input {
  width: 100%;
  max-width: 100%;
}

.u-label-top label,
.u-form-group.u-label-top label {
  margin-bottom: 0.35rem;
}

.u-form-select-wrapper {
  position: relative;
}

.u-form-input-layout-horizontal .u-form-radio-button-wrapper,
.u-form-input-layout-horizontal .u-form-checkbox-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.u-form-partition-factor-2 {
  width: calc(50% - 10px);
}

.u-form-partition-factor-3 {
  width: calc(33.3333% - 14px);
}

@media (max-width: 767px) {
  .u-form-partition-factor-2,
  .u-form-partition-factor-3 {
    width: 100%;
  }
}

.u-layout-horizontal {
  overflow-x: auto;
}

.u-layout-horizontal .u-repeater {
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
}

.u-back-to-top {
  position: fixed;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  right: 24px !important;
  bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(102, 102, 102, .88) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .16);
}

.u-back-to-top.is-visible {
  display: inline-flex;
}

.u-back-to-top .u-svg-link {
  display: none !important;
}

.u-back-to-top .u-svg-content {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  fill: currentColor;
}

@media (max-width: 767px) {
  .u-back-to-top {
    right: 16px !important;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }

  .u-back-to-top .u-svg-content {
    width: 18px !important;
    height: 18px !important;
  }
}

.u-video,
.embed-responsive {
  position: relative;
}

.embed-responsive {
  width: 100%;
  overflow: hidden;
}

.embed-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.embed-responsive > iframe,
.embed-responsive-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
