@charset "UTF-8";

/* 웹폰트 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

@font-face {
    font-family: 'Pretendard-Light';
    src: url('/css/property/font/Pretendard-Light.woff') format('woff'),
		 url('/css/property/font/Pretendard-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('/css/property/font/Pretendard-Regular.woff') format('woff'),
		url('/css/property/font/Pretendard-Regular2.woff') format('woff2');
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Medium';
    src: url('/css/property/font/Pretendard-Medium.woff') format('woff'),
		url('/css/property/font/Pretendard-Medium2.woff') format('woff2');
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-SemiBold';
    src: url('/css/property/font/Pretendard-SemiBold.woff') format('woff'),
		url('/css/property/font/Pretendard-SemiBold2.woff') format('woff2');
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Bold';
    src: url('/css/property/font/Pretendard-Bold.woff') format('woff'),
		url('/css/property/font/Pretendard-Bold2.woff') format('woff2');
    font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
	/* font body로 이동 */
	/* word-break: break-all;
	-webkit-text-size-adjust: none;
	outline: none; */
}

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

ul, li {
	list-style: none;
}

img
{
	vertical-align: middle;
	border: none;
	/* max-width: 100%; */
}

fieldset
{
	border: none;
}

legend,
.dp_none
{
	display: none;
}

a
{
	text-decoration: none;
	color: #1e1e1e;
}

html {
	font-size: 10px;
}

/* button,
input[type="submit"],
input[type="button"]
{
	cursor: pointer;
	border: none;
	background: none;

	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

input[type=radio]
{
	vertical-align: -2px;
}

input[type=text],
input[type=password]
{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
input[type="checkbox"]{
	border: none;
	outline: none;
	-webkit-appearance: none;
} */
/*
input:not([type="radio"])
{
	-webkit-appearance: checkbox;
	-webkit-border-radius: 0;
}
*/

/* input[type=color]
{
	width: 90px;
	height: 24px;
	padding: 0;
	border: none;
	background: none;
} */

/* label
{
	display: inline-block;
} */

/*
select
{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0; /* iPhone
	cursor: pointer;
	background: #fff;
}

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

/* table
{
	width: 100%;
	table-layout: fixed;
	word-break: break-all;
	border-collapse: collapse;
	border-spacing: 0;
}

table caption.cap_hide
{
	width: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
} */

.clearFix::after
{
	content: "";
	clear: both;
	display: block;
}
/* 
.textCut
{
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.flex_between_center
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex_center_center
{
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex_center_stretch
{
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.flex_center_end
{
	display: flex;
	justify-content: center;
	align-items: flex-end;
} */

/* responsive youtube */
.responsive_youtube
{
	width: 100%;
}

.responsive_youtube div
{
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 56.25%;
}

.responsive_youtube div iframe {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}