@charset "UTF-8";
/*=======================================
ABOUT
=========================================*/

.tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .tab li a{
    display: block;
    background: linear-gradient(to right,  #043886, #3A5B9E);
    margin:0 2px;
    padding:25px 30px;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }

  /*liにactiveクラスがついた時の形状*/
  /* .tab li.active a{
    background:#fff;
    font-size: 22px;
    color: #46433F;
  } */
  
  
  /*エリアの表示非表示と形状*/
  .area {
    display: none;/*はじめは非表示*/
    opacity: 0;/*透過0*/
    background: #fff;
    /* padding:50px 20px; */
  }
  
  /*areaに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;
    }
  }


  .l-pagetitle .paget-content_c {
    /* background-image: url(img/top/background-b.png); */
    background-size: contain;
    height: auto;
    padding-top: 50px;
    position: relative;
    padding-bottom: 90px;
  }

  .l-pagetitle .paget-content_c .pagetitle-wrap {
    width: 1100px;
    margin: 0 auto;
  }

  .company-table table {
    width: 1100px;
    font-family: 'ヒラギノ角ゴ ProN', sans-serif;
    border-top: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
  }

  .wrapper .area .hiragaba {
    background: linear-gradient(to right,  #043886, #3A5B9E);
    color: #fff;
    padding: 14px 38px;
    font-size: 22px;
    font-family: 'ヒラギノ角ゴ ProN', sans-serif;
    margin-top: 60px;
    margin: 60px 0 20px 0;
  }
  
  .company-table table th {
    font-size: 17px;
    font-family: 'ヒラギノ角ゴ ProN', sans-serif;
    text-align: left;
    background-color: #F7FAFF;
    color: #043886;
    padding: 14px 38px;
    border-left: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }

  .company-table table td {
    padding: 14px 38px;
    color: #46433F;
    background-color: #fff;
    border-left: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }

  .Company-link-table tr:first-child td {
    background-color: #F7FAFF;
    color: #043886;
    font-weight: bold;
  }

  .Company-link-table a {
    color: #3A5B9E;
    text-underline-offset:0.45em;
  }

/* ----------------------------- スマホ（～767px） */
@media screen and (max-width: 767px) {
  .l-pagetitle .paget-content_c .pagetitle-wrap {
    width: 100%;
  }

  .company-table {
    overflow: scroll;
  }

  .company-table table {
    /* width: 100%; */
    width: 500px;
  }

  .tab li a {
    font-size: 16px;
    padding: 18px 23px;
    margin-top: 4px;
  }

  .company-table table th,
  .company-table table td {
    padding: 10px 0;
    text-align: center;
  }

  .wrapper .area .hiragaba {
    margin: 30px 0 10px 0;
    font-size: 20px;
    padding: 7px 19px;
  }

  .area.is-active {
    padding: 0 15px;
  }
  
  .l-pagetitle .paget-content_c {
    padding-top: 0;
  }
}