:root {
  --remV: 10px;
}
@media screen and (max-width: 1200px) {
  :root {
    --remV: 0.8333333333vw;
  }
}
@media screen and (max-width: 959px) {
  :root {
    --remV: 1.0427528676vw;
    --remV: 2.6041666667vw;
  }
}
body.on-modal {
  overflow: hidden;
}
body.on-modal .component-modal {
  opacity: 1;
  visibility: visible;
}
body .component-pagetop {
  position: fixed;
  bottom: calc(2 * var(--remV));
  right: calc(2 * var(--remV));
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: opacity;
}
@media screen and (max-width: 959px) {
  body .component-pagetop {
    bottom: calc(1 * var(--remV));
    right: calc(1 * var(--remV));
  }
}
body .component-pagetop a {
  width: calc(6 * var(--remV));
  height: calc(6 * var(--remV));
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #005CCA;
}
@media screen and (max-width: 959px) {
  body .component-pagetop a {
    width: calc(4 * var(--remV));
    height: calc(4 * var(--remV));
    border-radius: 100%;
  }
}
body .component-pagetop a::before {
  content: "";
  display: block;
  width: calc(1 * var(--remV));
  height: calc(1 * var(--remV));
  margin-bottom: calc(-0.2 * var(--remV));
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: -45deg;
}
@media screen and (max-width: 959px) {
  body .component-pagetop a::before {
    width: calc(0.8 * var(--remV));
    height: calc(0.8 * var(--remV));
  }
}
body.is-scrolled .component-pagetop {
  opacity: 1;
}
.layout-content {
  /*
    Josh's Custom CSS Reset
    https://www.joshwcomeau.com/css/custom-css-reset/
  */
  font-weight: 300;
  font-size: calc(1.5 * var(--remV));
  line-height: 1.8;
  font-family: Yakuhanjp, "Noto Sans JP", sans-serif;
}
.layout-content *,
.layout-content *::before,
.layout-content *::after {
  box-sizing: border-box;
}
.layout-content * {
  margin: 0;
}
.layout-content body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.layout-content img,
.layout-content picture,
.layout-content video,
.layout-content canvas,
.layout-content svg {
  display: block;
  max-width: 100%;
}
.layout-content input,
.layout-content button,
.layout-content textarea,
.layout-content select {
  font: inherit;
}
.layout-content p,
.layout-content h1,
.layout-content h2,
.layout-content h3,
.layout-content h4,
.layout-content h5,
.layout-content h6 {
  overflow-wrap: break-word;
}
.layout-content #root,
.layout-content #__next {
  isolation: isolate;
}
.layout-content ul,
.layout-content ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.layout-content img,
.layout-content picture,
.layout-content video,
.layout-content canvas,
.layout-content svg {
  height: auto;
}
.layout-content h1,
.layout-content h2,
.layout-content h3,
.layout-content h4,
.layout-content h5,
.layout-content h6 {
  font-size: inherit;
  font-weight: inherit;
}
.layout-content sup {
  font-size: 0.5em;
}
.layout-content a {
  color: #000;
  text-decoration: none;
}
.layout-content em {
  font-style: normal;
}
.layout-content img,
.layout-content iframe,
.layout-content picture {
  display: block;
  width: 100%;
}
.layout-content button {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #000;
  touch-action: manipulation;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .layout-content .only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .layout-content .only-pc {
    display: none !important;
  }
}
.layout-content .bg-white {
  background: #fff;
}
.layout-content .bg-black {
  background: #000;
}
.layout-content .text-center {
  text-align: center;
}
.layout-content .hover-scale a,
.layout-content .hover-scale button,
.layout-content .hover-scale figure {
  overflow: hidden;
}
.layout-content .hover-scale a img,
.layout-content .hover-scale button img,
.layout-content .hover-scale figure img {
  transition: scale 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: scale;
}
@media (hover: hover) {
  .layout-content .hover-scale a:hover img,
  .layout-content .hover-scale button:hover img,
  .layout-content .hover-scale figure:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .layout-content .hover-scale a:active img,
  .layout-content .hover-scale button:active img,
  .layout-content .hover-scale figure:active img {
    scale: 1.05;
  }
}
.layout-content .component-button {
  margin-top: calc(8 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .component-button {
    margin-top: calc(5 * var(--remV));
  }
}
.layout-content .component-button a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(36 * var(--remV));
  height: calc(8 * var(--remV));
  position: relative;
  border: 1px solid #005CCA;
  border-radius: calc(0.4 * var(--remV));
  color: #005CCA;
  font-size: calc(1.8 * var(--remV));
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media screen and (max-width: 959px) {
  .layout-content .component-button a {
    width: calc(30 * var(--remV));
    height: calc(5 * var(--remV));
    font-size: calc(1.5 * var(--remV));
  }
}
@media (hover: hover) {
  .layout-content .component-button a:hover {
    background-color: #005CCA;
    color: #fff;
  }
  .layout-content .component-button a:hover::before {
    background-color: #fff;
  }
}
@media (hover: none) {
  .layout-content .component-button a:active {
    background-color: #005CCA;
    color: #fff;
  }
  .layout-content .component-button a:active::before {
    background-color: #fff;
  }
}
.layout-content .component-button a::before {
  display: block;
  width: calc(1.5 * var(--remV));
  height: calc(0.4 * var(--remV));
  content: "";
  position: absolute;
  top: 50%;
  left: calc(1.5 * var(--remV));
  scale: -1 1;
  background-color: #005CCA;
  -webkit-mask: url("/recruit/assets/img/common/arrow_line-blue.svg") no-repeat center left/cover;
          mask: url("/recruit/assets/img/common/arrow_line-blue.svg") no-repeat center left/cover;
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.layout-content .page-header {
  position: relative;
  color: #fff;
}
.layout-content .page-header__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.layout-content .page-header__inner > * {
  width: 100%;
  max-width: calc(120 * var(--remV));
  margin-left: auto;
  margin-right: auto;
  padding-right: calc(3 * var(--remV));
  padding-left: calc(3 * var(--remV));
}
.layout-content .page-header__heading {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
  font-size: calc(4 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .page-header__heading {
    padding-right: calc(2 * var(--remV));
    padding-left: calc(2 * var(--remV));
    font-size: calc(2 * var(--remV));
  }
}
.layout-content .page-header__content {
  position: absolute;
  bottom: calc(3 * var(--remV));
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 959px) {
  .layout-content .page-header__content {
    bottom: calc(1.5 * var(--remV));
  }
}
.layout-content .page-header__content-inner {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.layout-content .page-header__text {
  font-weight: 300;
  font-size: calc(1.5 * var(--remV));
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .layout-content .page-header__text {
    font-size: calc(1.2 * var(--remV));
  }
}
.layout-content .page-header__name {
  margin-top: calc(1.3 * var(--remV));
  font-weight: 600;
  font-size: calc(3.4 * var(--remV));
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .layout-content .page-header__name {
    margin-top: calc(0.7 * var(--remV));
    font-size: calc(2 * var(--remV));
  }
}
.layout-content .page-header__name small {
  margin-bottom: calc(-1 * var(--remV));
  margin-left: calc(1.3 * var(--remV));
  font-weight: 300;
  font-size: calc(1.5 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .page-header__name small {
    font-size: calc(1.1 * var(--remV));
  }
}
.layout-content .page-header + * {
  margin-top: calc(6 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .page-header + * {
    margin-top: calc(3 * var(--remV));
  }
}
.layout-content .component-link {
  display: flex;
  flex-wrap: wrap;
  gap: calc(6 * var(--remV)) calc(4 * var(--remV));
  margin-top: calc(5 * var(--remV));
  text-align: center;
}
@media screen and (max-width: 959px) {
  .layout-content .component-link {
    flex-direction: column;
    gap: calc(3 * var(--remV));
    margin-top: calc(3 * var(--remV));
  }
}
.layout-content .component-link__item {
  width: calc(50% - calc(3 * var(--remV)));
}
@media screen and (max-width: 959px) {
  .layout-content .component-link__item {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .layout-content .component-link__item--slim {
    width: calc(33.333333% - calc(4 * var(--remV)));
  }
}
.layout-content .component-link__item a,
.layout-content .component-link__item button {
  display: flex;
  flex-direction: column;
  gap: calc(1.5 * var(--remV));
  width: 100%;
  color: #005CCA;
  font-weight: 600;
  font-size: calc(1.8 * var(--remV));
  line-height: 1;
}
.layout-content .component-link__item a .component-link__heading,
.layout-content .component-link__item button .component-link__heading {
  position: relative;
}
.layout-content .component-link__item a .component-link__heading::after,
.layout-content .component-link__item button .component-link__heading::after {
  display: block;
  width: calc(1.5 * var(--remV));
  height: calc(0.4 * var(--remV));
  content: "";
  position: absolute;
  top: 50%;
  right: calc(2 * var(--remV));
  translate: 0 -50%;
  background: url("/recruit/assets/img/common/arrow_line-blue.svg") no-repeat center left/cover;
}
.layout-content .component-link__item a {
  font-weight: 600;
  font-size: calc(1.8 * var(--remV));
  line-height: 1;
}
.layout-content .component-link__item button {
  font-weight: 300;
  font-size: calc(2.4 * var(--remV));
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .layout-content .component-link__item button {
    font-size: calc(1.8 * var(--remV));
    line-height: 1.2;
  }
}
.layout-content .component-link__item button .component-link__image {
  position: relative;
}
.layout-content .component-link__item button .component-link__image::before {
  display: block;
  content: "";
  width: calc(7 * var(--remV));
  height: calc(7 * var(--remV));
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  translate: -50% -50%;
  background: url("/recruit/assets/img/common/arrow_triangle.svg") no-repeat calc(2.8 * var(--remV)) center/calc(1.8 * var(--remV)) calc(2.2 * var(--remV)) #005CCA;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .layout-content .component-link__item button .component-link__image::before {
    scale: 0.64;
  }
}
.layout-content .component-link__heading {
  width: 100%;
}
.layout-content .component-link__text {
  margin-top: calc(1.4 * var(--remV));
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .layout-content .component-link__text {
    margin-top: calc(0.4 * var(--remV));
  }
}
.layout-content .component-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  text-align: center;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.layout-content .component-modal__overlay {
  position: fixed;
  inset: 0;
  opacity: 0.5;
  background-color: #000;
}
.layout-content .component-modal__content {
  height: 100%;
  overflow: auto;
}
.layout-content .component-modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: calc(70 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .component-modal__wrapper {
    min-height: auto;
  }
}
.layout-content .component-modal__inner {
  width: 100%;
  max-width: calc(86 * var(--remV));
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 959px) {
  .layout-content .component-modal__inner {
    width: calc(32.4 * var(--remV));
  }
}
.layout-content .component-modal__close {
  position: absolute;
  top: calc(-5 * var(--remV));
  right: 0;
  width: calc(4.5 * var(--remV));
  height: calc(4.5 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .component-modal__close {
    width: calc(3.4 * var(--remV));
    height: calc(3.4 * var(--remV));
    top: calc(-4.6 * var(--remV));
  }
}
.layout-content .component-modal__close button {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .layout-content .component-modal__close button:hover::before, .layout-content .component-modal__close button:hover::after {
    background-color: #005CCA;
  }
}
@media (hover: none) {
  .layout-content .component-modal__close button:active::before, .layout-content .component-modal__close button:active::after {
    background-color: #005CCA;
  }
}
.layout-content .component-modal__close button::before, .layout-content .component-modal__close button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: calc(0.3 * var(--remV));
  content: "";
  translate: -50% -50%;
  background-color: #fff;
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media screen and (max-width: 959px) {
  .layout-content .component-modal__close button::before, .layout-content .component-modal__close button::after {
    height: calc(0.2 * var(--remV));
  }
}
.layout-content .component-modal__close button::before {
  rotate: 45deg;
}
.layout-content .component-modal__close button::after {
  rotate: -45deg;
}
.layout-content .component-modal__prev, .layout-content .component-modal__next {
  position: absolute;
  top: 50%;
  width: calc(2.3 * var(--remV));
  height: calc(4.2 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .component-modal__prev, .layout-content .component-modal__next {
    width: calc(1.5 * var(--remV));
    height: calc(2.6 * var(--remV));
  }
}
@media (hover: hover) {
  .layout-content .component-modal__prev:hover button, .layout-content .component-modal__next:hover button {
    background-color: #005CCA;
  }
}
@media (hover: none) {
  .layout-content .component-modal__prev:active button, .layout-content .component-modal__next:active button {
    background-color: #005CCA;
  }
}
.layout-content .component-modal__prev button, .layout-content .component-modal__next button {
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-mask: url("/recruit/assets/img/common/arrow_line-white.svg") no-repeat center left/cover;
          mask: url("/recruit/assets/img/common/arrow_line-white.svg") no-repeat center left/cover;
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.layout-content .component-modal__prev {
  left: calc(-5.3 * var(--remV));
  rotate: -180deg;
}
@media screen and (max-width: 959px) {
  .layout-content .component-modal__prev {
    left: calc(-2.4 * var(--remV));
  }
}
.layout-content .component-modal__next {
  right: calc(-5.3 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .component-modal__next {
    right: calc(-2.4 * var(--remV));
  }
}
.layout-content .component-modal__movie {
  display: none;
}
.layout-content .component-modal__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.layout-content .component-modal__movie.is-show {
  display: block;
}
.layout-content .component-modal__text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  translate: 0 100%;
  padding-top: calc(2 * var(--remV));
  font-weight: 500;
  line-height: 1;
}
.layout-content .component-modal__alt {
  font-size: calc(1.8 * var(--remV));
}
.layout-content .component-modal__index {
  margin-top: calc(1 * var(--remV));
  font-size: calc(1.2 * var(--remV));
}
.layout-content .component-modal__index span {
  padding: 0 calc(0.4 * var(--remV));
}
.layout-content .section__inner {
  width: 100%;
  max-width: calc(120 * var(--remV));
  margin-left: auto;
  margin-right: auto;
  padding-right: calc(3 * var(--remV));
  padding-left: calc(3 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .section__inner {
    padding-right: calc(1.5 * var(--remV));
    padding-left: calc(1.5 * var(--remV));
  }
}
.layout-content .home .home-heading {
  display: flex;
  align-items: center;
  height: calc(12 * var(--remV));
  background-color: #E7EDF4;
  font-weight: 600;
  font-size: calc(3.4 * var(--remV));
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .layout-content .home .home-heading {
    height: calc(6.2 * var(--remV));
    font-size: calc(2 * var(--remV));
  }
}
.layout-content .home .home-heading span {
  width: 100%;
  max-width: calc(120 * var(--remV));
  margin-left: auto;
  margin-right: auto;
  padding-right: calc(3 * var(--remV));
  padding-left: calc(3 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .home .home-heading span {
    padding-right: calc(1.5 * var(--remV));
    padding-left: calc(1.5 * var(--remV));
  }
}
.layout-content .message__heading {
  font-weight: 600;
  font-size: calc(3.4 * var(--remV));
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .layout-content .message__heading {
    font-size: calc(2.4 * var(--remV));
    line-height: 1.4;
  }
}
.layout-content .message__subheading {
  margin-top: calc(8 * var(--remV));
  font-weight: 600;
  font-size: calc(2.8 * var(--remV));
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .layout-content .message__subheading {
    margin-top: calc(2 * var(--remV));
    font-size: calc(2 * var(--remV));
  }
}
.layout-content .message__subheading:has(small) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .layout-content .message__subheading:has(small) {
    gap: calc(0.6 * var(--remV));
    margin-top: calc(5 * var(--remV));
  }
}
.layout-content .message__subheading:has(small) small {
  color: #005CCA;
  font-weight: 300;
}
@media screen and (max-width: 959px) {
  .layout-content .message__subheading:has(small) small {
    font-size: calc(1.3 * var(--remV));
  }
}
.layout-content .message__text {
  margin-top: calc(2 * var(--remV));
}
.layout-content .message__column {
  display: flex;
  gap: calc(2 * var(--remV)) calc(6 * var(--remV));
  margin-top: calc(5 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .message__column {
    flex-direction: column;
    margin-top: calc(2 * var(--remV));
  }
}
@media screen and (min-width: 960px) {
  .layout-content .message__column:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
.layout-content .message__column-image {
  flex-shrink: 0;
  width: calc(50 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .message__column-image {
    width: 100%;
    max-width: calc(28 * var(--remV));
    margin-left: auto;
    margin-right: auto;
  }
}
.layout-content .message__column-content > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 959px) {
  .layout-content .movie {
    margin-top: calc(5 * var(--remV));
  }
}
.layout-content .office .office-nav {
  position: relative;
  z-index: 1;
}
.layout-content .office .office-nav__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(5 * var(--remV));
  position: relative;
  border: 1px solid #005CCA;
  border-radius: calc(0.4 * var(--remV));
  color: #005CCA;
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (hover: hover) {
  .layout-content .office .office-nav__button:hover {
    background-color: #005CCA;
    color: #fff;
  }
  .layout-content .office .office-nav__button:hover::before {
    background-color: #fff;
  }
}
@media (hover: none) {
  .layout-content .office .office-nav__button:active {
    background-color: #005CCA;
    color: #fff;
  }
  .layout-content .office .office-nav__button:active::before {
    background-color: #fff;
  }
}
.layout-content .office .office-nav__button::before {
  display: block;
  width: calc(1.5 * var(--remV));
  height: calc(0.4 * var(--remV));
  content: "";
  position: absolute;
  top: 50%;
  right: calc(1.5 * var(--remV));
  rotate: 90deg;
  background-color: #005CCA;
  -webkit-mask: url("/recruit/assets/img/common/arrow_line-blue.svg") no-repeat center left/cover;
          mask: url("/recruit/assets/img/common/arrow_line-blue.svg") no-repeat center left/cover;
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.layout-content .office .office-nav__button.is-clicked {
  background-color: #005CCA;
  color: #fff;
}
.layout-content .office .office-nav__button.is-clicked::before {
  background-color: #fff;
}
.layout-content .office .office-nav__button.is-clicked + .office-nav__content {
  grid-template-rows: 1fr !important;
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-nav__content {
    position: absolute;
    top: calc(100% + calc(1 * var(--remV)));
    right: 0;
    left: 0;
    display: grid;
    grid-template-rows: 0fr;
    box-shadow: 0 0 calc(1.5 * var(--remV)) rgba(0, 0, 0, 0.25);
    transition: grid-template-rows 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-nav__inner {
    overflow: hidden;
  }
}
.layout-content .office .office-nav .office-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(2 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-nav .office-nav-list {
    padding: calc(3 * var(--remV)) 0;
    border-radius: calc(0.4 * var(--remV));
    background-color: #fff;
  }
}
.layout-content .office .office-nav .office-nav-list__item {
  width: calc(25% - calc(1.5 * var(--remV)));
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-nav .office-nav-list__item {
    width: 100%;
  }
}
.layout-content .office .office-nav .office-nav-list__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 960px) {
  .layout-content .office .office-nav .office-nav-list__item a {
    width: 100%;
    height: calc(5 * var(--remV));
    position: relative;
    border: 1px solid #005CCA;
    border-radius: calc(0.4 * var(--remV));
    color: #005CCA;
    transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
@media screen and (min-width: 960px) and (hover: hover) {
  .layout-content .office .office-nav .office-nav-list__item a:hover {
    background-color: #005CCA;
    color: #fff;
  }
  .layout-content .office .office-nav .office-nav-list__item a:hover::before {
    background-color: #fff;
  }
}
@media screen and (min-width: 960px) and (hover: none) {
  .layout-content .office .office-nav .office-nav-list__item a:active {
    background-color: #005CCA;
    color: #fff;
  }
  .layout-content .office .office-nav .office-nav-list__item a:active::before {
    background-color: #fff;
  }
}
@media screen and (min-width: 960px) {
  .layout-content .office .office-nav .office-nav-list__item a::before {
    display: block;
    width: calc(1.5 * var(--remV));
    height: calc(0.4 * var(--remV));
    content: "";
    position: absolute;
    top: 50%;
    right: calc(1.5 * var(--remV));
    rotate: 90deg;
    background-color: #005CCA;
    -webkit-mask: url("/recruit/assets/img/common/arrow_line-blue.svg") no-repeat center left/cover;
            mask: url("/recruit/assets/img/common/arrow_line-blue.svg") no-repeat center left/cover;
    transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
.layout-content .office .office-list {
  display: flex;
  flex-direction: column;
}
.layout-content .office .office-list__item {
  padding-top: calc(8 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-list__item {
    padding-top: calc(5 * var(--remV));
  }
}
.layout-content .office .office-list__heading {
  position: relative;
  padding: calc(2.2 * var(--remV));
  border-bottom: 1px solid #005CCA;
  font-weight: 600;
  font-size: calc(2.8 * var(--remV));
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-list__heading {
    padding: calc(1.4 * var(--remV)) calc(1.9 * var(--remV));
    font-size: calc(2 * var(--remV));
  }
}
.layout-content .office .office-list__heading::before {
  display: block;
  width: calc(0.5 * var(--remV));
  height: calc(5.3 * var(--remV));
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background: linear-gradient(180deg, #005DCA 0%, #1F97E5 100%);
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-list__heading::before {
    width: calc(0.4 * var(--remV));
    height: calc(3.1 * var(--remV));
  }
}
.layout-content .office .office-list .office-list-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(3 * var(--remV));
  margin-top: calc(4 * var(--remV));
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-list .office-list-list {
    gap: calc(0.8 * var(--remV));
    margin-top: calc(2 * var(--remV));
  }
}
.layout-content .office .office-list .office-list-list__item {
  width: calc(33.333333% - calc(2 * var(--remV)));
}
@media screen and (max-width: 959px) {
  .layout-content .office .office-list .office-list-list__item {
    width: calc(50% - calc(0.4 * var(--remV)));
  }
}
.layout-content .office .office-list .office-list-list__item button {
  display: block;
}
@media screen and (max-width: 959px) {
  #pageTop .header-common {
    min-height: 44px;
  }
}
#pageTop .header-common .logo a {
  display: flex;
  gap: 10px;
  color: #000;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
}
#pageTop .header-common .logo a span {
  margin-top: 38px;
}
@media screen and (max-width: 959px) {
  #pageTop .header-common .logo a span {
    margin-top: 12px;
  }
}
.o-navigationUtility .icon-link {
  padding: 0 18px 0 0;
}
.o-navigationUtility .icon-link::before {
  top: calc(50% - 4px);
  left: auto;
  right: 0;
  width: 11px;
  height: 8px;
  margin: 0;
  background: #fff;
  -webkit-mask: url("/recruit/assets//img/common/icn_blank.svg") no-repeat center center/contain;
          mask: url("/recruit/assets//img/common/icn_blank.svg") no-repeat center center/contain;
}