@charset "UTF-8";
/*=============================
// 기본 레이아웃 - wrapper
==============================*/
.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  grid-template-areas: "header" "main" "footer";
}
.wrapper header {
  grid-area: header;
  font-family: var(--byme-header-font);
}
.wrapper main {
  grid-area: main;
  position: relative;
  background-color: #FFF;
  z-index: 2;
}
.wrapper footer {
  grid-area: footer;
}

@media (min-width: 1025px) {
  main {
    min-height: 90vh;
  }
}
/*=============================
// 공통요소 - 타이틀 크기 간격
==============================*/
.main_wrap .post-header {
  padding-bottom: var(--byme-section-vertical-padding);
}
.main_wrap .post-header .title {
  font-size: var(--byme-post-header-title-font-size);
}
.main_wrap .post-header .sub-title {
  font-size: var(--byme-sub-title-font-size);
}
.main_wrap .post-body {
  padding-bottom: var(--byme-section-vertical-padding);
}
.main_wrap .post-body .title {
  font-size: var(--byme-view-title-font-size);
}
.main_wrap .post-body .sub-title {
  font-size: var(--byme-sub-title-font-size);
}

.section-title, .post-title {
  margin-bottom: var(--byme-title-margin-bottom);
}

.sub-title {
  margin-bottom: var(--byme-sub-title-margin-bottom);
}

/*======================================
// 브라우저 설정
=====================================*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #92C833;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background-color: #CFEC67;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #7BAB2E;
}

/*======================================
// Index
=====================================*/
main.shop_inn, main.policy_inn {
  margin: 0 0 50px;
}

.image_header {
  height: 350px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wing {
  position: absolute;
  left: 70px;
  top: 60px;
  z-index: 7;
  max-width: 90%;
}

/*======================================
// pre-loader-1
=====================================*/
#preloader1 {
  background: url("/images/byme.png") rgba(255, 255, 255, 0.5) no-repeat scroll center center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  overflow: visible;
  opacity: 0.5;
  z-index: 9999999;
}

/*======================================
// pre-loader-2
=====================================*/
#preloader2 {
  opacity: 1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: linear-gradient(317.37deg, var(--byme-color-primary) 2.76%, var(--byme-color-primary) 63.36%);
}

.loader {
  display: inline-block;
  padding: 0;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

.loader div {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.loader div:nth-child(1) {
  animation-delay: -0.45s;
}

.loader div:nth-child(2) {
  animation-delay: -0.3s;
}

.loader div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*==============================
// Screen Up 버튼 - back-to-top
================================*/
.screenup {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  font-size: 1em;
  color: #fff;
  background: #ccc;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  display: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 99;
}

.screenup:hover {
  color: #fff;
  background: #0034c2;
}

.screenup:hover i {
  animation: toBottomFromTop 0.5s forwards;
}

/*===========================
// Screen Up 버튼 - scrollup
=============================*/
.scrollup {
  position: fixed;
  right: 70px;
  bottom: 44px;
  width: 50px;
  height: 50px;
  text-align: center;
  border: 2px solid #8a99b3;
  border-radius: 50%;
  transition: all 0.4s ease 0s;
  line-height: 46px;
  color: #8a99b3;
  font-size: 23px;
  z-index: 99;
  display: none;
}

.scrollup:hover {
  border-color: #647585;
  color: #647585;
}

/*=============================
// popup - on - off
==============================*/
/*=============================
// template-search
==============================*/
.template-search {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f5f6fa;
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 0.7s ease-in-out;
}
.template-search .search-form {
  text-align: center;
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.template-search .search-form input[type=search] {
  width: 60%;
  color: #000;
  font-size: 40px;
  text-align: left;
  border: none;
  border-bottom: 2px solid var(--byme-color-primary);
  margin: 0 auto;
  padding: 10px 0;
  outline: none;
  background-color: transparent;
}
.template-search .search-form input[type=search]::-moz-placeholder {
  color: #cfcfcf;
}
.template-search .search-form input[type=search]::placeholder {
  color: #cfcfcf;
}
.template-search .search-form .search-btn {
  padding: 28px 60px;
  box-shadow: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  transform: translateX(-150px) translateY(-10px);
  background-color: transparent;
  transition: all 0.3s ease-out;
}
.template-search .search-form .search-btn i {
  margin-left: 0;
}
.template-search .search-form .search-btn:focus {
  box-shadow: none;
  outline: none;
}
.template-search .close {
  position: fixed;
  right: 20px;
  top: 15px;
  color: #000;
  border: none;
  opacity: 0.3;
  visibility: visible;
  padding: 3px 15px 5px;
  font-size: 70px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: transparent;
}
.template-search .close:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.template-search .close:hover {
  opacity: 1;
  background-color: transparent;
}
.template-search.open-section {
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
  visibility: visible;
}

/*=============================
// clipping-board
==============================*/
.clipping-board {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  min-width: 300px;
  background: #f5f6fa;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 0.7s ease-in-out;
}
.clipping-board .search-form {
  margin-top: 15px;
  margin-bottom: 25px;
}
.clipping-board .search-form input[type=search] {
  width: 75%;
  color: #000;
  font-size: var(--byme-small-font-size);
  text-align: left;
  border: none;
  border-bottom: 2px solid var(--byme-color-primary);
  margin: 0 auto;
  padding: 10px 0;
  outline: none;
  background-color: transparent;
}
.clipping-board .search-form input[type=search]::-moz-placeholder {
  color: #cfcfcf;
}
.clipping-board .search-form input[type=search]::placeholder {
  color: #cfcfcf;
}
.clipping-board .folder-list-container {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
.clipping-board .folder-list-container li {
  position: relative;
  list-style-type: none;
  margin-bottom: 10px;
  padding: 5px;
  background-image: url("/images/icons/folders/svg/001-folder.svg");
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: left center;
}
.clipping-board .folder-list-container li .folder-name {
  margin-left: 20px;
}
.clipping-board .folder-list-container li .btn {
  position: absolute;
  right: 10px;
  top: 0;
  margin: 0;
}
.clipping-board .folder-list-container li .btn .submit-add::before {
  content: "\f328";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.clipping-board .folder-list-container li:hover .folder-name {
  color: #222;
}
.clipping-board .folder-list-container li:hover .btn .submit-add::before {
  content: "\f46c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.clipping-board .close {
  position: fixed;
  right: 10px;
  top: 5px;
  color: #000;
  border: none;
  opacity: 0.3;
  visibility: visible;
  padding: 3px 15px 5px;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: transparent;
}
.clipping-board .close:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.clipping-board .close:hover {
  opacity: 1;
  background-color: transparent;
}
.clipping-board.open-section {
  opacity: 1;
  visibility: visible;
}

/*=============================
// social-share
==============================*/
.social-share {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  min-width: 300px;
  background: #f5f6fa;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 0.7s ease-in-out;
}
.social-share .close {
  position: fixed;
  right: 10px;
  top: 5px;
  color: #000;
  border: none;
  opacity: 0.3;
  visibility: visible;
  padding: 3px 15px 5px;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: transparent;
}
.social-share .close:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.social-share .close:hover {
  opacity: 1;
  background-color: transparent;
}
.social-share.open-section {
  opacity: 1;
  visibility: visible;
}

/*======================================
// section
=====================================*/
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section-heading .section-title {
  color: #222;
  font-size: var(--byme-title-font-size);
}
.section-heading .section-dot {
  display: inline-block;
  padding: 0;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ddd;
}
.section-heading .section-line {
  border-top: 1px solid #ddd;
  flex-grow: 1;
  height: 4px;
}
.section-heading.small_style {
  font-size: var(--byme-section-title-font-size);
}

.side-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.side-section-heading .section-title {
  color: #222;
  font-size: 1.5em;
}
.side-section-heading .section-dot {
  display: inline-block;
  padding: 0;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ddd;
}
.side-section-heading .section-line {
  border-top: 1px solid #ddd;
  flex-grow: 1;
  height: 4px;
}
.side-section-heading.small_style {
  font-size: var(--byme-section-title-font-size);
}

.section-padding {
  padding-top: var(--byme-section-vertical-padding);
  padding-bottom: var(--byme-section-vertical-padding);
}
.section-padding .section-title {
  color: #222;
  font-size: var(--byme-section-title-font-size);
  margin-bottom: var(--byme-section-title-margin-bottom);
}

.section-padding-bottom {
  padding-bottom: var(--byme-section-vertical-padding);
}
.section-padding-bottom .section-title {
  color: #222;
  font-size: var(--byme-section-title-font-size);
  margin-bottom: var(--byme-section-title-margin-bottom);
}

.popup-section {
  padding: 1.5rem;
  border: 2px solid #0034c2;
  border-radius: 10px;
}
.popup-section .section-title {
  color: #222;
  font-size: var(--byme-section-title-font-size);
  margin-bottom: var(--byme-section-title-margin-bottom);
}
.popup-section .section-subtitle {
  color: #222;
  font-size: 1em;
  text-align: center;
  margin-bottom: var(--byme-section-sub-title-margin-bottom);
}

/*======================================
// 너비 축소
=====================================*/
.section-limited-width {
  max-width: 800px;
  margin: 0 auto;
}

.form-limited-width {
  max-width: 700px;
  margin: 0 auto;
}

.popup-limited-width {
  max-width: 580px;
}

/*======================================
// reset
=======================================*/
a:link, a:visited, a:focus {
  text-decoration: none;
  outline: 0;
}

.ad-banner-img img {
  max-width: 100%;
}

/*=============================
// mid_nav
==============================*/
.mid_nav {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  border-width: 0;
  border-color: transparent;
  min-height: 90px;
  justify-content: center;
  align-items: center;
  background-color: #EEF0E5;
}

.breadcrumb-wrap .breadcrumb-navi {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0;
  margin-bottom: 0;
  list-style: none;
}
.breadcrumb-wrap .breadcrumb-navi .breadcrumb-item {
  padding-left: 8px;
  font-size: 0.9em;
  color: #646464;
  text-transform: capitalize;
}
.breadcrumb-wrap .breadcrumb-navi .breadcrumb-item a {
  color: #646464;
  text-transform: capitalize;
}
.breadcrumb-wrap .breadcrumb-navi .breadcrumb-item.active {
  color: #222;
}
.breadcrumb-wrap .breadcrumb-navi .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  color: #a3a3a3;
  padding-right: 0.5rem;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.breadcrumb-wrap .breadcrumb-title {
  font-size: var(--byme-title-font-size);
  color: #111;
  padding: 15px 5px 10px;
  font-family: "notokr-medium";
}

@media (max-width: 479px) {
  .mid_nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-width: 0;
    border-color: transparent;
    min-height: 50px;
  }
  .breadcrumb-wrap .breadcrumb-navi .breadcrumb-item {
    font-size: 0.85em;
  }
  .breadcrumb-wrap .breadcrumb-navi .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    color: #a3a3a3;
    padding-right: 0.5rem;
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .breadcrumb-wrap .breadcrumb-title {
    text-align: center;
    padding: 10px 5px 5px;
  }
}
/*=============================
// 카카오톡채널
==============================*/
.quick_menu {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 200;
}
.quick_menu a {
  display: block;
  height: 61px;
  font-size: 24px;
  font-weight: bold;
  text-indent: -9999rem;
  border-radius: 50px;
}
.quick_menu a span {
  font-size: 2em;
}
.quick_menu img {
  position: absolute;
  right: -5px;
  width: 60px;
  height: 61px;
}

/*=============================
// 구글 리캡챠
==============================*/
.g-recaptcha {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/*=============================
// 조직도
==============================*/
.chart-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.chart-area .chart-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.chart-area .chart-container.box-center {
  justify-content: center;
}
.chart-area .chart-container.chart-container_w80 {
  width: 80%;
  margin: 0 auto;
}
.chart-area .chart-container.chart-container_w50 {
  width: 50%;
  margin: 0 auto;
}
.chart-area .chart-container.chart-container_w30 {
  width: 30%;
  margin: 0 auto;
}
.chart-area .chart-container.vertical-row {
  height: 30px;
}
.chart-area .chart-container .vertical-line {
  flex: 1;
  position: relative;
  margin: 0 auto;
  background-color: transparent;
}
.chart-area .chart-container .vertical-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 100%;
  background-color: #977812;
}
.chart-area .chart-container .vertical-line.flex_w_2 {
  flex: 2;
}
.chart-area .chart-container .vertical-non-line {
  flex: 1;
  position: relative;
  margin: 0 auto;
  background-color: transparent;
}
.chart-area .chart-container .horizontal-line {
  flex: 1;
  height: 5px;
  background-color: #977812;
}
.chart-area .chart-container .horizontal-left-line {
  position: relative;
  flex: 1;
  height: 5px;
  background-color: transparent;
}
.chart-area .chart-container .horizontal-left-line::after {
  content: "";
  width: calc(50% + 2.5px);
  height: 5px;
  background-color: #977812;
  position: absolute;
  left: 0;
}
.chart-area .chart-container .horizontal-right-line {
  position: relative;
  flex: 1;
  height: 5px;
  background-color: transparent;
}
.chart-area .chart-container .horizontal-right-line::before {
  content: "";
  width: calc(50% + 2.5px);
  height: 5px;
  background-color: #977812;
  position: absolute;
  right: 0;
}
.chart-area .chart-container .horizontal-non-line {
  flex: 1;
  height: 5px;
  background-color: transparent;
}
.chart-area .chart-container .node-box-line {
  flex: 1;
  position: relative;
  margin: 0 auto;
}
.chart-area .chart-container .node-box-line.flex_w_2 {
  flex: 2;
}
.chart-area .chart-container .node-box-line .node-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 2px solid #f4c225;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.chart-area .chart-container .node-box-line .node-box .box_title {
  background-color: #f4c225;
  font-weight: 600;
}
.chart-area .chart-container .node-box-line .node-box .box_content {
  font-size: 0.95em;
}
.chart-area .chart-container .node-box-line .node-box .step-01 {
  font-size: 1.15em;
  background: linear-gradient(45deg, #0066ff 0%, #00ccff 100%);
  border: 2px solid #0094da;
  padding: 12px 0;
  border-radius: 5px;
  width: 100%;
}
.chart-area .chart-container .node-box-line .node-box .step-02 {
  font-size: 1.1em;
  background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 10px 0;
  border-radius: 5px;
  max-width: 400px;
  width: 100%;
}
.chart-area .chart-container .node-box-line .node-box .step-03 {
  background-color: #f4c225;
  padding: 7px 0;
  border-radius: 5px;
  max-width: 400px;
  width: 100%;
}
.chart-area .chart-container .node-box-line .node-box .step-04 {
  background-color: #fad868;
  border-radius: 5px;
  max-width: 200px;
  width: 100%;
}
.chart-area .chart-container .node-non-box {
  flex: 1;
}

@media (max-width: 767px) {
  .chart-area .chart-container {
    flex-direction: column;
    align-items: center;
  }
  .chart-area .chart-container .node-box {
    width: 100%;
    max-width: none;
    margin: 10px 0;
    line-height: 40px;
  }
  .vertical-line-box.non-line, .horizontal-line-box.non-line {
    display: none;
  }
}
/*=============================
// 콘텐츠 리스트 스타일
==============================*/
/*기본 스타일 - 가로형*/
.post-basic {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  gap: 25px;
  border-bottom: 1px solid #eaeaea;
}
.post-basic .post-img {
  width: 205px;
  height: auto;
  max-height: 300px;
  min-height: 100px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #f5f5f5;
}
.post-basic .post-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: all 1s ease;
  transform: scale(1.02);
}
.post-basic .post-img > a:first-of-type {
  width: 100%;
  height: 100%;
  display: block;
}
.post-basic .post-img > a:first-of-type img {
  height: auto;
  max-height: 130px;
  min-height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-basic:hover .post-img img {
  transform: scale3d(1.1, 1.1, 1);
  overflow: hidden;
}
.post-basic .post-content {
  flex-grow: 1;
  padding: 0;
  min-width: 0;
}
.post-basic .post-content .post-title {
  font-size: 1.4em;
  line-height: 1.5em;
  margin-bottom: 10px;
  word-break: break-all;
}
.post-basic .post-content .post-description {
  width: 100%;
  max-height: 130px;
  font-family: "notokr-regular", sans-serif;
  text-align: justify;
  color: #999;
  font-size: var(--byme-small-font-size);
  line-height: 1.5em;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.post-basic .post-content .post-info {
  font-family: "notokr-regular", sans-serif;
  color: #aaa;
  font-size: 0.95em;
}

@media (max-width: 767px) {
  .post-basic {
    padding: 10px;
  }
  .post-basic .post-img {
    width: 140px;
    height: auto;
    max-height: 140px;
    min-height: 110px;
    flex-shrink: 0;
  }
  .post-basic .post-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .post-basic .post-content .post-description {
    width: 100%;
    max-height: 60px;
  }
}
@media (max-width: 479px) {
  .post-basic {
    padding: 10px;
    justify-content: center;
  }
  .post-basic .post-img {
    width: 100px;
    height: auto;
    max-height: 100px;
    min-height: 80px;
  }
  .post-basic .post-content .post-title {
    font-size: 1.125em;
    margin-bottom: 7px;
  }
  .post-basic .post-content .post-description {
    width: 100%;
    max-height: 60px;
  }
}
/*  세로형 post-img-content-stack */
.post-img-content-stack {
  position: relative;
  margin: 15px 0;
  font-family: "notokr-regular", sans-serif;
}
.post-img-content-stack .post-img {
  max-width: 100%;
  max-height: 500px;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2vw;
}
.post-img-content-stack .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.post-img-content-stack:hover .post-img img {
  transform: scale3d(1.1, 1.1, 1);
}
.post-img-content-stack .post-content {
  width: 100%;
  padding: 5px;
  color: #aaa;
  z-index: 2;
}
.post-img-content-stack .post-content a {
  color: #aaa;
}
.post-img-content-stack .post-content .post-title {
  font-size: 1.4em;
  line-height: 1.5em;
  color: #222;
  margin-bottom: 1vw;
  word-break: break-all;
}
.post-img-content-stack .post-content .post-title a {
  background-size: 0 2px;
  color: #222;
}
.post-img-content-stack .post-content .post-title:hover {
  color: #000;
}
.post-img-content-stack .post-content .post-title:hover a {
  background-size: 100% 2px;
}
.post-img-content-stack .post-content .post-description {
  width: 100%;
  max-height: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #999;
  font-size: 0.95em;
  text-align: justify;
  line-height: 1.5em;
  margin-bottom: 1vw;
  word-break: break-all;
}
.post-img-content-stack .post-content .post-info {
  font-size: var(--byme-small-font-size);
}

@media (max-width: 479px) {
  .post-img-content-stack .post-content .post-title {
    font-size: 1.75em;
  }
}