/*------------------------------------------------
  タブ切り替え
------------------------------------------------*/
label.panel-label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 100%;
  color: #a0a0a0;
  cursor: pointer;
  background-color: #f0f0f0;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
label.panel-label:hover {
  color: #2f68b3;
}

#panels {
  background-color: white;
}
#panels .container {
  margin: 0 auto;
  width: 100%;
}
#panels section header label.panel-label {
  padding: 16px 20px;
  box-sizing: border-box;
}
#panels section main {
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
  overflow-y: hidden;
}

#panel-1-ctrl:checked ~ #panels #panel-1 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 24px;
}
#panel-2-ctrl:checked ~ #panels #panel-2 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 24px;
}
#panel-3-ctrl:checked ~ #panels #panel-3 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 24px;
}
#panel-4-ctrl:checked ~ #panels #panel-4 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 24px;
}
#panel-5-ctrl:checked ~ #panels #panel-5 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 24px;
}

#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 {
  pointer-events: none;
  cursor: default;
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  box-shadow: none;
  border-right: none;
}
#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1.last {
  border-right: 1px solid transparent;
}
#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 + li {
  border-left: 1px solid #dfdfdf;
}
#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label {
  background-color: white;
  color: #2f68b3;
  padding-top: 24px;
}
#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label::after {
  height: 6px;
}

#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 {
  pointer-events: none;
  cursor: default;
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  box-shadow: none;
  border-right: none;
}
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2.last {
  border-right: 1px solid transparent;
}
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 + li {
  border-left: 1px solid #dfdfdf;
}
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label {
  background-color: white;
  color: #2f68b3;
  padding-top: 24px;
}
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label::after {
  height: 6px;
}

#panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 {
  pointer-events: none;
  cursor: default;
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  box-shadow: none;
  border-right: none;
}
#panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3.last {
  border-right: 1px solid transparent;
}
#panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 + li {
  border-left: 1px solid #dfdfdf;
}
#panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 label.panel-label {
  background-color: white;
  color: #2f68b3;
  padding-top: 24px;
}
#panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 label.panel-label::after {
  height: 6px;
}

#panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 {
  pointer-events: none;
  cursor: default;
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  box-shadow: none;
  border-right: none;
}
#panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4.last {
  border-right: 1px solid transparent;
}
#panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 + li {
  border-left: 1px solid #dfdfdf;
}
#panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 label.panel-label {
  background-color: white;
  color: #2f68b3;
  padding-top: 24px;
}
#panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 label.panel-label::after {
  height: 6px;
}

#panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 {
  pointer-events: none;
  cursor: default;
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  box-shadow: none;
  border-right: none;
}
#panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5.last {
  border-right: 1px solid transparent;
}
#panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 + li {
  border-left: 1px solid #dfdfdf;
}
#panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 label.panel-label {
  background-color: white;
  color: #2f68b3;
  padding-top: 24px;
}
#panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 label.panel-label::after {
  height: 6px;
}


ul#tabs-list {
  display: flex;
  list-style: none;
  text-align: center;
#  border-bottom: 1px solid #dfdfdf;
  margin: 0;
  padding: 0;
}
ul#tabs-list li {
  text-align: center;
  font-size: 0.875em;
  width: 20%;
  box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.05);
  border-right: 1px solid #dfdfdf;
  position: relative;
}
ul#tabs-list li:hover {
  -webkit-transition: none;
  transition: none;
  border-right: none;
}
ul#tabs-list li:hover.last {
  border-right: 1px solid transparent;
}
ul#tabs-list li:hover + li {
  border-left: 1px solid #dfdfdf;
}
ul#tabs-list li label.panel-label {
  position: relative;
  padding: 16px 0;
  font-size: 0.875em;
}
ul#tabs-list li label.panel-label::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100%;
  background-color: #2f68b3;
  height: 0;
  -webkit-transition-property: height;
  transition-property: height;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
ul#tabs-list li label.panel-label:hover {
  padding-top: 24px;
}
ul#tabs-list li label.panel-label:hover::after {
  height: 6px;
}

.panel-radios {
  display: none;
}

main p {
  line-height: 1.8;
}

/*------------------------------------------------
  募集要項
------------------------------------------------*/
.table-recruit {
  border-collapse: collapse;
  width: 100%;
}
.table-recruit caption {
caption-side: top;
color: #2f68b3;
}
.table-recruit th.item {
  border-top: #2f68b3 3px solid;
}
.table-recruit th {
  background: #E7E8E2;
  border: #e3e3e3 1px dotted;
  text-align: left;
  padding: 10px;
}
.table-recruit td.item {
  border-top: #b3b3b3 3px solid;
}
td {
  border: #e3e3e3 1px dotted;
  text-align: left;
  padding: 10px;
}
tr:hover {
  background: #FAFAFA;
}

/*------------------------------------------------
  表示・非表示
------------------------------------------------*/
.box-hidden {
  width: 100%;
}
.box-hidden input {
  display: none;
}
.box-hidden label {
  margin-top: 16px;
  cursor: pointer;
  color: #2f68b3;
}
.box-hidden label:hover {
  color: #b22d42;
}

/*************************
 * 顧客/ソリューション/企画営業 *
 *************************/

/*
 1.企画立案セールスエンジニア
*/
.box-hidden .njob-category1-1 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category1-1 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category1-1 {
  height: auto;
}

/***************
 * ITコンサルタント *
 ***************/

/*
 1.コンサルタント（ビッグデータ／AI／IoT／デジタルビジネス領域）及び、データサイエンティスト
*/
.box-hidden .njob-category2-1 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category2-1 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category2-1 {
  height: auto;
}

/*
 2.AI技術を活用したビジネス企画、顧客企業向けコンサル
*/
.box-hidden .njob-category2-2 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category2-2 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category2-2 {
  height: auto;
}

/*
 3.上流工程システムエンジニア/ITコンサルタント
*/
.box-hidden .njob-category2-3 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category2-3 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category2-3 {
  height: auto;
}

/*
 4.RPA（業務コンサルタント・事務移管コンサルタント）
*/
.box-hidden .njob-category2-4 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category2-4 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category2-4 {
  height: auto;
}

/********************
 * プロジェクト・マネージャー *
 ********************/

/*
 1.ソフトウェア開発におけるPM人財・業務SP人財
*/
.box-hidden .njob-category3-1 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category3-1 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category3-1 {
  height: auto;
}

/*
 2.グローバル PMO
*/
.box-hidden .njob-category3-2 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category3-2 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category3-2 {
  height: auto;
}

/**************
 * ITアーキテクト *
 **************/

/*
 1.次期システムアーキテクチャ検討人財
*/
.box-hidden .njob-category4-1 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category4-1 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category4-1 {
  height: auto;
}

/*
 2.基盤系ＩＴプロフェッショナルエンジニア
*/
.box-hidden .njob-category4-2 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category4-2 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category4-2 {
  height: auto;
}

/*
 3.オープン系基盤リーダ／エンジニア
*/
.box-hidden .njob-category4-3 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category4-3 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category4-3 {
  height: auto;
}

/*
 4.スマホアプリ開発プロジェクトにおけるプロジェクトリーダ
*/
.box-hidden .njob-category4-4 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category4-4 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category4-4 {
  height: auto;
}

/***************
 * ITスペシャリスト *
 ***************/

/*
 1.オープン系基盤リーダ／エンジニア　（NWスペシャリスト）
*/
.box-hidden .njob-category5-1 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category5-1 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category5-1 {
  height: auto;
}

/*
 2.オープン系基盤リーダ／エンジニア　（データベーススペシャリスト）
*/
.box-hidden .njob-category5-2 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category5-2 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category5-2 {
  height: auto;
}

/*
 3.スマホアプリ開発プロジェクトにおけるスクラムマスター
*/
.box-hidden .njob-category5-3 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category5-3 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category5-3 {
  height: auto;
}

/*******************
 * ITサービスマネジメント *
 *******************/

/*
 1.企画・設計・構築から運用・保守までシステムのライフサイクルを円滑に推進する
*/
.box-hidden .njob-category6-1 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category6-1 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category6-1 {
  height: auto;
}

/**********************
 * ITソリューション企画・営業 *
 **********************/

/*
 1.顧客企業向け営業担当
*/
.box-hidden .njob-category7-1 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category7-1 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category7-1 {
  height: auto;
}

/*
 2.ソリューション営業（NW、モバイル、Wi-FI、コミュニケーション基盤の新規ソリューション企画および販売活動）
*/
.box-hidden .njob-category7-2 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category7-2 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category7-2 {
  height: auto;
}

/*
 3.クライアント　パートナー　（グローバル営業）
*/
.box-hidden .njob-category7-3 {
  text-align: left;
  display: block;
}
.box-hidden .mjob-category7-3 {
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
.box-hidden input:checked + .mjob-category7-3 {
  height: auto;
}
