@charset "UTF-8";
/* ==========================================================
Name:
reset.css

Description:
ユーザーエージェントスタイルの初期化を行う

Contents:
base reset style
form parts reset style
========================================================== */
/* ---------------------------------------------
*   base reset style
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q, blockquote {
    quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
    clear: both;
}

a img {
    border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

/* ---------------------------------------------
*   form parts reset style
--------------------------------------------- */
input, button, textarea, select {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
    text-indent: 0.01px;
    text-overflow: "";
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-family: "Noto Sans JP", sans-serif;
}

button {
    touch-action: manipulation;
    cursor: pointer;
}

select {
    cursor: pointer;
}

textarea {
    display: block;
    overflow: auto;
    resize: none;
}


/* recruit */
/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    padding-bottom: 40px;
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
    border: 1px solid #EFEFEF;
    margin: 0 auto;}
  
  /*タブのスタイル*/
  .tab_item {
    width: calc(100%/3);
    height: 50px;
    border-bottom: 3px solid #EFEFEF;
    background-color: #ffffff;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #010101;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .tab_item:hover {
    opacity: 0.75;
  }
  
  /*ラジオボタンを全て消す*/
  input[name="tab_item"] {
    display: none;
  }
  
  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 40px 40px 0;
    clear: both;
    overflow: hidden;
    height: 500px;
  }


  @media screen and (max-width: 480px) {
    /* 480px以下に適用されるCSS（スマホ用） */
    .tab_content {
      display: none;
      padding: 40px 40px 0;
      clear: both;
      overflow: hidden;
      height: 700px;
    }

    .tab_item {
      width: calc(100%/3);
      height: 50px;
      border-bottom: 3px solid #EFEFEF;
      background-color: #ffffff;
      line-height: 50px;
      font-size: 15px;
      text-align: center;
      color: #010101;
      display: block;
      float: left;
      text-align: center;
      font-weight: bold;
      transition: all 0.2s ease;
      cursor: pointer;
    }
  }


  
  
  /*選択されているタブのコンテンツのみを表示*/
  #all:checked ~ #all_content,
  #programming:checked ~ #programming_content,
  #design:checked ~ #design_content {
    display: block;
  }
  
  /*選択されているタブのスタイルを変える*/
  .tabs input:checked + .tab_item {
    background-color: #030303;
    color: #fff;
  }

/* recruit */



/* テーブル */

.data_table_recruit>table {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
tr {
  display: table-row;
  /* vertical-align: inherit; */
  unicode-bidi: isolate;
  /* border-color: inherit; */
}
.data_table_recruit td[scope=col] {
  background-color: #FAFAFA;
}
.data_table_recruit th {
  font-weight: 500;
}
.data_table_recruit td {
  padding: 12px 0.5em;
  border-left: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  font-size: 0.875rem;
}
.data_table_recruit th {
  padding: 12px 0.5em;
  border-left: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  font-size: 0.875rem;
}

th{
  vertical-align: middle;
}

