@media only screen and (min-width: 768px) {
  .block-branding {
    background: url(/images/action/bg_branding.jpg);
    background-image: image-set(url(/images/action/bg_branding.jpg) 1x, url(/images/action/bg_branding@2x.jpg) 2x);
    background-image: -webkit-image-set(url(/images/action/bg_branding.jpg) 1x, url(/images/action/bg_branding@2x.jpg) 2x);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /*
    background      : url(/images/action/bg_branding.jpg);
    background-repeat: $repeat;
    background-position: $posX $posY;
    */
  }
}
@media only screen and (max-width: 767px) {
  .block-branding:before {
    background-image: url("/images/action/bg_branding_sp.jpg");
  }
}

#abilympic .block-flex {
  margin-top: 30px;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  #abilympic .block-flex {
    flex-direction: column;
  }
}
#abilympic .block-flex li {
  width: calc((100% - 40px) / 3);
}
@media only screen and (max-width: 767px) {
  #abilympic .block-flex li {
    width: 100%;
  }
}
#abilympic .block-table thead tr:nth-child(2) th {
  width: 7em;
}
#abilympic .block-table tbody tr:nth-child(n+2):has(th) {
  border-top: 1.5px solid var(--gray);
}
#abilympic .block-table tbody td {
  text-align: center;
}

#social .block-table tbody td,
#qualification .block-table tbody td {
  text-align: center;
}

#award .block-table tbody th {
  width: 150px;
}

#development .block-flex {
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  #development .block-flex {
    flex-direction: column;
  }
}
#development .block-flex--item:last-child {
  width: 41.6%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #development .block-flex--item:last-child {
    width: 100%;
  }
}