/*---------------------------*/
/* NOTICE(WEBVIEW IN GAME MAIN NOTICE) CSS
/*---------------------------*/


/*--- basic NOTICE CSS ---*/


	.wvmain {
		width:100vw;
		height:100vh;
		background-color: #000000;
		background-size:cover;
		font-family: NanumGothic;
	
	}

	.container3 {
		margin-right: auto;
		margin-left: auto;
		
	}

	.view-main {
		display: grid;
		grid-template-columns : 1.9fr 1fr;
		grid-template-rows: 5fr 0.7fr 8fr;
		width:100vw;
		height:100vh;
		font-size: 10px;
		align-content: center;
	}

	.Gitem {
		display: grid;

		
	}

	#scroll {
		overflow-y: auto;
		
	}

/*--- grid NOTICE CSS ---*/

	.Gitem:nth-child(1) {
		grid-column : 1 / 2;
		grid-row : 1/ 4;
		height:100vh;
	}

	.Gitem:nth-child(2) {
		grid-column : 2 / 3;
		grid-row : 1/ 2;
		height:100%;
		align-items: end;
		
		
	}

	.Gitem:nth-child(3) {
		grid-column : 0;
		grid-row : 0;
		height:0%;
	}

	.Gitem:nth-child(4) {
		grid-column : 2 / 3;
		grid-row : 2 / 3;
		height:10%;
	}

	.Gitem:nth-child(5) {
		grid-column : 2 / 3;
		grid-row : 3 / 4;
		height:100%;;
		/*
		align-items: start;
		*/
	}


/*--- detail NOTICE CSS ---*/

	.Gitem p {
		color : #e9e9e9;
		line-height: 1.3;
		margin-bottom: 3.5vh;
	}
	/*
	.Gitem a{
		color : #b7b7b7;
	} 
	*/
	.Gitem span {
		color : #e9e9e9;
		line-height: normal;
	}

	.Gitem h3{
		font-size : clamp(1rem, 2.4vw, 4.3rem);
		color : #e9e9e9;
		font-weight: 550;
		margin-bottom: 8vh;
	}

	.Gitem h2 {
		font-size : clamp(1rem, 2.4vw, 4.3rem);
		font-family: NanumGothicBold;
		font-weight: 800;
		padding-bottom : 0.5vh;
		margin-bottom: 2vh;
	}

	.Gsub2 h2 {
		color : #abeeff;
		border-bottom: solid 1.2px #abeeff;
	}

	.Gsub4 h2 {
		color : #ffc600;
		border-bottom: solid 1.2px #ffc600;
	}

	.Gsub1 {
		margin-left : 3vw;
		margin-right : 3vw;
		margin-top : 6.5vh;
		
	}

	.Gsub1 p {
		font-size : clamp(0.75rem, 1.6vw, 3rem);
		color : #e9e9e9;
	}

	.Gsub2 {
		margin-left : 1.5vw;
		margin-right : 1.5vw;
		
	}

	.Gsub4 {
		margin-top: 0;
		margin-left : 1.5vw;
		margin-right : 1.5vw;
	}

	.Gsub2 p {
		font-size : clamp(0.75rem, 1.95vw, 4rem);
		color : #b7b7b7;
		padding-bottom : 0.3vh;
		margin-bottom: 1.8vh;
		border-bottom: solid 0.7px #505050;
	}

	.Gsub4 p {
		font-size : clamp(0.75rem, 1.95vw, 4rem);
		color : #b7b7b7;
		padding-bottom : 0.3vh;
		margin-bottom: 1.8vh;
		border-bottom: solid 0.7px #505050;
	}



/*------------------
  Responsive
---------------------*/



@media (max-width: 1300px) {


}

@media (min-width: 1200px) {


}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {


}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {


}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {



}

/* Medium Mobile :480px. */

@media only screen and (max-width: 576px) {

}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {

}


