/* recruit background */
.recruit_wrapper {
    background: url("../src/poster.jpg");
    position: relative;
    background-size: cover;
}
.recruit_wrapper:after {
    content: '';
    background-color: rgba(76,46,48,0.7);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

/* recruit title */
.recruit_title_wrapper {
    position: relative;
    z-index: 1;
	padding: 5%;
    color: #fff;
}
.section_h2 {
    margin-top: 10%;
    padding: 0 4%;
	text-align: left;
    text-indent: 1rem;
}
/* Implement recruit title for tablet */
@media screen and (min-width: 521px) {
    .recruit_title_wrapper {
        padding: 2% 5%;
    }
    .section_h2 {
        margin-top: 8%;
    }
}
/* Implement recruit title for PC */
@media screen and (min-width: 961px) {
    .recruit_title_wrapper {
        padding: 1% 5%;
    }
    .section_h2 {
        padding: 0 2%;
        margin-right: 50%;
    }
}

/* recruit txt */
.recruit_txt_wrapper {
    position: relative;
    z-index: 1;
	padding: 4% 5%;
}
.recruit_txt, .recruit_notice {
    padding: 4%;
	color: #fff;
    text-indent: 1rem;
}
.recruit_txt em {
    color: yellow;
    font-weight: 700;
}
.recruit_notice {
    color: yellow;
    font-weight: 700;
}

/* Implement recruit txt for tablet */
@media screen and (min-width: 521px) {
    .recruit_txt_wrapper {
        padding: 1% 5%;
    }
    .recruit_txt, .recruit_notice {
        padding: 2%;
    }
}
/* Implement recruit txt for PC */
@media screen and (min-width: 961px) {
    .recruit_txt, .recruit_notice  {
        padding: 1%;
        margin-right: 50%;
    }
}

/* recruit redirect btn */
.recruit_btn_wrapper {
    position: relative;
    z-index: 1;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	max-width: 90%;
	margin: 4% auto;
    margin-bottom: 0;
    padding-bottom: 10%;
}
.redirect_btn {
	display: flex;
	justify-content: space-between;
    align-items: center;
	padding: 4% 9%;
    margin: 2% 3%;
	border: 2px solid rgba(76,46,48,1);
    border-radius: 10px;
    background: #ede4e1;
    transition: 0.3s ease-in-out;
	text-align: center;
	color: rgba(76,46,48,1)
}
.redirect_btn:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
	margin-top: 5px;
    transform: rotate(45deg) translateY(-50%);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}
.redirect_btn:hover {
    background: rgba(76,46,48,1);
    color: #fff;
}
.redirect_btn:hover:after {
    border-color: #fff;
}

/* Implement recruit btn for tablet */
@media screen and (min-width: 521px) {
	.recruit_btn_wrapper {
        padding-bottom: 5%;
		max-width: 80%;
	}
	.redirect_btn {
		padding: 4% 13%;
	}
}
/* Implement recruit btn for PC */
@media screen and (min-width: 961px) {
	.recruit_btn_wrapper {
		max-width: 95%;
		margin: 3% auto;
        margin-bottom: 0;
	}
	.redirect_btn {
		padding-top: 3%;
		padding-bottom: 3%;
	}
}

/* poster2024 */
/*
.poster2024 {
    z-index: 1;
    position: relative;
	display: flex;
	justify-content: center;
	padding-bottom: 7%;
}
*/
/* Implement poster2024 for tablet */
/*
@media screen and (min-width: 521px) {
    .poster2024 {
        padding: 0% 2% 5% 2%;
    }
}
*/
/* Implement poster2024 for PC */
/*
@media screen and (min-width: 961px) {
    .poster2024  {
        padding: 0% 2% 3% 2%;
    }
}
*/

/* footer */
footer {
    margin: 0;
}