@charset 'utf-8';
table,
th,
td {
  border-collapse: collapse;
}
.sec_ttl.h3 {
  text-align: left;
  padding-bottom: .6em;
  border-bottom: 2px solid #0070bd;
}
p + .sec_cont_wrap {
  margin-top: var(--spacing-unit-lg);
}
.logo_doraever img {
  max-width: 270px;
}
/* graph list
*****************************************/
  .graph_list {
    display: flex;
    flex-wrap :wrap;
    justify-content: space-between;
    margin-top: calc(var(--spacing-vertical) - var(--spacing-unit) * 2);
  }
  .graph_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: 700;
    text-align: center;
    background: #FFF;
    margin-top: calc(var(--spacing-unit) * 2);
    flex-basis: calc(50% - var(--spacing-unit));
    padding: var(--spacing-unit) calc(var(--spacing-unit) / 2);
    border-radius: 10px;
  }
  .graph_item.-col1 {
    flex-basis: 100%;
  }
  .graph_ttl,
  .graph_txt {
    font-size: var(--font-size-22);
    color: #0070bd;
  }
  .graph_ttl {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) / 2);
    min-height: 2.4em;
  }
  .graph_img {
    width: 100%;
    max-width: 280px;
    margin: auto;
  }
  .graph_item.-col1 .graph_img {
    max-width: 800px;
  }
  .graph_txtbox {
    margin-top: var(--spacing-unit-sm);
    flex: 1 0 auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .graph_txtbox p + p {
    margin-top: 1em;
  }

/* table
*****************************************/
  .recruit_tbl_wrap table {
    width: 100%;
    margin-top: var(--spacing-unit-lg);
  }
  .recruit_tbl_wrap table tr th {
    border: 1px solid #dadada;
    padding: 1rem 1rem;
    background-color: #fafafa;
  }
  .recruit_tbl_wrap table tr td {
    padding: 1rem 1rem;
    background-color: #fff;
  }
  .recruit_tbl_wrap table tr td:nth-child(1) {
    width: 17%;
    border: 1px solid #dadada;
  }
  .recruit_tbl_wrap table tr td:nth-child(2) {
    width: 20%;
    border: 1px solid #dadada;
  }
  .recruit_tbl_wrap table tr td:nth-child(3) {
    width: 60%;
    border: 1px solid #dadada;
  }


@media screen and (max-width: 767px) {
/* graph list
*****************************************/
  .graph_list {
    display: block;
  }
  .graph_item:nth-child(n + 2) {
    margin-top: var(--spacing-unit);
  }
}
8