@charset "UTF-8";

/*******************************
 interview common Css 
*******************************/
.main-sub{
	background-image: url("../img/header_img.jpg");
}
.tab-item {
    width: calc(100%/2 - 10px);
	margin: 0 6px;
	color: #fff;
    background-color: #479f4b;
	border-top: 3px solid #0D6310;
    display: block;
    float: left;
    transition: all 0.2s ease;
    margin-bottom: 0;
    cursor: pointer;
	padding-bottom: 5px;
	padding-top: 5px;
	background-image: none;
	
}



#newgraduates:checked + .tab-item,
#midcareers:checked + .tab-item{
	font-weight: bold;
	background: #fff;
	color: #000;
	border-top: 3px solid #479f4b;
}


.tab-item:hover {
    background: #eee;
	color: #000;
}

/*ラジオボタンを全て消す*/
input[name="tab-item"] {
    display: none;
}

.tab-content h2{
	color: #479f4b;
}
.tab-content p{
	margin-bottom: 2rem;
}
/*選択されているタブのコンテンツのみを表示*/
#newgraduates:checked ~ #content-newgraduates,
#midcareers:checked ~ #content-midcareers{
    display: block;
}
/*============================================

PC用CSS

============================================*/
@media screen and (min-width: 1024px){
	.tab-item {
		font-size: 18px;
		padding: 10px 0;
		width: 420px;
	}
	.tab-item:first-of-type{
		margin-left: 63px;
	}
	.tab-content p{
		margin-bottom: 4rem;
	}
}