/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  box-sizing: border-box; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

html {
  font-size: 16px; }

body {
  font-family: "Pretendard Variable", sans-serif;
  color: #302D2C;
  font-size: 16px; }

p {
  line-height: 1.5em; }

ol, ul, dl {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input, select {
  vertical-align: middle; }

address {
  font-style: normal; }

a {
  color: #302D2C;
  text-decoration: none;
  display: block; }

a:link {
  color: #302D2C;
  text-decoration: none;
  display: block; }

a:visited {
  color: #302D2C; }

img {
  border: 0;
  vertical-align: top; }

.hidden {
  display: block;
  position: absolute;
  left: -1000%;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: #fff; }

:root {
  --text-color:#302D2C;
  --sub-color-1:#989898;
  --sub-color-2:#E5E5E5;
  --main-color: #ED6B00;
  --boxshadow:0px 0px 10px 1px rgba(0,0,0,.2);
  --col-pink:#F17C7C;
  --col-yellow:#E3B13A;
  --col-green:#66B134;
  --col-blue:#4590D2;
  --col-navy:#5C55BE;
  --col-purple:#9F55BE;
  --col-mint:#3BABA3;
  --col-brown:#A87344;
  --col-gray:#656565;
  --col-coral:#FFCB91;
  --col-light-yellow:#FFE58E;
  --col-lime:#E1F177;
  --col-light-green:#BFF5C2;
  --col-skyblue:#CAE5FC;
  --col-light-blue:#B7C9F9;
  --col-light-purple:#DECEFE;
  --col-beige:#E6DFC7;
  --col-light-pink:#FFC4C4;
  --col-light-brown:#E5C9A5; }

#mainPopup {
  z-index: 100;
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
  width: 600px; }
  #mainPopup .swiper-slide {
    height: 630px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center; }
    #mainPopup .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: scale-down;
      object-position: center; }
  #mainPopup .popupBtn {
    display: flex;
    margin-top: 10px;
    gap: 8px; }
    #mainPopup .popupBtn a {
      width: 50%;
      padding: 20px 10px;
      font-weight: 500;
      font-size: 16px;
      color: #fff;
      background: #302D2C;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 8px;
      text-align: center; }
    #mainPopup .popupBtn #dayClose {
      background: #707070; }
  #mainPopup .swiperBtn {
    width: 10px;
    height: 10px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 8px;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer; }
  #mainPopup .swiper-button-prevpop {
    left: 20px;
    transform: translateY(-50%) rotate(45deg); }
  #mainPopup .swiper-button-nextpop {
    right: 20px;
    transform: translateY(-50%) rotate(-135deg); }
  #mainPopup .pagination1 .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.7); }
  #mainPopup .pagination1 .swiper-pagination-bullet-active {
    background: #fff; }

.popup {
  background: rgba(48, 45, 44, 0.6);
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 100; }
  .popup .popBox {
    width: 480px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 30px 40px 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    .popup .popBox .popTop {
      padding-bottom: 22px;
      border-bottom: 1px solid rgba(48, 45, 44, 0.3);
      font-size: 1.56rem;
      font-weight: 600;
      position: relative; }
      .popup .popBox .popTop .popClose {
        position: absolute;
        right: 0;
        top: 40%;
        transform: translateY(-50%); }
    .popup .popBox ul {
      display: flex;
      justify-content: space-around;
      margin-top: 40px; }
      .popup .popBox ul p {
        font-weight: 500;
        margin-top: 15px; }

/* skipNav */
#skipNav {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 110; }

#skipNav a {
  height: 1px;
  margin-bottom: -1px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700; }

#skipNav a:hover, #skipNav a:focus, #skipNav a:active {
  height: auto;
  padding: 15px 0;
  background: #3B1D0C; }

#wrap {
  width: 100%; }

#content section {
  padding: 115px 160px; }

/* header */
#headerArea {
  width: 100%;
  transition: .3s ease-out;
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  background: none; }
  #headerArea::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    position: absolute;
    left: 0;
    top: 79px;
    transition: 0.3s ease-out; }
  #headerArea .headerContainer {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #headerArea .headerContainer .headerLogo a {
      width: 130px;
      height: 80px;
      background: url(/logo-w.png) no-repeat center/contain;
      text-indent: -999px;
      overflow: hidden; }
    #headerArea .headerContainer .headerLogo .ch {
      background: url(/logo.png) no-repeat center/contain; }
    #headerArea .headerContainer #gnb {
      width: 100%;
      text-align: center; }
      #headerArea .headerContainer #gnb .dropdownMenu {
        display: flex;
        justify-content: center;
        gap: 57px;
        position: relative; }
        #headerArea .headerContainer #gnb .dropdownMenu a {
          font-size: 1.13rem;
          font-weight: 500;
          transition: .3s ease-out;
          padding: 28px 0; }
        #headerArea .headerContainer #gnb .dropdownMenu .menu .depth1 {
          color: rgba(255, 255, 255, 0.45);
          transition: .3 ease-out;
          position: relative; }
          #headerArea .headerContainer #gnb .dropdownMenu .menu .depth1::before {
            content: "";
            display: block;
            width: 0%;
            height: 3px;
            background: #fff;
            transition: .3s ease-out;
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%); }
          #headerArea .headerContainer #gnb .dropdownMenu .menu .depth1:hover {
            color: #fff; }
            #headerArea .headerContainer #gnb .dropdownMenu .menu .depth1:hover::before {
              width: 100%; }
        #headerArea .headerContainer #gnb .dropdownMenu .menu .depth1.active {
          color: var(--text-color); }
          #headerArea .headerContainer #gnb .dropdownMenu .menu .depth1.active::before {
            width: 100%; }
        #headerArea .headerContainer #gnb .dropdownMenu .menu > ul {
          display: flex;
          justify-content: center;
          position: absolute;
          left: 50%;
          top: 80px;
          width: 150%;
          transform: translateX(-50%);
          padding: 30px 0; }
          #headerArea .headerContainer #gnb .dropdownMenu .menu > ul > li .depth2 {
            font-weight: 600;
            padding: 28px; }
          #headerArea .headerContainer #gnb .dropdownMenu .menu > ul > li a {
            padding: 28px;
            font-weight: 600; }
            #headerArea .headerContainer #gnb .dropdownMenu .menu > ul > li a:hover {
              color: var(--main-color); }
          #headerArea .headerContainer #gnb .dropdownMenu .menu > ul > li ul li a {
            opacity: .6;
            padding: 15px 28px; }
            #headerArea .headerContainer #gnb .dropdownMenu .menu > ul > li ul li a:hover {
              opacity: 1; }
      #headerArea .headerContainer #gnb .ch .menu .depth1 {
        color: #A2A0A0; }
        #headerArea .headerContainer #gnb .ch .menu .depth1::before {
          background: var(--text-color); }
        #headerArea .headerContainer #gnb .ch .menu .depth1:hover {
          color: var(--text-color); }
          #headerArea .headerContainer #gnb .ch .menu .depth1:hover::before {
            width: 100%; }
    #headerArea .headerContainer .headerRight ul {
      display: flex;
      gap: 30px;
      align-items: center; }
      #headerArea .headerContainer .headerRight ul li {
        width: 30px;
        height: 30px; }
        #headerArea .headerContainer .headerRight ul li a {
          width: 100%; }
          #headerArea .headerContainer .headerRight ul li a img {
            width: 100%;
            object-fit: cover;
            object-position: center; }
        #headerArea .headerContainer .headerRight ul li .subMenu {
          background: #fff;
          position: absolute;
          right: 0;
          bottom: -262px;
          border-bottom: 3px solid var(--main-color);
          box-sizing: border-box;
          width: max-content;
          display: none; }
          #headerArea .headerContainer .headerRight ul li .subMenu ul {
            flex-direction: column;
            padding: 15px;
            gap: 0; }
            #headerArea .headerContainer .headerRight ul li .subMenu ul li {
              text-align: center;
              width: 100%;
              height: auto; }
              #headerArea .headerContainer .headerRight ul li .subMenu ul li a {
                width: 100%;
                padding: 15px 30px;
                font-size: 1.13rem;
                font-weight: 600; }
                #headerArea .headerContainer .headerRight ul li .subMenu ul li a:hover {
                  color: var(--main-color); }
      #headerArea .headerContainer .headerRight ul .categoryMenu {
        position: relative; }
        #headerArea .headerContainer .headerRight ul .categoryMenu .categoryList {
          bottom: -211px; }
          #headerArea .headerContainer .headerRight ul .categoryMenu .categoryList ul {
            padding: 15px 0; }
      #headerArea .headerContainer .headerRight ul .langMenu {
        position: relative; }
        #headerArea .headerContainer .headerRight ul .langMenu .langList {
          bottom: -160px; }
      #headerArea .headerContainer .headerRight ul .hamMenu {
        width: 21px;
        height: 20px; }
        #headerArea .headerContainer .headerRight ul .hamMenu a {
          width: 100%;
          height: 100%;
          border-top: 2px solid #fff;
          border-bottom: 2px solid #fff;
          position: relative;
          text-indent: -9999px;
          overflow: hidden; }
          #headerArea .headerContainer .headerRight ul .hamMenu a::before {
            content: "";
            display: block;
            width: 100%;
            height: 2px;
            background: #fff;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%); }
    #headerArea .headerContainer .headerRight .ch img {
      filter: invert(100%); }
    #headerArea .headerContainer .headerRight .ch .hamMenu a {
      border-top: 2px solid var(--text-color);
      border-bottom: 2px solid var(--text-color);
      position: relative; }
      #headerArea .headerContainer .headerRight .ch .hamMenu a::before {
        background: var(--text-color); }

#headerArea.ch {
  background: #fff; }
  #headerArea.ch::before {
    background: rgba(0, 0, 0, 0.45); }

.searchBox {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  width: 100%;
  border-bottom: 1px solid rgba(48, 45, 44, 0.4);
  display: none; }
  .searchBox .menuTop {
    border-bottom: 1px solid rgba(48, 45, 44, 0.4);
    padding: 0 30px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .searchBox .menuTop img {
      width: 130px; }
    .searchBox .menuTop a {
      position: relative;
      width: 30px;
      height: 30px; }
      .searchBox .menuTop a::before {
        content: "";
        display: block;
        width: 30px;
        height: 2px;
        background: var(--text-color);
        transform: rotate(45deg);
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 50px; }
      .searchBox .menuTop a::after {
        content: "";
        display: block;
        width: 30px;
        height: 2px;
        background: var(--text-color);
        transform: rotate(-45deg);
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 50px; }
  .searchBox .menuBottom {
    padding: 70px 0;
    margin: 0 auto;
    width: 700px; }
    .searchBox .menuBottom h3 {
      font-size: 1.88rem;
      font-weight: 600; }
    .searchBox .menuBottom .serchBox form {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--text-color);
      margin: 20px 0 38px; }
      .searchBox .menuBottom .serchBox form input {
        padding: 18px 0;
        font-size: 1.13rem;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.45); }
        .searchBox .menuBottom .serchBox form input::placeholder {
          font-size: 1.13rem;
          font-weight: 500;
          color: rgba(0, 0, 0, 0.45); }
      .searchBox .menuBottom .serchBox form button {
        width: 30px;
        height: 30px;
        background: url(/ucommon/common/images/icon-search-b.svg) no-repeat center/cover;
        text-indent: -9999px;
        overflow: hidden;
        cursor: pointer; }
    .searchBox .menuBottom .recommend p {
      font-size: 1.13rem;
      font-weight: 600;
      margin-bottom: 20px; }
    .searchBox .menuBottom .recommend .recommendList {
      display: flex;
      gap: 12px;
      flex-wrap: wrap; }
      .searchBox .menuBottom .recommend .recommendList a {
        background: none;
        padding: 13px 18px;
        border: 1px solid #C9C9C9;
        color: #707070;
        transition: .3s ease-out;
        border-radius: 50px;
        font-weight: 500;
        font-size: 1rem; }
        .searchBox .menuBottom .recommend .recommendList a:hover {
          color: var(--main-color);
          border: 1px solid var(--main-color); }

.hamMenuBox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  background: #fff;
  width: 100%;
  border-bottom: 1px solid rgba(48, 45, 44, 0.4);
  display: none; }
  .hamMenuBox .menuTop {
    border-bottom: 1px solid rgba(48, 45, 44, 0.4);
    padding: 0 30px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    z-index: 10; }
    .hamMenuBox .menuTop img {
      width: 130px; }
    .hamMenuBox .menuTop ul {
      display: flex;
      align-items: center; }
      .hamMenuBox .menuTop ul li a {
        width: 30px;
        height: 30px; }
        .hamMenuBox .menuTop ul li a img {
          width: 100%; }
      .hamMenuBox .menuTop ul li:nth-of-type(2) a {
        position: relative;
        width: 30px;
        height: 30px; }
        .hamMenuBox .menuTop ul li:nth-of-type(2) a::before {
          content: "";
          display: block;
          width: 30px;
          height: 2px;
          background: var(--text-color);
          transform: rotate(45deg);
          position: absolute;
          left: 50%;
          top: 50%;
          border-radius: 50px; }
        .hamMenuBox .menuTop ul li:nth-of-type(2) a::after {
          content: "";
          display: block;
          width: 30px;
          height: 2px;
          background: var(--text-color);
          transform: rotate(-45deg);
          position: absolute;
          left: 50%;
          top: 50%;
          border-radius: 50px; }
  .hamMenuBox .menuBottom {
    font-size: 1.13rem;
    font-weight: 600;
    overflow-y: scroll; }
    .hamMenuBox .menuBottom > ul {
      display: flex;
      justify-content: center; }
      .hamMenuBox .menuBottom > ul > li {
        border-left: 1px solid rgba(48, 45, 44, 0.4);
        width: 320px; }
        .hamMenuBox .menuBottom > ul > li a {
          color: rgba(48, 45, 44, 0.45);
          transition: .3s ease-out;
          padding: 15px 30px;
          width: 100%; }
        .hamMenuBox .menuBottom > ul > li .hamdepth1 {
          color: var(--text-color);
          padding: 36px 30px 15px;
          position: relative; }
          .hamMenuBox .menuBottom > ul > li .hamdepth1::before {
            content: "";
            display: block;
            width: 3px;
            height: 24px;
            background: var(--text-color);
            position: absolute;
            left: 0;
            top: 35px; }
        .hamMenuBox .menuBottom > ul > li ul li a:hover {
          color: var(--main-color); }
        .hamMenuBox .menuBottom > ul > li ul li:last-child {
          padding-bottom: 114px; }
      .hamMenuBox .menuBottom > ul > li:last-child {
        border-right: 1px solid rgba(48, 45, 44, 0.4); }

/* footer */
#footerArea {
  background: var(--text-color);
  color: #fff;
  clear: both; }
  #footerArea .moveTop {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    position: fixed;
    right: calc(8% + 8px);
    bottom: 10%;
    transition: .5s ease-out;
    z-index: 200;
    opacity: 0; }
    #footerArea .moveTop::before {
      content: "";
      display: block;
      width: 14px;
      height: 2px;
      border-radius: 50px;
      background: #fff;
      position: absolute;
      left: 46%;
      top: 50%;
      transform: rotate(45deg); }
    #footerArea .moveTop::after {
      content: "";
      display: block;
      width: 14px;
      height: 2px;
      border-radius: 50px;
      background: #fff;
      position: absolute;
      right: 46%;
      top: 50%;
      transform: rotate(-45deg); }
  #footerArea .footerTop {
    display: flex;
    align-items: center;
    gap: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 160px; }
    #footerArea .footerTop .logo {
      width: 130px; }
    #footerArea .footerTop .footerSns {
      display: flex; }
      #footerArea .footerTop .footerSns li {
        position: relative; }
        #footerArea .footerTop .footerSns li a {
          font-size: 1rem;
          font-weight: 500;
          padding: 20px 30px;
          color: #fff;
          transition: .3s ease-out; }
          #footerArea .footerTop .footerSns li a:hover {
            opacity: .7; }
        #footerArea .footerTop .footerSns li::before {
          content: "";
          display: block;
          width: 2px;
          height: 20px;
          background: #fff;
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%); }
      #footerArea .footerTop .footerSns li:last-child::before {
        display: none; }
  #footerArea .footerBottom {
    padding: 26px 0 73px 367px;
    color: var(--sub-color-1); }
    #footerArea .footerBottom .footerDropdown {
      font-size: 0.88rem;
      color: #989898;
      font-weight: 600;
      padding: 15px 20px;
      justify-content: space-between;
      align-items: center;
      display: none; }
      #footerArea .footerBottom .footerDropdown .ddIcon {
        display: inline-block;
        width: 14px;
        height: 14px;
        position: relative; }
        #footerArea .footerBottom .footerDropdown .ddIcon::before {
          content: "";
          display: block;
          width: 100%;
          height: 1px;
          background: #989898;
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%); }
    #footerArea .footerBottom .ddClose .ddIcon::after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: #989898;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) rotate(90deg); }
    #footerArea .footerBottom .footerMenu {
      display: flex;
      gap: 10%;
      margin-bottom: 20px; }
      #footerArea .footerBottom .footerMenu li dl .fdepth1 a {
        padding-bottom: 26px;
        font-weight: 600; }
      #footerArea .footerBottom .footerMenu li dl a {
        color: var(--sub-color-1);
        line-height: 1.5;
        padding-bottom: 16px;
        transition: .3s ease-out; }
        #footerArea .footerBottom .footerMenu li dl a:hover {
          color: #fff; }

@media screen and (max-width: 1350px) {
  #footerArea .footerTop {
    padding-left: 100px; }

  #footerArea .footerBottom {
    padding: 20px 0 50px 100px; } }
@media screen and (max-width: 1280px) {
  #headerArea .headerContainer #gnb .dropdownMenu .menu > ul > li .depth2,
  #headerArea .headerContainer #gnb .dropdownMenu .menu > ul > li ul li a {
    font-size: 1rem; }

  #wrap #content section {
    padding: 100px 30px; }

  .hamMenuBox .menuBottom {
    padding: 0 30px; }

  .hamMenuBox .menuBottom > ul > li {
    width: 25%;
    border-left: none; }

  .hamMenuBox .menuBottom > ul > li:last-child {
    border-right: none; } }
@media screen and (max-width: 1024px) {
  #wrap #content section {
    padding: 6rem 2rem; }

  #headerArea .headerContainer #gnb {
    display: none; }

  #headerArea .headerContainer .headerRight ul {
    gap: 20px; }

  .searchBox .menuBottom {
    padding: 70px 30px;
    width: auto; }

  .searchBox .menuBottom h3 {
    font-size: 1.5rem; }

  .searchBox .menuBottom .serchBox form {
    margin: 20px 0 50px; }

  .hamMenuBox {
    height: 100vh;
    overflow-y: scroll; }

  .hamMenuBox .menuBottom > ul {
    flex-direction: column; }

  .hamMenuBox .menuBottom > ul > li {
    width: 100%; }

  .hamMenuBox .menuBottom > ul > li ul li:last-child {
    padding-bottom: 0; }

  #footerArea .footerTop {
    padding-left: 50px;
    justify-content: space-between;
    gap: 0; }

  #footerArea .footerBottom {
    padding: 40px 50px 40px 50px; }

  #footerArea .footerBottom .footerMenu {
    gap: 14%; } }
@media screen and (max-width: 980px) {
  #footerArea .footerBottom .footerMenu {
    gap: 1%;
    flex-wrap: wrap; }

  #footerArea .footerBottom .footerMenu li {
    width: 49%;
    margin-bottom: 20px; } }
@media screen and (max-width: 768px) {
  #headerArea .headerContainer {
    height: 100%; }

  #headerArea .headerContainer .headerLogo a {
    background: url("../../common/images/logo-w.png") no-repeat center/contain; }

  #headerArea .headerContainer .headerLogo .ch {
    background: url("../../common/images/logo.png") no-repeat center/contain; }

  #headerArea .headerContainer .headerRight ul li,
  .hamMenuBox .menuTop ul li a {
    width: 25px;
    height: 25px; }

  .hamMenuBox .menuTop ul li:nth-of-type(2) a::before,
  .hamMenuBox .menuTop ul li:nth-of-type(2) a::after,
  .searchBox .menuTop a::before,
  .searchBox .menuTop a::after {
    width: 25px; }

  #headerArea .headerContainer .headerRight ul .hamMenu {
    width: 20px;
    height: 18px; }

  #headerArea .headerContainer .headerRight .ch .hamMenu a {
    margin-top: 1px; }

  #headerArea .headerContainer .headerRight ul li .subMenu {
    width: 135px;
    right: 50%;
    transform: translateX(50%); }

  #headerArea .headerContainer .headerRight ul li .subMenu ul li a {
    font-size: 1rem; }

  #headerArea .headerContainer .headerRight ul .categoryMenu .categoryList {
    bottom: -210px; }

  #headerArea .headerContainer .headerRight ul .langMenu .langList {
    bottom: -160px; }

  .searchBox .menuBottom {
    padding: 140px 30px 70px; }

  .searchBox .menuBottom .recommend .recommendList button {
    padding: 10px 20px; }

  .searchBox .menuTop, .hamMenuBox .menuTop {
    padding: 10px 30px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0; }

  .hamMenuBox .menuBottom {
    padding: 80px 30px; }

  .hamMenuBox .menuBottom > ul > li .hamdepth2 li a {
    font-size: 1rem; }

  #footerArea .footerTop .footerSns li a {
    font-size: 1rem;
    padding: 20px; }

  #footerArea .footerBottom .footerBottomWrap {
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 36px; }

  #footerArea .footerBottom .footerDropdown {
    display: flex; }

  #footerArea .footerBottom .footerMenu {
    padding: 16px 20px; }

  #footerArea .footerBottom .footerMenu li {
    margin-bottom: 20px;
    width: 100%; }

  #footerArea .footerBottom .footerMenu li:last-child {
    margin-bottom: 0; }

  #footerArea .footerBottom .footerMenu li dl a {
    padding-bottom: 20px; }

  #footerArea .footerBottom .footerMenu li dl .fdepth1 a {
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

  #footerArea .footerBottom .footerMenu li dl dd:last-child a {
    padding-bottom: 0; }

  #mainPopup {
    width: 85%; }

  #mainPopup .swiper-slide {
    height: auto; }

  #mainPopup .swiper-slide img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: scale-down;
    object-position: center; }

  #mainPopup .popupBtn a {
    font-size: 14px; } }
@media screen and (max-width: 640px) {
  #wrap #content section {
    padding: 4rem 2rem; }

  #headerArea .headerContainer .headerRight ul {
    gap: 15px; }

  #headerArea .headerContainer .headerRight ul li .subMenu ul li a {
    padding: 15px; }

  .searchBox .menuBottom h3 {
    font-size: 1.25rem; }

  .searchBox .menuBottom .serchBox form input,
  .searchBox .menuBottom .serchBox form input::placeholder,
  .searchBox .menuBottom .recommend p {
    font-size: 1rem; }

  #footerArea .footerTop {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    height: auto;
    padding: 25px 0 10px 30px; }

  #footerArea .footerTop .footerSns li a {
    padding: 10px; }

  #footerArea .footerTop .footerSns li::before {
    width: 1px;
    height: 16px; }

  #footerArea .footerTop .footerSns li:first-child a {
    padding-left: 0; }

  #footerArea .footerBottom {
    padding: 20px 30px 45px;
    font-size: 0.94rem; }

  #footerArea .footerBottom .footerMenu li {
    width: 100%; }

  .popup .popBox {
    width: 90%; }

  .popup .popBox .popTop {
    font-size: 18px; }

  .popup .popBox ul {
    margin-top: 30px; }

  .popup .popBox ul li img {
    width: 70%; }

  #mainPopup .swiper-slide {
    padding: 24px; }

  #mainPopup .swiper-button-prevpop {
    left: 9px; }

  #mainPopup .swiper-button-nextpop {
    right: 9px; }

  #mainPopup .swiper-pagination {
    bottom: 0; } }
@media screen and (max-width: 400px) {
  #headerArea .headerContainer .headerLogo a {
    width: 100px; }

  #headerArea .headerContainer .headerRight ul {
    gap: 5px; }

  #mainPopup .swiper-slide {
    padding: 20px; }

  #mainPopup .swiper-navigation {
    display: none; }

  #mainPopup .swiper-pagination {
    bottom: -5px; }

  #mainPopup .popupBtn a {
    padding: 12px 10px; } }

/*# sourceMappingURL=common.css.map */
