.pageTtl {
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .pageTtl {
    margin-bottom: 40px;
  }
}

.secRecruit {
  padding: 0 0 209px;
  margin-bottom: 102px;
  background: url(../img/recruit/recruit_bg-sp.png) right bottom/100% no-repeat;
}
@media screen and (min-width: 768px) {
  .secRecruit {
    padding: 32px 0 0;
    margin-bottom: 66px;
    background: url(../img/recruit/recruit_bg-pc.png) right top -20px/100% no-repeat;
  }
}
@media screen and (min-width: 1024px) {
  .secRecruit {
    background-position: right top 80px;
  }
}
.secRecruit__txtBlk {
  width: 100%;
}
.secRecruit__txtBlk_ttl {
  margin: 0 0 24px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
.secRecruit__txtBlk p {
  line-height: 1.8;
}
.secRecruit__txtBlk p + p {
  margin-top: 1.8em;
}
@media screen and (min-width: 768px) {
  .secRecruit__txtBlk {
    max-width: 610px;
    margin-left: 45px;
  }
  .secRecruit__txtBlk_ttl {
    margin: 0 0 93px -45px;
    font-size: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .secRecruit__txtBlk {
    margin-left: 0;
  }
}

.secJobs__ttl {
  width: 100%;
  margin: 0 0 56px auto;
  text-align: right;
  position: relative;
}
.secJobs__ttl::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ff6900 50px, #ddd 50px);
  display: block;
  position: absolute;
  bottom: 11px;
  left: 0;
  transform: scale(0);
  transform-origin: right;
  transition: 1s;
}
.secJobs__ttl .en {
  color: #ff6900;
  font-size: 64px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}
.secJobs__ttl.on::before {
  transform: scale(1);
}
.secJobs__ttl.on .en {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .secJobs__ttl {
    width: 80%;
    max-width: 890px;
    margin-bottom: -5px;
  }
  .secJobs__ttl::before {
    bottom: 5px;
  }
  .secJobs__ttl .en {
    font-size: 120px;
    font-weight: 600;
    line-height: 72px;
  }
}
.secJobs__overviewBlk {
  width: 100%;
  padding-bottom: 96px;
}
.secJobs__overviewBlk_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.secJobs__overviewBlk_ttl::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FD903E;
  border-radius: 50%;
  display: block;
}
.secJobs__overviewBlk_txtWrap {
  width: 100%;
  max-width: 890px;
}
.secJobs__overviewBlk_table {
  width: 100%;
  margin-bottom: 30px;
}
.secJobs__overviewBlk_table th, .secJobs__overviewBlk_table td {
  display: block;
}
.secJobs__overviewBlk_table th {
  padding: 24px 16px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.secJobs__overviewBlk_table td {
  padding: 0 16px 24px;
  border-bottom: 1px solid #DDDDDD;
}
.secJobs__overviewBlk_table td p {
  line-height: 1.5;
}
.secJobs__overviewBlk_table td p + p {
  margin-top: 1.5em;
}
.secJobs__overviewBlk_boxWrap {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.secJobs__overviewBlk_box {
  width: 100%;
  padding: 24px 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.secJobs__overviewBlk_box_ttl {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}
.secJobs__overviewBlk_box_ttl .toggler {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  position: relative;
  cursor: pointer;
}
.secJobs__overviewBlk_box_ttl .toggler::before, .secJobs__overviewBlk_box_ttl .toggler::after {
  content: "";
  width: 14px;
  height: 2px;
  margin: auto;
  background-color: #ff6900;
  display: block;
  position: absolute;
  inset: 0;
  transition: 0.5s;
}
.secJobs__overviewBlk_box_ttl .toggler::after {
  transform: rotate(90deg);
}
.secJobs__overviewBlk_box_ttl.open {
  padding: 26px 0 23px;
}
.secJobs__overviewBlk_box_ttl.open .toggler::after {
  transform: rotate(0deg);
}
.secJobs__overviewBlk_box_txtWrap {
  max-height: 0;
  border-top: 1px solid #fff;
  transition: 0.5s;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.secJobs__overviewBlk_box_txtWrap.open {
  max-height: 10000px;
  padding: 24px 0 26px;
  opacity: 1;
  pointer-events: auto;
}
.secJobs__overviewBlk_box_txtWrap p {
  line-height: 1.8;
}
.secJobs__overviewBlk_box_txtWrap p + p {
  margin-top: 1.8em;
}
.secJobs__overviewBlk_entryBox {
  padding: 50px 32px;
  border: 2px solid #ff6900;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secJobs__overviewBlk_entryBox_ttl {
  margin-bottom: 18px;
  color: #ff6900;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}
.secJobs__overviewBlk_entryBox_btn {
  padding: 0 16px 0 30px;
}
@media screen and (min-width: 768px) {
  .secJobs__overviewBlk {
    padding-bottom: 143px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 20px;
  }
  .secJobs__overviewBlk_ttl {
    flex-shrink: 0;
  }
  .secJobs__overviewBlk_txtWrap {
    padding-top: 40px;
  }
  .secJobs__overviewBlk_table th, .secJobs__overviewBlk_table td {
    display: table-cell;
  }
  .secJobs__overviewBlk_table th {
    padding: 30px 0 25px 15px;
    border-bottom: 1px solid #DDDDDD;
    white-space: nowrap;
  }
  .secJobs__overviewBlk_table td {
    padding: 30px 0 25px 32px;
  }
  .secJobs__overviewBlk_table td p {
    line-height: 1.8;
  }
  .secJobs__overviewBlk_table td p + p {
    margin-top: 1.8em;
  }
  .secJobs__overviewBlk_boxWrap {
    margin-bottom: 70px;
  }
  .secJobs__overviewBlk_box {
    padding: 26px 60px 26px 38px;
  }
  .secJobs__overviewBlk_box_ttl .toggler {
    width: 48px;
    height: 48px;
  }
  .secJobs__overviewBlk_box_ttl.open {
    padding: 12px 0 15px;
  }
  .secJobs__overviewBlk_box_txtWrap.open {
    padding: 30px 0 33px;
  }
  .secJobs__overviewBlk_entryBox {
    padding: 50px 20px 65px;
  }
  .secJobs__overviewBlk_entryBox_ttl {
    margin-bottom: 18px;
  }
  .secJobs__overviewBlk_entryBox_btn {
    width: 453px;
    height: 70px;
    padding: 0 35px 0 40px;
    border-radius: 35px;
    font-size: 20px;
    letter-spacing: 0;
    justify-content: center;
    position: relative;
  }
  .secJobs__overviewBlk_entryBox_btn::after {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(6.8em, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .secJobs__overviewBlk_table th {
    padding: 30px 0 25px 35px;
  }
  .secJobs__overviewBlk_table td {
    padding: 30px 0 25px 62px;
  }
}

.secInterview {
  padding: 96px 0;
  background-color: #ff6900;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .secInterview {
    padding: 100px 0 140px;
  }
}
.secInterview__ttl {
  margin-bottom: 56px;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secInterview__ttl {
    margin-bottom: 70px;
    font-size: 120px;
    text-align: left;
  }
}
.secInterview__intWrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 20px;
}
@media screen and (min-width: 768px) {
  .secInterview__intWrap {
    max-width: 100%;
    margin: 0;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .secInterview__intWrap {
    grid-gap: 40px;
  }
}
.secInterview__intItem {
  width: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}
.secInterview__intItem_img {
  width: 100%;
  padding-top: 59.701%;
  border-radius: 10px 10px 0 0;
  position: relative;
  overflow: hidden;
}
.secInterview__intItem_txtWrap {
  width: 100%;
  padding: 24px 20px 18px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 10px 10px;
    flex-grow: 1;
}
.secInterview__intItem_txtWrap > p {
  font-weight: 700;
  line-height: 1.5;
}
.secInterview__intItem_txtWrap_footer {
  margin-top: 16px;
}
.secInterview__intItem_txtWrap_footer_name {
  margin-bottom: 9px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  grid-gap: 9px;
}
.secInterview__intItem_txtWrap_footer_name .en {
  font-size: 12px;
}
.secInterview__intItem_txtWrap_footer_his {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .secInterview__intItem_img {
    padding-top: 66.756%;
  }
  .secInterview__intItem_txtWrap {
    font-size: 14px;
  }
  .secInterview__intItem_txtWrap_footer {
    margin-top: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .secInterview__intItem_txtWrap {
    padding: 24px 24px 15px 30px;
    font-size: 16px;
  }
}