@charset "utf-8";
/*==== GOOGLE FONTS ====*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');


/*====VARIABLES CSS ====*/
:root {
	--header-height : 3rem;

	/*==== VARIABLES CSS ===*/
	--first-color: #5B65F5;
	--first-color-light: #C4C7F5;
	--dark-color: #0E1026;
	--white-color: #FBFBFB;

		/*==== VARIABLES CSS ===*/
		--body-font: 'Noto Sans KR', sans-serif;;
		--nav-name-font-size: 1.5rem;
		--normal-font-size: .938rem;

		/*==== z index ====*/
		--z-fixed: 100;
}

/*==== BASE ====*/
*, ::before, ::after {
	box-sizing: border-box;
}

body {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	font-weight: 400;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
}



/* common */
.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1100px;
}

@media screen and (max-width: 768px) {
  .container {
    padding-left :15px !important;
    padding-right :15px !important;
    word-break: keep-all;
  }
  .container br{
    display: none;
  }
}

.ctt_admin, .ctt_intro, #ctt {display: none;}

.mb100 {margin-bottom: 100px !important;}
.pb0 {padding-bottom: 0 !important;}
.mb0 {margin-bottom: 0 !important;}
.orange {color: #DB5435;}
.yellow {color: #F1C519;}
.green {color: #6DBB5A;}
.bgGray {background-color: #f9f9fa;}
.bgIvory {background-color: #FFFAE4}
.bgWhite {background-color: #fff !important;}

@media screen and (max-width: 768px) {
  .mb100 {margin-bottom: 50px !important;}
}

.mobile {display: none;}
.pc {display: block;}
@media screen and (max-width: 768px) {
  .pc {display: none;}
  .mobile {display: block;}
}
