/* BASIC css start */
/* HH - 2024.12.13 */
@import"https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/static/woff2/SUIT.css";
@import"https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap";

/* *** °øÅë *** */
html {
  overflow-x: hidden;
}

.go_prd {
  position: fixed;
  z-index: 2;
  right: 1%;
  bottom: 274px;
  width: 55px;
  height: 55px;
  background: #021526;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity ease .2s, visibility ease .2s;
}

.go_prd:active {
  transform: scale(.95);
}

.go_prd img {
  width: 30px;
  margin-right: 5%;
}

.go_prd span {
  position: absolute;
  font-size: 14px;
  right: calc(100% - 15px);
  white-space: nowrap;
  color: #021526;
  opacity: 0;
  visibility: hidden;
  transition: all ease .2s;
  pointer-events: none;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 255, 255, 1);
}

.visual-area {
  max-width: 1440px;
  margin: 60px auto;
  border-radius: 15px;
  overflow: hidden;
}

.visual-area,
.visual-area img {
  width: 100%;
  display: block;
}

.section {
  position: relative;
}

.coupon_wrap button img {
  display: block;   
}

/* ** °øÅë - Å¸ÀÌÆ²¹Ú½º ** */
.title_box {
  text-align: center;
  margin: 100px auto;
  word-break: keep-all;
}

.title_box img.escare {
  border-radius: 38px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, .4);
  margin-bottom: 60px;
}

.title_box h3 {
  font-size: 56px;
  font-weight: 600;
  text-align: center;
}

.title_box p {
  font-size: 30px;
  margin-top: 40px;
  color: #3B3838;
  line-height: 1.6;
}

.title_box .box {
  margin: 60px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  width: calc(100% - 40px);
}

.title_box .box dl {
  width: calc(100% / 3 - 60px);
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  background: #ECF1F9;
}

.title_box .box.four dl {
  width: calc(100% / 4 - 60px);
}

.title_box .box dt {
  font-size: 28px;
  font-weight: 500;
  padding-bottom: 20px;
}

.title_box .box dd {
  font-size: 18px;
}


/* ** °øÅë - ¹è°æ ÇÃ·ÎÆÃ ¿ÀºêÁ§Æ® ** */
@keyframes floatingObj {
  0% {
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -o-transform: translate(0, -30px);
    -ms-transform: translate(0, -30px);
    -moz-transform: translate(0, -30px);
    -webkit-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }

  100% {
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes swingObj {
  0% {
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -o-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  100% {
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

.sec02::after,
.sec03::after,
.sec04::after {
  content: '';
  display: none;
  position: absolute;
  z-index: -1;
  width: 24vw;
  height: 24vw;
  max-width: 600px;
  max-height: 600px;
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
  -moz-animation-duration: 4s;
  -o-animation-duration: 4s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;

  /* µ¿ÀûÀ¸·Î º¯°æµÉ ºÎºÐ */
  background: var(--bg-url, none) no-repeat center center;
  background-size: var(--bg-size, cover);
}

.sec02::after {
  left: -4%;
  top: 0%;
  -webkit-animation-name: floatingObj;
  -moz-animation-name: floatingObj;
  -o-animation-name: floatingObj;
  animation-name: floatingObj;
}

.sec03::after {
  right: -4%;
  top: -8%;
  -webkit-animation-name: swingObj;
  -moz-animation-name: swingObj;
  -o-animation-name: swingObj;
  animation-name: swingObj;
}

.sec04::after {
  left: -4%;
  top: -10%;
  -webkit-animation-name: floatingObj;
  -moz-animation-name: floatingObj;
  -o-animation-name: floatingObj;
  animation-name: floatingObj;
}


/* ** °øÅë - ÆË¾÷ ** */
.popup_video {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup_video .video_wrap {
  position: relative;
  padding-bottom: 39.35%; 
  width: 70%;
  height: 0;
}

.popup_video .video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.popup_video .btn-close {
  text-indent: -999px;
  width: 30px;
  height: 30px;
  background: url(http://epsonkorea.img4.kr/modal_close_w_4x.png) center center no-repeat;
  background-size: contain;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all ease-in-out .2s;
}

.popup_video .popup-bg {
  opacity: 0;
  pointer-events: none;
  transition: opacity .1s;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 17, 17, .6)
}

.popup_video .popup-bg.show {
  opacity: 1;
  pointer-events: auto
}


/* *** SEC01 ¸ÞÀÎ¹è³Ê *** */
.sec01 {
  position: relative;
  text-align: center;
  border-radius: 0 0 15px 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: calc(100% - 160px);
  height: 550px;
  background: url('http://epsonkorea.img4.kr/special_price/printalk_1418X685.jpg') no-repeat top center/cover;
  font-family: "SUIT", "Outfit", -apple-system, sans-serif;
}

.sec01 .cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  position: absolute;
  bottom: 50px;
}

.sec01 .cont p,
.sec01 .cont .bt {
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: -1px;
}

.sec01 .cont .bt {
  position: relative;
  z-index: 9
}

.sec01 .cont .txt1,
.sec01 .cont .txt2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.sec01 .cont .txt1 span {
  font-weight: 700;
}

.sec01 .cont .txt3 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.sec01.active .cont p {
  animation: fadeUp .3s ease-in-out forwards;
}

.sec01.active .cont .txt1 {
  animation-delay: .3s;
}

.sec01.active .cont .txt2 {
  animation-delay: .4s;
}

.sec01.active .cont .txt3 {
  margin-top: 5px;
  animation-delay: 1s;
}

.sec01 .cont .bt {
  color: #0C4DA2;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  padding: 10px 20px;
  background: #fff;
  border-radius: 100px;
  border: 3px solid #fff;
}

.sec01.active .cont .bt {
  opacity: 1;
  transform: translateY(0px);
  box-sizing: border-box;
  transition: all .2s ease-out;
}

.sec01.active .cont .bt:focus {
  color: #fff;
  background: rgba(0,0,0,.4);
}


/* *** SEC02 ÇÁ¸°Åå ¼Ò°³ *** */
.sec02 {
  padding: 3.3333333333rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "SUIT", "Outfit", -apple-system, sans-serif;
}

.sec02 .txt-wrap {
  text-align: center;
  width: 100%;
}

.sec02 .txt-wrap .printalk_process,
.sec02 .txt-wrap .txt:last-of-type {
  padding-top: 3.3333333333rem;
}

.sec02 .txt-wrap .txt p:first-child {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  word-break: keep-all;
}

.sec02 .txt-wrap .txt p:first-child b {
  font-weight: 700;
}

.sec02 .txt-wrap .txt p span {
  display: block;
}

.sec02 .txt-wrap .txt p:last-child {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  word-break: keep-all;
  margin-top: 1.4rem;
}

.sec02 .txt-wrap .tit01 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}

.sec02 .txt-wrap .display-02 {
  font-size: 74px;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.sec02 .txt-wrap .printalk_process {
  max-width: 1440px;
  width: 100%;
}

.sec02 .deco {
  margin-bottom: 40px;
}

.sec02 .bubble-wrap {
  width: calc(100% - 280px);
  width: 1440px;
  max-width: 1440px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  flex-direction: row;
  margin: 100px 0 40px;
}

.sec02 .bubble-wrap .bubble {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: .5rem;
  padding: 3.8rem 3.3rem;
  max-width: 490px;
  border-radius: 10rem;
}

.sec02 .bubble-wrap .bubble:nth-child(odd) {
  color: #fff;
  background-color: #0C4DA2;
}

.sec02 .bubble-wrap .bubble:nth-child(even) {
  color: #0C4DA2;
  background-color: #FFCD00;
}

.sec02 .bubble-wrap .bubble:last-child .txt > p {
  margin-bottom: 0;
}

.sec02 .bubble-wrap .bubble .txt > p {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 800;
  word-break: keep-all;
}

.sec02 .bubble-wrap .bubble .txt > span {
  font-size: 16px;
  opacity: .7;
  word-break: keep-all;
}

.sec02 .bubble:nth-of-type(1) .icon {
  width: 6rem;
  margin-right: 1rem;
}

.sec02 .bubble:nth-of-type(2) .icon {
  width: 9rem
}

.sec02 .bubble:nth-of-type(3) .icon {
  width: 6rem;
  margin-right: 1rem;
}

.sec02 .bubble-wrap .bubble .icon img {
  width: 100%;
}

.sec02 .caution {
  padding: 0 var(--space);
  max-width: 1440px;
  width: calc(100% - 200px);
  color: #666;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 1.6;
  text-align: right;
  word-break: keep-all;
}


/* *** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® *** */
.prdWrap {
  margin-bottom: 63px;
  max-width: 1440px;
  margin: auto;
}

.prdWrap .title_box {
  position: relative;
  margin: 40px 80px 0;
}

.prdWrap .title_box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  transition: all ease .2s;
  opacity: 0;
  visibility: hidden;
}

.prdWrap .title_box > *.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.prdWrap .title_box picture img {
  width: 100%;
}

.prdWrap .promo_grid {
  overflow: hidden;
  margin-top: 60px;
  padding: 0 80px;
}

.prdWrap .promo_grid .gutter-sizer {
  width: 24px;
}

.prdWrap .promo_grid .promo_item {
  position: relative;
  width: calc(25% - 58px);
  border: 1px solid #eee;
  border-radius: 15px;
  box-sizing: border-box;
  margin-bottom: 24px;
  transition: opacity ease .2s;
  transition-delay: 200ms;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  
}

.prdWrap .promo_grid .promo_item.hidden {
  height: 0 !important;
  width: 0;
  opacity: 0;
  visibility: hidden;
}

.prdWrap .promo_grid .promo_item .object {
  flex-grow: 1;
}

.prdWrap .promo_grid .promo_item .object a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prdWrap .promo_grid .promo_item .object a .thumb {
  flex-grow: 1;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.prdWrap .promo_grid .promo_item .object a .thumb img {
  width: 100%;
}

.promo_item .prdCount {
  position: absolute;
  right: 40px;
  top: 15px;
  border: 1px solid var(--1);
  color: var(--1);
  padding: 0 5px;
  border-radius: 5px;
  height: 21px;
  line-height: 1.5;
  font-size: 14px;
  box-sizing: border-box;
}

.promo_item .prdCount.soldout {
  border: 1px solid var(--3);
  background: var(--3);
  color: #fff;
}

.promo_item .prdCount span {
  font-weight: 700;
  display: inline-block;
}

.promo_item .prd-wish {
  position: absolute;
  right: 0;
  top: 0;
}

.promo_item .prd-wish a {
  display: block;
  padding: 15px 10px;
}

.promo_item .prd-wish a .my-wish-list i {
  background: url(/design/epsonkorea/images/wish_off_big.png) no-repeat;
  font-size: 0;
  width: 22px;
  height: 19px;
  background-size: contain;
  display: block;
}

.promo_item .prd-wish a .my-wish-list i.fa-heart-o {
  display: none;
  background: url(/design/epsonkorea/images/wish_on_big.png) no-repeat;
  background-size: contain;
}
  
.promo_item .prd-wish a .my-wish-list.wish-on .fa-heart {
  display: none;
}
  
.promo_item .prd-wish a .my-wish-list.wish-on i.fa-heart-o {
  display: block;
}

.promo_item .prd-ico {
  padding: 0;
  margin: 0 10px 10px;
}

.promo_item .object a .prd-name {
  display: -webkit-box;
  box-sizing: border-box;
  padding: 0 10px;
  font-weight: 600;
  font-size: 20px;
  word-break: keep-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo_item .object a .prd-subname {
  padding: 0 10px;
}

.promo_item .object a .price {
  font-weight: 600;
  font-size: 26px;
  color: var(--1);
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 15px 10px 0;
  text-align: right;
}
    
.promo_item .object a .price .won {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  top: 3px;
}
    
.promo_item .object a .price .consumer {
  font-weight: 400;
  font-size: 16px;
  color: var(--3);
  display: flex;
  align-items: center;
}

.promo_item .object a .price .normal.hidden {
  opacity: 0;
  visibility: hidden;
}

.promo_item .object a .price .normal {
  display: flex;
  align-items: center;
  color: var(--1);
}

.promo_item .object a .price .price_name {
  margin-right: auto;
  text-decoration: unset;
  font-size: 14px;
  font-weight: 500;
  color: var(--3);
  height: fit-content;
  line-height: 1;
}

.promo_item .object a .price .normal .price_name {
  border: 1px solid var(--1);
  color: var(--1);
  padding: 0 5px;
  border-radius: 5px;
  height: 21px;
  line-height: 1.5;
  box-sizing: border-box;
}

.promo_item .object a .price .consumer .price_total {
  text-decoration: line-through;
}

.promo_item .object a .price .consumer .price_total.removeLt {
  text-decoration: none;
  font-size: 26px;
  font-weight: 600;
  color: #000;
}
    
.promo_item .object a .price .dc_per {
  color: var(--2);
  margin-right: 8px;
}

.promo_item .compare {
  padding: 5px 10px 15px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.promo_item .compare a .review {
  font-size: 14px;
}

.promo_item .compare .calculator {
  font-size: 14px;
  display: flex;
  gap: 0 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.promo_item .compare .calculator p b {
  color: var(--1);
  font-weight: 600;
}

.promo_item .compare .calculator p:first-child b {
  color: var(--2);
  font-weight: normal;
}


/* ** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® ÅÇ¸Þ´º ** */
.prdWrap .category {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  width: calc(100% - 280px);
  top: 0;
  z-index: 1;
  background: #fff;
  padding: 0 140px;
  transition: all ease .2s;
  border-bottom: 1px solid #ccc;
}

.prdWrap .category.fixed {
  position: fixed;
  top: 0;
}

.prdWrap .category.bottom-fixed {
  position: absolute;
  bottom: 0;
  top: auto; /* optional */
}


.prdWrap .category .button {
  padding: 25px 0;
  color: #757575;
  font-size: 22px;
  line-height: 1;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  transition: all ease .2s;
  font-weight: 600;
  position: relative;
}

.prdWrap .category .button::after {
  content: '';
  width: 0;
  position: absolute;
  bottom: -1px;
  transform: translateX(-50%);
  left: 50%;
  height: 3px;
  background: var(--1);
  transition: all ease .2s;
}

.prdWrap .category .button.is-checked {
  color: #00339b;
  font-weight: bold;
  pointer-events: none;
}

.prdWrap .category .button.is-checked::after {
  width: 100%;
}


/* ** SEC04 ´õº¸±â ¹öÆ° ** */
.prdWrap #load-more {
  width: 200px;
  display: block;
  margin: auto;
  font-size: 20px;
  line-height: 1;
  border-radius: 15px;
  transition: all ease .2s;
  background: #eee;
  padding: 24px 0;
  border: none;
}

.prdWrap .category .button:active,
.prdWrap #load-more:active {
  transform: scale(.95);
}



/* ************************************************************************************************
 *                                                                                                *
 *     *        *       ******       *           *     *********     ******            *          *
 *     *        *     **      **      *         *      *             *     *           *          *
 *     *        *    *          *      *       *       *             *     *           *          *
 *     **********    *          *       *     *        *********     * ****        *   *   *      *
 *     *        *    *          *        *   *         *             * **           *  *  *       *
 *     *        *     **      **          * *          *             *   **          *****        *
 *     *        *       ******             *           *********     *     **          *          *     
 *                                                                                                *
 ************************************************************************************************ */ 

@media (hover: hover) and (pointer: fine) { /* when supported */
  .go_prd:hover span {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 5px);
  }


  /* ** °øÅë - ÆË¾÷ ** */
  .popup_video .btn-close:hover {
    transform: rotate(90deg);
  }


  /* ** SEC01 ¸ÞÀÎ¹è³Ê ** */
  .sec01.active .cont .bt:hover {
    color: #fff;
    background: rgba(0,0,0,.4);
  }

  /* *** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® *** */
  .prdWrap .promo_grid .promo_item:hover {
    border: 1px solid #aaa;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
    transition: box-shadow ease .2s;
  }


  /* ** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® ÅÇ¸Þ´º ** */
  .prdWrap .category .button:not(.is-checked):hover {
    color: #000;
  }


  /* ** SEC04 ´õº¸±â ¹öÆ° ** */
  .prdWrap #load-more:hover {
    background: #00339b;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    color: #fff;
  }
  
}



/* **********************************************************
 *                                                          *
 *     ******      *********    ********        *           *
 *     *     *     *            *               *           *
 *     *     *     *            *               *           *
 *     * ****      *********    ********    *   *   *       *
 *     * **        *                   *     *  *  *        *
 *     *   **      *                   *      *****         *
 *     *     **    *********    ********        *           *
 *                                                          *
 ********************************************************** */

@media only screen and (max-width: 1140px) {
  .sec02 .bubble-wrap .bubble .txt > p {
    font-size: 24px;
  }

  .sec02 .bubble-wrap .bubble .txt > span {
    font-size: 14px;
  }

  .sec02 .bubble:nth-of-type(1) .icon {
    width: 5rem;
    margin-right: 0;
  }

  .sec02 .bubble:nth-of-type(2) .icon {
    width: 7rem
  }

  .sec02 .bubble:nth-of-type(3) .icon {
    width: 5rem;
    margin-right: 0;
  }
}

@media only screen and (max-width: 1024px) {
  /* *** °øÅë *** */
  .visual-area {
    margin: 9.8vw auto 4.9vw;
  }


  /* ** °øÅë - ¹è°æ ÇÃ·ÎÆÃ ¿ÀºêÁ§Æ® ** */
  .sec04::after {
    top: unset;
    left: -8%;
    bottom: -7%;
  }


  /* *** SEC01 ¸ÞÀÎ¹è³Ê *** */
  .sec01 {
    width: calc(100% - 120px);
    height: calc(95vh - 118px);
  }


  /* *** SEC02 ÇÁ¸°Åå ¼Ò°³ *** */
  .sec02 .bubble-wrap {
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }

  .sec02 .bubble-wrap .bubble {
    width: 350px;
  }

  .sec02 .caution {
    text-align: center;
  }

  .sec02 .txt-wrap .tit01 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .sec02 .txt-wrap .display-02 {
    font-size: 52px;
    font-weight: 800;
  }


  /* *** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® *** */
  .prdWrap .title_box {
    display: none;
    margin: 40px 40px 0;
  }

  .prdWrap .promo_grid {
    padding: 0 40px;
  }

  .prdWrap .promo_grid .gutter-sizer {
    width: 20px;
  }

  .prdWrap .promo_grid .promo_item {
    width: calc((100% - 120px) / 3);
    margin-bottom: 20px;
  }

  .promo_item .object a .prd-name {
    font-size: 2vw;

  }

  .promo_item .object a .price {
    font-size: 22px;
    letter-spacing: -1px;
  }

  .promo_item .object a .price .consumer .price_total.removeLt,
  .promo_item .object a .price .normal {
    font-size: 2.5vw;
  }


  /* ** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® ÅÇ¸Þ´º ** */
  .prdWrap .category {
    gap: 6px;
    padding: 0 80px;
    width:calc(100% - 160px);
  }

  .prdWrap .category .button {
    font-size: 20px;
    padding: 20px 0;
  }


  /* ** SEC04 ´õº¸±â ¹öÆ° ** */
  .prdWrap #load-more {
    font-size: 18px;
    padding: 22px 0;
  }


  /* ** °øÅë - Å¸ÀÌÆ²¹Ú½º ** */
  .title_box img.escare {
    margin-bottom: 6vw;
    width: 35vw;
    max-width: fit-content;
  }

  .title_box h3 {
    font-size: 46px;
  }

  .title_box p {
    font-size: 26px;
    margin-top: 3vw;
  }

  .title_box .box {
    margin: 5vw auto 0;
  }

  .title_box .box dl {
    width: calc(100% / 3 - 42px);
    padding: 28px 16px;
  }

  .title_box .box.four dl {
    width: calc(100% / 4 - 42px);
  }

  .title_box .box dt {
    padding-bottom: 20px;
  }

  .title_box .box dt img {
    width: 100%;
  }

  .go_prd {
    width: 45px;
    height: 45px;
    bottom: 305px
  }

  .go_prd img {
    width: 25px;
  }

  .go_prd span {
    right: unset;
    bottom: -15px;
    opacity: 1;
    visibility: visible;
    font-size: 11px;
  }

  .go_prd:hover span {
    right: unset;
  }


  /* *** SEC01 ¸ÞÀÎ¹è³Ê *** */
  .sec01 .cont .txt1, 
  .sec01 .cont .txt2 {
    font-size: 18px;
  }

  .sec01 .cont .txt3, 
  .sec01 .cont .txt4, 
  .sec01 .cont .txt5, 
  .sec01 .cont .txt6 {
    font-size: 28px;
  }

  .sec01.active .cont .txt3 {
    margin: 4px auto 12px;
  }

  
  /* *** SEC02 ÇÁ¸°Åå ¼Ò°³ *** */
  .sec02 .txt-wrap .txt p:first-child {
    font-size: 18px;
  }

  .sec02 .txt-wrap .txt p:last-child {
    font-size: 14px;
  }
}


/* ****************************************************************************************************
 *                                                                                                    *
 *     ***********       **          *******      *          *********    ***********       *         *
 *          *           *  *         *     **     *          *                 *            *         *
 *          *          *    *        *     *      *          *                 *            *         *
 *          *         ********       *  ****      *          *********         *        *   *   *     *
 *          *        *        *      *     *      *          *                 *         *  *  *      *
 *          *       *          *     *     **     *          *                 *          *****       *
 *          *      *            *    *******      ********   *********         *            *         *
 *                                                                                                    *
 **************************************************************************************************** */ 

@media all and (max-width: 767px) {
  /* *** °øÅë *** */

  /* ** °øÅë - Å¸ÀÌÆ²¹Ú½º ** */
  .title_box {
    margin-top: 10vw;
  }

  .title_box .title_box {
    margin-top: 20vw;
  }

  .title_box img.escare {
    margin-bottom: 6vw;
    width: 45vw;
  }

  .title_box h3 {
    font-size: 7vw;
  }

  .title_box p {
    margin-top: 3.5vw;
    font-size: 4vw;
  }

  .title_box .box {
    flex-direction: column;
  }

  .title_box .box dl {
    width: calc(100% - 28px);
    padding: 38px 14px;
  }

  .title_box .box.four {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .title_box .box.four dl {
    width: calc(100% / 2 - 38px);
    margin-bottom: 19px;
  }

  .title_box .box dt {
    font-size: 4.5vw;
  }

  .title_box .box dt img {
    width: 100%;
  }

  .title_box .box dd {
    font-size: 3.5vw;
  }


  /* ** °øÅë - ¹è°æ ÇÃ·ÎÆÃ ¿ÀºêÁ§Æ® ** */
  .sec02::after {
    top: 10vw;
  }

  .sec03::after {
    top: -75%;
  }

  .sec04::after {
    bottom: -8%;
  }


  /* ** °øÅë - ÆË¾÷ ** */
  .popup_video .video_wrap {
    width: 90%;
    padding-bottom: 50.7%; 
  }


  /* *** SEC01 ¸ÞÀÎ¹è³Ê *** */
  .sec01 {
    width: calc(100% - 28px);
    margin-top: 48px;
  }

  
  /* *** SEC02 ÇÁ¸°Åå ¼Ò°³ *** */
  .sec02 .bubble-wrap {
    width: fit-content;
  }

  .sec02 .bubble-wrap .bubble .txt > span {
    font-size: 14px;
  }

  .sec02 .caution {
    font-size: 14px;
    width: calc(100% - 28px);
  }


  /* *** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® *** */
  .prdWrap {
    margin-bottom: 20vw;
  }

  .prdWrap .title_box {
    margin: 40px 14px 0;
  }
  
  .prdWrap .promo_grid {
    padding: 0 14px;
  }

  .prdWrap .promo_grid .gutter-sizer {
    width: 16px;
  }

  .prdWrap .promo_grid .promo_item {
    width: calc(50% - 22px);
    margin-bottom: 16px;
  }

  .prdWrap .promo_grid .promo_item .object a .thumb {
    padding-top: 25px;
  }
  
  .prdWrap .promo_grid .promo_item:active {
    border: 1px solid #aaa;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
    transition: box-shadow ease .2s;
  }

  .promo_item .object a .prd-name {
    font-size: 3.5vw;
  }

  .promo_item .object a .price .consumer .price_total.removeLt,
  .promo_item .object a .price .normal {
    font-size: 4vw;
  }

  .promo_item .object a .price .normal .price_name {
    padding: 0 3px;;
  }


  /* ** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® ÅÇ¸Þ´º ** */
  .prdWrap .category {
    gap: 4px;
    top: 48px;
    padding: 0 14px;
    width: calc(100% - 28px);
    margin-bottom: 6vw;
  }

  .prdWrap .category.fn_fixed {
    top: 0;
  }

  .prdWrap .category .button {
    font-size: 16px;
    padding: 20px 0;
    border-radius: 10px;
  }

  .prdWrap .category .button:active {
    background: #757575;
  }

  .prdWrap .category .button:active,
  .prdWrap #load-more:active {
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  }


  /* ** SEC04 ´õº¸±â ¹öÆ° ** */
  .prdWrap #load-more {
    font-size: 14px;
    padding: 18px 0;
  }

  .prdWrap #load-more:active {
    background: #00339b;
    color: #fff;
  }
}


/* *****************************************************************************************************
 *                                                                                                     *
 *     ***        ***       ******       *******      ***     *           *********         *          *
 *     *  *      *  *     **      **     *     **      *      *           *                 *          *
 *     *   *    *   *    *          *    *      *      *      *           *                 *          *
 *     *    *  *    *    *          *    *  ****       *      *           *********     *   *   *      *
 *     *     **     *    *          *    *      *      *      *           *              *  *  *       *
 *     *            *     **      **     *     **      *      *           *               *****        *
 *     *            *       ******       *******      ***     *********   *********         *          *     
 *                                                                                                     *
 ***************************************************************************************************** */ 

@media all and (max-width: 480px) {
  /* ** °øÅë - Å¸ÀÌÆ²¹Ú½º ** */
  .title_box {
      margin-top: 60px;
  }

  .title_box .box dt {
    font-size: 5vw;
  }

  .title_box .box dd {
    font-size: 3.5vw;
  }


  /* ** °øÅë - ¹è°æ ÇÃ·ÎÆÃ ¿ÀºêÁ§Æ® ** */
  .sec02::after,
  .sec03::after,
  .sec04::after {
    display: none;
  }

  .sec02::after {
    width: 38vw;
    height: 38vw;
    left: -25%;
    top: 10vw;
  }

  .sec03::after {
    width: 38vw;
    height: 38vw;
    right: -20%;
    top: -80%;
  }

  .sec04::after {
    width: 38vw;
    height: 38vw;
    left: -10%;
    bottom: -4%;
  }


  /* *** SEC01 ¸ÞÀÎ¹è³Ê *** */
  .sec01.active .cont .txt3 {
    margin: 3px auto 15px;
  }

  .sec01 .cont .bt {
    font-size: 16px;
  }


  /* *** SEC02 ÇÁ¸°Åå ¼Ò°³ *** */
  .sec02 {
    padding: 4.5rem 0;
  }

  .sec02 .bubble-wrap {
    width: calc(100% - 28px);
    align-items: center;
    margin: 40px 0;
    gap: 15px;
  }

  .sec02 .bubble-wrap .bubble {
    padding: 2.8rem 2.3rem;
    border-radius: 6rem;
    justify-content: center;
    gap: 1rem;
    width: calc(100% - 4.6rem);
  }

  .sec02 .bubble-wrap .bubble .icon {
    width: 50px;
  }

  .sec02 .bubble-wrap .bubble:nth-of-type(2) .icon {
    width: 70px;
  }

  .sec02 .bubble-wrap .bubble .txt > p {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .sec02 .bubble-wrap .bubble .txt > span {
    font-size: 12px;
  }


  /* *** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® *** */
  .prdWrap .title_box p {
    padding-top: 5vw;
  }

  .prdWrap .promo_grid {
    margin-top: 30px;
  }

  .prdWrap .promo_grid .gutter-sizer {
    width: 8px;
  }

  .prdWrap .promo_grid .promo_item {
    width: calc(50% - 20px);
    margin-bottom: 8px;
  }

  .promo_item .prd-wish a {
    padding: 12px 10px;
  }
  
  .promo_item .prd-wish a .my-wish-list i {
    width: 16px;
    height: 14px;
  }

  .promo_item .prdCount {
    font-size: 3vw;
    height: auto;
    line-height: 1;
    padding: 2px 5px;
    right: 32px;
    top: 10px;
  }

  .promo_item .object a .prd-ico {
    margin: 0 10px 1.5vw;
    min-height: 4vw;
  }

  .promo_item .object a .prd-ico,
  .promo_item .object a .prd-ico .MK-product-icons > * {
    height: 4vw;
  }
  
  .promo_item .object a .price {
    margin: 10px 10px 0;
    gap: 3px;
  }

  .promo_item .object a .price .normal .price_name {
    height: auto;
    line-height: 1;
    padding: 2px 4px;
  }

  .promo_item .object a .price .price_name,
  .promo_item .object a .price .consumer {
    font-size: 3vw;
  }

  .promo_item .object a .price .consumer .price_total.removeLt,
  .promo_item .object a .price .normal {
    font-size: 4vw;
    flex-wrap: wrap;
  }

  .promo_item .object a .price .won {
    font-size: 2.5vw;
    top: 1px;
  }

  .promo_item .compare {
    padding: 1vw 10px 3vw;
  }

  .promo_item .compare a {
    display: flex;
    align-items: flex-end;
  }

  .promo_item .compare a .review {
    font-size: 3vw;
  }

  .promo_item .compare .calculator {
    font-size: 3vw;
    width: 60%;
  }


  /* ** SEC04 Æ¯°¡»óÇ° ¸®½ºÆ® ÅÇ¸Þ´º ** */
  .prdWrap .category {
    padding: 0;
    gap: 2px;
    width: 100%
  }

  .prdWrap .category .button {
    font-size: 14px;
    padding: 18px 0;
    border-radius: 4px;
  }


  /* ** SEC04 ´õº¸±â ¹öÆ° ** */
  .prdWrap #load-more {
    width: calc(100% - 28px);
    font-size: 14px;
    padding: 18px 0;
    margin: 0 14px;
  }
}

/* BASIC css end */

