@charset "utf-8";

.inner {
	position: relative;
	width: 100%;
	max-width: 1680px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding: 26px 0;
	background: var(--white);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-sizing: border-box;
	z-index: 50;
}
#header .inner {
	max-width: 1780px;
	gap: 20px;
}
#header .logo a {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: var(--key-color);
}
#header .gnb ul {
	gap: 80px;
}
#header .gnb ul li a {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	padding: 6px 0;
}
#header .h_util {
	gap: 30px;
}
#header .h_util > div a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
#header .h_util > div a span {
	position: absolute;
	height: 20px;
	line-height: 18px;
	border-radius: 50px;
	background: var(--white);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.20);
	font-size: 12px;
	animation: ani_up_down 1s ease-in-out infinite;
	box-sizing: border-box;
}
@keyframes ani_up_down {
	0% {transform: translateY(0px);}
	50% {transform: translateY(-5px);}
	100% {transform: translateY(0px);}
}
#header .h_util > div.login_btn a {
	background: url("../images/ic_user.svg?v=1")no-repeat 50% 50% / 100%;
}
#header .h_util > div.login_btn a span {
    bottom: -7px;
    left: -45px;
    padding: 0 10px;
	background: var(--gray-bg);
	color: var(--key-color);
}
#header .h_util > div.mypage_btn a span {
	left: -55px;
}
#header .h_util > div.cart_btn a {
	background: url("../images/ic_cart.svg?v=1")no-repeat 50% 50% / 100%;
}
#header .h_util > div.cart_btn a span {
	top: -5px;
	right: -10px;
	width: 20px;
    text-align: center;
	background: var(--gray-bg);
	color: var(--key-color);
}
#header .menu {
	position: relative;
	display: none;
}
#header .menu a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
#header .menu a:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--black);
	transition: all .3s;
}
#header .menu a:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--black);
	transition: all .3s;
}
#header .menu.on a:before {
	top: 15px;
	transform: translateX(-50%) rotate(45deg);
}
#header .menu.on a:after {
	top: 15px;
	transform: translateX(-50%) rotate(-45deg);
}



.side_wrap {
	position: fixed; 
	top: -100%;
	left: 0;
	width: 100%;
	z-index: 35;
	background: var(--gray-bg);
	transition: top .3s ease-in-out;
}
.side_wrap.on {
	top: 84px;
}
.side_wrap .depth {
    padding: 20px 0;
	overflow-y: auto;
	max-height: 80vh;
	box-sizing: border-box;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 > a {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
    font-weight: 600;
	padding: 15px 10px;
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 10px) 50%;
	box-sizing: border-box;
}
.side_wrap .depth01.no_child > a {
	background: none!important;
}
.side_wrap .depth01.active > a {
	background: var(--key-color);
	color: var(--white);
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}
.not_scroll {
	overflow: hidden;
}


#container {
	padding-top: 140px;
	box-sizing: border-box;
}
#container .inner {
	gap: 80px;
}


#footer {
	position: relative;
	padding: 120px 20px 0;
	color: var(--key-color);
	box-sizing: border-box;
}
#footer .ft_box {
	position: relative;
	background: var(--gray-bg);
	padding: 80px 100px;
	border-radius: 40px;
	gap: 40px 20px;
	line-height: 1.2;
	box-sizing: border-box;
}
#footer .ft_box h4 {
	color: #1F1F1F;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
}
#footer .ft_box .ft_contact {
	flex: 1;
	gap: 40px;
}
#footer .ft_box .info {
	gap: 16px;
	font-size: 20px;
}
#footer .ft_box .info .tel {
	font-size: 48px;
	font-weight: 900;
}
#footer .ft_box .sns {
	gap: 16px;
}
#footer .ft_box .ft_info {
	gap: 120px;
}
#footer .ft_box .ft_info .company {
	gap: 40px;
}
#footer .ft_box .ft_logo {
	font-size: 8.3vw;
	font-weight: 900;
	letter-spacing: 4.8px;
}
#footer .copy {
	padding: 40px;
	gap: 10px;
	box-sizing: border-box;
}
#footer .copy button {
	color: inherit;
}


#quick {
	position: fixed;
	bottom: 50px;
	right: 50px;
	gap: 20px;
	align-items: end;
	z-index: 11;
}
#quick > div {
	gap: 10px;
	width: 46px;
}
#quick > div > a {
	width: 100%;
	height: 46px;
	border: 1px solid var(--white);
	background: var(--black) url("../images/arrow-up.svg")no-repeat 50% 50%;
	border-radius: 50%;
}
#quick > div > a.down {
	transform: rotate(180deg);
}
#quick > a {
	font-size: 20px;
	font-weight: 600;
	padding: 20px 40px;
	background: var(--gray-bg);
	color: var(--key-color);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
	border-radius: 30px;
	box-sizing: border-box;
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	background: var(--white);
	border-radius: 40px;
	padding: 30px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 128px);
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 40px 20px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
	background: var(--key-color);
	border-radius: 100px;
	color: var(--white);
	padding: 16px 30px;
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
	box-sizing: border-box;
}
.modal .bar .close {
	width: 12px;
	height: 12px;
	background: transparent url("../images/ic_close_white.svg")no-repeat 50% 50%;
}
.modal .btn_area {
	gap: 10px;
	margin-top: 20px;
	justify-content: center;
}
.modal .btn_area > * {
	height: 32px;
	line-height: 32px;
	border-radius: 50px;
	font-size: 16px;
	text-align: center;
	padding: 0 20px;
	box-sizing: border-box;
}


.pagenavi ol {
	justify-content: center;
	gap: 10px;
}
.pagenavi ol li img {
	max-width: 100%;
	vertical-align: middle;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	color: var(--text);
	text-align: center;
}
.pagenavi ol li.this a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background: var(--key-color);
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
}


#agree_pop .scroll {
	padding: 16px 30px;
	border-radius: 30px;
	background: var(--gray-bg);
	margin-top: 20px;
	box-sizing: border-box;
}
#agree_pop .scroll h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 14px;
	letter-spacing: 0.5px;
	line-height: 1.2;
}
#agree_pop .cont {
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.375px;
	white-space: pre-line;
}

#contact_none_pop .modal_cont {
	max-width: 664px;
	color: var(--key-color);
}
#contact_none_pop .top strong {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.5px;
}
#contact_none_pop .modal_cont > p {
	margin: 14px 0 20px;
	line-height: 1.2;
	letter-spacing: 0.4px;
}
#contact_none_pop .btn_area a {
	flex: 1;
	height: 52px;
	line-height: 52px;
	font-size: 20px;
	font-weight: 500;
	padding: 0;
	box-sizing: border-box;
}


.more_btn {
	display: inline-block;
	border-radius: 20px;
	background: var(--gray-bg);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.10);
	color: var(--key-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 16px 40px;
	transition: all .3s;
	box-sizing: border-box;
}
.more_btn:hover {
	background: var(--black);
	color: var(--white);
}



.title_area {
	gap: 20px;
	color: var(--key-color);
}
.title_area h2 {
	font-size: 64px;
	font-weight: 600;
}
.title_area p {
	font-size: 24px;
	letter-spacing: 1.2px;
	line-height: 1.4;
	text-transform: uppercase;
}



.filter_tab {
	position: relative;
	margin-bottom: 26px;
}
.filter_tab .filter_bar {
	position: relative;
	height: 78px;
	border-radius: 100px;
	padding: 0 40px;
	background: var(--key-color);
	gap: 12px;
	box-sizing: border-box;
}
.filter_tab .filter_bar .tab {
	flex: 1;
	width: 100%;
	background: url("../images/ic_filter.svg")no-repeat 0 50%;
	padding-left: 76px;
	box-sizing: border-box;
}
.filter_tab .filter_bar .tab .swiper-slide {
	width: auto;
	margin-right: 37px;
}
.filter_tab .filter_bar .tab button {
	color: rgba(255,255,255,0.6);
	font-size: 20px;
	font-weight: 200;
}
.filter_tab .filter_bar .tab button.active {
	color: var(--white);
	font-weight: 600;
}
.filter_tab .filter_bar .arrow {
	width: 20px;
	height: 20px;
	background: url("../images/ic_add.svg")no-repeat 50% 50% / 100%;
}
.filter_tab .filter_box {
	display: none;
	margin: 0 30px;
	background: var(--gray-bg);
	padding: 10px 84px;
	border-radius: 0 0 20px 20px;
	box-sizing: border-box;
}
.filter_tab .filter_box .item {
	padding: 20px 0;
	border-bottom: 1px dashed rgba(87, 87, 87, 0.50);
	gap: 60px;
}
.filter_tab .filter_box .item > strong {
	font-weight: 500;
}
.filter_tab .filter_box .item .select_box {
	flex: 1;
	width: 100%;
	gap: 25px 45px;
}
.filter_tab .filter_box .item .select_box > div {
	position: relative;
}
.filter_tab .filter_box .item .select_box > div input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.filter_tab .filter_box .item .select_box > div input + label {
	position: relative;
	padding-left: 34px;
	box-sizing: border-box;
}
.filter_tab .filter_box .item .select_box > div input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	border: 1px solid var(--black);
}
.filter_tab .filter_box .item .select_box > div input:checked + label:before {
	background: var(--black) url("../images/ic_check_white.svg?v=1")no-repeat 50% 50%;
}
.filter_tab .filter_box .reset {
	padding: 20px 0;
}
.filter_tab .filter_box .reset .reset_btn {
	gap: 4px;
	font-weight: 500;
	color: var(--key-color);
}
.filter_tab.open .filter_bar .arrow {
	background-image: url("../images/ic_minus.svg");
}
.filter_tab.open .filter_box {
	display: block;
}
.func_box {
	gap: 12px;
	margin-bottom: 26px;
}
.func_box .search {
	flex: 1;
	width: 100%;
	max-width: 387px;
	padding: 0 30px;
	gap: 10px;
	background: var(--gray-bg);
	border-radius: 100px;
	box-sizing: border-box;
}
.func_box .search input {
	flex: 1;
	width: 100%;
	height: 60px;
	font-size: 16px;
	letter-spacing: 0.4px;
	background-color: transparent;
}
.func_box select {
	width: 200px;
	height: 60px;
}


#product_pop .scroll {
    padding: 0;
    margin-top: 20px;
}
#product_pop .create_box {
    padding: 20px;
	background: #F5F5F5;
    gap: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
#product_pop .create_box .big_img {
    position: relative;
    width: 265px;
	height: 350px;
    border-radius: 20px;
    background: var(--white);
    overflow: hidden;
    box-sizing: border-box;
}
#product_pop .create_box .big_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#product_pop .create_box .big_img img.img_bottle {
    top: calc(50% - -40px);
    height: 285px;
}
#product_pop .create_box .big_img img.img_pump, 
#product_pop .create_box .big_img img.img_shoulder {
    top: 45px;
    height: 105px;
}
#product_pop .create_box .big_img img.img_cap {
    top: 20px;
    height: 150px;
}
#product_pop .create_box .category {
    width: calc(100% - 285px);
    gap: 10px;
}
#product_pop .create_box .category > div {
    gap: 10px;
}
#product_pop .create_box .category > div .thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
}
#product_pop .create_box .category > div .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
#product_pop .create_box .category > div .text {
    flex: 1;
    width: 100%;
    gap: 10px;
	color: var(--key-color);
}
#product_pop .create_box .category > div .text h4 {
    font-size: 20px;
}
#product_pop .create_box .category > div .text > div {
    gap: 10px;
}
#product_pop .prd_box {
    padding: 20px;
    background: var(--gray-bg);
	color: var(--key-color);
    border-radius: 30px;
    gap: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
#product_pop .prd_box .thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
}
#product_pop .prd_box .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
#product_pop .prd_box .text {
    flex: 1;
    width: 100%;
    gap: 10px;
}
#product_pop .prd_box .text h4 {
    font-size: 20px;
}
#product_pop .prd_box .text > div {
    gap: 10px;
}
#product_pop .btn_area > * {
	height: 52px;
	line-height: 52px;
	padding-top: 0;
	padding-bottom: 0;
}





@media screen and (max-width: 1400px) {
	#header .gnb ul {
		gap: 40px;
	}


	#footer .ft_box {
		padding: 30px 50px;
	}
}
@media screen and (max-width: 1240px) {
	#header {
		padding: 26px 0;
	}
	#header .gnb ul {
        gap: 20px;
    }


	#footer .ft_box h4 {
		font-size: 20px;
	}
	#footer .ft_box .info {
		font-size: 18px;
	}
	#footer .ft_box .info .tel {
    	font-size: 36px;
	}


	#quick {
		right: 20px;
	}
	#quick > div {
		width: 35px;
	}
	#quick > div > a {
		height: 35px;
	}
	#quick > a {
		font-size: 16px;
		padding: 12px 20px;
	}


	.filter_tab .filter_bar .tab {
		padding-left: 56px;
	}
	.filter_tab .filter_box {
		padding: 10px 62px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		gap: 5px;
	}
	#header .gnb {
		display: none;
	}
	#header .h_util {
		flex: 1;
		justify-content: end;
		gap: 10px;
	}
	#header .h_util > div a {
		width: 22px;
		height: 22px;
	}
	#header .h_util > div.login_btn a span,
	#header .h_util > div.cart_btn a span {
		display: none;
	}
	#header .h_util > div.cart_btn {
		display: block;
	}
	#header .menu {
		display: block;
	}

	#container {
    	padding-top: 60px;
	}
	#container .inner {
        gap: 40px;
    }


	#footer {
		padding-top: 60px;
	}
	#footer .ft_box {
        border-radius: 25px;
        padding: 30px;
    }
	#footer .ft_box .ft_logo {
    	font-size: 58px;
	}
	#footer .ft_box .ft_contact {
		width: 100%;
		gap: 20px;
	}
	#footer .ft_box .ft_info {
		width: 100%;
		gap: 60px;
	}
	#footer .ft_box .ft_info .company {
		gap: 20px;
	} 
	#footer .ft_box .info {
    	gap: 10px;
		font-size: 16px;
	}
	#footer .ft_box .info .tel {
        font-size: 28px;
    }
	#footer .ft_box .sns img {
		width: 23px;
	}
	#footer .copy {
    	padding: 20px;
		font-size: 14px;
	}


	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 14px;
	}
	.pagenavi ol li.this a {
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 20px;
	}

	.modal .modal_cont {
		padding: 20px;
		border-radius: 20px;
	}
	.modal .bar h3 {
		font-size: 18px;
	}

	#agree_pop .scroll {
		border-radius: 20px;
	}
	#agree_pop .scroll h4 {
    	font-size: 16px;
	}
	#agree_pop .cont {
    	font-size: 13px;
	}

	#contact_none_pop .top strong {
    	font-size: 16px;
	}
	#contact_none_pop .modal_cont > p {
		font-size: 14px;
	}
	#contact_none_pop .btn_area a {
		font-size: 14px;
	}


	.more_btn {
		font-size: 16px;
		padding: 12px 25px;
		border-radius: 15px;
	}


	.title_area h2 {
        font-size: 48px;
		letter-spacing: 1.8px;
    }
	.title_area p {
		font-size: 20px;
	}


	.filter_tab {
		margin-bottom: 14px;
	}
	.filter_tab .filter_bar {
		height: 58px;
		padding: 0 25px;
	}
	.filter_tab .filter_bar .tab {
		background-size: 18px;
		padding-left: 38px;
	}
	.filter_tab .filter_bar .tab .swiper-slide {
		margin-right: 18px;
	}
	.filter_tab .filter_bar .tab button {
		font-size: 16px;
	}
	.filter_tab .filter_bar .arrow {
		background-size: 15px;
	}
	.filter_tab .filter_box {
		margin: 0 20px;
        padding: 10px 42px;
    }
	.filter_tab .filter_box .item {
		font-size: 14px;
	}
	.filter_tab .filter_box .item .select_box {
		gap: 20px;
	}
	.filter_tab .filter_box .item .select_box > div input + label {
		padding-left: 28px;
	}
	.filter_tab .filter_box .item .select_box > div input + label:before {
		top: -2px;
		width: 20px;
		height: 20px;
	}
	.filter_tab .filter_box .reset .reset_btn {
		font-size: 14px;
	}
	.func_box {
		margin-bottom: 14px;
	}
	.func_box .search input {
		height: 42px;
		font-size: 14px;
	}
	.func_box select {
		width: 155px;
		height: 42px;
		font-size: 14px;
	}


	#product_pop .create_box .category > div .text h4 {
        font-size: 16px;
    }
    #product_pop .create_box .category > div .text > div {
        font-size: 14px;
    }
	#product_pop .prd_box .text h4 {
        font-size: 16px;
    }
    #product_pop .prd_box .text > div {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
	#footer .copy {
		justify-content: center!important;
		text-align: center;
	}
	#footer .copy p {
		width: 100%;
	}


	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
	.pagenavi ol li.this a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }


	.title_area h2 {
        font-size: 36px;
    }
	.title_area p {
        font-size: 16px;
    }


    .filter_tab .filter_bar .tab {
        background-size: 14px;
        padding-left: 30px;
    }
	.filter_tab .filter_bar .tab button {
        font-size: 14px;
    }
	.filter_tab .filter_box {
        padding: 10px 26px;
    }
	.filter_tab .filter_box .item {
		gap: 20px;
		padding: 15px 0;
	}
	.filter_tab .filter_box .item > strong {
		width: 100%;
	}


	#product_pop .create_box .big_img {
        width: 100%;
    }
    #product_pop .create_box .category {
        width: 100%;
    }
    #product_pop .create_box .category > div .thumb {
        width: 65px;
        height: 65px;
    }
    #product_pop .create_box .category > div .text > div {
        gap: 3px;
    }
    #product_pop .create_box .category > div .text > div strong {
        width: 100%;
    }
	#product_pop .prd_box .thumb {
        width: 65px;
        height: 65px;
    }
    #product_pop .prd_box .text > div {
        gap: 3px;
    }
    #product_pop .prd_box .text > div strong {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
	#footer .ft_box .ft_logo {
        font-size: 45px;
        letter-spacing: 2.8px;
    }

	.pagenavi ol {
		gap: 5px;
	}
	.pagenavi ol li a {
        width: 17px;
        height: 17px;
        line-height: 17px;
    }
	.pagenavi ol li.this a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
    }
	.pagenavi ol li img {
		vertical-align: 0px;
	}


	.func_box .search {
		flex: none;
		max-width: 100%;
	}
	.func_box select {
		width: 100%;
	}
}
@media screen and (max-width: 380px) {
	#footer .ft_box .ft_logo {
        font-size: 32px;
        letter-spacing: 0.5px;
    }

	.pagenavi ol {
        gap: 2px;
    }
	.pagenavi ol li.this a {
        width: 22px;
        height: 22px;
        line-height: 22px;
	}
	.pagenavi ol li.first a,
	.pagenavi ol li.prev a,
	.pagenavi ol li.next a,
	.pagenavi ol li.last a {
		width: 14px;
		height: 14px;
		line-height: 14px;
	}

	#contact_none_pop .btn_area a {
		flex: none;
		width: 100%;
		height: 48px;
    	line-height: 48px;
	}
}