@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Noto Sans KR', sans-serif;
	padding: 0;
	margin: 0;
}
body {
	width: 100%;
	height: 100vh;
	min-height: 600px;
	padding: 0;
	margin: 0;
}
.wrap {
	position: relative;
	width: 100vw;
	height: 100%;
	background: #fac885;
	overflow-x: hidden;
	overflow-y: auto;
}
.header {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	background: #ffffff20;
	z-index: 100;
}
.circle-box {
	position: absolute;
	width: 750px;
	height: 750px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -57%)
}
.circle-box .circle-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	animation: fadeUp 1s forwards;
	animation-timing-function: ease;
	transform-box: fill-box;
	transform-origin: center;
}
.circle-wrap #circle {
	width: 100%;
	height: 100%;
}
.circle-wrap #error404 {
	position: absolute;
	width: 30%;
	height: 30%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
}
#error404-1-1 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 1s;
	transform-box: fill-box;
	transform-origin: center;
}
#error404-1-2 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 1.1s;
	transform-box: fill-box;
	transform-origin: center;
}
#error404-1-3 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 1.2s;
	transform-box: fill-box;
	transform-origin: center;
}
#error404-1-4 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 1.3s;
	transform-box: fill-box;
	transform-origin: center;
}
#error404-1-5 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 1.4s;
	transform-box: fill-box;
	transform-origin: center;
}
#error404-1-6 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 2s;
	transform-box: fill-box;
	transform-origin: center;
}
#error404-1-7 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 2.15s;
	transform-box: fill-box;
	transform-origin: center;
}
#error404-1-8 {
	animation: updownText 4s infinite;
	animation-timing-function: ease;
	animation-delay: 2.3s;
	transform-box: fill-box;
	transform-origin: center;
}
.bottom {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 10%);
	background: url('../img/bg.png') no-repeat center top;
	background-size: cover;
}
.bottom .bottom-wrap {
	position: relative;
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
}
.bottom-wrap #article-left {
	position: absolute;
	width: 150px;
	height: 150px;
	top: -10%;
	left: -20%;
}
#article-1-1 {
	animation: updownInfinite 0.5s infinite;
	animation-timing-function: ease;
	transform-box: fill-box;
	transform-origin: center;
}
#article-1-2 {
	animation: shadowMove 2s infinite;
	animation-timing-function: ease;
	transform-box: fill-box;
	transform-origin: center;
}
.bottom-wrap #article-right {
	position: absolute;
	width: 150px;
	height: 150px;
	top: -10%;
	right: -20%;
}
.bottom-wrap .info{
	padding-top: 8rem;
}
.info p {
	text-align: center;
}
.info .info-title {
	font-weight: 700;
	font-size: 2rem;
    color: #3f2207;
}
.info .info-sub {
	font-size: 1rem;
    color: #3f2207;
	margin-top: 10px;
	word-break: keep-all;
}
.btn-home {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 50px;
	margin: 0 auto;
	margin-top: 40px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	background: #efa83a;
	border-radius: 6px;
	box-shadow: 0px 6px 0px #b3710b;
	transition: 0.3s;
}
.btn-home:hover {
	transform: translateY(5px);
	box-shadow: 0px 1px 0px #b3710b;
}

@media (max-width: 767px) {
	.circle-box {
		width: 600px;
		height: 600px;
	}
	.bottom .bottom-wrap {
		max-width: 400px;
	}
	.bottom-wrap #article-left {
		width: 120px;
		height: 120px;
		left: -10%;
	}
	.bottom-wrap #article-right {
		width: 120px;
		height: 120px;
		right: -10%;
	}
	.info .info-title {
		font-size: 1.625rem;
	}
	.info .info-sub {
		font-size: .875rem;
	}
}
@media (max-width: 576px) {
	.circle-box {
		width: 500px;
		height: 500px;
	}
	.bottom .bottom-wrap {
		max-width: 260px;
	}
	.bottom-wrap #article-left {
		width: 90px;
		height: 80px;
		left: -20%;
	}
	.bottom-wrap #article-right {
		width: 90px;
		height: 80px;
		right: -20%;
	}
	.bottom-wrap .info{
		padding-top: 4rem;
	}
}


@keyframes fadeUp {
  0% {
    transform: translateY(200px);
	opacity: 0.1;
	scale: 0.8;
  }
  100% {
    transform: translateY(0px);
	opacity: 1;
	scale: 1;
  }
}
@keyframes updownText {
  0% {
    transform: translateY(0px);
	scale: 1;
  }
  5% {
    transform: translateY(-10px);
	scale: 1.05;
  }
  10% {
    transform: translateY(0px);
	scale: 1;
  }
}
@keyframes updownInfinite {
	0% {
		transform: translate(0px, 0px);
	  }
	  50% {
		transform: translate(1px, 1px);
	  }
	  100% {
		transform: translate(0px, -0px);
	  }
}
@keyframes shadowMove {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(2px, 2px);
  }
  100% {
    transform: translate(-1px, -1px);
  }
}


/* 세션 만료 페이지 */
.wrap-expired {
	background : #f2f2f2!important;
}
.wrap-expired .header {
	background : #ededed!important;
}
.main-session  {
	position: absolute;
	width: 600px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align: center ;
	
}
.main-session img {
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	margin-top: 50px;
}
.main-session p:first-of-type {
	font-size: 26px;
	font-weight: bold;
	margin-top: 30px;
	line-height: 150%;
}
.main-session p:last-of-type {
	color: #e10000;
	font-size: 20px;
	margin-top: 10px;
}
.d-block.d-sm-none {
	display: none;
}
@media (max-width: 576px) {
	.main-session  {
		width: 300px;
		height: 400px;
	}
	.main-session img {
		max-width: 150px;
	}
	.main-session p:first-of-type {
		font-size: 18px;
	}
	.main-session p:last-of-type {
		font-size: 16px;
	}
	.d-block.d-sm-none{
		display: block;
	}
}
