/* Common */

body {
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
  color: #000;
}

body.dimmed:after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 40;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

/* Header */

header {
  height: 120px;
  background-color: #f6f5ef;
  border-bottom: 1px solid #000;
  position: relative;
}

header .container {
  height: 100%;
}

header .container .logo a {
  display: block;
}

header .container .main-sub .sub-menu .sub-real-menu li a {
  font-family: Arial, sans-serif;
  display: block;
  padding: 20px 15px;
  font-size: 12px;
  color: #555;
  position: relative;
}

header .container .main-sub .sub-menu .sub-real-menu li a:hover {
  color: #000;
}

header .container .main-sub .sub-menu .sub-real-menu li a:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
  background-color: #e6e6e6;
}

header .container .main-sub .sub-menu .sub-real-menu li:first-child a:before {
  display: none;
}

header .container .main-sub .sub-menu .search {
  position: relative;
}

header .container .main-sub .sub-menu .search input {
  width: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: 0.4s;
}

header .container .main-sub .sub-menu .search input::placeholder {
  font-size: 14px;
}

header .container .main-sub .sub-menu .search a {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

header .container .main-sub .sub-menu .search input:focus {
  outline: none;
  width: 150px;
  padding: 5px 10px;
}

header .container .main-sub .sub-menu .search.focused a {
  left: unset;
  right: 7px;
  opacity: 0;
}

header .container .main-sub .main-menu > ul > li > a {
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: block;
  padding: 0 20px;
  padding-top: 10px;
  height: 60px;
}

header .container .main-sub .main-menu > ul > li > a.on {
  background-color: #333;
  color: #0bca7a;
  text-decoration: underline;
}

header .container .main-sub .main-menu > ul > li > .twodepth {
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  overflow: hidden;
  top: 100%;
  background-color: #333;
  transition: height 0.4s;
  z-index: 50;
}

header .container .main-sub .main-menu > ul > li > .twodepth > .container {
  display: flex;
  padding: 20px 0;
}

header .container .main-sub .main-menu > ul > li > .twodepth > .container > li {
  margin-right: 50px;
}

header
  .container
  .main-sub
  .main-menu
  > ul
  > li
  > .twodepth
  > .container
  > li
  > a {
  color: #fff;
  font-size: 14px;
}

header .container .main-sub .main-menu > ul > li > a.on + .twodepth {
  height: 230px;
}

header
  .container
  .main-sub
  .main-menu
  > ul
  > li
  > .twodepth
  > .container
  > li
  > .threedepth {
  padding-top: 10px;
}

header
  .container
  .main-sub
  .main-menu
  > ul
  > li
  > .twodepth
  > .container
  > li
  > .threedepth
  > li
  > a {
  color: #fff;
  font-size: 12px;
}

header .container .tablet-menu {
  display: none;
}

header .container .tablet-menu a {
  display: flex;
  align-items: center;
  margin-right: 25px;
}

header .container .tablet-menu a:last-child {
  margin: 0;
}

header .container .tablet-menu a:first-child:before {
  content: "\F4D7";
  font-family: "bootstrap-icons" !important;
  font-size: 30px;
  color: #58473d;
}

header .container .tablet-menu a:nth-child(2):before {
  content: "\F3E7";
  font-family: "bootstrap-icons" !important;
  font-size: 30px;
  color: #58473d;
}

header .container .tablet-menu a:last-child:before {
  content: "\F479";
  font-family: "bootstrap-icons" !important;
  font-size: 35px;
  color: #58473d;
}

header .container .mobile-menu {
  top: 0;
  bottom: 0;
  right: 0;
  width: 80%;
  background-color: #2d2926;
  z-index: 50;
  overflow: auto;
  transform: translateX(100%);
  transition: all 0.4s;
}

header .container .mobile-menu.tr {
  transform: translateX(0);
}

header .container .mobile-menu .searches {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #000;
}

header .container .mobile-menu .searches input {
  padding: 10px;
  width: 300px;
  margin-right: 30px;
}

header .container .mobile-menu .searches a {
  height: 48px;
  width: 100px;
  text-align: center;
  line-height: 48px;
  background-color: #666;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
}

header .container .mobile-menu .menues > li > a {
  color: #fff;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  font-size: 22px;
  background-color: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container .mobile-menu .menues > li > a:before {
  content: "\F282";
  font-family: "bootstrap-icons" !important;
  transition: all 0.4s;
}

header .container .mobile-menu .menues > li > a.on:before {
  content: "\F286";
}

header .container .mobile-menu .menues > li > .two {
  display: none;
}

header .container .mobile-menu .menues > li > a.on + .two {
  display: block;
}

header .container .mobile-menu .menues > li > .two > li > a {
  color: #fff;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 22px;
  background-color: #181818;
}

header .container .mobile-menu .menues > li > .two > li > a:before {
  content: "\F282";
  font-family: "bootstrap-icons" !important;
  opacity: 0.4;
  transition: all 0.4s;
}

header .container .mobile-menu .menues > li > a.on + .two > li > a.on:before {
  content: "\F286";
  opacity: 1;
}

header .container .mobile-menu .menues > li > .two > li > .three {
  display: none;
}

header .container .mobile-menu .menues > li > a.on + .two > li > a.on + .three {
  display: block;
}

header .container .mobile-menu .menues > li > .two > li > .three > li > a {
  color: #fff;
  padding: 20px 40px;
  display: block;
  background-color: #222;
  color: #999999;
}

header .container .mobile-menu .close {
  position: absolute;
  background-color: transparent;
  border: none;
  right: 16px;
  top: 10px;
}

header .container .mobile-menu .close:before {
  content: "\F62A";
  font-family: "bootstrap-icons" !important;
  font-size: 40px;
  color: #fff;
}

/* Visual */

main #visual {
  width: 100%;
  height: 36vw;
  background: url("../images/visual_bg.jpg") no-repeat center/cover;
  transition: all 0.4s;
}

main #visual .container {
  height: 100%;
  position: relative;
  max-width: 80%;
}

main #visual .container .set {
  height: 100%;
}

main #visual .cream {
  position: absolute;
  right: 5.5%;
  bottom: 11.5%;
  width: 25.5%;
}

main #visual .cream img {
  width: 100%;
}

main #visual .brew {
  position: absolute;
  right: 24.5%;
  bottom: 11.5%;
  width: 23.5%;
}

main #visual .brew img {
  width: 100%;
}

main #visual .fizzio {
  position: absolute;
  width: 32.5%;
  right: 42.5%;
  bottom: 11.5%;
}

main #visual .fizzio img {
  width: 100%;
}

main #visual .slogan {
  position: absolute;
  width: 20.5%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  text-align: center;
}

main #visual .slogan img {
  width: 100%;
}

main #visual .container .set > div > img:last-child {
  display: none;
}

main #visual .text {
  position: absolute;
  left: 0;
  top: 65.5%;
  width: 20.5%;
}

main #visual .text a {
  display: block;
  text-align: center;
  width: 125px;
  margin: 0 auto;
  padding: 5px 0;
  border: 1px solid #13362d;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 12px;
  transition: all 0.4s;
}

main #visual .text a:hover {
  background-color: #13362d;
  color: #fff;
  text-decoration: underline;
}

main #visual.animate .fizzio {
  animation: fizzio 2s;
}

main #visual.animate .brew {
  animation: brew 2s;
}

main #visual.animate .cream {
  animation: cream 2s;
}

@keyframes fizzio {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes brew {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cream {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Twotab */
main #noticepro .tabs {
  height: 54px;
}

main #noticepro .tabs > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
}

main #noticepro .tabs > div:first-child {
  background-color: #333;
  color: #fff;
  position: relative;
  justify-content: end;
}

main #noticepro .tabs > div:first-child .notice {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

main #noticepro .tabs > div:first-child .notice h2 {
  font-size: 16px;
}

main #noticepro .tabs > div:first-child .notice > i {
  display: none;
}

main #noticepro .tabs > div:first-child .notice .swiper {
  width: 100px;
  height: 24px;
  margin-left: 15px;
}

main #noticepro .tabs > div:first-child .notice .swiper .swiper-wrapper {
  flex-direction: column;
}

main #noticepro .tabs > div:first-child .notice .swiper .swiper-wrapper a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 14px;
}

main #noticepro .tabs > div:first-child > a:before {
  content: "\F4FE";
  font-family: "bootstrap-icons" !important;
  color: #fff;
  font-size: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
}

main #noticepro .tabs > div:last-child {
  background-color: #f6f5ef;
  padding: 0 5%;
}

main #noticepro .tabs > div:last-child > a {
  display: flex;
  align-items: center;
  width: 100%;
}

main #noticepro .tabs > div:last-child > a span {
  margin-right: 15%;
}

main #noticepro .tabs > div:last-child > a i:before {
  content: "\F282";
  font-family: "bootstrap-icons" !important;
  color: #000;
  font-size: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 5px;
  transition: 0.4s;
}

main #noticepro .tabs > div:last-child > a i.on:before {
  content: "\F286";
}

main #noticepro .promotion {
  height: 600px;
  background-color: #f6f5ef;
  padding: 30px 0;
}

main #noticepro .promotion .promotion_wrap {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

main #noticepro .promotion .promotion_wrap ul.promotion_slider {
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  transform-origin: left center;
}

main #noticepro .promotion .promotion_wrap ul.promotion_slider li.slide {
  flex-shrink: 0;
  width: 819px;
  max-width: 100%;
  margin-right: 10px;
  opacity: 0.4;
  transform: scale(0.9);
  transform-origin: center;
  transition: all 0.4s ease;
}

main #noticepro .promotion .promotion_wrap ul.promotion_slider li.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* 명확한 우선순위를 위한 추가 선택자 */
.promotion_slider .slide {
  opacity: 0.4;
}

.promotion_slider .slide.active {
  opacity: 1;
}

main
  #noticepro
  .promotion
  .promotion_wrap
  ul.promotion_slider
  li
  .image_wrap
  img {
  width: 100%;
}

main
  #noticepro
  .promotion
  .promotion_wrap
  ul.promotion_slider
  li
  .promotion_title {
  text-align: center;
  padding-top: 20px;
  font-size: 25px;
  font-weight: 500;
  color: #171717;
  padding-bottom: 15px;
}

main #noticepro .promotion .promotion_wrap ul.promotion_slider li .date {
  text-align: center;
  font-size: 18px;
}

main
  #noticepro
  .promotion
  .promotion_wrap
  ul.promotion_slider
  li
  .detail_btn
  button {
  width: 150px;
  margin: 20px auto;
  padding: 10px 0;
  display: block;
  background: transparent;
  border: 1px solid #333;
  border-radius: 5px;
  transition: all 0.4s;
}

main
  #noticepro
  .promotion
  .promotion_wrap
  ul.promotion_slider
  li
  .detail_btn
  button:hover {
  border: none;
  background: #333;
  color: #fff;
}

main #noticepro .promotion .promotion_wrap .prev {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  margin: auto 0;
  top: 0;
  bottom: 0;
  left: 100px;
}

main #noticepro .promotion .promotion_wrap .prev i:before,
main #noticepro .promotion .promotion_wrap .next i:before {
  font-size: 35px;
}

main #noticepro .promotion .promotion_wrap .next {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  margin: auto 0;
  top: 0;
  bottom: 0;
  right: 100px;
}

/* REWARDS */
main #rewards {
  background-color: #1e3932;
  padding: 5% 0;
}

main #rewards .container {
  max-width: 100%;
  padding: 0 3%;
}

main #rewards .container .subject {
  margin-right: 50px;
}

main #rewards .container .subject img {
  max-width: 175px;
}

main #rewards .description > h2 {
  font-size: 24px;
  color: #fff;
  padding-bottom: 15px;
}

main #rewards .description .sign {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

main #rewards .description .sign h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
}

main #rewards .description .sign h3 span {
  font-weight: 800;
}

main #rewards .description .sign ul {
  flex-direction: row-reverse;
}

main #rewards .description .sign ul li a {
  display: block;
  width: 80px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  box-sizing: border-box;
  border-radius: 5px;
}

main #rewards .description .sign ul li a.log {
  border: 2px solid #fff;
  color: #fff;
  margin-left: 10px;
}

main #rewards .description .sign ul li a.joi {
  width: 105px;
  background-color: #00704a;
  color: #fff;
}

main #rewards .description .gift h3 {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

main #rewards .description .gift h3 span {
  font-weight: 800;
}

main #rewards .description .gift a {
  display: block;
  width: 150px;
  height: 42px;
  text-align: center;
  line-height: 39px;
  border: 1px solid #fff;
  color: #fff;
  margin-left: 50px;
}

/* Pick your Favorite */

main #pickfav {
  background: url("../images/favorite_bg.jpg") no-repeat center/cover fixed;
  height: 60vw;
}

main #pickfav .containers {
  max-width: 90%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

main #pickfav .containers .text_1 {
  position: absolute;
  width: 28.5%;
  top: 18.5%;
  left: 0;
  text-align: right;
}

main #pickfav .containers .text_1 img {
  width: 70%;
  object-fit: contain;
}

main #pickfav .containers .text_2 {
  position: absolute;
  width: 28.5%;
  top: 46.5%;
}

main #pickfav .containers .text_2 img {
  width: 100%;
}

main #pickfav .containers .text_2 img:not(:first-child) {
  display: none;
}

main #pickfav .containers .more {
  width: 28.5%;
  position: absolute;
  top: 67.5%;
}

main #pickfav .containers .more a {
  display: block;
  width: 130px;
  padding: 6px 0;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 8px;
  margin-left: auto;
}

main #pickfav .containers .dreamy_pick {
  position: absolute;
  top: 13.5%;
  right: 7.5%;
  width: 55.5%;
}

main #pickfav .containers .dreamy_pick img {
  width: 100%;
}

/* Reserve Magazine */

main #reserve {
  width: 100%;
  height: 38vw;
  background: url("../images/reserve_bg_pc.png") no-repeat center/contain;
}

main #reserve .containers {
  max-width: 80%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

main #reserve .containers .reserve_text_pc {
  position: absolute;
  width: 48.5%;
  left: 25.5%;
  top: 41.5%;
}

main #reserve .containers .reserve_text_pc img {
  width: 100%;
}

main #reserve .visual {
  width: 28.5%;
  position: absolute;
  top: 0;
  right: -1.5%;
}

main #reserve .visual img {
  width: 100%;
}

main #reserve .more {
  width: 48.5%;
  position: absolute;
  left: 25.5%;
  top: 63.5%;
}

main #reserve .more a {
  display: block;
  width: 150px;
  padding: 4px 0;
  text-align: center;
  border: 1px solid #000;
  color: #000;
}

/* Find a store */
main #find {
  width: 100%;
  height: 40vw;
  background: url("../images/find_store_bg.jpg") no-repeat;
  background-size: cover;
  overflow: hidden;
}

main #find .containers {
  max-width: 85%;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

main #find .containers .photo1 {
  position: absolute;
  width: 36.5%;
  z-index: 20;
}

main #find .containers .photo1 img {
  width: 100%;
}

main #find .containers .photo2 {
  width: 15.5%;
  position: absolute;
  z-index: 21;
  top: 36.5%;
  left: 18.5%;
}

main #find .containers .photo2 img {
  width: 100%;
}

main #find .containers .kong {
  position: absolute;
  width: 30.5%;
  top: -5.5%;
  left: 57.5%;
}

main #find .containers .kong img {
  width: 100%;
}

main #find .containers .building {
  position: absolute;
  width: 25.5%;
  right: 7.5%;
  bottom: 0;
}
main #find .containers .building img {
  width: 100%;
}

main #find .containers .text {
  position: absolute;
  width: 32.5%;
  right: 15.5%;
  top: 30.5%;
}

main #find .containers .text img:first-child {
  margin-bottom: 15px;
}

main #find .containers .text img {
  display: block;
  width: 100%;
}

main #find .containers .text img:nth-child(3),
main #find .containers .text img:last-child {
  display: none;
}

main #find .containers .more {
  position: absolute;
  width: 32.5%;
  bottom: 28.5%;
  right: 15.5%;
}

main #find .containers .more a {
  display: block;
  width: 110px;
  padding: 2px 0;
  border: 1px solid #000;
  text-align: center;
  font-size: 14px;
}

/* Footer */
footer {
  background-color: #2c2a29;
}

footer .container {
  position: relative;
}

footer .container .menu {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5%;
  padding-bottom: 10%;
}

footer .container .menu li a {
  color: #fff;
  font-size: 12px;
}

footer .container .menu > li {
  width: 220px;
}

footer .container .menu > li > a {
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}

footer .container .menu > li > ul > li > a {
  line-height: 1.8;
}

footer .container .images {
  position: absolute;
  right: 0;
  top: 5%;
}

footer .container .login {
  display: none;
}

footer .awards {
  width: 100%;
  background-color: #282828;
  padding: 20px 0;
}

footer .awards .container {
  padding: 0;
}

footer .awards .container ul {
  display: flex;
}

footer .awards .container ul li a {
  display: block;
}

footer .other {
  padding-top: 30px;
}

footer .other .container ul:first-of-type {
  justify-content: center;
  padding-bottom: 10px;
}

footer .other .container ul:first-of-type li a {
  color: #fff;
  font-size: 10px;
  display: block;
  padding: 0 10px;
}

footer .other .container ul:first-of-type li a.active {
  color: #00b04f;
}

footer .other .container ul:last-of-type {
  justify-content: center;
  gap: 10px;
  padding-bottom: 25px;
}

footer .other .container ul:last-of-type li a {
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 5px 10px;
  border: 2px solid #fff;
}

footer .other .container span {
  display: block;
  text-align: center;
  color: #878787;
  font-size: 14px;
  padding-bottom: 30px;
}
