@charset "UTF-8";
/* アニメーション中に文字が要素からはみ出さないようにする */
.slide-in {
  display: inline-block;
  width: 0; /* 幅0%から始める */
  white-space: nowrap; /* テキストが折り返されないようにする */
  overflow: hidden; /* 幅が狭い間はテキストが見えないようにする */
  opacity: 0; /* 初期状態で透明 */
  animation: expandWidth 0.8s ease forwards; /* 4秒で幅を広げるアニメーション */
}
.slide-in.delay1 {
  animation-delay: 0.3s;
}
.slide-in.delay2 {
  animation-delay: 0.6s;
}
.slide-in.delay3-5 {
  animation-delay: 0.9s;
}

/* @keyframes を使って幅と透明度を変化させる */
@keyframes expandWidth {
  0% {
    width: 0; /* 最初は幅が0 */
    opacity: 0; /* 最初は透明 */
  }
  50% {
    width: 5%;
    opacity: 0;
  }
  100% {
    width: 100%; /* 最終的に幅が100% */
    opacity: 1; /* 表示されたまま */
  }
}
body {
  letter-spacing: 0.1em;
  background: var(--color-white);
}
body h1, body h2 {
  font-family: var(--regular-family);
}

body {
  overflow-x: hidden;
}

@media (width < 375px) {
  .sp-none {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (width < 375px) {
  .sp-show {
    display: block;
  }
}

@media (width < 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media (width < 768px) {
  .md-show {
    display: block;
  }
}

@media (width < 1026px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media (width < 1026px) {
  .lg-show {
    display: block;
  }
}

.child-top {
  position: relative;
}
@media (width < 768px) {
  .child-top__img {
    aspect-ratio: 750/400;
  }
}
.child-top__img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1600/400;
}
@media (width < 768px) {
  .child-top__img img {
    aspect-ratio: 750/400;
  }
}
.child-top__txt {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.child-top .slide-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.child-top__text-main {
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--color-white);
}
@media (width < 768px) {
  .child-top__text-main {
    font-size: clamp(1.75rem, 0.262rem + 7.44vw, 3.75rem);
    line-height: 1.8333333333;
  }
}
.child-top::after {
  position: absolute;
  white-space: nowrap;
  color: var(--color-white);
  font-size: 192px;
  letter-spacing: 0.07em;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media (width < 768px) {
  .child-top::after {
    font-size: 100px;
  }
}

.sub-menu {
  width: 100%;
  margin-top: 50px;
}
@media (width < 768px) {
  .sub-menu {
    margin-top: 7.8vw;
  }
}
@media (width < 768px) {
  .sub-menu .lower-inner {
    width: 100%;
  }
}
.sub-menu .sub-menu__items {
  display: flex;
  justify-content: space-between;
}
@media (width < 768px) {
  .sub-menu .sub-menu__items {
    width: 100%;
  }
}
.sub-menu .sub-menu__item {
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding-block: 3px;
  border-right: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item {
    padding-block: 0;
    height: 3.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sub-menu .sub-menu__item:first-child {
  border-left: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:first-child {
    border-left: none;
  }
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:last-child {
    border-right: none;
  }
}
.sub-menu .sub-menu__item:hover {
  opacity: 0.7;
}
.sub-menu .sub-menu__link {
  font-size: 14px;
  transition: opacity 0.3s;
  display: block;
}
@media (width < 768px) {
  .sub-menu .sub-menu__link {
    font-size: 2.6666666667vw;
  }
}
.sub-menu .staff-detail .sub-menu .sub-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 5px;
}

.link-tab__button {
  position: fixed;
  z-index: 9000;
  right: 0px;
  top: 226px;
  width: 54px;
  height: 160px;
  cursor: pointer;
  background-color: var(--color-black);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (width < 768px) {
  .link-tab__button {
    display: none;
  }
}
.link-tab__button::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 18px;
  left: 50%;
  translate: -50% 0;
  top: 30px;
  background: url(/recruit/career/cmn/img/search.webp) center center/contain no-repeat;
}
.link-tab__button a {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  writing-mode: vertical-rl;
  width: 100%;
  height: 100%;
}
.link-tab__button p {
  position: absolute;
  top: 60px;
  left: 50%;
  translate: -50% 0;
}

.lower-inner {
  padding-inline: 10px;
  width: calc(70% + 20px);
  max-width: 100%;
  margin-inline: auto;
}
@media (width < 768px) {
  .lower-inner {
    width: 86.6666vw;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.lower-title {
  font-size: 32px;
  line-height: 2.2853571429;
  position: relative;
  letter-spacing: 0.07em;
  padding-left: 44px;
}
@media (width < 768px) {
  .lower-title {
    font-size: 6.4vw;
    padding-left: 1em;
    line-height: 1.3;
  }
}
.lower-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-black);
  width: 6px;
  height: 40px;
}
@media (width < 768px) {
  .lower-title::before {
    width: 3px;
    height: 8vw;
  }
}

/*ボタン*/
.btn-area {
  margin-inline: auto;
  display: flex;
  gap: 38px;
  justify-content: center;
}
@media (width < 768px) {
  .btn-area {
    flex-direction: column;
    width: 100%;
    margin: 35px auto 0;
    gap: 8.5333vw;
  }
}
.btn-area .btn {
  margin-inline: auto;
  max-width: 420px;
  width: 50vw;
}
@media (width < 768px) {
  .btn-area .btn {
    width: 85%;
  }
}
@media (width < 768px) {
  .btn-area .btn a {
    height: 70px;
    font-size: 1rem;
  }
}
@media (width < 768px) {
  .btn-area .btn__arrow {
    right: 5vw;
  }
}

.lower-main {
  margin-top: 104px;
}
@media (width < 1026px) {
  .lower-main {
    margin-top: 0;
  }
}

.header__logo-txt {
  color: var(--color-black);
}
.header__item {
  color: var(--color-black);
}
.header__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.header__item.current::after {
  transform: scale(1);
}
.header__item:hover::after {
  transform: scale(1);
}

/*各セクション共通*/
.jobentry .sub-menu__link span {
  white-space: nowrap;
}
.jobentry section {
  margin-top: 83px;
}
@media (width < 768px) {
  .jobentry section {
    margin-top: 16.5333333333vw;
  }
}
.jobentry .jobentry-overview {
  margin-top: 104px;
}
@media (width < 768px) {
  .jobentry .jobentry-overview {
    margin-top: 16.5333333333vw;
  }
}
@media (width < 768px) {
  .jobentry .lower-title {
    letter-spacing: 0.02em;
  }
}
.jobentry .jobentry-btn__area {
  margin-top: 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (width < 768px) {
  .jobentry .jobentry-btn__area {
    margin-top: 10.6vw;
    width: 100%;
  }
}
@media (width < 768px) {
  .jobentry .jobentry-btn__area.md-none {
    display: none;
  }
}
.jobentry .jobentry-btn__area.md-show {
  display: none;
}
@media (width < 768px) {
  .jobentry .jobentry-btn__area.md-show {
    display: block;
  }
}
@media (width < 768px) {
  .jobentry .jobentry-btn__area .btn {
    max-width: initial;
    width: 100%;
  }
}
@media (width < 768px) {
  .jobentry .jobentry-btn__area .btn a {
    height: 21.8666vw;
  }
}
@media (width < 768px) {
  .jobentry .jobentry-btn__area .btn__arrow {
    right: 5vw;
  }
}

.jobentry-lead {
  margin-top: 76px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media (width < 768px) {
  .jobentry-lead {
    margin-top: 30px;
    line-height: 2;
  }
}

.lower-jobentry-sub .sub-menu {
  width: 100%;
  margin-top: 58px;
}
@media (width < 768px) {
  .lower-jobentry-sub .sub-menu {
    margin-top: 32px;
  }
}
.lower-jobentry-sub .sub-menu .sub-menu__item {
  padding-block: 5px;
}
@media (width < 768px) {
  .lower-jobentry-sub .sub-menu .sub-menu__item {
    padding-block: 0;
    height: 8.2vw;
  }
}
@media (width < 768px) {
  .lower-jobentry-sub .sub-menu .sub-menu .sub-menu__link {
    font-size: 2.6666666667vw;
    line-height: 1.7;
  }
}

@media (width < 768px) {
  .jobentry-top .child-top__text-main {
    font-size: 24px;
  }
}
.jobentry-top::after {
  content: "JOB LIST";
  font-size: 12vw;
  letter-spacing: 0.02em;
}
@media (width < 768px) {
  .jobentry-top::after {
    font-size: 72px;
  }
}

.recruitment {
  margin-top: 98px;
}
@media (width < 768px) {
  .recruitment {
    margin-top: 13.4vw;
  }
}
.recruitment__title::before, .recruitment__title::after {
  width: 37%;
}
.recruitment__content {
  margin-top: 32px;
}
@media (width < 768px) {
  .recruitment__content {
    margin-top: 7.5vw;
  }
}

table {
  height: 100%;
}
table td, table th {
  height: 100%;
}
table td .recruitment-table__th__occupation, table th .recruitment-table__th__occupation {
  height: 100%;
}

.recruitment-table {
  width: 100%;
  table-layout: fixed; /* テーブル全体のレイアウトを安定化 */
  border-collapse: collapse; /* 隙間をなくす */
}
.recruitment-table__tr {
  border-top: 2px solid var(--color-platinumgray);
  width: 100%;
  min-height: 80px; /* 行全体の高さを設定 */
}
@media (width < 768px) {
  .recruitment-table__tr {
    border-top: none;
  }
}
.recruitment-table__tr--h {
  min-height: 148px;
}
.recruitment-table__tr--h .recruitment-table__th span {
  min-height: 111px;
}
@media (width < 768px) {
  .recruitment-table__tr--h .recruitment-table__th span {
    min-height: 40px;
  }
}
@media (width < 768px) {
  .recruitment-table__tr {
    flex-direction: column;
    align-items: normal;
    gap: 7vw;
    padding-top: 4.2666vw;
    padding-bottom: 3.4666vw;
  }
}
.recruitment-table__tr:last-child {
  border-bottom: 2px solid var(--color-platinumgray);
}
@media (width < 768px) {
  .recruitment-table__tr:last-child {
    border-top: none;
  }
}
.recruitment-table__th {
  display: table-cell; /* テーブルセルの特性を復元 */
  width: 240px;
  height: 100%; /* 親要素の高さを引き継ぐ */
  vertical-align: middle; /* 中央寄せ */
  padding-block: 10px;
}
@media (width < 768px) {
  .recruitment-table__th {
    display: block;
    width: 100%;
  }
}
.recruitment-table__th span,
.recruitment-table__th .recruitment-table__th__occupation {
  display: flex;
  font-weight: 400;
  background: var(--color-platinumgray);
  height: 100%;
  min-height: 64px;
  width: 240px;
  align-items: center;
  padding-left: 38px;
  font-size: 16px;
}
@media (width < 768px) {
  .recruitment-table__th span,
  .recruitment-table__th .recruitment-table__th__occupation {
    font-size: clamp(1rem, 4.26vw, 2.25rem);
    line-height: 1.5;
    width: 100%;
    min-height: 70px;
    padding-left: 25px;
  }
}
.recruitment-table__th .recruitment-table__th__occupation__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
@media (width < 768px) {
  .recruitment-table__th .recruitment-table__th__occupation__inner {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.recruitment-table__th .sub__link {
  position: relative;
  margin-top: 30px;
  letter-spacing: 0.07em;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
}
@media (width < 768px) {
  .recruitment-table__th .sub__link {
    margin-top: 0;
    letter-spacing: 0.05em;
    padding-right: 42px;
  }
}
.recruitment-table__th .sub__link::before {
  position: absolute;
  content: "";
  left: 50%;
  translate: -47% 0;
  bottom: -1px;
  width: 135px;
  height: 1px;
  background-color: var(--color-black);
}
@media (width < 768px) {
  .recruitment-table__th .sub__link::before {
    bottom: 3px;
    translate: -68% 0;
    width: 118px;
  }
}
.recruitment-table__th .sub__link::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  right: -20px;
  top: 0;
  background: url(../img/window.webp) center center/contain no-repeat;
}
@media (width < 768px) {
  .recruitment-table__th .sub__link::after {
    width: 15px;
    height: 15px;
    top: 2px;
    right: 20px;
  }
}
.recruitment-table__td {
  line-height: 1.5;
  width: calc(100% - 31px - 180px);
  font-size: 16px;
  letter-spacing: 0.065em;
  padding: 6px 0 10px 38px;
  vertical-align: middle;
}
@media (width < 768px) {
  .recruitment-table__td {
    display: block;
    width: 100%;
    font-size: clamp(1rem, 0.043rem + 4.08vw, 2rem);
    line-height: 1.8;
    padding: 16px 0 20px 0;
  }
}
.recruitment-table__td p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 2.15;
}
@media (width < 768px) {
  .recruitment-table__td p {
    font-size: clamp(1rem, 0.043rem + 4.08vw, 2rem);
    line-height: 2;
    margin-top: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-platinumgray);
  }
}

@media (width < 1280px) {
  .jobentry-area table td, .jobentry-area table th {
    height: auto;
    width: 100%;
  }
  .jobentry-area table td .recruitment-table__th__occupation, .jobentry-area table th .recruitment-table__th__occupation {
    height: auto;
  }
}
.jobentry-area .section-lead {
  margin-top: 10px;
}
@media (width < 768px) {
  .jobentry-area .section-lead {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
@media (width < 768px) {
  .jobentry-area .section-lead p {
    line-height:1.8;
  }
}
.jobentry-area .faq {
  padding-top: 105px;
}
@media (width < 1280px) {
  .jobentry-area .faq {
    padding-top: 21.5vw;
  }
}
.jobentry-area .faq-wrap {
  margin-top: 32px;
}
@media (width < 1280px) {
  .jobentry-area .faq-wrap {
    margin-top: 8vw;
  }
}
.jobentry-area .faq-box:not(:first-child) {
  margin-top: 10px;
}
.jobentry-area .faq-box__head {
  padding: 26px 2px;
  position: relative;
  width: 100%;
  display: flex;
  cursor: pointer;
}
@media (width < 768px) {
  .jobentry-area .faq-box__head {
    padding: 6.9vw 0.5vw;
  }
}
.jobentry-area .faq-box__head:hover .faq-box__head-texts {
  transform: translateX(20px);
}
@media (width < 1280px) {
  .jobentry-area .faq-box__head:hover .faq-box__head-texts {
    transform: translateX(2vw);
  }
}
.jobentry-area .faq-box__head:hover .faq-box__head-arrow {
  transform: translateY(-50%) translateX(-20px);
}
@media (width < 1280px) {
  .jobentry-area .faq-box__head:hover .faq-box__head-arrow {
    transform: translateY(-50%) translateX(-2vw);
  }
}
.jobentry-area .faq-box__head.is-open .faq-box__head-arrow-bar:nth-of-type(2) {
  transform: rotate(0deg);
}
.jobentry-area .faq-box__head-arrow {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media (width < 768px) {
  .jobentry-area .faq-box__head-arrow {
    width: 3vw;
    height: 3vw;
  }
}
.jobentry-area .faq-box__head-arrow-bars {
  position: relative;
  width: 100%;
  height: 100%;
}
.jobentry-area .faq-box__head-arrow-bars span {
  position: absolute;
  background: var(--color-black);
  display: block;
  width: 100%;
  height: 2px;
}
.jobentry-area .faq-box__head-arrow-bar:nth-of-type(1) {
  top: 6px;
  left: 0;
}
.jobentry-area .faq-box__head-arrow-bar:nth-of-type(2) {
  left: 0;
  top: 6px;
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.jobentry-area .faq-box__head-texts {
  display: flex;
  transition: transform 0.3s ease;
}
.jobentry-area .faq-box__head-icon {
  font-size: clamp(1rem, 0.769rem + 0.48vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.jobentry-area .faq-box__head-text {
  line-height: 1.7777777778;
  font-weight: 500;
  margin-left: 36px;
  letter-spacing: 0.1em;
  display: block;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__head-text {
    margin-left: 6.666vw;
    width: 66.8674vw;
  }
}
@media (width < 768px) {
  .jobentry-area .faq-box__head-text {
    font-size: clamp(0.75rem, 4.26vw, 1.875rem);
  }
}
.jobentry-area .faq-box__body {
  padding-block: 20px;
  display: none;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body {
    padding: 0;
  }
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__tr {
    gap: 0;
    display: flex;
    flex-direction: column;
    padding-block: 0;
    margin-top: 5px;
  }
}
@media (width < 768px) {
  .jobentry-area .faq-box__body .recruitment-table__tr {
    gap: 2vw;
  }
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__tr:first-child {
    margin-top: 20px;
  }
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__tr:last-child {
    border-bottom: none;
  }
}
.jobentry-area .faq-box__body td {
  vertical-align: middle;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body td {
    width: 100%;
    display: block;
  }
}
.jobentry-area .faq-box__body .recruitment-table__th {
  margin-right: 20px;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__th {
    padding: 0;
    display: block;
    width: 100%;
    height: auto;
  }
}
.jobentry-area .faq-box__body .recruitment-table__th span {
  width: 100%;
  align-items: inherit;
  padding-block: 25px;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__th span {
    min-height: 60px;
    height: auto;
    background-color: var(--color-silvergray);
    color: var(--color-white);
    align-items: center;
    padding-block: 0;
  }
}
@media (width < 768px) {
  .jobentry-area .faq-box__body .recruitment-table__th span {
    font-size: clamp(1rem, 4.26vw, 2.25rem);
  }
}
.jobentry-area .faq-box.faq-box-group,
.jobentry-area .faq-box.faq-box-overseas {
  position: relative;
  margin-top: 60px;
}
.jobentry-area .faq-box.faq-box-group::after,
.jobentry-area .faq-box.faq-box-overseas::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: -30px;
  background: var(--color-black);
}
.jobentry-area .faq-box__head {
  background-color: var(--color-black);
  color: var(--color-white);
}
.jobentry-area .faq-box__head:hover {
  opacity: 0.7;
}
.jobentry-area .faq-box__head .faq-box__head-arrow-bars span {
  background: var(--color-white);
}
.jobentry-area .occupation {
  display: flex;
  background: var(--color-platinumgray);
  width: 50px;
  height: 30px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
@media (width < 768px) {
  .jobentry-area .occupation {
    width: 13.3333333333vw;
    height: 8vw;
    font-size: 3.7333333333vw;
  }
}
.jobentry-area .area_lead {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: 34px;
  letter-spacing: 0.07em;
}
@media (width < 1280px) {
  .jobentry-area .area_lead {
    flex-direction: column;
    align-items: start;
  }
}
@media (width < 768px) {
  .jobentry-area .area_lead {
    margin-top: 8vw;
  }
}
.jobentry-area .area_lead p {
  white-space: nowrap;
}
@media (width < 768px) {
  .jobentry-area .area_lead p {
    font-size: 3.7333333333vw;
  }
}
.jobentry-area .area_lead ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
  gap: 20px 18px;
}
@media (width < 1280px) {
  .jobentry-area .area_lead ul {
    margin-left: 0;
    margin-top: 14px;
    gap: 5px 18px;
  }
}
.jobentry-area .area_lead ul li {
  display: flex;
  align-items: center;
}
@media (width < 768px) {
  .jobentry-area .area_lead ul li {
    font-size: 3.7333333333vw;
  }
}
.jobentry-area .area_lead .occupation {
  margin-right: 10px;
}
.jobentry-area .faq-box__body td {
  padding-block: 10px;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body td {
    padding-block: 10px 20px;
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-icon {
  width: 206px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  padding-left: 20px;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__td-icon {
    width: 100%;
    padding: 0;
    margin-top: 10px;
    gap: 1.12vw;
  }
}
@media (width < 768px) {
  .jobentry-area .faq-box__body .recruitment-table__td-icon {
    margin-top: 2px;
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-address {
  font-size: 16px;
  letter-spacing: 0.07em;
}
.jobentry-area .faq-box__body .recruitment-table__td-address.md1280-none {
  width: 100%;
  padding-inline: 226px 15px;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__td-address.md1280-none {
    display: none;
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-address.md1280-show {
  display: none;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__td-address.md1280-show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: underline;
    letter-spacing: 0.03em;
    line-height: 1.7;
    padding-top: 0;
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-address.overseas {
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__td-address.overseas {
    text-decoration: none;
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-address.overseas p:not(:first-child) {
  margin-top: 30px;
  position: relative;
}
.jobentry-area .faq-box__body .recruitment-table__td-address.overseas p:not(:first-child)::before {
  position: absolute;
  content: "";
  width: calc(100% + 12px);
  height: 1px;
  left: 0;
  top: -15px;
  background: var(--color-platinumgray);
}
.jobentry-area .faq-box__body .recruitment-table__td-address.overseas span {
  font-family: var(--demibold-family);
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media (width < 768px) {
  .jobentry-area .faq-box__body .recruitment-table__td-address.overseas span {
    font-size: clamp(1.1rem, 0.623rem + 2.04vw, 1.6rem);
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-address-sp {
  padding-right: 12px;
  font-size: 16px;
}
@media (width < 768px) {
  .jobentry-area .faq-box__body .recruitment-table__td-address-sp {
    font-size: clamp(1rem, 0.523rem + 2.04vw, 1.5rem);
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-map {
  width: 140px;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__td-map.md1280-none {
    display: none;
  }
}
.jobentry-area .faq-box__body .recruitment-table__td-map .map__inner {
  width: 140px;
  height: 40px;
  padding-inline: 20px 15px;
  background-color: var(--color-black);
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .recruitment-table__td-map-sp {
    display: block;
    background-color: var(--color-black);
    width: 50px;
    height: 50px;
    padding: 6px 8px;
    margin-top: -8px;
  }
}
@media (width < 768px) {
  .jobentry-area .faq-box__body .recruitment-table__td-map-sp {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
.jobentry-area .faq-box__body .map__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.04em;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .map__inner {
    flex-direction: column;
    justify-content: center;
  }
}
.jobentry-area .faq-box__body .map__inner .map-text {
  font-size: 12px;
  color: var(--color-white);
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .map__inner .map-text {
    text-align: center;
    font-size: 8px;
  }
}
@media (width < 768px) {
  .jobentry-area .faq-box__body .map__inner .map-text {
    font-size: clamp(0.5rem, 0.142rem + 1.53vw, 0.875rem);
  }
}
.jobentry-area .faq-box__body .map__inner .map-icon {
  width: 11px;
  height: 11px;
}
@media (width < 1280px) {
  .jobentry-area .faq-box__body .map__inner .map-icon {
    width: 10px;
    height: 10px;
  }
}
.jobentry-area .md1280-none--br {
  display: block;
}
@media (width < 1280px) {
  .jobentry-area .md1280-none--br {
    display: none;
  }
}

@media (width < 768px) {
  .jobentry section.jobentry-inquiry {
    margin-top: 80px;
  }
}

.jobentry-inquiry .faq-wrap {
  margin-top: 34px;
}
@media (width < 768px) {
  .jobentry-inquiry .faq-wrap {
    margin-top: 30px;
  }
}
.jobentry-inquiry .jobentry__box {
  display: flex;
  width: 100%;
  height: 122px;
  padding: 45px 5px;
  border-block: 1px solid var(--color-demilightgray);
  letter-spacing: 0.07em;
}
@media (width < 768px) {
  .jobentry-inquiry .jobentry__box {
    flex-direction: column;
    height: initial;
    border-block: none;
    padding: 0;
  }
}
.jobentry-inquiry .jobentry__box .inquiry_text-department {
  padding-right: 36px;
  display: flex;
  align-items: center;
}
@media (width < 1300px) {
  .jobentry-inquiry .jobentry__box .inquiry_text-department {
    font-size: 14px;
  }
}
@media (width < 768px) {
  .jobentry-inquiry .jobentry__box .inquiry_text-department {
    font-size: 4.2666666667vw;
    background-color: var(--color-platinumgray);
    padding: 4.9vw 6.666vw;
    line-height: 2;
  }
}
.jobentry-inquiry .jobentry__box .md1280-show {
  display: none;
}
@media (width < 1280px) {
  .jobentry-inquiry .jobentry__box .md1280-show {
    display: block;
  }
}
.jobentry-inquiry .jobentry__box .inquiry_text-tel {
  padding-left: 42px;
  border-left: 1px solid var(--color-demilightgray);
}
@media (width < 768px) {
  .jobentry-inquiry .jobentry__box .inquiry_text-tel {
    margin-top: 21px;
    padding-left: 0;
    border-left: none;
  }
}
.jobentry-inquiry .jobentry__box .inquiry_text-tel .tel-item {
  font-size: 16px;
  letter-spacing: 0.15em;
}
@media (width < 768px) {
  .jobentry-inquiry .jobentry__box .inquiry_text-tel .tel-item {
    font-size: 4.2666666667vw;
  }
}
.jobentry-inquiry .jobentry__box .inquiry_text-tel .tel-number {
  font-size: 22px;
  letter-spacing: 0.07em;
  font-family: var(--demibold-family);
}
@media (width < 768px) {
  .jobentry-inquiry .jobentry__box .inquiry_text-tel .tel-number {
    margin-left: -4px;
    letter-spacing: 0.075em;
    font-size: 5.8666666667vw;
  }
}
.jobentry-inquiry .jobentry__box .inquiry_text-tel .tel-text {
  font-size: 16px;
  letter-spacing: 0.07em;
}
@media (width < 1280px) {
  .jobentry-inquiry .jobentry__box .inquiry_text-tel .tel-text {
    display: block;
    margin-top: -15px;
  }
}
@media (width < 768px) {
  .jobentry-inquiry .jobentry__box .inquiry_text-tel .tel-text {
    font-size: 3.7333333333vw;
    letter-spacing: 0.06em;
    margin-top: -3px;
  }
}

@media (pointer: fine), (hover: hover) {
  .tel-number a:where([href^="tel:"]) {
    pointer-events: none !important;
    border-bottom: none !important;
  }
}
.tel-number a[href^="tel:"] {
  border-bottom: 1px solid var(--color-black);
}

.jobentry-rate {
  padding-bottom: 140px;
}
.jobentry-rate .rate__lead {
  margin-top: 32px;
  font-size: 18px;
  letter-spacing: 0.06em;
}
@media (width < 768px) {
  .jobentry-rate .rate__lead {
    margin-top: 24px;
    font-size: 4.2666666667vw;
    line-height: 1.8;
  }
}
.jobentry-rate .recruitment-table {
  margin-top: 28px;
}
@media (width < 768px) {
  .jobentry-rate .recruitment-table {
    margin-top: 6px;
  }
}
.jobentry-rate .recruitment-table__th {
  margin-right: 0;
  line-height: 2;
  padding-block: 10px;
}
.jobentry-rate .recruitment-table__th span {
  min-height: 100px;
}
@media (width < 768px) {
  .jobentry-rate .recruitment-table__th span {
    letter-spacing: 0.06em;
    padding: 4.9vw 6.666vw;
    min-height: auto;
  }
}
.jobentry-rate .recruitment-table__td-data {
  position: relative;
  width: calc((100% - 244px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 25px;
  /*
  &:not(:last-child) {
  	border-right: 2px solid var(--color-platinumgray);
  	@include v.max(md) {
  		border-right: none;
  	}
  }*/
}
@media (width < 768px) {
  .jobentry-rate .recruitment-table__td-data {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-platinumgray);
    padding-block: 22px;
  }
}
.jobentry-rate .recruitment-table__td-data:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 83.3333333333%;
  top: 10%;
  right: 0;
  background-color: var(--color-platinumgray);
}
@media (width < 768px) {
  .jobentry-rate .recruitment-table__td-data:not(:last-child)::after {
    display: none;
  }
}
@media (width < 768px) {
  .jobentry-rate .recruitment-table__td-data1 {
    padding-top: 12px;
  }
}
.jobentry-rate .recruitment-table__tr {
  padding-block: 0;
  display: flex;
}
@media (width < 768px) {
  .jobentry-rate .recruitment-table__tr {
    flex-direction: column;
    border-top: none;
  }
}
@media (width < 768px) {
  .jobentry-rate .recruitment-table__tr:last-child {
    border-bottom: none;
  }
}
.jobentry-rate .rate__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 26px;
}
@media (width < 768px) {
  .jobentry-rate .rate__data {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    font-size: 4.2666666667vw;
  }
}
.jobentry-rate .rate__rate span {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 768px) {
  .jobentry-rate .rate__rate span {
    font-size: 5.3333333333vw;
  }
}
.jobentry-rate .rate__data-date {
  margin-top: 18px;
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.07em;
}
@media (width < 768px) {
  .jobentry-rate .rate__data-date {
    margin-top: 22px;
    text-align: right;
    font-size: 3.2vw;
  }
}