@charset "UTF-8";
/*
modal
------------------------------------------------*/
.app__box{
	overflow-y: scroll;
}
/* modal_bg */
.modal_bg {
	display: none;
	width: 100%;
	height: 120%;
	background: #d0feff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 6666;
	opacity: 0.7;
	cursor: pointer;
	overflow: scroll;
}
/* modal_open */
.modal_open{
	cursor: pointer;
	z-index: 1000;
}
/* modal_close */
.modal_close {
	width: 55px;
	height: 55px;
	background-color: var(--cmnOrange);
	border-radius: 50%;
	position: absolute;
	top: -15px;
	right: -15px;
	z-index: 10;
	cursor: pointer;
}
.modal_close::before,
.modal_close::after{
	content: '';
	width: 1px;
	height: 20px;
	background-color: var(--cmnWh);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width:812px){
	.modal_close {
		width: 45px;
		height: 45px;
		top: -10px;
		right: -10px;
	}
	.modal_close::before,
	.modal_close::after{
		height: 15px;
	}
}

/*
result_modal 結果発表
------------------------------------------------*/
.result__modal{
	display: none;
	width: 750px;
	margin: 60px auto;
	padding: 60px 30px 0;
	position:relative;
	z-index: 1000;
}
.result__modalBox {
	display: none;
	max-width: 750px;
	border-radius: 30px;
	position: fixed;
	z-index: 7777;
	background: var(--cmnWh);
}
.result__modalCts{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-height: 90vh;
	padding: 60px;
	overflow-y: scroll;
}
.result__modalImg{
	width: fit-content;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
.result__modalImg img{
	width: fit-content;
}
.result__modalCountry{
	width: fit-content;
	height: fit-content;
	font-size: 1.6rem;
	color: var(--cmnBl);
	border: 1px solid var(--cmnBl);
	border-radius: 4px;
	padding: 1px 15px;
	margin: 25px 0 20px;
	background: var(--cmnWh);
}
.result__modalTit{
	margin-bottom: 15px;
	font-size: 2.7rem;
	font-weight: var(--bold);
	text-align: center;
	line-height: 1.2;
}
.result__modalName{
	font-size: 1.5rem;
	font-weight: var(--bold);
	text-align: center;
	background-color: rgba(255,255,255,0.7);
	border-radius: 10px;
}
.result__modalName span{
	font-size: 2rem;
}
.result__modalTxt{
	text-align: justify;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 2px dotted #1f2e5a;
}
@media screen and (max-width:812px){
	.result__modal{
		width:calc(100% - 40px);
		max-width: 500px;
		margin: 20px auto;
		padding: 45px 0 0;
	}
	.result__modalBox {
		width: calc(100% - 40px);
		max-width: 500px;
	}
	.result__modalCts{
		max-height: 80vh;
		padding: 35px;
		border-radius: 15px;
	}
	.result__modalCountry{
		font-size: 1.3rem;
		margin: 16px 0;
	}
	.result__modalImg{
		width: 100%;
	}
	.result__modalImg::after{
		border: 6px solid #fff;
	}
	.result__modalTit{
		margin: 0 0 10px;
		font-size: 2.1rem;
	}
	.result__modalName{
		font-size: 1.4rem;
		border-radius: 5px;
	}
	.result__modalName span{
		font-size: 1.8rem;
	}
	.result__modalTxt{
		font-size: 1.5rem;
		text-align: justify;
		margin-top: 20px;
		padding-top: 20px;
	}
}

/*
app_modal 応募概要
------------------------------------------------*/
.app__modal{
	display: none;
	position: fixed;
	z-index: 7777;
	
}
.app__areaWrapper{
	width: 1000px;
	height: 100vh;
	padding: 80px 0;
	overflow-y: scroll;
}
.app__areaWrapper::-webkit-scrollbar{
	display: none;
  }
.app__modal .modal_close{
	top: -80px;
	right: 0;
}
@media screen and (max-width:812px){
	.app__areaWrapper{
		width: calc(100vw - 40px);
		max-width: 500px;
		height: 100vh;
		padding: 50px 0;
		overflow-y: scroll;
	}
}

