@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;
}

#interview {
  margin-top: 40px;
}
#interview .block-article--head {
  display: flex;
}
@media only screen and (max-width: 767px) {
  #interview .block-article--head {
    flex-direction: column;
  }
}
#interview .block-article--head .block-image {
  position: relative;
  width: 50.2%;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #interview .block-article--head .block-image {
    width: 100%;
  }
}
#interview .block-article--head .block-image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.5) 80%, rgb(255, 255, 255) 100%);
}
@media only screen and (max-width: 767px) {
  #interview .block-article--head .block-image:after {
    display: none;
  }
}
#interview .block-article--head .block-image img {
  max-width: none;
}
@media only screen and (max-width: 999.9px) {
  #interview .block-article--head .block-image img {
    transform: translateX(-4vw);
  }
}
@media only screen and (max-width: 767px) {
  #interview .block-article--head .block-image img {
    max-width: 100%;
    transform: none;
  }
}
#interview .block-article--head .block-text {
  flex-shrink: 0;
  flex: 1;
}
#interview .block-article--head .block-text--inner {
  display: flex;
  max-width: 515px;
  height: 100%;
  margin-inline: auto;
  flex-direction: column;
  justify-content: space-around;
}
@media only screen and (max-width: 999.9px) {
  #interview .block-article--head .block-text--inner {
    padding-inline: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #interview .block-article--head .block-text--inner {
    padding-inline: 0;
  }
}
#interview .block-article--title {
  color: var(--orange);
  font-size: min(171.4285714286%, 8.5714285714vw);
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (max-width: 999.9px) {
  #interview .block-article--title {
    font-size: min(133.3333333333%, 6.6666666667vw);
  }
}
@media only screen and (max-width: 767px) {
  #interview .block-article--title {
    margin-top: 15px;
  }
}
#interview .block-article--profile {
  font-size: min(85.7142857143%, 4.2857142857vw);
}
@media only screen and (max-width: 767px) {
  #interview .block-article--profile {
    margin-block: 10px 15px;
  }
}
#interview .block-accordion--trigger {
  display: flex;
  position: relative;
  width: 315px;
  height: 60px;
  padding-right: 20px;
  color: #fff;
  font-size: min(95.2380952381%, 4.7619047619vw);
  font-weight: bold;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  border-radius: 30px;
  background: var(--orange);
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  #interview .block-accordion--trigger {
    margin-inline: auto;
  }
}
#interview .block-accordion--trigger:before, #interview .block-accordion--trigger:after {
  content: "";
  position: absolute;
  top: 50%;
  aspect-ratio: 1/1;
}
#interview .block-accordion--trigger:before {
  width: 16px;
  right: 20px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}
#interview .block-accordion--trigger:after {
  width: 6px;
  right: 24px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-60%) rotate(45deg);
}
#interview .block-accordion--trigger[aria-expanded=true]:after {
  transform: translateY(-30%) rotate(225deg);
}
#interview .block-accordion--trigger:hover {
  opacity: 0.7;
}
#interview .block-accordion--content.is_open {
  padding-bottom: 70px;
}
#interview .block-article--row {
  display: flex;
  margin-top: 40px;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  #interview .block-article--row {
    flex-direction: column;
  }
}
#interview .block-article--col h4 {
  color: var(--orange);
  font-size: min(152.380952381%, 7.619047619vw);
  font-weight: bold;
}
@media only screen and (max-width: 999.9px) {
  #interview .block-article--col h4 {
    font-size: min(133.3333333333%, 6.6666666667vw);
  }
}
#interview .block-article--col h4 small {
  display: block;
}
#interview .block-article--col p {
  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  #interview .block-article--col:not(:has(.block-image)) {
    order: 0;
  }
}
#interview .block-article--col:has(.block-image) {
  width: 30.75%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #interview .block-article--col:has(.block-image) {
    width: 100%;
    order: 1;
  }
}

#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%;
  }
}