@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP/Medium.otf") format("otf"), url("../font/NotoSansJP/Medium.woff") format("woff"), url("../font/NotoSansJP/Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP/Bold.otf") format("otf"), url("../font/NotoSansJP/Bold.woff") format("woff"), url("../font/NotoSansJP/Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/* 回転アニメーションの定義 */
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* バウンドアニメーションの定義 */
@keyframes popBounce {
  0% {
    transform: scale(0) translateX(-50%);
    opacity: 0;
  }
  70% {
    transform: scale(1.2) translateX(-50%);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateX(-50%);
    opacity: 1;
  }
}
@keyframes popBounce2 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 表示アニメーションの定義 */
@keyframes viewFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.lpr-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.lpr-header__inner {
  max-width: 1320px;
  padding: 40px 20px;
  margin: auto;
}
@media (max-width: 1024px) {
  .lpr-header__inner {
    padding: 32px 16px;
  }
}
@media (max-width: 828px) {
  .lpr-header__inner {
    padding: 20px 16px;
  }
}
.lpr-header__container {
  display: flex;
  justify-content: space-between;
}
.lpr-header__logo img {
  width: 188px;
  vertical-align: -webkit-baseline-middle;
}
.lpr-header__logo img.logo_pc {
  display: block;
}
.lpr-header__logo img.logo_sp {
  display: none;
}
@media (max-width: 828px) {
  .lpr-header__logo img {
    width: 40px;
  }
  .lpr-header__logo img.logo_pc {
    display: none;
  }
  .lpr-header__logo img.logo_sp {
    display: block;
  }
}
.lpr-header__title {
  display: flex;
  gap: 40px;
}
.lpr-header__title > * {
  cursor: pointer;
}
@media (max-width: 828px) {
  .lpr-header__title {
    display: none;
  }
}
.lpr-header__menu {
  display: none;
  width: 120px;
}
@media (max-width: 828px) {
  .lpr-header__menu {
    display: block;
  }
}
.lpr-header__menu .menu-hamburger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lpr-header__menu .menu-hamburger .btn-hamburger {
  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;
  background-color: #7ABFED;
  border: solid 2px #7ABFED !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 15px;
  border: none;
}
.lpr-header__menu .menu-hamburger .btn-hamburger:hover {
  background-color: #FFFFFF;
}
.lpr-header__menu .menu-hamburger .btn-hamburger:hover .box-hamburger span {
  background-color: #7ABFED;
}
.lpr-header__menu .menu-hamburger .btn-hamburger.active {
  background-color: #FFFFFF;
}
.lpr-header__menu .menu-hamburger .btn-hamburger.active span {
  background-color: #7ABFED !important;
}
.lpr-header__menu .menu-hamburger .btn-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}
.lpr-header__menu .menu-hamburger .btn-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.lpr-header__menu .menu-hamburger .btn-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}
.lpr-header__menu .menu-hamburger .btn-hamburger .box-hamburger {
  position: relative;
  width: 18px;
  height: 18px;
}
.lpr-header__menu .menu-hamburger .btn-hamburger .box-hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.lpr-header__menu .menu-hamburger .btn-hamburger .box-hamburger span:nth-child(1) {
  top: 0;
}
.lpr-header__menu .menu-hamburger .btn-hamburger .box-hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.lpr-header__menu .menu-hamburger .btn-hamburger .box-hamburger span:nth-child(3) {
  bottom: 0;
}

.lpr-footer {
  font-weight: 400;
}
.lpr-footer a:hover {
  opacity: 0.7;
}
.lpr-footer__inner {
  width: 100%;
  background-color: #301000;
  padding: 2rem 1rem 0.25rem;
  color: #FFFFFF;
}
.lpr-footer__container {
  max-width: 1240px;
  margin: auto;
}
.lpr-footer__body {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
}
.lpr-footer__body .list {
  width: calc(25% - 0.75rem);
}
@media (max-width: 1024px) {
  .lpr-footer__body .list {
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 540px) {
  .lpr-footer__body .list {
    width: 100%;
  }
}
.lpr-footer__body .list .title {
  font-weight: bold;
  font-size: 14px;
}
.lpr-footer__body .list .sub {
  font-size: 12px;
}
.lpr-footer__body .list ul {
  list-style: none;
  font-size: 14px;
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 540px) {
  .lpr-footer__body .list ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
  }
}
.lpr-footer__body .list ul li {
  margin-bottom: 0.5rem;
}
.lpr-footer__body .list ul li:last-child {
  margin-bottom: 0;
}
.lpr-footer__body .list ul li a {
  color: #CCC;
  text-decoration: none;
}
.lpr-footer__body .list .app_area {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 1200px) {
  .lpr-footer__body .list .app_area {
    gap: 0.5rem;
  }
}
@media (max-width: 1024px) {
  .lpr-footer__body .list .app_area {
    gap: 1rem;
  }
}
.lpr-footer__body .list .app_area--item {
  width: 50%;
}
.lpr-footer__body .list .app_list {
  display: block;
  text-align: center;
}
.lpr-footer__body .list .app_list img {
  width: 100%;
  max-width: 160px;
}
.lpr-footer__body .list .app_list.app_icon img {
  width: 100%;
  max-width: 80px;
  border-radius: 8px;
}
.lpr-footer__body .list .app_list.app_icon span {
  display: block;
  font-size: 12px;
}
.lpr-footer__app {
  margin-top: 1.5rem;
}
.lpr-footer__app ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.lpr-footer__app li {
  display: inline-block;
  margin-right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.lpr-footer__app li:last-child {
  margin-right: 0;
}
.lpr-footer__app svg {
  width: 40px;
  height: 40px;
}
.lpr-footer__app img {
  width: 48px;
  height: 48px;
  vertical-align: bottom;
}
.lpr-footer__logo {
  margin-top: 1rem;
  text-align: center;
}
.lpr-footer__logo .logo img {
  width: 240px;
}
@media (max-width: 540px) {
  .lpr-footer__logo .logo img {
    width: 200px;
  }
}
.lpr-footer__logo .logo:hover {
  opacity: 1;
}
.lpr-footer__logo .pmark {
  margin-left: 1rem;
  display: inline-block;
  border-radius: 8px;
  background-color: #FFFFFF;
}
.lpr-footer__logo .pmark img {
  width: 70px;
}
@media (max-width: 540px) {
  .lpr-footer__logo .pmark img {
    width: 60px;
  }
}
.lpr-footer__copy {
  margin-top: 1rem;
  text-align: center;
  font-size: 14px;
}

html {
  scroll-snap-type: y mandatory;
}

/* レイアウトのためのCSS */
.lpr-layout {
  overflow-x: hidden;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", sans-serif !important;
  color: #231614;
  font-size: 16px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}
.lpr-layout a {
  cursor: pointer;
  color: #231614;
  text-decoration: none;
}
.lpr-layout main {
  margin: auto;
  letter-spacing: 0.1em;
}

.lpr-button {
  border: solid 2px #FCCF00;
  background-color: #FCCF00;
  color: #231614;
  padding: 12px 16px;
  width: 360px;
  font-size: 18px;
  text-align: center;
  border-radius: 16px;
  display: inline-block;
}
.lpr-button:hover {
  color: #231614;
  background-color: #FFF;
}
@media (max-width: 828px) {
  .lpr-button {
    padding: 6px 8px;
    width: 280px;
    font-size: 15px;
  }
}

@media (max-width: 828px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 828px) {
  .sp {
    display: block !important;
  }
}

.rirecareer_logo {
  margin-bottom: 8px;
  text-align: center;
}
.rirecareer_logo > span {
  display: inline-block;
  width: 200px;
  margin: auto;
  background-color: #FFF;
  border: solid 1px;
  padding: 4px 8px;
  border-image: linear-gradient(135deg, #00A1E4 0%, #00A1E4 25%, #F37B96 20%, #F37B96 50%, #00A1E4 50%, #00A1E4 75%, #F37B96 75%, #F37B96 100%) 1;
}
.rirecareer_logo > span img {
  width: 100%;
  vertical-align: bottom;
}

.fs-sm {
  font-size: 14px;
}

.fs-xs {
  font-size: 12px;
}

.lpr-slideshow {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
@media (max-width: 828px) {
  .lpr-slideshow {
    height: auto;
    overflow-y: unset;
    scroll-snap-type: none;
  }
}
.lpr-slideshow::-webkit-scrollbar {
  display: none;
}
.lpr-slideshow .slide {
  scroll-snap-align: start;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 828px) {
  .lpr-slideshow .slide {
    scroll-snap-align: unset;
  }
}
.lpr-slideshow__button {
  position: absolute;
  bottom: 48px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 828px) {
  .lpr-slideshow__button {
    bottom: 32px;
  }
}

.lpr-top {
  max-width: 1320px;
  margin: 140px auto;
  padding: 0 20px;
}
@media (max-width: 828px) {
  .lpr-top {
    margin: 0 auto;
    padding: 0 0px;
  }
}
.lpr-top.show .lpr-top__container img {
  /*
  opacity: 1;*/
  /*animation: viewFade 1.0s ease-out 0.2s forwards;*/
}
.lpr-top__container {
  position: relative;
  margin: auto;
}
.lpr-top__container img {
  width: 100%;
  /*
  opacity: 0;
  transition: all 1.6s ease-out 0.2s;
  */
}
.lpr-top__container img.top_pc {
  display: block;
}
@media (max-width: 828px) {
  .lpr-top__container img.top_pc {
    display: none;
  }
}
.lpr-top__container img.top_sp {
  display: none;
  width: calc(100% - 16px);
  max-width: 480px;
  margin: auto;
}
@media (max-width: 828px) {
  .lpr-top__container img.top_sp {
    display: block;
  }
}
.lpr-top__container::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/lp/rirecareer_top_bg.svg);
  background-position: top center;
  background-size: contain;
  max-width: 100vw;
  width: 3200px;
  height: 3200px;
  z-index: -1;
  left: 50%;
  top: 300px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .lpr-top__container::after {
    top: 240px;
    background-size: cover;
    width: 100vw;
    height: 200vh;
  }
}
@media (max-width: 828px) {
  .lpr-top__container::after {
    top: 300px;
  }
}
.lpr-top__button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .lpr-top__button {
    bottom: -80px;
  }
}
@media (max-width: 828px) {
  .lpr-top__button {
    bottom: -60px;
  }
}
.lpr-top__button a {
  padding: 8px;
}

.lpr-what {
  position: relative;
}
.lpr-what.show .lpr-what__title {
  opacity: 1;
}
.lpr-what.show .lpr-what__text {
  opacity: 1;
}
.lpr-what.show .lpr-what__point {
  opacity: 1;
}
.lpr-what.show .lpr-what__point--list .list {
  opacity: 1;
}
.lpr-what.show .lpr-what__point--list .list--text {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.lpr-what.show .lpr-what__button {
  animation: popBounce 0.4s ease-out 5.2s forwards;
}
.lpr-what::after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-color: #7ABFED;
}
.lpr-what__container {
  padding: 0px 20px 40px;
  margin: auto;
  max-width: 720px;
}
@media (max-width: 828px) {
  .lpr-what__container {
    padding: 0px 10px 20px;
  }
}
.lpr-what__title {
  color: #FFF;
  font-size: 40px;
  text-align: center;
  opacity: 0;
  transition: all 0.8s ease-out 0.2s;
}
@media (max-width: 828px) {
  .lpr-what__title {
    font-size: 28px;
  }
}
.lpr-what__text {
  color: #FFF;
  font-size: 18px;
  text-align: center;
  margin-top: 32px;
  opacity: 0;
  transition: all 1.2s ease-out 0.8s;
}
@media (max-width: 828px) {
  .lpr-what__text {
    margin-top: 16px;
    font-size: 15px;
  }
}
.lpr-what__point {
  background-color: #FFF;
  margin-top: 40px;
  padding: 32px 40px;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.8s ease-out 1.8s;
}
@media (max-width: 828px) {
  .lpr-what__point {
    margin-top: 40px;
    padding: 16px 8px;
  }
}
.lpr-what__point--list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.lpr-what__point--list .list {
  width: 100%;
  display: flex;
  gap: 32px;
  opacity: 0;
}
@media (max-width: 828px) {
  .lpr-what__point--list .list {
    gap: 8px;
  }
}
.lpr-what__point--list .list:nth-child(1) {
  transition: all 0.6s ease-out 2s;
}
.lpr-what__point--list .list:nth-child(1) .list--text {
  transition: opacity 0.6s linear 2.2s, clip-path 0.6s ease-out 2.2s;
}
.lpr-what__point--list .list:nth-child(2) {
  transition: all 0.6s ease-out 2.6s;
}
.lpr-what__point--list .list:nth-child(2) .list--text {
  transition: opacity 0.6s linear 2.8s, clip-path 0.6s ease-out 2.8s;
}
.lpr-what__point--list .list:nth-child(3) {
  transition: all 0.6s ease-out 3.4s;
}
.lpr-what__point--list .list:nth-child(3) .list--text {
  transition: opacity 0.6s linear 3.6s, clip-path 0.6s ease-out 3.6s;
}
.lpr-what__point--list .list:nth-child(4) {
  transition: all 0.6s ease-out 4.2s;
}
.lpr-what__point--list .list:nth-child(4) .list--text {
  transition: opacity 0.6s linear 4.4s, clip-path 0.6s ease-out 4.4s;
}
.lpr-what__point--list .list--point {
  font-size: 18px;
  background-color: #E3F3FE;
  border-radius: 24px;
  padding: 8px;
  width: 150px;
  text-align: center;
}
@media (max-width: 828px) {
  .lpr-what__point--list .list--point {
    font-size: 14px;
    padding: 4px 4px;
    width: 94px;
  }
}
.lpr-what__point--list .list--point span {
  font-size: 24px;
  margin-left: 4px;
}
@media (max-width: 828px) {
  .lpr-what__point--list .list--point span {
    font-size: 17px;
    margin-left: 2px;
  }
}
.lpr-what__point--list .list--text {
  width: calc(100% - 32px - 150px);
  font-size: 24px;
  line-height: 52px;
  border-bottom: dashed 2px #231614;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
@media (max-width: 828px) {
  .lpr-what__point--list .list--text {
    width: calc(100% - 8px - 94px);
    font-size: 17px;
    line-height: 30px;
  }
}
.lpr-what__button {
  transform: scale(0) translateX(0%);
  opacity: 0;
}

.lpr-company {
  position: relative;
  background-color: #61A1DB;
}
.lpr-company.show .lpr-company__title {
  animation: popBounce2 0.4s ease-out 0.2s forwards;
}
.lpr-company.show .lpr-company__list .list:nth-child(1) {
  animation: popBounce2 0.4s ease-out 0.8s forwards;
}
.lpr-company.show .lpr-company__list .list:nth-child(2) {
  animation: popBounce2 0.4s ease-out 1s forwards;
}
.lpr-company.show .lpr-company__button {
  animation: popBounce 0.4s ease-out 1.6s forwards;
}
.lpr-company__inner {
  padding: 0px 20px 20px;
  margin: 2px auto;
  max-width: 1240px;
  width: 100%;
  height: calc(100vh - 2px);
  background-color: #FFF;
  border-radius: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 828px) {
  .lpr-company__inner {
    border-radius: 100px;
  }
}
.lpr-company__container {
  padding: 0px 100px 40px;
  margin: auto;
  width: 100%;
}
@media (max-width: 828px) {
  .lpr-company__container {
    padding: 0px 0px 40px;
  }
}
.lpr-company__title {
  color: #231614;
  text-align: center;
  font-size: 24px;
  opacity: 0;
}
@media (max-width: 828px) {
  .lpr-company__title {
    font-size: 18px;
  }
}
.lpr-company__title span {
  font-size: 40px;
  margin-right: 4px;
}
@media (max-width: 828px) {
  .lpr-company__title span {
    font-size: 28px;
  }
}
.lpr-company__list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 60px;
}
@media (max-width: 828px) {
  .lpr-company__list {
    gap: 32px;
    margin-top: 20px;
  }
}
.lpr-company__list .list {
  width: calc(50% - 32px);
  text-align: center;
  transform: scale(0);
  opacity: 0;
}
@media (max-width: 828px) {
  .lpr-company__list .list {
    width: 100%;
  }
}
.lpr-company__list .list--img img {
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 828px) {
  .lpr-company__list .list--img img {
    max-width: 70%;
  }
}
.lpr-company__list .list--text {
  margin-top: 20px;
}
@media (max-width: 828px) {
  .lpr-company__list .list--text {
    margin-top: 10px;
    font-size: 15px;
  }
}
.lpr-company__list .list--text span {
  font-size: 14px;
}
@media (max-width: 828px) {
  .lpr-company__list .list--text span {
    font-size: 12px;
  }
}
.lpr-company__button {
  transform: scale(0) translateX(0%);
  opacity: 0;
}

.lpr-use {
  position: relative;
  background-color: #F7B0C7;
}
.lpr-use.show .lpr-use__title {
  opacity: 1;
}
.lpr-use.show .lpr-use__step .step {
  opacity: 1;
}
.lpr-use.show .lpr-use__button {
  animation: popBounce 0.4s ease-out 2.8s forwards;
}
.lpr-use__container {
  padding: 0px 20px 20px;
  margin: auto;
  max-width: 1240px;
  width: 100%;
}
@media (max-width: 828px) {
  .lpr-use__container {
    padding: 20px 10px 20px;
  }
}
.lpr-use__title {
  color: #231614;
  text-align: left;
  font-size: 24px;
  opacity: 0;
  transition: all 0.8s ease-out 0.2s;
}
@media (max-width: 828px) {
  .lpr-use__title {
    font-size: 18px;
  }
}
.lpr-use__title span {
  font-size: 40px;
  margin-right: 4px;
}
@media (max-width: 828px) {
  .lpr-use__title span {
    font-size: 28px;
  }
}
.lpr-use__step {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 828px) {
  .lpr-use__step {
    margin-top: 8px;
  }
}
.lpr-use__step .step {
  background-color: #FFF;
  border-radius: 8px;
  border-left: dashed 2px #ED5284;
  width: 33.3333333333%;
  padding: 20px;
  height: 500px;
  position: relative;
  opacity: 0;
}
@media (max-width: 828px) {
  .lpr-use__step .step {
    width: 100%;
    height: unset;
    padding: 10px 10px 54px;
    border-left: unset;
    border-top: dashed 2px #ED5284;
  }
}
.lpr-use__step .step:nth-child(1) {
  transition: all 0.8s ease-out 0.6s;
}
.lpr-use__step .step:nth-child(2) {
  transition: all 0.8s ease-out 1.4s;
}
.lpr-use__step .step:nth-child(3) {
  transition: all 0.8s ease-out 2.2s;
}
.lpr-use__step .step:first-child {
  border-left: unset;
}
@media (max-width: 828px) {
  .lpr-use__step .step:first-child {
    border-top: unset;
  }
}
@media (max-width: 828px) {
  .lpr-use__step .step--header {
    display: flex;
    gap: 16px;
  }
}
.lpr-use__step .step--title {
  color: #ED5284;
  text-align: center;
  font-size: 32px;
}
@media (max-width: 828px) {
  .lpr-use__step .step--title {
    font-size: 20px;
    width: 120px;
  }
}
.lpr-use__step .step--arrow {
  background-color: #ED5284;
  color: #FFF;
  padding: 4px 24px;
  width: 220px;
  margin: 20px auto 30px;
  position: relative;
  transform: translateX(-6px);
}
@media (max-width: 828px) {
  .lpr-use__step .step--arrow {
    width: calc(100% - 16px - 120px - 20px);
    margin: 0;
    padding: 2px 16px;
  }
}
.lpr-use__step .step--arrow span {
  font-size: 24px;
}
@media (max-width: 828px) {
  .lpr-use__step .step--arrow span {
    font-size: 18px;
  }
}
.lpr-use__step .step--arrow::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 22px solid #ED5284;
}
@media (max-width: 828px) {
  .lpr-use__step .step--arrow::after {
    right: -16px;
    border-top: 15.5px solid transparent;
    border-bottom: 15.5px solid transparent;
    border-left: 15.5px solid #ED5284;
  }
}
.lpr-use__step .step--img {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 828px) {
  .lpr-use__step .step--img {
    margin-top: 8px;
  }
}
.lpr-use__step .step--img.img1 img {
  width: 144px;
}
@media (max-width: 828px) {
  .lpr-use__step .step--img.img1 img {
    width: 75px;
  }
}
.lpr-use__step .step--img.img2 img {
  width: 240px;
}
@media (max-width: 828px) {
  .lpr-use__step .step--img.img2 img {
    width: 124px;
  }
}
.lpr-use__step .step--img.img3 img {
  object-fit: contain;
}
.lpr-use__step .step--img.img3 img:nth-child(1) {
  width: 140px;
}
@media (max-width: 828px) {
  .lpr-use__step .step--img.img3 img:nth-child(1) {
    width: 68px;
  }
}
.lpr-use__step .step--img.img3 img:nth-child(2) {
  width: 110px;
}
@media (max-width: 828px) {
  .lpr-use__step .step--img.img3 img:nth-child(2) {
    width: 80px;
  }
}
.lpr-use__step .step--text {
  position: absolute;
  top: 400px;
  text-align: center;
  width: calc(100% - 40px);
}
@media (max-width: 828px) {
  .lpr-use__step .step--text {
    top: unset;
    bottom: 8px;
    font-size: 15px;
  }
}
.lpr-use__button {
  transform: scale(0) translateX(0%);
  opacity: 0;
}

.lpr-qa {
  position: relative;
  background-color: #E3F3FE;
}
.lpr-qa__container {
  padding: 120px 20px 120px;
  margin: 0 auto;
  max-width: 840px;
  width: 100%;
  text-align: center;
}
@media (max-width: 828px) {
  .lpr-qa__container {
    padding: 80px 16px 80px;
  }
}
.lpr-qa__title {
  color: #231614;
  margin: 0 auto 44px;
  font-size: 24px;
  display: inline-block;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  /*border: dashed 2px $lpr-palette-text;*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 828px) {
  .lpr-qa__title {
    font-size: 20px;
    width: 200px;
    height: 200px;
  }
}
.lpr-qa__title::before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/lp/rirecareer_circle.svg);
  animation: rotateAnimation 40s linear infinite;
  width: 100%;
  height: 100%;
  background-size: contain;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.lpr-qa__title::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/lp/rirecareer_qa.png);
  width: 140px;
  height: 140px;
  background-size: contain;
  bottom: -60px;
  background-repeat: no-repeat;
  padding-bottom: 16px;
}
@media (max-width: 828px) {
  .lpr-qa__title::after {
    width: 120px;
    height: 120px;
  }
}
.lpr-qa__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.lpr-qa__list .list {
  width: 100%;
  background-color: #FFF;
  padding: 0px 40px;
  text-align: left;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 828px) {
  .lpr-qa__list .list {
    padding: 0px 12px;
    font-size: 16px;
  }
}
.lpr-qa__list .list.answer {
  background-color: #61A1DB;
  color: #FFF;
}
.lpr-qa__list .list.answer .list__question::after {
  content: "－";
}
.lpr-qa__list .list__question {
  padding: 32px 48px;
  position: relative;
}
@media (max-width: 828px) {
  .lpr-qa__list .list__question {
    padding: 24px 24px 24px 32px;
  }
}
.lpr-qa__list .list__question::before {
  content: "Q.";
  position: absolute;
  left: 0;
  font-size: 24px;
  top: 26px;
}
@media (max-width: 828px) {
  .lpr-qa__list .list__question::before {
    top: 20px;
    font-size: 20px;
  }
}
.lpr-qa__list .list__question::after {
  content: "＋";
  position: absolute;
  right: 0;
  font-size: 24px;
  top: 26px;
}
@media (max-width: 828px) {
  .lpr-qa__list .list__question::after {
    top: 20px;
    font-size: 20px;
  }
}
.lpr-qa__list .list__answer {
  display: none;
  padding: 32px 48px;
  position: relative;
  border-top: dashed 2px #FFF;
}
@media (max-width: 828px) {
  .lpr-qa__list .list__answer {
    padding: 24px 16px 24px 32px;
  }
}
.lpr-qa__list .list__answer::before {
  content: "A.";
  position: absolute;
  left: 0;
  font-size: 24px;
  top: 26px;
}
@media (max-width: 828px) {
  .lpr-qa__list .list__answer::before {
    top: 20px;
    font-size: 20px;
  }
}
.lpr-qa__inquiry {
  margin-top: 140px;
  background-color: #FFF;
  padding: 40px 64px;
  position: relative;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry {
    margin-top: 100px;
    padding: 20px 16px;
  }
}
.lpr-qa__inquiry--title {
  font-size: 28px;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--title {
    font-size: 20px;
  }
}
.lpr-qa__inquiry--subtitle {
  margin-top: 24px;
  font-size: 20px;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--subtitle {
    margin-top: 16px;
    font-size: 16px;
  }
}
.lpr-qa__inquiry--list {
  margin-top: 32px;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--list {
    margin-top: 16px;
  }
}
.lpr-qa__inquiry--list .list {
  text-align: left;
  font-size: 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  padding: 20px 10px;
  border-bottom: dashed 2px #231614;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--list .list {
    gap: 16px;
    font-size: 18px;
    padding: 16px 0;
  }
}
.lpr-qa__inquiry--list .list:first-child {
  border-top: dashed 2px #231614;
}
.lpr-qa__inquiry--list .list--title {
  position: relative;
  width: 120px;
  padding-left: 28px;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--list .list--title {
    width: 88px;
    padding-left: 24px;
  }
}
.lpr-qa__inquiry--list .list--title::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #231614;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--list .list--title::before {
    width: 16px;
    height: 16px;
    top: 6px;
    transform: unset;
  }
}
.lpr-qa__inquiry--list .list--text {
  width: calc(100% - 120px - 32px);
  font-size: 14px;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--list .list--text {
    width: calc(100% - 88px - 16px);
  }
}
.lpr-qa__inquiry--list .list--text a {
  color: #41ABED;
  font-size: 20px;
  margin-right: 8px;
}
@media (max-width: 828px) {
  .lpr-qa__inquiry--list .list--text a {
    font-size: 18px;
  }
}

.lpr-menu {
  display: none;
}
.lpr-menu.active {
  display: block;
}
.lpr-menu.active .lpr-menu__inner {
  opacity: 1;
}
.lpr-menu__background {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000 !important;
  opacity: 0.6 !important;
}
.lpr-menu__inner {
  opacity: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  padding-top: 94px;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  background-color: #61A1DB;
}
@media (max-width: 828px) {
  .lpr-menu__inner {
    padding-top: 74px;
  }
}
.lpr-menu__container {
  margin: auto;
  max-width: 1200px;
  padding: 40px 20px 40px 80px;
}
.lpr-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 800px;
  margin: auto;
  color: #FFF;
}
.lpr-menu__list > * {
  width: 100%;
}/*# sourceMappingURL=lp_rirecareer.css.map */