@charset "UTF-8";
/* Foundation */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap");
/***
  Base CSS:
  The new CSS reset - version 1.8.4 (last updated 14.2.2023)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a,
button {
  cursor: pointer;
}

ol,
ul,
menu {
  list-style: none;
}

video {
  -webkit-filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

video:focus-visible {
  outline: none;
}

iframe {
  border: none;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* fonts */
/*======================================
  scss/01_foundation/_base.scss
======================================*/
html {
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78125vw;
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  display: block;
  text-decoration: none;
}

h1 {
  font-weight: 700;
}

/* Layout */
/*======================================
  scss/02_layout/_l-wrapper.scss
======================================*/
.l-wrapper {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    min-width: 100%;
  }
}
.l-wrapper img,
.l-wrapper picture,
.l-wrapper svg,
.l-wrapper video,
.l-wrapper iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*======================================
  scss/02_layout/_l-main.scss
======================================*/
.l-main {
  display: block;
}
/*======================================
  scss/02_layout/_c-graph.scss
======================================*/
.c-graph {
  width: 17.4rem;
  aspect-ratio: 1/1;
  display: block;
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
  stroke-dasharray: 565.48 0;
}
.c-graph.pie {
  -webkit-transition: stroke-dasharray 1s ease;
  transition: stroke-dasharray 1s ease;
}
.c-graph .pie-bg {
  stroke-dasharray: 565.48 0;
}
.c-graph .pie-red,
.c-graph .pie-pink,
.c-graph .pie-gray {
  stroke-dasharray: 0 565.48;
}
.c-graph--01.effect-scroll .pie-red {
  -webkit-animation: drawRed01 1.2s 0.8s forwards;
          animation: drawRed01 1.2s 0.8s forwards;
}
.c-graph--01.effect-scroll .pie-pink {
  -webkit-animation: drawPink01 1.2s 1.5s forwards;
          animation: drawPink01 1.2s 1.5s forwards;
}
@-webkit-keyframes drawRed01 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@keyframes drawRed01 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@-webkit-keyframes drawPink01 {
  to {
    stroke-dasharray: 370 107.52;
  }
}
@keyframes drawPink01 {
  to {
    stroke-dasharray: 370 107.52;
  }
}
.c-graph--02.effect-scroll .pie-red {
  -webkit-animation: drawRed02 1.2s 0.8s forwards;
          animation: drawRed02 1.2s 0.8s forwards;
}
.c-graph--02.effect-scroll .pie-pink {
  -webkit-animation: drawPink02 1.2s 1.5s forwards;
          animation: drawPink02 1.2s 1.5s forwards;
}
@-webkit-keyframes drawRed02 {
  to {
    stroke-dasharray: 119.38 358.14;
  }
}
@keyframes drawRed02 {
  to {
    stroke-dasharray: 119.38 358.14;
  }
}
@-webkit-keyframes drawPink02 {
  to {
    stroke-dasharray: 343.81 133.71;
  }
}
@keyframes drawPink02 {
  to {
    stroke-dasharray: 343.81 133.71;
  }
}
.c-graph--03.effect-scroll .pie-red {
  -webkit-animation: drawRed03 1.2s 0.8s forwards;
          animation: drawRed03 1.2s 0.8s forwards;
}
.c-graph--03.effect-scroll .pie-pink {
  -webkit-animation: drawPink03 1.2s 1.5s forwards;
          animation: drawPink03 1.2s 1.5s forwards;
}
.c-graph--03.effect-scroll .pie-gray {
  -webkit-animation: drawGray03 1.2s 2s forwards;
          animation: drawGray03 1.2s 2s forwards;
}
@-webkit-keyframes drawRed03 {
  to {
    stroke-dasharray: 71.81 493.67;
  }
}
@keyframes drawRed03 {
  to {
    stroke-dasharray: 71.81 493.67;
  }
}
@-webkit-keyframes drawPink03 {
  to {
    stroke-dasharray: 276.09 289.39;
  }
}
@keyframes drawPink03 {
  to {
    stroke-dasharray: 276.09 289.39;
  }
}
@-webkit-keyframes drawGray03 {
  to {
    stroke-dasharray: 124.41 441.07;
  }
}
@keyframes drawGray03 {
  to {
    stroke-dasharray: 124.41 441.07;
  }
}
.c-graph--04.effect-scroll .pie-red {
  -webkit-animation: drawRed05 1.2s 0.8s forwards;
          animation: drawRed05 1.2s 0.8s forwards;
}
.c-graph--04.effect-scroll .pie-pink {
  -webkit-animation: drawPink05 1.2s 1.5s forwards;
          animation: drawPink05 1.2s 1.5s forwards;
}
@-webkit-keyframes drawRed05 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@keyframes drawRed05 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@-webkit-keyframes drawPink05 {
  to {
    stroke-dasharray: 320 157.52;
  }
}
@keyframes drawPink05 {
  to {
    stroke-dasharray: 320 157.52;
  }
}
.c-graph--05.effect-scroll .pie-red {
  -webkit-animation: drawRed04 1.2s forwards;
          animation: drawRed04 1.2s forwards;
}
.c-graph--05.effect-scroll .pie-pink {
  -webkit-animation: drawPink04 1.2s 0.7s forwards;
          animation: drawPink04 1.2s 0.7s forwards;
}
@-webkit-keyframes drawRed04 {
  to {
    stroke-dasharray: 181.92 383.56;
  }
}
@keyframes drawRed04 {
  to {
    stroke-dasharray: 181.92 383.56;
  }
}
@-webkit-keyframes drawPink04 {
  to {
    stroke-dasharray: 262.67 298.81;
  }
}
@keyframes drawPink04 {
  to {
    stroke-dasharray: 262.67 298.81;
  }
}
.c-graph--06.effect-scroll .pie-red {
  -webkit-animation: drawRed06 1.2s forwards;
          animation: drawRed06 1.2s forwards;
}
.c-graph--06.effect-scroll .pie-pink {
  -webkit-animation: drawPink06 1.2s 0.7s forwards;
          animation: drawPink06 1.2s 0.7s forwards;
}
.c-graph--06.effect-scroll .pie-gray {
  -webkit-animation: drawGray06 1.2s 1.2s forwards;
          animation: drawGray06 1.2s 1.2s forwards;
}
@-webkit-keyframes drawRed06 {
  to {
    stroke-dasharray: 62.2 503.28;
  }
}
@keyframes drawRed06 {
  to {
    stroke-dasharray: 62.2 503.28;
  }
}
@-webkit-keyframes drawPink06 {
  to {
    stroke-dasharray: 276.09 289.39;
  }
}
@keyframes drawPink06 {
  to {
    stroke-dasharray: 276.09 289.39;
  }
}
@-webkit-keyframes drawGray06 {
  to {
    stroke-dasharray: 129.38 435.1;
  }
}
@keyframes drawGray06 {
  to {
    stroke-dasharray: 129.38 435.1;
  }
}
.c-graph--07.effect-scroll .pie-red {
  -webkit-animation: drawRed07 1.2s forwards;
          animation: drawRed07 1.2s forwards;
}
.c-graph--07.effect-scroll .pie-pink {
  -webkit-animation: drawPink07 1.2s 0.7s forwards;
          animation: drawPink07 1.2s 0.7s forwards;
}
.c-graph--07.effect-scroll .pie-gray {
  -webkit-animation: drawGray07 1.2s 1.2s forwards;
          animation: drawGray07 1.2s 1.2s forwards;
}
@-webkit-keyframes drawRed07 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@keyframes drawRed07 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@-webkit-keyframes drawPink07 {
  to {
    stroke-dasharray: 305.36 260.12;
  }
}
@keyframes drawPink07 {
  to {
    stroke-dasharray: 305.36 260.12;
  }
}
@-webkit-keyframes drawGray07 {
  to {
    stroke-dasharray: 56.55 508.93;
  }
}
@keyframes drawGray07 {
  to {
    stroke-dasharray: 56.55 508.93;
  }
}
.c-graph--08.effect-scroll .pie-red {
  -webkit-animation: drawRed08 1.2s forwards;
          animation: drawRed08 1.2s forwards;
}
.c-graph--08.effect-scroll .pie-pink {
  -webkit-animation: drawPink08 1.2s 0.7s forwards;
          animation: drawPink08 1.2s 0.7s forwards;
}
.c-graph--08.effect-scroll .pie-gray {
  -webkit-animation: drawGray08 1.2s 1.2s forwards;
          animation: drawGray08 1.2s 1.2s forwards;
}
@-webkit-keyframes drawRed08 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@keyframes drawRed08 {
  to {
    stroke-dasharray: 94.43 471.05;
  }
}
@-webkit-keyframes drawPink08 {
  to {
    stroke-dasharray: 283.74 281.74;
  }
}
@keyframes drawPink08 {
  to {
    stroke-dasharray: 283.74 281.74;
  }
}
@-webkit-keyframes drawGray08 {
  to {
    stroke-dasharray: 84.82 479.66;
  }
}
@keyframes drawGray08 {
  to {
    stroke-dasharray: 84.82 479.66;
  }
}

.effect-fade {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.effect-fade.effect-scroll {
  opacity: 1;
}

/* Project */
/*======================================
  scss/04_project/_p-recruitNav.scss
======================================*/
/*======================================
  scss/04_project/_p-recruitMv.scss
======================================*/
.p-recruitMv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 10.9375vw;
}
@media screen and (max-width: 767px) {
  .p-recruitMv {
    padding-bottom: 12rem;
  }
}
.p-recruitMv__scroll {
  position: absolute;
  width: 2.3rem;
  top: 6.25vw;
  right: 2.890625vw;
}
.p-recruitMv__image {
  width: 98vw;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruitMv__image {
    width: 100vw;
    top: -6rem;
  }
}
.p-recruitMv__deco {
  position: absolute;
  left: 0;
  top: 5.3125vw;
  -webkit-animation: recruitMv-rotate 90s linear infinite;
          animation: recruitMv-rotate 90s linear infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruitMv__deco {
    top: 0rem;
    left: auto;
    width: 129.9rem;
  }
}
@-webkit-keyframes recruitMv-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes recruitMv-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-recruitMv__title {
  display: none;
  position: absolute;
  left: 11.3rem;
  top: 16.9rem;
  width: 21.2rem;
  z-index: 3;
}
.p-recruitMv__button {
  z-index: 2;
  position: relative;
  width: 12.96875vw;
  margin-top: -7.03125vw;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
}
.p-recruitMv__button:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
@media screen and (max-width: 767px) {
  .p-recruitMv__button {
    width: 16.6rem;
    margin-top: -14rem;
  }
}
.p-recruitMv__subtitle {
  width: 32.03125vw;
  margin-top: 5.3125vw;
}
@media screen and (max-width: 767px) {
  .p-recruitMv__subtitle {
    width: 24rem;
    margin-top: 5.7rem;
  }
}
.p-recruitMv__text {
  width: 56.015625vw;
  margin-top: 5.3125vw;
}
@media screen and (max-width: 767px) {
  .p-recruitMv__text {
    width: 26.3rem;
    margin-top: 4.3rem;
  }
}
.p-recruitMv__link {
  position: relative;
  width: 13.203125vw;
  height: 3.90625vw;
  margin-top: 4.765625vw;
  background-color: #e50322;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.3rem;
}
.p-recruitMv__link:hover .p-recruitMv__linkArrow {
  -webkit-transform: translateX(0.4rem);
          transform: translateX(0.4rem);
}
@media screen and (max-width: 767px) {
  .p-recruitMv__link {
    width: 13.9rem;
    height: 4.9rem;
    margin-top: 5rem;
  }
}
.p-recruitMv__linkText {
  width: 6.796875vw;
}
@media screen and (max-width: 767px) {
  .p-recruitMv__linkText {
    width: 7.2rem;
  }
}
.p-recruitMv__linkArrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  margin-left: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.18s;
  transition: -webkit-transform 0.18s;
  transition: transform 0.18s;
  transition: transform 0.18s, -webkit-transform 0.18s;
}
@media screen and (max-width: 767px) {
  .p-recruitMv__linkArrow {
    width: 2.1rem;
  }
}
.p-recruitMv__link:hover {
  background-color: #ffffff;
  border: 1px solid #e50322;
}
.p-recruitMv__link:hover .p-recruitMv__linkArrow img {
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
  -webkit-transition: none;
  transition: none;
}
.p-recruitMv__link:hover .p-recruitMv__linkText img {
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
  -webkit-transition: none;
  transition: none;
}

/*======================================
  scss/02_layout/_p-recruitTopSlider.scss
======================================*/
.p-recruitTopSlider {
  margin-top: 15rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruitTopSlider {
    margin-top: 8rem;
  }
}
.p-recruitTopSlider__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scrollLeft 20s linear infinite;
          animation: scrollLeft 20s linear infinite;
}
.p-recruitTopSlider__wrap img {
  width: 26rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruitTopSlider__wrap img {
    width: 12.8rem;
  }
}
@-webkit-keyframes scrollLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scrollLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*======================================
  scss/04_project/_p-recruitSection1.scss
======================================*/
.p-recruitSection1 {
  margin-top: 16rem;
  width: 128rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1 {
    width: 100%;
  }
}
.p-recruitSection1__inner {
  width: 116rem;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__inner {
    width: 100%;
  }
}
.p-recruitSection1 h2 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 1;
}
.p-recruitSection1__title {
  display: block;
  width: 54.3rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__title {
    width: 27.5rem;
    margin-left: 3rem;
  }
}
.p-recruitSection1__titleDeco {
  position: absolute;
  display: block;
  width: 54.3rem;
  top: 9.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__titleDeco {
    width: 27.5rem;
    margin-left: 3rem;
  }
}
.p-recruitSection1__innerWrap {
  padding-top: 11.5rem;
  width: 112rem;
  background-color: #f4f3ed;
  margin-right: 0;
  margin-left: auto;
  margin-top: -4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__innerWrap {
    width: 34rem;
    padding-bottom: 15rem;
  }
}
.p-recruitSection1__contentWrap {
  width: 96rem;
  margin-right: 12rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-grid-columns: 1fr 5rem 1fr 5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto 14rem auto 14rem auto;
  grid-template-rows: repeat(3, auto);
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  row-gap: 14rem;
}
.p-recruitSection1__contentWrap > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-recruitSection1__contentWrap > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-recruitSection1__contentWrap > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.p-recruitSection1__contentWrap > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-recruitSection1__contentWrap > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.p-recruitSection1__contentWrap > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.p-recruitSection1__contentWrap > *:nth-child(7) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.p-recruitSection1__contentWrap > *:nth-child(8) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.p-recruitSection1__contentWrap > *:nth-child(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__contentWrap {
    width: 34rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 14rem;
  }
}
.p-recruitSection1__contentMiddle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  width: 65rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__contentMiddle {
    width: 34rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__content {
    width: 28.5rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__content--02, .p-recruitSection1__content--06 {
    margin-top: 3rem;
  }
}
.p-recruitSection1__contentInner {
  position: relative;
}
.p-recruitSection1__data {
  position: relative;
  width: 28.6rem;
}
.p-recruitSection1__circle {
  position: absolute;
  top: 2.3rem;
}
.p-recruitSection1__staffWrap {
  margin-top: 7rem;
  margin-left: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 80rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__staffWrap {
    position: relative;
    width: 34rem;
  }
}
.p-recruitSection1__staffItem {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__staffItem {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__staffItem--02 {
    top: 39.4rem;
    left: 4rem;
    width: 10.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__staffItem--01 {
    top: 179.4rem;
    left: 5rem;
    width: 7.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection1__staffItem--03 {
    bottom: 0;
    right: 3.5rem;
    width: 9.9rem;
  }
}

.effect-fade {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.effect-fade.effect-scroll {
  opacity: 1;
}

.effect-fade.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.effect-fade.delay-2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.effect-fade.delay-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*======================================
  scss/04_project/_p-recruitSection2.scss
======================================*/
.p-recruitSection2 {
  margin-top: 23rem;
  width: 128rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2 {
    width: 100%;
    margin-top: 14rem;
  }
}
.p-recruitSection2__inner {
  width: 96rem;
  margin-left: 12rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__inner {
    width: 100%;
    margin-left: auto;
  }
}
.p-recruitSection2 h2 {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.p-recruitSection2__title {
  display: block;
  width: 44.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__title {
    width: 30.5rem;
    margin-left: 3rem;
  }
}
.p-recruitSection2__titleDeco {
  position: absolute;
  display: block;
  width: 44.4rem;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__titleDeco {
    width: 30.5rem;
    left: 3rem;
  }
}
.p-recruitSection2__content {
  width: 88rem;
  margin-inline: auto;
  margin-top: 8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5.5rem 1fr 5.5rem 1fr 5.5rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.7rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__content {
    width: 33rem;
    -ms-grid-columns: 1fr 1.2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
    row-gap: 3.5rem;
  }
}
.p-recruitSection2__contentInner {
  position: relative;
  width: 18.5rem;
  height: 25.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5C5C5C;
  margin-inline: auto;
}
.p-recruitSection2__contentInner p {
  background-color: #f4f3ed;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3125;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding-block: 1rem;
  width: 100%;
  text-align: center;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__contentInner p {
    padding-block: 0.4rem;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
  }
}
.p-recruitSection2__contentInner h4 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.0769230769;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__contentInner h4 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.3333333333;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__contentInner {
    width: 15.9rem;
    height: 20.6rem;
  }
}
.p-recruitSection2__icon--01 {
  width: 12.2rem;
  margin-top: 5.1rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--01 {
    margin-top: 4rem;
  }
}
.p-recruitSection2__icon--02 {
  width: 80%;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--02 {
    width: 75%;
    margin-top: 2.4rem;
  }
}
.p-recruitSection2__icon--03 {
  width: 80%;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--03 {
    width: 75%;
    margin-top: 2.8rem;
  }
}
.p-recruitSection2__icon--04 {
  width: 100%;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--04 {
    margin-top: 2.4rem;
  }
}
.p-recruitSection2__icon--05 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--05 {
    width: 13rem;
    margin-top: 2.4rem;
  }
}
.p-recruitSection2__icon--06 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--06 {
    width: 13rem;
    margin-top: 2.4rem;
  }
}
.p-recruitSection2__icon--07 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--07 {
    width: 13rem;
    margin-top: 2.4rem;
  }
}
.p-recruitSection2__icon--08 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__icon--08 {
    width: 13rem;
    margin-top: 2.4rem;
  }
}
.p-recruitSection2__data01 {
  margin-top: 2rem;
  width: 9.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__data01 {
    margin-top: 1.5rem;
  }
}
.p-recruitSection2__data02 {
  width: 5.7rem;
  position: absolute;
  top: 12.5rem;
  left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__data02 {
    top: 8rem;
    left: 6rem;
  }
}
.p-recruitSection2__data03 {
  width: 8.1rem;
  position: absolute;
  top: 16.5rem;
  left: 5.3rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__data03 {
    width: 6.7rem;
    top: 12.5rem;
    left: 5rem;
  }
}
.p-recruitSection2__data04 {
  color: #5c5c5c;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  position: absolute;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
  top: 12rem;
  left: 0.4rem;
}
.p-recruitSection2__data04 span {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.3529411765;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__data04 {
    font-size: 33px;
    font-size: 3.3rem;
    line-height: 1;
    letter-spacing: 0em;
    top: 10.5rem;
    left: 0.4rem;
  }
}
.p-recruitSection2__data05 {
  width: auto;
  height: 4.6rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__data05 {
    font-size: 33px;
    font-size: 3.3rem;
    line-height: 1;
    letter-spacing: 0em;
    top: 10.5rem;
    left: 0.4rem;
  }
}
.p-recruitSection2__data06 {
  width: auto;
  height: 4.6rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__data06 {
    top: 10.5rem;
    left: 0.4rem;
  }
}
.p-recruitSection2__data07 {
  width: auto;
  height: 4.6rem;
  margin-top: 2.3rem;
}
.p-recruitSection2__data08 {
  height: 4.6rem;
  width: auto;
  margin-top: 2.3rem;
}
.p-recruitSection2__comment01 {
  margin-top: 2.5rem !important;
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__comment01 {
    margin-top: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection2__comment03 {
    margin-top: 2rem !important;
  }
}
.p-recruitSection2__comment04 {
  margin-top: 2rem !important;
}

.p-recruitSection__inner {
  width: 104.4rem;
  margin-inline: auto;
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.effect-fade.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.effect-fade.delay-2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.effect-fade.delay-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*======================================
  scss/04_project/_p-recruitSection3.scss
======================================*/
.p-recruitSection3 {
  margin-top: 23rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3 {
    margin-top: 15rem;
  }
}
.p-recruitSection3__inner {
  width: 104.4rem;
  margin-inline: auto;
  position: relative;
}
.p-recruitSection3__inner::after {
  content: "";
  position: absolute;
  width: 112rem;
  height: 48.5rem;
  background-color: #f4f3ed;
  top: 38rem;
  left: 4rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__inner::after {
    top: 26rem;
    width: 34rem;
    height: 139rem;
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__inner {
    width: 100%;
  }
}
.p-recruitSection3 h2 {
  position: relative;
}
.p-recruitSection3__title {
  display: block;
  width: 41.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__title {
    width: 27.7rem;
    margin-left: 3rem;
  }
}
.p-recruitSection3__titleDeco {
  position: absolute;
  display: block;
  width: 44.4rem;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__titleDeco {
    width: 27.7rem;
    left: 3rem;
  }
}
.p-recruitSection3__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
  margin-top: 20.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 18.2rem;
    row-gap: 5rem;
  }
}
.p-recruitSection3__blocksTitle {
  position: absolute;
  width: 20.4rem;
  top: -10rem;
  left: 0rem;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__blocksTitle {
    top: -10.5rem;
    left: 3rem;
    width: 13.6rem;
  }
}
.p-recruitSection3__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-recruitSection3__block img {
  width: 27rem;
  border-radius: 0.3rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__block img {
    width: 32rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__block {
    width: 32rem;
    margin-left: auto;
    margin-right: 0;
  }
}
.p-recruitSection3__blockTitle {
  padding-block: 0.8rem;
  width: 27rem;
  border-radius: 0.3rem;
  background-color: #e50322;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__blockTitle {
    padding-left: 1rem;
    text-align: left;
    width: 32rem;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.9230769231;
    letter-spacing: 0.05em;
  }
}
.p-recruitSection3__blockText {
  margin-top: 1.8rem;
  width: 27rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  color: #5C5C5C;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-recruitSection3__blockText {
    margin-left: 0;
    margin-right: auto;
  }
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.effect-fade.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.effect-fade.delay-2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.effect-fade.delay-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*======================================
  scss/04_project/_p-recruitSection3.scss
======================================*/
.p-recruitSection4 {
  margin-top: 27.9rem;
  position: relative;
}
.p-recruitSection4__inner {
  width: 104.4rem;
  margin-inline: auto;
  position: relative;
}
.p-recruitSection4__inner::after {
  content: "";
  position: absolute;
  width: 112rem;
  height: 113rem;
  background-color: #f4f3ed;
  top: -6rem;
  right: 4rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__inner::after {
    width: 34rem;
    height: 172rem;
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__inner {
    width: 100%;
  }
}
.p-recruitSection4__title {
  display: block;
  width: 41.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__title {
    width: 13.6rem;
  }
}
.p-recruitSection4__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 4.7rem auto;
  grid-template-rows: repeat(2, auto);
  gap: 4.7rem 5.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-recruitSection4__blocks > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-recruitSection4__blocks > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-recruitSection4__blocks > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-recruitSection4__blocks > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-recruitSection4__blocksTitle {
  position: absolute;
  width: 20.4rem;
  top: -11.5rem;
  right: 0rem;
  left: auto;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blocksTitle {
    top: -9.5rem;
    right: 3rem;
    width: 13.6rem;
  }
}
.p-recruitSection4__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 38.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d6d2d2;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__block {
    width: 33rem;
  }
}
.p-recruitSection4__blockImages {
  width: 22.3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blockImages {
    width: 15.3rem;
  }
}
.p-recruitSection4__blockNum {
  position: absolute;
  width: 4.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blockNum {
    width: 3rem;
  }
}
.p-recruitSection4__blockImg {
  width: 22.3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blockImg {
    width: 15rem;
  }
}
.p-recruitSection4__blockTexts {
  font-weight: 500;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.5263157895;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blockTexts {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}
.p-recruitSection4__blockTexts::before {
  content: "";
  position: absolute;
  top: 9rem;
  left: -2rem;
  width: 1.4rem;
  height: 1.1rem;
  background-image: url("../images/recruitsection4_deco01.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blockTexts::before {
    width: 1rem;
    height: 0.8rem;
  }
}
.p-recruitSection4__blockTexts::after {
  content: "";
  position: absolute;
  top: 11.5rem;
  right: -2rem;
  width: 1.4rem;
  height: 1.1rem;
  background-image: url("../images/recruitsection4_deco02.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blockTexts::after {
    width: 1rem;
    height: 0.8rem;
  }
}
.p-recruitSection4__blockName {
  color: #5C5C5C;
  text-align: center;
  font-weight: 500;
  margin-top: 1.4rem !important;
  margin-bottom: 0 !important;
}
.p-recruitSection4__blockName .big {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.1176470588;
  letter-spacing: 0em;
}
.p-recruitSection4__blockName .small {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
}
.p-recruitSection4__blockName .middle {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  display: block;
}
.p-recruitSection4__blockText {
  text-align: center;
  margin-top: 2.4rem;
  color: #e50322;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__blockText {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}
.p-recruitSection4__readMoreLink {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitSection4__readMoreLink {
    margin-top: 2rem;
  }
}
.p-recruitSection4__readMoreIcon svg {
  width: 3.1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-recruitSection4__readMoreIcon svg circle {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.p-recruitSection4__readMoreIcon svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
.p-recruitSection4__readMoreText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 6.8rem;
  margin-left: 0.8rem;
}
.p-recruitSection4__readMoreText img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.p-recruitSection4__block:hover .p-recruitSection4__readMoreIcon svg circle {
  fill: #e50322;
}
.p-recruitSection4__block:hover .p-recruitSection4__readMoreIcon svg path {
  stroke: #fff;
}
.p-recruitSection4__block:hover .p-recruitSection4__readMoreText img {
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
  -webkit-transition: none;
  transition: none;
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.effect-fade.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.effect-fade.delay-2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.effect-fade.delay-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*======================================
  scss/04_project/_p-serviceStep05.scss
======================================*/
.p-recruitSection5 {
  margin-top: 27.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection5 {
    margin-top: 20rem;
  }
}
.p-recruitSection5__inner {
  width: 104.4rem;
  margin-inline: auto;
  position: relative;
}
.p-recruitSection5__inner::after {
  content: "";
  position: absolute;
  width: 112rem;
  height: 87rem;
  background-color: #f4f3ed;
  top: 13rem;
  left: 4rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-recruitSection5__inner::after {
    width: 34rem;
    height: 178.3rem;
    left: auto;
    right: 0;
    top: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection5__inner {
    width: 100%;
  }
}
.p-recruitSection5 h2 {
  position: relative;
}
.p-recruitSection5__title {
  display: block;
  width: 44.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection5__title {
    width: 25.3rem;
    margin-left: 3rem;
  }
}
.p-recruitSection5__titleDeco {
  position: absolute;
  display: block;
  width: 2.3rem;
  top: 17rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection5__titleDeco {
    width: 1.6rem;
    top: 11rem;
    left: 3rem;
  }
}
.p-recruitSection5__contentTitle {
  width: 19.9rem;
  margin-inline: auto;
  padding-top: 4rem;
}
.p-recruitSection5__contentDeco {
  width: 87.8rem;
  margin-left: 17rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection5__contentDeco {
    width: 0.1rem;
    margin-inline: auto;
  }
}
.p-recruitSection5__itemTitle--01 {
  width: 7.4rem;
}
.p-recruitSection5__itemTitle--02 {
  width: 12.4rem;
}
.p-recruitSection5__itemTitle--03 {
  width: 22.1rem;
}
.p-recruitSection5__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10rem;
     -moz-column-gap: 10rem;
          column-gap: 10rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection5__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12rem;
  }
}
.p-recruitSection5__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-recruitSection5__img {
  width: 25.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}
.p-recruitSection5__name {
  margin-top: 2.1rem;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  color: #5C5C5C;
  text-align: center;
}
.p-recruitSection5__name span {
  font-size: 10px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0em;
}
.p-recruitSection5__text {
  text-align: center;
  color: #5C5C5C;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  margin-top: 0.7rem;
}
.p-recruitSection5__itemDeco {
  width: 33rem;
  position: absolute;
  z-index: -1;
  top: 8rem;
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.effect-slideDown {
  clip-path: inset(0 0 100% 0);
  -webkit-transition: clip-path 1s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: clip-path 1s cubic-bezier(0.39, 0.58, 0.57, 1);
  will-change: clip-path;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.effect-slideDown.effect-scroll {
  clip-path: inset(0);
}

.effect-fade.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.effect-fade.delay-2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.effect-fade.delay-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*======================================
  scss/04_project/_p-serviceStep05.scss
======================================*/
.p-recruitSection6 {
  width: 128rem;
  margin-top: 39rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruitSection6 {
    width: 100%;
    margin-top: 33rem;
  }
}
.p-recruitSection6::after {
  content: "";
  position: absolute;
  width: 112rem;
  height: 35.9rem;
  background-color: #f4f3ed;
  top: -6rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruitSection6::after {
    width: 34rem;
    height: 91.2rem;
  }
}
.p-recruitSection6__inner {
  width: 96rem;
  margin-left: 12rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection6__inner {
    width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-recruitSection6__title {
  position: absolute;
  display: block;
  width: 45.8rem;
  top: -12rem;
  right: 11.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection6__title {
    width: 30.6rem;
    top: -9.5rem;
    right: 3rem;
  }
}
.p-recruitSection6__titleDeco {
  position: absolute;
  display: block;
  width: 1.9rem;
  top: -2rem;
  right: 11.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection6__titleDeco {
    width: 1.3rem;
    top: -3rem;
    right: 3rem;
  }
}
.p-recruitSection6__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  margin-left: 12rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection6__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 33rem;
    row-gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection6__item--02 {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection6__img {
    width: 28.6rem;
  }
}
.p-recruitSection6__readMoreLink {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
  margin-left: auto;
}
.p-recruitSection6__readMoreIcon svg {
  width: 3.1rem;
}
.p-recruitSection6__readMoreText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 6.8rem;
  margin-left: 0.8rem;
}
.p-recruitSection6__item:hover .p-recruitSection6__readMoreIcon svg circle {
  fill: #e50322;
}
.p-recruitSection6__item:hover .p-recruitSection6__readMoreIcon svg path {
  stroke: #fff;
}
.p-recruitSection6__item:hover .p-recruitSection6__readMoreLink img {
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
  -webkit-transition: none;
  transition: none;
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease;
  transition: opacity 0.6s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.effect-fade.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.effect-fade.delay-2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.effect-fade.delay-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*======================================
  scss/04_project/_p-serviceStep07.scss
======================================*/
.p-recruitSection7 {
  margin-top: 22rem;
}
.p-recruitSection7__inner {
  width: 104rem;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__inner {
    width: 100%;
  }
}
.p-recruitSection7 h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-recruitSection7__title {
  display: block;
  width: 43rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__title {
    width: 27.3rem;
    margin-left: 3rem;
  }
}
.p-recruitSection7__titleDeco {
  position: absolute;
  display: block;
  width: 2.4rem;
  top: 9.7rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__titleDeco {
    width: 1.7rem;
    top: 6.7rem;
    left: 3rem;
  }
}
.p-recruitSection7__content {
  width: 96rem;
  margin-right: 0;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-recruitSection7__image {
  width: 58rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__image {
    width: 100%;
  }
}
.p-recruitSection7__textWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__textWrap {
    width: 33rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__addWrap {
    width: 28.5rem;
    margin-right: 0;
    margin-left: auto;
  }
}
.p-recruitSection7__addTitle {
  width: 37rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__addTitle {
    width: 28.5rem;
    margin-top: 4.2rem;
  }
}
.p-recruitSection7__addFlexWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  margin-top: 0.9rem;
}
.p-recruitSection7__addLeftWrap p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 500;
  color: #5C5C5C;
}
.p-recruitSection7__mapLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
  margin-top: 1.9rem;
}
.p-recruitSection7__mapLink .p-recruitSection7__mapIcon {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
}
.p-recruitSection7__mapLink .p-recruitSection7__mapIcon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.p-recruitSection7__mapLink .p-recruitSection4__mapText {
  display: block;
  width: 9.9rem;
}
.p-recruitSection7__mapIcon svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__mapIcon svg {
    width: 2.8rem;
  }
}
.p-recruitSection7__addRightWrap {
  width: 16.9rem;
  border-radius: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__addRightWrap {
    width: 24.8rem;
    margin-top: 3.5rem;
  }
}
.p-recruitSection7__accessWrap {
  margin-top: 5.5rem;
}
.p-recruitSection7__accessWrap h3 {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__accessWrap {
    width: 28.5rem;
    margin-right: 0;
    margin-left: auto;
  }
}
.p-recruitSection7__accessTitle {
  width: 37rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__accessTitle {
    width: 28.5rem;
  }
}
.p-recruitSection7__accessTextList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
  margin-top: 2.6rem;
  color: #5C5C5C;
}
.p-recruitSection7__accessTextItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6rem;
  color: #222;
}
.p-recruitSection7__accessTextItem span:first-of-type {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__accessTextItem span:first-of-type {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
.p-recruitSection7__accessTextItem span:nth-of-type(2) {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 400;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__accessTextItem span:nth-of-type(2) {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0em;
  }
}
.p-recruitSection7__buttonItem {
  display: block;
  width: 21.2rem;
  margin-top: 20rem;
  margin-inline: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-recruitSection7__buttonItem:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-recruitSection7__buttonItem {
    width: 11.9rem;
    margin-top: 10rem;
  }
}
.p-recruitSection7__addWrap:hover .p-recruitSection7__mapIcon svg circle {
  fill: #e50322;
}
.p-recruitSection7__addWrap:hover .p-recruitSection7__mapIcon svg path {
  stroke: #fff;
}
.p-recruitSection7__addWrap:hover .p-recruitSection7__mapText img {
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7477%) hue-rotate(350deg) brightness(81%) contrast(106%);
  -webkit-transition: none;
  transition: none;
}

/*======================================
  scss/04_project/_p-recruitSection8.scss
======================================*/
.p-recruitSection8 {
  position: relative;
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection8 {
    margin-top: 8rem;
  }
}
.p-recruitSection8__inner {
  width: 104rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitSection8__inner {
    width: 33rem;
  }
}
.p-recruitSection8__title {
  width: 100%;
}
.p-recruitSection8__list {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection8__list {
    margin-top: 3rem;
    gap: 1rem;
  }
}
.p-recruitSection8__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f4f3ed;
  border-radius: 0.3rem;
  width: 75.7rem;
  margin-inline: auto;
  padding-inline: 2.7rem;
  padding-block: 1.7rem;
  color: #5C5C5C;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-recruitSection8__item {
    width: 100%;
    padding-block: 1rem;
    padding-inline: 1.4rem;
  }
}
.p-recruitSection8__item:hover {
  background: #e50322;
}
.p-recruitSection8__item:hover .p-recruitSection8__data,
.p-recruitSection8__item:hover .p-recruitSection8__content {
  color: #ffffff;
}
.p-recruitSection8__item:hover .p-recruitSection8__link {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.p-recruitSection8__item:hover .p-recruitSection8__link::before {
  width: 6.8rem;
  right: 2.3rem;
  left: auto;
}
.p-recruitSection8__link {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 5.3rem;
}
.p-recruitSection8__link::before {
  content: "";
  position: absolute;
  width: 0;
  border-top: 1px solid #ffffff;
  top: 2.6rem;
  right: 2.3rem;
  left: auto;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-recruitSection8__link {
    width: 2.8rem;
  }
  .p-recruitSection8__link::before {
    top: 1.6rem;
  }
}
.p-recruitSection8__data {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-recruitSection8__data {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.p-recruitSection8__content {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.5238095238;
  letter-spacing: 0em;
  margin-left: 2.3rem;
  width: 48rem;
}
@media screen and (max-width: 767px) {
  .p-recruitSection8__content {
    margin-left: 1rem;
    width: 19rem;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

/*======================================
  scss/04_project/_p-modal.scss
======================================*/
.p-modal {
  opacity: 0;
  visibility: hidden;
  font-weight: 600;
}
.p-modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: #333333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.08em;
}
.p-modal__textInner {
  font-size: 14px;
  color: #000000;
  line-height: 150%;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-modal__titleInner {
  font-size: 24px;
  color: #000000;
  line-height: 150%;
  letter-spacing: 0.1em;
}
.p-modal__flexList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
}
.p-modal__flex {
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-modal__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4rem;
  }
}
.p-modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.p-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.p-modal__container {
  background-color: #fff;
  padding: 32px;
  height: 80%;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-modal.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  position: fixed;
}
.p-modal__overlay {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__close {
  width: 20px;
  height: 20px;
  font-size: large;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #000000;
  position: relative;
}
.modal__close::before {
  position: absolute;
  content: "✕";
}

.p-recruitSection7__buttonItem {
  display: block;
}

/*======================================
  scss/04_project/_p-staffMv.scss
======================================*/
@media screen and (max-width: 767px) {
  .p-staffMv {
    padding-top: 2rem;
  }
}
.p-staffMv__visualTitle {
  width: 13.6rem;
  margin-left: 3rem;
}
.p-staffMv__visualImage {
  width: 100%;
  margin-top: 2rem;
}
.p-staffMv h2 {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 500;
  color: #5C5C5C;
  width: 88rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-staffMv h2 {
    width: 33rem;
  }
}
.p-staffMv__name {
  min-width: 27.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e50322;
  border-radius: 4rem;
  color: #ffffff;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.7rem;
     -moz-column-gap: 1.7rem;
          column-gap: 1.7rem;
  padding-inline: 3rem;
  padding-block: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-staffMv__name {
    min-width: 23.8rem;
    padding-block: 1em;
  }
}
.p-staffMv__nameFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.7rem;
     -moz-column-gap: 1.7rem;
          column-gap: 1.7rem;
}
.p-staffMv__nameNum {
  display: inline-block;
  width: 4.3rem;
  margin-top: -0.5rem;
}
.p-staffMv__nameInner {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-staffMv__nameInner {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.1333333333;
    letter-spacing: 0.05em;
  }
}
.p-staffMv__nameInner span {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-staffMv__nameInner span {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.5454545455;
    letter-spacing: 0.05em;
  }
}
.p-staffMv__nameInner span:nth-of-type(2) {
  display: block;
}
.p-staffMv__inner {
  width: 88rem;
  margin-inline: auto;
  margin-top: -3.5rem;
  position: relative;
}
.p-staffMv__inner h2 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 500;
  color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .p-staffMv__inner h2 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) {
  .p-staffMv__inner {
    width: 39rem;
  }
}
.p-staffMv__scroll {
  width: 4.4rem;
  margin-top: 5.8rem;
  margin-inline: auto;
}

/*======================================
  scss/04_project/_p-staffMv.scss
======================================*/
.p-staffQue {
  width: 128rem;
  margin-inline: auto;
  margin-top: 7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-staffQue {
    width: 39rem;
  }
}
.p-staffQue__title {
  width: 28rem;
  margin-left: 20rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__title {
    width: 18.7rem;
    margin-left: 3rem;
  }
}
.p-staffQue__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 7.5rem;
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__content {
    row-gap: 4rem;
    margin-top: 4rem;
  }
}
.p-staffQue__contentInner {
  width: 108rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentInner {
    width: 39rem;
  }
}
.p-staffQue__contentInner--01, .p-staffQue__contentInner--03 {
  margin-right: 0rem;
  margin-left: auto;
}
.p-staffQue__contentBg {
  width: 105.4rem;
  background-color: #f4f3ed;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentBg {
    width: 34rem;
    top: 6rem;
  }
}
.p-staffQue__contentWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentWrap {
    position: relative;
    row-gap: 5rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentText {
    width: 33rem;
    margin-inline: auto;
  }
}
.p-staffQue__contentText p {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0em;
  color: #5C5C5C;
  width: 45.9rem;
  margin-top: 2rem;
  margin-bottom: 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentText p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    width: 33rem;
    margin-top: 1.5rem;
  }
}
.p-staffQue__contentText h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.p-staffQue__contentText h4 {
  margin-top: 2.5rem;
}
.p-staffQue__contentText--01 h3 {
  width: 27rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentText--01 h3 {
    width: 18.7rem;
  }
}
.p-staffQue__contentText--02 h3 {
  width: 37.4rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentText--02 h3 {
    width: 25.8rem;
  }
}
.p-staffQue__contentText--03 h3 {
  width: 26.1rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentText--03 h3 {
    width: 18rem;
  }
}
.p-staffQue__contentText--04 h3 {
  width: 32.6rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentText--04 h3 {
    width: 22.5rem;
  }
}
.p-staffQue__contentText--05 h3 {
  width: 34.1rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentText--05 h3 {
    width: 23.5rem;
  }
}
.p-staffQue__contentImage {
  width: 48.8rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentImage {
    width: 30rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentImage--01 {
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentImage--02 {
    margin-right: 0;
    margin-left: auto;
    margin-top: 0rem;
  }
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentImage--03 {
    margin-left: 0;
    margin-right: auto;
    margin-top: 0rem;
  }
}
.p-staffQue__contentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15rem;
     -moz-column-gap: 15rem;
          column-gap: 15rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-staffQue__contentInner--02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-staffQue__contentInner--02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-staffQue__deco {
  position: absolute;
  width: 7.8rem;
  right: 4.2rem;
  top: 23rem;
}
@media screen and (max-width: 767px) {
  .p-staffQue__deco {
    width: 30.9rem;
    left: 6.2rem;
    right: auto;
  }
}
.p-staffQue__deco--ishihara {
  top: 46rem;
}
.p-staffQue__deco--izawa {
  top: 45.5rem;
}
.p-staffQue__deco--kimura {
  top: 44rem;
}
.p-staffQue__deco--nagase {
  top: 46rem;
}

.staff01 .p-staffQue__contentText--01 h4 {
  width: 30.7rem;
}
@media screen and (max-width: 767px) {
  .staff01 .p-staffQue__contentText--01 h4 {
    width: 21.6rem;
  }
}
.staff01 .p-staffQue__contentText--02 h4 {
  width: 40.4rem;
}
@media screen and (max-width: 767px) {
  .staff01 .p-staffQue__contentText--02 h4 {
    width: 28.4rem;
  }
}
.staff01 .p-staffQue__contentText--03 h4 {
  width: 21.1rem;
}
@media screen and (max-width: 767px) {
  .staff01 .p-staffQue__contentText--03 h4 {
    width: 14.8rem;
  }
}
.staff01 .p-staffQue__contentText--04 h4 {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .staff01 .p-staffQue__contentText--04 h4 {
    width: 12.3rem;
  }
}
.staff01 .p-staffQue__contentText--05 h4 {
  width: 21.9rem;
}
@media screen and (max-width: 767px) {
  .staff01 .p-staffQue__contentText--05 h4 {
    width: 12.3rem;
  }
}
.staff01 .p-staffQue__contentBg {
  height: 238rem;
}
@media screen and (max-width: 767px) {
  .staff01 .p-staffQue__contentBg {
    height: 226rem;
  }
}

.staff02 .p-staffQue__contentText--01 h4 {
  width: 49.3rem;
}
@media screen and (max-width: 767px) {
  .staff02 .p-staffQue__contentText--01 h4 {
    width: 34.6rem;
  }
}
.staff02 .p-staffQue__contentText--02 h4 {
  width: 36.7rem;
}
@media screen and (max-width: 767px) {
  .staff02 .p-staffQue__contentText--02 h4 {
    width: 25.8rem;
  }
}
.staff02 .p-staffQue__contentText--03 h4 {
  width: 39.2rem;
}
@media screen and (max-width: 767px) {
  .staff02 .p-staffQue__contentText--03 h4 {
    width: 27.5rem;
  }
}
.staff02 .p-staffQue__contentText--04 h4 {
  width: 35.8rem;
}
@media screen and (max-width: 767px) {
  .staff02 .p-staffQue__contentText--04 h4 {
    width: 25.1rem;
  }
}
.staff02 .p-staffQue__contentText--05 h4 {
  width: 16.7rem;
}
@media screen and (max-width: 767px) {
  .staff02 .p-staffQue__contentText--05 h4 {
    width: 11.7rem;
  }
}
.staff02 .p-staffQue__contentBg {
  height: 230rem;
}
@media screen and (max-width: 767px) {
  .staff02 .p-staffQue__contentBg {
    height: 220rem;
  }
}

.staff03 .p-staffQue__contentText--01 h4 {
  width: 37.2rem;
}
@media screen and (max-width: 767px) {
  .staff03 .p-staffQue__contentText--01 h4 {
    width: 26.2rem;
  }
}
.staff03 .p-staffQue__contentText--02 h4 {
  width: 14.3rem;
}
@media screen and (max-width: 767px) {
  .staff03 .p-staffQue__contentText--02 h4 {
    width: 10rem;
  }
}
.staff03 .p-staffQue__contentText--03 h4 {
  width: 31.7rem;
}
@media screen and (max-width: 767px) {
  .staff03 .p-staffQue__contentText--03 h4 {
    width: 22.3rem;
  }
}
.staff03 .p-staffQue__contentText--04 h4 {
  width: 25.6rem;
}
@media screen and (max-width: 767px) {
  .staff03 .p-staffQue__contentText--04 h4 {
    width: 18rem;
  }
}
.staff03 .p-staffQue__contentText--05 h4 {
  width: 22.1rem;
}
@media screen and (max-width: 767px) {
  .staff03 .p-staffQue__contentText--05 h4 {
    width: 17.8rem;
  }
}
.staff03 .p-staffQue__contentBg {
  height: 243.5rem;
}
@media screen and (max-width: 767px) {
  .staff03 .p-staffQue__contentBg {
    height: 229rem;
  }
}

.staff04 .p-staffQue__contentText--01 h4 {
  width: 35.1rem;
}
@media screen and (max-width: 767px) {
  .staff04 .p-staffQue__contentText--01 h4 {
    width: 24.7rem;
  }
}
.staff04 .p-staffQue__contentText--02 h4 {
  width: 34.7rem;
}
@media screen and (max-width: 767px) {
  .staff04 .p-staffQue__contentText--02 h4 {
    width: 24.4rem;
  }
}
.staff04 .p-staffQue__contentText--03 h4 {
  width: 28.3rem;
}
@media screen and (max-width: 767px) {
  .staff04 .p-staffQue__contentText--03 h4 {
    width: 19.9rem;
  }
}
.staff04 .p-staffQue__contentText--04 h4 {
  width: 31.6rem;
}
@media screen and (max-width: 767px) {
  .staff04 .p-staffQue__contentText--04 h4 {
    width: 22.2rem;
  }
}
.staff04 .p-staffQue__contentText--05 h4 {
  width: 9.7rem;
}
@media screen and (max-width: 767px) {
  .staff04 .p-staffQue__contentText--05 h4 {
    width: 6.8rem;
  }
}
.staff04 .p-staffQue__contentBg {
  height: 248em;
}
@media screen and (max-width: 767px) {
  .staff04 .p-staffQue__contentBg {
    height: 233rem;
  }
}

/*======================================
  scss/04_project/_p-staffMessage.scss
======================================*/
.p-staffMessage {
  width: 88rem;
  margin-inline: auto;
  margin-top: 32rem;
  position: relative;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-staffMessage {
    width: 39rem;
    padding-top: 2rem;
    margin-top: 19.8rem;
  }
}
.p-staffMessage::before {
  content: "";
  position: absolute;
  border-top: 1px solid #d6d2d2;
  width: 108rem;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-staffMessage::before {
    width: 36rem;
    top: 1rem;
    right: 0;
    left: auto;
  }
}
.p-staffMessage__title {
  display: block;
  width: 31.4rem;
}
@media screen and (max-width: 767px) {
  .p-staffMessage__title {
    width: 20.9rem;
    margin-left: 3rem;
  }
}
.p-staffMessage__textWrap h3 {
  width: 37rem;
}
@media screen and (max-width: 767px) {
  .p-staffMessage__textWrap h3 {
    width: 24.7rem;
  }
}
.p-staffMessage__textWrap p {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0em;
  margin-top: 4rem;
  font-weight: 400;
  color: #5C5C5C;
  width: 44rem;
}
@media screen and (max-width: 767px) {
  .p-staffMessage__textWrap p {
    width: 33rem;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    padding-top: 34.5rem;
  }
}
.p-staffMessage__image {
  width: 35.3rem;
}
@media screen and (max-width: 767px) {
  .p-staffMessage__image {
    width: 33rem;
    position: absolute;
    top: 5rem;
  }
}
.p-staffMessage__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-staffMessage__flex {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-top: 4.2rem;
  }
}

/*======================================
  scss/04_project/_p-staffBa.scss
======================================*/
.p-staffBa {
  width: 88rem;
  margin-inline: auto;
  margin-top: 12.7rem;
  position: relative;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-staffBa {
    width: 39rem;
    padding-top: 2rem;
  }
}
.p-staffBa::before {
  content: "";
  position: absolute;
  border-top: 1px solid #d6d2d2;
  width: 108rem;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-staffBa::before {
    width: 36rem;
    right: 0;
    top: 1rem;
    left: auto;
  }
}
.p-staffBa__title {
  width: 14.3rem;
}
@media screen and (max-width: 767px) {
  .p-staffBa__title {
    width: 9.5rem;
    margin-left: 3rem;
  }
}
.p-staffBa__titleSub {
  width: 29.3rem;
  margin-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .p-staffBa__titleSub {
    width: 19.6rem;
    margin-left: 3rem;
    margin-top: 4.4rem;
  }
}
.p-staffBa__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-staffBa__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 4rem;
  }
}
.p-staffBa__flexBefore {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-staffBa__flexDeco {
    width: 1.8rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.p-staffBa__beforeDeco {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .p-staffBa__beforeDeco {
    width: 27.9rem;
  }
}
.p-staffBa__flexAfter {
  position: relative;
}
.p-staffBa__afterDeco {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .p-staffBa__afterDeco {
    width: 27.9rem;
  }
}
.p-staffBa__text {
  position: absolute;
  top: 11.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-align: center;
  color: #5C5C5C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-staffBa__text span:first-of-type {
  font-weight: 500;
  display: block;
  width: 33.2rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-staffBa__text span:first-of-type {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.3571428571;
    letter-spacing: 0.05em;
  }
}
.p-staffBa__text span:nth-of-type(2) {
  display: block;
  width: 33.2rem;
  margin-top: 3rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-staffBa__text span:nth-of-type(2) {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    width: 75%;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-staffBa__text {
    top: 7.5rem;
  }
}

/*======================================
  scss/04_project/_p-staffView.scss
======================================*/
.p-staffView {
  width: 88rem;
  margin-inline: auto;
  margin-top: 14rem;
  position: relative;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-staffView {
    width: 39rem;
    padding-top: 2rem;
  }
}
.p-staffView::before {
  content: "";
  position: absolute;
  border-top: 1px solid #d6d2d2;
  width: 108rem;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-staffView::before {
    width: 36rem;
    right: 0;
    top: 1rem;
    left: auto;
  }
}
.p-staffView__title {
  width: 16.5rem;
}
@media screen and (max-width: 767px) {
  .p-staffView__title {
    width: 11rem;
    margin-left: 3rem;
  }
}
.p-staffView__titleSub {
  width: 30.8rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-staffView__titleSub {
    width: 20.5rem;
    margin-top: 4rem;
  }
}
.p-staffView__flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-staffView__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.p-staffView__flexLeft {
  position: sticky;
  top: 10rem; /* Adjust as needed for spacing */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
.p-staffView__flexLeft::after {
  position: absolute;
  width: 128rem;
  height: 41.6rem;
  top: 27rem;
  left: -20rem;
  background-color: #f4f3ed;
  content: "";
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-staffView__flexLeft::after {
    top: 30rem;
    left: 0;
    width: 39rem;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .p-staffView__flexLeft {
    position: static;
    margin-inline: auto;
  }
}
.p-staffView__flexRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10rem;
  margin-top: 17rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-staffView__flexRight {
    row-gap: 5rem;
    margin-top: 8rem;
    margin-inline: auto;
  }
}
.p-staffView__flexRight h4 {
  margin-top: 1rem;
}
.p-staffView__image {
  width: 41.6rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.3rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-staffView__image {
    width: 33rem;
    margin-inline: auto;
  }
}
.p-staffView__image::after {
  position: absolute;
  content: "";
  border-bottom: 5px solid #e50322;
  width: 100%;
  bottom: 0;
  left: 0;
}
.p-staffView__flexRightInner {
  border-radius: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-staffView__flexRightInner {
    margin-inline: auto;
  }
}
.p-staffView__flexRightInner h4 {
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.1333333333;
  letter-spacing: 0.05em;
  color: #5C5C5C;
  text-align: center;
}
.p-staffView__flexRightInner h4 span {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-staffView__imageRight {
  width: 37.4rem;
}
@media screen and (max-width: 767px) {
  .p-staffView__imageRight {
    width: 33rem;
  }
}
.p-staffView__flexRightTitle {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #e50322;
  font-weight: 600;
  margin-top: 3.8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-staffView__flexRightTitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    margin-top: 2.2rem;
  }
}
.p-staffView__flexRightText {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0em;
  color: #5C5C5C;
  font-weight: 400;
  margin-top: 2.9rem;
  width: 37.4rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-staffView__flexRightText {
    width: 33rem;
    margin-top: 1.5rem;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
.p-staffView__bottom {
  width: 66.2rem;
  margin-top: 20.6rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-staffView__bottom {
    width: 39rem;
    margin-top: 8rem;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .staff01 .p-staffView__flexLeft::after {
    height: 117rem;
  }
}

@media screen and (max-width: 767px) {
  .staff02 .p-staffView__flexLeft::after {
    height: 124rem;
  }
}

@media screen and (max-width: 767px) {
  .staff03 .p-staffView__flexLeft::after {
    height: 164rem;
  }
}

@media screen and (max-width: 767px) {
  .staff04 .p-staffView__flexLeft::after {
    height: 124rem;
  }
}

/*======================================
  scss/04_project/_p-talkTop.scss
======================================*/
.staffContainer {
  background-color: #f4f3ed;
}
.staffContainer__inner {
  width: 128rem;
  margin-inline: auto;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .staffContainer__inner {
    width: 39rem;
  }
}

.p-talkTop {
  padding-top: 13.8rem;
}
@media screen and (max-width: 767px) {
  .p-talkTop {
    padding-top: 7.2rem;
  }
}
.p-talkTop__title {
  width: 45.8rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-talkTop__title {
    width: 30.6rem;
  }
}
.p-talkTop__image {
  width: 66rem;
  margin-top: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-talkTop__image {
    width: 100%;
    margin-top: 2rem;
  }
}
.p-talkTop__scroll {
  width: 4.4rem;
  margin-top: 4.6rem;
  margin-inline: auto;
}
.p-talkTop__introduction {
  width: 66rem;
  margin-top: 7rem;
  margin-inline: auto;
  border-top: 1px solid #d6d2d2;
}
@media screen and (max-width: 767px) {
  .p-talkTop__introduction {
    width: 33rem;
    margin-top: 3.2rem;
  }
}
.p-talkTop__introduction p {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0em;
  color: #5C5C5C;
  margin-top: 3.7rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-talkTop__introduction p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    margin-top: 4rem;
  }
}
.p-talkTop__introductionTitle {
  width: 8.6rem;
  padding-top: 1rem;
}

/*======================================
  scss/04_project/_p-talkMiddle.scss
======================================*/
.p-talkMiddle {
  padding: 13.8rem 0 0 0;
  width: 128rem;
  position: relative;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle {
    width: 33rem;
    padding: 8rem 0 0 0;
  }
}
.p-talkMiddle__title {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.68;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #5C5C5C;
  margin-inline: auto;
  position: relative;
}
.p-talkMiddle__title::before {
  position: absolute;
  content: "";
  width: 1.4rem;
  height: 1.1rem;
  background-image: url("../images/talk/talkmiddle_titledeco01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: -3rem;
  top: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__title::before {
    width: 1rem;
    height: 0.8rem;
    left: -2rem;
    top: 0.5rem;
  }
}
.p-talkMiddle__title::after {
  position: absolute;
  content: "";
  width: 1.4rem;
  height: 1.1rem;
  background-image: url("../images/talk/talkmiddle_titledeco02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  right: -3rem;
  top: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__title::after {
    width: 1rem;
    height: 0.8rem;
    right: -2rem;
    top: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
  }
}
.p-talkMiddle__conetnt {
  width: 66rem;
  margin-top: 10rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__conetnt {
    width: 33rem;
    margin-top: 8rem;
  }
}
.p-talkMiddle__conetnt--02 {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__conetnt--02 {
    margin-top: 11.3rem;
  }
}
.p-talkMiddle__conetnt--02 .p-talkMiddle__imageWrap h3 {
  right: -6rem;
  left: auto;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__conetnt--02 .p-talkMiddle__imageWrap h3 {
    right: auto;
    left: 1rem;
  }
}
.p-talkMiddle__conetnt--02 .p-talkMiddle__imageWrap h3 span {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__conetnt--02 .p-talkMiddle__imageWrap h3 span {
    margin-right: auto;
    margin-left: 0;
  }
}
.p-talkMiddle__imageWrap {
  width: 100%;
  position: relative;
}
.p-talkMiddle__imageWrap h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
  position: absolute;
  top: 10.7rem;
  left: -6rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__imageWrap h3 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
    row-gap: 0.3rem;
    top: 15.7rem;
    left: 1rem;
  }
}
.p-talkMiddle__imageWrap h3 span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.8rem;
  background-color: #e50322;
  display: block;
}
.p-talkMiddle__image {
  width: 100%;
  border-radius: 0.3rem;
}
.p-talkMiddle__textWrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 6rem;
  margin-inline: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__textWrap {
    width: 33rem;
    gap: 3rem;
    margin-top: 9rem;
  }
}
.p-talkMiddle__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__flex {
    gap: 1.7rem;
  }
}
.p-talkMiddle__flex:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-talkMiddle__flex > p {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0em;
  color: #5C5C5C;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__flex > p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
.p-talkMiddle__flexIconWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__flexIconWrap {
    gap: 0rem;
  }
}
.p-talkMiddle__flexIconWrap > p {
  color: #5C5C5C;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__flexIconWrap > p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
.p-talkMiddle__flexIconWrap > p span {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 2.1818181818;
  letter-spacing: 0em;
  margin-left: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__flexIconWrap > p span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0em;
    margin-left: 0rem;
  }
}
.p-talkMiddle__flexIcon {
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
  background: #f4f3ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__flexIcon {
    width: 7.5rem;
  }
}
.p-talkMiddle__queWrap {
  margin-top: 5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  width: 55.6rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__queWrap {
    width: 33rem;
    margin-top: 10.4rem;
  }
}
.p-talkMiddle__queWrap p {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #5C5C5C;
  width: 48.4rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__queWrap p {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
    width: 27.4rem;
  }
}
.p-talkMiddle__queIcon {
  width: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-talkMiddle__queIcon {
    width: 3.6rem;
  }
}

/*======================================
  scss/04_project/_p-talkBottom.scss
======================================*/
.p-talkBottom {
  margin-top: 15rem;
  width: 66.2rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-talkBottom {
    width: 100%;
    max-width: 100%;
  }
}
.p-talkBottom__mainImage {
  margin-top: 20rem;
  width: 66rem;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.3rem;
}
.p-talkBottom__mainImage::after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #e50322;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-talkBottom__mainImage {
    width: 100%;
    margin-top: 10rem;
  }
}
.p-talkBottom__title {
  width: 100%;
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-talkBottom__title {
    width: 12.8rem;
    margin-inline: auto;
    margin-top: 8rem;
  }
}
.p-talkBottom__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4.7rem;
}
@media screen and (max-width: 767px) {
  .p-talkBottom__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.6rem;
  }
}
.p-talkBottom__flexImage {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .p-talkBottom__flexImage {
    width: 33rem;
    margin-inline: auto;
  }
}
.p-talkBottom__flexImage a {
  display: block;
  width: 100%;
}
.p-talkBottom__flexImage a img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 2px 10px rgba(40, 20, 0, 0.07);
          box-shadow: 0 2px 10px rgba(40, 20, 0, 0.07);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-talkBottom__flexImage a:hover img {
  -webkit-transform: translateY(-4px) scale(1.03);
          transform: translateY(-4px) scale(1.03);
}

/*======================================
  scss/04_project/_p-pageTop.scss
======================================*/
.p-pageTop {
  width: 7.5rem;
  margin-top: 15.6rem;
  margin-inline: auto;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-pageTop {
    margin-top: 8rem;
    padding-bottom: 4rem;
  }
}

/* Utility */
/*======================================
  scss/05_utility/_u-pcsp.scss
======================================*/
@media screen and (min-width: 768px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-spNone {
    display: none !important;
  }
}