@charset "utf-8";
/* CSS Document */

.pcbr{
display: block;
}

.spbr{
display: none;
}

.pcbr2{
display: block;
}

.spbr2{
display: none;
}

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

.pcbr{
display: none;
}

.spbr{
display: block;
}

.pcbr2{
display: none;
}

.spbr2{
display: block;
}

}

.recruit-bottom {
	width:100%;
	margin:70px auto 70px;
}

.recruit-bottom2 {
	width:100%;
	margin:0px auto;
}


@media (max-width:767.98px) {
.recruit-bottom {
	width:100%;
	margin:40px auto 60px;
}

.recruit-bottom2 {
	width:100%;
	margin:0px auto;
}

}

.recruit-box-message {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding: 20px 25px;
    color: #07b7d9;
    border-radius: 3em;
    background: #e4f0f7;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:767.98px) {
    .recruit-box-message {
        font-size: 2rem
    }
}

.recruit-box-message span {
    display: inline-block
}

.recruit-box-message b {
    font-size: 1.3em;
    display: inline-block
}

.recruit-box-message small {
    font-size: .5em;
    display: inline-block
}


/* 全体を覆うdiv */
.tab-container3 {
  width: 100%;
  margin: 40px auto 70px;
}
/*タブ(label)のスタイル*/
.tab-item {
  width: 33%;
  height: 60px;
  line-height: 60px;
  font-size:23px;
  background-color:#D1D1D1;
  text-align: center;
  display: block;
  float: left;
  flex-wrap: nowrap;
  color:#FFF;
  text-align: center;
  transition: all 0.2s;
  font-weight: bold;
}

/* inputボタンは目には見えないところで働いてもらう */
input[name="tab-item"] {
  display: none;
}

/* タブで切り替えたいコンテンツの部分。ここはお好みで */
.tab-content {
  display: none;
  padding: 40px 0 10px;
  overflow: hidden;
  clear: both;
}

/* 選択されているタブのコンテンツを表示させる */
#a:checked ~ #a-content,
#b:checked ~ #b-content,
#c:checked ~ #c-content
{
  display: block;
}

/* 選択されていることがわかるように、選択されているタブはスタイルを変える */
.tab-container3 input:checked + .tab-item {
  background-color: #184B87;
  color: #fff;
  position: relative;
}

.tab-container3 input:checked + .tab-item:before{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 12px solid #184B87;  /* 好みで色を変えてください */ 
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.tab-item a{
	color:#FFFFFF;
}

.career-bottom {
background-color:#FFF;
padding:45px;
margin-top:30px;
margin-bottom:30px;
}

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

.career-bottom {
padding:45px 35px;
margin-top:30px;
margin-bottom:30px;
}

.tab-item {
  font-size:14px;
  line-height: 100%;
  padding:15px 5px;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

}

.recruit-bottom-btn {
    font-size: 19px;
    font-weight: 700;
    position: relative;
    display: block;
    padding: .8em 1.5em;
    text-align: center;
    color: #fff;
    border-radius: 2em;
    background: #274b85
}

.recruit-bottom-btn:after {
    font-family: icon;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -5px;
    content: '\e914'
}

.recruit-bottom-btn:hover {
    text-decoration: none;
    color: #fff
}

.recruit-bottom-btn_blue {
    background: #3aa1da
}

.recruit-bottom-btn_gray {
    background: #616161
}