@font-face {
  font-family: 'Oswald';
  src: url('../../../../../../assets/font/Oswald-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --font-accent: 'din-condensed', 'Oswald', sans-serif;
}
/* ---------------------------
  base
----------------------------*/
html {
  box-sizing: border-box;
  height: 100%;
  scrollbar-gutter: stable;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  height: 100%;
  font-family: hiragino-kaku-gothic-pron, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS P Gothic', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: 600;
}
input,
textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
}

/* ---------------------------
  header
----------------------------*/
body {
  padding-top: 60px; /* header分の余白 */
}
.l-header {
  width: 100%;
  min-height: 60px;
  background-color: #fafafa;
  background-image: url('../../../../../../assets/images/recruit/bg_header_sp.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.l-headerContainer {
  width: 1080px;
  max-width: 92%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-headerLogo {
  width: 164px;
}
.l-headerLogo a,
.l-headerLogo img {
  display: block;
}
.l-headerLogo a {
  transition: 0.3s all ease-in-out;
}
.l-headerNavWrapper {
  display: none;
  position: fixed;
  inset: 60px 0 auto;
  width: 100%;
  z-index: 5;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
/* メニューが開いている時の背景スクロール制御 */
body.is-menuOpen {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
/* メニューが開いている時にメニューを表示 */
body.is-menuOpen .l-headerNavWrapper {
  display: block;
}
.l-headerNav {
  background-color: #F6FCF4;
}
.l-headerMenu {
  list-style: none;
  max-width: 375px;
  margin-inline: auto;
}
@media (hover: hover) {
  .l-headerLogo a:hover {
    opacity: 0.6;
  }
}

/* スクロールバーのスタイル */
.l-headerNavWrapper::-webkit-scrollbar {
  width: 6px;
}
.l-headerNavWrapper::-webkit-scrollbar-track {
  background: transparent;
}
.l-headerNavWrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.l-headerNavWrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.l-headerMenuText {
  color: inherit;
  width: 100%;
  height: 90px;
  padding-inline: 72px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.l-headerMenuText.--person {
  display: none;
}
.l-headerMenuText.--link::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('../../../../../../assets/images/recruit/icon_arrow_right_gray.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 30px;
  translate: 0 -50%;
}
.l-headerMenuText.--toggle {
  background-color: transparent;
  border: none;
  appearance: none;
}
.l-headerMenuText.--toggle::before,
.l-headerMenuText.--toggle::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: #626262;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s all ease-in-out;
}
.l-headerMenuText.--toggle::before {
  right: 43px;
}
.l-headerMenuText.--toggle::after {
  rotate: 90deg;
  right: 43px;
}
.l-headerMenuText.--toggle.is-active::after {
  rotate: 0deg;
}
.l-headerMenuText [lang="en"] {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 36px;
}
.l-headerMenuText [lang="ja"] {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}
.l-headerPostList {
  list-style: none;
  display: none;
}
.l-headerMenuText.--small {
  padding-left: 95px;
  height: 70px;
}
.l-headerMenuText.--small [lang="en"] {
  font-size: 30px;
}
.l-headerMenuText.--external {
  line-height: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.l-headerMenuText.--external [lang="en"] {
  font-size: 28px;
}
.l-headerMenuText.--external::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('../../../../../../assets/images/recruit/icon_external_gray.svg');
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 30px;
  translate: 0 -50%;
}
@media (hover:hover) {
  .l-headerMenuText:hover {
    opacity: 0.6;
  }
}
.l-headerActions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  right: calc(((100% - 92%) / 2 + -4px) * -1); /* コンテナの右余白分を右にずらし、位置を微調整 */
}
.l-headerMenuButton {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  appearance: none;
  position: relative;
}
.l-headerMenuButton__line {
  display: inline-block;
  width: 21px;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.l-headerMenuButton__line::before,
.l-headerMenuButton__line::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 3px;
  position: absolute;
  left: 0;
}
.l-headerMenuButton__line::before {
  top: -8px;
}
.l-headerMenuButton__line::after {
  top: 8px;
}
.l-headerMenuButton.is-active .l-headerMenuButton__line {
  background-color: transparent;
}
.l-headerMenuButton.is-active .l-headerMenuButton__line::before,
.l-headerMenuButton.is-active .l-headerMenuButton__line::after {
  top: 50%;
  translate: 0 -50%;
}
.l-headerMenuButton.is-active .l-headerMenuButton__line::before {
  rotate: -45deg;
}
.l-headerMenuButton.is-active .l-headerMenuButton__line::after {
  rotate: 45deg;
}
.l-headerEntryButton {
  font-size: 18px;
  font-family: var(--font-accent);
  font-weight: 400;
  text-transform: uppercase;
  width: 105px;
  height: 32px;
  padding-left: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #000;
  transition: 0.3s all ease-in-out;
}
.l-headerEntryButton[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url('../../../../../../assets/images/recruit/icon_external_black.svg');
  background-size: contain;
  background-position: center;
}
.l-headerCorpLink {
  display: none;
  transition: 0.3s all ease-in-out;
}
.l-headerCorpLink::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url('../../../../../../assets/images/recruit/icon_external_black.svg');
  background-size: contain;
  background-position: center;
}
@media (hover: hover) {
  .l-headerEntryButton:hover,
  .l-headerCorpLink:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1120px) {
  .l-headerLogo {
    width: 210px;
  }
}
@media screen and (min-width: 1120px) {
  .l-header {
    background-image: url('../../../../../../assets/images/recruit/bg_header_pc.png');
  }
  .l-headerNavWrapper {
    display: block;
    position: static;
    width: auto;
    max-height: 100%;
  }
  /* PCサイズではメニューオープン状態を無効化 */
  body.is-menuOpen {
    overflow: auto;
    position: static;
    width: auto;
    height: auto;
  }
  .l-headerNav {
    background-color: transparent;
  }
  .l-headerMenu {
    max-width: inherit;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .l-headerMenuItem.--corp {
    display: none;
  }
  .l-headerMenuText {
    width: auto;
    height: auto;
    padding-inline: 0;
    gap: 10px;
  }
  .l-headerMenuText [lang="en"] {
    font-size: 24px;
  }
  .l-headerMenuText [lang="ja"] {
    font-size: 12px;
  }
  .l-headerMenuText.--link::after {
    display: none;
  }
  .l-headerMenuText.--person {
    display: block;
  }
  .l-headerMenuText.--toggle,
  .l-headerPostList {
    display: none!important;
  }
  .l-headerRightContents {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .l-headerActions {
    position: static;
    gap: 40px;
  }
  .l-headerMenuButton {
    display: none;
  }
  .l-headerCorpLink {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 20px;
  }
}

/* footer */
.l-footer {
  padding-inline: 20px;
  background-image: url('../../../../../../assets/images/recruit/bg_footer_sp.png');
  background-size: cover;
  background-position: top center;
}
.l-footerUpper {
  padding-block: 30px 38px;
  border-bottom: 1px solid #707070;
}
.l-footerPolicyList {
  font-size: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}
.l-footerPolicyList a {
  display: inline-flex;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
.l-footerPolicyList a[target="_blank"]::after {
  content: '';
  width: 2em;
  height: 2em;
  display: inline-block;
  background-image: url('../../../../../../assets/images/recruit/icon_external_black.svg');
  background-size: contain;
  background-position: center;
}
.l-footerLogo {
  width: 140px;
  margin-top: 40px;
  margin-inline: auto;
}
.l-footerLogo a {
  transition: 0.3s all ease-in-out;
}
.l-footerBottom {
  padding-block: 24px 40px;
}
.l-footerGroupContainer {
  display: grid;
  gap: 30px;
}
.l-footerGroupTitle {
  display: grid;
}
.l-footerGroupTitle [lang="en"] {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 28px;
}
.l-footerGroupTitle [lang="ja"] {
  font-size: 12px;
  font-weight: 600;
}
.l-footerGroupListWrapper {
  display: grid;
  gap: 35px;
}
.l-footerGroupList {
  list-style: none;
  font-size: 12px;
  line-height: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 8px;
}
.l-footerGroupList a {
  transition: 0.3s all ease-in-out;
}
.l-footerGroupList a[target="_blank"] {
  display: inline-flex;
  align-items: center;
}
.l-footerGroupList a[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 2em;
  height: 2em;
  background-image: url('../../../../../../assets/images/recruit/icon_external_black.svg');
  background-size: contain;
  background-position: center;
  margin-left: -4px;
}
.l-footerGroupListTitle {
  font-size: 12px;
  line-height: 2;
  margin-bottom: 10px;
}
.l-footerCopyright {
  text-align: center;
  margin-top: 50px;
}
.l-footerCopyright small {
  font-size: 10px;
}
@media (hover: hover) {
  .l-footerPolicyList a:hover,
  .l-footerLogo a:hover,
  .l-footerGroupList a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px) {
  .l-footerUpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 72px 80px;
  }
  .l-footerLogo {
    margin-inline: 0;
    margin-top: 0;
  }
  .l-footerGroupList { 
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .l-footer {
    background-image: url('../../../../../../assets/images/recruit/bg_footer_pc.png');
    padding-inline: 0;
  }
  .l-footerUpper,
  .l-footerBottom {
    max-width: 990px;
    margin-inline: auto;
  }
  .l-footerGroupTitle [lang="en"] {
    font-size: 24px;
  }
  .l-footerGroupContainer {
    align-items: flex-start;
    grid-template-columns: 250px 1fr;
    gap: 0;
  }
  .l-footerGroupList { 
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------------------
  common
----------------------------*/
.l-topContents {
  padding-block: 32px;
}
.page-template-page-recruit-company .l-main,
.post-type-archive .l-main,
.l-recruitment {
  padding-top: 50px;
}
.single-person .l-main {
  background-color: #F5F4F0;
}
/* memo: 背景設定／スマホ詳細ページでは表示しない */
.p-bgColor {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url('../../../../../../assets/images/recruit/bg_sp.jpg');
  background-size: cover;
  background-position: center;
  position: fixed;
  inset: 0;
  z-index: -2;
}
/* page-recruit専用のアニメーション用クラス */
.js-bgColor {
  opacity: 0 !important;
  transition: opacity 0.5s ease-in-out;
}
.js-bgColor.is-active {
  opacity: 1 !important;
}
.p-bgBlur {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  inset: 0;
  z-index: -1;
}
.p-bgBlur.is-light {
  background-color: rgba(255, 255, 255, 0.4);
}
/* page-recruit専用のブラーアニメーション用クラス */
.js-bgBlur {
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background-color: rgba(255, 255, 255, 0);
}
.js-bgBlur.is-active {
  background-color: rgba(255, 255, 255, 0.7);
}
.l-recruitment .p-bgBlur {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-topContents {
    padding-block: 126px;
  }
  .single-person .l-main {
    background-color: transparent;
  }
  .single-person .p-bgBlur {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.7);
  }
  .l-recruitment .p-bgBlur {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.4);
  }
}
@media screen and (min-width: 1024px) {
  .p-bgColor {
    background-image: url('../../../../../../assets/images/recruit/bg_pc.jpg');
  }
}
.l-container {
  max-width: 92%;
  width: 990px;
  margin-inline: auto;
}
.l-container.--xsmall {
  width: 680px;
}
.l-headingPrimary {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.l-headingPrimary__en {
  font-size: 40px;
  font-family: var(--font-accent);
  font-weight: 400;
}
.l-headingPrimary__ja {
  font-size: 12px;
  font-weight: 600;
  padding-inline: 10px;
  display: inline-block;
  position: relative;
}
.l-headingPrimary__ja::before,
.l-headingPrimary__ja::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}
.l-headingPrimary__ja::before {
  left: 0;
  translate: -100% -50%;
}
.l-headingPrimary__ja::after {
  right: 0;
  translate: 100% -50%;
}
@media screen and (min-width: 768px) {
  .l-headingPrimary__en {
    font-size: 50px;
  }
  .l-headingPrimary__ja {
    font-size: 16px;
  }
}

/* ---------------------------
  components
----------------------------*/
/* person card */
.c-personCard {
  padding-top: 24px;
  display: block;
  position: relative;
  transition: 0.3s all ease-in-out;
}
.c-personCard:not(.--hasButton):hover {
  opacity: 0.8;
}
.c-personCardThumbnail {
  margin-bottom: 8px;
}
.c-personCardThumbnail.--hasTitle {
  position: relative;
  padding-bottom: 10px;
}
.c-personCardThumbnail__link {
  transition: 0.3s all ease-in-out;
}
.c-personCardThumbnail__title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  max-width: 80%;
  display: inline-block;
  padding: 16px;
  line-height: 1.375;
  background-color: rgb(0 0 0 / 50%);
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 1;
}
.c-personCardThumbnail__image {
  width: 100%;
  height: 0;
  padding-bottom: 54.29%; /* 190/350 */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.c-personCardThumbnail__image.--small {
  padding-bottom: 56%;
}
.c-personCardThumbnail__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.c-personCard__name {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1em;
}
.c-personCard__join {
  font-size: 12px;
  font-weight: 600;
}
.c-personCard__join.--center {
  text-align: center;
}
.c-personCard__summary {
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  margin-top: 1em;
}
.c-personCardDetails {
  width: 81.33%;
  padding: 8px 0 8px 16px;
  margin-inline: auto;
  margin-top: 8px;
  border-left: 1px solid #707070;
}
.c-personCardAction {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .c-personCard.--pcRow {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    gap: 30px;
  }
  .p-personItem:nth-child(even) .c-personCard.--pcRow {
    grid-template-columns: 1fr 350px ;
  }
  .p-personItem:nth-child(even) .c-personCard.--pcRow .c-personCardThumbnail {
    order: 1;
  }
  .c-personCard.--pcRow .c-personCardThumbnail {
    margin-bottom: 0;
  }
  .c-personCard.--pcRow .c-personCard__name {
    justify-content: flex-start;
  }
  .c-personCard.--pcRow .c-personCardDetails {
    margin-inline: 0;
  }
  .c-personCard.--pcRow .c-personCardAction {
    text-align: left;
  }
  .c-personCard__name {
    font-size: 16px;
  }
  .c-personCardDetails {
    width: 100%;
    margin-top: 20px;
  }
  .c-personCard__join,
  .c-personCard__summary {
    font-size: 14px;
    line-height: 1.714;
  }
  .c-personCardThumbnail {
    margin-bottom: 14px;
  }
  .c-personCardThumbnail__image,
  .c-personCardThumbnail__image.--small {
    padding-bottom: 100%;
  }
}

/* button */
.c-button {
  color: inherit;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 28px;
  display: inline-block;
  width: 240px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 35px;
  transition: 0.3s all ease-in-out;
}
@media (hover: hover) {
  .c-personCardThumbnail__link:hover,
  .c-button:hover {
    opacity: 0.6;
  }
}

.c-recruitmentButton {
  width: 100%;
  max-width: 450px;
  height: 140px;
  margin-inline: auto;
  padding-inline: 1em;
  background-image: url('../../../../../../assets/images/recruit/bg_link_recruitment_large.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid #707070;
  box-shadow: 6px 6px 0 #D6D6D6;
  position: relative;
  overflow: hidden;
}
.c-recruitmentButton::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  inset: 0;
  transition: 0.3s all ease-in-out;
}
.c-recruitmentButton:hover::before {
  opacity: 0;
}
.c-recruitmentButton [lang="en"] {
  font-size: 40px;
  font-family: var(--font-accent);
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.c-recruitmentButton [lang="ja"] {
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  z-index: 1;
}
.c-recruitmentButton [lang="ja"]::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .c-recruitmentButton {
    gap: 36px;
  }
}

/* page list */
.c-recruitPageList {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}
.c-recruitPageListLink {
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #707070;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.c-recruitPageListLink::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}
.c-recruitPageListLink > * {
  position: relative;
  z-index: 2;
}
.c-recruitPageListLink.--person {
  background-image: url('../../../../../../assets/images/recruit/bg_link_person.png');
}
.c-recruitPageListLink.--person::before {
  background-color: #F6FFEF;
}
.c-recruitPageListLink.--company {
  background-image: url('../../../../../../assets/images/recruit/bg_link_company.png');
}
.c-recruitPageListLink.--company::before {
  background-color: #F5F7FF;
}
.c-recruitPageListLink.--recruitment {
  background-image: url('../../../../../../assets/images/recruit/bg_link_recruitment.png');
}
.c-recruitPageListLink.--recruitment::before {
  background-color: #FFF9F7;
}
.c-recruitPageListLink:hover {
  border: none;
}
.c-recruitPageListLink:hover::before {
  opacity: 0;
}
.c-recruitPageListItemEn {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
}
.c-recruitPageListItemJa {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-recruitPageList {
    margin-top: 120px;
  }
}

/* breadcrumbs */
.p-breadcrumbs {
  margin-top: 40px;
  padding-bottom: 20px;
}
.p-breadcrumbList {
  font-size: 13px;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}
.p-breadcrumbListItem {
  white-space: nowrap;
}
.p-breadcrumbListItem a {
  transition: 0.3s all ease-in-out;
}
.p-breadcrumbListItem:last-child {
  padding-right: 16px;
}
.p-breadcrumbListItem::after {
  content: '>';
  display: inline-block;
  margin: 0 0.5em;
}
.p-breadcrumbListItem:last-child::after {
  display: none;
}
@media (hover: hover) {
  .p-breadcrumbListItem a:hover {
    opacity: 0.6;
  }
}

/* ---------------------------
  top
----------------------------*/
.p-topMainVisual {
  width: 100%;
  height: calc(100vh - 60px);
  min-height: calc(100vh - 60px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-topMainVisualVideo {
  max-width: 1200px;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: transparent;
  display: none; /* 初期状態では非表示 */
}
.p-topMainVisualVideo.--pc {
  display: none;
}
.p-topMainVisualVideo.--sp {
  display: block;
  max-width: 560px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.p-headingIntroduction {
  width: 308px;
  margin-inline: auto;
  margin-bottom: 48px;
}
.p-topIntroductionText {
  font-weight: 800;
  text-align: center;
  line-height: 1.875;
}
.p-topIntroductionText p + p {
  margin-top: 1.5em;
}
.p-topSection {
  padding-top: 120px;
}
.p-topButton {
  text-align: center;
  margin-top: 40px;
}
.p-topCompanyImage {
  max-width: 700px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-topMainVisualVideo.--pc {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .p-topMainVisualVideo.--sp {
    display: none;
  }
  .p-headingIntroduction {
    width: 526px;
    margin-bottom: 64px;
  }
  .p-topIntroductionText {
    font-size: 25px;
  }
}

/* ---------------------------
  archive
----------------------------*/
.p-archiveIntroduction {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}
.p-archiveContents {
  margin-top: 40px;
}
.p-archiveList {
  list-style: none;
  display: grid;
  gap: 80px;
}
.p-archiveList.--hasNumber {
  counter-reset: person;
}
.p-archiveList.--hasNumber .p-personItem {
  counter-increment: person;
}
.p-archiveList.--hasNumber .p-personItem {
  counter-increment: person;
}
.p-personItem {
  width: 100%;
}
.p-archiveList.--hasNumber .c-personCardThumbnail::before {
  content: counter(person, decimal-leading-zero);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 58px;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: -24px;
  left: 30px;
  z-index: 1;
}
.p-archiveText {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  font-weight: 600;
  margin-top: 32px;
}
.p-archiveText p + p {
  margin-top: 1.5em;
}
.p-archiveBusiness {
  margin-bottom: 32px;
}
.p-archiveBusinessHeading {
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  max-width: 300px;
  margin-inline: auto;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-bottom: 16px;
}
.p-archiveBusinessImage {
  max-width: 390px;
  margin-inline: auto;
  position: relative;
}
.p-archiveBusinessImage__mainImage {
  padding-inline: 20px;
}
.p-businessButtons {
  position: absolute;
  z-index: 1;
}
.p-businessButtons.--food {
  width: 46.13%;
  top: 0;
  left: 5.64%;
}
.p-businessButtons.--printing {
  width: 48.27%;
  top: 25%;
  left: 5.5%;
}
.p-businessButtons.--transporting {
  width: 46.13%;
  top: 12%;
  right: 4.64%;
}
.p-businessButtons.--building {
  width: 46.93%;
  top: 49.9%;
  left: 5.6%;
}
.p-businessButtons.--media {
  width: 46.13%;
  top: 38%;
  right: 5%;
}
.p-businessButtons.--leisure {
  width: 44.8%;
  top: 75.5%;
  left: 5.6%;
}
.p-businessButtons.--education {
  width: 46.4%;
  top: 65.4%;
  right: 5%;
}
.p-businessButton {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .p-archiveBusinessHeading {
    max-width: 700px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .p-archiveList.--pcRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
  }
  .p-personItem:not(.--full) {
    width: calc((100% - 30px) / 2);
  }
  .p-archiveText {
    font-size: 22px;
    line-height: 2.091;
  }
  .p-archiveText .--sp {
    display: none;
  }
  .p-archiveBusiness {
    margin-bottom: 56px;
  }
  .p-archiveBusinessImage {
    max-width: 780px;
  }
  .p-businessButtons.--food {
    width: 30.26%;
    top: 0.8%;
    left: 34%;
  }
  .p-businessButtons.--printing {
    width: 32.05%;
    top: 17.5%;
    left: 3%;
  }
  .p-businessButtons.--transporting {
    width: 30.51%;
    top: 12.5%;
    right: 3%;
  }
  .p-businessButtons.--building {
    width: 30.77%;
    top: 32%;
    left: 35%;
  }
  .p-businessButtons.--media {
    width: 30%;
    top: 44%;
    right: 3%;
  }
  .p-businessButtons.--leisure {
    width: 29.49%;
    top: 49.5%;
    left: 5%;
  }
  .p-businessButtons.--education {
    width: 30.77%;
    top: 65%;
    right: 34.2%;
  }
}
@media screen and (min-width: 1024px) {
  .p-personItem:not(.--full) {
    width: calc((100% - 60px) / 3);
  } 
}

/* ---------------------------
  single
----------------------------*/
.p-personContentsWrapper {
  max-width: 1080px;
  margin-inline: auto;
}
.p-personMainVisual {
  padding-bottom: 140px;
  margin-bottom: 24px;
  position: relative;
}
.p-personMainVisualImage {
  width: 100%;
  height: 0;
  padding-bottom: 160%; /* 375×600の比率 (600/375 = 1.6) */
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.p-personMainVisualContents {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.p-personMainVisualText {
  color: #fff;
  background-color: rgb(0 0 0 / 50%);
  width: fit-content;
  max-width: 80%;
  margin-inline: auto 0;
  padding: 16px;
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
}
.p-personMainVisualText__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
  white-space: pre-wrap;
}
.p-personMainVisualText__contents {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
}
.p-personMainVisualText__title,
.p-personMainVisualText__name,
.p-personMainVisualText__join {
  font-size: 12px;
  line-height: 2;
}
.p-personMainVisualText__join {
  margin-top: 4px;
}
.p-personMainVisualProfile {
  width: 88%;
  padding: 5px;
  margin-inline: auto;
  margin-top: 10px;
  position: relative;
}
.p-personProfileWrapper {
  width: 100%;
  padding: 10px;
  background-color: rgb(255 255 255 / 80%);
}
.p-personProfileHeading {
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-accent);
}
.p-personProfileText {
  font-size: 14px;
  line-height: 1.75;
}
.p-personProfileLine {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #707070;
  top: 0;
}
.p-personProfileLine.--left {
  left: 0;
}
.p-personProfileLine.--right {
  right: 0;
}
.p-personProfileLine::before,
.p-personProfileLine::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #707070;
  position: absolute;
}
.p-personProfileLine::before {
  top: 0;
}
.p-personProfileLine::after {
  bottom: 0;
}
.p-personProfileLine.--left::before,
.p-personProfileLine.--left::after {
  left: 0;
}
.p-personProfileLine.--right::before,
.p-personProfileLine.--right::after {
  right: 0;
}
.p-personArticleContainer {
  max-width: 90.67%;
  margin-inline: auto;
}
.p-personArticlePost {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}
.p-personArticleImage {
  width: 100%;
  height: 0;
  padding-top: 57.33%; /* 375×215の比率 (215/375 = 0.5733) */
  position: relative;
  overflow: hidden;
}
.p-personArticleImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-personArticleSection {
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
.p-personArticleHeading {
  color: #fff;
  font-size: 18px;
  line-height: 1.667;
  width: fit-content;
  padding: 20px;
  background-color: rgb(0 0 0 / 50%);
  margin-inline: auto 0;
}
.p-personArticleHeading span {
  display: block;
  width: fit-content;
}
.p-personArticleWrapper.--reverse .p-personArticleHeading {
  margin-inline: 0 auto;
}
.p-personArticleText {
  font-size: 14px;
  line-height: 1.75;
  padding-block: 70px 20px;
  padding-inline: 20px;
  width: 90.67%;
  margin-top: -50px;
  margin-inline: auto;
  background-color: #fff;
  position: relative;
  z-index: -1;
}
.p-personArticleText * + * {
  margin-top: 1em;
}
.p-personArticleFooter {
  padding-top: 40px;
  border-top: 1px dashed currentColor;
}
.p-personArticleList {
  list-style: none;
  display: grid;
  gap: 8px;
}
.p-personPrivate {
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1px dashed currentColor;
}
.p-personPrivateContents {
  display: contents;
}
.p-personPrivateHeading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  order: 0;
}
.p-personPrivateHeading__main {
  font-family: var(--font-accent);
  font-size: 32px;
  line-height: 1;
}
.p-personPrivateHeading__sub {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-personPrivateHeading__sub::before,
.p-personPrivateHeading__sub::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #000;
}
.p-personPrivateText {
  order: 2;
  padding-inline: 16px;
  line-height: 1.75;
}
.p-personPrivateImage {
  order: 1;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}
.p-personPrivateImage img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-personContentsWrapper {
    background-color: transparent;
  }
  .p-personMainVisual {
    margin-bottom: 50px;
  }
  .p-personMainVisualImage {
    padding-bottom: 83.33%;
  }
  .p-personMainVisual {
    padding: 0;
  }
  .p-personMainVisualText {
    padding: 25px;
    flex-direction: row-reverse;
    width: fit-content;
    gap: 25px;
    bottom: 20px;
    right: 20px;
  }
  .p-personMainVisualText__join {
    margin-top: 8px;
  }
  .p-personMainVisualContents {
    margin-inline: auto 0;
    right: 20px;
    bottom: 20px;
  }
  .p-personMainVisualProfile {
    width: 100%;
    max-width: 480px;
    margin-inline: auto 0;
  }
  .p-personMainVisualText {
    max-width: 100%;
  }
  .p-personArticleIntroduction {
    width: 60%;
  }
  .p-personArticlePost {
    gap: 50px;
    margin-bottom: 60px;
  }
  .p-personArticleWrapper {
    display: flex;
    align-items: flex-start;
  }
  .p-personArticleWrapper.--reverse {
    flex-direction: row-reverse;
  }
  .p-personArticleImage {
    flex-shrink: 0;
    width: 46.3%;
    padding-top: 55.56%; /* 1080×600の比率 (600/1080 = 0.5556) */
  }
  .p-personArticleSection {
    margin-top: 160px;
    margin-left: -60px;
  }
  .p-personArticleWrapper.--reverse .p-personArticleSection {
    margin-left: 0;
    margin-right: -60px;
  }
  .p-personArticleHeading {
    margin-inline: 0 auto;
    font-size: 26px;
  }
  .p-personArticleWrapper.--reverse .p-personArticleHeading {
    margin-inline: auto 0;
  }
  .p-personArticleText {
    font-size: 16px;
    width: 100%;
    padding: 30px;
    margin-top: 0;
  }
  .c-personCard__image {
    padding-bottom: 54.29%;
  }
  .p-personTextContents {
    padding-block: 30px 50px;
  }
  .p-personArticleFooter {
    padding-top: 100px;
  }
  .p-personArticleList {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .p-personArticleList li {
    width: 300px;
  }
  .p-personPrivate {
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .p-personPrivateContents {
    display: block;
  }
  .p-personPrivateText {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-personMainVisualText__title,
  .p-personMainVisualText__name,
  .p-personMainVisualText__join {
    font-size: 14px;
  }
  .p-personMainVisualText__heading {
    font-size: 24px;
    line-height: 1.333;
  }
  .p-personArticleIntroduction {
    width: 620px;
  }
  .p-personArticleText {
    font-size: 16px;
  }
}

/* ---------------------------
  company
----------------------------*/
/* モーダル */
.js-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 20%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.js-modal-content {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #000;
  max-width: 90vw;
  max-height: 80vh;
  width: 1078px;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* iPhoneのブラウザUI対策 */
@supports (-webkit-touch-callout: none) {
  .js-modal-content {
    max-height: 80vh;
  }
}
/* より安全な高さ設定のための追加対策 */
@media screen and (max-height: 700px) {
  .js-modal-content {
    max-height: 75vh;
  }
}
.js-modal-close {
  color: #000;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  transition: opacity 0.3s ease;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -12px;
  right: -12px;
  cursor: pointer;
}
.js-modal-close:hover {
  opacity: 0.7;
}
.js-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 20px 40px;
}
.js-modal-footer {
  text-align: center;
  margin-top: 40px;
}
.js-modal-close-btn {
  min-width: 120px;
}
.p-modalContents {
  position: relative;
}
.p-modalTitle {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.p-modalText {
  font-size: 16px;
  line-height: 1.75;
}
.p-modalCompany img {
  width: 100%;
  max-width: inherit;
}
.p-modalCompanyWrapper {
  display: grid;
  gap: 60px;
  margin-top: 40px;
}
.p-modalCompanyName {
  border-left: 1px solid #707070;
  padding-left: 16px;
  margin-bottom: 16px;
}
.p-modalCompanyName__description {
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 4px;
}
.p-modalCompanyName__name {
  font-size: 18px;
  font-weight: 700;
}
.p-modalCompanyGroup {
  display: grid;
  gap: 40px;
}
.p-modalCompanyImageTitle {
  font-size: 16px;
  font-weight: 700;
  padding-left: 18px;
  margin-bottom: 16px;
  position: relative;
}
.p-modalCompanyImageTitle::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 11px;
  left: 0;
}
.p-modalCompanyImageTitle small {
  font-size: 12px;
  font-weight: 300;
  display: inline-block;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .js-modal-content {
    border-radius: 20px;
  }
  .js-modal-close {
    top: -48px;
  }
  .js-modal-body {
    padding: 56px 30px 60px;
  }
  .p-modalTitle {
    font-size: 24px;
  }
  .p-modalCompany {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 40% 1fr;
    gap: 40px;
  }
}

/* ---------------------------
  recruitment
----------------------------*/
.p-recruitmentWrapper {
  background-color: #fff;
}
.p-recruitmentInner {
  padding-left: 14px;
}
.p-recruitmentHeading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}
.p-recruitmentTable {
  display: grid;
  gap: 40px;
}
.p-recruitmentTableRow {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.p-recruitmentTableTilte {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}
.p-recruitmentTableContents {
  font-size: 16px;
  padding-inline: 8px 24px;
}
.p-recruitmentTableContents > * + * {
  margin-top: 0.75em;
}
.p-recruitmentTableContents .u-list-note,
.p-recruitmentTableContents .u-list-noMark {
  padding-left: 1em;
}
.p-recruitmentDotList {
  list-style: none;
  display: grid;
  gap: 0.5em;
}
.p-recruitmentDotList li {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.p-recruitmentDotList li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #CECDCD;
  border: 1px solid #848181;
  border-radius: 50%;
}
.p-recruitmentDotList small {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-recruitmentWrapper {
    width: 70%;
    max-width: 1080px;
    margin-inline: auto;
  }
  .p-recruitmentInner {
    padding-top: 60px;
    padding-bottom: 64px;
    padding-inline: 0;
    width: 90%;
    max-width: 800px;
    margin-inline: auto;
  }
}
/* ---------------------------
  utility
----------------------------*/
.u-visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

.u-text-center {
  text-align: center;
}

.u-link.--external {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.u-link.--external::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../../../../../assets/images/recruit/icon_external_black.svg');
  background-size: contain;
  background-position: center;
}

.u-list-note {
  list-style: none;
  display: grid;
  gap: 0.25em;
}
.u-list-note li {
  font-size: 14px;
}
.u-list-note li::before {
  content: '※';
  margin-right: 2px;
}

.u-list-noMark {
  list-style: none;
  display: grid;
  gap: 0.25em;
}
.u-list-noMark li {
  font-size: 14px;
}

.u-display-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-display-spOnly {
    display: none;
  }
  .u-display-pc {
    display: block;
  }
}

/* ---------------------------
  動画フォールバック用静止画
----------------------------*/
.p-topMainVisualFallback {
  display: none;
  max-width: 560px;
  width: 100%;
  height: auto;
  margin-inline: auto;
  z-index: 1;
}
.p-topMainVisualFallback img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-topMainVisualFallback {
    max-width: 1200px;
  }
}