img {
  display: block;
}

body {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Gugi", sans-serif;
}

a {
  text-decoration: none;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

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

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

.btn.btn--brown {
  color: #592b18;
  border-color: #592b18;
}
.btn.btn--brown:hover {
  background-color: #592b18;
  color: #fff;
}

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

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

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

.show .back-to-position {
  opacity: 1;
  transform: translateX(0);
}
.show .back-to-position.delay-0 {
  transition-delay: 0s;
}
.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 {
  width: 100%;
  background-color: #f6f5f0;
  border-bottom: 1px solid #c8c8c8;
  position: fixed;
  z-index: 9;
  top: 0;
}
header > .inner {
  height: 120px;
}
header .logo {
  height: 75px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
header .sub-menu {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
}
header .sub-menu ul.menu {
  display: flex;
}
header .sub-menu ul.menu li {
  position: relative;
}
header .sub-menu ul.menu li::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #e5e5e5;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
header .sub-menu ul.menu li:first-child::before {
  display: none;
}
header .sub-menu ul.menu li a {
  font-size: 12px;
  display: block;
  padding: 11px 16px;
  color: #656565;
}
header .sub-menu ul.menu li a:hover {
  color: #000;
}
header .sub-menu .search {
  height: 34px;
  position: relative;
}
header .sub-menu .search input {
  width: 36px;
  height: 34px;
  padding: 4px 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: fff;
  color: #777;
  transition: width 0.4s;
}
header .sub-menu .search input:focus {
  width: 190px;
  border-color: #669900;
}
header .sub-menu .search .material-icons {
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  transition: 0.4s;
}
header .sub-menu .search.focused .material-icons {
  opacity: 0;
}
header .main-menu {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
}
header .main-menu .item:hover .item__name {
  background-color: #2c2a29;
  color: #669900;
  border-radius: 6px 6px 0px 0px;
}
header .main-menu .item:hover .item__contents {
  display: block;
}
header .main-menu .item .item__name {
  padding: 10px 20px 34px 20px;
  font-size: 13px;
}
header .main-menu .item .item__contents {
  width: 100%;
  position: fixed;
  left: 0;
  display: none;
}
header .main-menu .item .item__contents .contents__menu {
  background-color: #2c2a29;
  padding: 20px 0;
}
header .main-menu .item .item__contents .contents__menu > ul {
  display: flex;
  padding: 20px 0px;
}
header .main-menu .item .item__contents .contents__menu > ul > li {
  width: 220px;
}
header .main-menu .item .item__contents .contents__menu > ul > li h4 {
  padding: 3px 0px 12px 0;
  font-size: 14px;
  color: #fff;
}
header .main-menu .item .item__contents .contents__menu > ul > li ul > li {
  padding: 5px 0px;
  font-size: 12px;
  color: #999;
  cursor: pointer;
}
header .main-menu .item .item__contents .contents__menu > ul > li ul > li:hover {
  color: #669900;
}
header .main-menu .item .item__contents .contents__texture {
  background-image: url("../images/main_menu_pattern.jpg");
  font-size: 12px;
  padding: 26px 0px;
}
header .main-menu .item .item__contents .contents__texture h4 {
  color: #999;
  font-weight: bold;
}
header .main-menu .item .item__contents .contents__texture p {
  color: #669900;
  margin: 4px 0px 14px;
}
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);
}

.visual {
  margin-top: 120px;
  background-image: url("../images/visual_bg.jpg");
  background-position: center;
}
.visual .inner {
  height: 646px;
}
.visual .inner .title {
  position: absolute;
  top: 88px;
  left: -10px;
}
.visual .inner .title .btn {
  position: absolute;
  top: 259px;
  left: 173px;
}
.visual .inner .fade-in {
  opacity: 0;
}
.visual .inner .fade-in > img {
  position: absolute;
}
.visual .inner .fade-in .cup1.image {
  bottom: 0;
  right: -47px;
}
.visual .inner .fade-in .cup1.text {
  top: 38px;
  right: 171px;
}
.visual .inner .fade-in .cup2.image {
  bottom: 0px;
  right: 162px;
}
.visual .inner .fade-in .cup2.text {
  top: 321px;
  right: 416px;
}
.visual .inner .fade-in .spoon {
  bottom: 0;
  left: 275px;
}

.notice .notice-line {
  position: relative;
}
.notice .notice-line .bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #333;
}
.notice .notice-line .bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #f6f5ef;
}
.notice .notice-line .inner {
  height: 62px;
  display: flex;
}
.notice .notice-line .inner .inner__left {
  width: 60%;
  height: 100%;
  background-color: #333;
  display: flex;
  align-items: center;
}
.notice .notice-line .inner .inner__left h2 {
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  margin-right: 20px;
}
.notice .notice-line .inner .inner__left .swiper-container {
  height: 62px;
  flex-grow: 1;
}
.notice .notice-line .inner .inner__left .swiper-container .swiper-wrapper .swiper-slide {
  height: 62px;
  display: flex;
  align-items: center;
}
.notice .notice-line .inner .inner__left .swiper-container .swiper-wrapper .swiper-slide a {
  color: #fff;
}
.notice .notice-line .inner .inner__left .notice-line__more {
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notice .notice-line .inner .inner__left .notice-line__more .material-icons {
  color: #Fff;
  font-size: 30px;
}
.notice .notice-line .inner .inner__right {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.notice .notice-line .inner .inner__right h2 {
  font-size: 17px;
  font-weight: bold;
  margin-right: 20px;
}
.notice .notice-line .inner .inner__right .toggle-promotion {
  width: 62px;
  height: 62px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notice .notice-line .inner .inner__right .material-icons {
  font-size: 30px;
}
.notice .promotion {
  height: 693px;
  background-color: #f6f5ef;
  position: relative;
  transition: height 0.4s;
  overflow: hidden;
}
.notice .promotion.hide {
  height: 0;
}
.notice .promotion .swiper-container {
  width: 2477px;
  height: 553px;
  text-align: center;
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -1238.5px;
}
.notice .promotion .swiper-container .swiper-slide {
  opacity: 0.5;
  transition: opacity 1s;
  position: relative;
}
.notice .promotion .swiper-container .swiper-slide .btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.notice .promotion .swiper-container .swiper-slide-active {
  opacity: 1;
}
.notice .promotion .swiper-pagination {
  bottom: 40px;
  left: 0;
  right: 0;
}
.notice .promotion .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  background-image: url("../images/promotion_slide_pager.png");
  width: 12px;
  height: 12px;
  margin-right: 6px;
  outline: none;
}
.notice .promotion .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.notice .promotion .swiper-pagination .swiper-pagination-bullet-active {
  background-image: url("../images/promotion_slide_pager_on.png");
}
.notice .promotion .swiper-prev,
.notice .promotion .swiper-next {
  width: 42px;
  height: 42px;
  border: 2px solid #333;
  border-radius: 50%;
  position: absolute;
  top: 300px;
  z-index: 1;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.notice .promotion .swiper-prev:hover,
.notice .promotion .swiper-next:hover {
  background-color: #333;
  color: #fff;
}
.notice .promotion .swiper-prev {
  left: 50%;
  margin-left: -480px;
}
.notice .promotion .swiper-next {
  right: 50%;
  margin-right: -480px;
}

.rewards {
  position: relative;
}
.rewards > .inner {
  background-image: url("../images/rewards.jpg");
  height: 241px;
}
.rewards > .inner .btn-group {
  position: absolute;
  bottom: 24px;
  right: 0px;
  width: 250px;
  display: flex;
  flex-wrap: wrap;
}
.rewards > .inner .btn-group .btn.sign-up {
  margin-right: 10px;
}
.rewards > .inner .btn-group .btn.sign-in {
  width: 110px;
}
.rewards > .inner .btn-group .btn.gift {
  margin-top: 10px;
  flex-grow: 1;
}
.rewards > .bg-left {
  width: 50%;
  height: 100%;
  background-color: #272727;
  position: absolute;
  top: 0;
  left: 0;
}
.rewards > .bg-right {
  width: 50%;
  height: 100%;
  background-color: #d5c798;
  position: absolute;
  top: 0;
  right: 0;
}

.youtube {
  position: relative;
  height: 700px;
  background-color: #333;
  overflow: hidden;
}
.youtube > .youtube__area {
  width: 1920px;
  background-color: orange;
  position: absolute;
  left: 50%;
  margin-left: -960px;
  top: 50%;
  margin-top: -540px;
}
.youtube > .youtube__area::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.youtube > .youtube__area #player {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.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 > .inner {
  height: 700px;
}
.youtube > .inner > .floating1 {
  position: absolute;
  top: 50px;
  left: 0;
}
.youtube > .inner > .floating2 {
  position: absolute;
  top: 350px;
  left: 150px;
}

.season-product {
  background-image: url("../images/season_product_bg.jpg");
}
.season-product > .inner {
  height: 400px;
}
.season-product > .inner > .floating3 {
  position: absolute;
  top: -200px;
  right: 0;
}
.season-product > .inner .text-group {
  position: absolute;
  top: 110px;
  right: 100px;
}
.season-product > .inner .text-group .title {
  margin-bottom: 10px;
}
.season-product > .inner .text-group .description {
  margin-bottom: 15px;
}
.reserve-coffee {
  background-image: url("../images/reserve_bg.jpg");
}
.reserve-coffee > .inner {
  height: 400px;
}
.reserve-coffee > .inner .reserve-logo {
  position: absolute;
  top: 110px;
  left: 0px;
}
.reserve-coffee > .inner .text-group {
  position: absolute;
  top: 124px;
  left: 208px;
}
.reserve-coffee > .inner .product {
  position: absolute;
  top: 0;
  right: 0;
}

.pick-your-favorite {
  background-image: url("../images/favorite_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
.pick-your-favorite > .inner {
  padding: 110px 0;
}
.pick-your-favorite > .inner .text-group {
  width: 362px;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-end;
}
.pick-your-favorite > .inner .text-group .title {
  margin-bottom: 40px;
}
.pick-your-favorite > .inner .text-group .description {
  margin-bottom: 40px;
}

.reserve-store {
  background-image: url("../images/reserve_store_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
.reserve-store > .inner {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reserve-store > .inner .medal {
  width: 334px;
  height: 334px;
  perspective: 600px;
}
.reserve-store > .inner .medal .front,
.reserve-store > .inner .medal .back {
  position: absolute;
  width: 334px;
  height: 334px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: 1s;
}
.reserve-store > .inner .medal .front {
  transform: rotateY(0deg);
}
.reserve-store > .inner .medal:hover .front {
  transform: rotateY(180deg);
}
.reserve-store > .inner .medal:hover .back {
  transform: rotateY(0deg);
}
.reserve-store > .inner .medal .back {
  transform: rotateY(-180deg);
}
.reserve-store > .inner .medal .back .btn {
  position: absolute;
  top: 240px;
  left: 0;
  right: 0;
  margin: auto;
}

.find-store {
  background-image: url("../images/find_store_bg.jpg");
}
.find-store > .inner {
  height: 400px;
}
.find-store > .inner .trxture1 {
  position: absolute;
  top: 0;
  left: 400px;
}
.find-store > .inner .trxture2 {
  position: absolute;
  right: 0;
  bottom: 0px;
}
.find-store > .inner .picture {
  position: absolute;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.find-store > .inner .picture1 {
  top: -60px;
  left: 0;
}
.find-store > .inner .picture2 {
  top: 150px;
  left: 250px;
}
.find-store > .inner .text-group {
  position: absolute;
  top: 120px;
  left: 550px;
}
.find-store > .inner .text-group .title {
  margin-bottom: 20px;
}
.find-store > .inner .text-group .description {
  margin-bottom: 20px;
}

.awards {
  background-color: #272727;
}
.awards > .inner {
  padding: 40px 0px;
}
.awards > .inner .swiper-container {
  width: 100%;
  height: 40px;
}
.awards > .inner .swiper-prev,
.awards > .inner .swiper-next {
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  outline: none;
  color: #fff;
  opacity: 0.3;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.awards > .inner .swiper-prev:hover,
.awards > .inner .swiper-next:hover {
  background: #fff;
  color: #333;
}
.awards > .inner .swiper-prev {
  left: -100px;
}
.awards > .inner .swiper-next {
  right: -100px;
}

footer {
  background-color: #272727;
  border: 1px solid #333;
}
footer > .inner {
  padding: 40px 0px 60px 0;
}
footer > .inner .menu {
  display: flex;
  justify-content: center;
}
footer > .inner .menu li {
  position: relative;
}
footer > .inner .menu li:last-child::before {
  display: none;
}
footer > .inner .menu li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #555;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  margin: auto;
}
footer > .inner .menu li a {
  color: #ccc;
  font-size: 12px;
  font-weight: 700;
  padding: 15px;
  display: block;
}
footer > .inner .menu li a.green {
  color: #669900;
}
footer > .inner .btn-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
footer > .inner .btn-group .btn {
  font-size: 12px;
  margin-right: 10px;
}
footer > .inner .btn-group .btn:last-child {
  margin-right: 0px;
}
footer > .inner .info {
  margin-top: 30px;
  text-align: center;
}
footer > .inner .info span {
  margin-right: 20px;
  color: #999;
  font-size: 12px;
}
footer > .inner .info span:last-child {
  margin-right: 0px;
}
footer > .inner .copyright {
  color: #999;
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}
footer > .inner .logo {
  margin: 30px auto 0;
}

#to-top {
  width: 42px;
  height: 42px;
  background-color: #333;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}/*# sourceMappingURL=style.css.map */