@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: 20px 20px;
  margin: auto;
}
@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: 1024px) {
  .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;
  align-items: center;
}
@media (max-width: 1024px) {
  .lpr-header__title {
    gap: 32px;
  }
}
.lpr-header__title > * {
  cursor: pointer;
}
@media (max-width: 828px) {
  .lpr-header__title {
    display: none;
  }
}
.lpr-header__title .btn {
  padding: 2px 20px;
}
.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: #32A67F;
  border: solid 2px #32A67F !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: #32A67F;
}
.lpr-header__menu .menu-hamburger .btn-hamburger.active {
  background-color: #FFFFFF;
}
.lpr-header__menu .menu-hamburger .btn-hamburger.active span {
  background-color: #32A67F !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-first {
  padding: 60px 0 0;
  position: relative;
}
.lpr-first__inner {
  width: 100%;
  max-width: 600px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 3rem;
}
.lpr-first__inner {
  position: relative;
}
.lpr-first__body {
  padding: 0;
  font-size: 14px;
}
.lpr-first__body img {
  object-fit: contain;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .lpr-first__body img {
    max-width: 480px;
  }
}
.lpr-first__body video {
  object-fit: contain;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .lpr-first__body video {
    max-width: 480px;
  }
}
.lpr-first__foot {
  padding-top: 2rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.lpr-first__background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 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;
}

/* 関数化 */
.lpr-modal {
  display: none;
}
.lpr-modal__company {
  display: none;
  max-width: 1024px;
  margin: auto;
}
.lpr-modal__company--flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lpr-modal__company--flex .company {
  width: calc(50% - 20px);
}
@media (max-width: 828px) {
  .lpr-modal__company--flex {
    display: block;
  }
  .lpr-modal__company--flex .company {
    width: auto;
  }
}

.modaal-content-container h2 {
  text-align: center;
  margin: 20px 0 0;
}
.modaal-content-container h3 {
  text-align: center;
  margin: 0 0 0;
}
.modaal-content-container h4 {
  font-size: 16px;
  text-align: center;
  margin: 20px 0;
}
.modaal-content-container h4 span {
  font-size: 24px;
  display: block;
}
@media (max-width: 828px) {
  .modaal-content-container h4 span {
    font-size: 18px;
  }
}
.modaal-content-container p {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 1.2rem;
}
.modaal-content-container .caption {
  display: block;
  padding: 0 0 10px 0;
}
.modaal-content-container .submit-btn {
  width: 240px;
  margin: 0 auto;
}
.modaal-content-container .close-btn {
  width: 240px;
  margin: 0 auto;
}
.modaal-content-container .cancel-btn {
  width: 240px;
  margin: 0 auto;
}
.modaal-content-container .submit-btn input[type=button], .modaal-content-container .submit-btn input[type=submit] {
  background: #FBD101;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  width: 240px;
  border-radius: 8px;
  margin: 0 auto;
}
.modaal-content-container .close-btn input[type=button], .modaal-content-container .close-btn input[type=submit] {
  background: #818181;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  width: 240px;
  border-radius: 8px;
  margin: 0 auto;
}
.modaal-content-container .cancel-btn input[type=button], .modaal-content-container .cancel-btn input[type=submit] {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  width: 240px;
  border-radius: 8px;
  margin: 0 auto;
}
.modaal-content-container .login-btn input[type=button], .modaal-content-container .login-btn input[type=submit] {
  background: #539ff5;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  width: 240px;
  border-radius: 8px;
  margin: 0 auto;
}
.modaal-content-container .register-btn input[type=button], .modaal-content-container .register-btn input[type=submit] {
  background: #16be82;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  width: 240px;
  border-radius: 8px;
  margin: 0 auto;
}
.modaal-content-container .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 828px) {
  .modaal-content-container .btn-wrap {
    display: block;
    text-align: center;
  }
  .modaal-content-container .btn-wrap div:first-child {
    margin-bottom: 20px;
  }
}
.modaal-content-container a span {
  position: relative;
}
.modaal-content-container a span::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32px 24px"><path fill="%23fff" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z" /><path fill="%23fff" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z" /></svg>');
  position: absolute;
  bottom: 6px;
  right: -22px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.modaal-overlay {
  background: #000 !important;
  opacity: 0.6 !important;
}

.modaal-fullscreen .modaal-container {
  background: none !important;
}

.modaal-fullscreen .modaal-content-container {
  background: none !important;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.modaal-fullscreen .modaal-content-container a {
  color: #fff;
}

.modaal-fullscreen .modaal-close {
  background: none !important;
  right: 20px !important;
}

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

/* レイアウトのためのCSS */
.lpr-layout {
  overflow-x: hidden;
  font-family: "Kosugi Maru", "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-layout .support_btn {
  color: white;
  background-color: #DB3F3F;
  border-radius: 64px;
  height: fit-content;
  border: solid 2px #DB3F3F;
  font-weight: bold;
  max-width: 320px;
}
.lpr-layout .support_btn:hover {
  color: #DB3F3F;
  background-color: white;
}

.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: 100%;
  position: relative;
  margin: auto;
  padding: 0;
}
.lpr-top::before {
  content: "";
  position: absolute;
  background-color: #32A67F;
  bottom: 0;
  width: 50%;
  height: 256px;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translateY(50%);
}
.lpr-top::after {
  content: "";
  position: absolute;
  background-color: #EE76DE;
  bottom: 0;
  width: 50%;
  height: 256px;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateY(50%);
}
@media (max-width: 828px) {
  .lpr-top {
    margin: 0 auto;
    padding: 0 0px;
  }
}
.lpr-top__container {
  position: relative;
  margin: auto;
  max-width: 1600px;
  height: 640px;
}
@media (max-width: 1024px) {
  .lpr-top__container {
    height: 520px;
  }
}
@media (max-width: 828px) {
  .lpr-top__container {
    height: 600px;
  }
}
.lpr-top__container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 128px;
  left: -100%;
  top: 0;
  background-color: #FFF;
  z-index: 1;
}
@media (max-width: 828px) {
  .lpr-top__container::before {
    display: none;
  }
}
.lpr-top__container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 128px;
  right: -100%;
  top: 0;
  background-color: #FFF;
  z-index: 1;
}
@media (max-width: 828px) {
  .lpr-top__container::after {
    display: none;
  }
}
.lpr-top__img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 128px 128px;
  background-color: #FFF;
}
@media (max-width: 1024px) {
  .lpr-top__img {
    border-radius: 0 0 96px 96px;
  }
}
@media (max-width: 828px) {
  .lpr-top__img {
    border-radius: 0 0 64px 64px;
  }
}
.lpr-top__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  min-width: 1040px;
  object-position: right -120px bottom -144px;
}
@media (max-width: 1024px) {
  .lpr-top__img img {
    object-position: right 48px bottom -144px;
  }
}
@media (max-width: 828px) {
  .lpr-top__img img {
    min-width: 540px;
    object-position: right -40px bottom -240px;
  }
}
@media (max-width: 540px) {
  .lpr-top__img img {
    min-width: 440px;
    object-position: right -112px bottom -256px;
  }
}
.lpr-top__message {
  position: absolute;
  z-index: 1;
  width: 680px;
  left: 80px;
  bottom: 120px;
  display: inline-block;
}
@media (max-width: 1024px) {
  .lpr-top__message {
    left: 40px;
    bottom: 72px;
  }
}
@media (max-width: 828px) {
  .lpr-top__message {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 280px;
    text-align: center;
  }
}
.lpr-top__message--title {
  color: #0284C7;
  font-size: 56px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .lpr-top__message--title {
    font-size: 40px;
  }
}
@media (max-width: 828px) {
  .lpr-top__message--title {
    font-size: 32px;
  }
}
.lpr-top__message .message {
  margin-top: 60px;
  font-size: 24px;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .lpr-top__message .message {
    font-size: 20px;
    margin-top: 48px;
  }
}
@media (max-width: 828px) {
  .lpr-top__message .message {
    font-size: 18px;
    margin-top: 32px;
  }
}
.lpr-top__message .message span {
  display: block;
}
.lpr-top__message .btn {
  margin-top: 60px;
  font-size: 20px;
  width: 400px;
  padding: 8px 16px;
}
@media (max-width: 1024px) {
  .lpr-top__message .btn {
    margin-top: 48px;
    font-size: 20px;
    width: 320px;
    padding: 4px 8px;
  }
}
@media (max-width: 828px) {
  .lpr-top__message .btn {
    margin-top: 32px;
    font-size: 18px;
    width: 240px;
  }
}

.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: #0284C7;
  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-image: linear-gradient(0deg, #EE76DE, #ffffff 8% 92%, #32A67F);
}
@media (max-width: 828px) {
  .lpr-menu__inner {
    padding-top: 74px;
  }
}
.lpr-menu__container {
  margin: auto;
  max-width: 1200px;
  padding: 20px 40px 40px;
}
.lpr-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 800px;
  margin: auto;
  /*color: #FFF;*/
}
.lpr-menu__list > * {
  width: 100%;
}

.lpr-worry {
  position: relative;
}
.lpr-worry::after {
  content: "";
  position: absolute;
  background-color: #F9F9F9;
  width: 100%;
  max-width: 1600px;
  height: 100px;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.lpr-worry__container {
  max-width: 1600px;
  position: relative;
  margin: auto;
  background-color: #F9F9F9;
  margin: auto;
  padding: 120px 120px 160px;
  min-height: 800px;
  border-radius: 128px 128px 0 0;
}
@media (max-width: 1200px) {
  .lpr-worry__container {
    padding: 120px 60px 160px;
  }
}
@media (max-width: 1024px) {
  .lpr-worry__container {
    padding: 80px 32px 80px;
    border-radius: 96px 96px 0 0;
  }
}
@media (max-width: 828px) {
  .lpr-worry__container {
    padding: 0px 0 80px;
    border-radius: 64px 64px 0 0;
  }
}
.lpr-worry__container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 128px;
  left: -100%;
  top: 0;
  background-color: #FFF;
  z-index: 1;
}
@media (max-width: 828px) {
  .lpr-worry__container::before {
    display: none;
  }
}
.lpr-worry__container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 128px;
  right: -100%;
  top: 0;
  background-color: #FFF;
  z-index: 1;
}
@media (max-width: 828px) {
  .lpr-worry__container::after {
    display: none;
  }
}
.lpr-worry__block {
  background-color: #FCCF00;
  border-radius: 64px;
  padding: 160px 20px 10px;
  position: relative;
}
@media (max-width: 828px) {
  .lpr-worry__block {
    border-radius: 64px 64px 0 0;
  }
}
@media (max-width: 540px) {
  .lpr-worry__block {
    padding: 160px 10px 10px;
  }
}
.lpr-worry__block .title {
  font-size: 40px;
  font-weight: bolder;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 8px;
}
@media (max-width: 1024px) {
  .lpr-worry__block .title {
    font-size: 32px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__block .title {
    top: 80px;
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .lpr-worry__block .title span {
    display: block;
  }
}
.lpr-worry__block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/lp/logo_white.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center bottom -20%;
  opacity: 0.3;
}
@media (max-width: 828px) {
  .lpr-worry__block::before {
    background-size: 80%;
  }
}
.lpr-worry__bubble {
  text-align: center;
  padding-top: 280px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .lpr-worry__bubble {
    padding-top: 240px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__bubble {
    padding-top: 220px;
  }
}
@media (max-width: 540px) {
  .lpr-worry__bubble {
    padding-top: 340px;
  }
}
.lpr-worry__bubble .center {
  display: inline-block;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  background-color: #FFF;
  background-image: url(../../assets/img/lp/man_bubble.jpg);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: top 50% left 60%;
}
@media (max-width: 1024px) {
  .lpr-worry__bubble .center {
    width: 280px;
    height: 280px;
    background-size: 180px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__bubble .center {
    width: 200px;
    height: 200px;
    background-size: 140px;
  }
}
@media (max-width: 540px) {
  .lpr-worry__bubble .center {
    width: 180px;
    height: 180px;
    background-size: 128px;
  }
}
.lpr-worry__bubble .texts {
  position: relative;
}
.lpr-worry__bubble .texts_bubble {
  border-radius: 50%;
  position: absolute;
  background-color: #FFF9DF;
  border: solid 5px #FCCF00;
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .lpr-worry__bubble .texts_bubble {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__bubble .texts_bubble {
    border-radius: 32px;
    width: 220px;
    height: 120px;
  }
}
@media (max-width: 540px) {
  .lpr-worry__bubble .texts_bubble {
    height: 104px;
  }
}
.lpr-worry__bubble .texts_bubble span {
  font-size: 20px;
  width: 200px;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .lpr-worry__bubble .texts_bubble span {
    font-size: 16px;
  }
}
.lpr-worry__bubble .texts_bubble:nth-child(1) {
  z-index: 1;
  bottom: 40px;
  left: calc(50% - 420px);
}
@media (max-width: 1024px) {
  .lpr-worry__bubble .texts_bubble:nth-child(1) {
    left: calc(50% - 360px);
  }
}
@media (max-width: 828px) {
  .lpr-worry__bubble .texts_bubble:nth-child(1) {
    bottom: 190px;
    left: 0px;
  }
}
@media (max-width: 540px) {
  .lpr-worry__bubble .texts_bubble:nth-child(1) {
    bottom: 250px;
    left: 0px;
    z-index: 5;
  }
}
.lpr-worry__bubble .texts_bubble:nth-child(2) {
  z-index: 2;
  bottom: 250px;
  left: calc(50% - 270px);
}
@media (max-width: 1024px) {
  .lpr-worry__bubble .texts_bubble:nth-child(2) {
    bottom: 228px;
    left: calc(50% - 230px);
  }
}
@media (max-width: 828px) {
  .lpr-worry__bubble .texts_bubble:nth-child(2) {
    bottom: 320px;
    left: calc(50% - 232px);
  }
}
@media (max-width: 540px) {
  .lpr-worry__bubble .texts_bubble:nth-child(2) {
    bottom: 410px;
    left: 0px;
  }
}
.lpr-worry__bubble .texts_bubble:nth-child(3) {
  z-index: 3;
  bottom: 250px;
  right: calc(50% - 270px);
}
@media (max-width: 1024px) {
  .lpr-worry__bubble .texts_bubble:nth-child(3) {
    bottom: 228px;
    right: calc(50% - 230px);
  }
}
@media (max-width: 828px) {
  .lpr-worry__bubble .texts_bubble:nth-child(3) {
    bottom: 310px;
    right: calc(50% - 232px);
  }
}
@media (max-width: 540px) {
  .lpr-worry__bubble .texts_bubble:nth-child(3) {
    bottom: 330px;
    right: 0px;
  }
}
.lpr-worry__bubble .texts_bubble:nth-child(4) {
  z-index: 4;
  bottom: 40px;
  right: calc(50% - 420px);
}
@media (max-width: 1024px) {
  .lpr-worry__bubble .texts_bubble:nth-child(4) {
    right: calc(50% - 360px);
  }
}
@media (max-width: 828px) {
  .lpr-worry__bubble .texts_bubble:nth-child(4) {
    bottom: 180px;
    right: 0px;
  }
}
@media (max-width: 540px) {
  .lpr-worry__bubble .texts_bubble:nth-child(4) {
    bottom: 170px;
    right: 0px;
    z-index: 6;
  }
}
.lpr-worry__plain {
  padding: 160px 0 0 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  .lpr-worry__plain {
    padding: 120px 20px 0;
    padding-top: 120px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__plain {
    padding: 80px 20px 0;
  }
  .lpr-worry__plain span {
    display: inline-block;
  }
}
.lpr-worry__plain .title {
  font-size: 40px;
  font-weight: bolder;
  text-align: center;
}
@media (max-width: 1024px) {
  .lpr-worry__plain .title {
    font-size: 32px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__plain .title {
    font-size: 24px;
  }
}
.lpr-worry__plain .advisor {
  padding-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
}
@media (max-width: 828px) {
  .lpr-worry__plain .advisor {
    padding-top: 24px;
    gap: 32px;
  }
}
.lpr-worry__plain .advisor_woman {
  display: inline-block;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  border: solid 5px #0284C7;
  background-color: #FFF;
  background-image: url(../../assets/img/lp/woman_advisor.jpg);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: top 50% left 50%;
}
@media (max-width: 1024px) {
  .lpr-worry__plain .advisor_woman {
    width: 240px;
    height: 240px;
    background-size: 160px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__plain .advisor_woman {
    width: 180px;
    height: 180px;
    background-size: 120px;
  }
}
.lpr-worry__plain .advisor_texts {
  font-size: 28px;
  text-align: left;
}
@media (max-width: 1024px) {
  .lpr-worry__plain .advisor_texts {
    font-size: 24px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__plain .advisor_texts {
    font-size: 20px;
    width: 100%;
  }
  .lpr-worry__plain .advisor_texts div {
    display: inline;
  }
}
.lpr-worry__plain .advisor_texts span {
  color: #0284C7;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .lpr-worry__plain .advisor_texts span {
    font-size: 26px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__plain .advisor_texts span {
    font-size: 22px;
  }
}
.lpr-worry__plain .message {
  font-size: 36px;
  font-weight: bolder;
  position: relative;
  margin: auto;
  display: inline-block;
  margin-top: 96px;
}
@media (max-width: 1024px) {
  .lpr-worry__plain .message {
    font-size: 32px;
    margin-top: 72px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__plain .message {
    font-size: 24px;
    margin-top: 60px;
    color: #EE76DE;
  }
}
.lpr-worry__plain .message::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #EE76DE;
  border-radius: 4px;
}
@media (max-width: 828px) {
  .lpr-worry__plain .message::before {
    display: none;
  }
}
.lpr-worry__plain .message::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 4px;
  height: 2px;
  background-color: #EE76DE;
  border-radius: 4px;
}
@media (max-width: 828px) {
  .lpr-worry__plain .message::after {
    display: none;
  }
}
.lpr-worry__button {
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .lpr-worry__button {
    margin-top: 48px;
  }
}
@media (max-width: 828px) {
  .lpr-worry__button {
    margin-top: 40px;
  }
}
.lpr-worry__button .btn {
  font-size: 24px;
  width: 400px;
  padding: 16px 16px;
}
@media (max-width: 828px) {
  .lpr-worry__button .btn {
    font-size: 20px;
    width: 240px;
    padding: 8px;
  }
}

.lpr-under {
  max-width: 100%;
  position: relative;
  margin: auto;
  padding: 0;
}
@media (max-width: 828px) {
  .lpr-under {
    margin: 0 auto;
    padding: 0 0px;
  }
}
.lpr-under__line {
  position: relative;
  margin: 80px auto 60px;
  max-width: 1600px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
.lpr-under__line .text {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 828px) {
  .lpr-under__line .text {
    font-size: 18px;
  }
}
.lpr-under__line .btn {
  background-color: #00C300;
  color: #FFF;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  width: 360px;
  padding: 16px 16px 16px 40px;
  border-radius: 64px;
  border: solid 3px #00C300;
}
@media (max-width: 828px) {
  .lpr-under__line .btn {
    width: 240px;
    font-size: 18px;
    border-radius: 32px;
    padding: 8px 8px 8px 32px;
  }
}
.lpr-under__line .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background-image: url(../../assets/img/lp/icon_line01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (max-width: 828px) {
  .lpr-under__line .btn::before {
    left: 16px;
    width: 32px;
    height: 32px;
  }
}
.lpr-under__line .btn:hover {
  color: #00C300;
  background-color: #FFF;
}
.lpr-under__container {
  position: relative;
  margin: auto;
  max-width: 1600px;
  height: 400px;
  width: 100%;
  background-image: url(../../assets/img/lp/job_support_top.png);
  background-size: 1600px;
  background-repeat: no-repeat;
  background-position: right -224px bottom -384px;
}
@media (max-width: 1024px) {
  .lpr-under__container {
    background-size: 800px;
    height: auto;
    background-position: right 0 bottom -200px;
    padding: 40px 0 192px;
  }
}
@media (max-width: 828px) {
  .lpr-under__container {
    background-position: right -80px bottom -200px;
  }
}
.lpr-under__message {
  padding: 120px 0 0 160px;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .lpr-under__message {
    padding: 0 20px;
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 828px) {
  .lpr-under__message {
    padding: 0 20px;
    font-size: 20px;
    text-align: center;
  }
}
.lpr-under__message span {
  display: block;
}
@media (max-width: 1024px) {
  .lpr-under__message span {
    display: inline-block;
  }
}
.lpr-under__message img {
  width: 100%;
  max-width: 240px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .lpr-under__message img {
    margin-top: 20px;
  }
}
@media (max-width: 828px) {
  .lpr-under__message img {
    max-width: 180px;
  }
}

.lpr-merit__container {
  max-width: 1600px;
  position: relative;
  margin: auto;
  background-color: #F9F9F9;
  margin: auto;
  padding: 120px 120px 160px;
  border-radius: 0;
}
@media (max-width: 1200px) {
  .lpr-merit__container {
    padding: 120px 60px 160px;
  }
}
@media (max-width: 1024px) {
  .lpr-merit__container {
    padding: 80px 32px 80px;
  }
}
@media (max-width: 828px) {
  .lpr-merit__container {
    padding: 80px 16px 80px;
  }
}
.lpr-merit__container .title {
  font-size: 40px;
  font-weight: bolder;
  text-align: center;
}
@media (max-width: 1024px) {
  .lpr-merit__container .title {
    font-size: 28px;
  }
}
@media (max-width: 828px) {
  .lpr-merit__container .title {
    font-size: 24px;
  }
}
.lpr-merit__box {
  margin-top: 64px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 828px) {
  .lpr-merit__box {
    gap: 24px;
  }
}
.lpr-merit__box .box {
  background-color: #FFF;
  border-radius: 32px;
  padding: 32px 24px;
  width: calc(50% - 16px);
  position: relative;
}
@media (max-width: 828px) {
  .lpr-merit__box .box {
    border-radius: 20px;
    padding: 24px 16px;
    width: 100%;
  }
}
.lpr-merit__box .box-title {
  font-size: 24px;
}
@media (max-width: 828px) {
  .lpr-merit__box .box-title {
    font-size: 20px;
  }
}
.lpr-merit__box .box-subtitle {
  font-size: 18px;
  color: #0284C7;
  margin-top: 16px;
}
.lpr-merit__box .box-text {
  font-size: 16px;
  font-weight: normal;
  margin-top: 8px;
}
.lpr-merit__box .box:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -24px;
  width: 60px;
  height: 60px;
  background-image: url(../../assets/img/lp/merit_check.png);
  background-size: contain;
  transform: rotate(5deg);
}
@media (max-width: 828px) {
  .lpr-merit__box .box:nth-child(2)::before {
    top: -24px;
    right: -8px;
    width: 48px;
    height: 48px;
  }
}
.lpr-merit__box .box:nth-child(3)::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -56px;
  width: 68px;
  height: 68px;
  background-image: url(../../assets/img/lp/merit_calendar.png);
  background-size: contain;
  transform: rotate(-10deg);
}
@media (max-width: 828px) {
  .lpr-merit__box .box:nth-child(3)::before {
    top: -32px;
    left: -12px;
    width: 52px;
    height: 52px;
  }
}
.lpr-merit__box .box:nth-child(4)::before {
  content: "";
  position: absolute;
  bottom: -24px;
  right: -32px;
  width: 52px;
  height: 52px;
  background-image: url(../../assets/img/lp/merit_time.png);
  background-size: contain;
  transform: rotate(25deg);
}
@media (max-width: 828px) {
  .lpr-merit__box .box:nth-child(4)::before {
    bottom: -24px;
    right: -8px;
    width: 44px;
    height: 44px;
  }
}
.lpr-merit__button {
  margin-top: 64px;
  text-align: center;
}
@media (max-width: 828px) {
  .lpr-merit__button {
    margin-top: 48px;
  }
}
.lpr-merit__button .btn {
  font-size: 24px;
  width: 400px;
  padding: 16px 16px;
}
@media (max-width: 828px) {
  .lpr-merit__button .btn {
    font-size: 20px;
    width: 240px;
    padding: 8px;
  }
}

.lpr-feedback__container {
  position: relative;
  margin: auto;
  background-color: #32A67F;
  margin: auto;
  padding: 96px 0 128px;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .lpr-feedback__container {
    padding: 80px 0;
  }
}
@media (max-width: 828px) {
  .lpr-feedback__container {
    padding: 64px 0;
  }
}
.lpr-feedback__container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/lp/logo_white.svg);
  background-size: 180%;
  background-repeat: no-repeat;
  background-position: left 30% bottom 30%;
  opacity: 0.3;
}
.lpr-feedback__container .title {
  font-size: 40px;
  font-weight: bolder;
  text-align: center;
  color: #FFF;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .lpr-feedback__container .title {
    margin-bottom: 32px;
    font-size: 28px;
  }
}
.lpr-feedback__container .owl-carousel .owl-stage {
  display: flex;
}
.lpr-feedback__list .list {
  background-color: #FFF;
  padding: 20px 20px 96px;
  border-radius: 32px;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 828px) {
  .lpr-feedback__list .list {
    padding: 16px 16px 88px;
    border-radius: 20px;
  }
}
.lpr-feedback__list .list-title {
  position: absolute;
  top: 20px;
  width: calc(100% - 40px);
  color: #EF742D;
  font-size: 24px;
}
@media (max-width: 828px) {
  .lpr-feedback__list .list-title {
    font-size: 20px;
  }
}
.lpr-feedback__list .list-text {
  margin-top: 80px;
  font-size: 18px;
  font-weight: normal;
}
@media (max-width: 828px) {
  .lpr-feedback__list .list-text {
    margin-top: 60px;
    font-size: 16px;
  }
}
.lpr-feedback__list .list-footer {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 40px);
}
.lpr-feedback__list .list-footer span {
  color: #32A67F;
  font-size: 16px;
  font-weight: normal;
}
.lpr-feedback__list .list-footer span::before {
  content: "#";
}
.lpr-feedback__list .list-footer img {
  border: solid 1px #32A67F;
  border-radius: 50%;
  width: 64px !important;
  height: 64px;
  padding: 4px;
  object-fit: contain;
}
@media (max-width: 828px) {
  .lpr-feedback__list .list-footer img {
    width: 56px !important;
    height: 56px;
  }
}

.lpr-service {
  position: relative;
  margin: auto;
}
.lpr-service__flow {
  background-color: #FCCF00;
  border-radius: 64px 64px 0 0;
  position: sticky;
  top: 68px;
}
.lpr-service__flow::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 60px;
  bottom: -60px;
  background-color: #FCCF00;
}
.lpr-service__flow .flow_container {
  max-width: 1120px;
  margin: auto;
}
.lpr-service__flow .flow_container h3 {
  padding: 8px 8px 6px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 1024px) {
  .lpr-service__flow .flow_container h3 {
    font-size: 32px;
  }
}
@media (max-width: 828px) {
  .lpr-service__flow .flow_container h3 {
    font-size: 24px;
  }
}
.lpr-service__step {
  border-radius: 64px 64px 0 0;
  position: sticky;
}
.lpr-service__step::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/lp/logo_white.svg);
  background-repeat: no-repeat;
  opacity: 0.3;
}
.lpr-service__step::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 60px;
  bottom: -60px;
}
.lpr-service__step .step_container {
  max-width: 1120px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: #FFF;
  padding: 80px 32px 48px;
  gap: 32px;
}
@media (max-width: 1024px) {
  .lpr-service__step .step_container {
    padding: 60px 24px 32px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step .step_container {
    gap: 20px;
    padding: 48px 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.lpr-service__step .step_container-texts {
  width: calc(100% - 280px - 32px);
}
@media (max-width: 1024px) {
  .lpr-service__step .step_container-texts {
    width: calc(100% - 240px - 32px);
  }
}
@media (max-width: 828px) {
  .lpr-service__step .step_container-texts {
    width: 100%;
  }
}
.lpr-service__step .step_container-texts .title {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .lpr-service__step .step_container-texts .title {
    font-size: 40px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step .step_container-texts .title {
    font-size: 32px;
  }
}
.lpr-service__step .step_container-texts .title span {
  font-size: 36px;
  margin-right: 40px;
}
@media (max-width: 1024px) {
  .lpr-service__step .step_container-texts .title span {
    font-size: 32px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step .step_container-texts .title span {
    font-size: 24px;
  }
}
.lpr-service__step .step_container-texts .texts {
  margin-top: 72px;
  font-size: 24px;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .lpr-service__step .step_container-texts .texts {
    margin-top: 40px;
    font-size: 22px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step .step_container-texts .texts {
    margin-top: 20px;
    font-size: 18px;
  }
}
.lpr-service__step .step_container-img {
  width: 260px;
  height: 260px;
  padding: 48px;
  border-radius: 50%;
  background-color: #FFF;
  z-index: 1;
}
@media (max-width: 1024px) {
  .lpr-service__step .step_container-img {
    width: 220px;
    height: 220px;
    padding: 36px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step .step_container-img {
    width: 160px;
    height: 160px;
    padding: 28px;
  }
}
.lpr-service__step .step_container-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lpr-service__step.step1 {
  background-color: #32A67F;
  top: 120px;
}
@media (max-width: 828px) {
  .lpr-service__step.step1 {
    top: 104px;
  }
}
.lpr-service__step.step1::before {
  background-size: 480px;
  background-position: right calc(50% - 560px) bottom -85%;
}
@media (max-width: 1024px) {
  .lpr-service__step.step1::before {
    background-position: right calc(50% - 480px) bottom -50%;
  }
}
@media (max-width: 828px) {
  .lpr-service__step.step1::before {
    background-position: right calc(50% - 120px) bottom 80px;
    background-size: 240px;
  }
}
.lpr-service__step.step1::after {
  background-color: #32A67F;
}
.lpr-service__step.step1 .step_container {
  flex-direction: row;
}
.lpr-service__step.step1 .step_container-img {
  border: solid 3px #1c936b;
}
.lpr-service__step.step2 {
  background-color: #EE76DE;
  top: 128px;
}
@media (max-width: 828px) {
  .lpr-service__step.step2 {
    top: 112px;
  }
}
.lpr-service__step.step2::before {
  background-size: 640px;
  background-position: left calc(50% - 640px) bottom 140%;
}
@media (max-width: 1024px) {
  .lpr-service__step.step2::before {
    background-position: left calc(50% - 500px) bottom 120%;
  }
}
@media (max-width: 828px) {
  .lpr-service__step.step2::before {
    background-position: left calc(50% - 200px) bottom -120px;
    background-size: 320px;
  }
}
.lpr-service__step.step2::after {
  background-color: #EE76DE;
}
.lpr-service__step.step2 .step_container {
  flex-direction: row-reverse;
}
.lpr-service__step.step2 .step_container-img {
  border: solid 3px #df41ca;
}
.lpr-service__step.step3 {
  background-color: #0284C7;
  top: 136px;
}
@media (max-width: 828px) {
  .lpr-service__step.step3 {
    top: 120px;
  }
}
.lpr-service__step.step3::before {
  background-size: 400px;
  background-position: right calc(50% - 260px) top -100px;
}
@media (max-width: 1024px) {
  .lpr-service__step.step3::before {
    background-position: right calc(50% - 160px) top -140px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step.step3::before {
    background-size: 200px;
    background-position: right calc(50% - 80px) top 60px;
  }
}
.lpr-service__step.step3::after {
  background-color: #0284C7;
}
.lpr-service__step.step3 .step_container {
  flex-direction: row;
}
.lpr-service__step.step3 .step_container-img {
  border: solid 3px #0070a9;
}
.lpr-service__step.step4 {
  background-color: #EF742D;
  top: 144px;
}
@media (max-width: 828px) {
  .lpr-service__step.step4 {
    top: 128px;
  }
}
.lpr-service__step.step4::before {
  background-size: 720px;
  background-position: left calc(50% - 120px) top -120px;
}
@media (max-width: 1024px) {
  .lpr-service__step.step4::before {
    background-position: left calc(50% - 120px) top -120px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step.step4::before {
    background-size: 360px;
    background-position: left calc(50% - 120px) top 60px;
  }
}
.lpr-service__step.step4::after {
  background-color: #EF742D;
}
.lpr-service__step.step4 .step_container {
  flex-direction: row-reverse;
}
.lpr-service__step.step4 .step_container-img {
  border: solid 3px #df5a0e;
}
.lpr-service__step.step5 {
  background-color: #8F55F2;
  top: 152px;
}
@media (max-width: 828px) {
  .lpr-service__step.step5 {
    top: 136px;
  }
}
.lpr-service__step.step5::before {
  background-size: 440px;
  background-position: right calc(50% - 180px) top -60px;
}
@media (max-width: 1024px) {
  .lpr-service__step.step5::before {
    background-position: right calc(50% - 80px) top -40px;
  }
}
@media (max-width: 828px) {
  .lpr-service__step.step5::before {
    background-size: 220px;
    background-position: right calc(50% - 60px) top 120px;
  }
}
.lpr-service__step.step5::after {
  background-color: #FFF;
}
.lpr-service__step.step5 .step_container {
  flex-direction: row;
}
.lpr-service__step.step5 .step_container-img {
  border: solid 3px #6f28e7;
}/*# sourceMappingURL=lp_support.css.map */