@charset "utf-8";

/* @font-face {
  font-family: "GmarketSansMedium";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

html > body {
  font-family: "GmarketSansMedium";
  text-underline-position: under;
} */

* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  vertical-align: top;
}

/* 라이브러리 */

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

/* custom */
/* pc 탑바 구현 */
.pc-top-bar {
  height: 250px;
}

.pc-top-bar__first-section {
  height: 33px;
  background-color: #0bb0ab;
}

.pc-top-bar__first-section > .con {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-top-bar__first-section > .con a {
  font-weight: bold;
  color: white;
}

.pc-top-bar__second-section {
  height: 154px;
}

.pc-top-bar__second-section > .con {
  display: flex;
  height: 100%;
  flex: 1;
  width: 100%;
}

/* .pc-top-bar__second-section > .con > div {
  flex-grow: 1;
} */

.logo_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.div1 {
  flex: 1;
}

.logo {
  display: block;
}

.logo > img {
  width: 216px;
  height: 50px;
}

.pc-top-bar__third-section {
  height: 63px;
}

.pc-top-bar__third-section > .con {
  height: 100%;
}

.widget-wrap {
  display: flex;
  flex: 1;
  justify-content: center;
  flex-direction: column;
}

.widget-box {
  width: 100%;

  display: flex;
  align-items: end;
  flex-direction: column;
}

.widget-menu {
  margin-right: 5px;
}

.widget-menu > ul {
  display: flex;
}

.widget-menu > ul > li > a {
  color: #888;
  font-size: 14px;
  display: inline-block;
  padding: 0 10px;
  transition: color 0.3s;
  position: relative;
}

.widget-menu > ul > li:first-child > a::before,
.widget-menu > ul > li:first-child > a::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: freeTooltip 1s linear infinite;
}

.widget-menu > ul > li:first-child > a::before {
  content: "";
  width: 0px;
  height: 0px;
  top: 100%;
  border-bottom: 8px solid #12cfca;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.widget-menu > ul > li:first-child > a::after {
  content: "무료배송";
  background-color: #12cfca;
  color: white;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
  top: calc(100% + 3px);

  white-space: nowrap;
}

.widget-menu > ul > li:first-child > a {
  padding-left: 0;
}

.widget-menu > ul > li:last-child > a {
  padding-right: 0;
}

.widget-menu > ul > li:hover > a {
  color: rgba(136, 136, 136, 0.5);
}

@keyframes freeTooltip {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: 2px;
  }
}

.btn-group {
  margin-top: 30px;
}

.btn-group > a {
  color: #fff;
  display: inline-flex;
  padding: 4px 20px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-group > a:first-child {
  background-color: #ff726b;
  margin-right: 5px;
  border: 1px solid #ff726b;
}

.btn-group > a:first-child:hover {
  background-color: white;

  color: #ff726b;
}

.btn-group > a:last-child {
  background-color: #12cfca;
  border-color: #12cfca;
}

.btn-group > a:last-child:hover {
  background-color: #10abd5;
}

.menu-1 {
  display: flex;
  justify-content: center;
}

.menu-1 > ul {
  display: flex;
  width: 80%;
  gap: 40px;
}

.menu-1 > ul > li {
  width: calc(100% / 4);
  position: relative;
}

.menu-1 > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212121;
  transition: all 0.3s;
  white-space: nowrap;
}

.menu-1 > ul > li:hover > a {
  color: rgba(33, 33, 33, 0.5);
}

.menu-1 > ul > li:last-child:hover > a:first-child {
  display: none;
}

.menu-1 > ul > li:last-child:hover > a:last-child {
  display: flex;
}

.menu-1 > ul > li:last-child > a:last-child {
  display: none;
}

.menu-1 > ul > li:nth-child(2):hover .subMenu {
  opacity: 100;
  visibility: visible;
}

.subMenu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.subMenu > li > a {
  display: flex;
  background-color: #12cfca;
  align-items: center;
  transition: all 0.3s;
  white-space: nowrap;
  padding: 10px 20px 10px 15px;
  color: white;
  transition: all 0.5s;
  border: 1px solid #12cfca;
}

.subMenu > li:hover > a {
  color: #12cfca;
  background-color: white;
}
/* pc탑바 구현 끝 */

/* 모바일 탑바 구현 */

.mobile-top-bar__first-section {
  height: 31px;
  background-color: #0bb0ab;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-top-bar__first-section > p {
  font-weight: bold;
  color: white;
  font-size: 14px;
}

.mobile-top-bar__second-section {
  height: 50px;
  display: flex;
  padding: 0 5px;
}

.mobile-top-bar__logo-box {
  flex: 1;
  display: flex;
  align-items: center;
}

.mobile-top-bar__logo-box > a {
  display: block;
  margin-left: 5px;
}

.mobile-top-bar__logo-box > a > img {
  width: 104px;
  height: 24px;
}

.mobile-top-bar__menu-box {
  flex: 1;
}

.mobile-top-bar__menu-box > div {
  color: #12cfca;
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  gap: 10px;
  margin-right: 3px;
}

.mobile-top-bar__menu-box > div > a {
  font-size: 14px;
}

.mobile-top-bar__menu-box > div > span {
  cursor: pointer;
}

.mobile-top-bar__menu-box a {
  position: relative;
}

.mobile-top-bar__menu-box a::before,
.mobile-top-bar__menu-box a::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: freeTooltip 1s linear infinite;
}

.mobile-top-bar__menu-box a::before {
  content: "";
  width: 0px;
  height: 0px;
  top: 100%;
  border-bottom: 8px solid #12cfca;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.mobile-top-bar__menu-box a::after {
  content: "무료배송";
  background-color: #12cfca;
  color: white;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
  top: calc(100% + 3px);

  white-space: nowrap;
}

.fa-solid {
  font-size: 20px;
}

/* 모바일 탑바 구현 끝 */

/* pc 섹션 구현 시작 */
.pc-video-box {
  max-width: 100%;

  position: relative;
}

.pc-video-box > video {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.pc-product-list-box_title-box {
  margin: 90px 0 70px 0;
}

.pc-product-list-box_title-box > p {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
}

.moblie-product-list-box_title-box {
  margin: 30px 0 20px 0;
}

.moblie-product-list-box_title-box > p {
  text-align: center;
}

.mobile_product-list-box_title > span {
  display: block;
}

.mobile_product-list-box_title > span:first-child {
  font-weight: 300;
  font-size: 1.2em;
}

.mobile_product-list-box_title > span:last-child {
  font-weight: 800;
  font-size: 1.5em;
}

.pc-product-list {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  gap: 10px;
}

.pc-product-list > li {
  width: 20%;
  background-color: #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
}

.pc-product-list > li:first-child {
  margin-left: 10px;
}

.pc-product-list > li:last-child {
  margin-right: 10px;
}

.pc-product-list > li img {
  max-width: 100%;
  width: 100%;
}

.product-name {
  font-weight: normal;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #3d464b;
  font-size: 14px;
  text-align: center;
}

.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 1em;
  text-align: center;
}
.product-price span {
  display: block;
}

.product-price span:nth-child(1) {
  color: #12cfca;
  font-size: 14px;
}

.product-price span:nth-child(2) {
  color: #3d464b;
  font-size: 12px;
  text-decoration: line-through;
}

.imgHover1 img:nth-child(2) {
  display: none;
}
.imgHover1:hover img:nth-child(2) {
  display: block;
}
.imgHover1:hover img:nth-child(1) {
  display: none;
}

.imgHover2 img:nth-child(2) {
  display: none;
}
.imgHover2:hover img:nth-child(2) {
  display: block;
}
.imgHover2:hover img:nth-child(1) {
  display: none;
}

.imgHover3 img:nth-child(2) {
  display: none;
}
.imgHover3:hover img:nth-child(2) {
  display: block;
}
.imgHover3:hover img:nth-child(1) {
  display: none;
}

.pc-md-list-box_title-box {
  margin: 90px 0 70px 0;
}

.mobile-md-list-box_title-box {
  margin: 30px 0 20px 0;
}

.pc-md-list-box_title-box > p {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
}

.mobile-md-list-box_title-box > p {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
}

.pc-sns-box {
  background-color: rgb(245, 250, 254);
  padding: 80px 0;
  display: flex;
  max-width: 100%;
  padding-bottom: 120px;
}

.pc-sns-box__text-box {
  text-align: center;
  padding: 0 50px;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pc-sns-box__text-box h4 {
  font-weight: 900;
  font-size: 2em;
  padding: 10px 0;
}

.pc-sns-box__text-box p {
  font-size: 16px;
  padding-bottom: 24px;
}

.pc-sns-box__text-box__btn {
  width: 100px;
  height: 40px;
  background-color: #12cfca;
  border: 1px solid #12cfca;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s;
}

.pc-sns-box__text-box__btn > a {
  color: white;
  display: block;
  padding: 12px 22px;
  transition: all 0.5s;
}

.pc-sns-box__text-box__btn:hover,
.pc-sns-box__text-box__btn:hover > a {
  background-color: white;
  color: #12cfca;
}

.pc-sns-box__img-box {
  width: 100%;
  height: 100%;
  flex: 1;

  display: flex;
}

.pc-sns-box__img-box1,
.pc-sns-box__img-box2,
.pc-sns-box__img-box3 {
  position: relative;
  width: 50%;
  background-color: skyblue;
  margin-left: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.pc-sns-box__img-box1 {
  margin-left: 0;
}

.pc-sns-box__img-box3 {
  margin-right: 10px;
}

.pc-sns-box__img-box1::after,
.pc-sns-box__img-box2::after,
.pc-sns-box__img-box3::after {
  display: block;
  content: "";
  padding-bottom: 100%;
}
.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hoverEffect {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.359);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.pc-sns-box__img-box1:hover .hoverEffect,
.pc-sns-box__img-box2:hover .hoverEffect,
.pc-sns-box__img-box3:hover .hoverEffect {
  opacity: 1;
  visibility: visible;
}

.pc-jejubeerIntro {
  width: 100%;
  height: 50vh;
  padding-bottom: 30px;
}

.jejubeerIntro__bg-box {
  width: 100%;
  height: 100%;
  background-image: url(../image/04_BG_img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.jejubeerIntro__bg-box > p {
  font-size: 26px;
  color: #ffffff;
  text-align: center;
}

.jejubeerIntro_btn {
  width: 201px;
  height: 42px;
  background-color: white;
  border: 1px solid white;
  margin-top: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s;
}

.jejubeerIntro_btn > a {
  display: block;
  padding: 10px 33px;
}

.jejubeerIntro_btn > a > strong {
  font-size: 14px;
  color: #12cfca;
  transition: all 0.5s;
}

.jejubeerIntro_btn:hover {
  background-color: #12cfca;
}

.jejubeerIntro_btn:hover > a > strong {
  color: white;
}
/* pc 섹션 구현 끝*/

/* pc 푸터 구현 시작 */
.footer-wrap {
  max-width: 100%;
  padding-top: 25px;
}

.pc-footer-bar {
  width: 100%;
  margin: 0 auto;
}

.pc-fnb-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.pc-fnb {
  display: flex;
  flex: 1;

  margin-left: 2em;
}

.pc-fnb > ul {
  display: flex;
}

.pc-fnb > ul > li {
  padding: 10px;
  margin: 0 15px 15px 0;
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}

.pc-fnb > ul > li:first-child {
  padding-left: 0;
}

.pc-fnb > ul > li:last-child {
  margin: 0 0px 15px;
}

.pc-fnb > ul > li > a {
  color: #999;
}

.pc-fnb-sns-box {
  display: flex;
  flex: 1;
  margin-right: 2em;
  align-items: center;
  justify-content: end;
}

.pc-sns-box__youtube-box > a,
.pc-sns-box__instagram-box > a {
  display: block;
  width: 100%;
}

.pc-sns-box__youtube-box > a > img,
.pc-sns-box__instagram-box > a > img {
  width: 100%;
}

.pc-sns-box__youtube-box {
  width: 190px;
  height: 38px;
  margin-right: 10px;
}

.pc-sns-box__instagram-box {
  width: 40px;
  height: 40px;
}

.pc-address-box {
  margin-left: 2em;
  font-style: normal;
  color: #999;
}

.pc-address-box > p:first-child {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 23px;
}

.pc-address-box > p:nth-child(2) {
  color: rgb(188, 188, 188);
  font-size: 11px;
  margin-bottom: 23px;
}

.pc-address-box > p:nth-child(3) {
  font-size: 11px;
  color: #999;
  margin-bottom: 118px;
}

/* pc 푸터 구현 끝 */

/* 모바일 섹션 구현 시작 */
.swiper-container {
  position: relative;
  margin: 0 10px;
  margin-bottom: 50px;
}

.mobile-product-list {
  overflow-x: hidden;
}

.swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  background-color: #f2f2f2;
}

.swiper-slide img {
  width: 100%;
  max-width: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #0b7593;
  transform: scale(0.5);
}

.mobile-sns-box {
  background-color: rgb(245, 250, 254);
  padding: 80px 0;
  padding-bottom: 30px;
  max-width: 100%;
}

.mobile-sns-box__top {
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 76px;
}

.mobile-sns-box__top img {
  height: 93px;
}

.mobile-sns-box__middle h4 {
  font-weight: 900;
  font-size: 1.5em;
  text-align: center;
  padding-bottom: 32px;
}

.mobile-jejubeerIntro {
  max-width: 100%;
  padding-bottom: 68px;
}

.mobile-jejubeerIntro__bg-box {
  width: 100%;
  height: 193px;
  background-image: url(../image/04_BG_img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-jejubeerIntro__bg-box > p {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

.mobile-jejubeerIntro_btn {
  width: 201px;
  height: 42px;
  background-color: white;
  border: 1px solid white;
  margin-top: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s;
}

.mobile-jejubeerIntro_btn > a {
  display: block;
  padding: 10px 33px;
}

.mobile-jejubeerIntro_btn > a > strong {
  font-size: 14px;
  color: #12cfca;
  transition: all 0.5s;
}

.mobile-jejubeerIntro_btn:hover {
  background-color: #12cfca;
}

.mobile-jejubeerIntro_btn:hover > a > strong {
  color: white;
}

/* 모바일 섹션 구현 끝 */

/* 모바일 푸터 구현 시작 */
.mobile-footer-bar {
  width: 100%;
  margin: 0 1em;
}

.mobile-fnb {
  padding-bottom: 10px;
}

.mobile-fnb > ul {
  display: flex;
}

.mobile-fnb > ul > li > a {
  margin: 0 10px 10px 0;
  color: #999;
  font-size: 13px;
}

.mobile-fnb > ul > li > a:last-child {
  margin: 0 10px 10px;
}
.mobile-fnb > ul > li > a:first-child {
  margin-left: 0;
}

.mobile-address-box {
  font-style: normal;
  color: #999;
}

.mobile-address-box > p:first-child {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 23px;
}

.mobile-address-box > p:nth-child(2) {
  color: rgb(188, 188, 188);
  font-size: 11px;
  margin-bottom: 23px;
}

.mobile-address-box > p:nth-child(3) {
  font-size: 11px;
  color: #999;
  margin-bottom: 118px;
}

/* 모바일 푸터 구현 끝 */

/* 미디어쿼리 */
@media (width >= 992px) {
  .mobile-top-bar {
    display: none;
  }
  .moblie-product-list-box_title-box {
    display: none;
  }

  .mobile-product-list {
    display: none;
  }

  .mobile-md-list-box_title-box {
    display: none;
  }

  .mobile-sns-box {
    display: none;
  }

  .mobile-jejubeerIntro {
    display: none;
  }

  .mobile-footer-bar {
    display: none;
  }
}

@media (width < 991px) {
  .pc-top-bar {
    display: none;
  }
  .pc-product-list-box_title-box {
    display: none;
  }

  .pc-product-list {
    display: none;
  }

  .pc-md-list-box_title-box {
    display: none;
  }

  .pc-sns-box {
    display: none;
  }

  .pc-sns-box__img-box1 {
    margin-left: 10px;
  }

  .hoverEffect {
    display: none;
  }

  .pc-jejubeerIntro {
    display: none;
  }

  .pc-footer-bar {
    display: none;
  }
  .footer-wrap {
    padding-top: 0;
  }
}

@media (width < 480px) {
  .product-name {
    font-size: 10px;
  }

  .product-price {
    font-size: 10px;
  }
}
