@charset "UTF-8";
:root {
  --zoomist-wrapper-bg-color: #efefef;
  --zoomist-slider-bg-color: rgba(255, 255, 255, .8);
  --zoomist-slider-border-radius: 0 0 4px 0;
  --zoomist-slider-padding-x: 20px;
  --zoomist-slider-padding-y: 20px;
  --zoomist-slider-track-color: #ddd;
  --zoomist-slider-track-color-hover: #ccc;
  --zoomist-slider-bar-size: 120px;
  --zoomist-slider-bar-side: 2px;
  --zoomist-slider-bar-border-radius: 2px;
  --zoomist-slider-bar-color: #666;
  --zoomist-slider-bar-color-hover: #444;
  --zoomist-slider-button-size: 12px;
  --zoomist-slider-button-color: #fff;
  --zoomist-zoomer-button-size: 48px;
  --zoomist-zoomer-button-color: rgba(255, 255, 255, .8);
  --zoomist-zoomer-button-color-hover: rgba(255, 255, 255, .9);
  --zoomist-zoomer-button-color-disabled: rgba(255, 255, 255, .8);
  --zoomist-zoomer-button-opacity-disabled: .7;
  --zoomist-zoomer-icon-size: 14px;
  --zoomist-zoomer-icon-color: #333;
  --zoomist-zoomer-icon-color-hover: #111;
  --zoomist-zoomer-icon-color-disabled: #999;
  --zoomist-modules-tranistion-duration: .3s;
}

.zoomist-container {
  position: relative;
  padding: 0 !important;
  user-select: none;
}

.zoomist-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  overflow: hidden;
  background-color: var(--zoomist-wrapper-bg-color);
}

.zoomist-image {
  position: relative;
  max-width: none !important;
  max-height: none !important;
}

.zoomist-slider {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: var(--zoomist-slider-padding-y) var(--zoomist-slider-padding-x);
  background-color: var(--zoomist-slider-bg-color);
  border-radius: var(--zoomist-slider-border-radius);
}

.zoomist-slider:hover .zoomist-slider-wrapper {
  background-color: var(--zoomist-slider-track-color-hover);
}

.zoomist-slider:hover .zoomist-slider-bar {
  background-color: var(--zoomist-slider-bar-color-hover);
}

.zoomist-slider:hover .zoomist-slider-button:before {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.zoomist-slider-horizontal .zoomist-slider-wrapper {
  align-items: center;
  justify-content: flex-start;
  width: var(--zoomist-slider-bar-size);
  height: var(--zoomist-slider-bar-side);
}

.zoomist-slider-horizontal .zoomist-slider-bar {
  top: 0;
  width: calc(var(--value) * 1%);
  height: 100%;
}

.zoomist-slider-horizontal .zoomist-slider-button {
  left: calc(var(--value) * 1%);
}

.zoomist-slider-vertical .zoomist-slider-wrapper {
  align-items: flex-end;
  justify-content: center;
  width: var(--zoomist-slider-bar-side);
  height: var(--zoomist-slider-bar-size);
}

.zoomist-slider-vertical .zoomist-slider-bar {
  bottom: 0;
  width: 100%;
  height: calc(var(--value) * 1%);
}

.zoomist-slider-vertical .zoomist-slider-button {
  bottom: calc(var(--value) * 1%);
}

.zoomist-slider-wrapper {
  position: relative;
  display: flex;
  background-color: var(--zoomist-slider-track-color);
  transition: background-color var(--zoomist-modules-tranistion-duration);
}

.zoomist-slider-bar {
  position: absolute;
  z-index: 0;
  left: 0;
  display: block;
  border-radius: var(--zoomist-slider-bar-border-radius);
  background-color: var(--zoomist-slider-bar-color);
  transition: background-color var(--zoomist-modules-tranistion-duration);
}

.zoomist-slider-button {
  position: relative;
  z-index: 1;
  display: block;
  width: 0 !important;
  height: 0 !important;
}

.zoomist-slider-button:before {
  content: "";
  position: absolute;
  left: calc(var(--zoomist-slider-button-size) * -0.5);
  top: calc(var(--zoomist-slider-button-size) * -0.5);
  width: var(--zoomist-slider-button-size);
  height: var(--zoomist-slider-button-size);
  display: block;
  background-color: var(--zoomist-slider-button-color, #fff);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  transition: box-shadow var(--zoomist-modules-tranistion-duration);
}

.zoomist-zoomer {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  border-radius: 0 0 0 4px;
  overflow: hidden;
}

.zoomist-zoomer-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--zoomist-zoomer-button-size);
  height: var(--zoomist-zoomer-button-size);
  background: none;
  background-color: var(--zoomist-zoomer-button-color);
  border: 0;
  transition: background-color var(--zoomist-modules-tranistion-duration);
  cursor: pointer;
}

.zoomist-zoomer-button:hover {
  background-color: var(--zoomist-zoomer-button-color-hover);
}

.zoomist-zoomer-button:hover .zoomist-zoomer-icon {
  fill: var(--zoomist-zoomer-icon-color-hover);
}

.zoomist-zoomer-button.zoomist-zoomer-disabled {
  pointer-events: none;
  background-color: var(--zoomist-zoomer-button-color-disabled);
  opacity: var(--zoomist-zoomer-button-opacity-disabled);
}

.zoomist-zoomer-button.zoomist-zoomer-disabled .zoomist-zoomer-icon {
  fill: var(--zoomist-zoomer-icon-color-disabled);
}

.zoomist-zoomer-icon {
  width: var(--zoomist-zoomer-icon-size);
  height: var(--zoomist-zoomer-icon-size);
  fill: var(--zoomist-zoomer-icon-color);
  transition: fill var(--zoomist-modules-tranistion-duration);
}

/**
  Layout
*/
.fixed-container {
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
}
.fixed-container__hr {
  width: 100%;
  height: 1px;
  background-color: #d8d9db;
  margin: 10px 0;
}

.flex-container {
  display: flex;
  position: relative;
}
.flex-container--col2 {
  gap: 100px;
}
.flex-container--col2 > div {
  flex-basis: 50%;
}
.flex-container--col3 {
  gap: 33px;
}

.fluid-container {
  width: 100%;
  position: relative;
}
.fluid-container--gray {
  background-color: #f6f6f6;
}

.full-container {
  display: block;
  clear: both;
}
.full-container.full-content {
  max-width: 1440px;
  margin: 0 auto;
}

@media only screen and (max-width: 1439px) and (min-width: 1081px) {
  .full-container .full-content {
    padding: 0 36px;
  }
}
@media only screen and (max-width: 1080px) {
  .fixed-container {
    width: 100%;
    overflow: hidden;
  }
  .fluid-container {
    overflow: hidden;
  }
  .flex-container--col2 {
    gap: 20px;
  }
  .full-container .full-content {
    padding: 0 0 0 0;
    border-top: 0;
  }
}
.pdp-gallery__for {
  position: relative;
}
.pdp-gallery__for .slick-arrow {
  top: 50%;
  width: 34px;
  height: 34px;
}
.pdp-gallery__for .slick-arrow.slick-prev {
  left: 0;
  transform: translate(-50%, -70%);
  background: url(/theme/rbFront/img/w/product/pdp_for_left.png) 0 0 no-repeat;
}
.pdp-gallery__for .slick-arrow.slick-next {
  right: 0;
  transform: translate(50%, -70%);
  background: url(/theme/rbFront/img/w/product/pdp_for_right.png) 0 0 no-repeat;
}
.pdp-gallery__for .slick-arrow.slick-disabled {
  opacity: 0;
}
.pdp-gallery__for-items {
  opacity: 0;
  transition: opacity 0.3s;
}
.pdp-gallery__for-items.slick-initialized {
  opacity: 1;
}
@media only screen and (max-width: 1080px) {
  .pdp-gallery__for-items .slick-arrow {
    display: block !important;
    margin-top: 0;
  }
  .pdp-gallery__for-items .slick-arrow.slick-next {
    transform: translate(0%, -50%);
  }
  .pdp-gallery__for-items .slick-arrow.slick-prev {
    transform: translate(0%, -50%);
  }
}
.pdp-gallery__zoomer {
  position: absolute;
  width: 98px;
  height: 43px;
  background-color: #f3f4f4;
  border-radius: 21px;
  top: 34px;
  right: 36px;
  display: flex;
}
@media only screen and (max-width: 1080px) {
  .pdp-gallery__zoomer {
    width: 68.6px;
    height: 30.1px;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 120%);
  }
}
.pdp-gallery__zoom {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.pdp-gallery__zoom--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media only screen and (max-width: 1080px) {
  .pdp-gallery__zoom img {
    width: 40%;
  }
}
.pdp-gallery__nav {
  width: 74.4%;
  margin: 28px auto 0;
  transform: translateX(-5px);
}
.pdp-gallery__nav .slick-slide {
  padding: 0 5px;
  font-size: 0;
}
.pdp-gallery__nav .slick-slide.active .pdp-gallery__nav-item {
  box-sizing: border-box;
  padding: 0;
  border: solid 2px #7e7c77;
}
.pdp-gallery__nav .slick-arrow {
  width: 24px;
  height: 24px;
  top: 50%;
  margin-top: 0;
}
.pdp-gallery__nav .slick-arrow.slick-prev {
  left: -15px;
  transform: translate(-50%, -50%);
  background: url(/theme/rbFront/img/w/product/pdp_nav_left.png) center center no-repeat;
}
.pdp-gallery__nav .slick-arrow.slick-next {
  right: -15px;
  transform: translate(50%, -50%);
  background: url(/theme/rbFront/img/w/product/pdp_nav_right.png) center center no-repeat;
}
.pdp-gallery__nav .slick-arrow.slick-disabled {
  opacity: 0;
}
@media only screen and (max-width: 1080px) {
  .pdp-gallery__nav {
    width: 100%;
    margin-top: 60px;
    position: relative;
  }
  .pdp-gallery__nav::before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    left: 0;
    z-index: 1;
  }
  .pdp-gallery__nav::after {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    right: 0;
    z-index: 1;
  }
  .pdp-gallery__nav .slick-list {
    padding: 0 30px 0 34px;
  }
  .pdp-gallery__nav .slick-arrow {
    display: inline-block !important;
  }
  .pdp-gallery__nav .slick-arrow.slick-prev {
    left: 6px;
    transform: translate(0%, -50%);
  }
  .pdp-gallery__nav .slick-arrow.slick-next {
    right: 0;
    transform: translate(0%, -50%);
  }
}
.pdp-gallery__nav-items {
  opacity: 0;
  transition: opacity 0.3s;
}
.pdp-gallery__nav-items.slick-initialized {
  opacity: 1;
}
@media only screen and (max-width: 1080px) {
  .pdp-gallery__nav-items .slick-list {
    height: 0;
    overflow: hidden;
  }
  .pdp-gallery__nav-items .slick-dots {
    transform: translateY(10px);
  }
}
.pdp-gallery__nav-item {
  cursor: pointer;
  padding: 1px;
  font-size: 0;
  border: solid 1px #d0d0d0;
  border-radius: 20px;
  box-sizing: border-box;
}
.pdp-gallery__nav-item img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.pdp-module-full {
  overflow: hidden;
}
.pdp-module-full__box {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 62px auto;
  max-width: 1440px;
}
.pdp-module-full__image {
  text-align: center;
  position: relative;
  font-size: 0;
}
.pdp-module-full__source {
  max-width: 100%;
  width: 100%;
}
.pdp-module-full__source--mobile {
  display: none;
}
.pdp-module-full__video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* 초기 임시 비율 설정, 예: 16:9 비율 */
  padding-bottom: 56.25%;
}
.pdp-module-full__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pdp-module-full__video--mobile {
  display: none;
}
.pdp-module-full__video-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  z-index: 98;
}
.pdp-module-full__video-btn img {
  width: 44px;
}
.pdp-module-full__video-btn--play {
  display: none;
}
.pdp-module-full__video-btn--stop {
  display: inline;
}
.pdp-module-full__txt {
  display: flex;
  margin: 48px auto 0;
  padding: 0 16.2% 36px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.pdp-module-full__txt-headline {
  font-family: "LG EI Headline";
  display: block;
  margin-top: 26px;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
.pdp-module-full__txt-eyebrow, .pdp-module-full__txt-description {
  display: block;
  font-size: 20px;
  line-height: 32px;
  word-wrap: break-word;
}
.pdp-module-full__txt-description {
  margin-top: 35px;
}
.pdp-module-full__txt-inner > :first-child {
  margin-top: 0;
}
.pdp-module-full__btn-area {
  margin-top: 55px;
  display: flex;
  gap: 31px;
  justify-content: center;
}
.pdp-module-full__btn {
  display: inline-block;
  height: 47px;
  padding: 0 32px;
  line-height: 47px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
  color: #000;
}
.pdp-module-full__btn--line {
  border: 1px solid #000;
  background: #fff;
}
.pdp-module-full__btn--red {
  color: #fff;
  background-color: #fd312e;
  border: 1px solid #fd312e;
}
.pdp-module-full__link-area {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-top: 35px;
}
.pdp-module-full__link {
  text-decoration: underline;
  font-size: 18px;
}
.pdp-module-full__link a {
  color: #000;
}
.pdp-module-full__movie {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  font-size: 18px;
}
.pdp-module-full__movie-info {
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.pdp-module-full__movie-icon {
  position: relative;
  width: 23px;
  display: inline-block;
  height: 23px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
}
.pdp-module-full__movie-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 13px;
  top: 55%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: url(/theme/rbFront/img/w/main/hero_play.png) no-repeat 0 0;
  background-size: 8px 10px;
}
.pdp-module-full__sub-txt {
  font-size: 16px;
  padding: 0;
  margin-top: 50px;
  color: #4a4946;
}
@media only screen and (min-width: 1081px) {
  .pdp-module-full .pdp-module-full__txt-inner {
    width: 840px;
  }
  .pdp-module-full--left .pdp-module-full__txt {
    padding: 0;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .pdp-module-full--left .pdp-module-full__txt .pdp-module-full__btn-area,
  .pdp-module-full--left .pdp-module-full__txt .pdp-module-full__link-area,
  .pdp-module-full--left .pdp-module-full__txt .pdp-module-full__movie {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .pdp-module-full--left .pdp-module-full__txt-inner {
    width: 840px;
  }
  .pdp-module-full--right .pdp-module-full__txt {
    padding: 0;
    padding-bottom: 30px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    justify-content: flex-end;
  }
  .pdp-module-full--right .pdp-module-full__txt .pdp-module-full__btn-area,
  .pdp-module-full--right .pdp-module-full__txt .pdp-module-full__link-area,
  .pdp-module-full--right .pdp-module-full__txt .pdp-module-full__movie {
    justify-content: flex-start;
    align-items: flex-end;
  }
  .pdp-module-full--right .pdp-module-full__txt-inner {
    width: 840px;
  }
  .pdp-module-full--overay.pdp-module-full--left .pdp-module-full__txt-inner {
    width: 620px;
  }
  .pdp-module-full--overay.pdp-module-full--right .pdp-module-full__txt-inner {
    width: 620px;
  }
  .pdp-module-full--overay.pdp-module-full--middle .pdp-module-full__txt {
    align-content: center;
    flex-wrap: wrap;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.pdp-module-full--top .pdp-module-full__image {
  order: 2;
}
.pdp-module-full--top .pdp-module-full__video-container {
  order: 2;
}
.pdp-module-full--top .pdp-module-full__txt {
  order: 1;
  margin-top: 0;
  padding-bottom: 30px;
}
.pdp-module-full--top .pdp-module-full__sub-txt {
  order: 3;
  margin-top: 20px;
}
.pdp-module-full--bottom .pdp-module-full__txt {
  bottom: 0;
  padding-bottom: 0;
}
.pdp-module-full--bottom .pdp-module-full__video-btn {
  bottom: 20px;
}
.pdp-module-full--bottom.pdp-module-full--has-sub-txt .pdp-module-full__txt {
  bottom: 42px;
}
.pdp-module-full--overay .pdp-module-full__txt {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding: 100px;
}
.pdp-module-full--overay .pdp-module-full__sub-txt {
  margin-top: 20px;
}
.pdp-module-full.none-margin-top .pdp-module-full__box {
  margin-top: 0;
}
.pdp-module-full.none-margin-bottom .pdp-module-full__box {
  margin-bottom: 0;
}
.pdp-module-full.txt-white {
  color: #fff;
}
.pdp-module-full.txt-white a {
  color: #fff;
}
.pdp-module-full.bg-black {
  background-color: #000000;
}
.pdp-module-full.bg-black .pdp-module-full__sub-txt {
  color: #fff;
}
.pdp-module-full.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-full.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-full.bg-dark-1 .pdp-module-full__sub-txt {
  color: #fff;
}
.pdp-module-full.bg-light-1 {
  background-color: #f8f8f8;
}

@media only screen and (max-width: 1080px) {
  .pdp-module-full__box {
    margin: 32px 0;
  }
  .pdp-module-full__image {
    width: 100%;
  }
  .pdp-module-full__source--desktop {
    display: none;
  }
  .pdp-module-full__source--mobile {
    display: block;
    width: 100%;
  }
  .pdp-module-full__video--pc {
    display: none;
  }
  .pdp-module-full__video--mobile {
    display: block;
  }
  .pdp-module-full__video-container {
    padding-bottom: 125%;
  }
  .pdp-module-full__video-btn {
    right: 15px;
    bottom: 15px;
  }
  .pdp-module-full__video-btn img {
    width: 29px;
  }
  .pdp-module-full__txt {
    margin-top: 0;
    padding: 35px 15px 30px;
  }
  .pdp-module-full__txt-headline {
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
    margin-top: 20px;
  }
  .pdp-module-full__txt-eyebrow {
    font-size: 14px;
    line-height: 18px;
    word-break: break-all;
  }
  .pdp-module-full__txt-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 25px;
  }
  .pdp-module-full__btn {
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    padding: 0 22px;
  }
  .pdp-module-full__btn-area {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-full__link-area {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-full__link {
    font-size: 12px;
  }
  .pdp-module-full__movie {
    margin-top: 20px;
    font-size: 12px;
  }
  .pdp-module-full__movie-info {
    gap: 12px;
  }
  .pdp-module-full__movie-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
  .pdp-module-full__movie-icon::before {
    width: 6px;
    height: 7px;
    top: 47%;
    left: 58%;
    background-size: 6px 7px;
  }
  .pdp-module-full__sub-txt {
    font-size: 12px;
    text-align: center;
    padding: 0 26px;
    margin-top: 10px;
  }
  .pdp-module-full--top .pdp-module-full__txt {
    padding: 0 15px 35px;
  }
  .pdp-module-full--overay .pdp-module-full__txt {
    padding: 25px 15px 25px;
  }
  .pdp-module-full--overay.pdp-module-full--middle .pdp-module-full__txt, .pdp-module-full--overay.pdp-module-full--top .pdp-module-full__txt {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 760px) {
  .pdp-module-full--bottom.pdp-module-full--has-sub-txt .pdp-module-full__txt {
    bottom: 40px;
  }
}
.pdp-module-half {
  overflow: hidden;
}
.pdp-module-half__box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 110px;
  margin: 62px auto;
  max-width: 1360px;
  align-items: center;
}
.pdp-module-half__image {
  width: 50%;
  position: relative;
  align-self: flex-start;
  font-size: 0;
}
.pdp-module-half__image-source {
  width: 100%;
  min-width: 100%;
}
.pdp-module-half__video-container {
  position: relative;
  width: 50%;
  overflow: hidden;
  align-self: flex-start;
  /* 초기 임시 비율 설정 640:645 비율 */
  padding-bottom: 50.3%;
}
.pdp-module-half__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pdp-module-half__video--mobile {
  display: none;
}
.pdp-module-half__video-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  z-index: 98;
}
.pdp-module-half__video-btn img {
  width: 44px;
}
.pdp-module-half__video-btn--play {
  display: none;
}
.pdp-module-half__video-btn--stop {
  display: inline;
}
.pdp-module-half__txt {
  box-sizing: border-box;
  vertical-align: middle;
  width: 50%;
  display: flex;
  align-items: center;
}
.pdp-module-half__txt-inner {
  padding: 0 0;
}
.pdp-module-half__txt-eyebrow {
  margin-bottom: 21px;
  display: block;
  font-size: 20px;
  line-height: 100%;
  word-wrap: break-word;
}
.pdp-module-half__txt-headline {
  font-family: "LG EI Headline";
  display: block;
  margin-top: 26px;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
.pdp-module-half__txt-description {
  margin-top: 35px;
  display: block;
  font-size: 20px;
  line-height: 32px;
  word-wrap: break-word;
}
.pdp-module-half__txt-inner > :first-child {
  margin-top: 0;
}
.pdp-module-half__btn-area {
  display: flex;
  gap: 31px;
  justify-content: left;
  margin-top: 55px;
}
.pdp-module-half__btn {
  display: inline-block;
  height: 47px;
  padding: 0 32px;
  line-height: 47px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
  color: #000;
}
.pdp-module-half__btn--line {
  border: 1px solid #000;
  background: #fff;
}
.pdp-module-half__btn--red {
  color: #fff;
  background-color: #fd312e;
}
.pdp-module-half__link-area {
  display: flex;
  justify-content: left;
  gap: 31px;
  margin-top: 35px;
}
.pdp-module-half__link {
  text-decoration: underline;
  font-size: 18px;
}
.pdp-module-half__movie {
  margin-top: 35px;
  display: flex;
  justify-content: left;
  font-size: 18px;
}
.pdp-module-half__movie-info {
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.pdp-module-half__movie-icon {
  position: relative;
  width: 23px;
  display: inline-block;
  height: 23px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
}
.pdp-module-half__movie-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 13px;
  top: 55%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: url(/theme/rbFront/img/w/main/hero_play.png) no-repeat 0 0;
  background-size: 8px 10px;
}
.pdp-module-half__sub-txt {
  font-size: 16px;
  color: #4a4946;
  margin-top: 50px;
}
.pdp-module-half--left .pdp-module-half__txt {
  order: 1;
}
.pdp-module-half--right .pdp-module-half__txt {
  order: 2;
}
.pdp-module-half.none-margin-top .pdp-module-half__box {
  margin-top: 0;
}
.pdp-module-half.none-margin-bottom .pdp-module-half__box {
  margin-bottom: 0;
}
.pdp-module-half.txt-white {
  color: #fff;
}
.pdp-module-half.txt-white a {
  color: #fff;
}
.pdp-module-half.bg-black {
  background-color: #000000;
}
.pdp-module-half.bg-black .pdp-module-half__sub-txt {
  color: #fff;
}
.pdp-module-half.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-half.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-half.bg-dark-1 .pdp-module-half__sub-txt {
  color: #fff;
}
.pdp-module-half.bg-light-1 {
  background-color: #f8f8f8;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-half__box {
    margin: 32px 0;
    flex-direction: column-reverse;
    gap: 35px;
    max-width: 100%;
    padding: 0 15px;
  }
  .pdp-module-half--right .pdp-module-half__box {
    flex-direction: column;
  }
  .pdp-module-half__txt {
    text-align: center;
    width: 100%;
    display: block;
  }
  .pdp-module-half__txt .pdp-module-half__btn-area,
  .pdp-module-half__txt .pdp-module-half__link-area,
  .pdp-module-half__txt .pdp-module-half__movie {
    justify-content: center;
    align-items: center;
  }
  .pdp-module-half__txt-headline {
    margin-top: 20px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
  }
  .pdp-module-half__txt-eyebrow {
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 0;
  }
  .pdp-module-half__txt-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 25px;
  }
  .pdp-module-half__txt-inner {
    padding: 0 0;
  }
  .pdp-module-half__btn {
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    padding: 0 22px;
  }
  .pdp-module-half__btn-area {
    align-items: center;
    margin-top: 20px;
  }
  .pdp-module-half__link-area {
    margin-top: 20px;
  }
  .pdp-module-half__link {
    font-size: 12px;
  }
  .pdp-module-half__movie {
    margin-top: 20px;
    font-size: 12px;
  }
  .pdp-module-half__movie-info {
    gap: 12px;
  }
  .pdp-module-half__movie-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
  .pdp-module-half__movie-icon::before {
    width: 6px;
    height: 7px;
    top: 47%;
    left: 58%;
    background-size: 6px 7px;
  }
  .pdp-module-half__sub-txt {
    font-size: 12px;
    text-align: center;
    padding: 0 26px;
    margin-top: 30px;
  }
  .pdp-module-half__image {
    width: 100%;
  }
  .pdp-module-half__image img {
    width: 100%;
  }
  .pdp-module-half__video--pc {
    display: none;
  }
  .pdp-module-half__video--mobile {
    display: block;
  }
  .pdp-module-half__video-container {
    width: 100%;
    padding-bottom: 77.1%;
  }
  .pdp-module-half__video-btn {
    right: 15px;
    bottom: 15px;
  }
  .pdp-module-half__video-btn img {
    width: 29px;
  }
}

.pdp-module-large-description {
  overflow: hidden;
}
.pdp-module-large-description__box {
  position: relative;
  margin: 62px auto;
  max-width: 1440px;
}
.pdp-module-large-description__headline {
  font-family: "LG EI Headline";
  display: block;
  width: 840px;
  margin: 0 auto 60px;
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}
.pdp-module-large-description__image {
  text-align: center;
  position: relative;
  font-size: 0;
}
.pdp-module-large-description__image-source {
  max-width: 100%;
  width: 100%;
}
.pdp-module-large-description__image-source--pc {
  display: inline;
}
.pdp-module-large-description__image-source--mobile {
  display: none;
}
.pdp-module-large-description__video-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  z-index: 98;
}
.pdp-module-large-description__video-btn img {
  width: 44px;
}
.pdp-module-large-description__video-btn--stop {
  display: none;
}
.pdp-module-large-description__txt {
  display: flex;
  justify-content: space-around;
  margin: 40px;
}
.pdp-module-large-description__content {
  flex: 1;
  text-align: center;
  width: 33%;
  word-break: keep-all;
  padding: 25px;
}
.pdp-module-large-description__title {
  font-family: "LG EI Headline";
  font-size: 48px;
  margin-bottom: 52px;
  font-weight: 400;
  line-height: 58px;
}
.pdp-module-large-description__info {
  font-size: 20px;
  line-height: 30px;
}
.pdp-module-large-description__sub-txt {
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  color: #4a4946;
}
.pdp-module-large-description.none-margin-top .pdp-module-large-description__box {
  margin-top: 0;
}
.pdp-module-large-description.none-margin-bottom .pdp-module-large-description__box {
  margin-bottom: 0;
}
.pdp-module-large-description.txt-white {
  color: #fff;
}
.pdp-module-large-description.txt-white .pdp-module-large-description__sub-txt {
  color: #fff;
}
.pdp-module-large-description.bg-black {
  background-color: #000000;
}
.pdp-module-large-description.bg-black .pdp-module-large-description__sub-txt {
  color: #fff;
}
.pdp-module-large-description.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-large-description.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-large-description.bg-dark-1 .pdp-module-large-description__sub-txt {
  color: #fff;
}
.pdp-module-large-description.bg-light-1 {
  background-color: #f8f8f8;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-large-description__box {
    margin: 32px 0;
  }
  .pdp-module-large-description__headline {
    width: auto;
    margin: 0 26px 35px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
  }
  .pdp-module-large-description__txt {
    flex-direction: column;
    margin: 35px 26px 32px;
    gap: 30px;
  }
  .pdp-module-large-description__content {
    width: auto;
    padding: 0;
  }
  .pdp-module-large-description__title {
    font-size: 26px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 22px;
  }
  .pdp-module-large-description__info {
    font-size: 14px;
    line-height: 17px;
  }
  .pdp-module-large-description__image {
    width: 100%;
  }
  .pdp-module-large-description__image img {
    width: 100%;
  }
  .pdp-module-large-description__image-source--pc {
    display: none;
  }
  .pdp-module-large-description__image-source--mobile {
    display: inline;
  }
  .pdp-module-large-description__sub-txt {
    font-size: 12px;
    text-align: center;
    padding: 0 26px;
    margin-top: 10px;
  }
}

.pdp-module-title {
  overflow: hidden;
}
.pdp-module-title__box {
  display: flex;
  position: relative;
  margin: 62px auto;
  max-width: 1440px;
}
.pdp-module-title__txt {
  margin-left: 40px;
  width: 50%;
}
.pdp-module-title__txt-headline {
  font-family: "LG EI Headline";
  font-size: 34px;
  font-weight: 400;
}
.pdp-module-title__txt-description {
  margin-top: 15px;
  display: block;
  font-size: 18px;
}
.pdp-module-title__btn-link-area {
  margin-right: 40px;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  align-items: center;
}
.pdp-module-title__btn {
  display: inline-block;
  height: 47px;
  padding: 0 32px;
  line-height: 47px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
}
.pdp-module-title__btn--red {
  color: #fff;
  background-color: #fd312e;
  border: 1px solid #fd312e;
}
.pdp-module-title__link {
  text-decoration: underline;
  font-size: 18px;
}
@media only screen and (min-width: 1081px) {
  .pdp-module-title--right .pdp-module-title__txt {
    order: 2;
    margin-left: 0;
    margin-right: 40px;
  }
  .pdp-module-title--right .pdp-module-title__btn-link-area {
    order: 1;
    justify-content: flex-start;
    margin-left: 40px;
    margin-right: 0;
  }
}
.pdp-module-title.none-margin-top .pdp-module-title__box {
  margin-top: 0;
}
.pdp-module-title.none-margin-bottom .pdp-module-title__box {
  margin-bottom: 0;
}
.pdp-module-title.txt-white {
  color: #fff;
}
.pdp-module-title.txt-white a {
  color: #fff;
}
.pdp-module-title.bg-black {
  background-color: #000000;
}
.pdp-module-title.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-title.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-title.bg-light-1 {
  background-color: #f8f8f8;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-title__box {
    flex-direction: column;
    text-align: center;
  }
  .pdp-module-title__txt {
    width: auto;
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .pdp-module-title__txt-headline {
    font-size: 24px;
    line-height: 27px;
  }
  .pdp-module-title__txt-description {
    margin-top: 25px;
    display: block;
    font-size: 14px;
    line-height: 17px;
  }
  .pdp-module-title__btn {
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    padding: 0 22px;
  }
  .pdp-module-title__btn-link-area {
    width: auto;
    margin-left: 40px;
    gap: 18px;
    justify-content: center;
    flex-direction: column-reverse;
  }
}

.pdp-module-icon {
  overflow: hidden;
}
.pdp-module-icon__box {
  position: relative;
  margin: 62px auto;
  max-width: 1440px;
}
.pdp-module-icon__approx-area {
  width: 800px;
  margin: 0 auto;
}
.pdp-module-icon__items {
  display: flex;
  justify-content: space-around;
}
.pdp-module-icon .slick-slide {
  padding-left: 68px;
}
.pdp-module-icon__item {
  font-size: 20px;
  text-align: center;
  opacity: 0.5;
  cursor: pointer;
}
.pdp-module-icon__item--active {
  opacity: 1;
}
.pdp-module-icon__item--active .pdp-module-icon__item-name {
  text-decoration: underline;
}
.pdp-module-icon__item--active .pdp-module-icon__icon-container {
  border: 1px solid #dddee0;
}
.pdp-module-icon__icon-container {
  height: 121px;
  width: 121px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.pdp-module-icon__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
.pdp-module-icon__icon--pc {
  display: block;
}
.pdp-module-icon__icon--mobile {
  display: none;
}
.pdp-module-icon__item-name {
  font-weight: 400;
  width: 176px;
  margin: 40px auto 0;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pdp-module-icon__image {
  text-align: center;
  position: relative;
  font-size: 0;
}
.pdp-module-icon__img {
  max-width: 100%;
  width: 100%;
}
.pdp-module-icon__img--pc {
  display: inline;
}
.pdp-module-icon__img--mobile {
  display: none;
}
.pdp-module-icon__txt {
  width: 840px;
  margin: 60px auto;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.pdp-module-icon__txt-headline {
  font-family: "LG EI Headline";
  display: block;
  margin-top: 26px;
  margin-bottom: 35px;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
.pdp-module-icon__txt-description {
  display: block;
  font-size: 20px;
  line-height: 32px;
  word-wrap: break-word;
}
.pdp-module-icon__sub-txt {
  margin-top: 18px;
  color: #4a4946;
}
.pdp-module-icon__content-item {
  display: none;
}
.pdp-module-icon__content-item--active {
  display: block;
}
.pdp-module-icon.none-margin-top .pdp-module-icon__box {
  margin-top: 0;
}
.pdp-module-icon.none-margin-bottom .pdp-module-icon__box {
  margin-bottom: 0;
}
.pdp-module-icon.bg-black {
  background-color: #000000;
}
.pdp-module-icon.bg-black .pdp-module-icon__sub-txt {
  color: #fff;
}
.pdp-module-icon.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-icon.bg-warm-gray .pdp-module-icon__sub-txt {
  color: #000;
}
.pdp-module-icon.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-icon.bg-dark-1 .pdp-module-icon__sub-txt {
  color: #fff;
}
.pdp-module-icon.bg-light-1 {
  background-color: #f8f8f8;
}
.pdp-module-icon.bg-light-1 .pdp-module-icon__sub-txt {
  color: #000;
}
.pdp-module-icon.bg-black .slick-arrow.slick-prev, .pdp-module-icon.bg-dark-1 .slick-arrow.slick-prev {
  background-image: url(/theme/rbFront/img/w/pdp_carousel_left_white.png);
}
.pdp-module-icon.bg-black .slick-arrow.slick-next, .pdp-module-icon.bg-dark-1 .slick-arrow.slick-next {
  background-image: url(/theme/rbFront/img/w/pdp_carousel_right_white.png);
}
.pdp-module-icon.bg-black .slick-dots button, .pdp-module-icon.bg-dark-1 .slick-dots button {
  background-color: #000;
  border-color: #fff;
}
.pdp-module-icon.bg-black .slick-dots .slick-active button, .pdp-module-icon.bg-dark-1 .slick-dots .slick-active button {
  background-color: #fff;
  border-color: #fff;
}
.pdp-module-icon.txt-white {
  color: #fff;
}
.pdp-module-icon.txt-white a {
  color: #fff;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-icon__approx-area {
    width: 100%;
    margin: 0 auto;
  }
  .pdp-module-icon__items {
    display: block;
  }
  .pdp-module-icon .slick-slide {
    padding-left: 0;
  }
  .pdp-module-icon .slick-dots {
    text-align: center;
    margin-top: 19px;
  }
  .pdp-module-icon .slick-arrow {
    top: 50%;
    width: 22px;
    height: 42px;
    transform: translateY(-100%);
  }
  .pdp-module-icon .slick-arrow.slick-prev {
    background: url(/theme/rbFront/img/w/pdp_carousel_left.png) no-repeat center center;
    background-size: 50% 50%;
    left: 15px;
    right: auto;
  }
  .pdp-module-icon .slick-arrow.slick-next {
    background: url(/theme/rbFront/img/w/pdp_carousel_right.png) no-repeat center center;
    background-size: 50% 50%;
    left: auto;
    right: 15px;
  }
  .pdp-module-icon .slick-dots button {
    width: 10px;
    height: 10px;
  }
  .pdp-module-icon__icon-container {
    height: 75px;
    width: 75px;
  }
  .pdp-module-icon__icon {
    width: 78.6%;
    height: 78.6%;
  }
  .pdp-module-icon__icon--pc {
    display: none !important;
  }
  .pdp-module-icon__icon--mobile {
    display: block !important;
  }
  .pdp-module-icon__item-name {
    font-size: 12px;
    line-height: 19px;
    width: 30%;
    margin-top: 12px;
  }
  .pdp-module-icon__txt {
    margin: 20px auto 35px;
    width: 100%;
    padding: 0 26px;
  }
  .pdp-module-icon__txt-headline {
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
    margin-top: 13px;
    margin-bottom: 25px;
  }
  .pdp-module-icon__txt-description {
    font-size: 14px;
    line-height: 20px;
  }
  .pdp-module-icon__img--pc {
    display: none !important;
  }
  .pdp-module-icon__img--mobile {
    display: block !important;
  }
  .pdp-module-icon__sub-txt {
    font-size: 12px;
    text-align: center;
    padding: 0 26px;
    margin-top: 10px;
  }
}

.b-dics {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}

.b-dics__section {
  height: 100%;
}

.b-dics__slider:hover :before {
  color: #fff;
  border-color: #fff;
}

.b-dics__text {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 5px 25px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  z-index: 11;
  font-family: Arial, serif;
  color: #3d3d3d;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 13px;
  text-align: center;
  margin: 16px 0;
  white-space: nowrap;
  opacity: 0.7;
  pointer-events: none;
}

.b-dics__image-container {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

.b-dics__image {
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: none;
}

.b-dics__slider {
  color: #fff;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 3px;
  padding: 0 30px;
  z-index: 1;
  -ms-touch-action: none;
  touch-action: none;
  line-height: normal;
  opacity: 0.7;
}

.b-dics__slider:before {
  content: "";
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGRkZGRkY7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9PC9zdHlsZT48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTgwLjIsMTA4LjFsNjEuNy02Mi4yYzMuOC0zLjgsOC44LTUuOSwxNC4xLTUuOWM1LjMsMCwxMC40LDIuMSwxNC4xLDUuOWw2MS43LDYyLjJjMy45LDMuOSw5LjEsNS45LDE0LjIsNS45czEwLjItMS45LDE0LjEtNS44YzcuOC03LjgsNy45LTIwLjQsMC4xLTI4LjNsLTYxLjctNjIuMkMyODcuMiw2LjMsMjcyLjEsMCwyNTYsMHMtMzEuMiw2LjMtNDIuNSwxNy44TDE1MS44LDgwYy03LjgsNy44LTcuNywyMC41LDAuMSwyOC4zQzE1OS44LDExNiwxNzIuNCwxMTUuOSwxODAuMiwxMDguMXoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzMxLjgsNDAzLjlsLTYxLjcsNjIuMmMtMy44LDMuOC04LjgsNS45LTE0LjEsNS45Yy01LjMsMC0xMC40LTIuMS0xNC4xLTUuOWwtNjEuNy02Mi4yYy03LjgtNy44LTIwLjQtNy45LTI4LjMtMC4xYy03LjgsNy44LTcuOSwyMC40LTAuMSwyOC4zbDYxLjcsNjIuMmMxMS40LDExLjQsMjYuNSwxNy44LDQyLjUsMTcuOHMzMS4yLTYuMyw0Mi41LTE3LjhsNjEuNy02Mi4yYzcuOC03LjgsNy43LTIwLjUtMC4xLTI4LjNDMzUyLjIsMzk2LDMzOS42LDM5Ni4xLDMzMS44LDQwMy45eiIvPjwvc3ZnPg==) no-repeat 100% 100%;
  mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGRkZGRkY7ZW5hYmxlLWJhY2tncm91bmQ6bmV3ICAgIDt9PC9zdHlsZT48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTgwLjIsMTA4LjFsNjEuNy02Mi4yYzMuOC0zLjgsOC44LTUuOSwxNC4xLTUuOWM1LjMsMCwxMC40LDIuMSwxNC4xLDUuOWw2MS43LDYyLjJjMy45LDMuOSw5LjEsNS45LDE0LjIsNS45czEwLjItMS45LDE0LjEtNS44YzcuOC03LjgsNy45LTIwLjQsMC4xLTI4LjNsLTYxLjctNjIuMkMyODcuMiw2LjMsMjcyLjEsMCwyNTYsMHMtMzEuMiw2LjMtNDIuNSwxNy44TDE1MS44LDgwYy03LjgsNy44LTcuNywyMC41LDAuMSwyOC4zQzE1OS44LDExNiwxNzIuNCwxMTUuOSwxODAuMiwxMDguMXoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzMxLjgsNDAzLjlsLTYxLjcsNjIuMmMtMy44LDMuOC04LjgsNS45LTE0LjEsNS45Yy01LjMsMC0xMC40LTIuMS0xNC4xLTUuOWwtNjEuNy02Mi4yYy03LjgtNy44LTIwLjQtNy45LTI4LjMtMC4xYy03LjgsNy44LTcuOSwyMC40LTAuMSwyOC4zbDYxLjcsNjIuMmMxMS40LDExLjQsMjYuNSwxNy44LDQyLjUsMTcuOHMzMS4yLTYuMyw0Mi41LTE3LjhsNjEuNy02Mi4yYzcuOC03LjgsNy43LTIwLjUtMC4xLTI4LjNDMzUyLjIsMzk2LDMzOS42LDM5Ni4xLDMzMS44LDQwMy45eiIvPjwvc3ZnPg==) no-repeat 100% 100%;
  mask-size: cover;
  -webkit-mask-size: cover;
  width: 26px;
  height: 26px;
  padding: 0;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: 2;
  font-size: 0;
}

.b-dics__slider:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 3px;
  background-color: currentColor;
  z-index: 1;
}

.b-dics__image-container:hover .b-dics__text {
  opacity: 1;
}

.b-dics__slider:hover {
  opacity: 1;
}

.b-dics--tp-center .b-dics__text {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}

.b-dics--tp-bottom .b-dics__text {
  top: initial;
  bottom: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.b-dics--tp-left .b-dics__text {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 16px;
}

.b-dics--tp-right .b-dics__text {
  left: initial;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 16px;
}

.b-dics--hide-texts .b-dics__text {
  background: #fff;
  opacity: 0;
}

.b-dics--hide-texts .b-dics__image-container:hover .b-dics__text {
  opacity: 1;
}

.b-dics--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.b-dics--vertical .b-dics__section {
  height: auto;
  width: 100%;
}

.b-dics--vertical .b-dics__image {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: auto;
}

.b-dics--vertical .b-dics__slider {
  top: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  padding: 30px 0;
  left: 0;
}

.b-dics--vertical .b-dics__slider:after {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
}

.b-dics--vertical .b-dics__slider:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pdp-module-image-comparison {
  overflow: hidden;
}
.pdp-module-image-comparison__box {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 62px auto;
  max-width: 1440px;
}
.pdp-module-image-comparison__area {
  text-align: center;
  max-width: 100%;
  width: 100%;
}
.pdp-module-image-comparison__txt {
  display: flex;
  margin: 0 auto;
  padding: 0 0 35px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.pdp-module-image-comparison__txt-inner {
  width: 840px;
}
.pdp-module-image-comparison__txt-headline {
  font-family: "LG EI Headline";
  display: block;
  margin-top: 26px;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
.pdp-module-image-comparison__txt-eyebrow, .pdp-module-image-comparison__txt-description {
  display: block;
  font-size: 20px;
  line-height: 32px;
  word-wrap: break-word;
}
.pdp-module-image-comparison__txt-description {
  margin-top: 35px;
}
.pdp-module-image-comparison__btn-area {
  margin-top: 55px;
  display: flex;
  gap: 31px;
  justify-content: center;
}
.pdp-module-image-comparison__btn {
  display: inline-block;
  height: 47px;
  padding: 0 32px;
  line-height: 47px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
  color: #000;
}
.pdp-module-image-comparison__btn--line {
  border: 1px solid #000;
  background: #fff;
}
.pdp-module-image-comparison__btn--red {
  color: #fff;
  background-color: #fd312e;
  border: 1px solid #fd312e;
}
.pdp-module-image-comparison__link-area {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-top: 35px;
}
.pdp-module-image-comparison__link {
  text-decoration: underline;
  font-size: 18px;
}
.pdp-module-image-comparison__sub-txt {
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  color: #4a4946;
}
.pdp-module-image-comparison__items--pc {
  display: flex;
}
.pdp-module-image-comparison__items--mobile {
  display: none;
}
.pdp-module-image-comparison.none-margin-top .pdp-module-image-comparison__box {
  margin-top: 0;
}
.pdp-module-image-comparison.none-margin-bottom .pdp-module-image-comparison__box {
  margin-bottom: 0;
}
.pdp-module-image-comparison.txt-white {
  color: #fff;
}
.pdp-module-image-comparison.txt-white a {
  color: #fff;
}
.pdp-module-image-comparison.bg-black {
  background-color: #000000;
}
.pdp-module-image-comparison.bg-black .pdp-module-image-comparison__sub-txt {
  color: #fff;
}
.pdp-module-image-comparison.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-image-comparison.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-image-comparison.bg-dark-1 .pdp-module-image-comparison__sub-txt {
  color: #fff;
}
.pdp-module-image-comparison.bg-light-1 {
  background-color: #f8f8f8;
}
.pdp-module-image-comparison .b-dics__slider {
  opacity: 1;
}
.pdp-module-image-comparison .b-dics__slider:after {
  width: 8px;
}
.pdp-module-image-comparison .b-dics__slider:before {
  mask: none;
  -webkit-mask: none;
  mask-size: unset;
  -webkit-mask-size: unset;
  transform: translate(-50%, -50%);
  width: 73px;
  height: 73px;
  background: url(/theme/rbFront/img/w/icon_handler_image_comparison.png) no-repeat 100% 100%;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-image-comparison__box {
    margin: 32px 0;
  }
  .pdp-module-image-comparison__area {
    width: 100%;
  }
  .pdp-module-image-comparison__txt {
    margin-top: 0;
    padding: 0 15px 35px;
  }
  .pdp-module-image-comparison__txt-inner {
    width: 100%;
  }
  .pdp-module-image-comparison__txt-headline {
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
    margin-top: 20px;
  }
  .pdp-module-image-comparison__txt-eyebrow {
    font-size: 14px;
    line-height: 20px;
  }
  .pdp-module-image-comparison__txt-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 25px;
  }
  .pdp-module-image-comparison__btn {
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    padding: 0 22px;
  }
  .pdp-module-image-comparison__btn-area {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-image-comparison__link-area {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-image-comparison__link {
    font-size: 12px;
  }
  .pdp-module-image-comparison__sub-txt {
    font-size: 12px;
    text-align: center;
    padding: 0 26px;
    margin-top: 10px;
  }
  .pdp-module-image-comparison__items--pc {
    display: none;
  }
  .pdp-module-image-comparison__items--mobile {
    display: flex;
  }
  .pdp-module-image-comparison .b-dics__slider:after {
    width: 2px;
  }
  .pdp-module-image-comparison .b-dics__slider:before {
    width: 36px;
    height: 36px;
    background-size: 36px 36px;
  }
}

.pdp-module-image-folding {
  overflow: hidden;
}
.pdp-module-image-folding__box {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 62px auto;
  max-width: 1440px;
}
.pdp-module-image-folding__image {
  text-align: center;
  position: relative;
  font-size: 0;
}
.pdp-module-image-folding__source {
  max-width: 100%;
  width: 100%;
}
.pdp-module-image-folding__source--mobile {
  display: none;
}
.pdp-module-image-folding__txt {
  display: flex;
  margin: 0 auto;
  padding: 0 16.2% 36px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.pdp-module-image-folding__txt-inner {
  width: 840px;
}
.pdp-module-image-folding__txt-headline {
  font-family: "LG EI Headline";
  display: block;
  margin-top: 26px;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
.pdp-module-image-folding__txt-eyebrow, .pdp-module-image-folding__txt-description {
  display: block;
  font-size: 20px;
  line-height: 32px;
  word-wrap: break-word;
}
.pdp-module-image-folding__txt-description {
  margin-top: 35px;
}
.pdp-module-image-folding__btn-area {
  margin-top: 55px;
  display: flex;
  gap: 31px;
  justify-content: center;
}
.pdp-module-image-folding__btn {
  display: inline-block;
  height: 47px;
  padding: 0 32px;
  line-height: 47px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
  color: #000;
}
.pdp-module-image-folding__btn--line {
  border: 1px solid #000;
  background: #fff;
}
.pdp-module-image-folding__btn--red {
  color: #fff;
  background-color: #fd312e;
  border: 1px solid #fd312e;
}
.pdp-module-image-folding__link-area {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-top: 35px;
}
.pdp-module-image-folding__link {
  text-decoration: underline;
  font-size: 18px;
}
.pdp-module-image-folding__movie {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  font-size: 18px;
}
.pdp-module-image-folding__movie-info {
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.pdp-module-image-folding__movie-icon {
  position: relative;
  width: 23px;
  display: inline-block;
  height: 23px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
}
.pdp-module-image-folding__movie-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 13px;
  top: 55%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: url(/theme/rbFront/img/w/main/hero_play.png) no-repeat 0 0;
  background-size: 8px 10px;
}
.pdp-module-image-folding__sub-txt {
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  color: #4a4946;
}
.pdp-module-image-folding__more {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}
.pdp-module-image-folding__more--expand .pdp-module-image-folding__more-button--expand {
  display: none;
}
.pdp-module-image-folding__more--expand .pdp-module-image-folding__more-button--collapse {
  display: block;
}
.pdp-module-image-folding__more-button {
  width: 54px;
  height: 54px;
  background-size: 100% 100%;
  text-indent: -9999px;
}
.pdp-module-image-folding__more-button--expand {
  display: block;
  background: url(/theme/rbFront/img/w/pdp_folding_plus.png) no-repeat 0 0;
}
.pdp-module-image-folding__more-button--collapse {
  display: none;
  background: url(/theme/rbFront/img/w/pdp_folding_close.png) no-repeat 0 0;
}
.pdp-module-image-folding__feature {
  display: none;
  flex-direction: column;
  position: relative;
  margin: 0 80px;
}
.pdp-module-image-folding__feature--expand {
  display: flex;
}
.pdp-module-image-folding__feature-item {
  margin-top: 100px;
}
.pdp-module-image-folding__feature-txt {
  display: flex;
  margin: 48px auto 0;
  padding: 0 16.2% 36px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.pdp-module-image-folding__feature-txt-inner {
  width: 840px;
}
.pdp-module-image-folding__feature-txt-headline {
  font-family: "LG EI Headline";
  display: block;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
.pdp-module-image-folding__feature-txt-eyebrow, .pdp-module-image-folding__feature-txt-description {
  display: block;
  font-size: 20px;
  line-height: 32px;
  word-wrap: break-word;
}
.pdp-module-image-folding__feature-txt-description {
  margin-top: 35px;
}
.pdp-module-image-folding__feature-image {
  text-align: center;
  position: relative;
  font-size: 0;
}
.pdp-module-image-folding__feature-source {
  max-width: 100%;
  width: 100%;
}
.pdp-module-image-folding__feature-source--mobile {
  display: none;
}
.pdp-module-image-folding__feature-btn-area {
  margin-top: 55px;
  display: flex;
  gap: 31px;
  justify-content: center;
}
.pdp-module-image-folding__feature-btn {
  display: inline-block;
  height: 47px;
  padding: 0 32px;
  line-height: 47px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
}
.pdp-module-image-folding__feature-link-area {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-top: 35px;
}
.pdp-module-image-folding__feature-link {
  text-decoration: underline;
  font-size: 18px;
}
.pdp-module-image-folding__feature-movie {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  font-size: 20px;
}
.pdp-module-image-folding__feature-movie-info {
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.pdp-module-image-folding__feature-movie-icon {
  position: relative;
  width: 23px;
  display: inline-block;
  height: 23px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
}
.pdp-module-image-folding__feature-movie-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 13px;
  top: 55%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: url(/theme/rbFront/img/w/main/hero_play.png) no-repeat 0 0;
  background-size: 8px 10px;
}
.pdp-module-image-folding__feature-sub-txt {
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  color: #4a4946;
}
@media only screen and (min-width: 1080px) {
  .pdp-module-image-folding--left .pdp-module-image-folding__txt {
    padding: 0;
    padding-bottom: 30px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .pdp-module-image-folding--left .pdp-module-image-folding__txt .pdp-module-image-folding__btn-area,
  .pdp-module-image-folding--left .pdp-module-image-folding__txt .pdp-module-image-folding__link-area,
  .pdp-module-image-folding--left .pdp-module-image-folding__txt .pdp-module-image-folding__movie {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .pdp-module-image-folding--left .pdp-module-image-folding__feature-txt {
    padding: 0;
    padding-bottom: 30px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .pdp-module-image-folding--left .pdp-module-image-folding__feature-txt .pdp-module-image-folding__feature-btn-area,
  .pdp-module-image-folding--left .pdp-module-image-folding__feature-txt .pdp-module-image-folding__feature-link-area,
  .pdp-module-image-folding--left .pdp-module-image-folding__feature-txt .pdp-module-image-folding__feature-movie {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .pdp-module-image-folding--right .pdp-module-image-folding__txt {
    padding: 0;
    padding-bottom: 30px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    justify-content: flex-end;
  }
  .pdp-module-image-folding--right .pdp-module-image-folding__txt .pdp-module-image-folding__btn-area,
  .pdp-module-image-folding--right .pdp-module-image-folding__txt .pdp-module-image-folding__link-area,
  .pdp-module-image-folding--right .pdp-module-image-folding__txt .pdp-module-image-folding__movie {
    justify-content: flex-start;
    align-items: flex-end;
  }
  .pdp-module-image-folding--right .pdp-module-image-folding__feature-txt {
    padding: 0;
    padding-bottom: 30px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    justify-content: flex-end;
  }
  .pdp-module-image-folding--right .pdp-module-image-folding__feature-txt .pdp-module-image-folding__feature-btn-area,
  .pdp-module-image-folding--right .pdp-module-image-folding__feature-txt .pdp-module-image-folding__feature-link-area,
  .pdp-module-image-folding--right .pdp-module-image-folding__feature-txt .pdp-module-image-folding__feature-movie {
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.pdp-module-image-folding.none-margin-top .pdp-module-image-folding__box {
  margin-top: 0;
}
.pdp-module-image-folding.none-margin-bottom .pdp-module-image-folding__box {
  margin-bottom: 0;
}
.pdp-module-image-folding.txt-white {
  color: #fff;
}
.pdp-module-image-folding.txt-white a {
  color: #fff;
}
.pdp-module-image-folding.bg-black {
  background-color: #000000;
}
.pdp-module-image-folding.bg-black .pdp-module-image-folding__sub-txt {
  color: #fff;
}
.pdp-module-image-folding.bg-black .pdp-module-image-folding__feature-sub-txt {
  color: #fff;
}
.pdp-module-image-folding.bg-black .pdp-module-image-folding__more-button {
  width: 56px;
  height: 56px;
}
.pdp-module-image-folding.bg-black .pdp-module-image-folding__more-button--expand {
  background: url(/theme/rbFront/img/w/pdp_folding_plus_white.png) no-repeat 0 0;
}
.pdp-module-image-folding.bg-black .pdp-module-image-folding__more-button--collapse {
  background: url(/theme/rbFront/img/w/pdp_folding_close_white.png) no-repeat 0 0;
}
.pdp-module-image-folding.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-image-folding.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-image-folding.bg-dark-1 .pdp-module-image-folding__sub-txt {
  color: #fff;
}
.pdp-module-image-folding.bg-dark-1 .pdp-module-image-folding__feature-sub-txt {
  color: #fff;
}
.pdp-module-image-folding.bg-dark-1 .pdp-module-image-folding__more-button {
  width: 56px;
  height: 56px;
}
.pdp-module-image-folding.bg-dark-1 .pdp-module-image-folding__more-button--expand {
  background: url(/theme/rbFront/img/w/pdp_folding_plus_white.png) no-repeat 0 0;
}
.pdp-module-image-folding.bg-dark-1 .pdp-module-image-folding__more-button--collapse {
  background: url(/theme/rbFront/img/w/pdp_folding_close_white.png) no-repeat 0 0;
}
.pdp-module-image-folding.bg-light-1 {
  background-color: #f8f8f8;
}

@media only screen and (max-width: 1080px) {
  .pdp-module-image-folding__box {
    margin: 32px 0;
  }
  .pdp-module-image-folding__image {
    width: 100%;
  }
  .pdp-module-image-folding__source--desktop {
    display: none;
  }
  .pdp-module-image-folding__source--mobile {
    display: block;
    width: 100%;
  }
  .pdp-module-image-folding__txt {
    margin-top: 0;
    padding: 0 15px 35px;
  }
  .pdp-module-image-folding__txt-inner {
    width: 100%;
  }
  .pdp-module-image-folding__txt-headline {
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
    margin-top: 20px;
  }
  .pdp-module-image-folding__txt-eyebrow {
    font-size: 14px;
    line-height: 100%;
  }
  .pdp-module-image-folding__txt-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 25px;
  }
  .pdp-module-image-folding__btn {
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    padding: 0 22px;
  }
  .pdp-module-image-folding__btn-area {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-image-folding__link-area {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-image-folding__link {
    font-size: 12px;
  }
  .pdp-module-image-folding__movie {
    margin-top: 20px;
    font-size: 12px;
  }
  .pdp-module-image-folding__movie-info {
    gap: 12px;
  }
  .pdp-module-image-folding__movie-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
  .pdp-module-image-folding__movie-icon::before {
    width: 6px;
    height: 7px;
    top: 47%;
    left: 58%;
    background-size: 6px 7px;
  }
  .pdp-module-image-folding__sub-txt {
    font-size: 12px;
    text-align: center;
    padding: 0 26px;
    margin-top: 10px;
  }
  .pdp-module-image-folding__feature {
    max-width: 100%;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .pdp-module-image-folding__feature-item {
    margin-top: 45px;
  }
  .pdp-module-image-folding__more {
    margin-top: 28px;
  }
  .pdp-module-image-folding__more-button {
    width: 28px !important;
    height: 28px !important;
    background-size: 28px 28px !important;
  }
  .pdp-module-image-folding__feature-image {
    width: 100%;
  }
  .pdp-module-image-folding__feature-source--desktop {
    display: none;
  }
  .pdp-module-image-folding__feature-source--mobile {
    display: block;
    width: 100%;
  }
  .pdp-module-image-folding__feature-txt {
    margin-top: 0;
    padding: 25px 15px 35px;
  }
  .pdp-module-image-folding__feature-txt-inner {
    width: 100%;
  }
  .pdp-module-image-folding__feature-txt-headline {
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
  }
  .pdp-module-image-folding__feature-txt-description {
    font-size: 14px;
    line-height: 20px;
    margin-top: 25px;
  }
  .pdp-module-image-folding__feature-btn {
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    padding: 0 22px;
  }
  .pdp-module-image-folding__feature-btn-area {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-image-folding__feature-link-area {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 20px;
  }
  .pdp-module-image-folding__feature-link {
    font-size: 12px;
  }
  .pdp-module-image-folding__feature-movie {
    margin-top: 20px;
    font-size: 14px;
  }
  .pdp-module-image-folding__feature-movie-info {
    gap: 12px;
  }
  .pdp-module-image-folding__feature-movie-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
  .pdp-module-image-folding__feature-movie-icon::before {
    width: 6px;
    height: 7px;
    top: 47%;
    left: 58%;
    background-size: 6px 7px;
  }
  .pdp-module-image-folding__feature-sub-txt {
    font-size: 12px;
    text-align: center;
    padding: 0 26px;
    margin-top: 10px;
  }
}
.pdp-module-gallery {
  overflow: hidden;
}
.pdp-module-gallery__box {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 62px auto;
  max-width: 1440px;
}
.pdp-module-gallery__txt {
  display: flex;
  margin: 0 auto;
  width: 840px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.pdp-module-gallery__txt-headline {
  font-family: "LG EI Headline";
  display: block;
  margin-bottom: 47px;
  font-size: 56px;
  font-weight: 400;
  line-height: 66px;
}
.pdp-module-gallery__slider {
  padding: 0 80px;
}
.pdp-module-gallery__slide {
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 0px;
}
.pdp-module-gallery__media {
  position: relative;
}
.pdp-module-gallery__media-source {
  width: 100%;
  max-width: 100%;
}
.pdp-module-gallery__media-source--pc {
  display: inline;
}
.pdp-module-gallery__media-source--mobile {
  display: none !important;
}
.pdp-module-gallery__video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  cursor: pointer;
  z-index: 1;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pdp-module-gallery__video-btn-source {
  width: 66px;
}
.pdp-module-gallery__main {
  width: 840px;
  margin: 55px auto 35px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  word-break: keep-all;
}
.pdp-module-gallery__description {
  padding-top: 25px;
  font-size: 16px;
  color: #4a4946;
  text-align: left;
}
.pdp-module-gallery .slick-arrow {
  top: 266px;
  width: 18px;
  height: 34px;
}
.pdp-module-gallery .slick-arrow.slick-prev {
  background: url(/theme/rbFront/img/w/pdp_carousel_left.png) no-repeat 0 100%;
  left: 0;
  right: auto;
}
.pdp-module-gallery .slick-arrow.slick-next {
  background: url(/theme/rbFront/img/w/pdp_carousel_right.png) no-repeat 0 100%;
  left: auto;
  right: 0;
}
.pdp-module-gallery.none-margin-top .pdp-module-gallery__box {
  margin-top: 0;
}
.pdp-module-gallery.none-margin-bottom .pdp-module-gallery__box {
  margin-bottom: 0;
}
.pdp-module-gallery.txt-white {
  color: #fff;
}
.pdp-module-gallery.bg-black {
  background-color: #000000;
}
.pdp-module-gallery.bg-black .pdp-module-gallery__description {
  color: #fff;
}
.pdp-module-gallery.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-gallery.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-gallery.bg-dark-1 .pdp-module-gallery__description {
  color: #fff;
}
.pdp-module-gallery.bg-light-1 {
  background-color: #f8f8f8;
}
.pdp-module-gallery.bg-black .slick-arrow.slick-prev, .pdp-module-gallery.bg-dark-1 .slick-arrow.slick-prev {
  background-image: url(/theme/rbFront/img/w/pdp_carousel_left_white.png);
}
.pdp-module-gallery.bg-black .slick-arrow.slick-next, .pdp-module-gallery.bg-dark-1 .slick-arrow.slick-next {
  background-image: url(/theme/rbFront/img/w/pdp_carousel_right_white.png);
}
.pdp-module-gallery.bg-black .slick-dots button, .pdp-module-gallery.bg-dark-1 .slick-dots button {
  background-color: #000;
  border-color: #fff;
}
.pdp-module-gallery.bg-black .slick-dots .slick-active button, .pdp-module-gallery.bg-dark-1 .slick-dots .slick-active button {
  background-color: #fff;
  border-color: #fff;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-gallery__slider {
    width: 100%;
    padding: 0;
  }
  .pdp-module-gallery__slider .slick-list {
    padding: 0 12px;
  }
  .pdp-module-gallery__video-btn-source {
    width: 34px;
  }
  .pdp-module-gallery__txt {
    width: 100%;
    padding: 0 10px;
  }
  .pdp-module-gallery__txt-headline {
    margin-bottom: 35px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
  }
  .pdp-module-gallery__main {
    width: 100%;
    font-size: 14px;
    line-height: 17px;
    margin: 35px auto 15px;
    padding: 0 3%;
    box-sizing: border-box;
  }
  .pdp-module-gallery__media-source {
    width: 100%;
    max-width: 100%;
  }
  .pdp-module-gallery__media-source--pc {
    display: none !important;
  }
  .pdp-module-gallery__media-source--mobile {
    display: inline !important;
  }
  .pdp-module-gallery__description {
    font-size: 11px;
    line-height: 14px;
    text-align: center;
    padding: 20px 3% 0;
    box-sizing: border-box;
  }
  .pdp-module-gallery .slick-slide {
    margin: 0 5px;
  }
  .pdp-module-gallery .slick-dots {
    text-align: center;
  }
}

.pdp-module-award {
  overflow: hidden;
}
.pdp-module-award__box {
  position: relative;
  margin: 62px auto;
  max-width: 1280px;
}
.pdp-module-award__item {
  text-align: center;
}
.pdp-module-award__image {
  display: flex;
  max-width: 100%;
  height: 180px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp-module-award__image-source {
  max-width: 100%;
  max-height: 100%;
}
.pdp-module-award__txt {
  margin: 40px 40px 0;
}
.pdp-module-award__txt-eyebrow {
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
  color: #9fa0a0;
}
.pdp-module-award__txt-headline {
  font-size: 20px;
}
.pdp-module-award .slick-arrow {
  top: 50%;
  width: 18px;
  height: 34px;
}
.pdp-module-award .slick-arrow.slick-prev {
  background: url(/theme/rbFront/img/w/pdp_carousel_left.png) no-repeat 0 100%;
  left: -62px;
  right: auto;
}
.pdp-module-award .slick-arrow.slick-next {
  background: url(/theme/rbFront/img/w/pdp_carousel_right.png) no-repeat 0 100%;
  left: auto;
  right: -62px;
}
.pdp-module-award .slick-list {
  margin-left: -80px;
}
.pdp-module-award .slick-slide {
  padding-left: 80px;
}
.pdp-module-award.none-margin-top .pdp-module-award__box {
  margin-top: 0;
}
.pdp-module-award.none-margin-bottom .pdp-module-award__box {
  margin-bottom: 0;
}
.pdp-module-award.txt-white {
  color: #fff;
}
.pdp-module-award.txt-white .pdp-module-award__sub-txt {
  color: #fff;
}
.pdp-module-award.bg-black {
  background-color: #000000;
}
.pdp-module-award.bg-warm-gray {
  background-color: #f0ece4;
}
.pdp-module-award.bg-dark-1 {
  background-color: #333333;
}
.pdp-module-award.bg-light-1 {
  background-color: #f8f8f8;
}
.pdp-module-award.bg-black .slick-arrow.slick-prev, .pdp-module-award.bg-dark-1 .slick-arrow.slick-prev {
  background-image: url(/theme/rbFront/img/w/pdp_carousel_left_white.png);
}
.pdp-module-award.bg-black .slick-arrow.slick-next, .pdp-module-award.bg-dark-1 .slick-arrow.slick-next {
  background-image: url(/theme/rbFront/img/w/pdp_carousel_right_white.png);
}
.pdp-module-award.bg-black .slick-dots button, .pdp-module-award.bg-dark-1 .slick-dots button {
  background-color: #000;
  border-color: #fff;
}
.pdp-module-award.bg-black .slick-dots .slick-active button, .pdp-module-award.bg-dark-1 .slick-dots .slick-active button {
  background-color: #fff;
  border-color: #fff;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-award__box {
    margin: 35px auto;
    max-width: 100%;
  }
  .pdp-module-award__item {
    width: 100%;
  }
  .pdp-module-award__image {
    height: 116px;
  }
  .pdp-module-award__image-source {
    max-width: 80%;
    max-height: 80%;
  }
  .pdp-module-award__txt {
    margin: 10px 26px 0;
  }
  .pdp-module-award__txt-eyebrow {
    font-size: 12px;
  }
  .pdp-module-award__txt-headline {
    font-size: 16px;
  }
  .pdp-module-award .slick-dots {
    text-align: center;
    margin-top: 18px;
  }
  .pdp-module-award .slick-arrow {
    top: 28%;
    width: 11px;
    height: 21px;
  }
  .pdp-module-award .slick-arrow.slick-prev {
    left: 10px;
    right: auto;
    background-size: 11px 21px;
  }
  .pdp-module-award .slick-arrow.slick-next {
    left: auto;
    right: 10px;
    background-size: 11px 21px;
  }
}

.pdp-module-compatible {
  overflow: hidden;
}
.pdp-module-compatible__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 58px;
  max-width: 1440px;
  margin: 100px auto 0;
}
.pdp-module-compatible__heading {
  color: #000;
  font-family: "LG EI Headline";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.pdp-module-compatible__area {
  display: flex;
  gap: 24px;
}
.pdp-module-compatible__item {
  width: 464px;
  text-align: center;
}
.pdp-module-compatible__item:hover .pdp-module-compatible__image-source {
  transform: scale(1.1);
}
.pdp-module-compatible__image {
  display: flex;
  max-width: 100%;
  max-height: 290px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp-module-compatible__image-source {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.8s ease;
}
.pdp-module-compatible__txt {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.pdp-module-compatible__headline {
  display: flex;
  font-family: "LG EI Headline";
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pdp-module-compatible__headline:hover {
  font-weight: 400;
}
.pdp-module-compatible__bodycopy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: left;
}
.pdp-module-compatible__bodycopy small {
  font-size: 16px;
}
.pdp-module-compatible__anchor {
  display: flex;
  color: #000;
  font-family: "LG EI Text";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
}
.pdp-module-compatible__anchor:hover {
  font-weight: 400;
  text-decoration: underline;
}
@media only screen and (max-width: 1080px) {
  .pdp-module-compatible__box {
    gap: 20px;
    margin-top: 33px;
  }
  .pdp-module-compatible__area {
    flex-direction: column;
    gap: 33px;
  }
  .pdp-module-compatible__heading {
    font-size: 18px;
    font-weight: 400;
    padding: 0 15px;
  }
  .pdp-module-compatible__item {
    width: 100%;
  }
  .pdp-module-compatible__image {
    max-height: 178px;
  }
  .pdp-module-compatible__txt {
    gap: 15px;
    margin-top: 15px;
  }
  .pdp-module-compatible__headline {
    font-size: 16px;
  }
  .pdp-module-compatible__bodycopy {
    font-size: 14px;
    gap: 15px;
  }
  .pdp-module-compatible__bodycopy small {
    font-size: 14px;
  }
  .pdp-module-compatible__anchor {
    font-size: 14px;
  }
  .pdp-module-compatible .slick-list {
    position: relative;
    padding: 0 15px;
    margin-left: -15px;
  }
  .pdp-module-compatible .slick-slide {
    margin-left: 15px;
    position: relative;
  }
  .pdp-module-compatible .slick-dots {
    text-align: center;
    margin: 0px;
  }
  .pdp-module-compatible .slick-dots li {
    margin: 0 2.5px !important;
  }
  .pdp-module-compatible .slick-dots li.slick-active button {
    width: 26px !important;
    border-radius: 30px !important;
    background-color: #FD322E !important;
  }
  .pdp-module-compatible .slick-dots button {
    width: 12px !important;
    height: 12px !important;
    background-color: #757575;
    border-width: 0 !important;
  }
}

.pdp-spec {
  overflow: hidden;
  background-color: #f3f4f4;
}
.pdp-spec__box {
  position: relative;
  margin: 0 auto;
  max-width: 1440px;
}
.pdp-spec__area {
  padding: 40px;
}
.pdp-spec__headline {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.pdp-spec__key {
  margin: 40px 0;
  background-color: #FFF;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 160px;
}
.pdp-spec__key li {
  border-bottom: 1px solid #dddee0;
  padding: 40px 0;
  position: relative;
  width: calc(50% - 80px);
}
.pdp-spec__key li:nth-child(1), .pdp-spec__key li:nth-child(2) {
  padding-top: 0;
}
.pdp-spec__key li:last-child, .pdp-spec__key li:nth-last-child(2) {
  border-bottom: 0;
  padding-bottom: 0;
}
.pdp-spec__title {
  font-size: 18px;
  font-weight: 400;
}
.pdp-spec__value {
  font-size: 24px;
  margin-top: 38px;
}
.pdp-spec__info {
  position: absolute;
}
.pdp-spec__btn-area {
  position: relative;
}
.pdp-spec__second-box {
  display: none;
}
.pdp-spec__btn-more, .pdp-spec__btn-close {
  position: relative;
  margin: 0 auto;
  font-size: 18px;
  width: 190px;
  display: block;
  color: #000;
}
.pdp-spec__btn-more span, .pdp-spec__btn-close span {
  text-indent: -20px;
  border: 1px solid #000;
  border-radius: 23px;
  background-color: #FFF;
  line-height: 41px;
  padding-top: 4px;
  font-weight: 400;
  text-align: center;
  display: block;
  color: #000;
}
.pdp-spec__btn-more span::after, .pdp-spec__btn-close span::after {
  content: "";
  display: block;
  position: absolute;
  right: 29px;
  top: 19px;
  width: 19px;
  height: 10px;
  background: url("../img/w/pdp_icon_arrow_down.png") no-repeat 0 0;
}
.pdp-spec__btn-close {
  display: none;
}
.pdp-spec__btn-close span::after {
  transform: rotate(180deg);
}
.pdp-spec__tech {
  padding: 0 0 40px;
}
.pdp-spec__tech:first-of-type {
  padding-top: 60px;
}
.pdp-spec__tit_sub {
  float: left;
  max-width: 190px;
  padding: 11px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  word-wrap: break-word;
}
.pdp-spec__val_sub {
  padding-left: 180px;
  border-bottom: 1px solid #dddee0;
  padding-bottom: 28px;
}
.pdp-spec__val_sub table colgroup col:nth-child(1) {
  width: 27%;
}
.pdp-spec__val_sub th {
  padding: 12px 0;
  vertical-align: top;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  text-align: left;
}
.pdp-spec__val_sub td {
  padding: 12px 0;
  vertical-align: top;
  font-size: 18px;
  line-height: 27px;
}
.pdp-spec--tech .pdp-spec__tech {
  display: none;
}
.pdp-spec--tech .pdp-spec__tech:first-of-type {
  display: block;
}
.pdp-spec--expand .pdp-spec__second-box {
  display: block;
}
.pdp-spec--expand .pdp-spec__btn-more {
  display: none;
}
.pdp-spec--expand .pdp-spec__btn-close {
  display: block;
}
.pdp-spec--expand .pdp-spec__tech {
  display: block;
}
@media only screen and (max-width: 1080px) {
  .pdp-spec__box {
    margin: 0 auto 0;
  }
  .pdp-spec__headline {
    margin-bottom: 13px;
    font-size: 16px;
  }
  .pdp-spec__area {
    padding: 26px;
  }
  .pdp-spec__key {
    margin-top: 22px;
    padding: 18px;
  }
  .pdp-spec__key li {
    width: 100%;
    padding: 20px 0 !important;
  }
  .pdp-spec__key li:nth-child(odd), .pdp-spec__key li:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
  .pdp-spec__key li:nth-last-child(2) {
    border-bottom: 1px solid #dddee0;
    padding-bottom: 40px;
  }
  .pdp-spec__btn-more, .pdp-spec__btn-close {
    width: 100%;
    font-size: 12px;
  }
  .pdp-spec__btn-more span, .pdp-spec__btn-close span {
    height: 27px;
    line-height: 27px;
  }
  .pdp-spec__btn-more span::after, .pdp-spec__btn-close span::after {
    right: 50%;
    margin-right: -45px;
    width: 10px;
    height: 5.2631579px;
    background-size: cover;
    top: 50%;
    transform: translateY(-1px);
  }
  .pdp-spec__btn-close span::after {
    transform: translateY(-1px) rotate(180deg);
  }
  .pdp-spec__title {
    font-size: 12px;
  }
  .pdp-spec__value {
    font-size: 14px;
    margin-top: 12px;
  }
  .pdp-spec__info {
    font-size: 12px;
    position: static;
  }
  .pdp-spec__tech {
    padding: 0;
  }
  .pdp-spec__tit_sub {
    float: inherit;
    max-width: 9999px;
    padding: 20px 0 13px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
  }
  .pdp-spec__val_sub {
    padding-left: 0;
    padding-bottom: 11px;
    border-bottom: 0;
  }
  .pdp-spec__val_sub table colgroup col:nth-child(1) {
    width: 34%;
  }
  .pdp-spec__val_sub th {
    padding: 7px 20px 8px 0;
    font-size: 14px;
    line-height: 18px;
  }
  .pdp-spec__val_sub td {
    padding: 5px 0 6px;
    font-size: 14px;
    line-height: 18px;
  }
  .pdp-spec__btn-area {
    margin-top: 2px;
  }
  .pdp-spec--tech .pdp-spec__tech:first-of-type {
    padding-top: 0;
  }
}

.pdp-sticky {
  background-color: #f3f4f4;
  position: static;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
}
.pdp-sticky__box {
  max-width: 1440px;
  margin: 0 auto;
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pdp-sticky__col {
  display: flex;
  height: 100%;
}
.pdp-sticky__name {
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
}
.pdp-sticky__menu {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
}
.pdp-sticky__menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.pdp-sticky__menu-item--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fd312e;
}
.pdp-sticky__menu-anchor {
  font-size: 18px;
  line-height: 100%;
  color: #000;
  display: block;
  padding: 0 10px;
  font-weight: 400;
}
.pdp-sticky__menu-anchor:hover {
  font-weight: 400;
}
.pdp-sticky__buttons {
  margin-left: 47px;
  display: flex;
  align-items: center;
}
.pdp-sticky__button {
  font-size: 18px;
  color: #fff;
  background-color: #fd312e;
  height: 47px;
  line-height: 47px;
  padding: 0 34px;
  border-radius: 23px;
}
@media only screen and (max-width: 1080px) {
  .pdp-sticky__box {
    height: 50px;
    box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.2);
  }
  .pdp-sticky__col {
    width: 100%;
  }
  .pdp-sticky__col:first-child {
    display: none;
  }
  .pdp-sticky__buttons {
    display: none;
  }
  .pdp-sticky__menu {
    width: 100%;
    justify-content: center;
  }
  .pdp-sticky__menu-anchor {
    font-size: 14px;
    line-height: 100%;
    padding: 0 10px;
  }
}

.pdp-sticky-mobile {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .pdp-sticky-mobile {
    display: block;
    background-color: #f3f4f4;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
  }
  .pdp-sticky-mobile__box {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    box-shadow: 2px 0px 9.9px 0.1px rgba(0, 0, 0, 0.2);
  }
  .pdp-sticky-mobile__name {
    font-size: 14px;
    font-weight: 400;
  }
  .pdp-sticky-mobile__buttons {
    display: flex;
    align-items: center;
  }
  .pdp-sticky-mobile__button {
    font-size: 14px;
    color: #fff;
    background-color: #fd312e;
    height: 32px;
    line-height: 32px;
    padding: 0 22px;
    border-radius: 16px;
  }
  .pdp-sticky-mobile--show {
    display: block;
  }
}

.product_information .square_button {
  border-color: #000;
  border-radius: 18px;
  font-size: 20px;
  color: #000;
  height: 36px;
  line-height: 36px;
  padding: 0 24px;
}
.product_information .square_button.active {
  background-color: #fd312e;
  border-color: #fd312e;
  color: #fff;
}
.product_information .btn_type.rface span {
  border-color: #fd312e;
  background-color: #fd312e;
  border-radius: 28px;
}
.product_information .btn_type.rface:hover span, .product_information .btn_type.rface:active span {
  border-color: #fd312e;
  background-color: #fd312e;
}

.pdp-section--resources .category {
  color: #000 !important;
}
.pdp-section--resources .resources .file .file_down {
  border-radius: 25px;
  font-size: 18px;
  padding-top: 0;
  padding-bottom: 0;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 1080px) {
  .pdp-section--resources .resources .file .file_down {
    border-radius: 205px;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    background-position: 38% 12px;
  }
}
.pdp-section#resources1 {
  padding-top: 40px;
}
.pdp-section#resources1 .download_guide {
  margin-top: 20px;
}
.pdp-section--feature {
  padding-bottom: 120px;
}
@media screen and (max-width: 1080px) {
  .pdp-section--feature {
    padding-bottom: 38px;
  }
}
.pdp-section--spec {
  border-top: solid 1px #dddee0;
}
.pdp-section .slick-dots li {
  margin: 0 7px;
}
.pdp-section .slick-dots button {
  border: solid 1px #000;
}
@media screen and (max-width: 1080px) {
  .pdp-section .slick-dots li {
    margin: 0 4.5px;
  }
  .pdp-section .slick-dots button {
    width: 9px;
    height: 9px;
  }
}

.download_guide a {
  color: #000;
}

.banner-inquiry p .btn-type {
  color: #fd312e;
}

#resources1 + .banner-inquiry {
  margin-top: 55px;
}

@media only screen and (max-width: 1080px) {
  .quick {
    bottom: 55px;
  }
  #resources1 + .banner-inquiry {
    margin-top: 0;
  }
  .pdp-section#resources1 {
    padding-top: 0;
  }
  .pdp-section#resources1 .download_guide {
    margin-top: 0;
  }
  .chatbot {
    bottom: 60px;
  }
}/*# sourceMappingURL=pdp.css.map */