span.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.header {
  position: absolute;
}
.navbar__logo {
  background-color: rgb(255 255 255 / .6);
  padding: .5rem 1rem;
}

.pageArticle {
  position: relative;
}
.pageRecruit {
  .pageMv {
    position: relative;
    padding-top: 0;
    min-height: 340px;
  }
  .pageMv__img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
  }
  .pageMv__container {
    position: absolute;
    left: 5.56%;
    top: 56%;
    transform: translateY(-50%);
  }
  .breadcrumb__item, .breadcrumb__link {
    color: var(--colorWhite);
  }
  .pageMv__titles {
    margin-top: 2.22vw;
  }
  .pageMv__title-en {
    color: var(--colorWhite);
  }
  .pageMv__text-jp {
    color: var(--colorWhite);
    margin-top: 1.11vw;
  }
}

.pageRecruit__mv-text {
  color: var(--colorWhite);
  font-size: clamp(1.125rem, 0.817rem + 1.31vw, 2rem);
  font-weight: 700;
  margin-top: 3.89vw;
}

@media screen and (max-width: 768px) {
  .pageMv__titles {
    margin-top: 2rem;
  }
  .pageMv__title-en {
  }
  .pageMv__text-jp {
    margin-top: 1rem;
  }
  .pageRecruit__mv-text {
    margin-top: 3.5rem;
  }
}

.anchorLinks {
  background-color: rgb(229 229 229 / .6);
  backdrop-filter: blur(8px);
  margin: 0.5rem;
  border-radius: 4px;
  position: sticky;
  top: 0.5rem;
  z-index: calc(var(--indexHeader) - 2);
}
.anchorLinks__container {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  overflow-x: auto;
}
.anchorLink {
  display: inline-block;
  white-space: nowrap;
  font-size: 1rem;
  padding-block: 1em;
  position: relative;
  padding-right: calc(1rem + 0.25rem);
}
.anchorLink::before {
  content: "";
  background-color: var(--colorBlack);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: opacity .3s, transform .3s;
}
.anchorLink::after {
  content: "";
  background: url(../../images/recruit/icon-arrow-down--gray.svg) no-repeat center center / contain;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.SectionLead__text-jp.en {
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
}

@media (hover:hover) {
  .anchorLink:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  .anchorLink:hover::after {
    background-image: url(../../images/recruit/icon-arrow-down--white.svg);
  }
}
.anchorLink:focus-visible:before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.anchorLink:focus-visible::after {
  background-image: url(../../images/recruit/icon-arrow-down--white.svg);
}
@media screen and (max-width: 768px) {
  .anchorLinks__container {
    justify-content: flex-start;
    gap: 1rem;
  }
}
/* ================== */
/* メッセージセクション */
/* ================== */
.message {
  padding-block: 11.5rem 0;
  text-align: center;
  position: relative;
}
.message__lead-title {
  font-weight: 700;
  font-size: clamp(1.375rem, 1.155rem + 0.94vw, 2rem);
  line-height: calc(54 / 32);
}
.message__texts {
  max-width: 100%;
  width: 599px;
  margin: 2rem auto 0;
}
.message__texts > p {
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-weight: 600;
  line-height: calc(48 / 20);
}
.message__texts > p + p {
  margin-top: 2.5em;
}

.message__bg-svg {
  margin-top: -8vw;
  position: relative;
  z-index: -1;

  .item {
    position: absolute;
  }
  .item-1 {
    width: 5vw;
    top: 2.5vw;
    left: 5vw;
    z-index: var(--indexRingTop);
  }
}
.message__bg {
  width: 15.83vw;
  aspect-ratio: 228 / 290;
  position: absolute;
  top: 14rem;
  right: 0;
  z-index: -1;
  
  .item {
    position: absolute;
  }
  .item-2 {
    width: 3.5vw;
    top: 0;
    left: 1.5vw;
  }
  .item-3 {
    width: 1.2vw;
    top: 4vw;
    left: 0.5vw;
  }
  .item-4-bottom {
    width: 15.8vw;
    bottom: 2px;
    right: 0;
  }
  .item-4-top {
    width: 15.8vw;
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .message {
    padding-block: 3.5rem;
  }
  .message__texts > p + p {
    margin-top: 1em;
  }
}
/* ================== */
/* aboutus セクション */
/* ================== */
.aboutus{
  padding-block: 0 5rem;
}
.aboutus__container {
  max-width: 1061px;
}
.aboutus__lead-text {
  line-height: 2;
  margin-top: 1.5rem;
}
.aboutus__contents {
  margin-top: 3.5rem;
}
.aboutus__tabs {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
  margin-bottom: -1px;
}
.aboutus__tab {
  background-color: var(--textRed-2);
  color: var(--colorWhite);
  line-height: 1;
  font-size: 1rem;
  padding: 1em 2em;
  border-top: 1px solid var(--textRed-2);
  border-right: 1px solid var(--textRed-2);
  border-left: 1px solid var(--textRed-2);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: all .3s;
}
.aboutus__tab.is-active {
  background-color: var(--colorWhite);
  color: var(--textRed-2);
}
.aboutus__tabContent {
  padding: 2.7rem;
  border: 1px solid var(--textRed-2);
  display: none;
}
.aboutus__tabContent.is-active {
  display: block;
}

@media (hover: hover) {
  .aboutus__tab:hover {
    background-color: var(--colorWhite);
    color: var(--textRed-2);
  }
}

@media screen and (max-width: 768px) {
  .aboutus{
    padding-block: 2.5rem;
  }
  .aboutus__tab {
    font-size: 0.875rem;
    padding: 1em 1.5em;
  }
  .aboutus__tabContent {
    padding: 1rem;
  }
}

/* ================== */
/* インタビューセクション */
/* ================== */
.interview {
  padding-block: 5rem;

  .knowlege__contents {
    margin-top: 3rem;
  }
  .knowlege__button {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .interview {
    padding-block: 2.5rem;
  }
  
}

/* ================== */
/* Q&Aセクション */
/* ================== */
.question .SectionLead__text-jp {
  flex: 0 1 7.1875rem;
}
.question {
  padding-bottom: 5rem;

  .faqList__question,
  .faq__answer {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }
}
.service__lists {
  max-width: 954px;
}
.question__container {
  display: flex;
  gap: 2.5rem;
}
.question_q {
  display: inline-block;
  font-size: 1.25rem;
  background: linear-gradient(244deg, #E7211A 46.97%, #FFA530 95.68%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.question_a {
  display: inline-block;
  font-size: 1.25rem;
}
.bg-object-a {
  margin-top: -6rem;
}
@media screen and (max-width: 768px) {
  .bg-object-a {
    margin-top: 0;
  }
  .service__lists {
    margin-left: 0;
  }
  .question {
    padding-bottom: 2.5rem;
  }
  .question__container {
    display: block;
  }
}

/* ================== */
/* ENTRYセクション */
/* ================== */
.entry {
  padding-block: 0 16rem;
}
.entry__container {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.entry__tags {
  display: flex;
  flex-direction: column;
  flex: 0 1 7.1875rem;
}
.entry__tag {
  border: none;
  background-color: inherit;
  display: inline-block;
  font-family: var(--familyNotoSans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 1em 0 1em 1em;
  width: fit-content;
  position: relative;
  transition: color .3s;
  white-space: nowrap;
}
.entry__tag::before {
  content: "";
  background-color: #A6A6A6;
  width: 0.3125rem;
  height: 0.3125rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all .3s;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.entry__tag.is-active {
  color: var(--textRed-2);
  &::before {
    background-color: var(--textRed);
    width: 0.375rem;
    height: 0.375rem;
  }
}
@media (hover:hover) {
  .entry__tag:hover {
    color: var(--textRed);
    cursor: pointer;
  }
  .entry__tag:hover::before {
    background-color: var(--textRed);
    width: 0.375rem;
    height: 0.375rem;
  }
}
.entry__tag:focus-visible {
  color: var(--textRed);
  cursor: pointer;
}
.entry__tag:focus-visible::before {
  background-color: var(--textRed);
  width: 0.375rem;
  height: 0.375rem;
}

.entry__job-lead {
  background-color: #F7F7F7;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  margin-top: 16px;
}
.entry__job-lead-en {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--colorBlack-3);
}
.entry__job-lead-ja {
  display: block;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: calc(40 / 22);
}

.entry__content-wrapper + .entry__content-wrapper {
  margin-top: 4rem;
}
.entry__content-wrapper.business .entry__jobLists {
  grid-template-columns: 1fr 1fr 1fr;
}
.js-entry__tabContent {
  display: none;
}
.js-entry__tabContent.is-active {
  display: block;
}

.entry__jobLists {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0;
  column-gap: 2.5rem;
}
.jobList {
  display: block;
  padding-block: 1em;
  border-bottom: 1px solid var(--colorBlack);
  transition: color .3s, border-color .3s;
}
.jobList__tag {
  position: relative;
  padding-right: calc(1.5rem + 2rem);
  line-height: 2;
  font-size: 1rem;
}

.jobList__icon {
  display: inline-block;
  background-color: var(--linkBlue);
  border: 1px solid var(--linkBlue);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 2;
}
/* hover時の白背景 */
.jobList__icon::before {
  background: #fff;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 300%;
  height: 300%;
  z-index: -1;
  transform: rotate(-45deg) translate(50%, 120%);
  transform-origin: right bottom;
  transition: transform .7s ease;
}
.jobList__icon svg {
  color: var(--colorWhite);
  width: 0.75rem;
  height: 0.75rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
}
.jobList__icon svg path {
  stroke: var(--colorWhite);
  transition: all .6s;
}
.no-jobList__text {
  margin-top: 2.5rem;
}
@media (hover: hover) {
  a.jobList:hover {
    color: var(--linkBlue);
    border-color: var(--linkBlue);
    background-color: var(--colorWhite);
  }
  /* ホバー用 white */
  a.jobList:hover .jobList__icon::before {
    transform: rotate(-45deg) translate(50%, 10%);
  }
  a.jobList:hover .jobList__icon svg path {
    stroke: var(--linkBlue);
  }
}
a.jobList:focus-visible {
  color: var(--linkBlue);
  border-color: var(--linkBlue);
  background-color: var(--colorWhite);
}
/* ホバー用 white */
a.jobList:focus-visible .jobList__icon::before {
  transform: rotate(-45deg) translate(50%, 10%);
}
a.jobList:focus-visible .jobList__icon svg path {
  stroke: var(--linkBlue);
}

@media screen and (max-width: 1080px) {
  .entry__content-wrapper.business .entry__jobLists {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .entry {
    padding-bottom: 8rem;
  }
  .entry__container {
    display: grid;
    gap: 0;
  }
  .entry__tags {
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .entry__tag {
    white-space: nowrap;
    padding: 0 0 0 0.8125rem;
  }
  .entry__jobLists,
  .entry__content-wrapper.business .entry__jobLists {
    grid-template-columns: 1fr;
  }
  .jobList__tag {
    padding-right: calc(0.5rem + 2rem);
  }
  .entry__job-lead {
    margin-top: 0;
    padding: 1.5rem;
  }
}