@charset "utf-8";

:root {
	--black: #1A1A1A;
	--white: #fff;
	--key-color: #ff6c00;
	--gr: linear-gradient(91deg, #ff6c00 1.99%, #ff6c00 99.56%);
	--point: #ff6c00;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
button {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-tap-highlight-color: transparent;
}

html {
	height: 100%;
	min-height: -webkit-fill-available
}

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

body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	min-width: 300px;
	background: var(--white);
	color: var(--black);
	-webkit-text-size-adjust: none;
	line-height: 1;
	height: calc(var(--vh, 1vh) * 100);
}

input,
select,
button {
	vertical-align: middle;
}

img {
	vertical-align: top;
	-webkit-perspective: 1;
}

i,
em,
address {
	font-style: normal;
}

label,
button {
	cursor: pointer;
}

a {
	color: var(--black);
	text-decoration: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

a:hover {
	text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*:focus {
	outline: none;
}

button {
	background: transparent;
	font-family: inherit;
	padding: 0;
	font-size: 15px;
	-webkit-tap-highlight-color: transparent;
	color: #191919;
}

input[type=text],
input[type=button],
input[type=password],
textarea,
button {
	outline-style: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	font-family: inherit;
}

input[type=text]::-webkit-input-placeholder,
input[type=button]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #939393;
}

input[type=text]:-moz-placeholder,
input[type=button]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
	color: #939393;
	opacity: 1;
}

input[type=text]::-moz-placeholder,
input[type=button]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
	color: #939393;
	opacity: 1;
}

input[type=text]:-ms-input-placeholder,
input[type=button]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #939393;
}

select {
	position: relative;
	width: 100%;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	font-family: inherit;
	background: #fff url('../images/ico-down.svg') no-repeat calc(100% - 15px) 50%;
	border: 0;
	font-size: 16px;
	font-weight: 300;
	color: var(--black);
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

select option {
	color: #000;
}

select.active {
	color: #000;
}

select::-ms-expand {
	display: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.taL {
	text-align: left !important;
}

.taC {
	text-align: center !important;
}

.taR {
	text-align: right !important;
}

.table {
	display: table;
}

.row {
	display: table-row;
}

.cell {
	display: table-cell;
}

.f0 {
	font-size: 0 !important;
}

.f400 {
	font-weight: 400 !important;
}

.clear:after {
	content: '';
	display: block;
	clear: both;
}

.vaT {
	vertical-align: top;
}

.vaM {
	vertical-align: middle;
}

.vaB {
	vertical-align: bottom;
}

.w100 {
	width: 100%;
}

.swiper-slide img {
	width: 100%;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex_js {
	justify-content: space-between;
}

.flex_end {
	justify-content: end;
}

.ag_c {
	align-items: center;
}

.flex_col {
	flex-direction: column;
}

.flex_col>* {
	width: 100%;
}

.gap5 {
	gap: 5px;
}

.gap10 {
	gap: 10px;
}

.gap20 {
	gap: 20px;
}

.gap30 {
	gap: 30px;
}

.txt_color {
	color: var(--key-color) !important;
}

.btn_gr {
	background: var(--gr) !important;
	color: var(--white) !important;
}

.btn_color {
	background: var(--key-color) !important;
	color: var(--white) !important;
}

.btn_line_color {
	position: relative;
	border: 1px solid transparent;
	background-image: var(--gr);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	z-index: 1;
	overflow: hidden;
}

.btn_line_color:before {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	display: block;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background: var(--white);
	z-index: -1;
	border-radius: 6px;
}

.txt_red {
	color: #F00 !important;
}

.txt_blue {
	color: #06F !important;
}

.btn_gray {
	background: #F3F3F3 !important;
	color: var(--black) !important;
}