@charset "utf-8";

/* ==========================================================================
font-face
========================================================================== */
@import url("./common/normalize.css");
/*@import url("https://use.typekit.net/mqi4snr.css");*/
@import url("https://use.typekit.net/oai7sui.css");
@import url("./common/font.css");
@import url("./swiper.min.css");

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .mobile {
    display: block;
  }
}
@media (min-width: 767px) {
  .pc {
    display: block;
  }
  .mobile {
    display: none;
  }
  /*.operetta {*/
  /*  font-family: "operetta-12";*/
  /*}*/

  html.fix {
    overflow: hidden;
  }

  /* ==========================================================================
Base styles & Helper
========================================================================== */
  /* base */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  fieldset,
  ul,
  ol,
  dl,
  dt,
  dd,
  p,
  button,
  figure {
    margin: 0;
    padding: 0;
  }

  body {
    font: normal 14px/1.3 "Noto Sans KR", "Malgun Gothic", sans-serif;
    color: #000;
    margin: 0;
  }

  legend,
  caption {
    width: 0;
    height: 0;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  img {
    vertical-align: middle;
  }

  fieldset,
  button {
    background: none;
    border: 0px;
  }

  ul:after,
  ol:after {
    content: "";
    display: block;
    clear: both;
  }

  li {
    list-style: none;
  }

  table {
    width: 100%;
    border-spacing: 0px;
    border-collapse: collapse;
  }

  iframe {
    width: 100%;
    vertical-align: middle;
    border: 0 none;
  }

  hr {
    margin: 20px 0;
    border: 0 none;
    height: 1px;
    background: #c9c9c9;
  }

  em,
  i {
    font-style: normal;
  }

  button {
    cursor: pointer;
  }

  /* body.ie {overflow: auto; height: 100%;} */
  body.fixed {
    position: fixed;
    height: 100%;
    overflow: hidden;
  }

  button:active,
  button:focus {
    outline: 0;
  }

  input:active,
  input:focus {
    outline: 0;
  }

  textarea:active,
  textarea:focus {
    outline: 0;
  }

  select:active,
  select:focus {
    outline: 0;
  }

  form:active,
  form:focus {
    outline: 0;
  }

  option:active,
  option:focus {
    outline: 0;
  }

  /* ==========================================================================
form
========================================================================== */
  label {
    display: inline-block;
  }

  label input {
    vertical-align: middle;
  }

  textarea,
  input[type="text"],
  input[type="password"],
  input[type="file"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"] {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    padding: 0px 20px;
    border: 1px solid #ddd;
    background: #fff;
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    vertical-align: middle;
    box-sizing: border-box;
  }

  input[type="file"] {
    padding: 3px;
    line-height: 36px;
  }

  select:hover,
  textarea:hover,
  input[type="text"]:hover,
  input[type="password"]:hover,
  input[type="file"]:hover,
  input[type="date"]:hover,
  input[type="month"]:hover,
  input[type="time"]:hover,
  input[type="week"]:hover,
  input[type="number"]:hover,
  input[type="email"]:hover,
  input[type="url"]:hover,
  input[type="search"]:hover,
  input[type="tel"]:hover,
  input[type="color"]:hover {
    border-color: #000;
  }

  select:focus,
  textarea:focus,
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="file"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="time"]:focus,
  input[type="week"]:focus,
  input[type="number"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="color"]:focus {
    border-color: #000;
  }

  select:disabled,
  textarea:disabled,
  input[type="text"]:disabled,
  input[type="password"]:disabled,
  input[type="date"]:disabled,
  input[type="month"]:disabled,
  input[type="time"]:disabled,
  input[type="week"]:disabled,
  input[type="number"]:disabled,
  input[type="email"]:disabled,
  input[type="url"]:disabled,
  input[type="search"]:disabled,
  input[type="tel"]:disabled,
  input[type="color"]:disabled {
    background-color: #f3f3f3;
    color: #222;
    font-weight: bold;
  }

  select {
    display: inline-block;
    height: 40px;
    padding: 0px 20px 0 20px;
    border: 1px solid #ddd;
    vertical-align: middle;
    box-sizing: border-box;
    background: #fff
      url("../images/common/bg_select.png")
      no-repeat right center;
    color: #999;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  select::-ms-expand {
    display: none;
  }

  textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    resize: none;
    line-height: 1.5;
    box-sizing: border-box;
  }

  ::-webkit-input-placeholder,
  ::-moz-placeholder,
  ::-ms-input-placeholde,
  .placeholder {
    color: #999;
    opacity: 1;
  }

  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type="number"] {
    -moz-appearance: textfield;
  }

  .checkbox,
  .radio {
    position: relative;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    color: #000;
    font-size: 14px;
    line-height: 24px;
  }

  .checkbox input,
  .radio input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    z-index: 1;
  }

  .checkbox input:checked,
  .radio input:checked {
    outline: none !important;
  }

  .checkbox input + .lbl,
  .radio input + .lbl {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 24px;
    min-height: 24px;
    padding: 0px 0 0px 30px;
    vertical-align: middle;
  }

  .checkbox input + .lbl:before,
  .radio input + .lbl:before {
    content: "";
    display: inline-block;
    height: 24px;
    width: 24px;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    background-image: url("../images/common/icon-24-check-off.svg");
    background-size: 100%;
  }

  .checkbox input:checked + .lbl:before {
    background-image: url("../images/common/icon-24-check-on.svg");
  }

  .radio input + .lbl:before {
    background: url("../images/common/radio-off.svg");
  }

  .radio input:checked + .lbl:before {
    background: url("../images/common/radio-on.svg");
  }

  .file {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
  }

  .file input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }

  .file .btn_file {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    width: 128px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.7px;
    color: #000;
    background: #fafafa;
    line-height: 60px;
  }

  .file:hover .btn_file {
    background: #000;
    color: #fff;
  }

  .file .button:hover {
    background: #000;
    color: #fff;
  }

  .file .empty {
    color: rgba(0, 0, 0, 0.3);
    font-size: 18px;
    line-height: 60px;
    letter-spacing: -0.7px;
    padding-left: 20px;
    display: inline-block;
  }

  .file .file_src {
    font-size: 18px;
    color: rgb(0, 0, 0);
    letter-spacing: -0.7px;
    display: inline-block;
    padding-left: 20px;
  }

  .file .file_delete {
    position: absolute;
    right: -34px;
    top: 50%;
    margin-top: -12px;
    font-size: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../images/common/icon-24-file-trash.svg");
    vertical-align: middle;
    cursor: pointer;
  }

  .file .file_delete:after {
    background: url("../images/common/icon-24-file-trash-hover.svg");
  }

  /* skip_Navi */

  .font-weight-500 {
    font-weight: 500 !important;
  }

  .font-weight-600 {
    font-weight: 600 !important;
  }

  .align-left {
    text-align: left !important;
  }

  .align-center {
    text-align: center !important;
  }

  /* ==========================================================================
common
========================================================================== */
  /* Chrome, Safari용 스크롤 바 */
  /*
::-webkit-scrollbar{width:5px;height:8px;border:2px solid #fff;}
::-webkit-scrollbar-track{background:#ccc;-webkit-border-radius:10px;border-radius:10px;}
::-webkit-scrollbar-thumb{height:5px;width:5px;background:#E20D3A;-webkit-border-radius:10px;border-radius:10px;}
*/
  /* ==========================================================================
component
========================================================================== */
  /* layout */
  .basic-container {
    padding-top: 96px;
  }

  .basic-container .inner {
    padding-top: 160px;
    padding-bottom: 200px;
  }

  /* title */
  .page-title {
    font-size: 56px;
    line-height: 84px;
    color: #000;
    font-weight: 700;
    letter-spacing: -0.05em;
  }

  .contents-title-group {
    display: flex;
    align-items: center;
  }

  .contents-title {
    font-size: 24px;
    line-height: 1.5;
    color: #000;
    font-weight: 700;
    letter-spacing: -0.05em;
  }

  .font-graphie {
    font-family: "graphie", sans-serif !important;
  }

  .btn-file-down {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #000;
  }

  .btn-file-down:before {
    content: "";
    display: block;
    width: 13px;
    height: 23px;
    margin-right: 6px;
    background: url("../images/common/icon-filedown-black.png")
      center center no-repeat;
  }

  .btn-file-down.right:before {
    display: none;
  }

  .btn-file-down.right:after {
    content: "";
    display: block;
    width: 13px;
    height: 23px;
    margin-left: 6px;
    background: url("../images/common/icon-filedown-black.png")
      center center no-repeat;
  }

  .btn-file-down.hover {
    padding: 0 30px;
    height: 61px;
    color: #fff;
    background: #000;
    transition: all 0.25s ease;
  }

  .btn-file-down.hover:before {
    display: none;
  }

  .btn-file-down.hover:after {
    display: none;
  }

  .btn-file-down.hover .arrow {
    display: block;
    width: 13px;
    height: 23px;
    position: relative;
    margin-left: 6px;
  }

  .btn-file-down.hover .arrow:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/common/icon-filedown-white.png")
      center center no-repeat;
    background-size: 22px auto;
    opacity: 1;
    transition: opacity 0.25s ease;
  }

  .btn-file-down.hover:hover {
    color: #fff;
    background: #E20D3A;
  }

  /*
.btn-request {display:inline-flex; align-items:center; font-size:18px; line-height:1.5; font-weight:700; color:#000;}
.btn-request:after{content:'';margin-left:5px;width:16px;height:16px; background:#000;border-radius: 50%;background-image: url('../images/common/north-east.svg');display: inline-block; background-size:16px auto;}
*/
  .btn-request {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #000;
  }

  .btn-request {
    position: relative;
    display: inline-flex;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    height: 61px;
    align-items: center;
    padding: 0 23px;
    background: #000;
    transition: all 0.25s ease;
    box-sizing: border-box;
  }

  .btn-request > .arrow {
    margin-left: 10px;
    position: relative;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
  }

  .btn-request > .arrow:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/common/north-east-black.png")
      center center no-repeat;
    background-size: 22px auto;
    opacity: 1;
    transition: opacity 0.25s ease;
  }

  .btn-request > .arrow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/common/north-east-pink.png")
      center center no-repeat;
    background-size: 22px auto;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .btn-request:hover {
    background: #E20D3A;
  }

  .btn-request:hover > .arrow:before {
    opacity: 0;
  }

  .btn-request:hover > .arrow:after {
    opacity: 1;
  }

  /* table */
  .table {
    width: 100% !important;
    border-bottom: 1px #e5e5e5 solid;
    border-top: 1px #000 solid;
    font-family: "graphie", "Noto Sans KR", sans-serif;
  }

  .table thead th {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    background: #fafafa;
    border-top: 1px #000 solid;
    border-bottom: 1px #eee solid;
    line-height: 1.75;
    letter-spacing: -0.8px;
    padding: 10px 20px;
    border-left: 1px #e5e5e5 solid;
  }

  .council-details .table thead th {
    border-left: 1px #9E9E9E solid;
    background: #e9e9e9;
  }

  .table thead th:first-child {
    border-left: 0;
  }

  .table tbody {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    font-size: 18px;
    letter-spacing: -0.56px;
  }

  .council-details .table tbody {
    font-size: 16px;
    text-align: center;
  }

  .shareholders .table tbody {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.01em;
  }

  .table tbody th {
    font-weight: normal;
    border-left: 0;
  }

  .table tbody td {
    border-left: 1px #e5e5e5 solid;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    position: relative;
  }

  .council-details_contents .table tbody td {
    border-left: 1px #9E9E9E solid;
  }

  .shareholders .table tbody td.agenda {
    border-left: 0;
  }

  .table th,
  .table td {
    word-break: keep-all;
    vertical-align: middle;
    padding: 10px 20px;
    border-bottom: 1px #e5e5e5 solid;
  }

  .council-details_contents .table th,
  .council-details_contents .table td {
    border-bottom: 1px #9E9E9E solid;
  }

  .council-details .table th,
  .council-details .table td {
    padding: 8px 16px;
  }

  .table.factory th,
  .table.factory td {
    word-break: break-all;
    vertical-align: middle;
    padding: 12px 0;
    border-bottom: 1px #e5e5e5 solid;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .table .t_left {
    text-align: left;
  }

  .table .t_center {
    text-align: center;
  }

  /* 공지사항 테이블 */
  .notice_table .table {
    text-align: center;
  }

  .notice_table .table tr:hover,
  .notice_table .table tr:focus {
    background: #fafafa;
  }

  .notice_table .table .notice th,
  .notice_table .table .notice td {
    font-weight: bold;
  }

  .notice_table .table td {
    border-left: 0;
    padding: 24px 20px;
    vertical-align: middle;
  }

  .notice_table .table td.date_view {
    font-size: 16px;
    opacity: 0.5;
  }

  .notice_table .table td.table_no {
    font-size: 16px;
  }

  .notice_table .table td:first-child + td {
    text-align: left;
  }

  .notice_table .table td:first-child + td a {
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    width: 540px;
    white-space: nowrap;
  }

  .notice_down {
    display: inline-block;
    width: 115px;
    height: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 14px;
    padding: 5px 14px 5px 29px;
    position: relative; /*background:#f5f5f5;*/
    border: 1px #e5e5e5 solid;
  }

  .notice_down:before {
    content: "";
    display: block;
    position: absolute;
    left: 14px;
    width: 8px;
    height: 16px;
    top: 5px;
    background-image: url("../images/common/icon-download.svg");
  }

  .notice_down + .notice_down {
    margin-left: 10px;
  }

  /* 정보성 테이블 */
  .table-info-wrap {
    display: flex;
    flex-wrap: wrap;
  }

  .table-info-wrap .table-info-cell + .table-info-cell {
    margin-left: 65px;
  }

  .table-info-wrap .table-info-title {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #808080;
    font-weight: 500;
  }

  .table-info-wrap .table-info-data {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
  }

  .table-info-wrap.type-2 {
    position: relative;
    padding: 25px 0;
    display: block;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #000;
    word-break: keep-all;
  }

  .table-info-wrap.type-2:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    display: block;
    width: 190px;
    height: 1px;
    background: #E20D3A;
  }

  .table-info-wrap.type-2 .table-info-cell + .table-info-cell {
    margin-left: 0;
    margin-top: 21px;
  }

  .table-info-wrap.type-2 .table-info-cell {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }

  .table-info-wrap.type-2 .table-info-title > em {
    position: relative;
    display: block;
    padding-left: 19px;
  }

  .table-info-wrap.type-2 .table-info-title > em:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  }

  .table-info-wrap.type-2 .table-info-title {
    flex: 0 0 auto;
    width: 190px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #E20D3A;
    margin: 0;
  }

  .table-info-wrap.type-2 .table-info-data {
    flex: 1;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(1)
    .table-info-title
    > em:before {
    content: "①";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(2)
    .table-info-title
    > em:before {
    content: "②";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(3)
    .table-info-title
    > em:before {
    content: "③";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(4)
    .table-info-title
    > em:before {
    content: "④";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(5)
    .table-info-title
    > em:before {
    content: "⑤";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(6)
    .table-info-title
    > em:before {
    content: "⑥";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(7)
    .table-info-title
    > em:before {
    content: "⑦";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(8)
    .table-info-title
    > em:before {
    content: "⑧";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(9)
    .table-info-title
    > em:before {
    content: "⑨";
  }

  .table-info-wrap.type-2
    .table-info-cell:nth-child(10)
    .table-info-title
    > em:before {
    content: "⑩";
  }

  /* tab */
  .common_tab {
    position: relative;
  }

  .factory_tab .common_tab {
    margin-bottom: 48px;
  }

  .common_tab ul {
    border-bottom: 1px #d4d4d4 solid;
    box-sizing: border-box;
  }

  .common_tab li {
    float: left;
    text-align: center;
    line-height: 72px;
    height: 72px;
  }

  .common_tab i.tab_indicator {
    display: block;
    height: 4px;
    background: #000;
    bottom: 0;
    left: 0;
    position: absolute;
    left: 0;
  }

  .common_tab li a {
    font-size: 20px;
    line-height: 72px;
    font-weight: 500;
    color: #aaa;
    font-family: "graphie", "Noto Sans KR", sans-serif;
  }

  .common_tab li a.active {
    color: #000;
  }

  .common_tab.item_2 li {
    width: 50%;
  }

  .common_tab.item_3 li {
    width: 33.3333%;
  }

  .common_tab.item_4 li {
    width: 25%;
  }

  .common_tab.item_2 i.tab_indicator {
    width: 50%;
  }

  .common_tab.item_3 i.tab_indicator {
    width: 33.3333%;
  }

  .common_tab.item_4 i.tab_indicator {
    width: 25%;
  }

  /* 공통 탭 */
  .page-title + .contents-tab-group {
    margin-top: 40px;
  }

  .contents-tab-group {
  }

  .contents-tab {
  }

  .contents-tab > ul {
    display: flex;
  }

  .contents-tab > ul > li {
  }

  .contents-tab > ul > li + li {
    margin-left: 50px;
  }

  .contents-tab > ul > li > a,
  .contents-tab > ul > li > a > h1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 65px;
    font-size: 24px;
    line-height: 1.5;
    color: #b2b2b2;
    font-weight: 500;
    letter-spacing: -0.05em;
  }

  .contents-tab > ul > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0);
  }

  .contents-tab > ul > li.actived > a,
  .contents-tab > ul > li.actived > a h1 {
    color: #000;
  }

  .contents-tab > ul > li.actived > a:before {
    background: rgba(0, 0, 0, 1);
  }

  /* 텍스트 리스트 */
  .text-list {
    word-break: keep-all;
  }

  .text-list .text-list {
    margin-top: 8px;
  }

  .text-list .text-list .text-list {
    margin-top: 0px;
  }

  .text-list .text-list .text-list-item {
    font-size: 15px;
    line-height: 25px;
    padding-left: 9px;
  }

  .text-list .text-list .text-list-item + .text-list-item {
    margin-top: 0;
  }

  .text-list-item {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #000;
  }

  .text-list-item > em {
    color: #E20D3A;
  }

  .text-list-item + .text-list-item {
    margin-top: 7px;
  }

  .text-list-item.line {
    padding-left: 11px;
  }

  .text-list-item.line:before {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  .text-list-item.circle {
    padding-left: 11px;
  }

  .text-list-item.circle:before {
    content: "·";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  .text-list-item.star {
    padding-left: 11px;
  }

  .text-list-item.star:before {
    content: "*";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    line-height: 36px;
  }

  /* pagination */
  .pagination {
    text-align: center;
    font-size: 0;
    position: relative;
    box-sizing: border-box;
    padding-right: 16px;
  }

  .pagination span {
    display: inline-block;
    padding: 0 15px;
  }

  .pagination a.active {
    color: #E20D3A;
  }

  .pagination a {
    font-size: 18px;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    line-height: 1.33;
    font-weight: normal;
    color: #000;
  }

  .pagination .arrow {
    width: 16px;
    height: 16px;
    display: inline-block;
    top: -5px;
    font-size: 0;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
  }

  .pagination .arrow.prev {
    background-image: url("../images/common/icon-arrow-prev-page.svg");
    margin-right: 15px;
  }

  .pagination .arrow.next {
    right: 0;
    background-image: url("../images/common/icon-arrow-next-page.svg");
    margin-left: 15px;
  }

  .pagination .arrow.first {
    background-image: url("../images/common/icon-first-page.svg");
    margin-right: 15px;
  }

  .pagination .arrow.last {
    right: 0;
    background-image: url("../images/common/icon-last-page.svg");
    margin-left: 15px;
  }

  .button {
    line-height: 60px;
    height: 60px;
    color: #000;
    text-align: center;
    border: 1px #000 solid;
    font-size: 18px;
    letter-spacing: -0.7px;
    cursor: pointer;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }

  .button:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }

  .btn_more.button:hover {
    background: #000;
  }

  .button:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  /* 검색창 */
  .search_cont {
    display: flex;
    width: 480px;
    position: relative;
    margin: 76px auto 60px;
    box-sizing: border-box;
    border-bottom: 1px #eee solid;
    z-index: 5;
  }
  .prdt .flex_search_cont .search_cont,
  .live_grid .flex_search_cont .search_cont {
    width: 340px;
    display: block;
    position: relative;
    margin: 76px auto 60px;
    box-sizing: border-box;
    border-bottom: 1px #eee solid;
    z-index: 5;
  }
  .flex_search_cont .search_cont {
    width: 480px;
    display: block;
    position: relative;
    padding-left: 140px;
    margin: 76px auto 60px;
    box-sizing: border-box;
    border-bottom: 1px #eee solid;
    z-index: 5;
  }
  .live.live_grid.flex_search_cont .search_cont,
  .newsletter .search_cont {
    padding-left: 0px;
  }

  .ir .search_cont {
    width: 380px;
  }

  .search_cont input,
  .category_select {
    border: 0;
    line-height: 48px;
    height: 48px;
  }

  .flex_search_cont .search_cont .category_select {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .newsletter-sub .category_select {
    width: 100%;
  }

  .category_select {
    width: 100px;
    color: #000;
    display: inline-block;
    background: #fff;
    position: relative;
  }

  .council-details .category_select_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .category_select .category_toggle,
  .category_select .area_toggle {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    width: 100%;
    text-align: left;
    line-height: 48px;
    font-size: 16px;
    color: #000;
    background-size: 24px 24px;
    background-image: url("../images/common/icon-drop-down.svg");
    background-position: right center;
    background-repeat: no-repeat;
    cursor: pointer;
  }

  .newsletter-sub .category_select .category_toggle:hover,
  .newsletter-sub .category_select .area_toggle:hover {
    border: 1px solid;
  }

  .category_select .category_toggle:hover,
  .category_select .area_toggle:hover {
    border-bottom: 1px solid;
  }

  .category_select .category_list,
  .category_select .area_list {
    position: absolute;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    border: 1px #000 solid;
    margin: 0;
    padding: 0;
    z-index: 10;
  }

  .category_select .category_list li,
  .category_select .area_list li {
    line-height: 1;
    width: 100%;
    padding: 0;
  }

  .category_select .category_list li button,
  .category_select .area_list li button {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    width: 100%;
    text-align: left;
    cursor: pointer;
    background-color: #fff;
    box-sizing: border-box;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.7px;
    color: #000;
    white-space: nowrap;
  }

  .category_select .category_list li button:hover,
  .category_select .category_list li button:focus,
  .category_select .area_list li button:hover,
  .category_select .area_list li button:focus {
    background-color: #f5f5f5;
    -webkit-transition: 0.3s background ease;
    transition: 0.3s background ease;
  }

  .newsletter .newsletter_header {
    position: relative;
  }
  .newsletter .newsletter_combobox {
    position: absolute;
    top: 0;
    right: 0;
  }
  .newsletter .category_select {
    width: 140px;
  }

  .search_cont span {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    padding-right: 30px;
  }

  .search_cont span input {
    font-family: "Graphie", "Noto Sans KR", "Malgun Gothic", sans-serif;
    width: 100%;
    padding-left: 0;
    font-size: 16px;
  }

  .search_cont span input:focus {
    outline: none;
  }

  .search_cont span input + i {
    width: 0;
    position: absolute;
    height: 1px;
    bottom: 0;
    background-color: #000;
    left: 0;
  }

  .search_cont span input:focus + i {
    width: 100%;
    -webkit-transition: 0.3s width ease;
    transition: 0.3s width ease;
  }

  .search_cont span .search_btn {
    position: absolute;
    right: 6px;
    bottom: 12px;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/icon-search-activated.svg");
    cursor: pointer;
    font-size: 0;
    background-size: 100%;
    background-position: center;
  }

  .ir .inner .pagination {
    margin-top: 100px;
  }

  /* ==========================================================================
Layout
========================================================================== */
  .inner {
    width: 1180px;
    margin: auto;
    box-sizing: border-box;
    position: relative;
  }

  /* 스크롤 인디케이터 */
  .scroll_indicator {
    position: fixed;
    padding-top: 20px;
    width: 2px;
    height: 164px;
    right: 170px;
    bottom: 0;
    z-index: 8;
    border-radius: 1px;
  }

  .scroll_indicator::before {
    content: "";
    /*background: rgba(255, 255, 255, 0.15);*/
    background: #000;
    position: relative;
    display: block;
    height: 100%;
  }

  .scroll_indicator::after {
    content: "";
    display: block;
    position: absolute;
    /*background: #fff;*/
    background: #000;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 0;
    left: -1px;
    z-index: 10;
  }

  .scroll_indicator .indicator_element {
    width: 100%;
    position: absolute;
    left: 0;
    top: -80px;
    background: #fff;
  }

  .auto_animation.scroll_indicator .indicator_element {
    height: 80px;
    -webkit-animation: scroll_indicator 1.5s both infinite;
    animation: scroll_indicator 1.5s both infinite;
  }

  @keyframes scroll_indicator {
    0% {
      top: 20px;
      opacity: 50%;
    }
    100% {
      top: 100%;
      opacity: 100%;
    }
  }
  @-webkit-keyframes scroll_indicator {
    0% {
      top: 20px;
      opacity: 50%;
    }
    100% {
      top: 100%;
      opacity: 100%;
    }
  }

  /* header */
  #pc_header,
  #pc_header.transparent.sub_on {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 100; /*height:94px;*/
    width: 100%;
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }

  #pc_header .gnb_sub_bg {
    display: block;
    position: absolute;
    height: 0;
    background: #fff;
    width: 100%;
    left: 0;
    top: 0px;
    opacity: 0;
    border-top: 1px #ddd solid;
    visibility: hidden;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }

  #pc_header.sub_on .gnb_sub_bg {
    height: 73px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }

  #pc_header .inner {
    width: 100%;
    min-width: 1440px; /* max-width: 1780px; */
  }

  #pc_header .inner #logo a,
  #pc_header.transparent.sub_on .inner #logo a {
    position: absolute;
    left: 70px;
    font-size: 0;
    top: 28px;
    width: 90px;
    height: 32px;
    background-size: 100%;
    background-image: url("../images/common/logo-samhwa-red.svg");
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }

  #pc_header .inner #logo_bf,
  #pc_header.transparent.sub_on .inner #logo_bf {
    display: block;
    position: absolute;
    left: 160px;
    font-size: 0;
    top: 8px;
    width: 72px;
    height: 72px;
    background-size: 100%;
    background-image: url("../images/common/logo-samhwa-red-bf.svg");
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }

  #pc_header #gnb {
    box-sizing: border-box;
    padding-left: 328px;
  }

  #pc_header #gnb li {
    font-size: 0;
    display: inline-block;
    padding: 36px 0;
  }

  #pc_header #gnb li a,
  #pc_header.transparent.sub_on #gnb li a {
    position: relative;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    line-height: 1.33;
    letter-spacing: 0.5px;
    display: inline-block;
    width: 100%;
  }

  #pc_header.transparent {
    background: none;
  }

  #pc_header.transparent .inner #logo a {
    /*background-image: url("../images/common/logo-samhwa-white.svg");*/
    background-image: url("../images/common/logo-samhwa-red.svg");
  }

  #pc_header.transparent .inner #logo_bf {
    background-image: url("../images/common/logo-samhwa-white-bf.svg");
  }

  #pc_header.transparent #gnb li > a {
    /*color: #fff;*/
    color: #000;
    position: relative;
  }

  #pc_header #gnb li > a .gnb_line,
  #pc_header #gnb li.active > a .gnb_line {
    left: 51%;
    right: 51%;
    height: 3px;
    background: #000;
    position: absolute;
    top: 56px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  #pc_header.transparent #gnb li.active a .gnb_line,
  #pc_header.transparent #gnb li.on a .gnb_line {
    left: 25%;
    right: 25%;
  }

  #pc_header .gnb_right {
    position: absolute;
    right: 120px;
    color: #000;
    top: 36px; /*width:400px;*/
  }

  #pc_header .gnb_right,
  #pc_header .gnb_right a,
  #pc_header.transparent.sub_on .gnb_right,
  #pc_header.transparent.sub_on .gnb_right a {
    color: #000;
  }

  #pc_header.transparent .gnb_right,
  #pc_header.transparent .gnb_right a {
    /*color: #fff;*/
    color: #000;
  }

  #pc_header .gnb_right .search_store {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: -0.5px;
    font-weight: 500;
    margin-right: 28px;
    opacity: 0.9;
  }

  #pc_header .gnb_right .select_lang {
    display: inline-block;
    position: relative;
    line-height: 1.71;
    font-size: 14px;
    font-weight: bold;
    opacity: 0.9;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    margin-right: 30px;
  }

  #pc_header .gnb_right .select_lang a {
    font-weight: 500;
  }

  #pc_header .gnb_right .select_lang a:after,
  #pc_header.transparent.sub_on .gnb_right .select_lang a:after {
    content: "";
    margin-left: 4px;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../images/common/ic-arw-dropdown.svg");
  }

  #pc_header.transparent .gnb_right .select_lang a:after {
    /*background: url("../images/common/dropdown.svg");*/
    background: url("../images/common/ic-arw-dropdown.svg");
  }

  #pc_header .gnb_right .select_lang.active a:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #pc_header #gnb .gnb_right .select_lang ul {
    position: absolute;
    width: 140px;
    left: 50%;
    margin-left: -70px;
    top: 33px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }

  #pc_header #gnb .gnb_right .select_lang.active ul {
    opacity: 1;
    visibility: visible;
    border: 1px #000 solid;
  }

  #pc_header #gnb .gnb_right .select_lang.active ul li {
    padding: 0;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    box-sizing: border-box;
  }

  #pc_header #gnb .gnb_right .select_lang.active ul li a:hover {
    background: #f5f5f5;
  }

  #pc_header #gnb .gnb_right .select_lang.active ul li a {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    font-family: "graphie";
    display: block;
    box-sizing: border-box;
    line-height: 28px;
    letter-spacing: -0.7px;
  }

  #pc_header #gnb .gnb_right .select_lang.active ul li a:after {
    content: none;
  }

  #pc_header.transparent #gnb .select_lang.active ul li a {
    color: #000;
  }

  #pc_header a.gnb_alarm,
  #pc_header.transparent.sub_on a.gnb_alarm {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    background: #000;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    margin-right: 15px;
  }

  #pc_header a.gnb_alarm i {
    line-height: 28px;
  }

  #pc_header.transparent a.gnb_alarm {
    /*color: #000;*/
    color: #fff;
    /*background-color: #fff;*/
    background-color: #000;
  }

  #pc_header .search_contents,
  #pc_header.transparent.sub_on .search_contents {
    font-size: 0;
    width: 36px;
    height: 36px;
    background-image: url("../images/common/ic-search.svg");
    cursor: pointer;
    position: relative;
    top: -3px;
  }

  #pc_header.transparent .search_contents {
    /*background-image: url("../images/common/search-white.svg");*/
    background-image: url("../images/common/ic-search.svg");

  }

  #pc_header #gnb .gnb_list {
    position: relative;
    font-size: 0;
  }

  #pc_header #gnb .gnb_list li {
    cursor: pointer;
  }

  #pc_header #gnb .gnb_list > li a {
    width: 100%;
    padding: 0 43px;
    box-sizing: border-box;
  }

  .main_visual .main_slider .slider-item > span,
  .main_visual .main_slider .slider-item a {
    left: 370px;
  }

  #pc_header #gnb .gnb_list li .sub {
    position: absolute;
    height: 0;
    overflow: hidden;
    top: 93px;
    box-sizing: border-box;
    left: 46px;
  }

  #pc_header #gnb .gnb_list li .sub.sub_culture {
    left: 200px !important;
  }


  #pc_header #gnb .gnb_list li .sub.sub_company {
    left: 270px;
  }

  #pc_header #gnb .gnb_list li .sub.sub_ir {
    left: 465px;
  }

  #pc_header #gnb .gnb_list li .sub.sub_customer {
    left: 620px;
  }

  #pc_header.sub_on #gnb .gnb_list li.on .sub {
    height: 72px;
  }

  #pc_header #gnb .gnb_list li .sub li {
    padding: 0 24px;
    position: relative;
    overflow: hidden;
  }

  #pc_header #gnb .gnb_list li .sub li:first-child {
    padding-left: 0;
  }

  #pc_header #gnb .gnb_list li .sub a {
    color: #000;
    opacity: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.7px;
    font-weight: 500;
    font-family: "Noto Sans KR";
    bottom: -20px;
    position: relative;
    line-height: 72px;
    display: inline-block;
    -webkit-transition: 0.3s 0.1s ease-in-out all;
    transition: 0.3s 0.1s ease-in-out all;
  }

  #pc_header #gnb .gnb_list li .sub a::before {
    content: none;
  }

  #pc_header.sub_on #gnb .gnb_list li.on .sub a {
    bottom: 0;
    opacity: 1;
    -webkit-transition: 0.3s 0.1s ease-in-out all;
    transition: 0.3s 0.1s ease-in-out all;
  }

  #pc_header.sub_on #gnb .gnb_list li.on .sub_item_on li a {
    opacity: 0.3;
  }

  #pc_header.sub_on #gnb .gnb_list li.on .sub_item_on li.on a {
    opacity: 1;
  }

  #pc_header .gnb_menu {
    width: 36px;
    height: 36px;
    font-size: 0;
    position: absolute;
    cursor: pointer;
    z-index: 110;
    right: 70px;
    top: 30px;
  }

  .gnb_open #pc_header .gnb_menu.white_ver i:before,
  .gnb_open #pc_header .gnb_menu.white_ver i:after,
  #pc_header.transparent .gnb_menu i,
  #pc_header.transparent .gnb_menu i:before,
  #pc_header.transparent .gnb_menu i:after {
    /*background: #fff;*/
    background: #000;
  }

  .gnb_open #pc_header .gnb_menu i,
  .gnb_open #pc_header .gnb_menu i:before,
  .gnb_open #pc_header .gnb_menu i:after,
  #pc_header.transparent.sub_on .gnb_menu i,
  #pc_header.transparent.sub_on .gnb_menu i:before,
  #pc_header.transparent.sub_on .gnb_menu i:after {
    background: #000;
  }

  .gnb_open #pc_header .gnb_menu i {
    /*background: #fff;*/
    background: #000;
  }

  .gnb_menu i:before,
  .gnb_menu i:after {
    content: "";
    -webkit-transition-duration: 0.3s, 0.2s;
    transition-delay: 0.5s, 0s;
    transition-duration: 0.3s, 0.2s;
    transition-delay: 0.5s, 0s;
  }

  .gnb_menu i:before,
  .gnb_menu i:after,
  .gnb_menu i {
    position: absolute;
    left: 4px;
    display: block;
    width: 28px;
    height: 2px;
    background: #000;
  }

  .gnb_menu i:before {
    left: 0;
    top: -8px;
    -webkit-transition-property: top, transform;
    transition-property: top, transform;
  }

  .gnb_menu i:after {
    left: 0;
    top: auto;
    bottom: -9px;
    -webkit-transition-property: bottom, transform;
    transition-property: bottom, transform;
  }

  .gnb_open #pc_header .gnb_menu i,
  .gnb_open #pc_header.transparent .gnb_menu i {
    background: none;
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s;
  }

  .gnb_open .gnb_menu i:before {
    top: 0;
    background: #000;
    -webkit-transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
  }

  .gnb_open .gnb_menu i:after {
    bottom: 0;
    background: #000;
    -webkit-transform: rotate(-45deg);
    transition-delay: 0s, 0.3s;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.3s;
  }

  body.bodyOverlay {
    width: 100%;
    height: 100%;
    overflow: overlay;
    position: absolute;
  }

  .ie.bodyOverlay {
    overflow: scroll;
  }

  body.gnb_open,
  body.bodyOverflow {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
  }

  .gnb_open #pc_header .inner #logo a {
    z-index: 110;
    background-image: url("../images/common/logo-samhwa-red.svg");
  }

  .gnb_open #pc_header .inner {
    margin: 0;
  }

  .gnb_open #pc_header .inner #logo a {
    left: 76px;
  }

  #pc_header #gnb #gnb_detail {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    min-width: 1440px;
    box-sizing: border-box;
    padding-bottom: 164px;
    padding-top: 164px;
    padding-left: 194px;
    overflow: auto;
    -webkit-animation: allmenuClose 600ms both;
    animation: allmenuClose 600ms both;
    -webkit-transition: opacity 0s linear 600ms;
    transition: opacity 0s linear 600ms;
  }

  .gnb_open #pc_header #gnb #gnb_detail {
    visibility: visible;
    opacity: 1;
    overflow-x: hidden;
    -webkit-animation-name: allmenuOpen;
    animation-name: allmenuOpen;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .gnb_detail_wrap {
    position: relative;
    top: -50px;
    opacity: 0;
  }

  .gnb_open .gnb_detail_wrap {
    top: 0;
    opacity: 1;
    -webkit-transition: 0.5s ease-in-out all;
    transition: 0.5s ease-in-out all;
  }

  .gnb_open #pc_headergnb_detail_wrap #gnb #gnb_detail a {
    color: #000;
  }

  .gnb_open #pc_header #gnb #gnb_detail .btn_gnb_close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .gnb_open #pc_header #gnb #gnb_detail .btn_gnb_close::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  #pc_header #gnb #gnb_detail > ul {
    position: relative;
    box-sizing: border-box;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth {
    display: block;
    padding: 0;
    z-index: 0;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth.hover .gnb_2_depth_wrap {
    z-index: 1;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth a {
    z-index: 10;
    display: inline-block;
    padding-left: 24px;
    color: #000;
    position: relative;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth > a {
    width: 230px;
  }

  #pc_header #gnb #gnb_detail .gnb_2_depth > a {
    width: 160px;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth a strong i {
    display: block;
    width: 8px;
    height: 8px;
    background: #000;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 15;
    border-radius: 50%;
    opacity: 0;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth a strong {
    line-height: 1.33;
    font-size: 48px;
    font-weight: 500;
    font-style: normal;
    font-family: "operetta-12";
    display: block;
    padding: 10px 0;
  }

  #pc_header #gnb #gnb_detail .gnb_detail_bg {
    display: block;
    width: 650px;
    position: absolute;
    right: 0;
    min-height: 1080px;
    height: 100%;
    top: 0;
    box-sizing: border-box;
    background-position: right top;
    background-repeat: no-repeat;
    background: #fff;
    background-size: contain;
  }

  #pc_header #gnb #gnb_detail .gnb_detail_bg.bg_1 {
    background-image: url("../images/common/bg_gnb_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  #pc_header #gnb #gnb_detail .gnb_detail_bg.bg_2 {
    background-image: url("../images/common/bg_gnb_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  #pc_header #gnb #gnb_detail .gnb_detail_bg.bg_3 {
    background-image: url("../images/common/bg_gnb_3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  #pc_header #gnb #gnb_detail .gnb_detail_bg.bg_4 {
    background-image: url("../images/common/bg_gnb_4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  #pc_header #gnb #gnb_detail .gnb_detail_bg.bg_5 {
    background-image: url("../images/common/bg_gnb_5.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  #pc_header #gnb #gnb_detail .gnb_detail_bg.bg_6 {
    background-image: url("../images/common/bg_gnb_6.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth .gnb_2_depth.hover {
    height: 100%;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth > ul {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 392px;
    top: 20px;
    width: 400px;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth.hover > ul {
    visibility: visible;
    opacity: 1;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth li.gnb_2_depth {
    display: block;
    padding: 0;
    margin-top: 16px;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth .gnb_2_depth a::before {
    content: none;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth .gnb_2_depth a {
    font-size: 16px;
    position: relative;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.5px;
    font-family: "Noto Sans KR";
    padding-left: 0;
    left: 50px;
    opacity: 0;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth .gnb_2_depth .gnb_3_depth {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 200px;
    width: 200px;
    top: 0;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth .gnb_2_depth .gnb_3_depth.hover {
    opacity: 1;
    visibility: visible;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth .gnb_2_depth .gnb_3_depth li {
    padding: 0;
    margin-top: 16px;
    display: block;
  }

  #pc_header #gnb #gnb_detail .gnb_1_depth .gnb_2_depth .gnb_3_depth li a {
    position: relative;
    left: 30px;
    opacity: 0;
  }

  /* header search */
  #gnb_search,
  #gnb_history {
    position: fixed;
    height: 0;
    width: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    top: 0;
    z-index: 100;
    background-color: #fff;
  }

  #gnb_search .search_inner,
  #gnb_history .search_inner {
    width: 100%;
    min-width: 1180px;
    overflow: hidden;
    position: relative;
  }

  .bodyOverflow #gnb_search,
  .bodyOverflow #gnb_history {
    visibility: visible;
    opacity: 1;
    overflow: auto;
    height: 100%;
    -webkit-animation-name: allmenuOpen;
    animation-name: allmenuOpen;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .search_header {
    position: fixed;
    height: 96px;
    width: 100%;
    z-index: 10;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
  }

  .search_header .logo {
    position: absolute;
    left: 60px;
    font-size: 0;
    top: 28px;
    width: 90px;
    height: 32px;
    background-size: 100%;
    background-image: url("../images/common/logo-samhwa-red.svg");
  }

  .search_header .search_close {
    width: 36px;
    height: 36px;
    font-size: 0;
    position: absolute;
    cursor: pointer;
    z-index: 110;
    right: 72px;
    top: 30px;
  }

  .search_header .search_close i:before,
  .search_header .search_close i:after {
    content: "";
    position: absolute;
    left: 4px;
    display: block;
    width: 28px;
    height: 2px;
    background: #000;
  }

  .search_header .search_close i:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .search_header .search_close i:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .search_area {
    position: relative;
  }

  .search_area .input_wrap {
    display: block;
    box-sizing: border-box;
    padding-right: 64px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 25px;
  }

  .search_area .input_wrap input {
    font-family: "Noto Sans KR";
    line-height: 56px;
    border: 0;
    padding: 0;
    height: 56px;
    font-size: 40px;
    color: #111;
    letter-spacing: -1.5px;
    width: 100%;
    font-weight: 500;
  }

  .search_area .input_wrap input + .input_line {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #000;
    display: block;
    -webkit-transition: 0.3s ease width;
    transition: 0.3s ease width;
  }

  .search_area.text_in .input_wrap {
    border-bottom: 0;
  }

  .search_area.text_in .input_wrap input + .input_line,
  .search_area .input_wrap input:focus + .input_line {
    width: 100%;
  }

  .search_area .input_wrap input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.2);
  }

  .search_area .input_wrap input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.2);
  }

  .search_area .input_wrap input::placeholder {
    font-family: "Noto Sans KR";
  }

  .search_area .input_wrap .btn_search {
    position: absolute;
    width: 64px;
    height: 64px;
    right: 0;
    top: 0;
    background-image: url("../images/common/icon-24-icon-search-inactive.svg");
    font-size: 0;
  }

  .search_area .input_wrap .btn_search.on {
    background-image: url("../images/common/icon-24-icon-search-inactive_on.svg");
    background-size: contain;
  }

  .search_area p {
    margin-top: 20px;
  }

  .search_area p strong {
    font-size: 18px;
    line-height: 32px;
    color: #111;
    letter-spacing: -1px;
    font-weight: 600;
    margin-right: 40px;
    display: inline-block;
  }

  .search_area p strong + span {
    margin-left: 0;
  }

  .search_area p span {
    display: inline-block;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.7px;
    color: #111;
    margin-left: 19px;
  }

  #gnb_search .inner {
    width: 1180px;
    padding-top: 240px;
  }

  #gnb_search .search_contents {
    position: relative;
    box-sizing: border-box;
    padding-right: 330px;
    width: 100%;
    margin-top: 120px;
  }

  #gnb_search .search_contents .h2 {
    font-size: 24px;
    color: #111;
    line-height: 36px;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    margin-bottom: 28px;
  }

  #gnb_search .search_contents .painting_guide ul {
    font-size: 0;
    position: relative;
    margin-left: -50px;
    margin-bottom: 240px;
  }

  #gnb_search .search_contents .painting_guide ul li {
    width: 50%;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 50px;
    padding-bottom: 80px;
  }

  #gnb_search .search_contents .painting_guide ul li .img_wrap {
    width: 100%;
    display: block;
    height: 400px;
    overflow: hidden;
  }

  #gnb_search .search_contents .painting_guide ul li .img_wrap img {
    width: 100%;
  }

  #gnb_search
    .search_contents
    .painting_guide
    ul
    li
    .img_wrap
    .paintingViewImg {
    width: 400px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  #gnb_search .search_contents .painting_guide ul li em {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
    color: #888;
    font-family: "graphie", "Noto Sans KR", sans-serif;
  }

  #gnb_search .search_contents .painting_guide ul li strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.7px;
    color: #111;
    font-weight: 400;
  }

  #gnb_search .search_contents .product {
    position: absolute;
    width: 220px;
    right: 0;
    top: 0;
  }

  #gnb_search .search_contents .product ul li {
    margin-bottom: 20px;
  }

  #gnb_search .search_contents .product ul li .img_wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
  }

  #gnb_search .search_contents .product ul li .img_wrap img {
    width: 100%;
    height: 100%;
    vertical-align: baseline;
  }

  #gnb_search .search_contents .product ul li a {
    line-height: 60px;
    font-size: 20px;
    letter-spacing: -0.7px;
    color: #111;
    font-weight: 400;
  }

  /* 최근검색어 & 인기검색어 */
  .search_area .search_word {
    position: absolute;
    width: 100%;
    background: #fff;
    top: 82px;
    padding: 40px 0;
    min-height: 518px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }

  .search_area.text_in .search_word {
    opacity: 1;
    top: 82px;
    visibility: visible;
  }

  .search_area .search_word .h2 {
    font-size: 18px;
    color: #111;
    line-height: 36px;
    letter-spacing: -1px;
    font-weight: 600;
  }

  .search_area .search_word:after {
    content: "";
    display: block;
    clear: both;
  }

  .search_area .search_word .history_word,
  .search_area .search_word .popular_word {
    width: 50%;
    box-sizing: border-box;
    float: left;
    position: relative;
  }

  .search_area .search_word .history_word {
    padding-right: 70px;
  }

  .search_area .search_word .popular_word {
    padding-left: 70px;
  }

  .search_area .search_word .history_word .btn_delete_all {
    position: absolute;
    top: 0;
    right: 70px;
    line-height: 36px;
    font-size: 14px;
    letter-spacing: -0.78px;
    color: #111;
  }

  .search_area .search_word ul {
    padding-top: 12px;
  }

  .search_area .search_word ul li {
    margin-top: 10px;
  }

  .search_area .search_word .history_word ul li {
    position: relative;
    box-sizing: border-box;
    padding-right: 30px;
  }

  .search_area .search_word ul li button {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.7px;
    text-align: left;
  }

  .search_area .search_word ul li button.btn_delete {
    font-size: 0;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 2px;
  }

  .search_area .search_word ul li button.btn_delete:before,
  .search_area .search_word ul li button.btn_delete:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    top: 50%;
    background: #000;
    position: absolute;
  }

  .search_area .search_word ul li button.btn_delete:before {
    transform: rotate(45deg);
  }

  .search_area .search_word ul li button.btn_delete:after {
    transform: rotate(135deg);
  }

  /* gnb history */
  #gnb_history .inner {
    width: 1180px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .history_box {
    position: relative;
  }

  #gnb_history .history_box {
    margin-top: 40px;
  }

  .history_box .h2 {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.7px;
    color: #111;
  }

  .search_all .history_box .h2 {
    margin-top: 40px;
  }

  .history_box .h2 i {
    font-size: 18px;
    line-height: 28px;
    margin-left: 6px;
    display: inline-block;
    color: #888;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    font-weight: 400;
  }

  .history_box .btn_more {
    position: absolute;
    top: 12px;
    right: 0;
    font-size: 16px;
    line-height: 24px;
    color: #111;
    font-family: "graphie", "Noto Sans KR", sans-serif;
  }

  .history_box ul {
    position: relative;
    margin-left: -20px;
    margin-top: 20px;
  }

  .history_box ul li {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding-left: 20px;
    padding-bottom: 80px;
  }

  .prdt_info_view .history_box ul li {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding-left: 20px;
    padding-bottom: 20px;
  }

  .history_box.color_box ul li {
    width: 20%;
    position: relative;
  }

  .history_box ul li .img_wrap {
    display: block;
    height: 280px;
    position: relative;
    overflow: hidden;
  }

  .history_box ul li .img_wrap img {
    width: 100%;
  }

  .history_box ul li .img_wrap .viewImg {
    width: 280px;
    height: 280px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .history_box ul li em {
    color: #000;
    opacity: 0.5;
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.7px;
    display: block;
    position: relative;
    margin-left: -4px;
    height: 20px;
    width: 200%;
  }

  .history_box ul li em i {
    display: inline-block;
    padding: 0 0px;
    position: relative;
    padding-right: 15px;
  }

  .history_box ul li em i:before {
    content: "";
    display: block;
    position: absolute;
    right: 3px;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    border-left: 0.8px #888 solid;
    border-bottom: 0.8px #888 solid;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .history_box ul li em i:last-child:before {
    display: none;
  }

  .history_box ul li strong {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-top: 8px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.7px;
  }

  .history_box ul li span {
    display: inline-block;
    font-size: 14px;
    color: #000;
    line-height: 22px;
    letter-spacing: -0.7px;
    font-weight: 300;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 44px;
  }

  .history_box ul.color_list li .color_chip {
    display: block;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .history_box .color_module .color_palette {
    display: block;
    height: 180px;
    width: 100%;
  }

  .history_box ul.color_list li .color_chip .color_info {
    margin: 0;
    padding: 12px 16px 24px;
    border-top: 0;
  }

  .history_box ul.color_list li .color_chip .color_info strong {
    font-size: 20px;
    line-height: 30px;
    color: #111;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0;
  }

  .history_box ul.color_list li .color_chip .color_info em {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 0;
  }

  .history_box .color_module button {
    display: block;
    width: 100%;
    cursor: pointer;
    text-align: left;
    position: absolute;
    font-size: 0;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    right: 17px;
    top: 132px;
    opacity: 0;
    visibility: hidden;
  }

  .history_box .color_module button.color_copy {
    right: 57px;
  }

  .history_box .color_module button.color_copy:before,
  .history_box .color_module button.full_screen:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -8px;
    margin-top: -8px;
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .history_box .color_module button.color_copy:before {
    background-image: url("../images/contents/color/icon-copy.svg");
  }

  .history_box .color_module button.full_screen::before {
    background-image: url("../images/contents/color/icon-fullscreen.svg");
  }

  .history_box.store_box ul {
    position: relative;
    margin-left: -60px;
    padding-bottom: 80px;
    margin-top: 10px;
  }

  .history_box.store_box ul li {
    width: 50%;
    padding-left: 60px;
    padding-bottom: 0;
    padding-top: 30px;
    cursor: pointer;
  }

  .history_box.store_box ul li .store_box {
    border-bottom: 1px #eee solid;
    padding-bottom: 40px;
  }

  .history_box.store_box ul li h5 {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: -0.7px;
  }

  .history_box.store_box ul li p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.7px;
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .history_box.store_box ul li em {
    margin-left: 0;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    opacity: 0.5;
    min-height: 24px;
  }

  .history_box.store_box ul li .btn_wrap {
    display: block;
    font-size: 0;
    overflow: visible;
    margin-top: 30px;
    height: 30px;
  }

  .history_box.store_box ul li .button {
    font-size: 12px;
    letter-spacing: -0.7px;
    border: 1px #d4d4d4 solid;
    height: auto;
    line-height: 18px;
    border-radius: 3px;
    padding: 5px 8px;
    display: inline-block;
  }

  .history_box.store_box ul li .button + .button {
    margin-left: 6px;
  }

  .history_box.paintingGuide_box ul {
    margin-left: 0;
  }

  .history_box.paintingGuide_box ul li {
    width: 360px;
    padding-left: 0;
    margin-right: 50px;
  }

  .history_box.paintingGuide_box ul li:last-child {
    margin-right: 0px;
  }

  .history_box.paintingGuide_box ul li .img_wrap {
    height: auto;
  }

  .history_box.paintingGuide_box ul li strong {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -1px;
    color: #000;
    overflow: auto;
    text-overflow: unset;
    white-space: normal;
  }

  .history_box.paintingGuide_box ul li em {
    color: #888;
    font-size: 16px;
    line-height: 24px;
    margin: 20px 0 10px;
    letter-spacing: 0;
    opacity: 1;
  }

  .history_box.paintingGuide_box ul li span {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #000;
    display: block;
    margin-top: 16px;
    height: auto;
  }

  .history_box.paintingGuide_box .btn_wrap .button {
    font-family: "Noto Sans KR";
    position: relative;
    width: 360px;
    line-height: 64px;
    height: 64px;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: -0.5px;
    text-align: center;
    display: block;
    margin: auto;
    font-weight: bold;
  }

  .history_box.paintingGuide_box .btn_wrap .button:hover {
    color: #fff;
  }

  .search.painting .paintingGuide_box ul li {
    width: 360px;
    box-sizing: border-box;
    margin-right: 50px;
    padding-bottom: 100px;
    display: inline-block;
    vertical-align: top;
    position: absolute;
  }

  @keyframes allmenuOpen {
    0% {
      height: 0;
      padding-top: 0;
    }
    100% {
      height: 100%;
      padding-top: 194px;
    }
  }
  @-webkit-keyframes allmenuOpen {
    0% {
      height: 0;
      padding-top: 0;
    }
    100% {
      height: 100%;
      padding-top: 194px;
    }
  }
  .gnb_detail_sns {
    margin-top: 170px;
  }

  .gnb_detail_sns span {
    display: inline-block;
    padding-left: 30px;
  }

  .gnb_detail_sns span:first-child {
    padding-left: 24px;
  }

  .gnb_detail_sns span a {
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    vertical-align: top;
  }

  /* header 팝업 */
  .top_banner {
    display: none;
  }

  .topBannerActive .top_banner {
    display: block;
    height: 100px;
    overflow: hidden;
    position: relative;
  }

  .topBannerActive .top_banner img {
    height: 100%;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0);
  }

  .topBannerActive .visual_bg_slider {
    top: 100px;
  }

  .topBannerActive #pc_header .gnb_sub_bg {
    top: 100px;
  }

  .topBannerActive #pc_header .gnb_menu {
    top: 130px;
  }

  .topBannerActive #pc_header .gnb_right {
    top: 136px;
  }

  .top_banner .checkbox {
    position: absolute;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.7px;
    top: 50%;
    right: 78px;
    min-width: 152px;
    text-align: left;
    margin-top: -12px;
  }

  .top_banner .checkbox input + .lbl:before {
    background: #fff;
    border: 1px #000 solid;
    top: -1px;
  }

  .top_banner .checkbox input:checked + .lbl:before {
    background-image: url("../images/common/icon-24-check-on-wht.svg");
    background-color: #fff;
  }

  .top_banner .topBanner_close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    font-size: 0;
    right: 38px;
    margin-top: -12px;
  }

  .top_banner .topBanner_close em {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
  }

  .top_banner .topBanner_close em {
    transform: rotate(45deg);
  }

  .top_banner .topBanner_close em + em {
    transform: rotate(135deg);
  }

  /* container */
  #wrap {
    max-width: 100%;
    margin: auto;
  }

  #location {
    font-family: "Noto Sans KR";
    font-size: 12px;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding: 16px 70px;
  }
  .color_design_kv #location {
    padding-top: 96px;
  }

  #location li {
    display: inline-block;
  }

  #location li:first-child,
  #location li:first-child + li {
    font-family: "graphie", "Noto Sans KR", sans-serif;
  }

  #location li a,
  #location li span {
    display: inline-block;
    position: relative;
    padding-right: 16px;
    line-height: 20px;
    opacity: 0.5;
  }

  #location li strong {
    font-weight: normal;
  }

  #location li a:before,
  #location li span:before {
    content: "";
    display: block;
    position: absolute;
    right: 4px;
    top: 50%;
    margin-top: -3px;
    width: 5px;
    height: 5px;
    border-left: 0.8px #888 solid;
    border-bottom: 0.8px #888 solid;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  #pc_location {
    font-family: "Noto Sans KR";
    font-size: 12px;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding: 16px 70px;
  }

  #pc_location li {
    display: inline-block;
  }

  #pc_location li:first-child,
  #pc_location li:first-child + li {
    font-family: "graphie", "Noto Sans KR", sans-serif;
  }

  #pc_location li a,
  #pc_location li span {
    display: inline-block;
    position: relative;
    padding-right: 16px;
    line-height: 20px;
    opacity: 0.5;
  }

  #pc_location li strong {
    font-weight: normal;
  }

  #pc_location li a:before,
  #pc_location li span:before {
    content: "";
    display: block;
    position: absolute;
    right: 4px;
    top: 50%;
    margin-top: -3px;
    width: 5px;
    height: 5px;
    border-left: 0.8px #888 solid;
    border-bottom: 0.8px #888 solid;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /* footer */
  #pc_footer {
    border-top: 1px #d4d4d4 solid;
    background: #fff;
    position: relative;
  }

  #pc_footer .inner {
    box-sizing: border-box;
    padding: 56px 70px 0;
    min-height: 280px; /* max-width: 1780px; */
    width: 100%;
  }

  .main #pc_footer {
    background: #fafafa;
    border-top: 0;
  }

  #pc_footer .footer_contents {
    font-size: 0;
  }

  #pc_footer .footer_contents .info_cont {
    display: inline-block;
    width: 33.333%;
    vertical-align: top;
  }

  #pc_footer .footer_contents:after {
    content: "";
    display: block;
    clear: both;
  }

  #pc_footer .footer_contents .info_cont:first-child {
  }

  #pc_footer .footer_contents .info_cont:first-child + .info_cont {
    text-align: center;
  }

  #pc_footer .footer_contents .info_cont:first-child + .info_cont + .info_cont {
    margin: 0;
    text-align: right;
  }

  #pc_footer .footer_sns {
    margin-bottom: 39px;
  }

  #pc_footer .footer_sns span {
    display: inline-block;
    box-sizing: border-box;
    padding-left: 30px;
    line-height: 1;
    vertical-align: middle;
  }

  #pc_footer .footer_sns span:first-child {
    padding-left: 0;
  }

  #pc_footer .footer_sns span a {
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    vertical-align: top;
  }

  a.ico_instagram {
    background-image: url("../images/common/ic-insta.svg");
  }

  a.ico_youtube {
    background-image: url("../images/common/ic-youtube.svg");
  }

  a.ico_blog {
    background-image: url("../images/common/ic-blog.svg");
  }

  a.ico_smartstore {
    background-image: url("../images/common/ic-smartstore.svg");
  }

  #pc_footer .footer_info {
    font-size: 12px;
    line-height: 1.67;
    letter-spacing: -0.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
  }

  #pc_footer .footer_info dl dt {
    padding-right: 10px;
    margin-right: 5px;
    position: relative;
  }

  #pc_footer .footer_info dl dt:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 1px;
    height: 11px;
    background: #888;
    top: 50%;
    margin-top: -5px;
  }

  #pc_footer .footer_info dl dt,
  #pc_footer .footer_info dl dt + dd {
    display: inline-block;
  }

  #pc_footer .footer_info dl dt + dd + dd {
    display: block;
  }

  #pc_footer .footer_info dl dd a {
    font-weight: 600;
  }

  #pc_footer .footer_csCenter p {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: normal;
    font-weight: normal;
    display: inline-block;
    text-align: left;
  }

  #pc_footer .footer_csCenter p strong {
    display: block;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 600;
  }

  #pc_footer .relation_svc {
    width: 220px;
    height: 45px;
    position: relative;
    cursor: pointer;
    text-align: left;
    display: inline-block;
  }

  #pc_footer .relation_svc .list_relation {
    position: absolute;
    left: 0;
    bottom: 46px;
    background: #fff;
    border: 1px #000 solid;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    z-index: 1;
  }

  #pc_footer .relation_svc .list_relation li {
    padding: 0;
  }

  #pc_footer .relation_svc .list_relation li a {
    font-family: "graphie", "Noto Sans KR", sans-serif;
    display: block;
    font-size: 16px;
    letter-spacing: normal;
    font-weight: normal;
    line-height: 28px;
    padding: 12px 16px;
    letter-spacing: -0.7px;
  }

  #pc_footer .relation_svc.active .list_relation {
    opacity: 1;
    visibility: visible;
  }

  #pc_footer .relation_svc:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #d8d8d8;
    opacity: 0.5;
  }

  #pc_footer .relation_svc.active span {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #pc_footer .relation_svc .tit_relation {
    font-size: 14px;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    line-height: 1.71;
    letter-spacing: normal;
    line-height: 24px;
    padding: 11px 0;
    display: inline-block;
    box-sizing: border-box;
    font-weight: normal;
  }

  #pc_footer .relation_svc .tit_relation a {
    color: #000;
  }

  #pc_footer .relation_svc .ico_arr {
    position: absolute;
    right: 0;
    top: 17px;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("../images/common/ic-arw-dropdown.svg");
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #pc_footer .txt_copyright {
    display: block;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    font-size: 12px;
    line-height: 2;
    font-weight: normal;
    letter-spacing: normal;
    margin-top: 22px;
  }

  @media (max-width: 768px) {
    #pc_footer {
      position: relative;
      color: #808080;
      background: #292929;
      padding: 30px 0;
      font-size: 12px;
    }

    #pc_footer .inner {
      background: none;
    }

    .foot_info {
      color: #fff;
      font-size: 14px;
    }

    .foot_info em {
      font-family: "Montserrat";
      display: block;
      font-size: 12px;
      line-height: 12px;
      color: #808080;
      line-height: 1.8;
    }

    .foot_info strong {
      font-size: 25px;
    }

    .foot_text {
      line-height: 1.8;
      margin-top: 18px;
    }

    .foot_text a {
      font-weight: 600;
      color: #b2b2b2;
    }

    .footer_bottom {
      box-sizing: border-box;
      position: relative;
      padding-right: 50%;
    }

    .foot_sns {
      margin-top: 18px;
    }

    .foot_sns ul {
      margin-left: -13px;
    }

    .foot_sns li {
      float: left;
      margin-right: 5px;
    }

    .foot_sns li a {
      display: block;
      font-size: 0;
      color: transparent;
      width: 45px;
      height: 45px;
      background-repeat: no-repeat;
      background-position: center center;
    }

    .foot_sns .insta {
      background-image: url("../images/common/foot_sns_insta.png");
      background-size: auto 18px;
    }

    .foot_sns .youtube {
      background-image: url("../images/common/foot_sns_youtube.png");
      background-size: auto 16px;
    }

    .foot_sns .blog {
      background-image: url("../images/common/foot_sns_blog.png");
      background-size: 21px auto;
    }

    .foot_sns .smartstore {
      background-image: url("../images/common/ic-smartstore.svg");
      background-size: auto 18px;
    }

    .footer_bottom .relation_svc {
      position: absolute;
      right: 0;
      width: 50%;
      bottom: 0;
      max-width: 150px;
    }

    .footer_bottom .relation_svc .list_relation {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      bottom: 40px;
      width: 100%;
      border: 1px #808080 solid;
      background: #292929;
    }

    .footer_bottom .relation_svc .list_relation li a {
      display: block;
      padding: 0 15px;
      line-height: 40px;
      font-size: 12px;
    }

    .footer_bottom .relation_svc .list_relation li a:hover {
      background: #303030;
    }

    .footer_bottom .relation_svc.active .list_relation {
      opacity: 1;
      visibility: visible;
    }

    .footer_bottom .relation_svc .tit_relation a {
      font-size: 12px;
      line-height: 40px;
      border-bottom: 1px #404040 solid;
      display: block;
      position: relative;
      font-family: "Montserrat";
      font-weight: 300;
    }

    .footer_bottom .relation_svc .tit_relation a .ico_corp {
      content: "";
      display: inline-block;
      position: absolute;
      width: 12px;
      height: 7px;
      background-size: 100%;
      background-image: url("../images/common/icon-arrow-down.svg");
      right: 0;
      top: 50%;
      margin-top: -4px;
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
    }

    .footer_bottom .relation_svc.active .tit_relation a .ico_corp {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }

  /* ==========================================================================
	Media Queries for Responsive Design.
========================================================================== */
  @media only screen and (max-width: 1750px) {
    .scroll_indicator {
      right: 130px;
    }

    /* header */
    #pc_header,
    #pc_header.transparent.sub_on {
      min-width: 1440px;
    }

    #pc_header #gnb {
      padding-left: 290px;
    }

    #pc_header .gnb_menu {
      right: 36px;
    }

    #pc_header .inner #logo a,
    #pc_header.transparent.sub_on .inner #logo a,
    .gnb_open #pc_header .inner #logo a {
      /* left:36px; */
    }

    #pc_header #gnb .gnb_list > li a {
      padding: 0 20px;
    }

    .main_visual .main_slider .slider-item > span,
    .main_visual .main_slider .slider-item a {
      left: 308px;
    }

    #pc_header #gnb .gnb_list li .sub {
      left: 16px;
    }

    #pc_header #gnb .gnb_list li .sub.sub_company {
      left: 106px;
    }

    #pc_header #gnb .gnb_list li .sub.sub_ir {
      left: 276px;
    }

    #pc_header #gnb .gnb_list li .sub.sub_customer {
      left: 456px;
    }

    #pc_header .gnb_right {
      right: 90px;
    }

    #pc_header #gnb #gnb_detail {
      padding-left: 140px;
      padding-top: 100px;
      padding-bottom: 100px;
    }

    #pc_header #gnb #gnb_detail .gnb_1_depth > ul {
      left: 330px;
    }

    .gnb_detail_sns {
      margin-top: 100px;
    }

    #pc_header #gnb #gnb_detail .gnb_detail_bg {
      width: 550px;
    }

    #pc_header #gnb li > a .gnb_line,
    #pc_header #gnb li.active > a .gnb_line {
      margin-left: 20px;
      margin-right: 20px;
    }

    /* container */
    #wrap {
      width: 100%;
      min-width: 1440px;
      overflow: hidden;
    }

    /* footer */
    #pc_footer .footer_contents .info_cont:first-child {
    }

    #pc_footer .footer_contents .info_cont:first-child + .info_cont {
    }

    #pc_footer .footer_contents .info_cont:first-child + .info_cont + .info_cont {
      margin: 0;
    }
  }

  @media only screen and (max-width: 1440px) {
    #pc_header .gnb_right {
      left: 945px;
      right: unset;
    }

    #pc_header .gnb_menu {
      left: 1360px;
      right: unset;
    }
  }

  /******* 스크립트 구성용 */
  .motionUp {
    opacity: 0;
  }

  .motionWord {
    display: inline-block;
  }

  
  .underline i {
    display: block;
    border-bottom: 1px solid #000;
    position: absolute;
    bottom: 5px;
    width: 0;
  }

  .textUnderline i {
    display: block;
    border-bottom: 1px solid #000;
    position: absolute;
    bottom: 5px;
    width: 0;
    opacity: 0;
  }

  .deAvcive .textUnderline i {
    opacity: 1;
  }

  /* Chrome, Safari용 스크롤 바 */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border: 3px solid #fff;
  }

  ::-webkit-scrollbar-track {
    background: #efefef;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    height: 50px;
    width: 50px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    border-radius: 8px;
  }

  .placeholder.show {
    width: 96%;
  }

  /* 레이어 팝업 */
  .layer-pop-wrap {
    position: fixed;
    top: 0;
    left: 100%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 100000;
    visibility: hidden;
    overflow: hidden;
    overflow-y: auto;
    transition: left 0s 0.35s ease, visibility 0s 0.35s ease,
      background 0.35s 0s ease;
  }

  .layer-pop-wrap.actived {
    left: 0;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.75);
    transition: left 0s 0s ease, visibility 0s 0s ease, background 0.35s 0s ease;
  }

  .layer-pop-wrap.actived .pop-data {
    opacity: 1;
  }

  .layer-pop-parent {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
  }

  .layer-pop-children {
    display: table-cell;
    width: 100%;
    height: 100%;
    padding: 30px 16px;
    text-align: center;
    vertical-align: middle;
  }

  .pop-data {
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .pop-basic {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 13px 30px 40px 30px;
    overflow: hidden;
    background-color: #fff;
    box-sizing: border-box;
  }

  .pop-basic .btn-pop-close {
    position: absolute;
    top: 36px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0;
    background: url("../images/common/icon-pop-close-black.png")
      center center no-repeat;
    z-index: 15;
  }

  .pop-header {
    display: flex;
    height: 75px;
    align-items: center;
    border-bottom: 2px solid #000;
    box-sizing: border-box;
  }

  #btnTop:hover::before {
    background-image: url("../images/contents/main/left_arrow_on.png");
  }

  #btnTop:hover {
    background: #000;
  }
}

/* top btn */
#btnTop {
  position: fixed;
  font-size: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px #000 solid;
  right: 80px;
  bottom: 40px;
  border-radius: 50%;
  z-index: 5;
  opacity: 0;
}

#btnTop:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  left: 50%;
  top: 50%;
  margin-left: -18px;
  margin-top: -18px;
  background-image: url("../images/contents/main/left_arrow.png");
  transform: rotate(90deg);
}

.post-views.content-post {
  display: none !important;
}

/* 방수백과 */
@media (min-width: 767px) {
  .pc.waterproof {
    margin: 0 auto;
    padding-top: 96px;
    padding-bottom: 200px;
  }

  .waterproof .section03,
  .waterproof .section04,
  .waterproof .section05,
  .waterproof .section06 {
    max-width: 1920px;
  }

  .waterproof .section01 {
    position: relative;
    height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .waterproof .section01 .section01-bg1 {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1;
  }

  .waterproof .section01 .section01-bg2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1;
    display: flex;
    justify-content: center;
    max-height: 60%;
  }

  .waterproof .section01 .section01-bg1 img {
    width: 100%;
  }

  .waterproof .section01 .section01-bg2 img {
    object-fit: contain;
  }

  .waterproof .section01 .section01-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
  }

  .waterproof .section01 h1 {
    margin-top: 28px;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -8px;
  }

  .waterproof .section01 .search-container {
    margin-top: 12px;
  }

  .waterproof .section01 .search-container form {
    display: flex;
    min-width: 702px;
    padding: 12px 16px 12px 8px;
    border-bottom: 5px solid #198347;
  }

  .waterproof .section01 .search-container input {
    width: 100%;
    border: none;
    padding: 0;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.52px;
    background-color: transparent;
  }

  .waterproof .section01 .search-container input::placeholder {
    color: #808080;
  }

  .waterproof .section01 ul {
    max-width: 1180px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
  }

  .waterproof .section01 ul li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 236px;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
  }

  .waterproof .section01 ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .waterproof .section01 ul li a:hover::before {
    background: linear-gradient(0deg, rgba(32, 171, 3, 0.80) 0%, rgba(32, 171, 3, 0.80) 100%), rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(16px);
    opacity: 1;
  }

  .waterproof .section01 ul li a:hover div {
    position: relative;
    z-index: 1;
  }

  .waterproof .section01 ul li a span {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .waterproof .sticky-menu {
    position: relative;
    width: 100%;
    z-index: 4;
  }

  .waterproof .sticky-fixed {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    width: 100%;
  }

  .waterproof .sticky-menu > ul {
    height: 70px;
    display: flex;
    justify-content: center;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #000000;
    box-sizing: content-box;
    background-color: white;
  }

  .waterproof .sticky-menu > ul li {
    display: grid;
    grid-template-columns: 236px;
    align-items: center;
    height: 100%;
    color: #959595;
    cursor: pointer;
  }

  .waterproof .sticky-menu > ul li:last-child {
    background-color: #198347;
    color: #fff;
  }

  .waterproof .sticky-menu > ul li div:not(:last-child),
  .waterproof .sticky-menu > ul li div a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .waterproof .sticky-menu > ul li:last-child > div {
    height: 100%;
  }
  .waterproof .sticky-menu > ul li:last-child > div a {
    height: 100%;
    gap: 4px;
    color: #fff;
  }

  .waterproof .sticky-menu > ul li.active {
    position: relative;
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #fff;
    color: #000000;
  }

  .waterproof .sticky-menu > ul li.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }

  .waterproof .sticky-menu > div {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    color: #18A85F;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
  }

  .waterproof .section02 {
    margin: 200px auto 0;
  }

  .waterproof .section02 .swiper-wrap {
    margin-top: 40px;
  }

  .waterproof .swiper-area,
  .waterproof .section02 .swiper-wrap .item-visual {
    aspect-ratio: 1920 / 756;
  }

  .waterproof .section02 .swiper-wrap .item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .waterproof .btn-swiper-slider-container {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .waterproof .btn-swiper-slider-wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1332px;
    width: 100%;
  }

  .waterproof .section02 .btn-swiper-slider-prev {
    position: relative;
    width: 76px;
    height: 76px;
    font-size: 0;
    background: rgba(255, 255, 255, 0.2);
    top: unset;
    left: unset;
    right: unset;
    margin-top: unset;
  }

  .waterproof .section02 .btn-swiper-slider-prev:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/waterproof/icon-swiper-small-prev-white.svg") center center no-repeat;
  }

  .waterproof .section02 .btn-swiper-slider-next {
    position: relative;
    width: 76px;
    height: 76px;
    font-size: 0;
    background: rgba(255, 255, 255, 0.2);
    top: unset;
    left: unset;
    right: unset;
    margin-top: unset;
  }

  .waterproof .section02 .btn-swiper-slider-next:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/waterproof/icon-swiper-small-next-white.svg") center center no-repeat;
  }

  .waterproof .swiper-pagination {
    position: absolute;
    bottom: 24px;
  }

  .waterproof .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    opacity: 0.2;
  }

  .waterproof .section03 {
    margin: 120px auto 0;
    color: #000;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.4px;
  }

  .waterproof .section03 div.text-animation span {
    position: relative;
    display: inline-block;
  }

  .waterproof .section03 div.text-animation span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background-color: #00a752;
  }

  .waterproof .section03 div.text-animation span.animate-border::after {
    animation: draw-border-bottom 1s linear forwards;
  }

  @keyframes draw-border-bottom {
    0% {
      width: 0;
    }
    80% {
      width: 100%;
    }
    100% {
      width: 100%;
    }
  }

  .waterproof .section03 .youtube-video {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 48px auto 0;
    aspect-ratio: 1180 / 664;
  }

  .waterproof .section03 .youtube-video iframe {
    width: 100%;
    height: 100%;
  }

  .waterproof .section04 {
    max-width: 1180px;
    margin: 312px auto 0;
    padding-left: 0;
    padding-right: 0;
  }

  .waterproof .section04 ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 32px;
    grid-row-gap: 60px;
    margin-top: 90px;
  }

  .waterproof .section04 ul li a div.src {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .waterproof .section04 ul li a div.src img {
    width: 100%;
    aspect-ratio: 372 / 208;
    object-fit: cover;
  }

  .waterproof .section04 ul li a div.title {
    margin-top: 24px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
  }

  .waterproof .section05 {
    max-width: 1180px;
    margin: 312px auto 0;
    padding-left: 0;
    padding-right: 0;
  }

  .waterproof .section05 ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 32px;
    grid-row-gap: 80px;
    margin-top: 40px;
  }

  .waterproof .section05 ul li a div.src {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .waterproof .section05 ul li a div.src img {
    width: 100%;
    aspect-ratio: 372 / 208;
    object-fit: cover;
  }

  .waterproof .section05 ul li a div.title {
    margin-top: 24px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
  }

  .waterproof .section06 {
    margin: 312px auto 0;
    padding-left: 0;
    padding-right: 0;
  }

  .waterproof .section06 .list-wrap {
    max-width: 1180px;
    margin: 64px auto 0;
  }

  .waterproof .section06 .list-wrap > div {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.64px;
  }

  .waterproof .section06 .list-wrap > div span {
    color: #29A665;
  }

  .waterproof .section06 .list-wrap a {
    display: inline-block;
  }

  .waterproof .section06 .list-wrap a div.src {
    aspect-ratio: 1;
  }

  .waterproof .section06 .list-wrap a div.src img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .waterproof .section06 .list-wrap a div.title {
    margin-top: 16px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    letter-spacing: -0.36px;
  }

  .waterproof .section06 .list-wrap a div.desc {
    margin-top: 8px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
  }

  .waterproof .section06 ul.list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    margin-top: 64px;
  }

  .waterproof .sub-title {
    color: #000;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.92px;
  }

  .waterproof div.tabs {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    border-bottom: 1px solid #DDDDDD;
  }

  .waterproof div.tabs button.tab {
    width: 144px;
    height: 72px;
    color: #959595;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  .waterproof div.tabs button.tab:first-child {
    border-left: 1px solid #ddd;
  }

  .waterproof div.tabs button.tab.active {
    position: relative;
    color: #000;
  }

  .waterproof div.tabs button.tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #fff;
  }

  .waterproof #listEnd {
    display: flex;
    justify-content: center;
    margin-top: 56px;
  }

  .waterproof #listEnd .btn_wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 372px;
    height: 64px;
    cursor: pointer;
  }

  .waterproof #listEnd .btn_wrap img {
    position: absolute;
    top: 0;
    left: 0;
  }

  .waterproof #listEnd .btn_wrap button {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #353535;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
    transition: color 0.6s ease;
  }

  .waterproof #listEnd .btn_wrap button svg {
    position: relative;
    display: block;
  }

  .waterproof #listEnd .btn_wrap button svg path {
    fill: #fff;
    transition: fill 0.3s ease;
  }

  .waterproof #listEnd .btn_wrap button .title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .waterproof #listEnd .btn_wrap button:hover {
    color: #fff;
  }

  .waterproof #listEnd .btn_wrap button .title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #29A665;
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    transition: clip-path 0.5s ease-in-out;
    z-index: 1;
  }

  .waterproof #listEnd .btn_wrap button:hover .title::before {
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  }

  .waterproof #listEnd .btn_wrap button .title > span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .waterproof .floating-btn {
    position: fixed;
    bottom: 144px;
    right: 24px;
    z-index: 10000;
  }

  .waterproof #toTheTop {
    height: 72px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .customer-waterproof #formData .input_group {
    display: flex;
    width: 100%;
  }
  .customer-waterproof .input_group input[type="text"] {
    margin-left: 0;
    margin-bottom: 4px;
    width: 100%;
    font-family: "graphie", "Noto Sans KR", sans-serif;
    font-size: 18px;
    height: 60px;
  }
  .customer-waterproof input::placeholder {
    color: #b3b3b3;
    opacity: 1;
  }
  .customer-waterproof #formData .input_group button {
    margin: 0;
    height: 60px;
  }

  .waterproof-search {
    max-width: 1180px;
    margin: 120px auto 240px;
    padding-left: 0;
    padding-right: 0;
  }
  .waterproof-search .search-container form {
    display: flex;
    max-width: 702px;
    margin: 0 auto;
    padding: 12px 16px 12px 8px;
    border-bottom: 5px solid #198347;
  }
  .waterproof-search .search-container input {
    width: 100%;
    border: none;
    padding: 0;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.52px;
    background-color: transparent;
  }
  .waterproof-search .search-container input::placeholder {
    color: #808080;
  }
  .waterproof-search .search-waterproof-faq-list {
    margin-top: 128px;
  }
  .waterproof-search .search-waterproof-faq-list > div {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
  }
  .waterproof-search .search-waterproof-faq-list ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 32px;
    grid-row-gap: 80px;
    margin-top: 48px;
  }
  .waterproof-search .search-waterproof-faq-list ul li a div.src {
    position: relative;
    display: block;
    overflow: hidden;
  }
  .waterproof-search .search-waterproof-faq-list ul li a div.src img {
    width: 100%;
    aspect-ratio: 372 / 208;
    object-fit: cover;
  }
  .waterproof-search .search-waterproof-faq-list ul li a div.title {
    margin-top: 24px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
  }

  .waterproof-search .search-waterproof-video-list {
    margin-top: 96px;
  }
  .waterproof-search .search-waterproof-video-list > div {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
  }
  .waterproof-search .search-waterproof-video-list ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 32px;
    grid-row-gap: 80px;
    margin-top: 48px;
  }
  .waterproof-search .search-waterproof-video-list ul li a div.src {
    position: relative;
    display: block;
    overflow: hidden;
  }
  .waterproof-search .search-waterproof-video-list ul li a div.src img {
    width: 100%;
    aspect-ratio: 372 / 208;
    object-fit: cover;
  }
  .waterproof-search .search-waterproof-video-list ul li a div.title {
    margin-top: 24px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
  }
  .waterproof-search .search-waterproof-lineup-list {
    margin-top: 96px;
  }
  .waterproof-search .search-waterproof-lineup-list > div {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.88px;
  }
  .waterproof-search .search-waterproof-lineup-list ul.list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    margin-top: 64px;
  }
  .waterproof-search .search-waterproof-lineup-list ul a {
    display: inline-block;
  }
  .waterproof-search .search-waterproof-lineup-list ul a div.src {
    aspect-ratio: 1;
  }
  .waterproof-search .search-waterproof-lineup-list ul a div.src img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .waterproof-search ul a div.title {
    margin-top: 16px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    letter-spacing: -0.36px;
  }
  .waterproof-search ul a div.desc {
    margin-top: 8px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
  }
}