/*@mixin img-replace($img, $w: image-width($img), $h: image-height($img), $disp: block) {
    background: image-url($img) no-repeat;
    width: $w;
    height: $h;
    display: $disp;
}*/
.videobox .videobox--container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.videobox .videobox--container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.article-video {
  width: 100%;
  height: auto;
  padding: 24px;
  border-radius: 16px;
  background: #000;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .article-video {
    padding: 8px;
    border-radius: 8px;
    margin-top: 16px;
  }
}

.img-withCaption {
  margin-top: 24px;
}
.img-withCaption--img {
  width: 100%;
}
.img-withCaption--info {
  margin: 8px auto 0 auto;
  padding-bottom: 12px;
  display: flex;
  align-items: flex-start;
}
.img-withCaption--info .caption--icon {
  display: none;
}
.img-withCaption--info .caption--icon img {
  width: 20px;
  height: 20px;
  object-fit: cotain;
  display: block;
}
.img-withCaption--info .caption--text {
  font-family: GOTHAM, Calibri, "Microsoft JhengHei", serif;
  display: block;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .img-withCaption {
    margin-top: 16px;
  }
}

.img-expand {
  position: relative;
  margin-top: 24px;
}
.img-expand--cover img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.img-expand--cover img.img-horizontal {
  min-height: 460px;
}
.img-expand--box--title {
  font-size: 21px !important;
  line-height: 150% !important;
}
.img-expand--box--content {
  display: none !important;
  font-size: 16px !important;
  line-height: 150% !important;
}
.img-expand--box .actbox {
  cursor: pointer;
}
.img-expand--box .actbox .img-expand-btn-open {
  display: block;
}
.img-expand--box .actbox .img-expand-btn-close {
  display: none;
}
.img-expand--box .actbox .txt {
  font-size: 16px;
}
.img-expand.active .img-expand--box--content {
  display: block;
}
.img-expand.active .img-expand--box .actbox .img-expand-btn-open {
  display: none;
}
.img-expand.active .img-expand--box .actbox .img-expand-btn-close {
  display: block;
}
@media (max-width: 768px) {
  .img-expand {
    margin-top: 16px;
  }
  .img-expand--cover img {
    object-position: center center;
    object-fit: cover;
  }
  .img-expand--cover img.img-horizontal {
    aspect-ratio: 1/1;
    min-height: auto;
  }
}

.img-expand-overlap .img-expand--box {
  width: 460px;
  aspect-ratio: 1/1;
  background: rgba(0, 0, 0, 0.8);
  clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
.img-expand-overlap .img-expand--box .inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.img-expand-overlap .img-expand--box--title {
  flex-shrink: 0;
  text-align: left;
  color: #fff;
  padding-left: 32px;
  width: 62%;
  margin-top: 64%;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.img-expand-overlap .img-expand--box .actbox {
  position: absolute;
  width: 68px;
  right: 42px;
  bottom: 16px;
  padding: 0 0 8px 0;
}
.img-expand-overlap .img-expand--box .actbox .img-expand-btn {
  color: #fff;
  padding-top: 50px;
  transition: 0.3s;
}
.img-expand-overlap .img-expand--box .actbox:before {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: -12px;
  bottom: 32px;
  transform: rotate(45deg);
}
.img-expand-overlap .img-expand--box .actbox:after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}
.img-expand-overlap .img-expand--box .actbox:hover .img-expand-btn.img-expand-btn-open {
  padding-left: 6px;
}
@media (max-width: 768px) {
  .img-expand-overlap .img-expand--box {
    width: 100%;
  }
}
.img-expand-overlap.img-expand-right .img-expand--box {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  left: initial;
  right: 0;
}
.img-expand-overlap.img-expand-right .img-expand--box .inner {
  align-items: flex-end;
}
.img-expand-overlap.img-expand-right .img-expand--box--title {
  text-align: right;
  color: #fff;
  padding-right: 32px;
  padding-left: 0;
  width: 62%;
  margin-top: 64%;
  box-sizing: border-box;
}
.img-expand-overlap.img-expand-right .img-expand--box .actbox {
  position: absolute;
  width: 68px;
  left: 42px;
  bottom: 16px;
  padding: 0 0 8px 0;
}
.img-expand-overlap.img-expand-right .img-expand--box .actbox .img-expand-btn {
  color: #fff;
  transition: 0.3s;
}
.img-expand-overlap.img-expand-right .img-expand--box .actbox .img-expand-btn span {
  text-align: right;
  display: block;
}
.img-expand-overlap.img-expand-right .img-expand--box .actbox:before {
  right: -10px;
  transform: rotate(-45deg);
}
.img-expand-overlap.img-expand-right .img-expand--box .actbox:hover .img-expand-btn.img-expand-btn-open {
  padding-right: 6px;
}
.img-expand-overlap.img-expand-right.active .img-expand--box .actbox {
  top: -8px;
  bottom: initial;
}
.img-expand-overlap.img-expand-right.active .img-expand--box .actbox:after {
  width: 35px;
  left: -3px;
  bottom: 11px;
  transform: rotate(45deg);
}
.img-expand-overlap.active .inner {
  height: calc(100% - 96px);
  margin-top: 80px;
  margin-bottom: 24px;
  overflow: auto;
}
.img-expand-overlap.active .img-expand--box {
  width: 100%;
  height: 460px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  justify-content: center;
  flex-direction: column;
}
.img-expand-overlap.active .img-expand--box--title {
  text-align: left;
  padding: 0 8%;
  margin: 0;
  width: 100%;
  -webkit-line-clamp: 99;
  -webkit-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -moz-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -ms-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.img-expand-overlap.active .img-expand--box--content {
  display: block !important;
  color: #fff;
  width: 100%;
  padding: 0 8%;
  margin-top: 0;
  box-sizing: border-box;
  -webkit-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -moz-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -ms-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.img-expand-overlap.active .img-expand--box .actbox {
  top: -8px;
  bottom: initial;
  right: 16px;
  left: initial;
}
.img-expand-overlap.active .img-expand--box .actbox:after {
  width: 35px;
  left: 37px;
  bottom: 13px;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .img-expand-overlap.active .img-expand--box {
    height: 100%;
  }
}

.img-expand-side {
  display: flex;
}
.img-expand-side .img-expand--cover {
  width: 60%;
}
.img-expand-side .img-expand--cover img {
  display: block;
  width: 100%;
  aspect-ratio: inherit;
}
.img-expand-side .img-expand--box {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.img-expand-side .img-expand--box .inner {
  width: 80%;
}
.img-expand-side .img-expand--box .actbox {
  width: 125px;
  height: 48px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 63px;
  border: solid 1px #000;
  position: relative;
}
.img-expand-side .img-expand--box .actbox .img-expand-btn {
  padding-top: 2px;
}
.img-expand-side .img-expand--box .actbox:before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 23px;
  left: 24px;
}
.img-expand-side .img-expand--box .actbox:after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #000;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: center;
  top: 23px;
  left: 24px;
}
.img-expand-side .img-expand--box .actbox:hover {
  background: #000;
}
.img-expand-side .img-expand--box .actbox:hover .img-expand-btn {
  color: #fff;
}
.img-expand-side .img-expand--box .actbox:hover:before {
  background: #fff;
}
.img-expand-side .img-expand--box .actbox:hover:after {
  background: #fff;
}
.img-expand-side.active .img-expand--box {
  background: #000;
}
.img-expand-side.active .img-expand--box .inner {
  position: absolute;
  max-height: calc(100% - 110px);
  overflow: auto;
  color-scheme: dark;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.img-expand-side.active .img-expand--box .inner ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.img-expand-side.active .img-expand--box .inner ::-webkit-scrollbar-thumb {
  background: #fff;
}
.img-expand-side.active .img-expand--box .inner ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.img-expand-side.active .img-expand--box .inner .img-expand--box--title {
  color: #fff;
  -webkit-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -moz-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -ms-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.img-expand-side.active .img-expand--box .inner .img-expand--box--content {
  color: #fff;
  display: block !important;
  padding: 0;
  -webkit-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -moz-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -ms-animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  animation: expand-txt-ani 1s normal 0s 1 ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.img-expand-side.active .img-expand--box .actbox {
  position: absolute;
  top: 12px;
  right: 0;
  background: none;
  border: none;
}
.img-expand-side.active .img-expand--box .actbox .img-expand-btn {
  color: #fff;
}
.img-expand-side.active .img-expand--box .actbox:before {
  background: #fff;
  transform: rotate(45deg);
  left: 40px;
}
.img-expand-side.active .img-expand--box .actbox:after {
  background: #fff;
  transform: rotate(-45deg);
  left: 40px;
}
.img-expand-side.img-expand-left .img-expand--cover {
  order: 2;
}
@media (max-width: 768px) {
  .img-expand-side {
    flex-direction: column;
  }
  .img-expand-side .img-expand--cover {
    width: 100%;
  }
  .img-expand-side .img-expand--box {
    width: 100%;
    padding: 0 0 0 0;
  }
  .img-expand-side .img-expand--box .inner {
    width: 90%;
    margin-top: 16px;
  }
  .img-expand-side.active .img-expand--box {
    padding-bottom: 24px;
  }
  .img-expand-side.active .img-expand--box .inner {
    position: relative;
    max-height: 60vh;
    margin-top: 64px;
  }
  .img-expand-side.img-expand-left .img-expand--cover {
    order: 0;
  }
}

@keyframes expand-txt-ani {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.qaBox--item {
  border-bottom: solid 1px #0A0A0A;
}
.qaBox--item--container {
  display: flex;
  align-items: flex-start;
  padding: 0 24px;
  box-sizing: border-box;
}
.qaBox--item--container .qaBox-text {
  flex-grow: 1;
  padding: 24px 24px 24px 0;
  box-sizing: border-box;
}
.qaBox--item--container .qaBox-icon {
  width: 40px;
  height: 40px;
  margin-top: 20px;
  position: relative;
}
.qaBox--item--container .qaBox-icon:before {
  content: "";
  display: block;
  background: #cdcdcd;
  width: 18px;
  height: 2px;
  position: absolute;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(90deg);
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.qaBox--item--container .qaBox-icon:after {
  content: "";
  display: block;
  background: #cdcdcd;
  width: 18px;
  height: 2px;
  position: absolute;
  transform-origin: center;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.qaBox--item--container.qaBox-q {
  cursor: pointer;
}
.qaBox--item--container.qaBox-q:hover .qaBox-icon:before, .qaBox--item--container.qaBox-q:hover .qaBox-icon:after {
  background: #000;
}
.qaBox--item--container.qaBox-a {
  background: #fafafa;
  overflow: hidden;
  height: 0;
  opacity: 0;
  display: block;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .qaBox--item--container {
    padding: 0 16px;
  }
  .qaBox--item--container .qaBox-text {
    padding: 16px 0px 16px 0;
  }
  .qaBox--item--container .qaBox-icon {
    margin-top: 12px;
  }
}
.qaBox--item.active .qaBox--item--container.qaBox-a {
  height: auto;
  opacity: 1;
}
.qaBox--item.active .qaBox--item--container .qaBox-icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
  background: #000;
}
.qaBox--item.active .qaBox--item--container .qaBox-icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #000;
}
.qaBox--item:last-child {
  border: none;
}/*# sourceMappingURL=bella20250826.css.map */