
.recruite-area{
  padding: 120px 0 120px;
}
/*タブ切り替え全体のスタイル*/
.tabs {
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */


    margin: 0 auto 80px;
  }

  /*タブのスタイル*/
  .tab_item {
    width: calc(100%/2);
    height: 80px;
    /* border-bottom: 3px solid #5ab4bd; */
    background-color: #E9E9E9;
    line-height: 80px;
    font-size: 1.8rem;
    text-align: center;
    color: #333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  .tab_item:hover {
    opacity: 0.75;
  }

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

  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 80px;
    clear: both;
    overflow: hidden;
    border: solid 1px #333;
    margin: 30px 0 0;
  }


  /*選択されているタブのコンテンツのみを表示*/
  #job1:checked ~ #job1_content,
  #job2:checked ~ #job2_content,
  #design:checked ~ #design_content {
    display: block;
  }

  /*選択されているタブのスタイルを変える*/
  .tabs input:checked + .tab_item {
    background-color: #959595;
    color: #fff;
  }
  @media screen and (max-width: 768px){
    .recruite-area{
      padding: 40px 20px 80px;
    }
	.tabs {
		margin: 0 auto 50px;
	}
	  
    .tab_item{
		height: 60px;
		line-height: 60px;
		font-size: 1.6rem;
    }
    .tab_content{
      padding: 40px 20px;
    }
	  
  }
  /* -----------------------------------------------------------
    table
-------------------------------------------------------------- */
table {
	width:100%;
	border-collapse:collapse;
	border-top: 1px solid #ddd;
	line-height: 1.8;
}

table tr {
	border-bottom: 1px solid #ddd;
}

table th {
	padding: 25px 30px;
	width: 24%;
	text-align: left;
	vertical-align: top;
	font-weight: 600;
}

table td {
	padding: 25px 30px 25px 0;
	text-align: left;
	vertical-align: top;
}
table td ul li{
  line-height: 1.9;
  position: relative;
  padding: 0 0 0 20px;
  margin: 0;
}
table td ul li::before{
  position: absolute;
  left: -10px;
  top: 0px;
  font-size: 3.0rem;
  line-height: 1;
  content: "・";
  color: #FFE83F;
}

@media screen and (max-width: 768px){

	table {
		font-size: 1.5rem;
	}

	table tr {
	}

	table th {
		display: block;
		width: 100%;
		padding: 15px 0 8px;
		text-align: left;
		/* color: #349844; */
	}

	table td {
		display: block;
		width: 100%;
		padding: 0 0 15px;
	}

}
#recruit .btn a{
	width: 400px;
	padding: 18px 30px 22px 30px;
	font-weight: bold;
	box-shadow: 5px 5px 20px #ccc;
	border-radius: 50px;
	font-size: 1.8rem;
}
#recruit .btn a::after{
  display: none;
}
#recruit .btn:hover.btn a{
  box-shadow: none;
}

@media screen and (max-width: 768px){
  #recruit .btn a{
    width: 100%;
    line-height: normal;
  }
}