@charset "utf-8";

/* CSS Document */

@font-face {
  font-family: 'GkkttSubset';
  src: url('../../common/fonts/851Gkktt_005.woff') format('woff'),
       url('../../common/fonts/851Gkktt_005.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*
font-family: 'GkkttSubset', sans-serif;
*/


:root {
  --font-family-gothic:     'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-accent:'GkkttSubset',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en:  'Roboto','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;

  --color-base: #fff;
  --color-main: #000;
  --color-accent01: #e71619;

}

.rcFontColor-accent01 {
  color: var(--color-accent01);
}

/***********
fade
************/

[data-fade] {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.1s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  transform: translateY(20px);
}
[data-fade="fade-up"].is-show {
  transform: translateY(0);
}

.l-stepFade-up > *{
  opacity: 0;
  transition: 0.6s;
  transition-delay: 0.1s;
  transform: translateY(20px);
}
.l-stepFade-up.is-show > *{
  opacity: 1;
  transform: translateY(0);
}

.l-stepFade-right > *{
  opacity: 0;
  transition: 0.6s;
  transition-delay: 0.1s;
  transform: translateX(20px);
}
.l-stepFade-right.is-show > *{
  opacity: 1;
  transform: translateX(0);
}

/***********
rcLogo
************/

.rcLogo {
  width: clamp(130px,50vw, 400px);
  position: absolute;
  left: 20px;
  top: 10px;
  z-index: 99;
}

.rcWrapper {
  font-family: var(--font-family-gothic);
  overflow: hidden;
}

body:has(.rcWrapper) .l-jumpTop {
  display: none !important;
}

/***********
rcMv
************/

.rcMv {
  position: relative;
  background-color: #999;
  margin-bottom: -1px;
}
.rcMv-wrapper {
  background-color: #000;
}
body.is-loaded .rcMv-wrapper {
  animation: anim-shake 0.1s 2 0.6s;
}

@keyframes anim-shake {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(4px, 2px) rotateZ(2deg)}
  50% {transform: translate(0px, 4px) rotateZ(0deg)}
  75% {transform: translate(2px, 0px) rotateZ(-2deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}


.rcMv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 50%, #000 100%);
  opacity: 0;
}

body.is-loaded .rcMv::after {
  opacity: 1;
  transition: 0.3s ease 1s;
}
.rcMv-visual {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  opacity: 0;
}
.rcMv-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, transparent 50%, #000 100%);
}
.rcMv-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
body.is-loaded .rcMv-visual {
  opacity: 1;
  transition: 0.3s ease 1s;
}

.rcMv-container {
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--color-base);
}
.rcMv-block {
  padding-bottom: 5vw;
}
.rcMv-title {
  width: clamp(800px,50vw, 1200px);
  margin: 0 auto;
  opacity: 0;
  scale: 1.5;
  transition: 0.5s cubic-bezier(0.5, 0, 0.75, 0) 0.1s;
}
body.is-loaded .rcMv-title {
  opacity: 1;
  scale: 1;
}


.rcMv-lead {
  font-size: clamp(30px,2.4vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
  padding-top: 0.3em;
  opacity: 0;
  translate: 0 0.5em;
}
body.is-loaded .rcMv-lead {
  opacity: 1;
  translate: 0 0;
  transition: 0.3s ease 1s;
}
.rcMv-lead br {
  display: none;
}


.rcMv-lower {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: min(15vw,10em) 0 min(10vw,6em) ;
}
.rcMv-subTitle {
  width: clamp(600px,38vw, 800px);
  margin: 0 auto;
}
.rcMv-subLead {
  color: var(--color-accent01);
  font-size: clamp(18px,1.4vw, 32px);
  font-weight: 700;
  padding-top: 0.3em;
}

@media screen and (max-width:834px) {

  .rcMv-visual {
    height: 50vmax;
    min-height: 400px;
    opacity: 0;
  }
  .rcMv-visual img {
    object-position: center  bottom;
  }

  .rcMv-container {
    height: 70vmax;
    min-height: 400px;
  }

  .rcMv-block {
    padding-bottom: 40px;
  }
  .rcMv-title {
    scale: 3;
    width: clamp(260px,96vw, 500px);
  }


  .rcMv-lead {
    font-size: clamp(16px,5vw, 22px);
  }
  .rcMv-lead br {
    display: inline;
  }


  .rcMv-lower {
    padding: min(2vw,1em) 0 min(10vw,3em) ;
    opacity: 0;
    translate: 0 20px;
  }

  body.is-loaded .rcMv-lower {
    opacity: 1;
    transition: 0.3s ease 1s;
    translate: 0 0;
  }

  .rcMv-subTitle {
    width: clamp(200px,58vw, 400px);
    margin: 0 auto;
  }
  .rcMv-subLead {
    color: var(--color-accent01);
    font-size: clamp(14px,3.6vw, 16px);
    padding-top: 1em;
  }




}

/***********
rcIntro
************/

.rcIntro {
  position: relative;
  overflow: hidden;
  padding-top: min(15vw,18em);
  padding-bottom: min(30vw,40em);
  color: var(--color-base);
}
.rcIntro::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/recruit_lp/bg01.jpg) no-repeat center top / cover ;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 10vw), 0 100%);
}

.rcIntro-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.rcIntro-visual {
  width: 55%;
}
.rcIntro-img {
  margin-right: -13.5vw;
}
.rcIntro-inner {
  flex: 1;
  padding-right: 5%;
}
.rcIntro-title {
  width: 100%;
}
.rcIntro-text {
  padding-top: 2em;
  font-weight: 600;
  font-size: clamp(16px,1.8vw, 24px);
  line-height: 2.2;
}



@media screen and (max-width:834px) {

  .rcIntro {
    padding-top: min(15vw,8em);
    padding-bottom: min(30vw,15em);
  }

  .rcIntro-container {
    display: block;
  }
  .rcIntro-visual {
    width: auto;
  }
  .rcIntro-img {
    margin-right: 0;
  }
  .rcIntro-inner {
    flex: 1;
    padding-top: 2em;
    padding-right: 0;
  }
  .rcIntro-title {
    width: 100%;
    max-width: 480px;
  }
  .rcIntro-text {
    padding-top: 1.5em;
    font-size: clamp(15px,3.8vw, 18px);
    line-height: 2;
  }

}

/***********
rcSummary
************/

.rcSummary {
  position: relative;
  z-index: 10;
}
.rcSummary-container {
  margin-right: -100px;
  margin-top: -12vw;
}


.rcSummary-section {
  display: flex;
}
.rcSummary-section + .rcSummary-section {
  margin-top: min(12vw,6em);
}
.rcSummary-visual {
  width: 45%;
  position: relative;
  z-index: 2;
}
.rcSummary-img {
  min-height: 100%;
}
.rcSummary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rcSummary-inner {
  flex: 1;
  padding-top: 5vw;
}
.rcSummary-box {
  background-color: var(--color-base);
  padding: min(6vw,7em) 10%;
  position: relative;
  z-index: 9;
}


.rcSummary-title {
  font-size: clamp(20px,2.1vw, 30px);
  font-weight: 900;
  margin-bottom: 0.8em;
}
.rcSummary-title span {
  display: inline;
  line-height: 1.7em;
  padding: 0em 0.5em 0.1em;
  color: var(--color-base);
  background: linear-gradient(transparent 0%, var(--color-main) 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

}
.rcSummary-text {
  font-size: clamp(14px,1.6vw, 17px);
  font-weight: 500;
  line-height: 2;
}


.rcSummary-section:not(.-reverse) .rcSummary-img {
  margin-right: -100px;
}
.rcSummary-section:not(.-reverse) .rcSummary-box {
  padding-right: 8%;
  padding-left: calc(100px + 10%);
}

.rcSummary-section.-reverse {
  flex-direction: row-reverse;
}
.rcSummary-section.-reverse .rcSummary-img {
  margin-left: -100px;
}
.rcSummary-section.-reverse .rcSummary-box {
  padding-left: 8%;
  padding-right: calc(100px + 10%);
}

@media screen and (max-width:1560px) {

  .rcSummary {
  }
  .rcSummary-container {
    margin-right: 0;
    margin-top: -12vw;
  }


  .rcSummary-section + .rcSummary-section {
    margin-top: min(12vw,6em);
  }
  .rcSummary-visual {
    width: 40%;
  }
  .rcSummary-img img {
    aspect-ratio: 1 / 1;
  }
  .rcSummary-inner {
    flex: 1;
    padding-top: 5vw;
  }
  .rcSummary-box {
    padding: min(6vw,4em) 8%;
  }

  .rcSummary-section:not(.-reverse) .rcSummary-img {
    margin-right: -100px;
  }
  .rcSummary-section:not(.-reverse) .rcSummary-box {
    padding-right: 8%;
    padding-left: calc(100px + 8%);
  }
  .rcSummary-section.-reverse .rcSummary-box {
    padding-left: 8%;
    padding-right: calc(100px + 8%);
  }

}

@media screen and (max-width:834px) {

  .rcSummary {
  }
  .rcSummary-container {
  }


  .rcSummary-section {
    display: block;
  }
  .rcSummary-section + .rcSummary-section {
    margin-top: min(8vw,3em);
  }
  .rcSummary-visual {
    width: auto;
  }
  .rcSummary-img ,
  .rcSummary-section:not(.-reverse) .rcSummary-img,
  .rcSummary-section.-reverse .rcSummary-img {
    min-height: initial;
    padding-right: 10%;
    margin: 0 0 0 -5.5vw;
  }
  .rcSummary-img img {
    aspect-ratio: 16 / 10;
  }
  .rcSummary-inner {
    flex: 1;
    padding: 0;
    margin-top: -30px;
  }
  .rcSummary-box ,
  .rcSummary-section:not(.-reverse) .rcSummary-box,
  .rcSummary-section.-reverse .rcSummary-box {
    padding: calc(min(6vw,2em) + 30px) 5% min(7vw,2em);
  }


  .rcSummary-title {
    font-size: clamp(16px,4.8vw, 24px);
    font-feature-settings: "palt";
  }
  .rcSummary-text {
    font-size: clamp(14px,1.6vw, 17px);
    line-height: 1.8;
  }

}

/***********
borderAnim
************/

.borderAnim {
  position: relative;
  pointer-events: none;
}

.borderAnim::before,
.borderAnim::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  box-sizing: border-box;
}

.borderAnim::before {
  top: 0;
  left: 0;
  border-top: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
}

.borderAnim::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
}

.borderAnim.is-show::before {
  animation: borderAnim-topLeft 0.6s ease-in-out forwards;
  animation-delay: 0.2s;
}
.borderAnim.is-show::after {
  animation: borderAnim-bottomRight 0.6s ease-in-out forwards;
  animation-delay: 0.4s;
}

/* 左上→左下→上辺完成 */
@keyframes borderAnim-topLeft {
  0%   { width: 0; height: 0; }
  100% { width: 100%; height: 100%; }
}

/* 右下→右上→下辺完成 */
@keyframes borderAnim-bottomRight {
  0%   { width: 0; height: 0; }
  100% { width: 100%; height: 100%; }
}


/***********
rcEvent
************/

.rcEvent {
  position: relative;
  overflow: hidden;
  padding-top: 20vw;
  padding-bottom: min(18vw,20em);
  color: var(--color-base);
  margin-top: -12vw;
  vertical-align: middle;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.rcEvent.is-show{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.rcEvent::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/recruit_lp/bg02.jpg) no-repeat center center / cover ;
  clip-path: polygon(0% 10vw, 100% 0%, 100% calc(100% - 10vw), 0 100%);
}

.rcEvent-container {
  position: relative;
  z-index: 2;
}

.rcEvent-heading {
  text-align: center;
}
.rcEvent-heading-title {
  width: clamp(200px,80vw, 700px);
  margin: 0 auto;
}
.rcEvent-heading-text {
  font-size: clamp(14px,1.6vw, 17px);
  font-weight: 400;
  line-height: 2;
  text-align: center;
  padding-top: 2em;
}

.rcEvent-photo {
  text-align: center;
  margin-top: 4em;
}

@media screen and (max-width:834px) {

  .rcEvent {
    padding-top: min(25vw,10em);
    padding-bottom: min(12vw,12em);
  }
  .rcEvent.is-show{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .rcEvent-photo {
    margin-top: 0;
  }

}

@media screen and (max-width:520px) {

  .rcEvent-photo {
    margin-left: -6vw;
    margin-right: -6vw;
  }

}


/***********
rcDay
************/

.rcDay {
  margin-top: min(5vw,4em);
}
.rcDay-container {
}

.rcDay-flow {
  padding-top: 2em;
}
.rcDay-section {
  display: flex;
  overflow: hidden;
}
.rcDay-section + .rcDay-section {
  margin-top: 2em;
}
.rcDay-heading {
  padding-right: 3em;
  padding-top: 2.5em;
}
.rcDay-time {
  font-family: var(--font-family-gothic-en);
  font-size: clamp(16px,2.4vw, 30px);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
.rcDay-section:not(:last-child) .rcDay-time::after {
  content: "";
  display: block;
  width: 2px;
  height: 500px;
  background-color: #000;
  margin: 0.5em auto 0;
  position: absolute;
  left: 50%;
  top: 100%;
}
.rcDay-inner {
  flex: 1;
}
.rcDay-block {
  background-color: #f0f0f0;
  padding: 2.5em min(5vw,3em);
  display: flex;
  flex-direction: row-reverse;
}
.rcDay-block-img {
  width: 33%;
  padding-left: 2em;
}
.rcDay-block-img img {
  border: 5px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.rcDay-block-inner {
  flex: 1;
}
.rcDay-title {
  font-family: var(--font-family-gothic-accent);
  font-weight: 400;
  font-size: clamp(20px,2.2vw, 32px);
  padding-bottom: 0.3em;
}
.rcDay-text {
  font-size: clamp(14px,1.6vw, 16px);
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .rcDay {
    margin-top: min(12vw,6em);
  }

  .rcDay-flow {
    padding-top: 1em;
    margin-left: -3vw;
  }
  .rcDay-section {
  }
  .rcDay-section + .rcDay-section {
    margin-top: 2em;
  }
  .rcDay-heading {
    padding-right:1em;
    padding-top: 1em;
  }
  .rcDay-time {
    font-size: clamp(12px,3vw, 16px);
  }
  .rcDay-section:not(:last-child) .rcDay-time::after {
    width: 1px;
  }
  .rcDay-block {
    padding: 1.5em min(4vw,2em);
    display: block;
  }
  .rcDay-block-img {
    width: auto;
    padding-left: 0;
    margin-bottom: 1.2em;
  }
  .rcDay-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 8;
  }
  .rcDay-block-inner {
    flex: 1;
  }
  .rcDay-title {
    font-size: clamp(20px,6vw, 28px);
    line-height: 1.2;
    padding-bottom: 0.4em;
  }
  .rcDay-text {
    font-size: clamp(13px,3vw, 16px);
    line-height: 1.6;
  }

}

/***********
rcHeading
************/

.rcHeading {
  text-align: center;
  padding-bottom: 3em;
}
.rcHeading-title {
  font-family: var(--font-family-gothic-accent);
  font-size: clamp(40px,5vw, 80px);
  font-weight: 400;
  line-height: 1.2;
}
.rcHeading-title-icon {
  width: 1em;
  vertical-align: middle;
  margin-right: 0.5em;
  translate: 0 -0.2em;
  scale: 1.2;
}
.rcHeading-text {
  font-size: clamp(14px,1.6vw, 17px);
  font-weight: 400;
  line-height: 2;
  text-align: center;
  padding-top: 1em;
}


.rcHeading.-white {
  color: var(--color-base);
}

@media screen and (max-width:834px) {

  .rcHeading {
    padding-bottom: 2em;
  }
  .rcHeading-title {
    font-size: clamp(20px,8vw, 40px);
  }
  .rcHeading-text {
    line-height: 1.8;
  }

}

@media screen and (max-width:520px) {

  .rcHeading-text {
    text-align: left;
  }

}

/***********
rcVoice
************/

.rcVoice {
  position: relative;
  overflow: hidden;
  padding-top: 14vw;
  padding-bottom: min(25vw,30em);
  color: var(--color-base);
  vertical-align: middle;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.rcVoice.is-show{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.rcVoice::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/recruit_lp/bg03.jpg) no-repeat center bottom / max(100%,1000px) auto ;
  background-color: #6d6d6d;
  clip-path: polygon(0% 10vw, 100% 0%, 100% calc(100% - 10vw), 0 100%);
}

.rcVoice-container {
  position: relative;
  z-index: 2;
}

.rcVoice-movie {
}
.rcVoice-movie a {
  display: inline-block;
  border: 12px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}



.rcVoice-staff {
  padding-top: 6em;
}
.rcVoice-section {
  display: flex;
  overflow: hidden;
  padding: 3em 5%;
  background: url(../../img/recruit_lp/pattern01.jpg);
  color: var(--color-main);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}
.rcVoice-section + .rcVoice-section {
  margin-top: 3em;
}
.rcVoice-img {
  width: 40%;
  padding-right: 8%;
}
.rcVoice-img img {
}

.rcVoice-inner {
  flex: 1;
  padding-top: 2em;
}
.rcVoice-title {
  font-weight: 800;
  font-size: clamp(16px,2vw, 24px);
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.rcVoice-title-name {
  font-family: var(--font-family-gothic-en);
  font-size: 200%;
  line-height: 1;
  color: #009f59;
  padding-right: 0.2em;
}
.rcVoice-text {
  font-size: clamp(15px,1.6vw, 16px);
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .rcVoice {
    padding-top: min(22vw,10em);
    padding-bottom: min(15vw,10em);
  }
  .rcVoice.is-show{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .rcVoice-movie {
  }
  .rcVoice-movie a {
    border: 8px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .rcVoice-staff {
    padding-top: 4em;
  }
  .rcVoice-section {
    padding: min(7vw,2em) min(5vw,2em) ;
    background-size: 200px auto;
  }
  .rcVoice-section + .rcVoice-section {
    margin-top: 2em;
  }
  .rcVoice-img {
    width: 35%;
    padding-right: 5%;
  }

  .rcVoice-inner {
    padding-top: 0;
  }
  .rcVoice-title {
    font-weight: 800;
    font-size: clamp(14px,3.6vw, 16px);
    margin-bottom: 1em;
  }
  .rcVoice-text {
    font-size: clamp(14px,3.6vw, 16px);
  }
}

@media screen and (max-width:520px) {


  .rcVoice-section {
    display: block;
  }
  .rcVoice-img {
    width: 40%;
    padding-right: 0;
    padding-left: 1em;
    background: url(../../img/recruit_lp/pattern01.jpg);
    background-size: 200px auto;
    float: right;
  }

}

/***********
rcBenefit
************/

.rcBenefit {
  padding-top: min(5vw,4em);
  padding-bottom: min(12vw,10em);
}

.rcBenefit-container {
  background-color: #ffe2e2;
  border: 2px solid var(--color-main);
  border-radius: 3px;
  position: relative;
  padding: min(8vw,4em) 6%;
  margin-top: 2em;
}

.rcBenefit-character01 {
  width: clamp(70px,20vw, 140px);
  position: absolute;
  right: 30px;
  top: -50px;
}
.rcBenefit-character02 {
  width: clamp(120px,30vw, 240px);
  position: absolute;
  right: 20px;
  bottom: 0;
}

.rcBenefit-list {
  font-size: clamp(17px,2vw, 30px);
  font-weight: 600;
}
.rcBenefit-list li {
  line-height: 1.4;
  background: url(../../img/recruit_lp/check.png) no-repeat left 0.2em / 1.1em auto;
  padding-left: 1.5em;
}
.rcBenefit-list li:not(:last-child) {
  margin-bottom: 0.8em;
}

@media screen and (max-width:834px) {

  .rcBenefit {
    padding-top: min(12vw,8em);
    padding-bottom: 100px;
    overflow: hidden;
  }

  .rcBenefit-container {
    margin-top: 0;
  }

  .rcBenefit-character01 {
    right: -15px;
  }
  .rcBenefit-character02 {
    width: clamp(120px,30vw, 240px);
    position: absolute;
    right: -40px;
    bottom: -122px;
  }

  .rcBenefit-list {
    font-size: clamp(17px,2vw, 30px);
    font-weight: 600;
  }
  .rcBenefit-list li {
    line-height: 1.4;
    background: url(../../img/recruit_lp/check.png) no-repeat left 0.2em / 1.1em auto;
    padding-left: 1.5em;
  }
  .rcBenefit-list li:not(:last-child) {
    margin-bottom: 0.8em;
  }

}


/***********
rcRecruit
************/

.rcRecruit {
  background: url(../../img/recruit_lp/bg04.jpg) no-repeat center center / cover;
  padding-top: min(12vw,10em);
  padding-bottom: min(15vw,12em);
}

.rcRecruit:has(.rcRecruit-lead.is-show) {
  animation: anim-shake 0.1s 2 0.6s;
}


.rcRecruit-container {
  padding-top: 2em;
}

.rcRecruit-table {
  border: 1px solid #aaa;
  font-size: clamp(14px,1.6vw, 17px);
}

.rcRecruit-table tbody th {
  border: 1px solid #aaa;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  padding: 1.2em 1.5em;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  background-color: #f0f0f0;
}

.rcRecruit-table tbody td {
  border: 1px solid #aaa;
  padding: 1.2em 1.5em;
  text-align: left;
  vertical-align: top;
  font-weight: 400;
  line-height: 1.7;
  background-color: #fff;
}

.rcRecruit-block {
  padding-top: 4em;
  text-align: center;
}
.rcRecruit-lead {
  width: clamp(200px,90vw, 700px);
  margin: 5% auto;
  rotate: -15deg;
  opacity: 0;
  scale: 1.5;
  transition: 0.5s cubic-bezier(0.5, 0, 0.75, 0) 0.1s;
}
.rcRecruit-lead.is-show {
  opacity: 1;
  scale: 1;
}

.rcRecruit-text {
  color: var(--color-accent01);
  font-size: clamp(16px,1.4vw, 32px);
  font-weight: 700;
  padding-top: 1.5em;
  line-height: 2;
}

@media screen and (max-width:640px) {

  .rcRecruit {
  }


  .rcRecruit-container {
    padding-top: 0;
  }

  .rcRecruit-table {
    font-size: clamp(13px,3vw, 15px);
  }

  .rcRecruit-table tbody th {
    padding: 0.8em ;
    line-height: 1.6;
  }

  .rcRecruit-table tbody td {
    padding: 0.8em ;
    line-height: 1.6;
  }

  .rcRecruit-block {
    padding-top: 4em;
  }
  .rcRecruit-lead {
  }
  .rcRecruit-lead.is-show {
    opacity: 1;
    scale: 1;
  }
}
/***********
rcVisual
************/

.rcVisual {
}
.rcVisual img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width:520px) {

  .rcVisual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }

}

/***********
rcCv
************/

.rcCv {
  background-color: #000;
}
.rcCv-btn {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: clamp(16px,1.4vw, 30px);
  height: 12em;
  min-height: 260px;
  background-color: var(--color-accent01);
  color: var(--color-base);
  text-decoration: none;
  position: relative;
  transition: 0s,background-color 0.2s,translate 0.5s ease;
}
body.is-fixed .rcCv-btn {
  translate: 0 0;
}
body:not(.is-fixed) .rcCv-btn {
  translate: 0 100%;
}
.rcCv-btn::after {
  content: "";
  display: block;
  width: 4em;
  height: 4em;
  position: absolute;
  right: 2em;
  top: 50%;
  translate: 0 -50%;
  rotate: -20deg;
  border: 2px solid var(--color-base);
  border-radius: 50%;
  background: url(../../img/recruit_lp/arrow_wt.png) no-repeat center center / 40% auto;
  transition: 0s,scale 0.2s;
}
body.is-pc .rcCv-btn:hover {
  background-color: #c00;
}
body.is-pc .rcCv-btn:hover::after {
  scale: 1.1;
}
.rcCv-btn-subTitle {
  font-family: var(--font-family-gothic-accent);
  font-weight: 400;
  font-size: 400%;
  line-height: 1;
}
.rcCv-btn-subTitle span {
  display: inline-block;
  position: relative;
}
.rcCv-btn-subTitle span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.1em;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right center;
}
.rcCv-btn:hover .rcCv-btn-subTitle span::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.rcCv-btn-title {
  font-weight: 700;
  padding-top: 0.5em;
}

body:not(.is-reached) .rcCv-btn {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  text-align: center;
  font-size: 13px;
  height: 80px;
  min-height: 80px;
}
body:not(.is-reached) .rcCv-btn-subTitle {
  font-size: 250%;
  padding-top: 0.5em;
  margin-top: -15px;
  margin-bottom: -5px;
}


@media screen and (max-width:834px) {

  .rcCv-btn {
    font-size: clamp(15px,4.5vw, 20px);
    min-height: 15em;
    min-height: 200px;
    padding-bottom: 60px;
  }
  .rcCv-btn::after {
    width: 50px;
    height: 50px;
    top: auto;
    right: 50%;
    bottom: 30px;
    translate: 50% 0 ;
    rotate: -20deg;
    border-width: 2px;
  }
  .rcCv-btn-subTitle {
    font-size: 250%;
  }

  body:not(.is-reached) .rcCv-btn {
    font-size: 10px;
    height: 60px;
    min-height: 60px;
    padding-bottom: 0;
  }
  body:not(.is-reached) .rcCv-btn-subTitle {
    font-size: 280%;
    margin-top: -12px;
    margin-bottom: -3px;
  }
  body:not(.is-reached) .rcCv-btn::after {
    width: 30px;
    height: 30px;
    top: auto;
    right: 10px;
    bottom: 50%;
    translate: 0 50% ;
  }

}

/***********
xxxxx
************/

/***********
xxxxx
************/
