:root {
	--max-width: 1080px;
}
* {
	margin: 0;
	padding: 0;
}
html {
/* Prevent font scaling in landscape */
-webkit-text-size-adjust: none; /*Chrome, Safari, newer versions of Opera*/
-moz-text-size-adjust: none; /*Firefox*/
-ms-text-size-adjust: none; /*Ie*/
-o-text-size-adjust: none; /*old versions of Opera*/
}
body {
	text-align: center;
	background-color: #ffffff;
}
/* 도메인 명 */
@font-face {
	font-family: "BMDoHyeon";
	/* src: url("http://210.127.253.89/font/BMDOHYEON_ttf.ttf") format("truetype"); */
	src: url("/font/BMDOHYEON_ttf.ttf") format("truetype");
}
/* all.club */
@font-face {
	font-family: 'Montserrat-Bold';
	src: url("/font/Montserrat-Bold.ttf") format("truetype");
}
/* .CLUB */
@font-face {
	font-family: 'Montserrat-ExtraBold';
	src: url("/font/Montserrat-ExtraBold.ttf") format("truetype");
}
/* club Free Ad Platform */
@font-face {
	font-family: 'Montserrat-SemiBold';
	src: url("/font/Montserrat-SemiBold.ttf") format("truetype");
}
/* 광고문의 전화번호 */
@font-face {
	font-family: 'Montserrat';
	src: url("/font/Montserrat-Regular.ttf") format("truetype");
}
/* 광고하기 */
@font-face {
	font-family: 'S-CoreDream-6Bold';
	src: url("/font/SCDream6.otf") format("opentype");
}
/* 광고올리기 */
@font-face {
	font-family: 'S-CoreDream-5Medium';
	src: url("/font/SCDream5.otf") format("opentype");
}
/* 게시판 목록 제목 */
@font-face {
	font-family: 'S-CoreDream-4Regular';
	src: url("/font/SCDream4.otf") format("opentype");
}
/* 본문 */
@font-face {
	font-family: 'S-CoreDream-3Lite';
	src: url("/font/SCDream3.otf") format("opentype");
}

.top_bar{
	text-align: center;
	background-color: #efefef;
}


#container {
	display: grid;
	background-color: #ffffff;
	margin: 0 auto;
	max-width: var(--max-width);
	grid-template-columns: 1fr 290px;
	grid-template-areas: 
		'header header'
		'main aside'
		'ad_area ad_area'
		;
}
#container > div {
	/* border: 1px solid red; */
}
.header {
	grid-area: header;
}
.main {
	grid-area: main;
	
}
.aside {
	grid-area: aside;
    display: flex;
    justify-content: flex-end;
}
.ad_area {
	grid-area: ad_area;
}
.footer {
	background-color: #efefef;
}

.tailer {
	display: none;
}

/* 빈광고 박스 */
.ad_blank_box {
	width: 194px;
	height: 194px;
	border: solid 1px #e0e0e0;
	background-color: #ececec;
	display: flex;
    align-items: center;
    justify-content: center;
}
.ad_blank_box > h2 {
	display: inline-block;
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 100;
	font-stretch: normal;
	font-style: normal;
	line-height: 2.47;
	letter-spacing: normal;
	text-align: left;
	color: #c0c0c0;
}
.ad_blank_box  > .ad_txt_bold {
	font-family: Montserrat-ExtraBold;
	font-weight: 800;
	padding-right: 6px;
	color: #777777;
}





