@charset "UTF-8";
/* -------------------- Mixins -------------------- */
/* -------------------- Noto Sans Japanese -------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* -------------------- Hanken Grotesk Regular -------------------- */
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --ff-noto-sans: "Noto Sans JP", sans-serif;
  --ff-hanken: "Hanken Grotesk", sans-serif;
  --c-black: rgba(0,0,0,1);
  --c-white: rgba(255,255,255,1);
  --c-gray: rgba(51,51,51,1);
  --c-light-gray: rgba(214, 214, 214, 1);
  --c-red: rgba(255,0,38,1);
  --c-pink: rgba(247,110,109,1);
  --c-beige: rgba(238,220,179,1);
  --c-mauve-pink: rgba(169, 70, 87, 1);
  --c-rose: rgba(212,97,136,1);
  --c-blue: rgba(169,193,233,1);
  --c-green: rgba(33,157,129,1);
  --c-navy: rgba(55,98,171,1);
  --grad-red: linear-gradient(155deg, rgba(255,0,38,1) 0%, rgba(216,0,32,1) 100%);
  --grad-green: linear-gradient(155deg, rgba(33,157,129,1) 0%, rgba(24,118,97,1) 100%);
  --grad-blue: linear-gradient(155deg, rgba(55,98,171,1) 0%, rgba(40,74,131,1) 100%);
  --grad-gray: linear-gradient(155deg, rgba(237,237,237,1) 0%, rgba(251,251,251,1) 100%);
  --grad-black: linear-gradient(155deg, rgba(44,44,44,1) 0%, rgba(7,7,7,1) 100%);
}

:root {
  font-size: 16px;
}

html, body {
  height: 100%;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.new_employee-site {
  font-family: var(--ff-noto-sans);
  font-size: 1em;
  font-weight: normal;
  line-height: 1.6;
  color: var(--c-gray);
  overflow-wrap: break-word;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .new_employee-site {
    font-size: 14px;
    font-size: spcalc(14);
  }
}
.new_employee-site *,
.new_employee-site > * {
  box-sizing: border-box;
}

strong {
  color: var(--c-gray);
}

main {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  padding: 8px;
  background: #fff;
  border: 2px solid #000;
  z-index: 9999;
}

a:focus, button:focus, input:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}
a:focus:focus:not(:focus-visible), button:focus:focus:not(:focus-visible), input:focus:focus:not(:focus-visible) {
  outline: none;
}

@media (pointer: fine), (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------- Body fixed when menu open -------------------- */
body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

/* -------------------- Site Header -------------------- */
.sticky-header {
  position: relative;
  width: 100%;
}
.sticky-header.fix {
  position: fixed;
  top: 0;
  z-index: 10;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (min-width: 768px) {
  .sticky-header__upper {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sticky-header__upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-padding-start: 15px;
            padding-inline-start: 15px;
    background-image: linear-gradient(155deg, rgb(44, 44, 44) 0%, rgb(7, 7, 7) 100%);
  }
}
@media screen and (max-width: 767px) {
  .sticky-header__upper {
    -webkit-padding-start: calc(15 / 390 * 100vw);
            padding-inline-start: calc(15 / 390 * 100vw);
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}
@media screen and (max-width: 1024px) {
  .sticky-header__title {
    color: var(--c-white);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .sticky-header__title {
    font-size: calc(14 / 390 * 100vw);
  }
}

/* -------------------- Hamburger Button -------------------- */
.hamburger-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
  height: 60px;
  padding: 21px 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .hamburger-button {
    width: calc(60 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    padding: calc(21 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
}
.hamburger-button::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .hamburger-button::before {
    height: pc-to-vw(40);
  }
}
.hamburger-button__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--c-red);
  transition: all 0.3s ease;
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .hamburger-button__bar {
    height: pc-to-vw(2);
  }
}
.hamburger-button[aria-expanded=true] .hamburger-button__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .hamburger-button[aria-expanded=true] .hamburger-button__bar:nth-child(1) {
    transform: translateY(calc(8 / 390 * 100vw)) rotate(45deg);
  }
}
.hamburger-button[aria-expanded=true] .hamburger-button__bar:nth-child(2) {
  opacity: 0;
}
.hamburger-button[aria-expanded=true] .hamburger-button__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .hamburger-button[aria-expanded=true] .hamburger-button__bar:nth-child(3) {
    transform: translateY(calc(-8 / 390 * 100vw)) rotate(-45deg);
  }
}

/* -------------------- Global Navigation -------------------- */
.global-nav {
  width: 100%;
  background-color: var(--c-white);
  /* -------------------- PC hover 展開 -------------------- */
  /* -------------------- Global Nav Parent Button -------------------- */
  /* -------------------- Subnav / Related Links -------------------- */
  /* -------------------- Entry Buttons -------------------- */
}
@media screen and (min-width: 768px) {
  .global-nav {
    border-top: 1px solid var(--c-light-gray);
  }
}
@media screen and (max-width: 1024px) {
  .global-nav {
    display: none;
  }
  .global-nav.is-active {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .global-nav.is-active {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .global-nav__inner {
    display: flex;
    justify-content: center;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__inner {
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    height: 100vh;
    display: block;
    width: 100%;
    padding: 6px 20px 40px;
    background-color: var(--c-white);
  }
}
@media screen and (max-width: 767px) {
  .global-nav__inner {
    height: 90vh;
    padding: calc(6 / 390 * 100vw) calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
}
.global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .global-nav__list {
    display: flex;
    gap: 1.9375rem;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.global-nav__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .global-nav__item.is-current::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3.75rem;
    height: 3px;
    background-color: var(--c-red);
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__item {
    border-bottom: 1px solid var(--c-light-gray);
  }
  .global-nav__item.is-current::after {
    display: none;
  }
}
.global-nav__link {
  position: relative;
  font-weight: bold;
  line-height: 1.2;
}
.global-nav__link, .global-nav__link:link, .global-nav__link:visited, .global-nav__link:hover, .global-nav__link:active {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .global-nav__link {
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 1.375rem;
    text-align: center;
    font-family: var(--ff-noto-sans);
    font-size: 0.875rem;
  }
  .global-nav__link:hover {
    opacity: 0.8;
  }
  .global-nav__link:focus-visible {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__link {
    align-items: flex-start;
    padding-inline: 10px;
    padding-block: 20px;
    font-weight: 500;
    text-align: left;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__link {
    padding-inline: calc(10 / 390 * 100vw);
    padding-block: calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.global-nav__link::before {
  content: attr(data-label);
  display: inline-block;
  line-height: 1.2;
  font-family: var(--ff-hanken);
  color: var(--c-red);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .global-nav__link::before {
    margin-bottom: 0.25rem;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__link::before {
    margin-bottom: 4px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__link::before {
    margin-bottom: calc(4 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
  }
}
@media screen and (max-width: 1024px) {
  .global-nav .link__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: inline-block;
    width: 12px;
    height: 1px;
    background-color: var(--c-gray);
  }
  .global-nav .link__arrow::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-right: 1px solid var(--c-gray);
    border-top: 1px solid var(--c-gray);
  }
}
@media screen and (max-width: 767px) {
  .global-nav .link__arrow {
    right: calc(10 / 390 * 100vw);
    width: calc(12 / 390 * 100vw);
  }
  .global-nav .link__arrow::after {
    top: calc(-4 / 390 * 100vw);
    right: calc(0 / 390 * 100vw);
    width: calc(8 / 390 * 100vw);
    height: calc(8 / 390 * 100vw);
  }
}
.global-nav__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .global-nav__sublist {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: 18.75rem;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__sublist {
    position: static;
    transform: none;
    width: 100%;
    -webkit-padding-after: 20px;
            padding-block-end: 20px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__sublist {
    -webkit-padding-after: calc(20 / 390 * 100vw);
            padding-block-end: calc(20 / 390 * 100vw);
  }
}
.global-nav__sublist.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .global-nav__subitem {
    border-bottom: 1px solid #666;
    background-image: linear-gradient(155deg, #2c2c2c 0%, #070707 100%);
  }
  .global-nav__subitem:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__subitem {
    border-bottom: none;
    background: none;
  }
  .global-nav__subitem:nth-of-type(n+2) {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__subitem:nth-of-type(n+2) {
    -webkit-margin-before: calc(16 / 390 * 100vw);
            margin-block-start: calc(16 / 390 * 100vw);
  }
}
.global-nav__sublink {
  position: relative;
}
.global-nav__sublink, .global-nav__sublink:link, .global-nav__sublink:visited, .global-nav__sublink:hover, .global-nav__sublink:active {
  display: block;
  text-decoration: none;
  color: var(--c-white);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .global-nav__sublink, .global-nav__sublink:link, .global-nav__sublink:visited, .global-nav__sublink:hover, .global-nav__sublink:active {
    color: var(--c-gray);
  }
}
.global-nav__sublink:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}
.global-nav__sublink:focus:focus:not(:focus-visible) {
  outline: none;
}
@media screen and (min-width: 768px) {
  .global-nav__sublink {
    padding: 1.125rem 1.9375rem 0.875rem;
    font-family: var(--ff-noto-sans);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
  }
  .global-nav__sublink::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
    display: inline-block;
    width: 0.75rem;
    height: 1px;
    background-color: var(--c-white);
  }
  .global-nav__sublink::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 1.4375rem;
    width: 0.5rem;
    height: 0.5rem;
    transform: rotate(45deg) translateY(-50%);
    border-right: 1px solid var(--c-white);
    border-top: 1px solid var(--c-white);
  }
  .global-nav__sublink:hover {
    opacity: 0.8;
  }
  .global-nav__sublink:focus-visible {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__sublink {
    padding: 0;
    -webkit-padding-start: 36px;
            padding-inline-start: 36px;
    font-family: var(--ff-noto-sans);
    color: var(--c-gray);
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .global-nav__sublink::before {
    content: "-";
    position: absolute;
    top: 43%;
    right: 0;
    left: 24px;
    display: inline-block;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background-color: transparent;
    font-size: 14px;
    color: var(--c-gray);
  }
  .global-nav__sublink::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__sublink {
    -webkit-padding-start: calc(36 / 390 * 100vw);
            padding-inline-start: calc(36 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
  .global-nav__sublink::before {
    top: 43%;
    left: calc(24 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .global-nav__item--has-sub:hover > .global-nav__sublist, .global-nav__item--has-sub:focus-visible > .global-nav__sublist {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__item--has-sub:hover > .global-nav__sublist, .global-nav__item--has-sub:focus-visible > .global-nav__sublist {
    display: none;
  }
}
.global-nav__parent {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.global-nav__parent:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}
.global-nav__parent:focus:focus:not(:focus-visible) {
  outline: none;
}
@media screen and (min-width: 768px) {
  .global-nav__parent {
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 1.375rem;
    text-align: center;
    font-family: var(--ff-noto-sans);
    font-weight: bold;
    font-size: 0.875rem;
  }
}
.global-nav__parent::before {
  content: attr(data-label);
  display: inline-block;
  margin-right: 0.25em;
  font-size: 0.85em;
  line-height: 1.2;
  color: var(--c-red);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .global-nav__parent::before {
    margin-bottom: 0.25rem;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__parent::before {
    margin-bottom: 4px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__parent::before {
    margin-bottom: calc(4 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__parent {
    align-items: flex-start;
    padding-inline: 10px;
    padding-block: 20px;
    font-family: var(--ff-hanken);
    font-weight: 500;
    font-size: 0.875rem;
  }
  .global-nav__parent.is-open .sublink__plus-minus::before {
    display: none;
  }
  .global-nav__parent.is-open .sublink__plus-minus::after {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 767px) {
  .global-nav__parent {
    padding-inline: calc(10 / 390 * 100vw);
    padding-block: calc(20 / 390 * 100vw);
    font-family: var(--ff-hanken);
    font-weight: 500;
    font-size: calc(14 / 390 * 100vw);
  }
  .global-nav__parent.is-open .sublink__plus-minus::before {
    display: none;
  }
  .global-nav__parent.is-open .sublink__plus-minus::after {
    transform: rotate(180deg);
  }
}
.global-nav .sublink__plus-minus {
  display: none;
}
@media screen and (max-width: 1024px) {
  .global-nav .sublink__plus-minus {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    display: block;
    width: 12px;
    height: 12px;
  }
  .global-nav .sublink__plus-minus::before, .global-nav .sublink__plus-minus::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 1px;
    background-color: var(--c-gray);
    transition: transform 0.3s ease;
  }
  .global-nav .sublink__plus-minus::after {
    transform: rotate(90deg);
  }
  .global-nav__item--has-sub .global-nav .sublink__plus-minus {
    display: block;
    right: 10px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .global-nav .sublink__plus-minus {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(10 / 390 * 100vw);
    display: block;
    width: calc(12 / 390 * 100vw);
    height: calc(12 / 390 * 100vw);
  }
  .global-nav .sublink__plus-minus::before, .global-nav .sublink__plus-minus::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(12 / 390 * 100vw);
    height: 1px;
    background-color: var(--c-gray);
    transition: transform 0.3s ease;
  }
  .global-nav .sublink__plus-minus::after {
    transform: rotate(90deg);
  }
  .global-nav__item--has-sub .global-nav .sublink__plus-minus {
    display: block;
    right: calc(10 / 390 * 100vw);
    transform: translateY(-50%);
  }
}
.global-nav__subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .global-nav__subnav-list {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__subnav-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__subnav-list {
    -webkit-margin-before: calc(35 / 390 * 100vw);
            margin-block-start: calc(35 / 390 * 100vw);
  }
}
.global-nav__subnav-item {
  display: block;
  border-right: 1px solid var(--c-gray);
  border-left: 1px solid var(--c-gray);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .global-nav__subnav-item:not(:last-child) {
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__subnav-item:not(:last-child) {
    border-right: 1px solid var(--c-gray);
  }
  .global-nav__subnav-item:nth-of-type(even) {
    border-left: none;
  }
  .global-nav__subnav-item:nth-of-type(n+3) {
    -webkit-margin-before: calc(25 / 390 * 100vw);
            margin-block-start: calc(25 / 390 * 100vw);
  }
}
.global-nav__subnav-link {
  font-weight: 500;
  line-height: 1;
}
.global-nav__subnav-link, .global-nav__subnav-link:link, .global-nav__subnav-link:visited, .global-nav__subnav-link:hover, .global-nav__subnav-link:active {
  display: inline;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .global-nav__subnav-link {
    padding-inline: 0.5em 0.6em;
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__subnav-link {
    padding-inline: calc(5 / 390 * 100vw) calc(6 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }
}
.global-nav .entry__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
@media screen and (min-width: 768px) {
  .global-nav .entry__list {
    margin-left: 2.3125rem;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav .entry__list {
    margin-left: 0;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav .entry__list {
    -webkit-margin-before: calc(40 / 390 * 100vw);
            margin-block-start: calc(40 / 390 * 100vw);
  }
}
.global-nav .entry__item {
  display: inline-block;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .global-nav .entry__item {
    padding-block: 1.5rem 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav .entry__item {
    padding-block: 0;
  }
}
.global-nav .entry__item + .entry__item .entry__link::before {
  display: none;
}
.global-nav .entry__link {
  position: relative;
  width: 100%;
}
.global-nav .entry__link, .global-nav .entry__link:link, .global-nav .entry__link:visited, .global-nav .entry__link:hover, .global-nav .entry__link:active {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--c-gray);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .global-nav .entry__link {
    gap: 0.6875rem;
    padding-inline: 1.375rem 1.5625rem;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav .entry__link {
    padding-block: 17px 16px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav .entry__link {
    padding-block: calc(17 / 390 * 100vw) calc(16 / 390 * 100vw);
  }
}
.global-nav .entry__link::before, .global-nav .entry__link::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  border-left: 1px dashed var(--c-gray);
}
.global-nav .entry__link::before {
  left: 0;
}
.global-nav .entry__link::after {
  right: 0;
}
@media (any-hover: hover) {
  .global-nav .entry__link:hover {
    opacity: 0.8;
  }
}
.global-nav .entry__link:focus-visible {
  opacity: 0.8;
}
.global-nav .entry__icon {
  display: inline-block;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .global-nav .entry__icon {
    width: 1.430625rem;
  }
}
.global-nav .entry__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.global-nav .entry__jp {
  white-space: nowrap;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .global-nav .entry__jp {
    font-size: 0.875rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav .entry__jp {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 767px) {
  .global-nav .entry__jp {
    font-size: calc(16 / 390 * 100vw);
  }
}
.global-nav .entry__en {
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--ff-hanken);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .global-nav .entry__en {
    font-size: 1.125rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav .entry__en {
    font-size: 20px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 767px) {
  .global-nav .entry__en {
    font-size: calc(20 / 390 * 100vw);
  }
}
.global-nav .entry__arrow {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .global-nav .entry__arrow {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .global-nav .entry__arrow {
    width: calc(9.8 / 390 * 100vw);
    height: calc(9.8 / 390 * 100vw);
  }
}

#sticky-dummy {
  visibility: hidden;
}

.breadcrumb {
  background-color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 1.25rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    overflow-x: scroll;
    padding-block: calc(13 / 390 * 100vw) calc(15 / 390 * 100vw);
    padding-inline: calc(15 / 390 * 100vw);
  }
}
.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5em;
  max-width: 1275px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    -webkit-padding-end: calc(15 / 390 * 100vw);
            padding-inline-end: calc(15 / 390 * 100vw);
  }
}
.breadcrumb__list li {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-gray);
}
@media screen and (min-width: 768px) {
  .breadcrumb__list li {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__list li {
    white-space: nowrap;
    font-size: calc(10 / 390 * 100vw);
  }
}
.breadcrumb__list li + li::before {
  content: ">";
  margin: 0 0.5em;
  color: var(--c-gray);
}
.breadcrumb__list a {
  text-decoration: none;
  font-weight: 400;
  color: var(--c-mauve-pink);
}

.footer-employee__entry {
  position: relative;
  max-height: 440px;
}
@media screen and (min-width: 768px) {
  .footer-employee__entry {
    padding: 4.5625rem 15px 4.875rem;
    background: url(../img/common/bg_entry.jpg) no-repeat center/cover;
  }
  .footer-employee__entry::after {
    content: "";
    position: absolute;
    top: -126px;
    left: 0;
    width: 141px;
    height: 226px;
    background: url(../img/common/deco_footer01.svg) no-repeat center/cover;
    pointer-events: none;
    mix-blend-mode: multiply;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry {
    max-height: none;
    padding: calc(35 / 390 * 100vw) calc(40 / 390 * 100vw) calc(40 / 390 * 100vw);
    background: url(../img/common/bg_entry-sp.png) no-repeat center/cover;
  }
}
.footer-employee__entry-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  text-align: center;
  color: var(--c-white);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-title {
    margin-bottom: 2.15625rem;
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__entry-title {
    margin-bottom: 21.1px;
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-title {
    margin-bottom: calc(21.1 / 390 * 100vw);
    font-size: calc(26 / 390 * 100vw);
  }
  .JS .footer-employee__entry-title {
    margin-bottom: calc(21.1 / 390 * 100vw);
  }
}
.footer-employee__entry-title::before {
  content: attr(data-label);
  display: block;
  font-family: var(--ff-hanken);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-title::before {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__entry-title::before {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-title::before {
    font-size: calc(14 / 390 * 100vw);
  }
}
.footer-employee__entry-list {
  display: flex;
  margin-inline: auto;
  border-top: 2px solid var(--c-white);
  border-left: 2px solid var(--c-white);
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-list {
    width: 47.375rem;
    max-width: 758px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__entry-list {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-list {
    flex-direction: column;
    width: calc(266 / 390 * 100vw);
  }
}
.footer-employee__entry-btn {
  position: relative;
  flex: 1;
  border-right: 2px solid var(--c-white);
  border-bottom: 2px solid var(--c-white);
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}
.footer-employee__entry-btn, .footer-employee__entry-btn:link, .footer-employee__entry-btn:visited, .footer-employee__entry-btn:hover, .footer-employee__entry-btn:active {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--c-white);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-btn {
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-btn {
    flex: auto;
    height: calc(85 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .footer-employee__entry-btn:hover {
    background-color: var(--c-white);
    color: var(--c-gray);
  }
  .footer-employee__entry-btn:hover .footer-employee__entry-icon path {
    stroke: var(--c-gray);
  }
  .footer-employee__entry-btn:hover .footer-employee__entry-external-icon path {
    fill: var(--c-gray);
  }
}
.footer-employee__entry-btn:focus-visible {
  background-color: var(--c-white);
  color: var(--c-gray);
}
.footer-employee__entry-btn:focus-visible .footer-employee__entry-icon path {
  stroke: var(--c-gray);
}
.footer-employee__entry-btn:focus-visible .footer-employee__entry-external-icon path {
  fill: var(--c-gray);
}
.footer-employee__entry-icon {
  display: inline-block;
  line-height: 0;
  transition: stroke 0.3s;
  stroke: var(--c-white);
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-icon {
    width: 2.595625rem;
    margin-right: 0.841875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-icon {
    width: calc(29.07 / 390 * 100vw);
    margin-right: calc(9.43 / 390 * 100vw);
  }
  .footer-employee__entry-icon svg {
    width: 100%;
  }
}
.footer-employee__entry-text {
  display: flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
.footer-employee__entry-name {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-name {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__entry-name {
    font-size: 15.4px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-name {
    font-size: calc(15.4 / 390 * 100vw);
  }
}
.footer-employee__entry-label {
  font-family: var(--ff-hanken);
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-label {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__entry-label {
    font-size: 18.2px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-label {
    font-size: calc(18.2 / 390 * 100vw);
  }
}
.footer-employee__entry-external-icon {
  line-height: 0;
  transition: fill 0.3s;
  fill: var(--c-white);
}
@media screen and (min-width: 768px) {
  .footer-employee__entry-external-icon {
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__entry-external-icon {
    width: calc(9.8 / 390 * 100vw);
    height: calc(9.8 / 390 * 100vw);
    margin-left: calc(38.4 / 390 * 100vw);
  }
}
.footer-employee__company {
  position: relative;
  background-image: linear-gradient(155deg, rgb(7, 7, 7) 0%, rgb(44, 44, 44) 100%);
}
@media screen and (min-width: 768px) {
  .footer-employee__company {
    padding-block: 4.5625rem 5rem;
  }
  .footer-employee__company::after {
    content: "";
    position: absolute;
    bottom: -208px;
    right: 0;
    width: 148px;
    height: 308px;
    background: url(../img/common/deco_footer02.svg) no-repeat center/cover;
    pointer-events: none;
    mix-blend-mode: normal;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__company {
    padding-block: 73px 80px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__company {
    padding-block: calc(40 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
}
.footer-employee__company-title {
  display: block;
  background: none;
  text-align: center;
  line-height: 1.5;
  color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .footer-employee__company-title {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__company-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__company-title {
    font-size: calc(26 / 390 * 100vw);
  }
}
.footer-employee__company-title::before {
  content: attr(data-label);
  display: block;
  font-family: var(--ff-hanken);
  line-height: 1.5;
  color: var(--c-red);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-employee__company-title::before {
    margin-bottom: 0.34375rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__company-title::before {
    margin-bottom: 0.9px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__company-title::before {
    margin-bottom: calc(0.9 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .footer-employee__company-nav {
    -webkit-margin-before: 2.84375rem;
            margin-block-start: 2.84375rem;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__company-nav {
    -webkit-margin-before: 25.1px;
            margin-block-start: 25.1px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__company-nav {
    -webkit-margin-before: calc(25.1 / 390 * 100vw);
            margin-block-start: calc(25.1 / 390 * 100vw);
    padding-inline: calc(20 / 390 * 100vw);
  }
}
.footer-employee__company-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-inline: auto;
  border-left: 1px dashed #a4a4a4;
}
@media screen and (min-width: 768px) {
  .footer-employee__company-list {
    width: 49rem;
    max-width: 784px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__company-list {
    width: 100%;
    max-width: none;
  }
}
.footer-employee__company-item {
  flex: 0 0 auto;
  text-align: center;
  border-right: 1px dashed #a4a4a4;
}
@media screen and (min-width: 768px) {
  .footer-employee__company-item {
    width: 16.875rem;
    height: 5.3125rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__company-item {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__company-item {
    width: 33.3333333333%;
  }
}
.footer-employee__company-link {
  width: 100%;
  height: 100%;
}
.footer-employee__company-link, .footer-employee__company-link:link, .footer-employee__company-link:visited, .footer-employee__company-link:hover, .footer-employee__company-link:active {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--c-white);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer-employee__company-link {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__company-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__company-link {
    padding-block: calc(17 / 390 * 100vw) calc(17 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .footer-employee__company-link:hover {
    opacity: 0.8;
  }
}
.footer-employee__company-link:focus-visible {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .footer-employee__global-nav {
    display: flex;
    gap: 10.1875rem;
    width: 60.3125rem;
    max-width: 965px;
    margin-block: 4.6875rem 3.4375rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__global-nav {
    display: block;
    width: 100%;
    margin-block: 25px;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__global-nav {
    margin-block: 0;
    padding: calc(35 / 390 * 100vw) calc(20 / 390 * 100vw) calc(50 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .footer-employee__nav-list {
    display: grid;
    grid-template-columns: repeat(2, auto); /* 2列 */
    -moz-column-gap: 7.25rem;
         column-gap: 7.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-list {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .footer-employee__nav-item:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 1.25rem;
  }
  .footer-employee__nav-item:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
  }
  .footer-employee__nav-item:nth-child(3) {
    grid-row: 3;
    grid-column: 1;
  }
  .footer-employee__nav-item:nth-child(4) {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 1.25rem;
  }
  .footer-employee__nav-item:nth-child(5) {
    grid-row: 2;
    grid-column: 2;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-item {
    border-bottom: 1px solid var(--c-light-gray);
  }
  .footer-employee__nav-item:nth-child(1) {
    margin-bottom: 0;
  }
  .footer-employee__nav-item:nth-child(4) {
    margin-bottom: 0;
  }
}
.footer-employee__nav-link {
  position: relative;
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
}
.footer-employee__nav-link, .footer-employee__nav-link:link, .footer-employee__nav-link:visited, .footer-employee__nav-link:hover, .footer-employee__nav-link:active {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-link, .footer-employee__nav-link:link, .footer-employee__nav-link:visited, .footer-employee__nav-link:hover, .footer-employee__nav-link:active {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .footer-employee__nav-link {
    font-size: 1rem;
    border-bottom: 1px solid transparent;
  }
  .footer-employee__nav-link:hover {
    border-bottom: 1px solid var(--c-gray);
  }
  .footer-employee__nav-link:focus-visible {
    border-bottom: 1px solid var(--c-gray);
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-link {
    align-items: flex-start;
    padding-inline: 10px;
    padding-block: 20px;
    text-align: left;
    font-size: 14px;
  }
  .footer-employee__nav-link:hover {
    border-bottom-color: transparent;
  }
  .footer-employee__nav-link:focus-visible {
    border-bottom-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__nav-link {
    padding-inline: calc(10 / 390 * 100vw);
    padding-block: calc(13.5 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.footer-employee__nav-link::before {
  content: attr(data-label);
  display: inline-block;
  line-height: 1.2;
  font-family: var(--ff-hanken);
  color: var(--c-red);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-employee__nav-link::before {
    position: absolute;
    display: block;
    white-space: nowrap;
    top: -1.5em;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-link::before {
    position: static;
    margin-bottom: 4px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__nav-link::before {
    margin-bottom: calc(4 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
  }
}
.footer-employee__nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 5px);
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: var(--c-gray);
}
.footer-employee__nav-arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 1px solid var(--c-gray);
  border-top: 1px solid var(--c-gray);
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-arrow {
    right: 10px;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__nav-arrow {
    top: 50%;
    right: calc(10 / 390 * 100vw);
    width: calc(12 / 390 * 100vw);
  }
  .footer-employee__nav-arrow::after {
    top: calc(-4 / 390 * 100vw);
    right: calc(0 / 390 * 100vw);
    width: calc(8 / 390 * 100vw);
    height: calc(8 / 390 * 100vw);
  }
}
.footer-employee__nav-parent {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-block: 0.625rem;
  font-family: var(--ff-noto-sans);
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-parent {
    cursor: pointer;
    padding-inline: 10px;
    padding-block: 20px;
  }
  .footer-employee__nav-parent.is-open .footer-employee__nav-toggle-icon::before {
    display: none;
  }
  .footer-employee__nav-parent.is-open .footer-employee__nav-toggle-icon::after {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__nav-parent {
    padding-inline: calc(10 / 390 * 100vw);
    padding-block: calc(13.5 / 390 * 100vw);
    font-family: var(--ff-noto-sans);
    font-weight: 500;
    font-size: calc(14 / 390 * 100vw);
  }
  .footer-employee__nav-parent.is-open .footer-employee__nav-toggle-icon::before {
    display: none;
  }
  .footer-employee__nav-parent.is-open .footer-employee__nav-toggle-icon::after {
    transform: rotate(180deg);
  }
}
.footer-employee__nav-parent::before {
  content: attr(data-label);
  display: inline-block;
  margin-right: 0.25em;
  font-size: 0.85em;
  line-height: 1.2;
  color: var(--c-red);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-employee__nav-parent::before {
    margin-bottom: 0.25rem;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-parent::before {
    margin-bottom: 4px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__nav-parent::before {
    margin-bottom: calc(4 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
  }
}
.footer-employee__nav-parent.is-open .footer-employee__nav-toggle-icon::before {
  display: none;
}
.footer-employee__nav-parent.is-open .footer-employee__nav-toggle-icon::after {
  transform: rotate(180deg);
}
.footer-employee__nav-toggle-icon {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer-employee__nav-toggle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    display: block;
    width: 12px;
    height: 12px;
  }
  .footer-employee__nav-toggle-icon::before, .footer-employee__nav-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 1px;
    background-color: var(--c-gray);
    transition: transform 0.3s ease;
  }
  .footer-employee__nav-toggle-icon::after {
    transform: rotate(90deg);
  }
  .footer-employee__nav-item--has-sub .footer-employee__nav-toggle-icon {
    display: block;
    right: 10px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__nav-toggle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(10 / 390 * 100vw);
    display: block;
    width: calc(12 / 390 * 100vw);
    height: calc(12 / 390 * 100vw);
  }
  .footer-employee__nav-toggle-icon::before, .footer-employee__nav-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(12 / 390 * 100vw);
    height: 1px;
    background-color: var(--c-gray);
    transition: transform 0.3s ease;
  }
  .footer-employee__nav-toggle-icon::after {
    transform: rotate(90deg);
  }
  .global-nav__item--has-sub .footer-employee__nav-toggle-icon {
    display: block;
    right: calc(10 / 390 * 100vw);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__sublist {
    display: none;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__sublist {
    margin-top: calc(10 / 390 * 100vw);
    padding-bottom: calc(25 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .footer-employee__subitem + .footer-employee__subitem {
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__subitem + .footer-employee__subitem {
    -webkit-margin-before: calc(20 / 390 * 100vw);
            margin-block-start: calc(20 / 390 * 100vw);
  }
}
.footer-employee__sublink {
  position: relative;
  padding: 0;
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
  font-family: var(--ff-noto-sans);
  color: var(--c-gray);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.3;
}
.footer-employee__sublink, .footer-employee__sublink:link, .footer-employee__sublink:visited, .footer-employee__sublink:hover, .footer-employee__sublink:active {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.footer-employee__sublink::before {
  content: "-";
  position: absolute;
  top: 43%;
  right: 0;
  left: 10px;
  display: inline-block;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 14px;
  color: var(--c-gray);
}
@media screen and (max-width: 767px) {
  .footer-employee__sublink {
    -webkit-padding-start: calc(36 / 390 * 100vw);
            padding-inline-start: calc(36 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
  .footer-employee__sublink::before {
    top: 43%;
    left: calc(24 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .footer-employee__sublink:hover {
    text-decoration: underline;
  }
}
.footer-employee__sublink:focus-visible {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .footer-employee__subnav-list {
    padding-left: 40px;
    border-left: 1px solid #dadada;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__subnav-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
    padding-left: 0;
    border-left: none;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__subnav-list {
    -webkit-margin-before: calc(35 / 390 * 100vw);
            margin-block-start: calc(35 / 390 * 100vw);
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__subnav-item {
    border-left: 1px solid var(--c-gray);
    border-right: 1px solid var(--c-gray);
    line-height: 1;
  }
  .footer-employee__subnav-item:not(:last-child) {
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__subnav-item:not(:last-child) {
    border-right: 1px solid var(--c-gray);
  }
  .footer-employee__subnav-item:nth-of-type(even) {
    border-left: none;
  }
  .footer-employee__subnav-item:nth-of-type(2) {
    margin-right: 1em;
  }
  .footer-employee__subnav-item:nth-of-type(n+3) {
    -webkit-margin-before: calc(25 / 390 * 100vw);
            margin-block-start: calc(25 / 390 * 100vw);
  }
}
.footer-employee__subnav-link {
  font-weight: 500;
}
.footer-employee__subnav-link, .footer-employee__subnav-link:link, .footer-employee__subnav-link:visited, .footer-employee__subnav-link:hover, .footer-employee__subnav-link:active {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer-employee__subnav-link {
    font-size: 0.875rem;
    line-height: 3;
  }
}
@media screen and (max-width: 1024px) {
  .footer-employee__subnav-link {
    padding-inline: 0.5em 0.6em;
    font-size: 13px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .footer-employee__subnav-link {
    padding-inline: calc(5 / 390 * 100vw) calc(6 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .footer-employee__subnav-link:hover {
    text-decoration: underline;
  }
}
.footer-employee__subnav-link:focus-visible {
  text-decoration: underline;
}

.interview-related {
  position: relative;
  z-index: 0;
}
.interview-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 436px;
  background-image: linear-gradient(180deg, #FF0026 0%, #D80020 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .interview-related::before {
    height: calc(230 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .interview-related {
    padding-block: 4.375rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .interview-related {
    padding-block: calc(16 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
}
.interview-related__title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: none;
  text-align: center;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 965px) {
  .interview-related__title {
    width: 100%;
    padding-inline: 15px;
  }
}
@media screen and (min-width: 768px) {
  .interview-related__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .interview-related__title {
    padding-inline: calc(20 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
  }
}
.interview-related__title::before {
  content: attr(data-label);
  display: block;
  line-height: 1.5;
  font-family: var(--ff-hanken);
  color: var(--c-white);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .interview-related__title::before {
    margin-bottom: 0.3125rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-related__title::before {
    margin-bottom: 3.7px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .interview-related__title::before {
    margin-bottom: calc(3.7 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .interview-related__slider {
    margin-top: calc(14 / 390 * 100vw);
  }
}

/* -------------------- スライダー -------------------- */
.card-slider {
  position: relative;
  width: 100%;
  padding: 25px 0 60px;
}
@media screen and (min-width: 768px) {
  .card-slider {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .card-slider {
    padding: calc(10 / 390 * 100vw) calc(0 / 390 * 100vw) calc(0 / 390 * 100vw);
  }
}

.card-slider .swiper-wrapper {
  display: flex;
}

.cardSwiper {
  width: 100%;
  padding-bottom: 40px;
  /* カードデザイン */
}
.cardSwiper .swiper-wrapper {
  align-items: stretch;
}
.cardSwiper .swiper-slide {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .cardSwiper .swiper-slide {
    width: calc(170 / 390 * 100vw);
  }
}
.cardSwiper .card {
  position: relative;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cardSwiper .card::after {
  content: attr(data-label);
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  background-image: linear-gradient(0deg, #2C2C2C 0%, #070707 100%);
  font-family: var(--ff-hanken);
  color: var(--c-white);
  font-weight: 500;
  transform: rotateZ(90deg) translateX(100%);
  transform-origin: top right;
}
@media screen and (min-width: 768px) {
  .cardSwiper .card::after {
    padding: 5px 20px 5px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .cardSwiper .card::after {
    padding: calc(0 / 390 * 100vw) calc(10 / 390 * 100vw) calc(0 / 390 * 100vw);
    font-size: calc(8 / 390 * 100vw);
  }
}
.cardSwiper .card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.cardSwiper .card__link img {
  transition: transform 0.5s ease;
}
@media (any-hover: hover) {
  .cardSwiper .card__link:hover img {
    transform: scale(1.1);
  }
}
.cardSwiper .card__link:focus-visible img {
  transform: scale(1.1);
}
.cardSwiper .card__image-holder {
  flex-grow: 1;
  overflow: hidden;
}
.cardSwiper .card__image {
  flex-shrink: 0;
  width: 100%;
}
.cardSwiper .card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.cardSwiper .card__job {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .cardSwiper .card__job {
    margin: 20px 0 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .cardSwiper .card__job {
    margin-top: calc(12.47 / 390 * 100vw);
    font-size: calc(9 / 390 * 100vw);
  }
}
.cardSwiper .card__name {
  font-family: var(--ff-hanken);
  color: var(--c-red);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .cardSwiper .card__name {
    margin-top: -5px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .cardSwiper .card__name {
    margin-top: calc(-3 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }
}
.cardSwiper .card__department {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .cardSwiper .card__department {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .cardSwiper .card__department {
    margin-top: calc(3 / 390 * 100vw);
    font-size: calc(8 / 390 * 100vw);
  }
}
.cardSwiper .card__year {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .cardSwiper .card__year {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .cardSwiper .card__year {
    margin-top: calc(3 / 390 * 100vw);
    font-size: calc(8 / 390 * 100vw);
  }
}
/* next / prev ボタン */
.swiper-button-prev,
.swiper-button-next {
  color: transparent;
  background-color: var(--c-white);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px;
}

/* ボタン */
.card-slider .btn-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 965px;
  margin: 0 auto;
  margin-top: 3.125rem;
}
@media (max-width: 965px) {
  .card-slider .btn-wrap {
    width: 100%;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .card-slider .btn-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.card-slider .btn-wrap .slider-controlbar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .card-slider .btn-wrap .slider-controlbar {
    position: static;
    transform: translateY(0);
    width: calc(154 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
  }
}
.card-slider .btn-wrap .btn--base {
  padding-inline: 1.875rem;
  border: 1px solid var(--c-gray);
}
@media (max-width: 800px) {
  .card-slider .btn-wrap .btn--base {
    width: 42.5%;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .card-slider .btn-wrap .btn--base {
    width: calc(241 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
}
.card-slider .btn-wrap .swiper-button-next, .card-slider .btn-wrap .swiper-button-prev {
  top: calc(50% - 8px);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--c-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .card-slider .btn-wrap .swiper-button-next, .card-slider .btn-wrap .swiper-button-prev {
    top: 50%;
    width: calc(42 / 390 * 100vw);
    height: calc(42 / 390 * 100vw);
  }
}
.card-slider .btn-wrap .swiper-button-next:hover, .card-slider .btn-wrap .swiper-button-prev:hover {
  transform: scale(1.1);
}
.card-slider .btn-wrap .swiper-button-next:hover::after, .card-slider .btn-wrap .swiper-button-prev:hover::after {
  transform: scale(0.9090909091) translate(-50%, -50%);
}
.card-slider .btn-wrap .swiper-button-next:focus-visible, .card-slider .btn-wrap .swiper-button-prev:focus-visible {
  transform: scale(1.1);
}
.card-slider .btn-wrap .swiper-button-next:focus-visible::after, .card-slider .btn-wrap .swiper-button-prev:focus-visible::after {
  transform: scale(0.9090909091) translate(-50%, -50%);
}
.card-slider .btn-wrap .swiper-button-next {
  right: 0;
}
.card-slider .btn-wrap .swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url(/recruit/new_employee/assets/img/common/icon_arr-b.svg) no-repeat center;
  background-size: contain;
  transition: none;
}
.card-slider .btn-wrap .swiper-button-next::after:hover {
  transform: scale(1.1);
}
.card-slider .btn-wrap .swiper-button-next::after:hover::after {
  transform: scale(0.9090909091) translate(-50%, -50%);
}
.card-slider .btn-wrap .swiper-button-next::after:focus-visible {
  transform: scale(1.1);
}
.card-slider .btn-wrap .swiper-button-next::after:focus-visible::after {
  transform: scale(0.9090909091) translate(-50%, -50%);
}
.card-slider .btn-wrap .swiper-button-prev {
  left: 0;
}
.card-slider .btn-wrap .swiper-button-prev::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url(/recruit/new_employee/assets/img/common/icon_arl-b.svg) no-repeat center;
  background-size: contain;
  transition: none;
}

/* -------------------- 再生/停止ボタン -------------------- */
.btn-wrap .swiper-toggle {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--c-gray);
  background-color: var(--c-white);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn-wrap .swiper-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url(/recruit/new_employee/assets/img/common/icon_pause-b.svg) no-repeat center;
  background-size: contain;
  transition: none;
}
.btn-wrap .swiper-toggle.paused::before {
  background: url(/recruit/new_employee/assets/img/common/icon_play-b.svg) no-repeat center;
  background-size: contain;
}
.btn-wrap .swiper-toggle:hover {
  transform: scale(1.1);
}
.btn-wrap .swiper-toggle:hover::before {
  transform: translate(-50%, -50%) scale(0.9090909091);
}
.btn-wrap .swiper-toggle:focus-visible {
  transform: scale(1.1);
}
.btn-wrap .swiper-toggle:focus-visible::before {
  transform: translate(-50%, -50%) scale(0.9090909091);
}
@media screen and (max-width: 767px) {
  .btn-wrap .swiper-toggle {
    width: calc(42 / 390 * 100vw);
    height: calc(42 / 390 * 100vw);
  }
}

.interview-links {
  position: relative;
  background-image: var(--grad-gray);
}
@media screen and (min-width: 768px) {
  .interview-links::after {
    content: "";
    opacity: 0.7;
    position: absolute;
    top: -62px;
    right: 26px;
    width: 310px;
    height: 310px;
    background: url(/recruit/new_employee/assets/img/common/deco_interviewlinks.svg) no-repeat center/cover;
    pointer-events: none;
    mix-blend-mode: normal;
  }
}
@media screen and (min-width: 768px) {
  .interview-links__inner {
    position: relative;
    z-index: 1;
    padding-block: 5rem 6.25rem;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .interview-links__inner {
    padding-block: calc(37 / 390 * 100vw) calc(35.5 / 390 * 100vw);
    padding-inline: calc(20 / 390 * 100vw);
  }
}
.interview-links__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .interview-links__title {
    margin-bottom: 3.25rem;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .interview-links__title {
    margin-bottom: calc(25.7 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .JS .interview-links__title {
    margin-bottom: calc(25.7 / 390 * 100vw);
  }
}
.interview-links__title::before {
  content: attr(data-label);
  display: block;
  font-family: var(--ff-hanken);
  line-height: 1.5;
  font-weight: 500;
  color: var(--c-red);
}
@media screen and (min-width: 768px) {
  .interview-links__title::before {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-links__title::before {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .interview-links__title::before {
    font-size: calc(11 / 390 * 100vw);
  }
}
.interview-links__cards {
  display: flex;
}
@media screen and (min-width: 768px) {
  .interview-links__cards {
    width: 620px;
    margin-inline: auto;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .interview-links__cards {
    width: 100%;
    gap: calc(20 / 390 * 100vw);
  }
}
.interview-links__link, .interview-links__link:link, .interview-links__link:visited, .interview-links__link:hover, .interview-links__link:active {
  text-decoration: none;
  color: var(--c-gray);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .interview-links__link span {
    display: block;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .interview-links__link {
    display: block;
  }
}
@media (any-hover: hover) {
  .interview-links__link:hover .interview-links__image {
    transform: scale(1.1);
  }
  .interview-links__link:hover .interview-links__button::after {
    transform: translate(10px, -50%);
  }
}
.interview-links__link:focus-visible .interview-links__image {
  transform: scale(1.1);
}
.interview-links__link:focus-visible .interview-links__button::after {
  transform: translate(10px, -50%);
}
.interview-links__image {
  transition: transform 0.5s ease;
}
.interview-links__image img {
  display: block;
  width: 100%;
  height: auto;
}
.interview-links__button {
  position: relative;
  color: var(--c-gray);
  text-decoration: none;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .interview-links__button {
    -webkit-padding-before: 0.3125rem;
            padding-block-start: 0.3125rem;
    -webkit-padding-start: 0.3125rem;
            padding-inline-start: 0.3125rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .interview-links__button {
    -webkit-padding-before: calc(5 / 390 * 100vw);
            padding-block-start: calc(5 / 390 * 100vw);
    -webkit-padding-start: calc(5 / 390 * 100vw);
            padding-inline-start: calc(5 / 390 * 100vw);
    font-size: calc(11.2 / 390 * 100vw);
  }
}
.interview-links__button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(/recruit/new_employee/assets/img/common/icon_arr-b.svg) no-repeat left center;
  background-size: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .interview-links__button::after {
    width: calc(8.4 / 390 * 100vw);
    height: calc(7 / 390 * 100vw);
    right: calc(3 / 390 * 100vw);
  }
}

.information-links {
  position: relative;
  background-image: var(--grad-gray);
}
@media screen and (min-width: 768px) {
  .information-links::after {
    content: "";
    opacity: 0.7;
    position: absolute;
    top: -62px;
    right: 0;
    width: 206px;
    height: 260px;
    background: url(/recruit/new_employee/assets/img/common/deco_information.svg) no-repeat center/cover;
    pointer-events: none;
    mix-blend-mode: normal;
  }
}
@media screen and (min-width: 768px) {
  .information-links__inner {
    padding-block: 5rem 6.25rem;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .information-links__inner {
    padding-block: calc(37 / 390 * 100vw) calc(35.5 / 390 * 100vw);
    padding-inline: calc(20 / 390 * 100vw);
  }
}
.information-links__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .information-links__title {
    margin-bottom: 3.25rem;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .information-links__title {
    margin-bottom: calc(25.7 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .JS .information-links__title {
    margin-bottom: calc(25.7 / 390 * 100vw);
  }
}
.information-links__title::before {
  content: attr(data-label);
  display: block;
  font-family: var(--ff-hanken);
  line-height: 1.5;
  font-weight: 500;
  color: var(--c-red);
}
@media screen and (min-width: 768px) {
  .information-links__title::before {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .information-links__title::before {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .information-links__title::before {
    font-size: calc(11 / 390 * 100vw);
  }
}
.information-links__cards {
  display: flex;
}
@media screen and (min-width: 768px) {
  .information-links__cards {
    width: 100%;
    max-width: 950px;
    margin-inline: auto;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .information-links__cards {
    width: 100%;
    gap: calc(20 / 390 * 100vw);
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .information-links__card {
    flex-basis: calc(50% - 2.5641025641vw);
  }
}
.information-links__link, .information-links__link:link, .information-links__link:visited, .information-links__link:hover, .information-links__link:active {
  text-decoration: none;
  color: var(--c-gray);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .information-links__link span {
    display: block;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .information-links__link {
    display: block;
  }
}
@media (any-hover: hover) {
  .information-links__link:hover .information-links__image {
    transform: scale(1.1);
  }
  .information-links__link:hover .information-links__button::after {
    transform: translate(10px, -50%);
  }
}
.information-links__link:focus-visible .information-links__image {
  opacity: 0.8;
}
.information-links__link:focus-visible .information-links__button::after {
  transform: translate(10px, -50%);
}
.information-links__image {
  transition: transform 0.5s ease;
}
.information-links__image img {
  display: block;
  width: 100%;
  height: auto;
}
.information-links__button {
  position: relative;
  color: var(--c-gray);
  text-decoration: none;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .information-links__button {
    -webkit-padding-before: 0.3125rem;
            padding-block-start: 0.3125rem;
    -webkit-padding-start: 0.3125rem;
            padding-inline-start: 0.3125rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .information-links__button {
    -webkit-padding-before: calc(5 / 390 * 100vw);
            padding-block-start: calc(5 / 390 * 100vw);
    -webkit-padding-start: calc(5 / 390 * 100vw);
            padding-inline-start: calc(5 / 390 * 100vw);
    font-size: calc(11.2 / 390 * 100vw);
  }
}
.information-links__button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(/recruit/new_employee/assets/img/common/icon_arr-b.svg) no-repeat left center;
  background-size: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .information-links__button::after {
    width: calc(8.4 / 390 * 100vw);
    height: calc(7 / 390 * 100vw);
    right: calc(3 / 390 * 100vw);
  }
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

body:hover .visually-hidden a {
  display: none !important;
}
body:hover .visually-hidden input {
  display: none !important;
}
body:hover .visually-hidden button {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc-item {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .pc-item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc-item {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .tablet-item {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .tablet-item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tablet-item {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-item {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sp-item {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-item {
    display: block;
  }
}

/* -------------------- ボタン -------------------- */
.btn {
  position: relative;
  border: 1px solid;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.btn, .btn:link, .btn:visited, .btn:hover, .btn:active {
  display: inline-block;
  text-decoration: none;
  color: var(--c-gray);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn {
    width: 21.25rem;
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    width: calc(240 / 390 * 100vw);
    padding: calc(11 / 390 * 100vw) calc(25 / 390 * 100vw) calc(11 / 390 * 100vw) calc(25 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.3125rem;
  display: inline-block;
  width: 0.75rem;
  height: 1px;
  background-color: var(--c-gray);
  transition: transform 0.3s ease, background-color 0.3s;
}
.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg) translateY(-50%);
  border-right: 1px solid var(--c-gray);
  border-top: 1px solid var(--c-gray);
  transition: transform 0.3s ease, border-color 0.3s;
}
@media (any-hover: hover) {
  .btn:hover::before {
    transform: translate(0.5rem, -50%);
    background-color: var(--c-white);
  }
  .btn:hover::after {
    transform: translate(0.625rem, calc(-50% + 1px)) rotate(45deg);
    border-color: var(--c-white);
  }
}
.btn:focus-visible::before {
  transform: translate(0.5rem, -50%);
  background-color: var(--c-white);
}
.btn:focus-visible::after {
  transform: translate(0.625rem, calc(-50% + 1px)) rotate(45deg);
  border-color: var(--c-white);
}
.btn--base {
  color: var(--c-gray);
  border-color: var(--c-white);
  background-color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .btn--base {
    border-radius: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .btn--base {
    border-radius: calc(70 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .btn--base:hover {
    background-color: var(--c-gray);
    color: var(--c-white);
    border-color: var(--c-gray);
  }
}
.btn--base:focus-visible {
  background-color: var(--c-gray);
  color: var(--c-white);
  border-color: var(--c-gray);
}
.btn--line {
  border-color: var(--c-white);
  border-inline: none;
  vertical-align: middle;
}
.btn--line, .btn--line:link, .btn--line:visited, .btn--line:hover, .btn--line:active {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-white);
  cursor: pointer;
}
.btn--line::before, .btn--line::after {
  content: "";
}
.btn--line::before {
  display: none;
}
.btn--line::after {
  content: "";
  top: 50%;
  right: 1.25rem;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-white);
  border-radius: 40px;
  background: url(/recruit/new_employee/assets/img/common/icon_arr-w.svg) no-repeat center/13px 11px;
  transform: translateY(-50%);
  transform-origin: center;
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .btn--line::after {
    width: calc(28 / 390 * 100vw);
    height: calc(28 / 390 * 100vw);
    border-radius: calc(28 / 390 * 100vw);
    background-size: calc(13 / 390 * 100vw) calc(11 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .btn--line {
    padding: 1.5625rem 0.625rem 1.6875rem 0.625rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .btn--line {
    padding: calc(17 / 390 * 100vw) calc(10 / 390 * 100vw) calc(16 / 390 * 100vw) calc(7 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .btn--line:hover::after {
    transform: translateY(-50%) scale(1.1);
    background: url(/recruit/new_employee/assets/img/common/icon_arr-w.svg) no-repeat center/13px 11px;
  }
}
.btn--line:focus-visible::after {
  transform: translateY(-50%) scale(1.1);
  background: url(/recruit/new_employee/assets/img/common/icon_arr-w.svg) no-repeat center/13px 11px;
}

/* -------------------- アンカーリンク -------------------- */
.anchor-links {
  display: flex;
  margin-block: 3.75rem 5rem;
  margin-inline: auto;
  border-left: dashed 1px #BCBCBC;
}
@media screen and (max-width: 767px) {
  .anchor-links {
    max-width: 100%;
    margin-block: calc(20 / 390 * 100vw) calc(30 / 390 * 100vw);
    margin-inline: calc(20 / 390 * 100vw);
  }
}
.anchor-links__item {
  flex: 1 1 auto;
  border-right: dashed 1px #BCBCBC;
}
.anchor-links a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: var(--c-gray);
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}
.anchor-links a::after {
  content: "";
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  display: block;
  width: 12px;
  height: 10px;
  background: url(/recruit/new_employee/assets/img/common/icon_arr-b.svg) no-repeat center center;
  transition: bottom 0.3s ease;
}
@media screen and (min-width: 768px) {
  .anchor-links a {
    padding: 0.25rem 2.25rem 1.625rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .anchor-links a {
    padding: calc(12 / 390 * 100vw) calc(12 / 390 * 100vw) calc(29 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .anchor-links a:hover::after {
    bottom: 0rem;
  }
}
.anchor-links a:focus-visible::after {
  bottom: 0rem;
}
.anchor-links a span {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .anchor-links a span {
    display: flex;
    align-items: center;
    height: 2.85em;
  }
}
/* -------------------- モーダル -------------------- */
.video-modal__trigger {
  overflow: hidden;
}
@media (any-hover: hover) {
  .video-modal__trigger:hover img {
    transform: scale(1.1);
  }
}
.video-modal__trigger:focus-visible img {
  transform: scale(1.1);
}
.video-modal__trigger:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}
.video-modal__trigger:focus:focus:not(:focus-visible) {
  outline: none;
}
.video-modal__trigger img {
  display: block;
  transition: transform 0.3s ease;
}

.video-modal__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-modal__overlay[aria-hidden=false] {
  display: flex;
}

.video-modal__content {
  position: relative;
  max-width: 965px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .video-modal__content {
    width: calc(350 / 390 * 100vw);
  }
}

.video-modal__close {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.video-modal__close-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.video-modal__close-icon::before,
.video-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #fff;
  transform-origin: center;
}

.video-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal__body {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-modal__iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.deco01 {
  position: relative;
  width: 308px;
  height: 308px;
}
.deco01::before, .deco01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 20px solid;
}
.deco01::before {
  z-index: 0;
  -o-border-image: linear-gradient(155deg, #FF0026 0%, #D80020) 1;
     border-image: linear-gradient(155deg, #FF0026 0%, #D80020) 1;
  opacity: 0.5;
}
.deco01::after {
  z-index: 1;
  -o-border-image: linear-gradient(155deg, #FF0026 0%, #D80020) 1;
     border-image: linear-gradient(155deg, #FF0026 0%, #D80020) 1;
  opacity: 0.1;
}
/*# sourceMappingURL=common.css.map */