@keyframes content {
	100% {
		opacity: 1;
	}
}

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

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

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

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

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

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

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

	100% {
		transform: translate(-5px, 15px);
	}
}
@keyframes slide5 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(0px, -30px);
	}
}
.header_nav li:nth-of-type(3) {
	transform: translateX(0px);
}

#main {
	height: 1000px;
}

#tab1_box {
	display: block;
	animation: content 0.4s ease 0.4s 1 forwards;
	opacity: 0;
}

#tab2_box {
	display: none;
	animation: content 0.4s ease 0.4s 1 forwards;
	opacity: 0;
	text-align: center;
}

.main_content-img {
	position: absolute;
	top: 22%;
	left: 15%;
	width: 60%;
}

.main_content-img p {
	color: white;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
}

.main_content-image img {
	width: 90%;
	padding-bottom: 50px;
}

.main_content-img2 {
	position: absolute;
	top: 170px;
	left: 15%;
	width: 80%;
}

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

.main_content-img2 li {
	height: 250px;
	width: 30%
}

.main_content-img2 img {
	width: 80%;
	height: 60%;
	border: 2px solid #F6821E;
	filter: brightness(50%) contrast(100%);
}

.main_content-img2 a {
	position: relative;
	z-index: 2;
	width: 80%;
	height: 60%;
	padding: 0 15px;
}

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

.main_content-imgTxt {
	position: relative;
	top: -177px;
	left: 61%;
	z-index: 2;
}

.main_content-imgTxt figcaption {
	text-align: center;
	width: 30%;
	height: 16px;
	background-color: #F6821E;
	border: 2px solid #F6821E;
	color: black;
	font-weight: bold;
	font-size: 12px;
}

.main_content-img2Title {
	position: relative;
	top: -150px;
	color: white;
	font-size: 14px;
}

.main_content-img2 img:hover {
	filter: brightness(80%) contrast(100%);
}

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

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

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

.main_content-imgBox ~ .main_content-imgBr {
	animation: slide4 0.3s ease-out forwards;
}
.main_content-imgBox:hover ~ .main_content-img2Title {
	animation: slide5 0.3s ease-out forwards;
}
.main_content-imgMenu {
	position: absolute;
	top: 170px;
	left: 70px;
	width: 160px;
}

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

#before1,
#before2 {
	content: "";
	display: inline-block;
	width: 15px;
	height: 2px;
	margin: 5px 8px 5px 0;
}

#list1 {
	color: #f6821e;
}

#list2 {
	color: white;
}

#btn01 {
	transform: translateX(0px);
}

#btn02 {
	transform: translateX(-25px);
}

#before1 {
	opacity: 1;
	background-color: #f6821e;
}

#before2 {
	opacity: 0;
	background-color: white;
}

#btn01:hover,
#btn02:hover {
	transition: all 0.3s;
}
