@charset "UTF-8";
/* ******************【使用例】******************
@use '../base' as *;

.example {
  // デスクトップ（デフォルト）
  font-size: 18px;

  // タブレット以下
  @include mq('lg') {
    font-size: 16px;
  }

  // スマートフォン以下
  @include mq('md') {
    font-size: 14px;
  }

  // カスタム値
  @include mq-custom(900px) {
    font-size: 12px;
  }

  // 範囲指定（タブレットのみ）
  @include mq-range('md', 'lg') {
    color: blue;
  }
}
******************************************** */
:root {
  --r-blue: rgba(0, 147, 199, 1);
  --gradation-main: linear-gradient(90deg, #FFA4FF 0%, #7AEBFF 99.99%);
  --gradation-blue: linear-gradient(90deg, #005DAE 0%, #0093C7 100%);
  --gradation-green: linear-gradient(90deg, #00A326 0%, #70BD63 100%);
}

/**************************************
  * body
**************************************/
body.gnav-open {
  overflow: clip;
}

/**************************************
  * headeer
**************************************/
.r-header {
  position: fixed;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 10px 30px;
  z-index: 100;
}
@media screen and (max-width: 767.98px) {
  .r-header {
    padding: 10px 10px 10px 15px;
  }
}
.r-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.r-header-logo {
  position: relative;
  z-index: 120;
}
@media screen and (max-width: 767.98px) {
  .r-header-logo img {
    width: 160px;
  }
}
.r-header-link {
  display: flex;
  align-items: center;
  gap: 20px;
}
.r-header-siteName {
  font-size: clamp(0.688rem, 0.625rem + 0.267vw, 0.875rem);
  letter-spacing: 0.01em;
}
.r-header-contents {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 1180px) {
  .r-header-contents {
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/nicpartners/assets/img/recruit/bg_header_mask_sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 64px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.42s ease-out, visibility 0.42s ease-out;
    z-index: -1;
  }
}
.r-header-contents.active {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.r-header {
  /**************************************
    * hamburger
  **************************************/
}
.r-header-hamburger {
  display: none;
}
@media screen and (max-width: 1180px) {
  .r-header-hamburger {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 120;
  }
}
.r-header-hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 50%;
  height: 2px;
  background-color: var(--r-blue);
  margin: auto;
  transition: background-color 0.42s ease-out;
}
.r-header-hamburger-line::before, .r-header-hamburger-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--r-blue);
  transition: rotate 0.42s ease-out, width 0.42s ease-out;
}
.r-header-hamburger-line::before {
  top: -6px;
}
.r-header-hamburger-line::after {
  top: 6px;
}
.r-header-hamburger.active .r-header-hamburger-line {
  width: 70%;
  background-color: transparent;
}
.r-header-hamburger.active .r-header-hamburger-line::before, .r-header-hamburger.active .r-header-hamburger-line::after {
  top: 0;
}
.r-header-hamburger.active .r-header-hamburger-line::before {
  rotate: -135deg;
}
.r-header-hamburger.active .r-header-hamburger-line::after {
  rotate: 135deg;
}
.r-header {
  /**************************************
    * nav
  **************************************/
}
.r-header-nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  .r-header-nav {
    flex-direction: column;
    width: 90%;
    margin: 10px auto 0;
  }
}
.r-header-list {
  display: flex;
  gap: 30px;
  margin-right: 30px;
}
@media screen and (max-width: 1500px) {
  .r-header-list {
    gap: 2vw;
    margin-right: 2vw;
  }
}
@media screen and (max-width: 1180px) {
  .r-header-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-right: unset;
    margin-bottom: 20px;
  }
}
.r-header-list-item {
  position: relative;
}
.r-header-list-item.submenu-open .r-header-sublist {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 1180px) {
  .r-header-list-item.submenu-open .r-header-sublist {
    max-height: 200px;
    opacity: 1;
    border-bottom: 1px solid rgb(234, 234, 234);
    border-radius: 0;
    padding: 10px 0;
  }
}
.r-header-list-link {
  position: relative;
  display: block;
  font-size: 0.875rem;
}
@media screen and (max-width: 1180px) {
  .r-header-list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgb(234, 234, 234);
    transition: color 0.42s ease-out;
  }
  .r-header-list-link[aria-expanded=true] .c-arrow {
    rotate: 180deg;
    transition: rotate 0.42s ease-out;
  }
  .r-header-list-link[aria-expanded=true] .c-arrow .r-header-sublist-link::before {
    animation: unset;
  }
}
.r-header-list-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background-color: var(--r-blue);
  transform-origin: right center;
  transform: scaleX(0);
  backface-visibility: hidden;
  transition: transform 420ms;
}
@media screen and (max-width: 1180px) {
  .r-header-list-link::after {
    content: none;
  }
}
@media screen and (max-width: 1180px) {
  .r-header-list-link:hover {
    color: var(--r-blue);
  }
  .r-header-list-link:hover .c-arrow::before {
    background-color: #fff;
    animation: icon-pop 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .r-header-list-link:hover .c-arrow .c-icon {
    fill: var(--r-blue);
  }
}
.r-header-list-link:hover::after {
  transform-origin: left center;
  transform: scaleX(1);
}
.r-header-list-link[aria-current=page]::after {
  transform-origin: left center;
  transform: scaleX(1);
}
.r-header-list-link .c-arrow {
  display: none;
}
@media screen and (max-width: 1180px) {
  .r-header-list-link .c-arrow {
    display: flex;
  }
}
.r-header-sublist {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  min-width: 360px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.42s ease-out;
  margin: 0;
  padding: 40px 30px;
  z-index: 120;
}
@media screen and (max-width: 1180px) {
  .r-header-sublist {
    position: static;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: max-height 0.42s ease-out, opacity 0.42s ease-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
  }
}
.r-header-sublist-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 0.875rem;
  transition: color 0.42s;
}
.r-header-sublist-link:hover, .r-header-sublist-link:focus {
  color: var(--r-blue);
}
.r-header-sublist-link:hover .c-arrow::before, .r-header-sublist-link:focus .c-arrow::before {
  background-color: #fff;
  animation: icon-pop 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.r-header-sublist-link:hover .c-arrow .c-icon, .r-header-sublist-link:focus .c-arrow .c-icon {
  fill: var(--r-blue);
}
.r-header-sublist-link:focus {
  outline: 2px solid rgb(229, 151, 0);
  outline-offset: -2px;
}
@media screen and (max-width: 1180px) {
  .r-header-sublist-link {
    padding: 8px 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  .r-header-sublist-link:last-child {
    border-bottom: none;
  }
}
.r-header .c-arrow.-down::before {
  content: none;
}
.r-header .c-arrow.-down .c-icon.-arrow {
  width: 12px;
}
.r-header {
  /**************************************
    * button
  **************************************/
}
.r-header-button {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 1;
  padding: 10px 15px;
  transition: color 0.42s;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .r-header-button {
    text-align: center;
    width: 100%;
    padding: 14px 15px;
  }
}
@media screen and (max-width: 767.98px) {
  .r-header-button {
    font-size: 0.875rem;
  }
}
.r-header-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - 3px);
  height: calc(100% - 1.5px);
  background-color: #fff;
  border-radius: 80px;
  opacity: 0;
  transition: opacity 0.42s;
  z-index: -1;
}
@media screen and (max-width: 1180px) {
  .r-header-button::before {
    border-radius: 8px;
  }
}
.r-header-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  border-radius: 80px;
  z-index: -2;
}
@media screen and (max-width: 1180px) {
  .r-header-button::after {
    border-radius: 10px;
  }
}
.r-header-button:hover {
  color: #000;
}
.r-header-button:hover::before {
  opacity: 1;
}
.r-header-button.-newbee {
  margin-right: 5px;
}
@media screen and (max-width: 1180px) {
  .r-header-button.-newbee {
    margin-right: unset;
    margin-bottom: 10px;
  }
}
.r-header-button.-newbee::after {
  background: var(--gradation-blue);
}
.r-header-button.-career::after {
  background: var(--gradation-green);
}
.r-header {
  /**************************************
    * corp-link
  **************************************/
}
.r-header-corp-link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 5px;
  transition: color 0.3s;
}
@media screen and (max-width: 1180px) {
  .r-header-corp-link {
    justify-content: center;
    text-align: center;
    width: 90%;
    padding: 12px 0;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 767.98px) {
  .r-header-corp-link {
    font-size: 0.875rem;
  }
}
.r-header-corp-link:hover {
  color: var(--r-blue);
}
.r-header-corp-link:hover span::before {
  background-color: var(--r-blue);
}
.r-header-corp-label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
}
.r-header-corp-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 17px;
  height: 14px;
  background-color: #000;
  -webkit-mask-image: url(/wp-content/themes/nicpartners/assets/img/recruit/icon_company.svg);
          mask-image: url(/wp-content/themes/nicpartners/assets/img/recruit/icon_company.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: background-color 0.3s;
}

@media (prefers-contrast: high) {
  .r-header-sublist-link {
    border: 2px solid;
  }
  .r-header-sublist-link:focus {
    outline: 3px solid;
  }
}
@media (prefers-reduced-motion: reduce) {
  .r-header-sublist, .r-header-sublist-link {
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 1024px) {
  .r-header-list-link[aria-expanded]::after {
    transition: none;
  }
}
.r-main {
  position: relative;
  padding-top: 78px;
  overflow-x: clip;
}
@media screen and (max-width: 767.98px) {
  .r-main {
    padding-top: 60px;
  }
}
.r-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/recruit/bg_main.png);
  background-size: cover;
  background-position: top center;
  z-index: -1;
}

.r-wrapper {
  width: 90%;
  max-width: 1340px;
  margin-inline: auto;
}
.r-wrapper.max1200 {
  max-width: 1200px;
}

.r-button {
  color: #fff;
  max-width: 220px;
}
.r-button::after {
  background: var(--r-blue);
}
.r-button:hover {
  color: var(--r-blue);
}
.r-button:hover::after {
  background: #fff;
  border-color: var(--r-blue);
}
.r-button:hover .r-arrow::before {
  background-color: var(--r-blue);
}
.r-button:hover .r-arrow .r-icon {
  fill: #fff;
}
.r-button__label {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-left: 1em;
}
.r-button.-disable {
  pointer-events: none !important;
}
.r-button.-disable::after {
  background: rgb(174, 174, 174);
  border: inherit;
}
.r-button.-disable .r-arrow::before {
  border: inherit;
}
.r-button.-disable .r-arrow .r-icon {
  fill: rgb(174, 174, 174);
}

.r-arrow::before {
  background: #fff;
}
.r-arrow .r-icon {
  fill: var(--r-blue);
}

.r-cta {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.98px) {
  .r-cta {
    padding-bottom: 60px;
  }
}
.r-cta-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1rem, 0.833rem + 0.711vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .r-cta-title {
    font-size: clamp(1.143rem, 0.476rem + 0.711vw, 1.714rem);
  }
}
.r-cta-title::before, .r-cta-title::after {
  content: "";
  display: block;
  width: 494px;
  height: 2px;
  background: var(--gradation-main);
}
@media screen and (max-width: 1500px) {
  .r-cta-title::before, .r-cta-title::after {
    width: 34.9333333333vw;
  }
}
@media screen and (max-width: 575.98px) {
  .r-cta-title::before, .r-cta-title::after {
    width: 27.2vw;
  }
}
.r-cta-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .r-cta-options {
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
}
.r-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 48%;
  max-width: 580px;
  padding: 60px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .r-cta-card {
    padding: 4vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-cta-card {
    width: 100%;
    max-width: unset;
    padding: 8.8vw 4.2666666667vw;
  }
}
.r-cta-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.r-cta-card:hover::after {
  opacity: 1;
}
.r-cta-card.-newbee {
  background-image: var(--gradation-blue);
}
.r-cta-card.-newbee::after {
  background-image: linear-gradient(270deg, #005DAE 0%, #0093C7 100%);
}
.r-cta-card.-career {
  background-image: var(--gradation-green);
}
.r-cta-card.-career::after {
  background-image: linear-gradient(270deg, #00A326 0%, #70BD63 100%);
}
.r-cta-card-title {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  z-index: 1;
}
.r-cta-category {
  font-family: var(--ff-chillax);
  font-size: clamp(0.813rem, 0.75rem + 0.267vw, 1rem);
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .r-cta-category {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
  }
}
.r-cta-type {
  font-size: clamp(1.25rem, 1.083rem + 0.711vw, 1.75rem);
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .r-cta-type {
    font-size: clamp(1.429rem, 0.762rem + 0.711vw, 2rem);
  }
}
.r-cta .c-button {
  color: #000;
  width: 48%;
  max-width: 220px;
}
@media screen and (max-width: 767.98px) {
  .r-cta .c-button {
    width: auto;
    min-width: 150px;
  }
}
.r-cta .c-button::after {
  border: unset;
}
.r-cta .c-button:hover {
  color: #fff;
}
.r-cta .c-button__label {
  display: block;
  text-align: center;
  width: 100%;
  padding-left: 1em;
}
@media screen and (max-width: 767.98px) {
  .r-cta .c-button__label {
    padding-left: unset;
  }
}

.r-page-header {
  position: relative;
  padding: 50px 0 100px;
}
@media screen and (max-width: 767.98px) {
  .r-page-header {
    padding: 30px 0 80px;
  }
}
.r-page-header-inner {
  padding: 0 80px;
}
@media screen and (max-width: 767.98px) {
  .r-page-header-inner {
    padding: 0 20px;
  }
}
.r-page-header-title {
  position: relative;
  font-size: clamp(1.5rem, 1.125rem + 1.6vw, 2.625rem);
  font-weight: 500;
  margin-bottom: 47px;
}
@media screen and (max-width: 767.98px) {
  .r-page-header-title {
    font-size: clamp(1.714rem, 0.714rem + 1.6vw, 3rem);
    margin-bottom: 24px;
  }
}
.r-page-header-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 2px;
  background: var(--gradation-main);
}
.r-page-header .r-scroll-container {
  position: absolute;
  width: 100%;
  overflow: clip;
  bottom: 24px;
  left: 0;
  z-index: -1;
}
.r-page-header .r-scroll-wrapper {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
}
.r-page-header .r-scroll-text {
  color: rgb(245, 245, 245);
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(5rem, 3.75rem + 5.333vw, 8.75rem);
  font-weight: 500;
  padding: 0 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .r-page-header .r-scroll-text {
    font-size: clamp(5.714rem, 2.381rem + 5.333vw, 10rem);
  }
}
.r-page-header .-triangle_3D_page-header {
  position: absolute;
  top: 0;
  right: 80px;
  width: 104px;
  height: 90px;
}
@media screen and (max-width: 767.98px) {
  .r-page-header .-triangle_3D_page-header {
    top: unset;
    bottom: 0;
    right: 10px;
    width: 64px;
    height: 62px;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .r-scroll-wrapper {
    animation: none !important;
  }
  /* 動きを止めた時の代替表示 */
  .scroll-container::after {
    content: "（アニメーション停止中）";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
    opacity: 0.4;
  }
}
.r-sp-only {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .r-sp-only {
    display: inline;
  }
}

@media screen and (max-width: 767.98px) {
  .r-pc-only {
    display: none;
  }
}

/* スクリーンリーダー専用テキスト */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.r-top-mv-contents {
  position: relative;
  width: 89.3333333333vw;
  margin-left: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .r-top-mv-contents {
    width: 88.1578947368vw;
    margin-bottom: 20px;
  }
}
.r-top-mv-image {
  display: block;
  text-align: right;
}
.r-top-mv-catchcopy {
  position: absolute;
  top: 0;
  left: -43px;
  display: flex;
  flex-direction: column;
  color: var(--r-blue);
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(4.375rem, 1.667rem + 11.556vw, 12.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.03em;
  opacity: 0.2;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.98px) {
  .r-top-mv-catchcopy {
    top: 6.6666666667vw;
    left: -20px;
    font-size: clamp(5rem, 1.905rem + 11.556vw, 14.286rem);
  }
}
.r-top-mv-maintext {
  position: absolute;
  bottom: 3.3333333333vw;
  left: 21.4666666667vw;
  right: 32.8666666667vw;
  width: 31.8666666667vw;
  aspect-ratio: 478/173;
}
@media screen and (max-width: 767.98px) {
  .r-top-mv-maintext {
    top: 51.7333333333vw;
    bottom: unset;
    left: -22px;
    right: 0;
    width: 63.2vw;
  }
}
.r-top-mv-maintext svg {
  width: 100%;
  height: 100%;
}
.r-top-mv-object {
  position: absolute;
  bottom: -52px;
  right: 14px;
  width: 8.8vw;
}
@media screen and (max-width: 767.98px) {
  .r-top-mv-object {
    bottom: -24px;
    right: 0;
    width: 19.4666666667vw;
  }
}
.r-top-mv-lead {
  position: relative;
  padding: 20px;
}
.r-top-mv-lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 100px;
  height: 3px;
  background-color: var(--r-blue);
}
.r-top-mv-lead-text {
  font-size: clamp(0.875rem, 0.667rem + 0.889vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .r-top-mv-lead-text {
    font-size: clamp(1rem, 0.111rem + 0.889vw, 1.714rem);
  }
}

/**************************************
  * @keyframes
**************************************/
@keyframes slideUpSharp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.r-top-summary {
  padding: 120px 0 100px;
  overflow-x: clip;
}
@media screen and (max-width: 767.98px) {
  .r-top-summary {
    padding: 80px 0 60px;
  }
}
.r-top-summary-copy {
  position: relative;
  color: var(--r-blue);
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(5rem, 3.542rem + 6.222vw, 9.375rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  opacity: 0.1;
  width: -moz-fit-content;
  width: fit-content;
  margin: -100px 0 -40px 55vw;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .r-top-summary-copy {
    font-size: clamp(5.714rem, 3.381rem + 6.222vw, 10.714rem);
    margin: -60px 0 -20px;
  }
}
.r-top-summary .r-button {
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .r-top-summary .r-button {
    max-width: unset;
    margin-right: auto;
  }
}

/**************************************
  * Message
**************************************/
.r-top-message {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 660px;
  align-items: flex-end;
  width: 90%;
  max-width: 1340px;
  height: 417px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767.98px) {
  .r-top-message {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    width: 100%;
    height: unset;
    margin-bottom: 60px;
  }
}
.r-top-message-contents {
  position: relative;
  grid-column-start: 2;
  max-width: 660px;
  padding: 50px 64px;
  margin-left: auto;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .r-top-message-contents {
    width: 44vw;
    padding: 3.3333333333vw 4.2666666667vw;
  }
}
@media screen and (max-width: 1180px) {
  .r-top-message-contents {
    width: 94%;
  }
}
@media screen and (max-width: 767.98px) {
  .r-top-message-contents {
    padding: 5.3333333333vw 10.6666666667vw;
    margin-top: -13.3333333333vw;
    border-radius: 25px 0 0 25px;
  }
}
.r-top-message-lead {
  color: var(--r-blue);
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(0.75rem, 0.708rem + 0.178vw, 0.875rem);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--r-blue);
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .r-top-message-lead {
    font-size: clamp(0.857rem, 0.679rem + 0.178vw, 1rem);
    margin-bottom: 10px;
  }
}
.r-top-message-title {
  font-size: clamp(1.5rem, 1.042rem + 1.956vw, 2.875rem);
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .r-top-message-title {
    font-size: clamp(1.714rem, 0.762rem + 1.956vw, 3.286rem);
    margin-bottom: 10px;
  }
}
.r-top-message-text {
  margin-bottom: 16px;
}
.r-top-message-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 850px;
}
@media screen and (max-width: 1500px) {
  .r-top-message-image {
    width: 56.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-top-message-image {
    position: relative;
    width: 80%;
    margin-right: auto;
  }
}

/**************************************
  * company
**************************************/
.r-top-company {
  position: relative;
  display: grid;
  grid-template-columns: 660px 1fr;
  align-items: flex-end;
  width: 90%;
  max-width: 1340px;
  height: 417px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767.98px) {
  .r-top-company {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    width: 100%;
    height: unset;
    margin-bottom: 60px;
  }
}
.r-top-company-contents {
  position: relative;
  max-width: 660px;
  padding: 50px 64px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .r-top-company-contents {
    width: 44vw;
    padding: 3.3333333333vw 4.2666666667vw;
  }
}
@media screen and (max-width: 1180px) {
  .r-top-company-contents {
    width: 94%;
  }
}
@media screen and (max-width: 767.98px) {
  .r-top-company-contents {
    padding: 5.3333333333vw 10.6666666667vw;
    margin-right: auto;
    margin-top: -13.3333333333vw;
    border-radius: 0 25px 25px 0;
  }
}
.r-top-company-lead {
  color: var(--r-blue);
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(0.75rem, 0.708rem + 0.178vw, 0.875rem);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--r-blue);
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .r-top-company-lead {
    font-size: clamp(0.857rem, 0.679rem + 0.178vw, 1rem);
    margin-bottom: 10px;
  }
}
.r-top-company-title {
  font-size: clamp(1.5rem, 1.042rem + 1.956vw, 2.875rem);
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .r-top-company-title {
    font-size: clamp(1.714rem, 0.762rem + 1.956vw, 3.286rem);
    margin-bottom: 10px;
  }
}
.r-top-company-text {
  margin-bottom: 16px;
}
.r-top-company-image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 850px;
}
@media screen and (max-width: 1500px) {
  .r-top-company-image {
    width: 56.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-top-company-image {
    position: relative;
    width: 80%;
  }
}

/**************************************
  * workstyle
**************************************/
.r-top-workstyle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 660px;
  align-items: flex-end;
  width: 90%;
  max-width: 1340px;
  height: 417px;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .r-top-workstyle {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    width: 100%;
    height: unset;
  }
}
.r-top-workstyle-contents {
  position: relative;
  grid-column-start: 2;
  max-width: 660px;
  padding: 50px 64px;
  margin-left: auto;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .r-top-workstyle-contents {
    width: 44vw;
    padding: 3.3333333333vw 4.2666666667vw;
  }
}
@media screen and (max-width: 1180px) {
  .r-top-workstyle-contents {
    width: 94%;
  }
}
@media screen and (max-width: 767.98px) {
  .r-top-workstyle-contents {
    padding: 5.3333333333vw 10.6666666667vw;
    margin-top: -13.3333333333vw;
    border-radius: 25px 0 0 25px;
  }
}
.r-top-workstyle-lead {
  color: var(--r-blue);
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(0.75rem, 0.708rem + 0.178vw, 0.875rem);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--r-blue);
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .r-top-workstyle-lead {
    font-size: clamp(0.857rem, 0.679rem + 0.178vw, 1rem);
    margin-bottom: 10px;
  }
}
.r-top-workstyle-title {
  font-size: clamp(1.5rem, 1.042rem + 1.956vw, 2.875rem);
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .r-top-workstyle-title {
    font-size: clamp(1.714rem, 0.762rem + 1.956vw, 3.286rem);
    margin-bottom: 10px;
  }
}
.r-top-workstyle-text {
  margin-bottom: 16px;
}
.r-top-workstyle-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 850px;
}
@media screen and (max-width: 1500px) {
  .r-top-workstyle-image {
    width: 56.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-top-workstyle-image {
    position: relative;
    width: 80%;
    margin-right: auto;
  }
}

/**************************************
  * objects
**************************************/
.r-objects {
  position: absolute;
  width: 100%;
  height: 100%;
}

.r-object {
  position: absolute;
}
.r-object.-triangle-gradation {
  top: -62px;
  left: 0;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 1500px) {
  .r-object.-triangle-gradation {
    top: -4.1333333333vw;
    width: 8vw;
    height: 8vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-object.-triangle-gradation {
    top: -37px;
    left: 20px;
    width: 16vw;
    height: 16vw;
  }
}
.r-object.-multi-circhle {
  top: -65px;
  left: 18%;
  width: 283px;
  height: 283px;
  z-index: -1;
}
@media screen and (max-width: 1500px) {
  .r-object.-multi-circhle {
    top: -4.3333333333vw;
    width: 18.8666666667vw;
    height: 18.8666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-object.-multi-circhle {
    display: none;
  }
}
.r-object.-double-line-left {
  bottom: 255px;
  left: -160px;
  width: 195px;
  height: 155px;
}
@media screen and (max-width: 1500px) {
  .r-object.-double-line-left {
    bottom: 17vw;
    left: -9.3333333333vw;
    width: 13vw;
    height: 10.3333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-object.-double-line-left {
    display: none;
  }
}
.r-object.-double-line-right {
  top: 45%;
  right: -40px;
  translate: 0 -50%;
  width: 195px;
  height: 155px;
  z-index: -1;
}
@media screen and (max-width: 1500px) {
  .r-object.-double-line-right {
    width: 13vw;
    height: 10.3333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-object.-double-line-right {
    top: unset;
    right: -4.8vw;
    bottom: -68.8vw;
    width: 28vw;
    height: 22.1333333333vw;
  }
}
.r-object.-diamond {
  bottom: 72px;
  right: -15px;
  width: 23px;
  height: 23px;
}
@media screen and (max-width: 1500px) {
  .r-object.-diamond {
    bottom: 4.8vw;
    right: -1vw;
    width: 1.5333333333vw;
    height: 1.5333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-object.-diamond {
    display: none;
  }
}
.r-object.-triangle_union {
  top: 57%;
  left: -6%;
  translate: 0 -50%;
  width: 127px;
  height: 128px;
}
@media screen and (max-width: 1500px) {
  .r-object.-triangle_union {
    width: 8.4666666667vw;
    height: 8.5333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-object.-triangle_union {
    display: none;
  }
}
.r-object.-square_gradation {
  top: 20%;
  right: -6%;
  width: 277px;
  height: 230px;
}
@media screen and (max-width: 1500px) {
  .r-object.-square_gradation {
    top: 9.2vw;
    width: 18.4666666667vw;
    height: 15.3333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-object.-square_gradation {
    top: unset;
    bottom: -10.6666666667vw;
    width: 31.2vw;
    height: 26.4vw;
  }
}

.r-about-index-bg {
  position: relative;
  overflow-x: clip;
}
.r-about-index-bg .-square_gradation {
  top: 36%;
  left: 0;
  translate: 0 -50%;
  width: 193px;
  height: 160px;
  z-index: -1;
}
@media screen and (max-width: 1500px) {
  .r-about-index-bg .-square_gradation {
    width: 12.8666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-about-index-bg .-square_gradation {
    top: 67.2vw;
    translate: unset;
    width: 21.3333333333vw;
    height: 17.8666666667vw;
  }
}
.r-about-index-bg .-triangle_gradation02 {
  top: 50%;
  right: 80px;
  width: 120px;
  height: 120px;
  z-index: -1;
}
@media screen and (max-width: 1500px) {
  .r-about-index-bg .-triangle_gradation02 {
    right: 5.3333333333vw;
    width: 8vw;
    height: 8vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-about-index-bg .-triangle_gradation02 {
    top: 0;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.r-about-index-bg .-double-line {
  bottom: 7.3333333333vw;
  right: 33px;
  width: 196px;
  height: 155px;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-bg .-double-line {
    bottom: 53%;
    right: -40px;
    translate: 0 50%;
    width: 28vw;
    height: 22.1333333333vw;
  }
}

.r-about-index {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .r-about-index {
    padding-bottom: 40px;
  }
}
.r-about-index-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  max-width: 1094px;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.r-about-index-menu {
  width: 48%;
  max-width: 550px;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-menu {
    width: 100%;
    max-width: unset;
  }
}
.r-about-index-office {
  width: 45%;
  max-width: 394px;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-office {
    width: 100%;
    max-width: unset;
  }
}
.r-about-index-office-movie {
  aspect-ratio: 394/700;
  text-align: center;
}
.r-about-index-office-movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.r-about-index-office-notes {
  font-size: clamp(0.75rem, 0.708rem + 0.178vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-office-notes {
    font-size: clamp(0.857rem, 0.679rem + 0.178vw, 1rem);
  }
}
.r-about-index-card:first-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-card:first-of-type {
    margin-bottom: 40px;
  }
}
.r-about-index-card .r-button {
  margin-left: auto;
  margin-right: auto;
}
.r-about-index-title {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-title {
    margin-bottom: 10px;
  }
}
.r-about-index-title-en {
  position: relative;
  font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
  font-family: var(--ff-chillax), sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}
.r-about-index-title-en::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  translate: -50%;
  width: 60px;
  height: 2px;
  background: var(--gradation-main);
}
.r-about-index-title-ja {
  font-size: clamp(1.125rem, 1rem + 0.533vw, 1.5rem);
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-title-ja {
    font-size: clamp(1.286rem, 0.619rem + 0.533vw, 1.714rem);
  }
}
.r-about-index-image {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.98px) {
  .r-about-index-image {
    margin-bottom: 15px;
  }
}

.r-about-philosophy-bg {
  position: relative;
}
.r-about-philosophy-bg .-square_gradation {
  top: 36%;
  left: 0;
  translate: 0 -50%;
  width: 193px;
  height: 160px;
  z-index: -1;
}
@media screen and (max-width: 1500px) {
  .r-about-philosophy-bg .-square_gradation {
    width: 12.8666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-bg .-square_gradation {
    top: 67.2vw;
    translate: unset;
    width: 21.3333333333vw;
    height: 17.8666666667vw;
  }
}
.r-about-philosophy-bg .-triangle_gradation02 {
  top: 0;
  right: -10px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-bg .-triangle_gradation02 {
    right: 5.3333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (max-width: 575.98px) {
  .r-about-philosophy-bg .-triangle_gradation02 {
    top: 220px;
    right: 20px;
  }
}
.r-about-philosophy-bg .-triangle_3D {
  width: 8.8vw;
  height: 8.2vw;
  bottom: 50px;
  right: 44px;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-bg .-triangle_3D {
    bottom: 10px;
    right: 4px;
    width: 21.6vw;
    height: 18.1333333333vw;
  }
}
.r-about-philosophy-bg .-triangle_3D-02 {
  bottom: 12vw;
  left: -4vw;
  width: 14.4666666667vw;
  height: 12.6666666667vw;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-bg .-triangle_3D-02 {
    display: none;
  }
}

.r-about-philosophy {
  padding-bottom: 100px;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy {
    padding-bottom: 40px;
  }
}
.r-about-philosophy-heading {
  font-size: clamp(1.5rem, 1.324rem + 0.751vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 47px;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-heading {
    font-size: clamp(1.714rem, 1.003rem + 0.711vw, 2.286rem);
  }
}
.r-about-philosophy-heading__label {
  position: relative;
  display: inline-block;
}
.r-about-philosophy-heading__label::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  translate: -50%;
  width: 100px;
  height: 2px;
  background: var(--gradation-main);
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-heading__label::after {
    width: 80px;
  }
}
.r-about-philosophy-lead {
  width: 90%;
  margin: 0 auto 80px;
}
.r-about-philosophy-lead-text {
  font-size: clamp(1.125rem, 1rem + 0.533vw, 1.5rem);
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-lead-text {
    font-size: clamp(1.286rem, 0.619rem + 0.533vw, 1.714rem);
  }
}
.r-about-philosophy-message {
  width: 90%;
  max-width: 1020px;
  background-image: url(/wp-content/themes/nicpartners/assets/img/recruit/about/bg_philosophy.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-message {
    padding: 10px;
  }
}
.r-about-philosophy-contents {
  background-color: #fff;
  padding: 60px;
}
@media screen and (max-width: 1500px) {
  .r-about-philosophy-contents {
    padding: 4vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-contents {
    padding: 20px;
  }
}
.r-about-philosophy-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.125rem, 1rem + 0.533vw, 1.5rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.r-about-philosophy-title::before, .r-about-philosophy-title::after {
  content: "";
  display: block;
  width: 197px;
  height: 1px;
  background-color: var(--r-blue);
}
@media screen and (max-width: 1500px) {
  .r-about-philosophy-title::before, .r-about-philosophy-title::after {
    width: 13.1333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-title::before, .r-about-philosophy-title::after {
    width: 7.4666666667vw;
  }
}
.r-about-philosophy-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .r-about-philosophy-text {
    font-size: 1.143rem;
  }
}
.r-about-philosophy-text:last-of-type {
  margin-bottom: 0;
}

.r-about-data-bg {
  position: relative;
}
.r-about-data-bg .-square_gradation {
  top: 14%;
  left: 0;
  width: 193px;
  height: 160px;
  z-index: -1;
}
@media screen and (max-width: 1500px) {
  .r-about-data-bg .-square_gradation {
    width: 12.8666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-about-data-bg .-square_gradation {
    top: 37.0273794003vw;
    width: 21.3333333333vw;
    height: 17.8666666667vw;
  }
}
@media screen and (max-width: 575.98px) {
  .r-about-data-bg .-square_gradation {
    top: 75.2vw;
  }
}
.r-about-data-bg .-triangle_gradation02 {
  top: 109px;
  right: -10px;
  width: 120px;
  height: 120px;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .r-about-data-bg .-triangle_gradation02 {
    display: none;
  }
}
.r-about-data-bg .-double-line {
  bottom: 240px;
  right: 30.6666666667vw;
  width: 195px;
  height: 155px;
}
@media screen and (max-width: 1500px) {
  .r-about-data-bg .-double-line {
    bottom: 16vw;
    width: 13vw;
    height: 10.3333333333vw;
  }
}
@media screen and (max-width: 640px) {
  .r-about-data-bg .-double-line {
    bottom: 63%;
    right: -6.6666666667vw;
    width: 18.9333333333vw;
    height: 17.3333333333vw;
    z-index: -1;
  }
}
.r-about-data-bg .-triangle_3D-02 {
  bottom: 48px;
  right: 7.8666666667vw;
  width: 234px;
  height: 221px;
}
@media screen and (max-width: 1500px) {
  .r-about-data-bg .-triangle_3D-02 {
    bottom: 3.2vw;
    width: 15.6vw;
    height: 14.7333333333vw;
  }
}
@media screen and (max-width: 640px) {
  .r-about-data-bg .-triangle_3D-02 {
    bottom: 0;
    right: 0;
    width: 20vw;
    height: 18.9333333333vw;
  }
}

.r-about-data {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .r-about-data {
    padding-bottom: 85px;
  }
}
.r-about-data-inner {
  width: 90%;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}
.r-about-data-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1500px) {
  .r-about-data-list {
    gap: 2.6666666667vw;
  }
}
@media screen and (max-width: 640px) {
  .r-about-data-list {
    gap: 4vw;
  }
}
.r-about-data-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 48%;
  max-width: 650px;
  padding: 40px 24px 24px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .r-about-data-item {
    width: 100%;
    padding: 6.4vw;
  }
}
.r-about-data-title {
  font-size: clamp(1.125rem, 1.081rem + 0.188vw, 1.25rem);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .r-about-data-title {
    font-size: clamp(1.286rem, 1.107rem + 0.178vw, 1.429rem);
  }
}
.r-about-data-image {
  width: 160px;
}
@media screen and (max-width: 767.98px) {
  .r-about-data-image {
    width: 140px;
  }
}
.r-about-data-text {
  color: var(--r-blue);
  font-weight: bold;
}
.r-about-data-number {
  display: inline-block;
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(3.25rem, 2.854rem + 1.69vw, 4.375rem);
  line-height: 1;
}
.r-about-data-label {
  display: inline-block;
  font-size: clamp(1.25rem, 1.03rem + 0.939vw, 1.875rem);
}
@media screen and (max-width: 767.98px) {
  .r-about-data-label {
    font-size: clamp(1.429rem, 0.54rem + 0.889vw, 2.143rem);
  }
}
.r-about-data-memo {
  margin-top: -16px;
}
.r-about-data-notice {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .r-about-data-notice {
    font-size: 1rem;
  }
}

.r-workstyle-localNavi {
  position: sticky;
  top: 82px;
  margin-bottom: 60px;
  z-index: 5;
}
@media screen and (max-width: 991.98px) {
  .r-workstyle-localNavi {
    top: 70px;
  }
}
.r-workstyle-localNavi-toggle {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .r-workstyle-localNavi-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-align: left;
    width: 90%;
    min-height: 50px;
    margin-inline: auto;
    background: #fff;
    border-radius: 5px;
    padding: 14px 20px;
    cursor: pointer;
  }
  .r-workstyle-localNavi-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: calc(100% + 4px);
    height: calc(100% + 3px);
    background: var(--gradation-main);
    border-radius: 6px;
    z-index: -1;
  }
}
.r-workstyle-localNavi-toggle[aria-expanded=true] .dropdown-icon {
  rotate: 225deg;
  transition: rotate 0.2s ease-out;
}
.r-workstyle-localNavi .dropdown-icon {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .r-workstyle-localNavi .dropdown-icon {
    position: relative;
    display: flex;
    align-self: center;
    rotate: 45deg;
    width: 8px;
    height: 8px;
  }
  .r-workstyle-localNavi .dropdown-icon::before {
    content: "";
    width: 100%;
    height: 100%;
    border-bottom: 2px solid var(--r-blue);
    border-right: 2px solid var(--r-blue);
  }
}
.r-workstyle-localNavi-list {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 90%;
  max-width: 1008px;
  margin-inline: auto;
  padding: 25px 40px 15px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
@media screen and (max-width: 991.98px) {
  .r-workstyle-localNavi-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }
  .r-workstyle-localNavi-list.is-open {
    max-height: 400px;
    padding: 15px 20px;
  }
  .r-workstyle-localNavi-list:not(.is-open) a {
    visibility: hidden;
  }
  .r-workstyle-localNavi-list-menu.is-open a {
    visibility: visible;
  }
}
@media screen and (max-width: 991.98px) {
  .r-workstyle-localNavi-item {
    width: 100%;
  }
  .r-workstyle-localNavi-item:not(:last-child) a {
    margin-bottom: 20px;
  }
}
.r-workstyle-localNavi-link {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.833rem + 0.178vw, 1rem);
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 48px;
  padding-bottom: 10px;
}
@media screen and (max-width: 991.98px) {
  .r-workstyle-localNavi-link {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
    width: 100%;
    padding-right: 30px;
    padding-bottom: 5px;
  }
}
.r-workstyle-localNavi-link::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  background-color: rgb(174, 174, 174);
  border-radius: 30px;
  transition: background-color 420ms ease-out, box-shadow 420px ease-out;
}
.r-workstyle-localNavi-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradation-main);
  transform: scale(0);
  transform-origin: right center;
  backface-visibility: hidden;
  transition: transform 420ms;
}
.r-workstyle-localNavi-link:hover, .r-workstyle-localNavi-link:focus-visible, .r-workstyle-localNavi-link[aria-current=location] {
  font-weight: 500;
}
.r-workstyle-localNavi-link:hover::before, .r-workstyle-localNavi-link:focus-visible::before, .r-workstyle-localNavi-link[aria-current=location]::before {
  background-color: var(--r-blue);
  box-shadow: 0px 0px 10px 0px rgb(0, 150, 206);
}
.r-workstyle-localNavi-link:hover::after, .r-workstyle-localNavi-link:focus-visible::after, .r-workstyle-localNavi-link[aria-current=location]::after {
  transform: scale(1);
  transform-origin: left center;
}
.r-workstyle-localNavi {
  /* 動きを減らす設定への対応 */
}
@media (prefers-reduced-motion: reduce) {
  .r-workstyle-localNavi .nav-menu,
  .r-workstyle-localNavi .dropdown-icon {
    transition: none;
  }
}

/**************************************
  * workstyle-title
**************************************/
.r-workstyle-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.125rem, 0.917rem + 0.889vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-title {
    font-size: clamp(1.286rem, 0.397rem + 0.889vw, 2rem);
    text-align: center;
    margin-bottom: 20px;
  }
}
.r-workstyle-title::before, .r-workstyle-title::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gradation-main);
}
.r-workstyle-system .r-workstyle-title::before, .r-workstyle-system .r-workstyle-title::after {
  width: calc((100% - 340px) / 2);
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-system .r-workstyle-title::before, .r-workstyle-system .r-workstyle-title::after {
    width: calc((100% - 226px) / 2);
  }
}
.r-workstyle-balance .r-workstyle-title::before, .r-workstyle-balance .r-workstyle-title::after {
  width: calc((100% - 564px) / 2);
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-balance .r-workstyle-title::before, .r-workstyle-balance .r-workstyle-title::after {
    width: calc((100% - 220px) / 2);
  }
}
.r-workstyle-support .r-workstyle-title::before, .r-workstyle-support .r-workstyle-title::after {
  width: calc((100% - 508px) / 2);
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-support .r-workstyle-title::before, .r-workstyle-support .r-workstyle-title::after {
    width: calc((100% - 183px) / 2);
  }
}
.r-workstyle-title__label {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
}

/**************************************
  * workstyle-wrap
**************************************/
.r-workstyle-wrap {
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 100px;
}
@media screen and (max-width: 1500px) {
  .r-workstyle-wrap {
    padding: 5.3333333333vw 6.6666666667vw;
  }
}
.r-workstyle-wrap.-bgWhite {
  background-color: #fff;
}

/**************************************
  * workstyle-contents
**************************************/
.r-workstyle-contents {
  position: relative;
}

.r-workstyle-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
}
@media screen and (max-width: 1500px) {
  .r-workstyle-item {
    gap: 5.3333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-item {
    flex-wrap: wrap;
    justify-content: unset;
    align-items: unset;
    gap: 10px;
  }
}
.r-workstyle-item:not(:last-of-type) {
  border-bottom: 1px solid rgb(174, 174, 174);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-item:not(:last-of-type) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.r-workstyle-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 330px;
  gap: 20px;
}
@media screen and (max-width: 1500px) {
  .r-workstyle-item__title {
    width: 22vw;
    gap: 1.3333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-item__title {
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
  }
}
.r-workstyle-item__icon {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 1500px) {
  .r-workstyle-item__icon {
    width: 4.6666666667vw;
    height: 4.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-item__icon {
    width: 16vw;
    width: 60px;
    height: 16vw;
    height: 60px;
  }
}
.r-workstyle-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.r-workstyle-item__label {
  display: inline-block;
  font-size: clamp(1rem, 0.917rem + 0.356vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  width: 240px;
}
@media screen and (max-width: 1500px) {
  .r-workstyle-item__label {
    width: 16vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-item__label {
    font-size: clamp(1.143rem, 0.786rem + 0.356vw, 1.429rem);
    width: calc(100% - 20px - 60px);
  }
}
.r-workstyle-item__text {
  font-size: clamp(0.875rem, 0.833rem + 0.178vw, 1rem);
  letter-spacing: 0.01em;
  width: 730px;
}
@media screen and (max-width: 1500px) {
  .r-workstyle-item__text {
    width: 48.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-item__text {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
    width: 100%;
  }
}

/**************************************
  * workstyle-balance
**************************************/
.r-workstyle-balance {
  padding-bottom: 100px;
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-balance {
    padding-bottom: 60px;
  }
}

/**************************************
  * workstyle-support
**************************************/
.r-workstyle-support {
  padding-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-support {
    padding-bottom: 60px;
  }
}

.r-workstyle-system {
  padding-bottom: 100px;
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-system {
    padding-bottom: 60px;
  }
}
.r-workstyle-system-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 106px 80px;
}
@media screen and (max-width: 1500px) {
  .r-workstyle-system-list {
    gap: 7.0666666667vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1199.98px) {
  .r-workstyle-system-list {
    justify-content: space-between;
    gap: 5.3333333333vw;
  }
}
@media screen and (max-width: 575.98px) {
  .r-workstyle-system-list {
    flex-direction: column;
    gap: unset;
  }
}
.r-workstyle-system-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc((100% - 160px) / 3);
}
@media screen and (max-width: 1500px) {
  .r-workstyle-system-item {
    width: 24.8666666667vw;
  }
}
@media screen and (max-width: 1199.98px) {
  .r-workstyle-system-item {
    width: calc((100% - 80px) / 2);
  }
}
@media screen and (max-width: 575.98px) {
  .r-workstyle-system-item {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .r-workstyle-system-item:not(:last-child) {
    border-bottom: 1px solid rgb(217, 217, 217);
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.r-workstyle-system-image {
  aspect-ratio: 393/240;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 575.98px) {
  .r-workstyle-system-image {
    width: 36%;
    margin-bottom: unset;
  }
}
.r-workstyle-system-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.r-workstyle-system-heading {
  font-size: clamp(1rem, 0.917rem + 0.356vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-system-heading {
    font-size: clamp(1.143rem, 0.786rem + 0.356vw, 1.429rem);
  }
}
@media screen and (max-width: 575.98px) {
  .r-workstyle-system-heading {
    width: calc(58% - 20px);
    margin-bottom: unset;
  }
}
.r-workstyle-system-text {
  font-size: clamp(0.875rem, 0.833rem + 0.178vw, 1rem);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767.98px) {
  .r-workstyle-system-text {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
  }
}
@media screen and (max-width: 575.98px) {
  .r-workstyle-system-text {
    width: 100%;
  }
}

.r-jobs-navi {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1340px;
  margin-inline: auto;
}
.r-jobs-navi-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 0.655rem + 0.939vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  width: 50%;
  min-height: 120px;
  border-radius: 20px 20px 0 0;
  overflow: clip;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-navi-link {
    font-size: clamp(1rem, 0.111rem + 0.889vw, 1.714rem);
    min-height: 52px;
  }
}
.r-jobs-navi-link.is_current {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1), 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
}
.r-jobs-navi-link.is_current::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  translate: -50%;
  width: 500px;
  height: 180px;
  background: var(--gradation-main);
  border-radius: 50%;
  filter: blur(40px);
}
@media screen and (max-width: 1500px) {
  .r-jobs-navi-link.is_current::before {
    top: -10vw;
    width: 33.3333333333vw;
    height: 12vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-jobs-navi-link.is_current::before {
    top: -10.6666666667vw;
    width: 40vw;
    height: 18.6666666667vw;
    filter: blur(15px);
  }
}
.r-jobs-navi__label {
  position: relative;
  display: inline-block;
  padding-left: 55px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-navi__label {
    padding-left: 36px;
  }
}
.r-jobs-navi__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-navi__label::before {
    width: 20px;
    height: 20px;
  }
}
.-newgrads .r-jobs-navi__label::before {
  background-image: url(/wp-content/themes/nicpartners/assets/img/recruit/jobs/icon_newgrads.svg);
}
.-career .r-jobs-navi__label::before {
  background-image: url(/wp-content/themes/nicpartners/assets/img/recruit/jobs/icon_career.svg);
}

.r-jobs-bg {
  padding-bottom: 80px;
}

.r-jobs-wrap {
  position: relative;
  width: 90%;
  max-width: 1340px;
  margin-inline: auto;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 20px;
  padding: 80px 100px;
}
@media screen and (max-width: 1500px) {
  .r-jobs-wrap {
    padding: 5.3333333333vw 6.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-jobs-wrap {
    padding: 30px 20px;
  }
}
.r-jobs-wrap.is_newgrads {
  border-radius: 0 20px 20px 20px;
}
.r-jobs-wrap.is_career {
  border-radius: 20px 0 20px 20px;
}

.r-jobs-lead {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  letter-spacing: 0.01em;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-lead {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
    margin-bottom: 40px;
  }
}

/**************************************
  * jobs-section
**************************************/
.r-jobs-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 64px;
}
@media screen and (max-width: 1500px) {
  .r-jobs-section {
    gap: 2.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-jobs-section {
    flex-direction: column;
    padding-bottom: 40px;
  }
}
.r-jobs-section:not(:last-of-type) {
  margin-bottom: 64px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-section:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.r-jobs-section:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradation-main);
}

/**************************************
  * jobs-title
**************************************/
.r-jobs-title {
  position: relative;
  font-size: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-left: 40px;
  width: 20%;
  max-width: 226px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-title {
    font-size: clamp(1.143rem, 0.476rem + 0.711vw, 1.714rem);
    width: auto;
    max-width: unset;
    padding-left: 34px;
  }
}
.r-jobs-title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--gradation-main);
  border-radius: 60px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-title::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
}
.r-jobs-title::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 60px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-title::after {
    top: 7px;
    left: 4px;
    width: 12px;
    height: 12px;
  }
}

/**************************************
  * jobs-infomation
**************************************/
.r-jobs-infomation-contents {
  width: calc(80% - 40px);
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-contents {
    width: 100%;
  }
}
.r-jobs-infomation-item:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.r-jobs-infomation-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-heading {
    font-size: clamp(1.143rem, 0.476rem + 0.711vw, 1.714rem);
    margin-bottom: 10px;
  }
}
.r-jobs-infomation-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: 2px;
  background: var(--gradation-main);
  z-index: 0;
}
.r-jobs-infomation-heading__label {
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding-right: 20px;
  z-index: 1;
}
.r-jobs-infomation-detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}
@media screen and (max-width: 1500px) {
  .r-jobs-infomation-detail {
    gap: 4.2666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-detail {
    flex-direction: column;
    gap: 20px;
  }
}
.r-jobs-infomation-inner {
  width: calc(66% - 64px);
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-inner {
    width: 100%;
  }
}
.r-jobs-infomation-text {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-text {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
  }
}
.r-jobs-infomation-label {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-label {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
  }
}
.r-jobs-infomation-list {
  padding-left: 1em;
}
.r-jobs-infomation-list li {
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  letter-spacing: 0.01em;
  list-style-type: disc;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-list li {
    font-size: clamp(1rem, 0.822rem + 0.178vw, 1.143rem);
  }
}
.r-jobs-infomation-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px 20px;
}
@media screen and (max-width: 1500px) {
  .r-jobs-infomation-buttons {
    gap: 1vw 1.3333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-buttons {
    gap: 20px;
  }
}
@media screen and (max-width: 575.98px) {
  .r-jobs-infomation-button {
    max-width: unset;
    min-height: 50px;
  }
}
.r-jobs-infomation-image {
  width: 34%;
  max-width: 300px;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-infomation-image {
    width: 100%;
    max-width: unset;
  }
}

/**************************************
  * jobs-document
**************************************/
.r-jobs-document-table {
  width: calc(80% - 40px);
}
@media screen and (max-width: 767.98px) {
  .r-jobs-document-table {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .r-jobs-document-table__lane {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }
}
.r-jobs-document-table__lane:nth-child(odd) {
  background: #f9f9f9;
}
.r-jobs-document-table__lane:nth-child(even) {
  background-color: #fff;
}
.r-jobs-document-table__heading, .r-jobs-document-table__detail {
  padding: 32px 40px;
}
@media screen and (max-width: 1500px) {
  .r-jobs-document-table__heading, .r-jobs-document-table__detail {
    padding: 2.1333333333vw 2.6666666667vw;
  }
}
@media screen and (max-width: 767.98px) {
  .r-jobs-document-table__heading, .r-jobs-document-table__detail {
    padding: unset;
  }
}
.r-jobs-document-table__heading {
  font-weight: 500;
}

/**************************************
  * jobs-entry
**************************************/
.r-jobs-entry {
  position: sticky;
  bottom: 30px;
  left: 0;
  font-size: 1rem;
  max-width: 400px;
  min-height: 65px;
  transition: color 420ms, opacity 420ms, z-index 420ms;
}
@media screen and (max-width: 767.98px) {
  .r-jobs-entry {
    bottom: 50px;
    min-height: 60px;
  }
}

.r-message-ceo {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .r-message-ceo {
    margin-bottom: 40px;
  }
}
.r-message-ceo-contents {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .r-message-ceo-contents {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.r-message-ceo-img {
  width: 50%;
  max-width: 540px;
}
@media screen and (max-width: 767.98px) {
  .r-message-ceo-img {
    width: 100%;
    max-width: unset;
  }
}
.r-message-ceo-detail {
  width: 45%;
  max-width: 420px;
}
@media screen and (max-width: 767.98px) {
  .r-message-ceo-detail {
    width: 100%;
    max-width: unset;
  }
}
.r-message-ceo-heading {
  position: relative;
  font-size: clamp(1.375rem, 1.25rem + 0.533vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .r-message-ceo-heading {
    font-size: clamp(1.571rem, 1.038rem + 0.533vw, 2rem);
    margin-bottom: 20px;
  }
}
.r-message-ceo-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradation-main);
}
.r-message-ceo-info {
  display: flex;
  flex-direction: column;
}
.r-message-ceo-label {
  font-size: 1rem;
  line-height: 1.8;
}
.r-message-ceo-name {
  max-width: 165px;
  margin-top: 10px;
}
.r-message-ceo-text {
  letter-spacing: 0.01em;
}

.r-message-wrap {
  width: 90%;
  max-width: 1020px;
  margin-inline: auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.98px) {
  .r-message-wrap {
    padding-bottom: 80px;
  }
}

.r-message-contents:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .r-message-contents:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.r-message-contents-title {
  position: relative;
  font-size: clamp(1.125rem, 1rem + 0.533vw, 1.5rem);
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.r-message-contents-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradation-main);
}
.r-message-contents-text {
  letter-spacing: 0.01em;
}

.r-404-section {
  padding: 100px 0;
}
@media screen and (max-width: 767.98px) {
  .r-404-section {
    padding: 80px 0;
  }
}
.r-404-contents {
  width: 90%;
  margin-inline: auto;
}
.r-404-title {
  color: var(--r-blue);
  font-family: var(--ff-chillax), sans-serif;
  font-size: clamp(3rem, 2.583rem + 1.778vw, 4.25rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.98px) {
  .r-404-title {
    font-size: clamp(3.429rem, 1.651rem + 1.778vw, 4.857rem);
  }
}
.r-404-lead {
  font-size: clamp(1.25rem, 1.167rem + 0.356vw, 1.5rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.98px) {
  .r-404-lead {
    font-size: clamp(1.429rem, 1.073rem + 0.356vw, 1.714rem);
    margin-bottom: 40px;
  }
}
.r-404-text {
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .r-404-text {
    margin-bottom: 40px;
  }
}
.r-404-button {
  flex-direction: row-reverse;
  color: var(--color-base);
}
.r-404-button::after {
  border-color: var(--color-base);
}
.r-404-button:hover::after {
  background: var(--color-base);
  border-color: var(--color-base);
}
.r-404-button:hover .r-404-arrow .r-404-icon {
  fill: var(--color-base);
}
.r-404-button__label {
  padding-left: unset !important;
  padding-right: 20px;
}
.r-404-arrow {
  rotate: 180deg;
}
.r-404-arrow::before {
  background: var(--color-base);
  border-color: var(--color-base);
}
.r-404 .u-mt-section.u-mt-section.u-mt-section {
  margin-top: 0;
}