/* PageHeader
======================================================================*/

#PageHeader.recruit .inside{
    background-image: url(../../images/recruit/header.png);
}

/* contents
======================================================================*/

#contents.recruit  {
    background-image: url(../../images/business/bg_business.png);
    background-repeat: no-repeat;
    background-position: center top 140px;
    background-size: cover;
}

/* rec_wrap
======================================================================*/
.rec_wrap {
    width: 100%;
    padding-bottom: 90px;
}

@media only screen and (max-width: 480px){
.rec_wrap {
    padding-bottom: 60px;
}
}

.rec_wrap .inner {
    position: relative;
}

.rec_wrap .btn_wrap {
    text-align: center;
}

/* outline
===================================*/

.outline {
    max-width: 1040px;
    margin: 30px auto 60px;
    padding: 30px 60px;
    background-color: rgba(255,255,255,0.90);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media only screen and (max-width: 480px){
.outline {
    margin: 10px auto 30px;
    padding: 10px 20px;
}
}

.outline h3{
    text-align: center;
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 30px;
}
@media only screen and (max-width: 480px){
.outline h3{
    font-size: 2.0rem;
}
}

.outline h3.fresher{
    color: #286D86;
}

.outline h3.career{
    color: #284586;
}

.outline h3 span{
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    color: #5A5A5A;
}

.outline p.pending{
    text-align: center;
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 200px 0;
}
@media only screen and (max-width: 768px){
.outline p.pending{
    font-size: 3.2rem;
}
}
@media only screen and (max-width: 480px){
.outline p.pending{
    font-size: 2.3rem;
    margin: 150px 0;
}
}

table.information{
    width: 100%;
}
table.information th,
table.information td{
    padding: 20px 0;
    font-size: 1.6rem;
    line-height: 2.0;
}

table.information tr{
    border-bottom: 1px solid #DEDEDE;
}
table.information th{
    min-width: 200px;
    width: 25%;
    font-weight: 700;
    color: #000000;
}

table.information td em{
    font-style: normal;
    font-weight: 700;
    color: #000000;
}

@media only screen and (max-width: 480px){
table.information th,
table.information td{
    width: 100%;
    display: block;
    padding: 8px 10px;
    font-size: 1.4rem;
    line-height: 1.9;
        -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}
table.information th{
    background-color: #EFEFEF;
    border-bottom: 1px solid #DEDEDE;
}
}

/* tab
===================================*/

ul.tab {
    width: 90%;
    margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    flex-direction:row-reverse; /*逆並び*/
}
@media only screen and (max-width: 480px){
ul.tab {
    width: 100%;
}
}

ul.tab li{
    width: 40%;
    max-width: 440px;
    margin: 0 10px 40px;
}

ul.tab li a{
    width: 100%;
    height: 70px;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 70px;
    text-align: center;
    color: #284586;
    background-color: rgba(255,255,255,0.40);
    position: relative;
    border-bottom: 3px solid #284586;
    transition: all 0.3s linear;
}
@media only screen and (max-width: 480px){
ul.tab li a{
    height: 50px;
    font-size: 1.4rem;
    line-height: 50px;
}
}

ul.tab li a.fresher{
    color: #286D86;
    border-bottom: 3px solid #286D86;
}

ul.tab li a.career{
    color: #284586;
    border-bottom: 3px solid #284586;
}

ul.tab li a i{
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

ul.tab li a:hover{
    background-color: rgba(255,255,255,1.00);
}

/*active*/
ul.tab li.active a{
    background-color: rgba(255,255,255,1.00);
}

/*default*/
.area {
  display: none;
  opacity: 0;
  padding: 30px 0;
}

/*is-active*/
.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* btn_entry */

a.btn_entry{
    font-family: 'Open Sans', 'Noto Sans JP', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 82px;
    text-align: center;
    position: relative;
    display: inline-block;
    min-width: 386px;
    height: 82px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #284686;
    transition: all 0.3s linear;
    z-index: 3;
}

@media only screen and (max-width: 480px){
a.btn_entry{
    font-size: 2.0rem;
    line-height: 64px;
    min-width: 340px;
    height: 64px;
    padding: 0 20px;
}
a.btn_entry i{
    font-size: 1.8rem;
}
}

a.btn_entry i{
    font-size: 2.4rem;
    margin-left: 10px;
}

a.btn_entry:hover{
    opacity: 0.6;
}

a.btn_entry:hover i{
    animation: fadeInLeft 1s ease-in-out infinite;
}


