* {
  outline: 1px solid tomato-;
}

:root {
  --mc: #ebab2b;
  --gold: #cfa66a;
  --wc: #ffffff;
  --gc-light: #999999;
  --gc-dark: #666666;
  --bc: #171717;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.pc_none {
  display: none;
}
.detail_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc);

  width: 200px;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  font-weight: 200;
  font-size: 14px;
  margin: 0 auto;
}

.detail_btn .arrow {
  position: relative;
  margin-left: 30px;
  width: 40px;

  transition: width 0.5s;
}

.detail_btn:hover .arrow {
  width: 60px;
}

.detail_btn .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bc);
}

.detail_btn .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 1px;
  background: var(--bc);
  transform: rotate(45deg);
  transform-origin: right bottom;
}

/* Sub_Header */
#Sub_Header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 999;
}

#Sub_Header .header_wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

#Sub_Header .sitemap_btn {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;

  transition: 0.3s ease-in-out;

  z-index: 999;
}

#Sub_Header .sitemap_btn span {
  position: absolute;
  height: 1px;
  width: 30px;
  background-color: var(--wc);

  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

#Sub_Header .sitemap_btn span:nth-child(1) {
  top: 0;
}

#Sub_Header .sitemap_btn span:nth-child(2),
#Sub_Header .sitemap_btn span:nth-child(3) {
  top: 10px;
}

#Sub_Header .sitemap_btn span:nth-child(4) {
  top: 20px;
}

#Sub_Header .sitemap_btn.on span:nth-child(1),
#Sub_Header .sitemap_btn.on span:nth-child(4) {
  opacity: 0;
}

#Sub_Header .sitemap_btn.on span:nth-child(2) {
  transform: rotate(45deg);
}

#Sub_Header .sitemap_btn.on span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Sub_Header - Res */
@media (max-width: 768px) {
  #Sub_Header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999;
  }

  /* r */
  #Sub_Header h1 {
    width: 120px;
  }

  #Sub_Header .header_wrap {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
  }

  #Sub_Header .sitemap_btn {
    position: relative;
    width: 26px;
    height: 18px;
    cursor: pointer;

    transition: 0.3s ease-in-out;

    z-index: 999;
  }

  #Sub_Header .sitemap_btn span {
    position: absolute;
    height: 1px;
    width: 26px;
    background-color: var(--wc);

    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  }

  #Sub_Header .sitemap_btn span:nth-child(1) {
    top: 2px;
  }

  #Sub_Header .sitemap_btn span:nth-child(2),
  #Sub_Header .sitemap_btn span:nth-child(3) {
    top: 9px;
  }

  #Sub_Header .sitemap_btn span:nth-child(4) {
    top: 16px;
  }

  #Sub_Header .sitemap_btn.on span:nth-child(1),
  #Sub_Header .sitemap_btn.on span:nth-child(4) {
    opacity: 0;
  }

  #Sub_Header .sitemap_btn.on span:nth-child(2) {
    transform: rotate(45deg);
  }

  #Sub_Header .sitemap_btn.on span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/* site_map : gnb */
.gnb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background-color: #000; */

  background-color: #ebab2b;
  backdrop-filter: blur(10px);

  width: 100%;
  height: 100%;
  z-index: 998;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.gnb.on {
  opacity: 1;
  visibility: visible;
}

.gnb .sub_menu {
  display: flex;
  gap: 30px;
  color: var(--wc);

  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
}

.gnb .sub_menu > * {
  flex: 1;

  visibility: hidden;
  transform: translatey(-20px);
  opacity: 0;
  position: relative;
}

.gnb.on .sub_menu > * {
  visibility: visible;
  transform: translatey(0);
  opacity: 1;
}

.gnb.on .sub_menu > *:nth-child(1) {
  transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
}

.gnb.on .sub_menu > *:nth-child(2) {
  transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.gnb.on .sub_menu > *:nth-child(3) {
  transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.gnb.on .sub_menu > *:nth-child(4) {
  transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
}

.gnb.on .sub_menu > *:nth-child(5) {
  transition: visibility 0.5s 0.4s, opacity 0.5s 0.4s, transform 0.5s 0.4s;
}

.gnb.on .sub_menu > *:nth-child(6) {
  transition: visibility 0.5s 0.5s, opacity 0.5s 0.5s, transform 0.5s 0.5s;
}

.gnb .sub_list a {
  font-size: 24px;
  line-height: 72px;
  font-weight: 600;
  display: block;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin: 0 0 24px;
  font-family: "Noto Serif KR", serif;
  white-space: nowrap;
}

.gnb .sub_list ul > li > a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 100;
  color: #fff;
  border-bottom: none;
  margin: 0 0 5px;
}

.gnb .sub_list ul > li > a:hover {
  color: var(--wc);
}

/* site_map : gnb - Res */
@media (max-width: 768px) {
  .pc_none {
    display: block;
  }
  .gnb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background-color: #000; */

    background-color: #ebab2b;
    backdrop-filter: blur(10px);

    width: 100%;
    height: 100%;
    z-index: 998;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .gnb.on {
    opacity: 1;
    visibility: visible;
  }

  .gnb .sub_menu {
    display: flex;
    gap: 30px;
    color: var(--wc);

    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;

    /* r */
    flex-direction: column;
  }

  .gnb .sub_menu > * {
    flex: 1;

    visibility: hidden;
    transform: translatey(-20px);
    opacity: 0;
    position: relative;
  }

  .gnb.on .sub_menu > * {
    visibility: visible;
    transform: translatey(0);
    opacity: 1;
  }

  .gnb.on .sub_menu > *:nth-child(1) {
    transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
  }

  .gnb.on .sub_menu > *:nth-child(2) {
    transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
  }

  .gnb.on .sub_menu > *:nth-child(3) {
    transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
  }

  .gnb.on .sub_menu > *:nth-child(4) {
    transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
  }

  .gnb.on .sub_menu > *:nth-child(5) {
    transition: visibility 0.5s 0.4s, opacity 0.5s 0.4s, transform 0.5s 0.4s;
  }

  .gnb.on .sub_menu > *:nth-child(6) {
    transition: visibility 0.5s 0.5s, opacity 0.5s 0.5s, transform 0.5s 0.5s;
  }

  .gnb .sub_list a {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    display: block;
    color: #fff;
    border-bottom: none;
    margin: 0;

    white-space: nowrap;
  }

  /* r */
  .gnb .sub_list ul {
    display: none;

    padding-top: 15px;
  }

  .gnb .sub_list ul > li > a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 100;
    color: #fff;
    border-bottom: none;
    margin: 0;
  }

  .gnb .sub_list ul > li > a:hover {
    color: var(--wc);
  }
}

/* Sub_banner */
.sub_top {
  position: relative;
  height: 500px;
}

.sub-top-img1 {
  background: url("../images/sub_banner_01.jpg") no-repeat center center/cover;
}

.sub-top-img2 {
  background: url("../images/sub_banner_02.jpg") no-repeat center center/cover;
}

.sub-top-img3 {
  background: url("../images/sub_banner_03.jpg") no-repeat center center/cover;
}

.sub-top-img4 {
  background: url("../images/sub_banner_04.jpg") no-repeat center center/cover;
}

.sub-top-img5 {
  background: url("../images/sub_banner_05.jpg") no-repeat center center/cover;
}

.sub-top-img7 {
  background: url("../images/sub_banner_07.jpg") no-repeat center center/cover;
}

.sub-top-img21,
.sub-top-img22,
.sub-top-img23,
.sub-top-img24,
.sub-top-img25,
.sub-top-img26,
.sub-top-img27 {
  background: url("../images/sub_banner_06.jpg") no-repeat center center/cover;
}

.sub_top .sub_top_tit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: var(--wc);
}

.sub_top .sub_top_tit h2 {
  font-size: 50px;
  font-weight: 500;
  position: relative;
  font-family: "Noto Serif KR", serif;
  letter-spacing: -4px;
}

.sub_top .sub_top_tit h2::before {
  position: absolute;
  content: "";
  height: 60px;
  width: 1px;
  background: var(--wc);

  left: 50%;
  bottom: -80px;

  opacity: 0;
  animation: scr_bar 1s forwards linear;
  transform-origin: top;
}

@keyframes scr_bar {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.sub_top .sub_top_tit span {
  opacity: 0;
  animation: fade 2.5s forwards;
}

@keyframes fade {
  to {
    opacity: 1;
  }
}

/* Sub_banner - Res */
@media (max-width: 768px) {
  .sub_top {
    position: relative;
    height: 500px;
  }

  .sub-top-img1 {
    background: url("../images/m_sub_banner_01.jpg") no-repeat center
      center/cover;
  }

  .sub-top-img2 {
    background: url("../images/m_sub_banner_02.jpg") no-repeat center
      center/cover;
  }

  .sub-top-img3 {
    background: url("../images/m_sub_banner_03.jpg") no-repeat center
      center/cover;
  }

  .sub-top-img4 {
    background: url("../images/m_sub_banner_04.jpg") no-repeat center
      center/cover;
  }

  .sub-top-img5 {
    background: url("../images/m_sub_banner_05.jpg") no-repeat center
      center/cover;
  }

  .sub-top-img7 {
    background: url("../images/m_sub_banner_07.jpg") no-repeat center
      center/cover;
  }

  .sub-top-img21,
  .sub-top-img22,
  .sub-top-img23,
  .sub-top-img24,
  .sub-top-img25,
  .sub-top-img26,
  .sub-top-img27 {
    background: url("../images/m_sub_banner_06.jpg") no-repeat center
      center/cover;
  }

  .sub_top .sub_top_tit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: var(--wc);
  }

  .sub_top .sub_top_tit h2 {
    font-size: 28px;
    font-weight: 600;
    position: relative;

    letter-spacing: -3px;
  }

  .sub_top .sub_top_tit h2::before {
    position: absolute;
    content: "";
    height: 40px;
    width: 1px;
    background: var(--wc);

    left: 50%;
    bottom: -60px;

    opacity: 0;
    animation: scr_bar 1s forwards linear;
    transform-origin: top;
  }

  @keyframes scr_bar {
    from {
      opacity: 0;
      transform: scaleY(0);
    }

    to {
      opacity: 1;
      transform: scaleY(1);
    }
  }

  .sub_top .sub_top_tit span {
    opacity: 0;
    animation: fade 2.5s forwards;
  }

  @keyframes fade {
    to {
      opacity: 1;
    }
  }
}

/* Sub_nav */
.sub_nav_container .sub_nav {
  position: absolute;
  max-width: 1410px;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  z-index: 10;
}

.sub_nav_container .sub_nav .snv_bg {
  /* background: green; */
  background: var(--wc);

  height: 60px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  z-index: -1;
  transition: width 0.5s ease-in-out;

  border-bottom: 1px solid #eee;
}

.sub_nav_container .sub_nav.fixed {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1410px;
  width: 100%;
}

.sub_nav_container .sub_nav.fixed .snv_bg {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}

.sub_nav_container .sub_nav .snv_box .central_snv {
  max-width: 1410px;
  margin: 0 auto;
  position: relative;
  z-index: 1;

  display: flex;
  height: 60px;
  align-items: center;
}

.sub_nav_container .central_snv > li:first-child {
  background: #333;
  color: var(--wc);

  width: 60px;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_nav_container .central_snv > li .home {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

.sub_nav_container .central_snv .sub_link {
  position: relative;
}

.sub_nav_container .central_snv .sub_link span {
  display: block;
  width: 230px;
  line-height: 59px;
  padding: 0 20px;
  background: var(--wc);
  color: var(--bc);

  user-select: none;
  cursor: pointer;
}

.sub_nav_container .central_snv .sub_link .point {
  background: var(--mc);
  color: var(--wc);
  height: 60px;
}

.sub_nav_container .central_snv .sub_link span i {
  float: right;
  line-height: 60px;
}

.sub_nav_container .central_snv .sub_link span.on i {
  transform: rotate(180deg);
}

.sub_nav_container .central_snv .sub_link .s_link ul {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: stretch;

  background: var(--wc);
  width: 100%;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* .scrollable {
    overflow-y: scroll;
    max-height: 300px;
} */

.sub_nav_container .central_snv .sub_link .s_link ul > li {
  line-height: 60px;
  padding: 0 15px;

  transition: background-color 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}

.sub_nav_container .central_snv .sub_link .s_link ul > li:hover {
  background: #f9f9f9;
}

.sub_nav_container .central_snv .sub_link .s_link ul > li:hover a {
  color: var(--mc);
  font-weight: 500;
}

.sub_nav_container .central_snv .sub_link .s_link ul > li > a {
  display: block;
}

.sub_nav_container .central_snv .sub_link .s_link ul.on {
  display: flex;
}

/* Sub_nav - Res */
@media (max-width: 768px) {
  .sub_nav_container .sub_nav {
    position: absolute;
    max-width: 1410px;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    z-index: 10;

    font-size: 13px;
  }

  .sub_nav_container .sub_nav .snv_bg {
    /* background: green; */
    background: var(--wc);

    height: 45px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    z-index: -1;
    transition: width 0.5s ease-in-out;

    border-bottom: 1px solid #eee;
  }

  .sub_nav_container .sub_nav.fixed {
    position: fixed;
    top: 0;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1410px;
    width: 100%;
  }

  .sub_nav_container .sub_nav.fixed .snv_bg {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
  }

  .sub_nav_container .sub_nav .snv_box .central_snv {
    max-width: 1410px;
    margin: 0 auto;
    position: relative;
    z-index: 1;

    display: flex;
    height: 45px;
    align-items: center;
  }

  .sub_nav_container .central_snv > li:first-child {
    background: #333;
    color: var(--wc);

    width: 45px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 12%;
  }

  .sub_nav_container .central_snv > li:nth-child(2),
  .sub_nav_container .central_snv > li:nth-child(3) {
    width: 44%;
  }

  .sub_nav_container .central_snv > li .home {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
  }

  .sub_nav_container .central_snv .sub_link {
    position: relative;
  }

  .sub_nav_container .central_snv .sub_link span {
    display: block;
    /* width: 230px; */
    width: 100%;

    line-height: 44px;
    padding: 0 12px;
    background: var(--wc);
    color: var(--bc);

    user-select: none;
    cursor: pointer;
  }

  .sub_nav_container .central_snv .sub_link .point {
    background: var(--mc);
    color: var(--wc);
    height: 45px;
  }

  .sub_nav_container .central_snv .sub_link span i {
    float: right;
    line-height: 45px;
  }

  .sub_nav_container .central_snv .sub_link span.on i {
    transform: rotate(180deg);
  }

  .sub_nav_container .central_snv .sub_link .s_link ul {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: stretch;

    background: var(--wc);
    width: 100%;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* .scrollable {
        overflow-y: scroll;
        max-height: 200px;
    } */

  .sub_nav_container .central_snv .sub_link .s_link ul > li {
    line-height: 45px;
    padding: 0 8px;

    transition: background-color 0.3s ease, color 0.3s ease,
      font-weight 0.3s ease;
  }

  .sub_nav_container .central_snv .sub_link .s_link ul > li:hover {
    background: #f9f9f9;
  }

  .sub_nav_container .central_snv .sub_link .s_link ul > li:hover a {
    color: var(--mc);
    font-weight: 500;
  }

  .sub_nav_container .central_snv .sub_link .s_link ul > li > a {
    display: block;
  }

  .sub_nav_container .central_snv .sub_link .s_link ul.on {
    display: flex;
  }
}

/* Sub_Content common =================================================================*/
.sub_content .sec {
  padding: 100px 0 100px;
}
.history .sec {
  padding: 100px 0 80px;
}
.subtit_wrap {
  text-align: center;
  margin: 0 auto 80px;
}

.subtit_wrap span {
  font-size: 16px;
  font-weight: 500;
  color: #ebab2b;
  display: block;
  margin: 0 0 32px;
}

.subtit_wrap h2 {
  color: var(--bc);
  font-size: 44px;
  font-family: "Noto Serif KR", serif;
  font-weight: 300;
  position: relative;
  letter-spacing: -2px;
}

.subtit_wrap h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 80px;
  background: var(--bc);

  bottom: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub_container .desc {
  font-size: 18px;
  line-height: 23px;

  word-break: keep-all;
}

.b_r {
  display: none;
}

@media (max-width: 768px) {
  .b_r {
    display: block;
  }
  .sub_content .sec {
    padding: 50px 0 50px;
  }
  .sourcing .sec {
    padding: 50px 0 25px;
  }

  .history .sec {
    padding: 50px 0 25px;
  }

  .coffee_bg {
    display: none;
  }

  .subtit_wrap {
    text-align: center;
    margin: 0 auto 40px;
  }

  .subtit_wrap span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    display: block;
    margin: 0 0 16px;
  }

  .subtit_wrap h2 {
    color: var(--bc);
    font-size: 20px;
    font-family: "Noto Serif KR", serif;
    font-weight: 700;
    position: relative;
    letter-spacing: -1px;
  }

  .subtit_wrap h2::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 60px;
    background: var(--bc);

    bottom: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sub_container .desc {
    font-size: 12px;
    line-height: 17px;
    /* text-align: justify;
        word-break: break-all; */

    text-align: left;
    word-break: break-all;
  }

  .sub_container .desc > .d_none {
    display: none;
  }
}

/* ================================================================================= */
/* Sub_Content : 1-1.브랜?��?��?���????? */
/* 브랜?�� ?���????? */
.brand_introduction {
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  position: relative;
  z-index: 1;
}

.brand_introduction .acorn_bg {
  position: absolute;
  left: 5%;
  top: 5%;
  opacity: 0.1;
  transform: rotate(-35deg);
  z-index: -1;
}

.brand_introduction .brand_intro {
  text-align: center;
  margin: 0 0 48px;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.brand_introduction.on .brand_intro {
  opacity: 1;
}

.brand_introduction .brand_intro .desc {
  margin: 0 0 24px;
}

.v_box {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.8s 0.5s;
  margin-bottom: 100px;
}

.brand_introduction.on .v_box {
  opacity: 1;
}
.v_box video {
  width: 100%;
}

/* 브랜?�� ?��?��?���????? */
.brand_history {
}

.brand_history .history_container {
  display: flex;
  gap: 100px;
  position: relative;
}

.brand_history .history_container .history_bg {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: 0.8s;
}

.brand_history.on .history_container .history_bg {
  opacity: 1;
  transform: translate(0, 0);
}

.brand_history.on .history_container .history_bg img {
  height: 820px;
}

.brand_history .history_wrap .pc_none {
  display: none;
}
.brand_history .history_wrap .history_tit {
  margin: 0 0 20px;

  opacity: 0;
  transition: 0.8s 0.5s;
}

.brand_history.on .history_wrap .history_tit {
  opacity: 1;
}

.brand_history .history_wrap .history_tit span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin: 0 0 32px;
}

.brand_history .history_wrap .history_tit h2 {
  font-size: 120px;
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 700;
  color: #ccc;
}

.brand_history .history_wrap .history_tit h2 strong {
  color: #f37f19;
}

.brand_history .history_wrap .history_year > li {
  margin: 0 0 20px;

  visibility: hidden;
  transform: translatey(-20px);
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
}

.brand_history.on .history_wrap .history_year > li {
  visibility: visible;
  transform: translatey(0);
  opacity: 1;
}

.brand_history.on .history_wrap .history_year > li:nth-child(1) {
  transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(2) {
  transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(3) {
  transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(4) {
  transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(5) {
  transition: visibility 0.5s 0.4s, opacity 0.5s 0.4s, transform 0.5s 0.4s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(6) {
  transition: visibility 0.5s 0.5s, opacity 0.5s 0.5s, transform 0.5s 0.5s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(7) {
  transition: visibility 0.5s 0.6s, opacity 0.5s 0.6s, transform 0.5s 0.6s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(8) {
  transition: visibility 0.5s 0.7s, opacity 0.5s 0.7s, transform 0.5s 0.7s;
}

.brand_history.on .history_wrap .history_year > li:nth-child(9) {
  transition: visibility 0.5s 0.8s, opacity 0.5s 0.8s, transform 0.5s 0.8s;
}

.brand_history .history_wrap .history_year > li span {
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  font-weight: 600;

  font-style: italic;
  font-family: "Nanum Myeongjo", serif;
}

.brand_history .history_wrap .history_year > li ul {
  display: inline-block;
  vertical-align: middle;
}

.brand_history .history_wrap .history_year > li ul > li {
  position: relative;
  font-size: 18px;
  padding-left: 18px;
}
.brand_history .history_wrap .history_year > li ul > li:nth-child(2n) {
  margin-top: 10px;
}

.brand_history .history_wrap .history_year > li ul > li:nth-child(3n) {
  margin-top: 10px;
}

.brand_history .history_wrap .history_year > li ul > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
}

.brand_history .history_wrap .bb_logo {
  position: absolute;
  bottom: 0;
  right: 0;
}

.brand_history .history_wrap .bb_logo img {
  opacity: 0.1;
  width: 350px;
}

/* Sub_Content : 1-1.브랜?��?��?���????? - Res */
@media (max-width: 768px) {
  /* 브랜?�� ?���????? */
  .brand_introduction {
    background: linear-gradient(to bottom, #fff, #f9f9f9);
    position: relative;
    z-index: 1;
  }

  .brand_introduction .acorn_bg {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.1;
    transform: rotate(-35deg);
    z-index: -1;

    width: 100px;
  }

  .brand_introduction .brand_intro {
    text-align: center;
    margin: 0 0 24px;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .brand_introduction.on .brand_intro {
    opacity: 1;
  }

  .brand_introduction .brand_intro .desc {
    margin: 0 0 12px;
  }

  .v_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    transition: 0.8s 0.5s;
  }

  .v_box video {
    /* width: 1100px; */
    width: 100%;
    height: auto;
  }

  /* 브랜?�� ?��?��?���????? */
  .brand_history {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .brand_history .history_container {
    display: flex;
    gap: 50px;
    position: relative;

    flex-direction: column;
    padding: 0 15px;
  }

  .brand_history .history_container .history_bg {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: 0.8s;
  }

  .brand_history.on .history_container .history_bg {
    opacity: 1;
    transform: translate(0, 0);
  }

  .brand_history .history_wrap .history_tit {
    margin: 0 0 20px;

    opacity: 0;
    transition: 0.8s 0.5s;
  }
  .brand_history .history_wrap .pc_none {
    display: block;
  }

  .brand_history.on .history_wrap .history_tit {
    opacity: 1;
  }

  .brand_history .history_wrap .history_tit span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    display: block;
    margin: 0 0 16px;
    font-style: italic;
    font-family: "Nanum Myeongjo", serif;
  }

  .brand_history .history_wrap .history_tit h2 {
    font-size: 60px;
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: 700;
    color: #ccc;
  }

  .brand_history .history_wrap .history_tit h2 strong {
    color: var(--mc);
  }

  .brand_history .history_wrap .history_year > li {
    margin: 0 0 5px;

    visibility: hidden;
    transform: translatey(-20px);
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
  }

  .brand_history.on .history_wrap .history_year > li {
    visibility: visible;
    transform: translatey(0);
    opacity: 1;
  }

  .brand_history.on .history_container .history_bg img {
    height: auto;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(1) {
    transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(2) {
    transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(3) {
    transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(4) {
    transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(5) {
    transition: visibility 0.5s 0.4s, opacity 0.5s 0.4s, transform 0.5s 0.4s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(6) {
    transition: visibility 0.5s 0.5s, opacity 0.5s 0.5s, transform 0.5s 0.5s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(7) {
    transition: visibility 0.5s 0.6s, opacity 0.5s 0.6s, transform 0.5s 0.6s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(8) {
    transition: visibility 0.5s 0.7s, opacity 0.5s 0.7s, transform 0.5s 0.7s;
  }

  .brand_history.on .history_wrap .history_year > li:nth-child(9) {
    transition: visibility 0.5s 0.8s, opacity 0.5s 0.8s, transform 0.5s 0.8s;
  }

  .brand_history .history_wrap .history_year > li span {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    font-weight: 600;
  }

  .brand_history .history_wrap .history_year > li ul {
    display: inline-block;
    vertical-align: middle;
  }

  .brand_history .history_wrap .history_year > li ul > li {
    position: relative;
    font-size: 12px;
    padding-left: 12px;
  }

  .brand_history .history_wrap .history_year > li ul > li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 50%;
  }

  .brand_history .history_wrap .bb_logo {
    position: absolute;
    bottom: -45px;
    right: 0;
  }

  .brand_history .history_wrap .bb_logo img {
    opacity: 0.1;
    width: 100px;
  }
}

/* Sub_Content : 1-2.Message from Paris */
.greeting {
  position: relative;
}

.greeting::before {
  position: absolute;
  content: "";
  top: 0;
  right: -100%;
  width: 50%;
  height: 400px;
  background: #ebab2b;
  background: url(../images/greeting_back.jpg) no-repeat center center/cover;

  overflow: hidden;
  transition: 1s ease-out;
}

.greeting.on::before {
  right: 0;
}

.greeting .greet_bg {
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #fff, #fff2de);
}

.greeting .subtit_wrap {
  text-align: left;
}

.greeting .subtit_wrap h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 80px;
  background: var(--bc);

  bottom: -40px;
  left: 0;
  transform: translate(0, 0);
}

.greeting .greet_wrap {
  display: flex;
  position: relative;
}

.greeting .greet_slogan {
  margin: 0 0 40px;
  opacity: 0;
  transition: 0.8s 0.5s ease-in-out;
}

.greeting.on .greet_slogan {
  opacity: 1;
}

.greeting .ceo_img {
  position: absolute;
  bottom: 40px;
  right: 0;
  opacity: 0;
  transition: 0.8s 0.8s ease-in-out;
}

.greeting.on .ceo_img {
  opacity: 1;
}
.greeting.on .ceo_img img {
  border-radius: 15px;
}

.greeting .greet_slogan strong {
  font-weight: 500;
}
.greeting .greet_txt_wrap .greet_slogan strong {
  font-family: "Poppins", serif;
  font-weight: 600;
  color: #ff9000;
  font-size: 32px;
}

.greeting .greet_slogan p {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--bc);
}

.greeting .txt_wrap {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translate(0, 100px);
  transition: 0.8s ease-in-out;
}
.greet_txt_wrap .txt_wrap {
  margin-bottom: 100px;
}

.greeting.on .txt_wrap {
  opacity: 1;
  transform: translate(0, 0);
}

.greeting .txt_wrap > * {
  flex: 1;
}

.greeting .txt_wrap .french_wrap {
  position: relative;
}

.greeting .txt_wrap .french_wrap::after {
  position: absolute;
  content: "";
  top: 0;
  right: -40px;
  height: 100%;
  width: 1px;
  background-color: #eee;
}

.greeting .txt_wrap .desc {
  margin: 0 0 24px;
}

.greeting .txt_wrap .korean_wrap {
  position: relative;
}

.greeting .txt_wrap .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--mc);

  position: absolute;
  bottom: 0;
  right: 0;
}

/* Sub_Content : 1-2.Message from Paris - Res */
@media (max-width: 768px) {
  .greeting {
    position: relative;

    overflow: hidden;
  }

  .greeting::before {
    position: absolute;
    content: "";
    top: 276px;
    right: -100%;
    width: 100%;
    height: 230px;
    background: url(../images/greeting_back.jpg) no-repeat center center/cover;

    overflow: hidden;
    transition: 1s ease-out;
  }

  .greeting.on::before {
    right: 0;
  }

  .greeting .greet_bg {
    width: 100%;
    /* height: 200px; */
    height: 50px;
    background: linear-gradient(to top, #fff, #fff2de);
  }

  .greeting .subtit_wrap {
    text-align: left;
    /* 
        margin-bottom: 300px; */
  }

  .greeting .subtit_wrap h2::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 60px;
    background: var(--bc);

    bottom: -20px;
    left: 0;
    transform: translate(0, 0);
  }

  .greeting .greet_wrap {
    display: flex;
    position: relative;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .greeting .greet_slogan {
    margin: 0 0 0px;
    opacity: 0;
    transition: 0.8s 0.5s ease-in-out;
  }
  .greet_txt_wrap {
    margin-bottom: 50px;
  }

  .greeting.on .greet_slogan {
    opacity: 1;
  }

  .greeting .ceo_img {
    position: static;
    bottom: 40px;
    right: 0;

    opacity: 0;
    transition: 0.8s 0.8s ease-in-out;
  }

  .greeting.on .ceo_img {
    opacity: 1;
  }

  .greeting .greet_txt_wrap .greet_slogan strong {
    font-weight: 500;
    font-size: 18px;
  }

  .greeting .greet_slogan p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--bc);
    margin-bottom: 15px;
  }
  .greeting .greet_slogan > p > br {
    display: none;
  }
  .greeting .txt_wrap {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    opacity: 0;
    transform: translate(0, 100px);
    transition: 0.8s ease-in-out;
    flex-direction: column;
  }

  .greeting.on .txt_wrap {
    opacity: 1;
    transform: translate(0, 0);
  }

  .greeting .txt_wrap > * {
    flex: 1;
  }

  .greeting .txt_wrap .french_wrap {
    position: relative;
  }

  .greeting .txt_wrap .french_wrap::after {
    /* position: absolute;
        content: "";
        top: 0;
        right: -40px;
        height: 100%;
        width: 1px;
        background-color: #eee; */

    display: none;
  }

  .greeting .txt_wrap .desc {
    margin: 15px 0 0px;
  }
  .greeting .txt_wrap .desc br {
    display: none;
  }

  .greeting .txt_wrap .korean_wrap {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .greeting .txt_wrap .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--mc);

    position: absolute;
    bottom: 0;
    right: 0;
  }
}

/* Sub_Content : 1-3.�?????로벌 ?��?��?��?�� */
.global {
  text-align: center;
  background: linear-gradient(to top, #fff, #f9f9f9);
}

.global .global_wrap {
  margin: 0 0 48px;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.global.on .global_wrap {
  opacity: 1;
}

.global .global_wrap .desc {
  margin: 0 0 24px;
}

.global .map_img {
  position: relative;
  width: 1410px;
  height: 1100px;
  border: 1px solid #dfdede;
  background: url("../images/map.png") no-repeat center center/cover;

  overflow: hidden;
}

.global .map_img .fill {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: var(--wc);
  width: 100%;
  height: 100%;

  transform-origin: 100% 0;
  transform: scaleX(1);
  transition: transform 1.5s ease;
}

.global.on .map_img .fill {
  transform: scaleX(0);
}

/* Sub_Content : 1-3.�?????로벌 ?��?��?��?�� - Res */
@media (max-width: 768px) {
  .global {
    text-align: center;
    background: linear-gradient(to top, #fff, #f9f9f9);
  }

  .global .global_wrap {
    margin: 0 0 24px;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .global.on .global_wrap {
    opacity: 1;
  }

  .global .global_wrap .desc {
    margin: 0 0 12px;
  }

  .global .map_img {
    position: relative;
    /* width: 1410px; */
    /* height: 887px; */
    width: 100%;
    height: 400px;
    border: none;
    background: url("../images/m_map.png") no-repeat center center/contain;

    overflow: hidden;
  }

  .global .map_img .fill {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: var(--wc);
    width: 100%;
    height: 100%;

    transform-origin: 100% 0;
    transform: scaleX(1);
    transition: transform 1.5s ease;
  }

  .global.on .map_img .fill {
    transform: scaleX(0);
  }
}

/* Sub_Content : 1-4.BB 그로?���????? */
/* BB 그로?���????? ?��?��&?���????? */
.bb_grocery {
  text-align: center;
  position: relative;
}

.bb_grocery .sub_container {
  max-width: 100%;
  padding: 0;
}

.bb_grocery .grocery_wrap {
  opacity: 0;
  transition: 0.8s ease-in-out;

  margin: 0 0 40px;
}

.bb_grocery .grocery_wrap .desc {
  margin: 0 0 24px;
}

.bb_grocery.on .grocery_wrap {
  opacity: 1;
}

/* .bb_grocery .grocery_wrap .desc {
    margin: 0 0 24px 0;
} */

.bb_grocery .grocery_recipe {
  opacity: 0;
  transition: 0.8s 0.5s ease-in-out;
}

.bb_grocery.on .grocery_recipe {
  opacity: 1;
}

.bb_grocery .grocery_recipe figure {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 40px;
  position: relative;
  transition: 1s;
}

.bb_grocery .grocery_recipe figure:not(.slick-current) {
  filter: grayscale(1);
}

.bb_grocery .grocery_product {
  position: absolute;
  width: 320px;
  height: 420px;
  padding: 40px 20px;
  background: var(--wc);
  color: var(--bc);
  border: 1px solid #eee;
  box-shadow: 10px 10px 20px rgba(51, 51, 51, 0.25);

  bottom: 120px;
  right: 23%;
  margin: 0 0 0 -500px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  opacity: 0;
  transition: 0.8s 0.5s;
}

.bb_grocery.on .grocery_product {
  opacity: 1;
}

.bb_grocery .grocery_product .g_itm {
  display: none;
  flex-direction: column;
  height: 100%;

  position: relative;
}

.bb_grocery .grocery_product .g_itm::after {
  content: "\e9fb";
  font-family: "xeicon";
  position: absolute;
  bottom: 0;
  right: 24px;
  opacity: 0;
  display: block;
  font-size: 30px;
  padding: 15px;
  background-color: var(--mc);
  color: var(--wc);
  border-radius: 50%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  cursor: pointer;
}

.bb_grocery .grocery_product:hover .g_itm::after {
  bottom: 24px;
  opacity: 1;
}

.bb_grocery .grocery_product .g_itm.on {
  display: flex;
}

.bb_grocery .grocery_product .g_itm h3 {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Nanum Myeongjo", serif;
}

.bb_grocery .grocery_product .g_img {
  border: 1px solid #eee;
}

.bb_grocery .tab_arrows {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);

  max-width: 1440px;
  width: 100%;
  user-select: none;
  cursor: pointer;

  opacity: 0;
  transition: 0.8s 0.5s;
}

.bb_grocery.on .tab_arrows {
  opacity: 1;
}

.bb_grocery .tab_arrows .left {
  position: absolute;
  left: 15px;
  width: 100px;
  height: 30px;
  text-align: right;
  text-transform: uppercase;
  font-size: 13px;
}

.bb_grocery .tab_arrows .left::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  height: 2px;
  background: #333;
}

.bb_grocery .tab_arrows .left::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  width: 20px;
  height: 2px;
  background: #333;

  transform: rotate(-45deg);
  transform-origin: left bottom;
}

.bb_grocery .tab_arrows .right {
  position: absolute;
  right: 15px;
  width: 100px;
  height: 30px;
  text-align: left;
  text-transform: uppercase;
  font-size: 13px;
}

.bb_grocery .tab_arrows .right::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  height: 2px;
  background: #333;
}

.bb_grocery .tab_arrows .right::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  width: 20px;
  height: 2px;
  background: #333;

  transform: rotate(45deg);
  transform-origin: right bottom;
}

.bb_grocery .slick-dots {
  margin: 30px 0;
  text-align: center;
}

.bb_grocery .slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 50%;
}

.bb_grocery .slick-dots li.slick-active {
  background: var(--mc);

  width: 30px;
  border-radius: 20px;
}

.bb_grocery .slick-dots button {
  display: none;
}

/* ?��?��?��?�� */
.bb_partner .partner_wrap {
  margin: 0 0 40px;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.bb_partner.on .partner_wrap {
  opacity: 1;
}

.bb_partner .partner_wrap .desc {
  text-align: center;
}

.bb_partner .logo_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;

  opacity: 0;
  transition: 0.8s 0.5s;
}

.bb_partner.on .logo_container {
  opacity: 1;
}

.bb_partner .logo_container .logo_box {
  border: 1px solid #eee;
}

/* Sub_Content : 1-4.BB 그로?���????? - Res */
@media (max-width: 768px) {
  .bb_grocery {
    text-align: center;
    position: relative;
  }

  .bb_grocery .sub_container {
    max-width: 100%;
    padding: 0 15px;
  }

  .bb_grocery .grocery_wrap {
    opacity: 0;
    transition: 0.8s ease-in-out;

    margin: 0 0 20px;
  }

  .bb_grocery.on .grocery_wrap {
    opacity: 1;
  }

  /* r */
  .bb_grocery .grocery_wrap .desc {
    text-align: left;
    margin: 0 0 12px;
  }

  /* r */
  /* .bb_grocery .grocery_wrap .desc>br {
        display: block;
    } */

  .bb_grocery .grocery_recipe {
    opacity: 0;
    transition: 0.8s 0.5s ease-in-out;
  }

  .bb_grocery.on .grocery_recipe {
    opacity: 1;
  }

  .bb_grocery .grocery_recipe figure {
    /* max-width: 1200px; */
    width: 100%;
    padding: 0;
    margin: 0 40px;
    position: relative;
    transition: 1s;
  }

  .bb_grocery .grocery_recipe figure img {
    height: 400px;
  }

  .bb_grocery .grocery_recipe figure:not(.slick-current) {
    filter: grayscale(1);
  }

  .bb_grocery .grocery_product {
    position: absolute;
    width: 320px;
    height: 420px;

    padding: 10px;
    background: var(--wc);
    color: var(--bc);
    border: 1px solid #eee;
    box-shadow: 10px 10px 20px rgba(51, 51, 51, 0.25);

    bottom: 120px;
    right: 23%;
    margin: 0 0 0 -500px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    opacity: 0;
    transition: 0.8s 0.5s;

    display: none;
  }

  .bb_grocery.on .grocery_product {
    opacity: 1;
  }

  .bb_grocery .grocery_product .g_itm {
    display: none;
    flex-direction: column;
    height: 100%;

    position: relative;
  }

  .bb_grocery .grocery_product .g_itm::after {
    content: "\e9fb";
    font-family: "xeicon";
    position: absolute;
    bottom: 0;
    right: 24px;
    opacity: 0;
    display: block;
    font-size: 30px;
    padding: 15px;
    background-color: var(--mc);
    color: var(--wc);
    border-radius: 50%;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    cursor: pointer;
  }

  .bb_grocery .grocery_product:hover .g_itm::after {
    bottom: 24px;
    opacity: 1;
  }

  .bb_grocery .grocery_product .g_itm.on {
    display: flex;
  }

  .bb_grocery .grocery_product .g_itm h3 {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Nanum Myeongjo", serif;
  }

  .bb_grocery .grocery_product .g_img {
    border: 1px solid #eee;
  }

  .bb_grocery .tab_arrows {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 1440px;
    width: 100%;
    user-select: none;
    cursor: pointer;

    opacity: 0;
    transition: 0.8s 0.5s;

    display: none;
  }

  .bb_grocery.on .tab_arrows {
    opacity: 1;
  }

  .bb_grocery .tab_arrows .left {
    position: absolute;
    left: 15px;
    width: 100px;
    height: 30px;
    text-align: right;
    text-transform: uppercase;
    font-size: 13px;
  }

  .bb_grocery .tab_arrows .left::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
  }

  .bb_grocery .tab_arrows .left::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 20px;
    height: 2px;
    background: #333;

    transform: rotate(-45deg);
    transform-origin: left bottom;
  }

  .bb_grocery .tab_arrows .right {
    position: absolute;
    right: 15px;
    width: 100px;
    height: 30px;
    text-align: left;
    text-transform: uppercase;
    font-size: 13px;
  }

  .bb_grocery .tab_arrows .right::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
  }

  .bb_grocery .tab_arrows .right::after {
    content: "";
    position: absolute;
    top: 60%;
    right: 0;
    width: 20px;
    height: 2px;
    background: #333;

    transform: rotate(45deg);
    transform-origin: right bottom;
  }

  .bb_grocery .slick-dots {
    margin: 15px 0 0;
    text-align: center;
  }

  .bb_grocery .slick-dots li {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #ddd;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
  }

  .bb_grocery .slick-dots li.slick-active {
    background: var(--mc);

    width: 15px;
    border-radius: 20px;
  }

  .bb_grocery .slick-dots button {
    display: none;
  }

  /* ?��?��?��?�� */

  .bb_partner .partner_wrap {
    margin: 0 0 20px;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .bb_partner.on .partner_wrap {
    opacity: 1;
  }

  .bb_partner .partner_wrap .desc {
    text-align: left;
  }

  .bb_partner .logo_container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 50px;

    opacity: 0;
    transition: 0.8s 0.5s;
  }

  .bb_partner.on .logo_container {
    opacity: 1;
  }

  .bb_partner .logo_container .logo_box {
    border: 1px solid #eee;
  }
  .bb_partner .logo_container .logo_box img {
    width: 70%;
    display: flex;
    margin: 7px auto;
  }
}

/* Sub_Content : 1-5.BB ?��까브 */
.bb_la_cave .la_cave_wrap {
  margin: 0 0 40px;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.bb_la_cave.on .la_cave_wrap {
  opacity: 1;
}

.bb_la_cave .la_cave_wrap .desc {
  text-align: center;
  margin: 0 0 24px;
}

.bb_la_cave .pairing_tab {
  opacity: 0;
  transition: 0.8s 0.5s;

  position: relative;
}

.bb_la_cave .la_cave_bg {
  position: absolute;
  width: 300px;
  z-index: -1;
  right: 0;
  bottom: 60px;
  opacity: 0.1;
}

.bb_la_cave .la_cave_bg img {
  transform: rotate(-25deg);
}

.bb_la_cave.on .pairing_tab {
  opacity: 1;
}

.bb_la_cave .pairing_tab .tab_btn {
  display: flex;
  border: 1px solid #ddd;
}

.bb_la_cave .pairing_tab .tab_btn button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;

  border-right: 1px solid #ddd;
  padding: 15px;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 18px;
  color: var(--gc-light);
}

.bb_la_cave .pairing_tab .tab_btn button:nth-child(1).active {
  background-color: #a32b2b;
  font-weight: 500;
  color: var(--wc);
}

.bb_la_cave .pairing_tab .tab_btn button:nth-child(2).active {
  background-color: #e3d97f;
  font-weight: 500;
  color: var(--wc);
}

.bb_la_cave .pairing_tab .tab_btn button:nth-child(3).active {
  background-color: var(--gold);
  font-weight: 500;
  color: var(--wc);
}

.bb_la_cave .pairing_tab .tab_btn button:nth-child(4).active {
  background-color: #5368a7;
  font-weight: 500;
  color: var(--wc);
}

.bb_la_cave .pairing_tab .tab_btn button:last-of-type {
  border: none;
}

.bb_la_cave .pairing_tab .tab_btn > * {
  flex: 1;
}

.bb_la_cave .p_tab {
  display: none;
}

.bb_la_cave .p_tab.active {
  display: block;
}

.bb_la_cave .pairing_slide {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding-top: 60px;
}

.bb_la_cave .pairing_slide .p_itm {
  display: flex;
  gap: 60px;
}

.bb_la_cave .pairing_slide .p_itm .itm_img {
  min-width: 395px;
}

.bb_la_cave .pairing_slide .p_itm .itm_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb_la_cave .pairing_slide .p_itm .itm_txt {
  border-bottom: 1px solid #ddd;
  width: 100%;
  padding-bottom: 40px;
}

.bb_la_cave .pairing_slide .p_itm .itm_txt h3 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bc);
  margin: 0 0 80px;
  position: relative;
}

.bb_la_cave .pairing_slide .p_itm .itm_txt h3::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 3px;
  background-color: var(--gold);
  bottom: -40px;
  left: 0;
}

.bb_la_cave .pairing_slide .p_itm .itm_txt p {
  font-size: 18px;
  line-height: 23px;
  margin: 0 0 24px;

  word-break: keep-all;
}

.bb_la_cave .pairing_slide .itm_info {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin: 0 0 24px;
}

.bb_la_cave .pairing_slide .itm_info .itm_detail {
  display: flex;
  gap: 20px;
  align-items: center;
}

.bb_la_cave .pairing_slide .itm_info .itm_detail .icon_img {
  width: 36px;
  height: 36px;
}

.bb_la_cave .pairing_slide .itm_info .itm_detail .icon_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bb_la_cave .pairing_slide .itm_info .itm_detail strong {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.bb_la_cave .slick-dots {
  text-align: center;
  margin: 30px 0 0;
}

.bb_la_cave .slick-dots li {
  display: inline-block;
  font-size: 0;
  width: 10px;
  height: 10px;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 50%;
}

.bb_la_cave .slick-dots li.slick-active {
  background: var(--mc);

  width: 30px;
  border-radius: 20px;
}

.bb_la_cave .slick-dots button {
  display: none;
}

.bb_la_cave .img_bg {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.bb_la_cave .img_bg img {
  max-width: 550px;
}

.bb_pickup {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

.bb_pickup.on {
  opacity: 1;
}

.pick_tit {
  text-align: center;
  margin: 0 auto 40px;
}

.pick_tit span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin: 0 0 16px;
}

.pick_tit h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--bc);
}

.pick_tit h2::before {
  content: "";
  display: inline-block;
  /* vertical-align: middle; */
  vertical-align: 10px;
  width: 100px;
  height: 1px;
  background: var(--gold);
  margin: 0 30px;
}

.pick_tit h2::after {
  content: "";
  display: inline-block;
  /* vertical-align: middle; */
  vertical-align: 10px;
  width: 100px;
  height: 1px;
  background: var(--gold);
  margin: 0 30px;
}

.bb_pickup .pickup_content {
  display: flex;

  max-width: 1129px;
  margin: 0 auto 40px;
}

.bb_pickup .pickup_content > * {
  flex: 1;
}

.bb_pickup .pickup_content .itm .con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 300px;
  height: 300px;
  background: rgba(207, 166, 106, 0.1);
  border-radius: 50%;
}

.bb_pickup .pickup_content .itm .con i {
  font-size: 80px;
  margin: 0 0 10px;
}

.bb_pickup .pickup_content .itm .con strong {
  font-size: 18px;
  display: block;
  font-weight: 700;
  margin: 0 0 10px;
}

.bb_pickup .pickup_content .itm .con span {
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}
.bb_pickup .pickup_content .itm .con span b {
  font-weight: 600;
}

.bb_pickup .pickup_content .itm:nth-child(odd) .con {
  background: rgba(249, 249, 249, 0.8);
}

.bb_pickup .pickup_content .itm:nth-child(1) .con {
  margin: 0 0 0 30px;
}

.bb_pickup .pickup_content .itm:nth-child(2n) .con {
  margin: 0 0 0 -30px;
  z-index: 1;
  position: relative;
}

.bb_pickup .pickup_content .itm:nth-child(3) .con {
  margin: 0 0 0 -45px;
}

.bb_pickup .pickup_wrap {
  text-align: center;
  margin-bottom: 100px;
}

.bb_pickup .desc {
  font-size: 16px;
  line-height: 21px;
}

.purchase_guidelines {
  position: relative;
}

.tree_bg {
  position: absolute;
  right: 0;
  top: 37%;
  opacity: 0.3;
}

.purchase_guidelines .desc strong {
  display: block;
  color: var(--bc);
  font-weight: 700;
  font-size: 22px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 2.3;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.purchase_guidelines .desc strong::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
}

.purchase_guidelines .desc .m_l {
  padding-left: 20px;
}

.purchase_guidelines .desc {
  margin: 0 32px 24px;
  line-height: 25px;
}
.purchase_guidelines .p-b100 {
  padding-bottom: 100px;
}

.purchase_guidelines .desc b {
  font-weight: 500;
  color: var(--bc);
}

@media (max-width: 768px) {
  .bb_la_cave .la_cave_wrap {
    margin: 0 0 20px;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .bb_la_cave.on .la_cave_wrap {
    opacity: 1;
  }

  .bb_la_cave .la_cave_wrap .desc {
    text-align: left;
    margin: 0 0 12px;
  }

  .bb_la_cave .pairing_tab {
    opacity: 0;
    transition: 0.8s 0.5s;

    position: relative;
  }

  .bb_la_cave .la_cave_bg {
    position: absolute;
    width: 150px;
    z-index: -1;
    right: 0;
    bottom: 60px;
    opacity: 0.1;
  }

  .bb_la_cave.on .pairing_tab {
    opacity: 1;
  }
  .purchase_guidelines .p-b100 {
    padding-bottom: 30px;
  }
  .bb_la_cave .pairing_tab .tab_btn {
    display: flex;
    border: 1px solid #ddd;
  }

  .bb_la_cave .pairing_tab .tab_btn button {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;

    border-right: 1px solid #ddd;
    padding: 9px;
    font-family: "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
      "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 13px;
    color: var(--gc-light);
  }

  .bb_la_cave .pairing_tab .tab_btn button:nth-child(1).active {
    background-color: #a32b2b;
    font-weight: 500;
    color: var(--wc);
  }

  .bb_la_cave .pairing_tab .tab_btn button:nth-child(2).active {
    background-color: #e3d97f;
    font-weight: 500;
    color: var(--wc);
  }

  .bb_la_cave .pairing_tab .tab_btn button:nth-child(3).active {
    background-color: var(--gold);
    font-weight: 500;
    color: var(--wc);
  }

  .bb_la_cave .pairing_tab .tab_btn button:nth-child(4).active {
    background-color: #5368a7;
    font-weight: 500;
    color: var(--wc);
  }

  .bb_la_cave .pairing_tab .tab_btn button:last-of-type {
    border: none;
  }

  .bb_la_cave .pairing_tab .tab_btn > * {
    flex: 1;
  }

  .bb_la_cave .p_tab {
    display: none;
  }

  .bb_la_cave .p_tab.active {
    display: block;
  }

  .bb_la_cave .pairing_slide {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding-top: 0;
  }

  .bb_la_cave .pairing_slide .p_itm {
    display: flex;
    gap: 0;

    flex-direction: column;
  }

  .bb_la_cave .pairing_slide .p_itm .itm_img {
    min-width: 100%;
  }

  .bb_la_cave .pairing_slide .p_itm .itm_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bb_la_cave .pairing_slide .p_itm .itm_txt {
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding-bottom: 20px;
  }

  .bb_la_cave .pairing_slide .p_itm .itm_txt h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--bc);
    margin: 0 0 40px;
    position: relative;
  }

  .bb_la_cave .pairing_slide .p_itm .itm_txt h3::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--gold);
    bottom: -20px;
    left: 0;
  }

  .bb_la_cave .pairing_slide .p_itm .itm_txt p {
    font-size: 12px;
    line-height: 17px;
    /* text-align: justify;
        word-break: break-all; */
    text-align: left;
    word-break: keep-all;
    margin: 0 0 20px;
  }

  .bb_la_cave .pairing_slide .p_itm .itm_txt p > br {
    display: none;
  }

  .bb_la_cave .pairing_slide .itm_info {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin: 0 0 12px;
  }

  .bb_la_cave .pairing_slide .itm_info .itm_detail {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .bb_la_cave .pairing_slide .itm_info .itm_detail .icon_img {
    width: 34px;
    height: 34px;
  }

  .bb_la_cave .pairing_slide .itm_info .itm_detail .icon_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .bb_la_cave .pairing_slide .itm_info .itm_detail strong {
    font-weight: 700;
    display: block;
    margin-bottom: 2px;

    font-size: 12px;
  }

  /* r */
  .bb_la_cave .pairing_slide .itm_info .itm_detail span {
    font-size: 12px;
  }

  .bb_la_cave .slick-dots {
    margin: 15px 0 0;
    text-align: center;
  }

  .bb_la_cave .slick-dots li {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #ddd;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
  }

  .bb_la_cave .slick-dots li.slick-active {
    background: var(--mc);

    width: 15px;
    border-radius: 20px;
  }

  .bb_la_cave .slick-dots button {
    display: none;
  }

  .bb_la_cave .img_bg img {
    max-width: 100%;
  }

  .bb_pickup {
    padding-bottom: 20px;
    opacity: 0;
    transition: 0.8s ease-in-out;
    margin-top: 50px;
  }

  .bb_pickup.on {
    opacity: 1;
  }

  .pick_tit {
    text-align: center;
    margin: 0 auto 20px;
  }

  .pick_tit span {
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin: 0 0 12px;
  }

  .pick_tit h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bc);
  }

  .pick_tit h2::before {
    content: "";
    display: inline-block;
    /* vertical-align: middle; */
    vertical-align: 7px;
    width: 70px;
    height: 1px;
    background: var(--gold);
    margin: 0 15px;
  }

  .pick_tit h2::after {
    content: "";
    display: inline-block;
    /* vertical-align: middle; */
    vertical-align: 7px;
    width: 70px;
    height: 1px;
    background: var(--gold);
    margin: 0 15px;
  }

  .bb_pickup .pickup_content {
    display: flex;

    max-width: 900px;
    margin: 0 auto 20px;

    flex-direction: column;
    align-items: center;
  }

  .bb_pickup .pickup_content > * {
    flex: 1;
  }

  .bb_pickup .pickup_content .itm .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 200px;
    height: 200px;
    background: rgba(207, 166, 106, 0.1);
    border-radius: 50%;
  }

  .bb_pickup .pickup_content .itm .con i {
    font-size: 40px;
    margin: 0 0 5px;
  }

  .bb_pickup .pickup_content .itm .con strong {
    font-size: 14px;
    display: block;
    font-weight: 700;
    margin: 0 0 5px;
  }

  .bb_pickup .pickup_content .itm .con span {
    text-align: center;
    line-height: 1.2;
    font-weight: 500;

    font-size: 13px;
  }
  .bb_pickup .pickup_content .itm:nth-child(2n) .con {
    margin: 0;
  }
  .bb_pickup .pickup_content .itm:nth-child(4) {
    margin-top: -30px;
  }
  .bb_pickup .pickup_content .itm:nth-child(odd) .con {
    background: rgba(249, 249, 249, 0.8);
  }

  .bb_pickup .pickup_content .itm:nth-child(1) .con {
    margin: 0 0 -30px;
  }

  .bb_pickup .pickup_content .itm:nth-child(2) .con {
    margin: 0;
    z-index: 1;
    position: relative;
  }

  .bb_pickup .pickup_content .itm:nth-child(3) .con {
    margin: -30px 0 0;
  }

  .bb_pickup .pickup_content .itm:nth-child(4) .con {
    margin: 0 0 -30px;
  }

  .bb_pickup .pickup_wrap {
    text-align: center;
    margin-bottom: 0;
  }

  .bb_pickup .desc {
    font-size: 12px;
    line-height: 17px;
    margin-top: 50px;
  }

  .bb_pickup .desc > br {
    display: block;
  }

  .purchase_guidelines .desc strong {
    display: block;
    color: var(--bc);
    font-size: 13px;
    border-bottom: 1px solid #e5e5e5;
    line-height: 2.3;
    margin-bottom: 5px;
    position: relative;
    padding-left: 11px;
    line-height: 18px;
    padding-bottom: 5px;
  }
  .purchase_guidelines .desc {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0px 24px;
  }

  .purchase_guidelines .desc strong::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--gold);
  }
  .purchase_guidelines .desc .m_l {
    padding-left: 10px;
    display: block;
  }
  .tree_bg {
    display: none;
  }

  .bb_pickup .purchase_guidelines .desc {
    margin: 0 0 12px;
  }

  .bb_pickup .purchase_guidelines .desc b {
    font-weight: 500;
    color: var(--bc);
  }
}

/* Sub_Content : 2-1.?���????? �??????��?�� */
/* ?���????? ?���????? */
.jamon_guide .j_guide_wrap {
  text-align: center;

  opacity: 0;
  transition: 0.8s ease-in-out;
}
.jamon_guide .j_guide_wrap img {
  border-radius: 15px;
}

.jamon_guide.on .j_guide_wrap {
  opacity: 1;
}

.jamon_guide .j_guide_wrap .desc {
  margin: 0 0 40px;
}

/* 3% ?��리�?�엄 배너 */
.premium_banner {
  width: calc((100% - 1440px) / 2 + 1425px);
  background: url("../images/premiem_banner.jpg") no-repeat left top/cover;
  margin: 0 0 0 auto;
  min-height: 400px;
  padding: 150px 0;
  position: relative;
}

.premium_banner .prm_img {
  position: absolute;
  top: -200px;
  left: -150px;
  z-index: -1;
  transform: rotate(-10deg);

  opacity: 0;
  transition: 0.8s 0.5s;
}

.premium_banner.on .prm_img {
  opacity: 1;
}

.premium_banner .premium_wrap {
  margin: 0;
  text-align: center;
  color: var(--wc);

  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateY(50%);
}

.premium_banner.on .premium_wrap {
  opacity: 1;
  transform: translateY(0);
}

.premium_banner .premium_wrap span {
  display: block;
  font-size: 32px;
  font-weight: 500;
  font-family: "Lora", serif;
  margin: 0 0 24px;
}

.premium_banner .premium_wrap h2 {
  font-size: 44px;
  font-weight: 500;
  font-family: "Nanum Myeongjo", serif;
}

.premium_banner .premium_wrap h2 strong {
  font-weight: 700;
  color: var(--gold);
}

/* equation */
.equation {
  position: relative;
}

.equation::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 350px;
  background: #eee;
  overflow: hidden;
  transition: 1s ease-out;
  z-index: -1;
}

.equation.on::before {
  left: 0;
}

.equation .sub_container {
  display: flex;
  gap: 100px;
}

.equation .eq_img {
  width: 100%;
  position: relative;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.equation.on .eq_img {
  opacity: 1;
}

.equation .eq_img::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  background-color: var(--mc);
  z-index: -1;
  top: -25px;
  left: -25px;
}

.equation .eq_txt {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

.equation.on .eq_txt {
  opacity: 1;
}

.equation .eq_txt .desc {
  margin: 0 0 40px;
}

.equation .eq_txt .img_desc {
  display: flex;
  gap: 40px;
}

.equation .eq_txt .img_desc > * {
  flex: 1;
}

.equation .eq_txt .img_desc .img_con {
  opacity: 0;
  transition: 0.8s 0.5s ease-in-out;
}

.equation.on .eq_txt .img_desc .img_con {
  opacity: 1;
}

/* Sub_Content : 2-1.?���????? �??????��?�� - Res */
@media (max-width: 768px) {
  /* ?���????? ?���????? */
  .jamon_guide .j_guide_wrap {
    text-align: center;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .jamon_guide.on .j_guide_wrap {
    opacity: 1;
  }

  .jamon_guide .j_guide_wrap .desc {
    margin: 0 0 20px;
  }

  /* 3% ?��리�?�엄 배너 */
  .premium_banner {
    /* width: calc((100% - 1440px) / 2 + 1425px); */
    width: 100%;

    /* background: url(../images/premiem_banner.jpg) no-repeat left top/cover; */
    background: url("../images/premiem_banner.jpg") no-repeat center
      center/cover;
    margin: 0;
    /* min-height: 400px; */
    min-height: 230px;
    padding: 90px 0;
    position: relative;
  }

  .premium_banner .prm_img {
    position: absolute;
    top: -200px;
    left: -150px;
    z-index: -1;
    transform: rotate(-10deg);

    opacity: 0;
    transition: 0.8s 0.5s;

    display: none;
  }

  .premium_banner.on .prm_img {
    opacity: 1;
  }

  .premium_banner .premium_wrap {
    margin: 0;
    text-align: center;
    color: var(--wc);

    opacity: 0;
    transition: 0.8s ease-in-out;
    transform: translateY(50%);
  }

  .premium_banner.on .premium_wrap {
    opacity: 1;
    transform: translateY(0);
  }

  .premium_banner .premium_wrap span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-family: "Lora", serif;
    margin: 0 0 12px;
  }

  .premium_banner .premium_wrap h2 {
    font-size: 20px;
    font-weight: 500;
    font-family: "Nanum Myeongjo", serif;
  }

  .premium_banner .premium_wrap h2 strong {
    font-weight: 700;
    color: var(--gold);
  }

  /* equation */
  .equation {
    position: relative;
  }

  .equation::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 350px;
    background: #eee;
    overflow: hidden;
    transition: 1s ease-out;
    z-index: -1;
  }

  .equation.on::before {
    left: 0;
  }

  .equation .sub_container {
    display: flex;
    gap: 50px;

    flex-direction: column-reverse;
  }

  .equation .eq_img {
    width: 100%;
    position: relative;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .equation.on .eq_img {
    opacity: 1;
  }

  .equation .eq_img::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    background-color: var(--mc);
    z-index: -1;
    top: -15px;
    left: -15px;
  }

  .equation .eq_txt {
    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .equation.on .eq_txt {
    opacity: 1;
  }

  .equation .eq_txt .desc {
    margin: 0 0 20px;
  }

  .equation .eq_txt .img_desc {
    display: flex;
    gap: 15px;

    flex-direction: column;
  }

  .equation .eq_txt .img_desc > * {
    flex: 1;
  }

  .equation .eq_txt .img_desc .img_con {
    opacity: 0;
    transition: 0.8s 0.5s ease-in-out;
  }

  .equation.on .eq_txt .img_desc .img_con {
    opacity: 1;
  }
}

/* Sub_Content : 2-2.?��??�테�????? �??????��?�� */
.char_guide {
  position: relative;
}

.sub_content .char_guide {
  padding: 85px 0;
}
.sub_content .menu {
  padding: 100px 0;
}

.char_guide .slice_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  z-index: -1;
}

.char_guide .subtit_wrap {
  text-align: center;
}

.char_guide .subtit_wrap h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 80px;
  background: var(--bc);

  bottom: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.char_guide .c_guide_wrap {
  text-align: center;
  margin: 0 0 40px;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.char_guide.on .c_guide_wrap {
  opacity: 1;
}

.char_guide .c_guide_wrap .desc {
  text-align: center;
  margin: 0 0 40px;
}

.char_guide .dot {
  position: relative;
}

.char_guide .dot span::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -222px;
  margin: 0 0 0 177px;

  background: #f08d4d;
  border-radius: 50%;
  opacity: 0.2;

  animation: circle 2s infinite;
}

.container-wrapper {
  margin: 7% auto;
  position: relative;
  max-width: 500px;
  overflow: hidden;
}

/* CSS Tab styling is start here */
.char_guide .tab-container {
  margin-top: 100px;
  position: relative;
}

.char_guide .coffee_bg {
  position: absolute;
  top: 680px;
  left: -260px;
  width: 400px;
  z-index: 1;
}

/* Tab menu styling*/
input.tab-menu-radio {
  display: none;
}
label.tab-menu {
  display: inline-block;
  float: left;
  padding: 15px 0;
  cursor: pointer;
  z-index: 99;
  width: 49.3%;
  text-align: center;
  font-weight: 400;
  background-color: #fff6e6;
  font-size: 25px;
}
.char_guide .tab-container .tab-menu2 {
  float: right;
}
/* End Tab menu styling*/

/* Tab content styling*/

.tab-content {
  top: -3px;
  clear: both;
  width: 100%;
  position: relative;
  padding: 20px;
  background-color: #fff;
}
/* End Tab content styling*/

/* CSS tab core */
.tab-menu-radio:checked + label {
  -webkit-transition: all 1s;
  /* Optional */
  -moz-transition: all 1s;
  /* Optional */
  transition: all 1s;
  /* Optional */
  color: #fff;
  background-color: #e49c21;
}
.tab-content .tab {
  height: 0;
  opacity: 0;
}
#tab-menu1:checked ~ .tab-content .tab-1,
#tab-menu2:checked ~ .tab-content .tab-2,
#tab-menu3:checked ~ .tab-content .tab-3 {
  -webkit-transition: opacity 1s;
  /* Optional */
  -moz-transition: opacity 1s;
  /* Optional */
  transition: opacity 1s;
  /* Optional */
  height: auto;
  opacity: 1;
}
/* End CSS tab core */
.tab-content ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tab-content .tab ul li {
  width: 20%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 85px;
  font-size: 18px;
  z-index: 6;
}

.tab-content .tab ul li img {
  margin-bottom: 20px;
}

@keyframes circle {
  0% {
    transform: scale(0);
    outline: 0 solid rgba(255, 255, 255, 1);
  }

  100% {
    transform: scale(1);
    outline: 20px solid rgba(255, 255, 255, 0);
  }
}
.char_guide .char_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  transition: 0.8s ease-in-out;
}
.char_guide.on .char_list {
  opacity: 1;
}

.char_guide .char_list > li {
  font-size: 18px;
  line-height: 13px;
  border-radius: 13px;
  box-shadow: 5px 5px 5px 5px rgb(251, 251, 251);
  margin: 11px;
  background-color: #e49c21;
  color: #fff;
  width: 23.333%;
  flex-direction: row;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff2db;
  height: 100px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.char_guide .char_list > li:hover {
  background-color: #ed6a15;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.char_guide .char_list > li:nth-child(1) {
  background-color: #ed6a15;
}
.char_guide .char_list > li:nth-child(1):hover {
  background-color: #e49c21;
}

.char_guide .char_list > li.show {
  opacity: 1;
  transform: translateY(0);
}

.char_guide .char_list > li strong {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  position: relative;
  padding: 0 15px;
  color: #fff;
}
/*
.char_guide .char_list > li strong::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 50%;
}*/

.char_guide .char_list > li strong b {
}

.char_guide .scenery_bg {
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: none;
}

/* Sub_Content : 2-2.?��??�테�????? �??????��?�� - Res */
@media (max-width: 768px) {
  label.tab-menu {
    font-size: 13px;
    padding: 11px 0;
    width: 48%;
  }

  .sub_content .char_guide {
    padding: 50px 0;
  }
  .char_guide .tab-container {
    margin-top: 0;
  }
  .tab-content .tab ul li img {
    margin-bottom: 10px;
  }
  .char_guide .char_list {
    padding-top: 30px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    justify-content: center;
  }
  label.tab-menu {
    font-display: 13px;
  }
  .tab-content .tab ul li {
    font-size: 12px;
    margin-top: 20px;
    width: 33%;
  }

  .char_guide {
    position: relative;
  }

  .char_guide .slice_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;

    display: none;
  }

  .char_guide .subtit_wrap {
    text-align: center;
  }

  .char_guide .subtit_wrap h2::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 60px;
    background: var(--bc);

    bottom: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .char_guide .c_guide_wrap {
    text-align: center;
    margin: 0 0 30px;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .char_guide.on .c_guide_wrap {
    opacity: 1;
  }

  .char_guide .c_guide_wrap .desc {
    text-align: center;
    margin: 0 0 20px;
  }

  .char_guide .dot {
    position: relative;
  }

  .char_guide .dot span::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: -194px;
    margin: 0 0 0 202px;

    background: #f08d4d;
    border-radius: 50%;
    opacity: 0.2;

    animation: circle 2s infinite;
  }

  @keyframes circle {
    0% {
      transform: scale(0);
      outline: 0 solid rgba(255, 255, 255, 1);
    }

    100% {
      transform: scale(1);
      outline: 20px solid rgba(255, 255, 255, 0);
    }
  }

  .char_guide .char_list {
    padding-top: 0;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
  }

  .char_guide .char_list > li {
    height: 80px;
    width: 49%;
    font-size: 12px;
    line-height: 17px;
    /* text-align: justify;
        word-break: break-all; */
    text-align: left;
    word-break: keep-all;
    margin: 0 0 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }

  .char_guide .char_list > li.show {
    opacity: 1;
    transform: translateY(0);
  }

  .char_guide .char_list > li strong {
    text-align: center;
    padding: 0 10px;
    display: block;
    font-size: 13px;
    line-height: 17px;
    /* border-bottom: 1px solid #eee; */
    margin: 0 0 5px;
    position: relative;
  }
  /*
  .char_guide .char_list > li strong::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 50%;
  }
*/
  .char_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .char_guide .char_list > li strong b {
  }

  .char_guide .scenery_bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
  }
}

@media (max-width: 430px) {
  .char_guide .dot span::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: -139px;
    margin: 0 0 0 125px;

    background: #f08d4d;
    border-radius: 50%;
    opacity: 0.2;

    animation: circle 2s infinite;
  }
}

@media (max-width: 390px) {
  .char_guide .dot span::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: -128px;
    margin: 0 0 0 110px;

    background: #f08d4d;
    border-radius: 50%;
    opacity: 0.2;

    animation: circle 2s infinite;
  }
}

@media (max-width: 360px) {
  .char_guide .dot span::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: -120px;
    margin: 0 0 0 100px;

    background: #f08d4d;
    border-radius: 50%;
    opacity: 0.2;

    animation: circle 2s infinite;
  }
}

/* Sub_Content : 2-3.?��?��?��?�� */
/* ?��?��?��?�� ?���????? */
.sourcing_farm {
  position: relative;
}
.sourcing_farm {
}

.sourcing_farm .pairing_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 1%;
  opacity: 0.3;
}

.m_sourcing_banner {
  display: none;
}

.sourcing_farm .sourcing_wrap {
  text-align: center;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.sourcing_farm.on .sourcing_wrap {
  opacity: 1;
}

.sourcing_farm .sourcing_wrap .desc {
  margin: 0 0 40px;
}
.sourcing_farm .sourcing_wrap .desc span {
  font-weight: 700;
  font-size: 28px;
  padding-bottom: 15px;
  display: block;
  line-height: 35px;
}
.sourcing_farm .sourcing_wrap .desc:last-child {
  margin: 0;
}

/* ?��?��?��?�� �??????�� */
.sourcing_map {
  position: relative;
  padding-bottom: 100px;
}

.sourcing_map::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 550px;
  background-color: #f8f3e7;
}

.sourcing_map .map_img {
  position: relative;
  width: 1410px;
  height: 867px;
  background: url("../images/sourcing_map.png") no-repeat center center/cover;

  overflow: hidden;
}

.sourcing_map .map_img .fill {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: var(--wc);
  width: 100%;
  height: 100%;

  transform-origin: 100% 0;
  transform: scaleX(1);
  transition: transform 1.5s ease;
}

.sourcing_map.on .map_img .fill {
  transform: scaleX(0);
}

/* ?��?��?��?�� ?���????? */
.sourcing_expert .sub_container figure {
  position: relative;
  overflow: hidden;
}

.sourcing_expert .sub_container figure .box {
  overflow: hidden;
}

.sourcing_expert .sub_container figure img {
  transition: 0.5s;
  border-radius: 11px;
}

.sourcing_expert .sub_container figure:hover img {
  transform: scale(1.2);
}

.sourcing_expert .sub_container figure .cover {
  position: absolute;
  inset: 0 auto auto 100%;
  width: 100%;
  height: 100%;

  background: rgb(255 140 28 / 90%);
  color: #ffffff;

  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.sourcing_expert .sub_container figure .cover h3 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.sourcing_expert .sub_container figure:hover .cover {
  inset: 0 auto auto 0;
  opacity: 1;
}

.sourcing_expert .sub_container figure .cover .left_line {
  position: absolute;
  top: 32%;
  left: 19%;
  transform: translate(-50% -50%);
  width: 40px;
  height: 40px;
  border-left: 2px solid var(--wc);
  border-top: 2px solid var(--wc);
}

.sourcing_expert .sub_container figure .cover .right_line {
  position: absolute;
  top: 63%;
  left: 78%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 40px;
  height: 40px;
  border-left: 2px solid var(--wc);
  border-top: 2px solid var(--wc);
}

/* Sub_Content : 2-3.?��?��?��?�� - Res */
@media (max-width: 768px) {
  .sourcing_banner {
    display: none;
  }

  /* ?��?��?��?�� ?���????? */
  .m_sourcing_banner {
    display: block;

    margin: 0 0 40px;
  }
  .sourcing_farm {
  }
  .sourcing_farm .sourcing_wrap {
    text-align: center;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }
  .sourcing_farm .pairing_bg {
    display: none;
  }
  .sourcing_farm .sourcing_wrap .desc span .sourcing_farm.on .sourcing_wrap {
    opacity: 1;
  }

  .sourcing_farm .sourcing_wrap .desc {
    margin: 0 0 20px;
  }
  .sourcing_farm .sourcing_wrap .desc span {
    font-size: 18px;
    padding-bottom: 7px;
    display: flex;
    line-height: 22px;
  }

  .sourcing_farm .sourcing_wrap .desc:last-child {
    margin: 20px 0 0;
  }

  /* ?��?��?��?�� �??????�� */
  .sourcing_map {
    position: relative;
    padding: 0;

    overflow: hidden;
  }

  .sourcing_map::before {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    /* height: 150px; */
    background: #f9f9f9;

    display: none;
  }

  .sourcing_map .map_img {
    position: relative;
    /* width: 1410px; */
    /* height: 741px; */
    width: 93%;
    height: 310px;
    border: none;
    background: url("../images/m_sourcing_map.jpg") no-repeat center
      center/cover;

    overflow: hidden;
  }

  .sourcing_map .map_img .fill {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: var(--wc);
    width: 100%;
    height: 100%;

    transform-origin: 100% 0;
    transform: scaleX(1);
    transition: transform 1.5s ease;
  }

  .sourcing_map.on .map_img .fill {
    transform: scaleX(0);
  }

  /* ?��?��?��?�� ?���????? */
  /* r */
  .sourcing_expert .sub_container {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
  }

  .sourcing_expert .sub_container figure {
    position: relative;
    overflow: hidden;
  }

  .sourcing_expert .sub_container figure .box {
    overflow: hidden;
  }

  .sourcing_expert .sub_container figure img {
    transition: 0.5s;
  }

  .sourcing_expert .sub_container figure:hover img {
    transform: scale(1.2);
  }

  .sourcing_expert .sub_container figure .cover {
    position: absolute;
    inset: 0 auto auto 100%;
    width: 100%;
    height: 100%;

    background: rgba(5, 30, 56, 0.9);
    color: #ffffff;

    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .sourcing_expert .sub_container figure .cover h3 {
    font-family: "Nanum Myeongjo", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .sourcing_expert .sub_container figure:hover .cover {
    inset: 0 auto auto 0;
    opacity: 1;

    display: none;
  }

  .sourcing_expert .sub_container figure .cover .left_line {
    position: absolute;
    top: 32%;
    left: 19%;
    transform: translate(-50% -50%);
    width: 40px;
    height: 40px;
    border-left: 2px solid var(--wc);
    border-top: 2px solid var(--wc);
  }

  .sourcing_expert .sub_container figure .cover .right_line {
    position: absolute;
    top: 63%;
    left: 78%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: 40px;
    height: 40px;
    border-left: 2px solid var(--wc);
    border-top: 2px solid var(--wc);
  }
}

/* Sub_Content : 2-4.벨로????�� ?��?�� */
.M_bellota_choice {
  display: none;
}

.bellota_choice .choice_wrap {
  text-align: center;
  margin: 0 0 80px;
}

.bellota_choice .equipment_wrap {
  display: flex;
  gap: 80px;
  justify-content: center;
}

.bellota_choice .equipment_wrap > * {
  /*flex: 1;*/
}

.bellota_choice .equipment_wrap {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.bellota_choice .equipment_wrap.show {
  opacity: 1;
}

.bellota_choice .equipment_wrap .equip_img {
  position: relative;
  width: 665px;
  height: 575px;

  overflow: hidden;
}

.bellota_choice .equipment_wrap .eq_01 {
  background: url("../images/equip_01.png") no-repeat center center;
}

.bellota_choice .equipment_wrap .eq_02 {
  background: url("../images/equip_02.jpg") no-repeat center center/cover;
}

.bellota_choice .equipment_wrap .eq_03 {
  background: url("../images/equip_03.jpg") no-repeat center center/cover;
}

.bellota_choice .equipment_wrap .eq_04 {
  background: url("../images/equip_04.jpg") no-repeat center center/cover;
}

.bellota_choice .equipment_wrap .eq_05 {
  background: url("../images/equip_05.jpg") no-repeat center center/cover;
}

.bellota_choice .equipment_wrap .equip_img .fill {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: var(--wc);
  width: 100%;
  height: 100%;

  transform-origin: 100% 0;
  transform: scaleX(1);
  transition: transform 1.5s ease;
}

.bellota_choice .equipment_wrap.on .equip_img .fill {
  transform: scaleX(0);
}

.bellota_choice .equipment_wrap .equip_txt {
  margin: 30px;
  letter-spacing: -0.3px;
}

.bellota_choice .equipment_wrap .equip_txt span {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin: 0 0 24px;
}

.bellota_choice .equipment_wrap .equip_txt h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 48px;
  position: relative;
}

.bellota_choice .equipment_wrap .equip_txt h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #eee;
  bottom: -24px;
  left: 0;
}

.bellota_choice .equipment_wrap .equip_txt h3 strong {
  font-weight: 700;
}

.bellota_choice .equipment_wrap .equip_txt .desc {
  display: inline-block;
  vertical-align: middle;
}

.bellota_choice .equipment_wrap .equip_txt .desc > li {
  position: relative;
  padding-left: 18px;
  line-height: 31px;
}

.bellota_choice .equipment_wrap .equip_txt .desc > li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
}

/* Sub_Content : 2-4.벨로????�� ?��?�� - Res */
@media (max-width: 768px) {
  .M_bellota_choice {
    display: block;

    padding-top: 50px;
    padding-bottom: 35px;
  }

  .bellota_choice {
    display: none;
  }

  .M_bellota_choice .choice_wrap {
    margin: 0 0 20px;
  }

  .M_bellota_choice .choice_wrap .desc {
    text-align: center;
  }

  .M_bellota_choice .choice_wrap br {
    display: block;
  }

  .M_bellota_choice .equipment_wrap {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;

    margin: 0 0 15px;
  }

  .M_bellota_choice.on .equipment_wrap {
    opacity: 1;
  }

  .M_bellota_choice .equipment_wrap .equip_img {
    border: 1px solid #eee;
    margin: 0 0 15px;
  }

  .M_bellota_choice .equipment_wrap .equip_txt span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin: 0 0 5px;
  }

  .M_bellota_choice .equipment_wrap .equip_txt h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px;
    position: relative;
  }

  .M_bellota_choice .equipment_wrap .equip_txt h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    bottom: -10px;
    left: 0;
  }

  .M_bellota_choice .equipment_wrap .equip_txt h3 strong {
    font-weight: 700;
  }

  .M_bellota_choice .equipment_wrap .equip_txt .desc {
    display: inline-block;
    vertical-align: middle;
  }

  .M_bellota_choice .equipment_wrap .equip_txt .desc > li {
    position: relative;
    padding-left: 12px;
    line-height: 17px;
  }

  .M_bellota_choice .equipment_wrap .equip_txt .desc > li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 50%;
  }
}

/* Sub_Content : 2-5.카빙 */
.carving .carving_wrap {
  text-align: center;

  opacity: 0;
  transition: 0.8s ease-in-out;
}

.carving.on .carving_wrap {
  opacity: 1;
}

.carving .carving_wrap .desc {
  margin: 0 0 40px;
}

.carving .v_content {
  max-width: 1200px;
  margin: 0 auto;
}

.carving .video_box {
  position: relative;
  background: var(--wc);
  padding-bottom: 56.25%;
}

.carving .video_box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sub_Content : 2-5.카빙 - Res */
@media (max-width: 768px) {
  .carving .carving_wrap {
    text-align: center;

    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .carving.on .carving_wrap {
    opacity: 1;
  }

  .carving .carving_wrap .desc {
    margin: 0 0 20px;
  }

  .carving .v_content {
    max-width: 1200px;
  }

  .carving .video_box {
    position: relative;
    background: var(--wc);
    padding-bottom: 56.25%;
  }

  .carving .video_box > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* Shop */
.sct_10 .sct_basic {
  font-size: 14px !important;
  margin: 12px 0 0 !important;
  line-height: 24px;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-weight: 400;
}

.sct_10 .sct_basic.basic2 {
  font-size: 14px !important;
  font-weight: normal;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  line-height: 1.2;
}

.sct_10 .sct_cost {
  margin: 10px 0;
  /* font-size: 1.167em */
  font-size: 14px;
}

.sct_10 .sct_cost .main_price {
  font-size: 18px;
  color: var(--bc);
  font-weight: 600;
  display: inline-block;
  line-height: 1.2;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.sct_10 .sct_cost .main_price2 p {
  display: inline-block;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 18px;
  color: #ee3819;
  font-weight: 700;
}

.sct_10 .sct_txt {
  display: block;
  margin: 0;
  /* font-size: 1.167em; */
  font-weight: 600;
  height: 22px;
  line-height: 23px;
  overflow: hidden;
}

.sct_10 .sct_txt a {
  font-size: 18px !important;

  color: var(--bc);
}

#sct_sort li a:hover {
  color: var(--mc);
  font-weight: 500;
}

#sct {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.sct_10 .sct_li {
  position: relative;
  float: left;
  margin: 0 30px 30px 0;
  text-align: center;
}

.sct img {
  border: 1px solid #ddd;
}

#ssch_sort li {
  float: right;
  position: relative;
  margin-left: -1px;
  /*height:45px;*/
  padding: 0 0 15px;
  line-height: 15px;
}

#ssch_sort li a {
  border-left: 0 solid #ddd;
  display: block;
  padding: 0 0 0 15px;
}

/* shop - ?��?�� */
#sit_ov_wrap {
  margin: 0;
  border-top: none;
  zoom: 1;
  padding-top: 108px;
}

#sit_ov {
  position: relative;
  float: right;
  padding-top: 0;
  width: 705px;
  height: auto !important;
  height: 355px;
  min-height: 355px;
}

#sit_pvi {
  float: left;
  width: 705px;
  padding: 0;
}

#sit_pvi_big img {
  width: 100%;
  object-fit: none;
}

#sit_caname {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  display: block;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  margin: 0 0 10px;
}

#sit_title {
  margin: 0 0 80px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--bc);

  position: relative;
}

#sit_title::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 100px;
  background: var(--gold);
  bottom: -40px;
  left: 0;
}

#sit_desc {
  margin: 0 0 10px;
  padding: 0;
  color: #333;
  font-size: 18px;
  line-height: 18px;
}

#sct_sortlst {
  /* margin: 20px 0; */
  margin-bottom: 15px;
  border-top: 0 solid #000;
  border-bottom: 0 solid #dfdfdf;
  zoom: 1;
}

.new_price {
  font-weight: 700;
  font-size: 25px;
  color: var(--bc);
}

.new_price ul li:last-child {
  font-size: 25px;
  color: #333;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.new_price ul li.panme {
  color: var(--bc);
}

#sit_ov_btn button {
  width: 231px;
  float: left;
  margin-right: 5px;
  height: 50px;
  margin-bottom: 10px;
  /*font-weight:bold;*/
  font-size: 18px;
}

#sit_btn_buy {
  background: var(--mc);
  color: #fff;
  border: 0;
}

#sit_btn_wish {
  display: inline-block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 18px;
  float: right;
  width: 232px;
  height: 50px;
  line-height: 48px;
  height: 50px;
  border: 1px solid #b3b3b3;
  /*font-weight:bold*/
}

#sit_pvi_big {
  margin: 0;
  text-align: center;
}

#sit_rel {
  border-top: 1px solid #e5e5e5;
  padding: 80px 20px 20px;
  margin: 60px 0;
  position: relative;
}

#sit_rel h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--bc);
  margin: 0 0 40px;
  text-align: center;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.sct_li {
  text-align: center;
}

@media (max-width: 768px) {
  .new_price {
    font-weight: 700;
    font-size: 18px;
    color: var(--bc);
  }

  #sit_rel {
    border-top: 1px solid #e5e5e5;
    padding: 40px 20px 20px;
    margin: 60px 0;
    position: relative;
  }

  #sit_rel h2 {
    font-size: 16px;
    font-weight: 500;
    color: var(--bc);
    margin: 0 0 20px;
    text-align: center;
    font-family: "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
      "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  }

  .scr_10 .sct_cost,
  .scr_10 .sct_txt {
    font-size: 14px;
  }
}

#sit_use {
  margin: 80px 0;
}

@media (max-width: 768px) {
  #sit_inf,
  #sit_qa,
  #sit_use {
    margin: 40px 0;
  }
}

#sit_use_wbtn a {
  padding: 0 20px;
  line-height: 45px;
  font-weight: normal;
  font-size: 18px;
}

a.btn02 {
  background: var(--mc);
  border: none;
}

#sit_qa_wbtn a {
  padding: 0 20px;
  line-height: 45px;
  font-weight: normal;
  font-size: 18px;
}

.sanchor li a {
  font-size: 18px;
}

.sanchor li .sanchor_on .item_qa_count,
.sanchor li .sanchor_on .item_use_count {
  background: var(--gold);
}

/* Recipe */
/* ?���????? 맛있�????? ?��?��?�� �????? */

.process_list {
  display: flex;
  flex-wrap: wrap;
}
.process_list li {
  background-color: #fff;
  width: 25%;
  text-align: center;
  padding: 30px 0;
  border: 1px solid #eee;
  transition: all 0.3s;
}
.process_list li:hover {
  border-color: #ebab2b;
  transition: all 0.3s;
}
.process_list li .icon {
  font-size: 50px;
  max-width: 60px;
  margin: 0 auto 15px;
}
.process_list li .icon img {
  width: 100%;
}
.process_list strong {
  font-weight: 800;
  font-size: 15px;
  color: #ebab2b;
}
.process_list h2 {
  font-size: 21px;
  letter-spacing: -0.08em;
  padding: 5px 0 0;
}
.process_list p {
  font-size: 18px;
  line-height: 1.5;
}

.jamon_recipe {
  position: relative;
}

.coffee_bg {
  position: absolute;
  right: 30px;
  top: 5%;
  opacity: 0.3;
  z-index: -1;
}

.coffee_bg_2 {
  transform: scaleX(-1);
  opacity: 0.3;
  position: absolute;
  bottom: -50px;
  right: -258px;
  width: 400px;
  z-index: 1;
}

.jamon_recipe .char_list > li {
  border-bottom: 1px solid #eee;

  opacity: 0;
  transform: translateY(20px);

  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.jamon_recipe .char_list > li.show {
  opacity: 1;
  transform: translateY(0);
}

.jamon_recipe .char_list > li ul {
  display: flex;
  align-items: center;
}

.jamon_recipe .char_list > li ul span {
  display: block;
  font-size: 55px;
  color: var(--bc);
  padding: 10px 15px 10px 0;
}

/* ?��몽과 ?���????? ?��?���????? 좋�?? ?��?�� */
.jamon_pairing {
  margin-bottom: 70px;
  position: relative;
}

.jamon_pairing .pairing_bg {
  position: absolute;
  top: -200px;
  right: 0;
  opacity: 0.1;
}

.jamon_pairing .sub_container {
  position: relative;
  opacity: 0;
  transition: 0.8s 0.5s;
}

.jamon_pairing.on .sub_container {
  opacity: 1;
}

.jamon_pairing .arrows {
  position: absolute;
  z-index: 999;
  top: 28px;
  left: 368px;
}

.jamon_pairing .arrows button {
  border: none;
  background: transparent;
  cursor: pointer;
}

.jamon_pairing .arrows button ~ button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 20px;
  background: #333;
}

.jamon_pairing .arrows span {
  font-variation-settings: "FILL" 0, "wght" 300;
  font-size: 40px;
  color: #333;

  vertical-align: middle;
}

.jamon_pairing .pairing_content .itm {
  position: relative;
  margin: 15px 30px 30px 0;

  height: 430px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jamon_pairing .pairing_content .itm .case {
  position: relative;
  height: 330px;

  transition: 0.5s;
}

.jamon_pairing .pairing_content .itm.on .case {
  height: 430px;
}

.jamon_pairing .pairing_content .itm .img__box {
  position: absolute;
  inset: 0 0 0 0;

  display: none;
}

.jamon_pairing .pairing_content .itm.on .img__box {
  display: block;
}

.jamon_pairing .pairing_content .itm .img__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jamon_pairing .pairing_content .itm .img__box::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;

  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.jamon_pairing .pairing_content .itm .txt__box {
  position: absolute;

  bottom: 0;
  color: var(--wc);
}

.jamon_pairing .pairing_content .itm .txt__box .p_img {
  border: 1px solid #ddd;
}

.jamon_pairing .pairing_content .itm.on .txt__box .p_img {
  display: none;
}

.jamon_pairing .pairing_content .itm .txt__box p,
.jamon_pairing .pairing_content .itm .txt__box strong {
  display: none;
}

.jamon_pairing .pairing_content .itm .txt__box strong {
  font-size: 28px;
  text-align: center;

  font-family: "Lora", serif;
  font-weight: 500;
  line-height: 1.2;
}

.jamon_pairing .pairing_content .itm .txt__box p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 200;
  padding: 20px;
  /* text-align: justify;
    word-break: break-all; */
  word-break: keep-all;
}

.jamon_pairing .pairing_content .itm.on .txt__box p,
.jamon_pairing .pairing_content .itm.on .txt__box strong {
  display: block;
}

/* Recipe - Res */
@media (max-width: 768px) {
  /* ?���????? 맛있�????? ?��?��?�� �????? */
  .process_list li {
    width: 33%;
    padding: 15px 0;
  }
  .process_list strong {
    font-size: 13px;
  }
  .process_list h2 {
    font-size: 13px;
  }
  .process_list li .icon {
    font-size: 40px;
  }
  .coffee_bg_2 {
    display: none;
  }
  .jamon_recipe .char_list > li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;

    opacity: 0;
    transform: translateY(20px);

    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }

  .jamon_recipe .char_list > li.show {
    opacity: 1;
    transform: translateY(0);
  }

  .jamon_recipe .char_list > li ul {
    display: flex;
    align-items: center;
  }

  .jamon_recipe .char_list > li ul span {
    display: block;
    font-size: 33px;
    color: var(--bc);
    padding: 15px 15px 15px 0;
  }

  /* ?��몽과 ?���????? ?��?���????? 좋�?? ?��?�� */
  .jamon_pairing {
    margin-bottom: 20px;
    position: relative;
  }

  .jamon_pairing .pairing_bg {
    position: absolute;
    top: -100px;
    right: 0;
    opacity: 0.1;

    width: 200px;
  }

  .jamon_pairing .sub_container {
    position: relative;
    opacity: 0;
    transition: 0.8s 0.5s;
  }

  .jamon_pairing.on .sub_container {
    opacity: 1;
  }

  .jamon_pairing .arrows {
    position: absolute;
    z-index: 999;
    /* top: 28px;
        left: 368px; */
    top: 0;
    left: 0;

    display: none;
  }

  .jamon_pairing .arrows button {
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .jamon_pairing .arrows button ~ button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 20px;
    background: #333;
  }

  .jamon_pairing .arrows span {
    font-variation-settings: "FILL" 0, "wght" 300;
    font-size: 40px;
    color: #333;

    vertical-align: middle;
  }

  .jamon_pairing .pairing_content .itm {
    position: relative;
    margin: 0 15px 15px;

    height: 400px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .jamon_pairing .pairing_content .itm .case {
    position: relative;
    height: 330px;

    transition: 0.5s;
  }

  .jamon_pairing .pairing_content .itm.on .case {
    height: 400px;
  }

  .jamon_pairing .pairing_content .itm .img__box {
    position: absolute;
    inset: 0 0 0 0;

    display: none;
  }

  .jamon_pairing .pairing_content .itm.on .img__box {
    display: block;
  }

  .jamon_pairing .pairing_content .itm .img__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .jamon_pairing .pairing_content .itm .img__box::after {
    content: "";
    position: absolute;
    inset: 0 0 0 0;

    box-shadow: none;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }

  .jamon_pairing .pairing_content .itm .txt__box {
    position: absolute;

    bottom: 0;
    color: var(--wc);
  }

  .jamon_pairing .pairing_content .itm .txt__box .p_img {
    border: 1px solid #ddd;
  }

  .jamon_pairing .pairing_content .itm.on .txt__box .p_img {
    display: none;
  }

  .jamon_pairing .pairing_content .itm .txt__box p,
  .jamon_pairing .pairing_content .itm .txt__box strong {
    display: none;
  }

  .jamon_pairing .pairing_content .itm .txt__box strong {
    font-size: 22px;
    text-align: center;

    font-family: "Lora", serif;
    font-weight: 500;
    line-height: 1.2;
  }

  .jamon_pairing .pairing_content .itm .txt__box p {
    font-size: 12px;
    line-height: 17px;
    font-weight: 200;
    padding: 10px 20px 20px;
    /* text-align: justify;
        word-break: break-all; */

    text-align: left;
    word-break: keep-all;
  }

  .jamon_pairing .pairing_content .itm.on .txt__box p,
  .jamon_pairing .pairing_content .itm.on .txt__box strong {
    display: block;
  }
}

/* Sub_Content : 5-1.?���????? ?��?��?��?�� */
/* 매장 �??????�� */
.store_info .subtit_wrap {
  margin: 0 auto 80px;
}

.store_info .sub_container {
  opacity: 0;
  transition: 0.8s ease-in-out;

  text-align: right;
}

.store_info.on .sub_container {
  opacity: 1;
}

.store_info .map_container {
  margin: 0 0 0px;
}

.store_info .map_container .store_name {
  margin: 0 0 0px;

  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
}

.store_info .map_container .store_name::after {
  font-family: "xeicon";
  content: "\e935";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--mc);
}

#select-box {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;

  border-bottom: 2px solid var(--gc-dark);
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--bc);
}

#select-box:focus {
  outline: none;
}

#select-box option {
  font-weight: 400;
}

.tab-content .map_img {
  height: 400px;
}

.tab-content .address {
  text-align: left;
  padding-top: 10px;
}

.tab-content .address li {
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  padding: 25px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  font-size: 18px;
}

.tab-content .address li .tit {
  color: var(--bc);
  font-weight: 600;
  width: 10%;
  padding-left: 10px;
}

.tab-content .address li .txt {
  width: 90%;
}

/* 매장 갤러�????? */
.store_info .gallery_container {
  display: flex;

  opacity: 0;
  transition: 0.8s 0.5s ease-in-out;
}

.store_info.on .gallery_container {
  opacity: 1;
}

.store_slide {
  max-width: 80%;
  padding-right: 35px;

  position: relative;
}

.store_slide_thumbs {
  max-width: 20%;
}

.store_slide .store_img img,
.store_slide_thumbs .store_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store_slide_thumbs .store_txt span {
  font-size: 15px;
  font-weight: 500;
  color: var(--bc);
  display: block;
  padding: 15px;
  text-align: center;
}

.store_info .slick-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;

  text-indent: -9999px;
  background: transparent;
  border: 0;
  outline: 0;

  z-index: 999;
  cursor: pointer;
}

.store_info .slick-prev::before {
  position: absolute;
  font-family: "xeicon";
  content: "\e93b";
  color: var(--wc);

  font-size: 60px;
  line-height: 0;
  text-indent: 0;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.store_info .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 70px;

  text-indent: -9999px;
  background: transparent;
  border: 0;
  outline: 0;

  z-index: 999;
  cursor: pointer;
}

.store_info .slick-next::before {
  position: absolute;
  font-family: "xeicon";
  content: "\e93e";
  color: var(--wc);

  font-size: 60px;
  line-height: 0;
  text-indent: 0;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Sub_Content : 5-1.?���????? ?��?��?��?�� - Res */
@media (max-width: 768px) {
  /* 매장 �??????�� */
  .store_info .subtit_wrap {
    margin: 0 auto 40px;
  }

  .store_info .sub_container {
    opacity: 0;
    transition: 0.8s ease-in-out;

    text-align: center;
  }

  .store_info.on .sub_container {
    opacity: 1;
  }

  .store_info .map_container {
    margin: 0 0 0px;
  }

  .store_info .map_container .store_name {
    margin: 0 0 20px;

    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 180px;
  }

  .store_info .map_container .store_name::after {
    font-family: "xeicon";
    content: "\e935";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--mc);
  }

  #select-box {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: transparent;

    border-bottom: 2px solid var(--gc-dark);
    padding: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
      "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--bc);
  }

  #select-box:focus {
    outline: none;
  }

  #select-box option {
    font-weight: 400;
  }

  .tab-content .map_img {
    height: 350px;
  }

  .tab-content .address {
    text-align: left;
    padding-top: 0;
  }

  .tab-content .address li {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;

    flex-direction: column;
  }

  .tab-content .address li .tit {
    color: var(--bc);
    font-weight: 600;
    width: 100%;
    padding-left: 0;

    margin: 0 0 5px;
  }

  .tab-content .address li .txt {
    width: 100%;
    line-height: 1.2;
  }

  /* 매장 갤러�????? */
  .store_info .gallery_container {
    display: flex;

    flex-direction: column;

    opacity: 0;
    transition: 0.8s 0.5s ease-in-out;
  }

  .store_info.on .gallery_container {
    opacity: 1;
  }

  .store_slide {
    max-width: 100%;
    padding-right: 0;

    position: relative;
  }

  .store_slide_thumbs {
    max-width: 20%;

    display: none;
  }

  .store_slide .store_img img,
  .store_slide_thumbs .store_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .store_slide_thumbs .store_txt span {
    font-size: 15px;
    font-weight: 500;
    color: var(--bc);
    display: block;
    padding: 15px;
    text-align: center;
  }

  .store_info .slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;

    text-indent: -9999px;
    background: transparent;
    border: 0;
    outline: 0;

    z-index: 999;
    cursor: pointer;
  }

  .store_info .slick-prev::before {
    position: absolute;
    font-family: "xeicon";
    content: "\e93b";
    color: var(--wc);

    font-size: 60px;
    line-height: 0;
    text-indent: 0;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: none;
  }

  .store_info .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 70px;

    text-indent: -9999px;
    background: transparent;
    border: 0;
    outline: 0;

    z-index: 999;
    cursor: pointer;
  }

  .store_info .slick-next::before {
    position: absolute;
    font-family: "xeicon";
    content: "\e93e";
    color: var(--wc);

    font-size: 60px;
    line-height: 0;
    text-indent: 0;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: none;
  }
}

/* Sub_Content : 5-2.기업문의  */
.inquiry .sub_container .desc {
  text-align: center;
  margin: 0 0 40px;
}

.inquiry .sub_container .desc b {
  font-weight: bold;
}

.form-wrap {
  width: 100%;
  position: relative;
}

table.form-table {
  width: 100%;
  position: relative;
  border-top: 3px solid var(--gc-dark);
}

table.form-table tr {
  width: 100%;
  display: table;
}

table.form-table td {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  padding: 15px;
  display: table-cell;
  width: 60%;
}

table.form-table .formmail_title_bgcolor {
  background: #f9f9f9;
  text-align: center;
  display: table-cell;
  width: 15% !important;

  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: var(--bc);
}

table.form-table .formmail_title_bgcolor .answer {
  color: var(--gc-dark);
  font-weight: 400;
  font-size: 15px;
}

table.form-table td input,
table.form-table td textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #f9f9f9;
  padding: 5px;

  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.formmail_cell_bgcolor textarea {
  font-size: 16px !important;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

  line-height: 1.4;
  height: 300px;
}

.form-btn-wrap {
  padding-top: 50px;
  text-align: center;
}

.mbg.btn-form {
  display: inline-block;
  padding: 16px 0;
  width: 200px;
  margin: 0 auto;
  color: var(--wc);
  font-size: 18px;
  text-align: center;
  background: var(--mc);
  border: none;
  cursor: pointer;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.response {
  display: flex;
  align-items: center;
}

.response li {
  display: flex;
  margin-right: 20px;
}

.response li:nth-child(2) {
}

.response .iq_rad {
  margin-left: 5px;
  white-space: nowrap;
}

.inquiry__agree {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 24px;
}

.inquiry__agree .agree input {
  vertical-align: middle;
  margin-right: 3px;
}

.inquiry__agree .agree span {
  font-size: 16px;
}

.inquiry__agree .confirm {
  border: none;
  background: none;
  outline: none;
  border: 1px solid var(--gc-light);
  border-radius: 50px;
  padding: 8px 16px;
  margin-left: 15px;
  cursor: pointer;
}

.inquiry__agree .confirm span {
  font-size: 14px;
  color: var(--bc);
  font-weight: 700;
  font-family: "Lora", serif;
}

.inquiry__agree .confirm span i {
  vertical-align: middle;
  font-size: 16px;
}

.agree_pop {
  display: none;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  background-color: var(--wc);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  z-index: 1000;
}

.agree_pop .title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 24px;
}

.agree_pop .pop-esc {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 30px;
}

.agree_pop .pop-content {
  font-size: 16px;
  line-height: 1.2;
}

.agree_pop .pop-content .pop_wrap {
  margin: 0 0 24px;
}

.agree_pop .pop-content .pop_txt_tit {
  display: block;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 5px;
}

.overlay {
  display: none;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

/* Sub_Content : 5-2.기업문의 - Res  */
@media (max-width: 768px) {
  .inquiry .sub_container .desc {
    text-align: center;
    margin: 0 0 20px;
  }

  .inquiry .sub_container .desc b {
    font-weight: bold;
  }

  .form-wrap {
    width: 100%;
    position: relative;
  }

  table.form-table {
    width: 100%;
    position: relative;
    border-top: 2px solid #000;
  }

  table.form-table tr {
    padding: 8px 0;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  table.form-table td {
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    padding: 0 0 8px;
    display: table-cell;
    width: 100%;
  }

  table.form-table td.fm_case {
    padding: 0;
  }

  table.form-table .formmail_title_bgcolor {
    background: #fff;
    text-align: left;
    display: table-cell;
    width: 100% !important;
    border-bottom: none;
    font-size: 12px;
  }

  table.form-table .formmail_title_bgcolor .answer {
    color: var(--gc-dark);
    font-weight: 400;
    font-size: 12px;
  }

  table.form-table td input,
  table.form-table td textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #f9f9f9;
    padding: 5px;

    font-family: "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
      "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  }

  table.form-table td input {
    font-size: 12px;
  }

  .formmail_cell_bgcolor textarea {
    font-size: 12px !important;
    font-family: "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
      "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

    line-height: 1.4;
    height: 300px;
  }

  .form-btn-wrap {
    padding-top: 25px;
    text-align: center;
  }

  .mbg.btn-form {
    display: inline-block;
    padding: 8px 0;
    width: 100px;
    margin: 0 auto;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    background: var(--mc);
    border: none;
  }

  .response {
    display: flex;
    align-items: center;
  }

  .response li {
    display: flex;
  }

  .response li:nth-child(2) {
    margin-left: 20px;
  }

  .response .iq_rad {
    margin-left: 5px;
    white-space: nowrap;

    font-size: 12px;
  }

  .inquiry__agree {
    display: flex;
    /* align-items: center; */
    /* justify-content: flex-end; */
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
  }

  .inquiry__agree .agree input {
    vertical-align: middle;
    margin-right: 2px;
  }

  .inquiry__agree .agree span {
    font-size: 12px;
  }

  .inquiry__agree .confirm {
    border: none;
    background: none;
    outline: none;

    border: 1px solid var(--gc-light);
    border-radius: 50px;
    padding: 4px 10px;
    margin-left: 15px;
    cursor: pointer;
  }

  .inquiry__agree .confirm span {
    font-size: 12px;
    color: var(--bc);
    font-weight: 700;
    font-family: "Lora", serif;
  }

  .inquiry__agree .confirm span i {
    vertical-align: middle;
    font-size: 12px;
  }

  .agree_pop {
    display: none;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background-color: var(--wc);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    z-index: 1000;
  }

  .agree_pop .title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 18px;
  }

  .agree_pop .pop-esc {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 25px;
  }

  .agree_pop .pop-content {
    font-size: 12px;
    text-align: justify;
    line-height: 1.2;
  }

  .agree_pop .pop-content .pop_wrap {
    margin: 0 0 20px;
  }

  .agree_pop .pop-content .pop_txt_tit {
    display: block;
    font-weight: 500;
    font-size: 13px;
    margin: 0 0 5px;
  }

  .overlay {
    display: none;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
  }
}

/* Sub Footer */
.Footer {
  background: var(--mc);
  color: #c4c4c4;
  font-weight: 200;
  font-size: 15px;
}

.Footer .ft_top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px 0;
  position: relative;
}

.Footer .ft_bottom .ft_wrap,
.Footer .ft_top .ft_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Footer .ft_top .ft_wrap .ft_nav {
  display: flex;
  gap: 30px;
}

.Footer .ft_top .ft_wrap .ft_nav li {
  position: relative;
}

.Footer .ft_top .ft_wrap .ft_nav li ~ li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translate(0, -50%);
  width: 1px;
  height: 12px;
  background: #fff;
}

.Footer .ft_top .ft_wrap .ft_nav li:hover {
  color: var(--wc);
}

.Footer .ft_top .ft_wrap .ft_nav_right {
  display: flex;
  gap: 30px;
  align-items: center;
}

.Footer .ft_top .ft_wrap .privacy {
  display: flex;
  gap: 15px;
  color: #fff;
}

.Footer .ft_top .ft_wrap .sns {
  display: flex;
  color: var(--wc);
  gap: 5px;

  position: relative;
}

.Footer .ft_top .ft_wrap .sns i {
  padding: 5px;
  font-size: 20px;
}

.Footer .ft_bottom {
  padding: 35px 0;
}

.Footer .ft_bottom .ft_wrap .company_info ul {
  display: flex;
  gap: 30px;
  font-size: 14px;
  margin: 0 0 15px;
  color: #fff;
}

.Footer .ft_bottom .ft_wrap .company_info b {
  font-weight: 500;
  color: #fff;
}

.Footer .sub_ft_logo img {
  opacity: 0.6;
}

.Footer .ft_bottom .copy {
  color: #fff;
  font-size: 14px;
  padding-top: 40px;
}

/* Sub Footer - Res */
@media (max-width: 768px) {
  .Footer {
    background: var(--mc);
    color: #c4c4c4;
    font-weight: 200;
    font-size: 12px;
  }

  .Footer .ft_top {
    border-bottom: 1px solid #e8bb61;
    padding: 20px 0;
    position: relative;
  }

  .Footer .ft_bottom .ft_wrap,
  .Footer .ft_top .ft_wrap {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */

    flex-direction: column;
    align-items: normal;
    gap: 0;
  }

  .Footer .ft_top .ft_wrap .ft_nav {
    display: flex;
    gap: 10px;

    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }

  .Footer .ft_top .ft_wrap .ft_nav li {
    position: relative;
  }

  .Footer .ft_top .ft_wrap .ft_nav li ~ li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);
    width: 1px;
    height: 12px;
    background: var(--gc-dark);

    display: none;
  }

  .Footer .ft_top .ft_wrap .ft_nav li:hover {
    color: var(--wc);
  }

  .Footer .ft_top .ft_wrap .ft_nav_right {
    display: flex;
    gap: 10px;
    align-items: center;

    justify-content: space-between;
    flex-direction: column;
    text-align: center;
  }

  .Footer .ft_top .ft_wrap .privacy {
    display: flex;
    gap: 10px;

    flex-direction: column;
  }

  .Footer .ft_top .ft_wrap .sns {
    display: flex;
    color: var(--wc);
    gap: 2px;

    position: relative;
    justify-content: center;
  }

  .Footer .ft_top .ft_wrap .sns i {
    padding: 3px;
    font-size: 15px;
  }

  .Footer .ft_bottom {
    padding: 20px 0;
  }

  .Footer .ft_bottom .ft_wrap .company_info ul {
    display: flex;
    gap: 10px;
    font-size: 12px;
    margin: 0 0 10px;

    flex-direction: column;
    text-align: center;
  }

  /* .Footer .ft_bottom .ft_wrap .copy {
        color: var(--gc-light);
        font-size: 11px;

        text-align: center;
    } */

  .Footer .ft_bottom .copy {
    color: #fff;
    font-size: 10px;
    padding-top: 20px;
    text-align: center;
  }
  .tab-content {
    padding: 0;
  }
  .Footer .ft_bottom .ft_wrap .company_info b {
    font-weight: 500;
    color: #fff;
  }

  /* r */
  .Footer .sub_ft_logo {
    display: none;
  }

  .Footer .sub_ft_logo img {
    opacity: 0.6;
  }
}

/* to_top */
.to_top {
  width: 70px;
  height: 55px;
  background: #ee6a15;
  color: var(--wc);

  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  text-align: center;

  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.to_top span {
  margin: 0 0 3px;
}

.to_top strong {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  /* to_top */
  .to_top {
    width: 50px;
    height: 50px;
    background: #ed6a15;
    color: var(--wc);

    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    text-align: center;

    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }

  .to_top span {
    margin: 0 0 3px;
  }

  .to_top strong {
    font-size: 12px;
    font-weight: 400;
  }
}

/* 게시?�� */
#bo_v_info .profile_info .pf_img {
  display: none;
}

#bo_v_share {
  display: none;
}

#bo_vc,
#bo_vc_w,
.cmt_btn {
  display: none;
}

.sub-content section#bo_v_info {
  padding-bottom: 0;
}

.main_board .news_con .txt_box span.new_icon {
  display: inline;
  background: #f28f2a;
  padding: 0 4px;
  color: #fff;
}

#bo_list tbody,
#bo_list tbody .even td {
  background: #fff;
}

#bo_list tbody tr {
  border-left: none;
}

#bo_list tbody tr:hover {
  border-left: none;
}

/* 기본?��?���????? */
.tbl_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0 5px;
  background: #f5f5f5;
  border-top: 2px solid #111;
  border-bottom: 1px solid #e5e5e5;
}

.tbl_head01 {
  margin: 0 0 40px;
}

.btn_submit {
  background: var(--mc);
}

.tbl_head01 thead th {
  padding: 14px 30px;
  border-top: 2px solid #000;
  border-bottom: 1px solid #d3d3d3;
  background: #f5f5f5;
  color: var(--bc);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;

  white-space: nowrap;
}

.bo_tit {
  display: block;
  color: var(--bc);
  font-weight: 500;
  padding-left: 0;
}

#bo_list .td_num,
#bo_list .td_num2 {
  width: 5%;
}

#bo_list .td_name {
  width: 10%;
  text-align: center;
}

#fregister_term textarea,
select {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.fa-sort:before,
.fa-unsorted:before {
  content: "\f0dc";
  color: var(--gc-dark);
}

#bo_list .td_datetime {
  font-style: normal;
}

#bo_v {
  margin-bottom: 0;
  padding: 0;
  background: #fff;
  box-sizing: border-box;
}

#bo_v_title .bo_v_tit {
  display: block;
  /* font-size: 28px; */
  /* margin: 5px 0 30px; */
  margin: 0 0 25px;
  word-break: break-all;
  text-align: center;
  font-weight: 700;
}

#bo_v_info .if_date {
  font-style: normal;
}

#bo_v_info {
  padding: 0 0 15px;
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
  color: #666;
}

/* �?????��?�� */
#bo_sch {
  display: none;
}

.btn,
a.btn {
  line-height: 35px;
  height: 35px;
  padding: 0 10px;
  text-align: center;
  border-radius: 3px;
  font-weight: normal;
  border: 0;
}

.btn_b01,
a.btn_b01 {
  display: inline-block;
  background: var(--mc);
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
}

.btn_b02,
a.btn_b02 {
  display: inline-block;
  background: var(--mc);
  padding: 0 10px;
  color: #fff;
  text-decoration: none;
  border: 0;
  vertical-align: middle;
}

.btn_b01:hover,
a.btn_b01:hover {
  background: var(--mc);
}

.btn_b02:hover,
a.btn_b02:hover {
  background: var(--mc);
}

select,
textarea {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.sv_guest,
.sv_member {
  color: var(--bc);
}

#bo_list_total {
  float: left;
  line-height: 30px;
  font-size: 0.92em;
  color: #333;
  background: #f9f9f9;
  padding: 0 10px;
  border-radius: 5px;
  font-weight: 500;
}

#bo_gall .gall_info .gall_date {
  font-style: normal;
}

@media (max-width: 768px) {
  .tbl_head01 {
    font-size: 12px;
    margin: 0 0 0px;
  }

  .tbl_head01 thead th {
    padding: 0 14px;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #ececec;
    height: 40px;

    font-size: 12px;
  }

  #bo_v_info {
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid #ddd;
    color: #666;

    font-size: 12px;
  }

  #bo_list {
    margin-bottom: 0;
  }

  #bo_list tbody tr {
    font-size: 10px;
  }

  #bo_list .td_name {
    /* width: 90px; */
    text-align: center;
    padding: 10px 0;
  }

  #bo_v_title .bo_v_tit {
    display: block;
    font-size: 18px;
    /* margin: 5px 0 0; */
    margin: 0 0 20px;
    word-break: break-all;
    font-weight: 700;
  }

  #bo_v_con {
    font-size: 12px;

    margin: 0 0 30px;
    width: 100%;
    line-height: 1.7em;
    min-height: 100px;
    word-break: break-all;
    overflow: hidden;
  }

  #bo_v_atc {
    min-height: 100px;
  }

  #bo_v_info .profile_info .profile_info_ct {
    float: left;
    padding: 5px 0;
    line-height: 1.4;
  }

  .bo_v_nb {
    font-size: 12px;
  }

  .bo_v_nb li .nb_date {
    float: none;
    display: block;
    padding-top: 5px;
  }

  .bo_v_com > li {
    float: none;
  }

  .bo_v_com {
    margin: 28px 0;
  }

  .bo_tit {
    display: block;
    color: var(--bc);
    font-weight: 500;
    padding-left: 0;
  }

  .btn,
  a.btn {
    line-height: 30px;
    height: 30px;
    padding: 0 10px;
    text-align: center;
    border-radius: 3px;
    font-weight: normal;
    border: 0;
  }

  .btn_b01,
  a.btn_b01 {
    display: inline-block;
    background: var(--mc);
    color: #fff;
    text-decoration: none;
    vertical-align: middle;

    font-size: 12px;
  }

  .btn_b02,
  a.btn_b02 {
    display: inline-block;
    background: var(--mc);
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
    border: 0;
    vertical-align: middle;

    font-size: 12px;
  }

  #bo_w .write_div {
    font-size: 12px;
  }

  select,
  textarea {
    font-family: "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
      "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  }

  #bo_v_top ul {
    display: flex;
    margin-bottom: 20px;
  }

  .bo_v_com,
  .bo_v_left {
    margin: 0;
  }

  .bo_v_nb li {
    border-top: 1px solid #ddd;
    padding: 13px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

    width: 100%;
  }

  #bo_list_total {
    float: left;
    line-height: 30px;
    font-size: 12px;
    color: #333;
    background: #f9f9f9;
    padding: 0 10px;
    border-radius: 5px;
    font-weight: 500;
  }

  .gall_row .col-gn-4 {
    width: 50%;
  }

  #bo_gall .bo_tit {
    font-size: 13px;
  }

  .sv_guest,
  .sv_member {
    color: var(--bc);
    font-size: 12px;
  }

  #bo_gall .gall_info {
    font-size: 12px;
  }
}

/*login*/
#login-box #login_area {
  background: transparent;
  box-shadow: none;

  padding: 0 20px;
}

#mb_login_notmb .btn_confirm {
  background: #ebab2b;
  margin-top: 10px;
}

#mb_login_notmb p {
  padding: 10px 0;
}

#login-box #login_area #login_fs .login_input {
  background: #fff;
}

#login-box #login_area #login_fs .btn_submit {
  font-family: "Lora", serif;
  font-weight: 500;
  cursor: pointer;
}

/*join*/

#join-box #join_area {
  padding: 0;
  background-color: transparent;
  box-shadow: unset;
}

.ft_nav li a {
  color: #fff;
}

#join-box #join_area .btn_confirm .btn_join {
  border: 1px solid #ed6a15;
  background-color: #ed6a15;
  font-family: "Lora", serif;
  font-weight: 500;
}

#join-box #join_area #fregister_term textarea {
  background-color: var(--wc);
  color: #333;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  padding: 20px;
}

#join-box #join_area #fregister_private ul li {
  vertical-align: middle;
}

/*shop custom*/
.sct {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.sct_10 .sct_li {
  width: calc(25% - 23px) !important;
  margin: 0 !important;
}

.sct img {
  height: auto;
}

.pc_sort,
.pc_sort #ssch_sort {
  display: block !important;
}

.mo_sort,
.mo_sort_wrap {
  display: none;
}

.sct_40 .sct_li {
  width: 100%;
  margin: 0;
  padding: 20px 20px 20px 350px !important;
  height: 330px !important;
}

.sct_40 .sct_li:nth-child(2n + 1) {
  margin-right: 0;
}

.sct_40 .sct_cost {
  margin: 60px 0;
  font-size: 16px;
}

.sct_40 .sct_cost .sct_discount {
  display: inline-block;
}

.sct_40 .sct_txt {
  font-size: 22px;
  margin-bottom: 10px;
}

.sct_40 .main_price2 {
  display: flex;
  padding: 10px 0;
  font-size: 22px;
}

.sct_40 .main_price2 p {
  font-weight: 900;
  color: #ff6a6a;
}

.sct_40 .sct_sns {
  display: none !important;
}

#sit_tab .tab_tit {
  display: flex;
  gap: 30px;
  justify-content: center;
}

#sit_tab .tab_tit button {
  background: transparent;
  padding: 8px;
}

#sit_tab .tab_tit button.selected {
  font-weight: 700;
  border-bottom: 2px solid #333;
}

.bx-controls-auto {
  display: none;
}

.sit_qa_p {
  background: transparent;
}

.sit_qa_li_title,
.sit_use_tit {
  font-size: 16px;
}

.sit_use_dl {
  font-size: 14px;
}

.sit_use_top {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 20px;
}

.sit_use_top h4 {
  display: none;
}

#sps_con_1 p span,
.sit_use_p p span {
  line-height: 1.5;
}

.sit_admin {
  position: absolute;
  top: 520px;
  right: 20px;
  z-index: 9;
}

#sod_ws_act {
  padding: 0;
  margin-top: 60px;
}

#sod_bsk tbody {
  background: #fff;
}

.mo_show {
  display: none;
}

#smb_my,
#sod_bsk,
#sod_fin,
#sod_frm,
#sod_ws,
#sps_sch,
#sqa_sch {
  padding-top: 40px;
}
#sod_frm_orderer .tbl_wrap table,
#sod_frm_taker .tbl_wrap table,
.tbl_wrap table#sod_list {
  background: transparent;
}

#sod_frm_orderer .tbl_wrap table,
#sod_frm_taker .tbl_wrap table {
  border-top: 0;
  border-bottom: 0;
}

.sod_left {
  width: 60%;
}

.sod_right {
  width: 40%;
}

#sod_fin_no {
  background: #f3f3f3;
}

#sod_fin_list .tbl_wrap table {
  background: transparent;
}

#sod_fin .sod_left {
  width: 850px;
  background: transparent;
}

.sps_section,
.sqa_section {
  width: 100%;
}

.sqa_section .sqa_con {
  background: transparent;
}

/*mypage*/
#smb_my {
  font-size: 12px;
}

#smb_my_ov .op_area dt {
  width: 100px;
}

#smb_my_ov .op_area dd {
  width: calc(50% - 100px);
}

#smb_my_ovaddd {
  width: calc(100% - 100px) !important;
}

#smb_my_wish .list_02 li img {
  height: auto;
}

.pc_hidden {
  display: none;
}

#smb_my_wish .list_02 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#smb_my_wish .list_02 ul li {
  width: calc(100% - 15px);
  margin: 0;
}

@media all and (max-width: 1480px) {
  #sit_pvi {
    width: 500px !important;
  }
}

@media all and (max-width: 1280px) {
  #sod_bsk {
    padding-top: 0px;
  }

  #sit_ov_wrap {
    display: flex;
    flex-direction: column;
  }

  #sit_pvi {
    margin: 0 auto;
    width: 705px !important;
    padding: 0;
  }

  #sit_pvi_thumb {
    display: none;
  }

  #sit_siblings {
    display: block;
    width: 705px;
  }

  #sit_siblings > .fa-caret-left {
    opacity: 0;
  }

  #sit_ov {
    padding-top: 30px !important;
    width: 705px;
    margin: 0 auto;
  }

  #sod_ws .list_02 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  #sod_ws .list_02 li {
    width: calc(33.333% - 14px);
    margin-left: 0;
  }

  #sod_ws .list_02 li .sod_ws_img img {
    height: auto;
  }

  .list_02 li:nth-child(4n + 1) {
    clear: unset;
  }
}

@media all and (max-width: 1030px) {
  .sod_left,
  .sod_right {
    width: 100%;
    display: block;
  }

  .sod_right {
    border-left: solid 1px #ddd;
    border-top: 0;
  }

  .btn_confirm {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sod_fin .sod_left {
    width: 100%;
  }
}

@media all and (max-width: 860px) {
  .sct_10 .sct_li {
    width: calc(33.333% - 20px) !important;
  }
}

@media all and (max-width: 768px) {
  #sit_pvi {
    width: 100% !important;
  }

  #sit_siblings {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  #sit_opt_added li {
    padding: 20px 0 50px;
  }

  #sit_opt_added li .opt_count {
    position: unset;
    margin-top: 15px;
  }

  #sit_opt_added .sit_opt_prc {
    float: right;
  }

  #sit_ov {
    width: 100% !important;
  }

  #sit_ov_btn {
    display: flex;
  }

  #sit_ov_wrap {
    padding-top: 20px;
  }

  #sit_pvi_big {
    margin: 0;
  }

  #sit_caname {
    font-size: 14px;
  }

  #sit_title {
    font-size: 20px;
    margin: 0 0 40px;
  }

  #sit_title::after {
    bottom: -20px;
  }

  #sit_desc {
    font-size: 12px;
    line-height: 14px;
  }

  .new_price ul li:last-child {
    font-size: 18px;
  }

  .sit_info {
    font-size: 12px;
  }

  #sit_btn_wish,
  #sit_ov_btn button {
    font-size: 14px;

    margin: 0 auto;
  }

  #sit_qa_wbtn a,
  #sit_use_wbtn a {
    padding: 0 18px;
    line-height: 34px;
    font-weight: normal;
    font-size: 14px;
  }

  .sit_qa_dl {
    line-height: 16px;
  }

  .sit_qa_dl dd {
    font-size: 12px;
  }

  .sit_qa_p .qa_alp {
    left: 0;
    font-size: 20px;
  }

  .sit_qa_qaa,
  .sit_qa_qaq {
    padding-left: 30px;
  }

  .sit_qa_qaq p span {
    font-size: 14px !important;
  }

  .sit_qa_qaa {
    font-size: 14px;
  }

  .sit_use_top > img {
    width: 100px;
  }

  .sit_use_p p span {
    font-size: 14px !important;
  }

  .sit_use_li {
    padding-left: 10px;
  }

  .sit_use_dl {
    position: absolute;
    left: auto;
    right: 10px;
  }

  .sit_use_star {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .sit_use_dl dd {
    float: right;
    font-size: 12px;
  }

  #sod_ws .list_02 li {
    width: calc(50% - 14px);
  }

  #sod_ws li .info_link {
    font-size: 15px;
  }

  #sod_ws li .info_date {
    font-size: 11px;
  }

  #sod_ws_act {
    display: flex;
    justify-content: center;
  }

  #sod_ws_act button {
    font-size: 14px;
    height: 40px;
  }

  .tbl_wrap table {
    background: #fff;
    border-top: 0;
  }

  #sod_bsk .tbl_head03 thead th {
    display: none;
    border-top: 0;
    border-bottom: 0;
  }

  #sod_bsk .tbl_head03 thead th:nth-child(1) {
    width: 100px;
    display: block;
  }

  #sod_bsk .tbl_head03 thead th b.sound_only {
    font-size: 15px;
    position: unset;
    overflow: unset !important;
  }

  #sod_bsk .tbl_head03 tbody tr {
    display: flex;
    flex-wrap: wrap;
    width: 90vw;
    margin: 20px 0;
  }

  .od_prd_list .td_prd {
    width: calc(100% - 32px);
  }

  #sod_bsk .tbl_head03 tr td.td_dvr,
  #sod_bsk .tbl_head03 tr td.td_num,
  #sod_bsk .tbl_head03 tr td.td_numbig {
    width: 50%;
    display: flex;
    padding: 10px 16px;
    justify-content: space-between;
    font-size: 12px;
  }

  #sod_bsk .tbl_head03 tr td.td_numbig.text_right {
    width: 100%;
    background: #f4f4f4;
  }

  .mo_show {
    display: flex;
  }

  #sod_bsk #sod_bsk_tot ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  #sod_bsk #sod_bsk_tot li {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    border-left: 0;
    width: 100%;
  }

  #sod_bsk #sod_bsk_tot li.sod_bsk_cnt {
    border-top: 1px solid #e6e2e2;
  }

  #sod_bsk_act {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
  }

  #sod_bsk_act .btn01,
  #sod_bsk_act .btn_submit {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }

  .od_prd_list .td_prd .prd_name {
    font-size: 15px;
  }

  .sod_opt li,
  .sod_option_btn .mod_options {
    font-size: 12px;
  }

  .btn_cart_del {
    font-size: 12px;
  }

  #sod_list thead {
    display: none;
  }

  #sod_list tr {
    display: flex;
    flex-wrap: wrap;
  }

  #sod_list td.td_prd {
    width: 90vw;
  }

  #sod_list td.td_dvr,
  #sod_list td.td_num,
  #sod_list td.td_numbig {
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 13px;
  }

  #sod_list td.td_numbig.t_price {
    width: 100%;
    background: #f4f4f4;
  }

  #sod_frm section {
    font-size: 13px;
  }

  #sod_frm_orderer tbody tr,
  #sod_frm_taker tbody tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  #sod_frm_orderer .tbl_frm01 th,
  #sod_frm_taker .tbl_frm01 th {
    text-align: left;
    padding: 5px 0;
  }

  #sod_frm_orderer .tbl_frm01 td,
  #sod_frm_taker .tbl_frm01 td {
    width: 100%;
    padding: 5px 0;
    position: relative;
  }

  #sod_frm_orderer .tbl_frm01 input[type="text"],
  #sod_frm_taker .tbl_frm01 input[type="text"] {
    width: 100%;
  }

  #sod_frm_orderer .tbl_frm01 .btn_address,
  #sod_frm_taker .tbl_frm01 .btn_address {
    position: absolute;
    top: 5px;
    right: 0;
    border-radius: 4px;
  }

  .order_choice_place {
    display: flex;
    flex-wrap: wrap;
  }

  .order_choice_place label {
    width: 95%;
    padding: 10px;
  }

  .order_choice_place a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #od_tot_price strong,
  #sod_frm #sod_bsk_tot .sod_bsk_cnt strong,
  .sod_right {
    font-size: 12px;
  }

  #od_pay_sl h3 {
    display: none;
  }

  #od_pay_sl .lb_icon {
    width: 100%;
    height: 50px;
    margin-top: 30px;
  }

  #sod_frm .btn_submit {
    font-size: 14px;
  }

  #sod_fin_no {
    font-size: 15px;
  }

  #sod_fin_list thead {
    display: none;
  }

  #sod_fin_list tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  #sod_fin_list .td_bdno {
    width: 100%;
  }

  #sod_fin_list .half {
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
  }

  #sod_fin_list .t_pull {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
  }

  #sod_fin_list .tbl_wrap table {
    font-size: 12px;
  }

  #sps_sch,
  #sqa_sch {
    font-size: 12px;
  }

  #sps,
  #sps_con_1 p span {
    font-size: 12px !important;
  }

  .sqa_con .qa_alp {
    left: 0;
    font-size: 20px;
  }

  #join-box #join_area h4 {
    font-size: 14px;
  }

  #join-box #join_area #regist_member table td input {
    padding: 10px 20px;
    font-size: 12px;
  }

  #join-box #join_area #regist_member table {
    margin-bottom: 0;
    font-size: 12px;
  }

  #join-box #join_area #regist_member table td span.frm_info {
    font-size: 10px;
    line-height: 1.5;
  }

  #join-box #join_area #regist_member table td.sung {
    font-size: 12px;
  }

  #join-box #join_area .btn_confirm .btn_join {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin-top: 0;
  }

  #fregister .btn_confirm {
    margin-bottom: 0;
  }

  #login-box #login_area #login_fs {
    font-size: 12px;
  }

  #login-box #login_area #login_fs .login_input {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }

  #login-box #login_area #login_fs .btn_submit {
    height: 40px;
    background-color: #ed6a15;
    font-size: 16px;
  }

  #mb_login_notmb .btn_confirm a {
    padding: 12px;
  }

  /*mypage*/

  #smb_my_ov .my_ov_name {
    width: 100%;
  }

  #smb_my_ov .cou_pt {
    position: unset;
    padding: 0 20px;
    background: #fff;
    width: 100%;
    display: flex;
    height: auto;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
  }

  #smb_my_ov .cou_pt dd,
  #smb_my_ov .cou_pt dt {
    width: 50%;
  }

  #smb_my_act {
    top: 10px;
    right: 10px;
  }

  #smb_my_ov .op_area {
    background: #fff;
    border: 0;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
  }

  #smb_my_ov .op_area dt {
    width: 100px;
  }

  #smb_my_ov .op_area dd {
    width: calc(100% - 100px);
  }

  #smb_my_od table thead {
    display: none;
  }

  #smb_my_od table tbody tr {
    display: flex;
    flex-wrap: wrap;
  }

  #smb_my_od table tbody tr td.odid {
    width: 50%;
    text-align: left;
    border-top: 0;
    padding: 10px 20px;
  }

  #smb_my_od table tbody tr td.odtime {
    width: 50%;
    padding: 10px 20px;
    text-align: right;
    border-top: 0;
    border-left: 0;
  }

  #smb_my_od table tbody tr td.od_price {
    width: 100%;
    text-align: left;
    text-align: left !important;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 15px;
    border-top: 0;
    border-left: 0;
  }

  #smb_my_od table tbody tr td.pc_hidden {
    display: block;
    width: 100%;
    padding: 0 20px;
    border-top: 0;
    border-left: 0;
    text-align: left;
  }

  #smb_my_od table tbody tr td.odstatus {
    border-top: 0;
    border-left: 0;
    margin: 10px 20px;
    width: 100%;
    padding: 0;
  }

  #smb_my_od table tbody tr td.odstatus span {
    width: 100%;
    padding: 5px;
  }

  #smb_my_od table tbody tr td.mo_hidden {
    display: none;
  }

  #smb_my_od {
    margin: 0 0 90px;
  }

  .smb_my_more {
    top: auto;
    right: 0;
    bottom: -60px;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    margin-bottom: 50px;
  }

  .smb_my_more a {
    background: none;
    height: auto;
    padding-left: 0;
  }

  #smb_my_wish {
    margin-bottom: 60px;
  }

  #smb_my_wish .list_02 ul li {
    width: calc(33.333% - 15px);
    margin: 0;
  }

  #sit_tab .tab_tit {
    display: flex;
    gap: 0;
    justify-content: center;
    font-size: 14px;
  }
}

@media all and (max-width: 640px) {
  .sct_10 .sct_li {
    width: calc(50% - 20px) !important;
  }

  .pc_sort {
    display: none !important;
  }

  .mo_sort,
  .mo_sort_wrap {
    display: block;
  }

  .mo_sort_wrap {
    display: flex;
  }

  .mo_sort#sct_sort {
    zoom: 0;
    /* border: 1px solid #ddd; */
  }

  .mo_sort#sct_sort ul {
    background: #fff;
    width: 88px;
  }

  #sct_sortlst {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
  }

  #sct_sort {
    clear: both;
  }

  #sct_sort:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
  }

  #sct_sort h2 {
    position: absolute;
    font-size: 0;
    text-indent: -9999em;
    line-height: 0;
    overflow: hidden;
  }

  #sct_sort button {
    height: 40px;
    line-height: 40px;
    border: 0;
    padding: 0 10px;
    background: #fff;
  }

  #sct_sort ul:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #bbb transparent;
  }

  #sct_sort ul:after {
    content: "";
    position: absolute;
    top: -7px;
    left: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #fff transparent;
  }

  #sct_sort ul {
    display: none;
    position: absolute;
    border: 1px solid #bbb;
    z-index: 99;
  }

  #sct_sort li {
    border-top: 1px solid #eee;
  }

  #sct_sort li a {
    display: block;
    text-align: center;
    color: #333;
    background: #fff;
    border-color: #e9e9e9;
    font-size: 0.917em;
    padding: 5px 10px;
    line-height: 20px;
  }

  .mo_sort#sct_lst {
    display: flex;
  }

  .mo_sort#sct_lst li {
    /* border: 1px solid #ccc; */
  }

  #sct_lst {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    list-style: none;
  }

  #sct_lst:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
  }

  #sct_lst li {
    position: relative;
    float: left;
  }

  #sct_lst button {
    position: relative;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-left: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
  }

  .sct_10 .sct_txt a {
    font-size: 14px !important;
  }

  .sct_10 .sct_cost .main_price {
    font-size: 14px !important;
  }

  .sct_10 .sct_basic {
    font-size: 12px !important;
  }

  .sct_40 {
    gap: 0;
  }

  .sct_40 .sct_li:nth-child(2n + 1) {
    margin-right: 0;
  }

  .sct_40 .sct_li {
    margin: 0;
    padding: 20px 20px 20px 160px !important;
    height: 160px !important;
    border: 0;
    border-bottom: 1px solid #dadada;
  }

  .sct_40 .sct_basic {
    font-size: 12px;
  }

  .sct_40 .sct_txt {
    font-size: 16px;
    margin-bottom: 0;
  }

  .sct_40.sct img {
    width: 160px;
    border: 0;
    height: auto;
    border: 0;
  }

  .sct_40 .sct_cost {
    color: #fff;
    margin: 20px 0;
  }

  .sct_10 .sct_basic.basic2,
  .sct_10 .sct_cost .sct_discount,
  .sct_40 .sct_basic.basic2,
  .sct_40 .sct_cost .sct_discount {
    display: none !important;
  }

  .sct_10 .sct_cost {
    color: #fff;
  }

  .sct_40 .main_price2 {
    color: #3b3b3b;
    display: flex;
    font-size: 16px;
  }

  .sit_use_top {
    font-size: 14px;
    /* display: flex; */
    /* align-items: center; */
    padding: 0;
    background: transparent;
    border: 0;
    min-height: auto;
  }

  .sit_use_top .mo_hidden {
    display: none;
  }

  #sit_use_wbtn a {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #sit_use_wbtn {
    position: unset;
    width: 100%;
    top: 20px;
    right: 30px;
    display: flex;
  }

  .sit_qa_li_title {
    width: calc(100% - 100px);
  }

  .sit_qa_dl {
    width: 99px;
  }

  #sit_qa_wbtn {
    display: flex;
  }

  #sit_qa_wbtn a {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #smb_my_wish .list_02 ul li {
    width: calc(100% - 15px);
    margin: 0;
  }
}

/* privacy */
.privacy .privacy_wrap {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

.privacy.on .privacy_wrap {
  opacity: 1;
}

.privacy .privacy_wrap .desc {
  margin: 0 0 24px;

  font-size: 16px;
  line-height: 21px;
}

.privacy .privacy_wrap .desc strong {
  display: block;
  color: var(--bc);
  font-weight: 500;

  border-bottom: 1px solid #e5e5e5;
  line-height: 2.3;
  margin-bottom: 10px;
}

.privacy .privacy_wrap table {
  text-align: center;
  border-collapse: collapse;
}

.tb-wrap {
  overflow-x: auto;
  margin: 0 0 100px;
  position: relative;
}

table.tb_02 {
  width: 100%;
  border-top: 2px solid #111;
  border-collapse: collapse;
  font-size: 14px;
}

table.tb_02 th {
  border: 1px solid #e5e5e5;
  padding: 21px;
  background: #f5f5f5;
  font-weight: 500;
  color: var(--bc);
  font-size: 18px;
}

table.tb_02 td {
  border: 1px solid #e5e5e5;
  padding: 8px;
  font-size: 18px;
}

table.tb_02 th:nth-child(1) {
  width: 250px;
}

@media (max-width: 768px) {
  .privacy .privacy_wrap {
    opacity: 0;
    transition: 0.8s ease-in-out;
  }

  .privacy.on .privacy_wrap {
    opacity: 1;
  }

  .privacy .privacy_wrap .desc {
    margin: 0 0 12px;

    /* font-size: 16px;
        line-height: 21px; */
    font-size: 12px;
    line-height: 17px;
    /* text-align: justify;
        word-break: break-all; */

    text-align: left;
    word-break: keep-all;
  }

  /* r */
  .privacy .privacy_wrap .desc > br {
    display: block;
  }

  .privacy .privacy_wrap .desc strong {
    display: block;
    color: var(--bc);
    font-weight: 500;

    border-bottom: 1px solid #e5e5e5;
    line-height: 2.3;
    margin-bottom: 10px;
  }

  .privacy .privacy_wrap table {
    text-align: center;
    border-collapse: collapse;
  }

  .tb-wrap {
    overflow-x: auto;
    margin: 0 0 12px;
  }

  table.tb_02 {
    width: 100%;
    border-top: 2px solid #111;

    font-size: 10px;
    white-space: nowrap;
  }

  table.tb_02 th {
    border: 1px solid #e5e5e5;
    padding: 7px;
    background: #f5f5f5;
    font-weight: 500;
    color: var(--bc);
    font-size: 13px;
  }

  table.tb_02 td {
    border: 1px solid #e5e5e5;
    padding: 7px;
    font-size: 13px;
  }

  table.tb_02 th:nth-child(1) {
    width: 70px !important;
  }
}

.tab_con {
  margin-bottom: 100px;
}

#bo_v_con img {
  pointer-events: none;
}

#sit_dvr,
#sit_ex {
  margin: 40px 0;
}

#sit_dvr,
#sit_ex {
  font-size: 16px;
  line-height: 21px;
  color: #333;
}

#sit_dvr span,
#sit_ex span {
  display: block;
}

@media (max-width: 768px) {
  .tbl_head03 td {
    font-size: 13px;
  }
  .tab_con {
    margin-bottom: 50px;
  }

  #sit_dvr,
  #sit_ex {
    margin: 20px 0;
  }

  #sit_dvr,
  #sit_ex {
    font-size: 12px;
    line-height: 17px;
    color: #333;

    text-align: justify;
    word-break: break-all;
  }

  #sps_sch a,
  #sqa_sch a {
    display: inline-block;
    padding: 0 8px;
    height: 40px;
    line-height: 40px;
    vertical-align: top;
    border-radius: 3px;
    background: #fff;
    color: #3059c7;
    font-weight: bold;
    border: 1px solid #3059c7;
    text-decoration: none;
    /* 
        width: 100%;
        text-align: center; */
    display: block;
    margin: 0 0 5px;
    text-align: center;
  }

  #sps_sch .sch_wr,
  #sqa_sch .sch_wr {
    border: 1px solid #6d7892;
    border-radius: 3px;
    display: inline-block;

    display: flex;
    justify-content: space-between;
  }

  #sps_sch .sch_input {
    height: 38px;
    border: 0;
    padding: 0;
    background-color: transparent;
    float: left;
  }
}
