@charset "utf-8";

/************************************* 
Basic Style Sheet
Version : 1.0
Author : uracle(sejong) - sk.k
Create date : 2025. 09.
*************************************/

@import url('general.css');

.rtl{
	direction: rtl;
}

#header{
	width: 160rem;
	max-width: calc(100% - 24px - 24px);
	margin: 0 auto;
	text-align: center;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
#header .logo{
	display: inline-flex;
	align-items: center;
	gap: 2rem;
}
#header .logo .nation{
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 2rem;
	color: #777;
	font-weight: 500;
	font-size: 2rem;
}
#header .logo .nation span{
	position: relative;
}
#header .logo .nation span:first-child::after{
	content: "";
	position: absolute;
	right: -1rem;
	top: 0.8rem;
	display: block;
	width: 1px;
	height: 1.6rem;
	background-color: #ccc;
}
#header .logo .nation span:last-child{
	font-weight: 700;
}
.container{
	width: 160rem;
	max-width: calc(100% - 24px - 24px);
	margin: 0 auto;
}
.cont-sorry{
	display: block;
	margin-bottom: 2rem;
	padding: 2.5rem;
	background-color: #f6f6f6;
	text-align: center;
	word-break: keep-all;
}
.cont-apec{
	display: block;
	min-height: 10rem;
	margin-bottom: 2rem;
	padding: 1rem;
	background: url(../images/img-apec-pattern.png) 50% 0% no-repeat #F5FAFF;
	text-align: center;
}
.cont-sns{
	display: block;
	padding: 3rem;
	margin-bottom: 2rem;
	border: 1px #ddd solid;
	text-align: center;
	font-size: 1.8rem;
}
.cont-sns > ul{
	display: inline-flex;
	flex-flow: row wrap;
	gap: 5rem;
}
.cont-sns > ul > li{
	flex: 1 auto;
}
.cont-sns a{
	display: flex;
	align-items: center;
	gap: 1rem;
}
.icon-sns{
	display: inline-flex;
	width: 4rem;
	height: 4rem;
	align-items: center;
}
.cont-body{
	display: block;
	min-height: 50rem;
	margin: 2.5rem 0;
}
.img-ready{
	text-align: center;
}
.board-tit{
	display: block;
	font-size: 3rem;
	font-weight: bold;
}
.board-list{
	border-top: 2px #000 solid;
}
.board-list > ul > li{
	display: flex;
	flex-flow: row wrap;
	gap: 4rem;
	padding: 3rem 0;
	border-bottom: 1px #ccc solid;
}
.board-list .thumb{
	display: inline-block;
	width: 40rem;
	height: 22.5rem;
}
.board-list .thumb img{
	width: 100%;
	height: 100%;
}
.board-list .desc{
	display: flex;
	flex-direction: column;
	width: calc(100% - 4rem - 40rem);
}
.board-list .desc .tit{
	display: block;
	/*display: -webkit-box;
	/*max-height: calc((2.8rem * 1.2) * 2);*/
	line-height: 1.2;
	font-weight: 700;
	font-size: 2.8rem;
	/*-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;*/
}
.board-list .desc .tit + span{
	margin-top: 2rem;
}
.board-list .desc .icon{
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}
.board-list .desc .icon-link{
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.5px;
}
#footer{
	display: block;
	padding: 5rem 0;
	border-top: 1px #ddd solid;
	color: #666;
	font-size: 1.6rem;
}


@media only screen and (max-width:768px) {
	html{
		font-size: 8px;
	}
	.board-list .thumb{
		margin: 0 auto;
		text-align: center;
	}
	.board-list .desc{
		width: 100%;
		text-align: center;
	}
}
