@import "font.css";

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: 0;
}
html,
body {
	font-family: 'NotoSans',Helvetica,'맑은 고딕',sans-serif;
	color: #333;
	letter-spacing: -0.04rem;
	font-size: 32px;
}
@media (max-width: 860px) {
	html,body {font-size: 30px;}
}
@media (max-width: 768px) {
	html,body {font-size: 26px;}
}
@media (max-width: 576px) {
	html,body {font-size: 16px;}
}


a {
	text-decoration:none;
    color:inherit;
}
a:hover {
	cursor: pointer;
	color: #000;
	transition: all .3s;
}
ul,li {
	list-style: none;
}
button {
	border: none;
	outline: none;
	cursor: pointer;
	background-color: transparent;
	font-family: 'NotoSans',Helvetica,'맑은 고딕',sans-serif;
}
.full-image {
	width: 100%;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 30px, 0);
		transform: translate3d(0, 30px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	animation-duration: .2s;
}

.container {
	position: relative;
	max-width: 880px;
	padding: 0 80px;
	margin: 0 auto;
	min-width: 320px;
}
@media (max-width: 768px) {
	.container {max-width: none; padding: 0 40px;}
}
@media (max-width: 576px) {
	.container {padding: 0 16px;}
}


/*** Header ***/
.header {
	background: #fff;
	width: 100%;
	height: 3.438rem;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all .2s;
}
.header .logo {
	width: 100%; height: 3.438rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header .logo img {
	width: 11.56rem;
	transition: all .2s;
}
.header.sticky {
	box-shadow: 0 0.156rem 0.313rem rgba(0, 0, 0, 0.02);
	height: 2.5rem;
}
.header.sticky .logo {
	height: 2.5rem;
}
.header.sticky .logo img {
	transform: scale(80%);
}


/*** Footer ***/
.footer {
	padding: 2.813rem 0;
}
.footer .submenu > span {
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
}
.footer .submenu > span + span {
	margin-left: 0.875rem;
	padding-left: 0.875rem;
	border-left: 1px solid #D9D9D9;
}
.footer .info {
	margin-top: 1.563rem;
	font-size: 0.813rem;
	font-weight: 600;
	color: #666;
	line-height: 1.8;
}
.footer .copyright {
	margin-top: 1.25rem;
	font-size: 0.688rem;
	font-weight: 600;
	color: #666;
	line-height: 1.5;
}


/*** Contents ***/
.content-wrap {
	position: relative;
	margin-top: 3.438rem;
}
.sec {
	position: relative;
	padding: 2.813rem 0;
	text-align: center;
	transition: all .5s;
}
.sec-tit {
	text-align: center;
	font-size: 1.438rem;
	line-height: 1.3;
	font-weight: 100;
	letter-spacing: -0.09rem;
}
.sec-tit strong {
	font-weight: 700;
}
.sec-cont {
	position: relative;
	margin-top: 1.875rem;
}
.li-style {
	position: relative;
	display: flex;
}
.li-style > li + li {
	margin-left: 0.375rem;
}
.li-style > li {
	flex: 1;
}
.tb-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tb-box > .txt {
	font-size: 0.875rem;
}
.tb-box > .btn {
	background: #E55C8D;
	font-size: 0.813rem;
	color: #fff;
	border-radius: 0.5rem;
	height: 1.875rem;
	line-height: 1.875rem;
	min-width: 5.25rem;
	text-align: center;
	padding: 0 0.625rem;
}
.swiper {
	width: 100%;
	margin: 0 auto;
}
.swiper-slide {
	text-align: center;
}
.swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-pagination-bullet {
	opacity: .5;
	background: #444;
	width: 0.375rem;
	height: 0.375rem;
	margin: 0.313rem !important;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	width: 0.563rem;
	height: 0.563rem;
}


/** Section TopSlide **/  
.sec-top {
	padding: 0;
}
.sec-top .slide-box .img-bnr {
	width: 100%;
}
.sec-top .swiper-slide {
	background-position: center;
	background-size: cover;
}
.sec-top .swiper-pagination {
	bottom: 1.4rem !important;
}
.sec-top .swiper-pagination-bullet {
	background: #fff;
}
.sec-top .swiper-button-next, .sec-top .swiper-button-prev {
	color: #fff;
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 1rem;
}
.sec-top .swiper-button-next {
	right: calc(50% - 480px);
}
.sec-top .swiper-button-prev {
	left: calc(50% - 480px);
}
@media (max-width: 980px) {
	.sec-top .swiper-button-next {right: 5px;}
	.sec-top .swiper-button-prev {left: 5px;}
}
@media (max-width: 576px) {
	.sec-top .slide-box .container {padding: 0;}
	.sec-top .swiper-button-next,
	.sec-top .swiper-button-prev {display: none !important;}
}


/** Section Description **/  
.sec-desc {
	font-size: 1rem;
	line-height: 1.4;
	font-weight: 100;
	background: #fff;
	padding: 1.125rem 0;
}
.sec-desc strong {
	font-weight: 700;
}


/** Section Webtoon **/
.sec-webtoon {
	background: #F7F8F9;
}
.sec-webtoon .img-webtoon {
	margin-top: 0.625rem;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 0.156rem 0.313rem rgba(0, 0, 0, 0.08);
	font-size: 0;
}
.pop-wrap {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 200;
    overflow: auto;
	background: rgba(0, 0, 0, 0.5);
}
.pop-wrap::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.pop-wrap .pop-cont {
    position: relative;
    display: inline-block;
    margin: 1.563rem auto;
    background: #fff;
    text-align: center;
    vertical-align: middle;
    outline: none;
	width: calc(100% - 3.125rem);
}
.pop-wrap .btn-popclose {
	position: fixed;
	top: 1.875rem;
	right: 2.5rem;
	background: rgba(0, 0, 0, 0.7) url("../images/btn-popClose.svg")no-repeat center;
	background-size: 0.7rem 0.7rem;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 0;
	border-radius: 50%;
}
.img-webtoon {
	max-width: 100%;
}
@media (max-width: 576px) {
	.pop-wrap .pop-cont {width: calc(100% - 1.8rem);}
}


/** Section 혜택 **/
.sec-benef {
	background: #183171;
	color: #fff;
}
.li-benef > li {
	text-align: left;
}
.li-benef > li + li{
	margin-top: 1.875rem;
}
.li-benef .tit {
	background: #0087D5;
	border-radius: 3.125rem;
	line-height: 2.5rem;
	width: 8.125rem;
	text-align: center;
	font-size: 1rem;
	color: #fff;
	font-weight: 700;
}
.li-benef .num {
	font-size: 2.125rem;
	font-weight: 700;
	color: #EC6696;
}
.li-benef .num small {
	display: inline-block;
	margin-left: 0.313rem;
	color: #fff;
	font-size: 1.125rem;
	font-weight: normal;
}
.li-benef .txt {
	font-size: 0.813rem;
	color: #A4CBFF;
}

/** Section 슬기롭게 사용하는법 **/
.li-how > li {
	background: #fff;
	text-align: left;
	font-weight: 600;
	padding-bottom: 1.125rem;
	box-shadow: 0 0.156rem 0.313rem rgba(0, 0, 0, 0.08);
}
.li-how .tit {
	font-size: 0.875rem;
	color: #333;
	padding-left: 0.313rem;
}
.li-how .txt {
	font-size: 0.5rem;
	color: #000;
	padding-left: 0.313rem;
}


/** Section 어디까지 해봤니? **/
.sec-allused {
	background: #F7F8F9;
}
.sec-allused .li-style > li {
	box-shadow: 0 0.156rem 0.313rem rgba(0, 0, 0, 0.08);
	font-size: 0;
}


/** Section 여기서도! **/
.sec-here {
	position: relative;
}
.ico-shop {
	display: inline-block;
	background: url("../images/ico-shop.svg") no-repeat center;
	background-size: cover;
	width: 1.875rem;
	height: 1.875rem;
	margin: 0 0.2rem -0.313rem 0;
}
.li-shop {
	display: grid;
	gap: 0.219rem;
	grid-template-columns: auto auto;
	background-color: #B9DDF5;
	padding: 0.625rem;
	margin-top: 0.625rem;
}
.li-shop > dl {
	border-radius: 0.25rem;
	background: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: -0.08rem;
	line-height: 1;
	text-align: left;
}
.li-shop > dl > dt {
	width: 43%;
	height: 100%;
	padding: 0.313rem 0 0.313rem 0.313rem;
	color: #fff;
}
.li-shop > dl > dd {
	padding: 0.313rem 0 0.313rem 0.313rem;
}
.li-shop > dl:nth-of-type(1) > dt,
.li-shop > dl:nth-of-type(2) > dt {
	background-color: #81C68A;
}
.li-shop > dl:nth-of-type(3) > dt,
.li-shop > dl:nth-of-type(4) > dt {
	background-color: #22B7BA;
}
.li-shop > dl:nth-of-type(5) > dt,
.li-shop > dl:nth-of-type(6) > dt {
	background-color: #2881C6;
}
.li-shop > dl:nth-of-type(7) > dt,
.li-shop > dl:nth-of-type(8) > dt {
	background-color: #0050A9;
}


/** Section 앱으로 편리하게 구매하세요! **/
.sec-app {
	position: relative;
	background: #F7F8F9;
}
.sec-app .sec-cont {
	width: calc(100% + 0.6rem);
	margin-left: -0.3rem;
	height: 0;
	overflow: hidden;
	padding-bottom: 72%;
}
.app-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.app-wrap .swiper-wrapper {
	height: calc(100% - 1.5rem);
}
.app-slide {	
	height: calc(100% / 2) !important;
}
.app-name {
	font-size: 0.75rem;
	text-align: center;
}
.app-slide .app-icon {
	width: calc(100% - 0.75rem);
}
.sec-app .swiper-pagination {
	bottom: 0 !important;
}


/** Section 온라인몰,배달앱 모두 사용가능 **/
.sec-where {
	position: relative;
}
.mall-box._delivery {
	position: relative;
	margin-top: 2.813rem;
}
.mall-box > .tit {
	width: 9.375rem;
	line-height: 2.438rem;
	background: #0087D5;
	border-radius: 100px;
	text-align: center;
	color: #fff;
	font-size: 1.125rem;
	margin: 0 auto 0.56rem;
}
.li-app {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.375rem;
}
.li-app > li {
	padding: 0.375rem;
}
.li-app._li2n li {
	width: calc(100% / 2);
}
.li-app._li3n li {
	width: calc(100% / 3);
}
.li-app._li4n li {
	width: calc(100% / 4);
}

/** Section SNS **/
.sec-sns {
	position: relative;
	background: #F7F8F9;
}
.li-sns {
	position: relative;
	margin: 0 auto;
	display: flex;
	width: fit-content;
}
.li-sns > li {
	width: 4.37rem;
}
.li-sns > li img {
	width: 3.125rem;
}
.li-sns .name {	
	font-size: 0.75rem;
	text-align: center;
}

/** Section CS **/
.sec-cs {
	position: relative;
	background: #E5F2FF;
}
.sec-cs .sec-cont {
	text-align: left;
}
.cs-box {
	display: inline-block;
	width: 38%;
	text-align: left;
}
.cs-box._mail {
	margin-left: 1rem;
}
.cs-box > .tit {
	font-size: 0.938rem;
	font-weight: 700;
	line-height: 2;
	border-bottom: 0.063rem solid #333;
}
.cs-box > .link {
	margin-top: 0.938rem;
	font-size: 0.875rem;
	line-height: 1.875rem;
	padding-left: 2.25rem;
}
.cs-box._call > .link {
	background: url("../images/icon_call.svg") no-repeat 0 0;
	background-size: contain;
}
.cs-box._mail > .link {
	background: url("../images/icon_mail.svg") no-repeat 0 0;
	background-size: contain;
}
.cs-kakao {
	position: absolute;
	bottom: 0;
	right: 0;
}
.cs-kakao img {
	width: 2.3rem;
}

