@charset "utf-8";

:root {
	--white: #fff;
	--black: #1E1F1F;
	--key-color: #06F;
	--grayscale-50: #F8FAFA;
	--grayscale-100: #F3F4F4;
}

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;
  font-size: 7px;
}
ul ,ol ,li {
  list-style: none;
}
body {
	margin: 0; 
	padding: 0; 
	font-family: 'Spoqa Han Sans Neo',sans-serif;
	font-weight: 400;
	min-width: 300px;
	color: var(--black);
	-webkit-text-size-adjust: none;
}
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: inherit;
	-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: #B9BBBB;
	font-weight: 400;
}
input[type=text]:-moz-placeholder,
input[type=button]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
	color: #B9BBBB;
	opacity: 1;
	font-weight: 400;
}
input[type=text]::-moz-placeholder,
input[type=button]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
	color: #B9BBBB;
	opacity: 1;
	font-weight: 400;
}
input[type=text]:-ms-input-placeholder,
input[type=button]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #B9BBBB;
	font-weight: 400;
}
select {
	position: relative;
	width: 100%;
	height: 28px;
	padding: 0 8px;
	box-sizing: border-box;
	font-family: inherit;
	background: #fff url('../images/arrow-down.svg') no-repeat calc(100% - 16px) 50%;
	border: 0;
	color: var(--black);
	font-weight: 400;
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	font-size:16px;
}
select option {
	color: var(--black);
	font-size:18px;
}
select.on,
select.active {
	color: var(--black)!important;
}
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;
}
.swiper-slide img {
	width: 100%;
}
.clear:after {
	content: '';
	display: block;
	clear: both;
}
.vaT {
	vertical-align: top;
}
.vaM {
	vertical-align: middle;
}
.vaB {
	vertical-align: bottom;
}
.f500 {
	font-weight: 500!important;
}
.w100 {
	width: 100%;
}
.pd20 {
	padding: 15px 20px!important;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex_js {
	justify-content: space-between!important;
}
.ag_c {
	align-items: center!important;
}
.gap3 {
	gap: 3px;
}
.gap5 {
	gap: 5px;
}
.gap8 {
	gap: 8px;
}
.gap10 {
	gap: 10px;
}
.gap16 {
	gap: 16px;
}
.gap20 {
	gap: 20px;
}
.gap30 {
	gap: 30px;
}
.flex_col {
	flex-direction: column;
}
.flex_col > * {
	width: 100%;
}
.flex_start {
	justify-content: start!important;
}
.flex_center {
	justify-content: center!important;
}
.flex_end {
	justify-content: end!important;
}
.btn_black {
	background: #000!important;
	color: var(--white)!important;
}
.txt_red {
	color: #E22323!important;
}
.btn_color {
	background: var(--key-color)!important;
	color: var(--white)!important;
}
.btn_point {
	background: var(--point)!important;
	color: var(--key-color)!important;
}
.txt_color {
	color: var(--key-color)!important;
}
.btn_white {
	background: var(--white)!important;
	color: var(--key-color)!important;
}