@charset "utf-8";

@keyframes slide {
	0% {
		transform: translateX(0px);
	}

	100% {
		transform: translate(-20px, -7px);
	}
}

@keyframes slide2 {
	0% {
		transform: translateX(0px);
	}

	100% {
		transform: translate(20px, 7px);
	}
}

@keyframes slide3 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(12px, -15px);
	}
}

@keyframes slide4 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(-12px, 15px);
	}
}

main {
	height: 1300px;
}

.header_nav li:first-of-type {
	transform: translateX(0px);
}

.main_content-img {
	position: absolute;
	top: 170px;
	left: 20%;
	height: auto;
}

.main_content-img ul {
	display: flex;
	flex-wrap: wrap;
}

.main_content-img li {
	width: 100%;
	height: 230px;
}

.main_content-img time {
	color: #F6821E;
	font-size: 16px;
}

.main_content-img a {
	width: 800px;
	height: 100px;
	color: white;
	font-weight: bold;
	font-size: 18px;
}

.main_content-img a p {
	padding-top: 10px;
}

.main_content-imgBox-txt {
	position: relative;
	z-index: 2;
	width: 70%;
	height: 35%;
	border: 2px solid #F6821E;
	background-color: black;
	padding: 3% 5%;
}

.main_content-imgBr {
	position: relative;
	top: -54%;
	left: -1.2%;
	z-index: 1;
	width: 80%;
	height: 59%;
	border: 2px solid white;
}

.main_content-imgTxt {
	width: 100px;
	position: relative;
	top: -73%;
	left: 71.5%;
	z-index: 2;
}

.main_content-imgTxt p {
	width: 100px;
	height: 25px;
	text-align: center;
	padding-top: 5px;
	font-weight: bold;
	font-size: 14px;
	background-color: #F6821E;
	border: 2px solid #F6821E;
}

.main_content-imgBox:hover ~ .main_content-imgTxt {
	animation: slide .3s ease-out forwards;
}

.main_content-imgBox ~ .main_content-imgTxt {
	animation: slide2 .3s ease-out forwards;
}

.main_content-imgBox:hover ~ .main_content-imgBr {
	animation: slide3 .3s ease-out forwards;
}

.main_content-imgBox ~ .main_content-imgBr {
	animation: slide4 .3s ease-out forwards;
}

.main_content-imgPage {
	display: flex;
	position: relative;
	z-index: 2;
}

.main_content-imgPage ul {
	text-align: center;
	padding-top: 50px;
}

.main_content-imgPage li {
	display: inline-block;
	padding: 0 10px;
	width: 3%;
	height: 50px;
}

.main_content-imgPage li:first-of-type {
	color: #f6821e;
	font-size: 30px;
	font-weight: bold;
	padding-left: 0;
}

.main_content-imgPage a {
	color: white;
	font-size: 30px;
	font-weight: bold;
}

.main_content-imgPage a:hover {
	color: #f6821e;
}

.link_icon {
	padding-top: 55px;
}

.link_icon img {
	width: 20px;
}

.main_content-imgMenu {
	position: absolute;
	top: 200px;
	left: 50px;
	width: 170px;
}

.main_content-imgMenu li {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}

.main_content-imgMenu a {
	color: white;
}

.main_content-imgMenu li:first-of-type {
	color: #f6821e;
}

.main_content-imgMenu li::before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 2px;
	margin: 5px 5px 5px 0;
	background-color: white;
}

.main_content-imgMenu li:first-of-type::before {
	background-color: #f6821e;
}

.main_content-imgMenu li:nth-of-type(2)::before,
.main_content-imgMenu li:nth-of-type(3)::before,
.main_content-imgMenu li:nth-of-type(4)::before {
	opacity: 0;
}

.main_content-imgMenu li:nth-of-type(2):hover::before,
.main_content-imgMenu li:nth-of-type(3):hover::before,
.main_content-imgMenu li:nth-of-type(4):hover::before {
	opacity: 1;
	transition: all .3s;
}

.main_content-imgMenu li:nth-of-type(2),
.main_content-imgMenu li:nth-of-type(3),
.main_content-imgMenu li:nth-of-type(4) {
	transform: translateX(-25px);
}

.main_content-imgMenu li:nth-of-type(2):hover,
.main_content-imgMenu li:nth-of-type(3):hover,
.main_content-imgMenu li:nth-of-type(4):hover {
	transform: translateX(0px);
	transition: all .3s;
}
