@charset "utf-8";
@import url(./fonts.css);

/* Reset */
* {
	padding: 0;
	margin: 0;
	word-break: keep-all;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body,
input,
select,
textarea,
button,
img,
fieldset {
	border: none;
}

header,
section,
nav,
footer {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal
}

ul,
ol,
li {
	list-style: none
}

button {
	margin: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
}

button,
input,
select {
	margin: 0;
}

html {
	box-sizing: border-box
}

*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

img,
video {
	display: block;
	height: auto;
	max-width: 100%
}

img,
fieldset,
iframe {
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

td,
th {
	padding: 0
}

hr,
legend {
	display: none;
}

a {
	text-decoration: none;
	color: #222;
}

button,
select,
input {
	color: #222;
	font-family: 'Pretendard';
}

address {
	font-style: normal;
}

/* Normalize */
html {
overflow-x: hidden;
	font-size: 62.5%;
}

html::-webkit-scrollbar{
width: 0.8rem;
}

html::-webkit-scrollbar-track{
background-color: #fafafa;
}

html::-webkit-scrollbar-thumb{
border-radius: 1.5rem;
background-color: var(--main-color);
}

body {
	font-family: 'Pretendard';
	font-size: 1rem;
	color: #222;
	letter-spacing: -0.3px;
}

:root {
	--main-color: #1475db;
	--sub-color: #c0d0eb;
	--area-width: 1280px;
}

/* Hide */
.txt_hide {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	font-size: 1px;
	line-height: 0;
	overflow: hidden;
}

/* POPUP */

.popup {
	position: fixed;
	width: calc(100% - 4rem);
	max-width: 500px;
	top: 12rem;
    display: none;
}

.popup .pp_top{
    width: 100%;
}

.popup .pp_top img{
    width: 100%;
}

.popup .pp_bot {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 1.5rem;
	background-color: #222;
}

.popup .pp_bot button {
	display: block;
	font-size: 1.4rem;
	color: #fff;
}

.popup .pp_bot .btn_close {
	padding-right: 1.6rem;
	background: url('../img/common/pop_close.png') no-repeat right 70%/1.2rem;

}

.popup .pp_bot .btn_close24 {
	padding-left: 1.6rem;
	background: url('../img/common/pop_check.png') no-repeat left 70%/1.4rem;
}

