@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans KR", arial, sans-serif;
  font-size: 16px;
  color: #333;
  min-width: 1900px;
  /* overflow-x: hidden; */
}
ul,
li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:link {
}
a:visited {
}
a:hover {
  color: #690;
}
a:active {
}
img {
  display: block;
}

.btn {
  width: 130px;
  padding: 10px;
  border: 2px solid #333;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  display: block;
  transition: 0.4s;
}
.btn:hover {
  background-color: #333;
  color: #fff;
}

.btn--reverse {
  background-color: #333;
  color: #fff;
}
.btn--reverse:hover {
  background-color: transparent;
  color: #333;
}

.btn--brown {
  color: #521;
  border-color: #521;
}

.btn--brown:hover {
  background-color: #521;
  color: #fff;
}

.btn--gold {
  color: #d9aa8a;
  border-color: #d9aa8a;
}

.btn--gold:hover {
  background-color: #d9aa8a;
  color: #fff;
}

.btn--white {
  color: #fff;
  border-color: #fff;
}

.btn--white:hover {
  color: #333;
  background-color: #fff;
}

/* 화면 애니메이션  */
.back-to-position {
  opacity: 0;
  transition: 0.4s;
}

.back-to-position.to-right {
  transform: translateX(-150px);
}

.back-to-position.to-left {
  transform: translateX(150px);
}

.show .back-to-position.to-right {
  opacity: 1;
  transform: translateX(0px);
}
.show .back-to-position.to-left {
  opacity: 1;
  transform: translateX(0px);
}

.show .back-to-position.delay-0 {
  transition-delay: 0;
}
.show .back-to-position.delay-1 {
  transition-delay: 0.3s;
}
.show .back-to-position.delay-2 {
  transition-delay: 0.6s;
}
.show .back-to-position.delay-3 {
  transition-delay: 0.9s;
}

/***************** header  *****************/
header {
  position: fixed;
  /* position: sticky; */
  /* position: relative; */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f6f5f0;
  border-bottom: 1px solid #c8c8c8;
  z-index: 9;
}
.inner {
  width: 1100px;
  margin: 0 auto;
  position: relative;
}

header > .inner {
  height: 120px;
}

header .logo {
  height: 75px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

header .sub-menu {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  font-size: 12px;
}
ul.cnb {
  font-size: 14px;
  display: flex;
}

ul.cnb li {
  padding: 15px;
}

/* 검색창  */
header .search {
  position: relative;
  height: 34px;
}
header .search input {
  width: 36px;
  height: 34px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  padding: 4px 10px;
  background-color: #fff;
  color: #555;
  font-size: 12px;
  /*   justify-content: center;
  align-items: center; */
  transition: 0.4s;
}

header .search input:focus {
  width: 190px;
  border: 1px solid #690;
}
header .search .material-icons {
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  cursor: pointer;
  transition: 0.4s;
}

header .search.focused .material-icons {
  opacity: 0;
}

/*  메인메뉴 */

ul.main-menu {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: flex;
  z-index: 2;
}

li.item:hover .item__name {
  background-color: #222;
  color: #690;
  border-radius: 6px 6px 0 0;
}

li.item .item__name {
  padding: 15px 20px 30px 20px;
}

.item .item__contents {
  width: 100%;
  position: fixed;
  left: 0;
  display: none;
  color: #f9f9f9;
}
.item:hover .item__contents {
  display: block;
  color: #999;
}
.item .item__contents .contents_menu {
  background-color: #333;
}

.item .item__contents .contents_menu ul.inner {
  display: flex;
  padding: 20px;
}

.item .item__contents .contents_menu ul.inner li {
  width: 230px;
  padding: 5px;
}

.item .item__contents .contents_menu ul.inner li h4 {
  font-weight: 500;
  color: #f9f9f9;
}

.item .item__contents .contents_menu ul.inner ul {
  margin-top: 20px;
  color: #999;
  font-size: 14px;
}

.item .item__contents .contents_menu ul.inner ul li {
  padding: 7px;
}

.item .item__contents .contents_menu ul.inner ul li:hover {
}

.item .item__contents .contents_texture {
  padding: 20px 0 30px 0;
  background-color: orange;
  /* background-image: url("../images/main_menu_pattern.jpg"); */
  background: url("../images/main_menu_pattern.jpg");
  font-size: 14px;
}
.item .item__contents .contents_texture h4 {
  padding: 15px 0;
  color: #f9f9f9;
}
.item .item__contents .contents_texture p {
  color: #690;
  padding: 0 0 15px 0px;
}

header .badges {
  position: absolute;
  top: 132px;
  right: 12px;
}
header .badges .badge {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/******************  visual ***********************/

section.visual {
  background: url("../images/visual_bg.jpg");
  background-position: center;
  margin-top: 120px;
}

.visual .inner {
  height: 646px;
}

.visual .fade-in {
  opacity: 0;
}
.visual .visual_img1 {
}

.visual .visual_img1 .btn {
  position: absolute;
  top: 320px;
  left: 173px;
}

.visual .visual_img1 img {
  position: absolute;
  top: 45px;
  left: 0px;
}
.visual .visual_img2 img:first-child {
  position: absolute;
  top: 30px;
  right: -30px;
}

.visual .visual_img2 img:nth-child(2) {
  position: absolute;
  top: 40px;
  right: 220px;
}

.visual .visual_img3 img:first-child {
  position: absolute;
  bottom: 0px;
  right: 160px;
}

.visual .visual_img3 img:nth-child(2) {
  position: absolute;
  bottom: 250px;
  right: 400px;
}

.visual .spoon {
  position: absolute;
  bottom: 0;
  left: 220px;
}

.notice-line {
  position: relative;
}

.notice-line .bg_left {
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  background: #333;
  width: 50%;
  height: 100%;
}

.notice-line .bg_right {
  position: absolute;
  top: 0;
  right: 0;
  height: 500px;
  background: #f6f5ef;
  width: 50%;
  height: 100%;
}

.notice-line .inner {
  height: 62px;
  display: flex;
}

.notice-line .inner .inner__left {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  background: #333;
}

.notice-line .inner .inner__left h2 {
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  margin-right: 20px;
}

.notice-line .inner .inner__left .swiper-container {
  flex-grow: 1;
  height: 62px;
  color: #fff;
  z-index: 1;
}

.notice-line .inner .inner__left .swiper-slide {
  height: 62px;
  display: flex;
  align-items: center;
}

.notice-line .inner .inner__left .plus_icon {
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notice-line .inner .inner__left .material-icons {
  font-size: 36px;
  color: #fff;
}

.notice-line .inner .inner__right {
  width: 40%;
  height: 100%;
  background-color: #f6f5ef;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.notice-line .inner .inner__right h2 {
  color: #333;
  font-size: 17px;
  font-weight: bold;
}
.notice-line .inner .inner__right .upload_icon {
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
}

.notice-line .inner .inner__right .upload_icon .material-icons {
  font-size: 36px;
  cursor: pointer;
}

.promotion {
  height: 693px;
  background-color: #f6f6ef;
  position: relative;
  overflow: hidden;
  transition: height 0.4s;
}
.promotion.hide {
  height: 0;
}

.promotion .swiper-container {
  /* width: 2477px; */
  width: calc(819px * 3 + 20px);
  height: 553px;
  /* background-color: orange; */
  /*   left: 50%;
  margin-left: calc((819px * 3 + 20px) / -2); */

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
}

.promotion .swiper-container .swiper-wrapper {
}
.promotion .swiper-container .swiper-slide {
  opacity: 0.5;
  transition: opacity 1s;
  position: relative;
}
.promotion .swiper-container .swiper-slide-active {
  opacity: 1;
}

.promotion .swiper-slide .btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.promotion .swiper-pagination {
  bottom: 25px;
  left: 0;
  right: 0;
}

.promotion .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  background-image: url(../images/promotion_slide_pager.png);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  outline: none;
}

.promotion .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.promotion .swiper-pagination .swiper-pagination-bullet-active {
  background-image: url(../images/promotion_slide_pager_on.png);
}

.promotion .swiper-prev,
.promotion .swiper-next {
  width: 42px;
  height: 42px;
  border: 3px solid #333;
  border-radius: 50%;
  position: absolute;
  top: 300px;
  z-index: 1;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotion .swiper-prev {
  left: 50%;
  margin-left: -480px;
}
.promotion .swiper-next {
  right: 50%;
  margin-right: -480px;
}

.promotion .swiper-prev:hover,
.promotion .swiper-next:hover {
  background-color: #333;
  color: #fff;
}

/* rewards */
section.rewards {
  position: relative;
}
section.rewards .bg-left {
  width: 50%;
  height: 100%;
  background-color: #272727;
  position: absolute;
  top: 0;
  left: 0;
}
section.rewards .bg-right {
  width: 50%;
  height: 100%;
  background-color: #d5c698;
  position: absolute;
  top: 0;
  right: 0;
}
section.rewards .inner {
  height: 241px;
  background-image: url(../images/rewards.jpg);
}

section.rewards .btn-group {
  position: absolute;
  bottom: 24px;
  right: 0;
  width: 250px;
  display: flex;
  flex-wrap: wrap;
}

section.rewards .btn.sign-up {
  margin-right: 10px;
}
section.rewards .btn.sign-in {
  width: 110px;
  margin-right: 0;
}
section.rewards .btn.gift {
  margin-top: 10px;
  flex-grow: 1;
}

/*youtube */
.youtube {
  height: 700px;
  background-color: #333;
  position: relative;
  overflow: hidden;
}
.youtube__area {
  width: 1920px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.youtube__area::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

/* .youtube__area .con {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
} */

.youtube .youtube__cover {
  background-image: url(../images/video_cover_pattern.png);
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube #player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 시즌상품  */

.season-product {
  background-image: url(../images/season_product_bg.jpg);
  background-repeat: repeat;
}
.season-product .inner {
  height: 400px;
}
.season-product .txt_group {
  position: absolute;
  top: 110px;
  right: 100px;
}
.season-product .txt_group .title {
  margin-bottom: 10px;
}
.season-product .txt_group .desc {
  margin-bottom: 15px;
}
.season-product .txt_group .more {
}

/* reserve-coffee   */

.reserve-coffee {
  background-image: url(../images/reserve_bg.jpg);
}

.reserve-coffee {
  height: 400px;
}

.reserve-coffee .reserve-logo {
  position: absolute;
  top: 110px;
  left: 0;
}
.reserve-coffee .txt_group {
  position: absolute;
  top: 124px;
  left: 208px;
}
.reserve-coffee .txt_group .desc {
  margin-bottom: 15px;
}
.reserve-coffee .txt_group .more {
}

.reserve-coffee .product {
  position: absolute;
  top: 0;
  right: 0;
}

/* favorite */
.favorite {
  background-image: url(../images/favorite_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

.favorite .inner {
  padding: 110px 0;
}

.favorite .txt_group {
  width: 362px;
  margin-left: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.favorite .txt_group .title {
  margin-bottom: 40px;
}

.favorite .txt_group .desc {
  margin-bottom: 40px;
}
.favorite .txt_group .more {
}

/******************  reserve-store *******************/
.reserve-store {
  background-image: url(../images/reserve_store_bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.reserve-store .inner {
  height: 600px;
}

.reserve-store .medal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 334px;
  height: 334px;
  perspective: 600px;
}
.reserve-store .medal:hover {
}
.reserve-store .mall {
  width: 334px;
  height: 334px;
  backface-visibility: hidden;
  perspective: 300px;
  transition: 1s;
}

.reserve-store .medal .front {
  position: absolute;
  transform: rotateY(0deg);
}

.reserve-store .medal:hover .front {
  transform: rotateY(180deg);
}

.reserve-store .medal .back {
  transform: rotateY(-180deg);
}
.reserve-store .medal:hover .back {
  transform: rotateY(0deg);
}
/* 매장찾기  */
.find-store {
  background-image: url(../images/find_store_bg.jpg);
}
.find-store .inner {
  height: 400px;
}

.find-store .texture1 {
  position: absolute;
  top: 0;
  left: 500px;
}
.find-store .texture2 {
  position: absolute;
  bottom: 0;
  right: 0px;
}
.find-store .picture1 {
  position: absolute;
  left: 30px;
  top: -80px;
  border-radius: 50%;
}
.find-store .picture2 {
  position: absolute;
  left: 180px;
  bottom: 30px;
  border-radius: 50%;
}

.find-store .txt_group {
  position: absolute;
  top: 130px;
  left: 550px;
}
.find-store .txt_group .title {
  margin-bottom: 20px;
}
.find-store .txt_group .desc {
  margin-bottom: 20px;
}

/* 수상내역 awards */
.awards {
  background-color: #333;
}
.awards .inner {
  padding: 40px;
}
.awards .swiper-wrapper {
  text-align: center;
}

.awards .inner .swiper-container {
  width: 100%;
}

.awards .swiper-prev,
.awards .swiper-next {
  width: 42px;
  height: 42px;
  border: 2px solid #ccc;
  border-radius: 50%;
  outline: none;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  transition: 0.4s;
}
.awards .swiper-prev {
  left: -100px;
}
.awards .swiper-next {
  right: -100px;
}
.awards .swiper-prev:hover,
.awards .swiper-next:hover {
  background-color: #fff;
  color: #333;
}

/* footer */

footer {
  background-color: #272727;
  border-top: 2px solid #666;
}
footer .inner {
  padding: 40px 0 60px 0;
}

footer ul.fmenu {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer ul.fmenu li {
  position: relative;
}

footer ul.fmenu li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #999;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  margin: auto;
}

footer ul.fmenu li:last-child::after {
  display: none;
}

footer ul.fmenu li a {
  color: #efefef;
  font-size: 12px;
  font-weight: 600;
  padding: 15px;
  display: block;
}
footer ul.fmenu li a.green {
  color: #690;
}
footer .btn-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
footer .btn-group a.btn {
  font-size: 12px;
  margin-right: 10px;
}
footer .btn-group a.btn:last-child {
  margin-right: 0;
}
footer .info {
  margin-top: 30px;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  color: #ccc;
}
footer .info span {
  margin-right: 20px;
}
footer .info span:last-child {
  margin-right: 0px;
}

footer p.copyright {
  text-align: center;
  font-size: 12px;
  color: #ccc;
  padding: 10px;
}
footer img.logo {
  margin: 30px auto 0;
}

#gotop {
  width: 42px;
  height: 42px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3;
}

#gotop .material-icons {
}
