body {
	font-family: "Nanum Gothic", sans-serif;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	overflow-x: hidden;
}
/* COMMON */
img {
	display: block;
}
a {
	text-decoration: none;
}
.inner {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
.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 expansion */
.btn.btn--reverse {
	background-color: #333;
	color: #fff;
}
.btn.btn--reverse:hover {
	background-color: transparent;
	color: #333;
}
.btn.btn--brown {
	color: #592818;
	border-color: #592818;
}
.btn.btn--brown:hover {
	background-color: transparent;
	color: #592818;
}
.btn.btn--gold {
	color: #d9aa8a;
	border-color: #d9aa8a;
}
.btn.btn--gold:hover {
	color: #fff;
	background-color: #d9aa8a;
}
.btn.btn--white {
	color: #fff;
	border-color: #fff;
}
.btn.btn--white:hover {
	color: #333;
	background-color: #fff;
}

.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);
}

/* HEADER */
header {
	background-color: #f6f5ef;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9;
}
header > .inner {
	height: 120px;
}
header .logo {
	position: absolute;
	/* left: 0;
	top: 50%;
	transform: translate(0, -50%); */
	top: 0;
	bottom: 0;
	margin: auto;
	height: 75px;
}
header .sub-menu {
	position: absolute;
	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: #656565;
	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;
	padding: 11px 16px;
	display: block;
	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;
	outline: none;
	background-color: #fff;
	color: #777;
	font-size: 12px;
	transition: width 0.4s;
}
header .sub-menu .search input:focus {
	width: 190px;
	border-color: #669900;
}
header .sub-menu .search input:focus .material-icons {
	display: none;
}
header .sub-menu .search .material-icons {
	height: 24px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 5px;
	transition: 0.4s;
}
header .sub-menu .search.focused .material-symbols-outlined {
	opacity: 0;
}

header .main-menu {
	display: flex;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}
header .main-menu .item {
}
header .main-menu .item .item__name {
	padding: 10px 20px 34px 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	transition: 0.4s;
	cursor: pointer;
}
header .main-menu .item:hover .item__name {
	color: #669900;
	background-color: #2c2a29;
	border-radius: 6px 6px 0 0;
}
header .main-menu .item .item__contents {
	width: 100%;
	position: fixed;
	left: 0;
	display: none;
}
header .main-menu .item:hover .item__contents {
	display: block;
}

header .main-menu .item .item__contents .contents__menu {
	background-color: #2c2a29;
}
header .main-menu .item .item__contents .contents__menu > ul {
	display: flex;
	padding: 20px 0;
}
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 0 12px 0;
	font-size: 14px;
	color: #fff;
}
header .main-menu .item .item__contents .contents__menu ul > li ul {
}
header .main-menu .item .item__contents .contents__menu ul > li ul li {
	padding: 5px 0;
	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 0;
}

header .main-menu .item .item__contents .contents__texture h4 {
	color: #999;
	font-weight: 700;
}
header .main-menu .item .item__contents .contents__texture p {
	color: #669900;
	margin: 4px 0 14px;
}

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

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

/* NOTICE SECTION */
.notice {
}
.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: 700;
	margin-right: 20px;
}
.notice .notice-line .inner .inner__left .swiper {
	flex-grow: 1;
	height: 100%;
	color: #fff;
}
.notice .notice-line .inner .inner__left .swiper .swiper-wrapper {
}
.notice .notice-line .inner .inner__left .swiper .swiper-wrapper .swiper-slide {
	height: 62px;
	display: flex;
	align-items: center;
}
.notice
	.notice-line
	.inner
	.inner__left
	.swiper
	.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;
	align-items: center;
	justify-content: end;
}
.notice .notice-line .inner .inner__right h2 {
	font-size: 17px;
	font-weight: 700;
}
.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 .toggle-promotion .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 {
	/* image - 819px */
	width: calc(819px * 3 + 20px);
	height: 553px;
	position: absolute;
	top: 40px;
	left: 50%;
	margin-left: calc((819px * 3 + 20px) / -2);
}

.notice .promotion .swiper-slide {
	opacity: 0.4;
	transition: opacity 1s;
	position: relative;
}
.notice .promotion .swiper-slide-active {
	opacity: 1;
}

.notice .promotion .swiper-pagination .swiper-pagination-bullet {
	background: 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-slide .btn {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.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;
}
/* .notice .promotion .swiper-prev {
	left: 50%;
	margin-left: -480px;
}
.notice .promotion .swiper-next {
	right: 50%;
	margin-right: -480px;
} */

/* REWARDS */
.rewards {
	position: relative;
}
.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;
}
.rewards > .inner {
	background-image: url("../images/rewards.jpg");
	height: 241px;
}
.rewards .btn-group {
	position: absolute;
	bottom: 24px;
	right: 0;
	width: 250px;
	display: flex;
	flex-wrap: wrap;
}
.rewards .btn-group .sign-up {
	margin-right: 10px;
}
.rewards .btn-group .sign-in {
	width: 110px;
}
.rewards .btn-group .gift {
	margin-top: 10px;
	flex-grow: 1;
}

/* YOUTUBE */
.youtube {
	position: relative;
	height: 700px;
	overflow: hidden;
	background-color: #333;
}
.youtube .youtube__area {
	width: 1920px;
	position: absolute;
	left: 50%;
	margin-left: calc(1920px / -2);
	top: 50%;
	margin-top: calc(1920px * 9 / 16 / -2);
}
.youtube .youtube__area::before {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.youtube .youtube__area #player {
}
.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%;
}

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

/* SEASON PRODUCT */
.season-product {
	background-image: url("../images/season_product_bg.jpg");
}
.season-product .inner {
	height: 400px;
}

.season-product .text-group {
	position: absolute;
	top: 110px;
	right: 100px;
}
.season-product .text-group .title {
	margin-bottom: 10px;
}

.season-product .text-group .description {
	margin-bottom: 15px;
}

/* RESERVE COFFEE */

.reserve-coffee {
	background-image: url("../images/reserve_bg.jpg");
}
.reserve-coffee .inner {
	height: 400px;
}
.reserve-coffee .reserve-logo {
	position: absolute;
	top: 110px;
	left: 0;
}
.reserve-coffee .text-group {
	position: absolute;
	top: 124px;
	left: 208px;
}
.reserve-coffee .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 .text-group {
	margin-left: 100px;
	display: flex;
	width: 362px;
	flex-wrap: wrap;
	justify-content: end;
}
.pick-your-favorite .text-group .title {
	margin-bottom: 40px;
}
.pick-your-favorite .text-group .description {
	margin-bottom: 40px;
}

/* RESERVE STORE */
.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 .medal {
	width: 334px;
	height: 334px;
	perspective: 600px;
}
.reserve-store .medal .front,
.reserve-store .medal .back {
	width: 334px;
	height: 334px;
	backface-visibility: hidden;
	transition: 0.8s;
	position: absolute;
	overflow: hidden;
}
.reserve-store .medal .front {
	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);
}
.reserve-store .medal:hover .back .btn {
	position: absolute;
	top: 240px;
	left: 0;
	right: 0;
	margin: auto;
}

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

/* AWARDS */
.awards {
	background-color: #272727;
}
.awards .inner {
	padding: 40px 0;
}
.awards .swiper {
	width: 100%;
	height: 40px;
}
/* 
.awards .swiper-prev,
.awards .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 .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: 1px solid #333;
}
footer .inner {
	padding: 40px 0 60px 0;
}
footer .menu {
	display: flex;
	justify-content: center;
}
footer .menu li {
	position: relative;
}
footer .menu li::before {
	content: "";
	width: 3px;
	height: 3px;
	background-color: #555;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -1px;
	margin: auto;
}
footer .menu li:last-child::before {
	display: none;
}
footer .menu li a {
	text-decoration: none;
	color: #ccc;
	font-weight: 700;
	font-size: 12px;
	padding: 15px;
	display: block;
}
footer .menu li a.green {
	color: #669900;
}
footer .btn-group {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}
footer .btn-group .btn {
	font-size: 12px;
	margin-right: 10px;
}
footer .btn-group .btn:last-child {
	margin-right: 0;
}
footer .info {
	margin-top: 30px;
	text-align: center;
}
footer .info span {
	color: #999;
	margin-right: 20px;
	font-size: 12px;
}
footer .info span:last-child {
	margin-right: 0;
}

footer .copyright {
	color: #999;
	font-size: 12px;
	text-align: center;
	margin-top: 12px;
}
footer .copyright .this-year {
}
footer .logo {
	margin: 30px auto 0;
}

/* TO TOP */
#to-top {
	width: 42px;
	height: 42px;
	background-color: #333;
	border: 2px solid #fff;
	border-radius: 10px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 30px;
	right: 10px;
	z-index: 9;
	cursor: pointer;
}
