section .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

section.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 768px) {
  section.profile {
    height: clamp(300px, 55vw, 420px);
  }
}
section.profile h2 {
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  font-style: italic;
  filter: drop-shadow(1px 1px 2px #666);
}
@media screen and (max-width: 768px) {
  section.profile h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 500px) {
  section.profile h2 {
    font-size: 26px;
  }
}
section.profile p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  line-height: 1;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  section.profile p {
    font-size: 38px;
  }
}
@media screen and (max-width: 500px) {
  section.profile p {
    font-size: 24px;
  }
}
section.profile p span {
  display: inline-table;
  margin-bottom: -1px;
  border: 1px solid #000;
  border-collapse: collapse;
  background-color: #fff;
}
section.profile p span.yellow {
  background-color: #f5db4e;
}
section.profile p span:nth-of-type(1) {
  margin-left: 0.7em;
}
section.profile p span:nth-of-type(2) {
  margin-left: 1.7em;
}
section.profile p span:nth-of-type(3) {
  margin-left: 2.7em;
}
section.profile p span i {
  --space: 18px;
  display: table-cell;
  max-width: calc(1em + var(--space) * 2);
  min-width: calc(1em + var(--space) * 2);
  padding: var(--space);
  border: 1px solid #000;
  font-weight: 600;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  section.profile p span i {
    --space: 12px;
  }
}
@media screen and (max-width: 500px) {
  section.profile p span i {
    --space: 8px;
  }
}

section.interview {
  padding: 100px 0 150px;
  background: url(/recruit/common/img/lead_bg.gif) repeat center center;
}
@media screen and (max-width: 768px) {
  section.interview {
    padding: 78px 0 100px;
  }
}
section.interview .inner {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media screen and (max-width: 768px) {
  section.interview .inner {
    gap: 48px 0;
  }
}
section.interview .cntWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.interview .cntWrap {
    flex-direction: column-reverse;
    gap: 34px 0;
  }
}
@media screen and (min-width: 769px) {
  section.interview .cntWrap figure {
    max-width: 520px;
    width: 45%;
    position: sticky;
    top: 110px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  section.interview .cntWrap figure {
    width: 100%;
  }
}
section.interview .cntWrap ul {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media screen and (min-width: 769px) {
  section.interview .cntWrap ul {
    max-width: 600px;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  section.interview .cntWrap ul {
    gap: 36px 0;
    width: 100%;
  }
}
section.interview .cntWrap ul li p.ttl {
  font-weight: bold;
}
section.interview .cntWrap ul li dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.interview .cntWrap ul li dl dt,
section.interview .cntWrap ul li dl dd {
  border: 2px solid #000;
}
section.interview .cntWrap ul li dl dt {
  padding: 15px 20px;
  background-color: #ebebeb;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.interview .cntWrap ul li dl dt {
    padding: 12px 16px;
  }
}
section.interview .cntWrap ul li dl dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px 0;
  margin-top: -2px;
  padding: 30px 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  section.interview .cntWrap ul li dl dd {
    gap: 16px 0;
    padding: 18px 22px;
  }
}
section.interview .cntWrap ul li dl dd p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  section.interview .cntWrap ul li dl dd p {
    line-height: 1.8;
  }
}

section.message {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  section.message {
    margin-bottom: 78px;
  }
}
section.message .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.message h2,
section.message p {
  border: 2px solid #000;
}
section.message h2 {
  padding: 15px 20px;
  background-color: var(--bc-yellow);
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.message h2 {
    padding: 12px 16px;
  }
}
section.message p {
  max-width: 60%;
  margin-top: -2px;
  padding: 30px 40px;
  background-color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  section.message p {
    padding: 18px 22px;
    line-height: 1.8;
  }
}

section.others {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  section.others {
    margin-bottom: 120px;
  }
}
section.others hgroup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section.others hgroup {
    margin-bottom: 28px;
  }
}
section.others hgroup p {
  font-weight: bold;
}
section.others hgroup h2 {
  border-bottom: 2px solid #000;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.others hgroup h2 {
    font-size: 26px;
  }
}
section.others .cntWrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section.others .cntWrap {
    flex-direction: column;
    align-items: center;
  }
}
section.others .cntWrap a.cntBox {
  max-width: 380px;
  width: 32%;
}
@media screen and (max-width: 768px) {
  section.others .cntWrap a.cntBox {
    max-width: 600px;
    width: 100%;
    aspect-ratio: 6/5;
  }
}
section.others .cntWrap a.cntBox figure {
  position: relative;
}
@media screen and (max-width: 768px) {
  section.others .cntWrap a.cntBox figure {
    height: 100%;
  }
  section.others .cntWrap a.cntBox figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}
section.others .cntWrap a.cntBox figure figcaption {
  padding: 25px;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  section.others .cntWrap a.cntBox figure figcaption {
    padding: 16px;
  }
}
section.others .cntWrap a.cntBox figure figcaption em {
  font-size: 20px;
}
/*# sourceMappingURL=style.css.map */
