@charset "UTF-8";
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  margin-top: 0 !important; }

/*modal*/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100lvh;
  background-color: rgba(143, 156, 182, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease; }

.modal.show {
  display: block;
  opacity: 1; }

.modal.show .modal__content {
  transform: translateY(0); }

.modal__content.large {
  max-width: 1000px; }

.modal__content.small {
  max-width: 500px; }

/*mouse stakler*/
.cursor-pointer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(51, 51, 51, 0.8);
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity .3s ease, transform .3s ease; }

.cursor-pointer.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); }

/*loop*/
.loop {
  position: absolute;
  width: 100%;
  top: 40px;
  overflow: hidden;
  z-index: 1; }
  @media screen and (max-width: 834px) {
    .loop {
      top: 7rem; } }
  .loop .loop-track {
    display: flex;
    width: calc(1500px * 3);
    animation: scroll-loop 60s linear infinite; }
  .loop .loop-slide {
    flex-shrink: 0;
    margin-right: 1.7%;
    padding-right: 5px;
    width: 1500px;
    max-width: unset; }
    @media screen and (max-width: 834px) {
      .loop .loop-slide {
        max-width: 1100px; } }

@keyframes scroll-loop {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
.lp .section__title {
  font-size: clamp(2.8rem, 3vw, 4rem);
  font-weight: 400; }
  @media screen and (max-width: 834px) {
    .lp .section__title {
      font-size: clamp(2.4rem, 1vw, 2.8px); } }
  .lp .section__title span {
    display: block;
    font-size: clamp(2.4rem, 1vw, 2.8px); }
    @media screen and (max-width: 834px) {
      .lp .section__title span {
        font-size: clamp(1.8rem, 1vw, 2.2px); } }
.lp .floating-banner {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1000;
  width: 25rem;
  background: url(../img/floating-bg.webp) left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 0;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #DD7878;
  transition: opacity 0.3s ease; }
  @media screen and (max-width: 834px) {
    .lp .floating-banner {
      bottom: 0;
      width: 100%;
      right: 0;
      border-radius: 0;
      padding: 1rem;
      background-color: #DD7878;
      background-size: 190px;
      background-position: 40%; } }
  .lp .floating-banner::before {
    content: '';
    background-image: url("../img/floating-arrow.webp");
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.6rem;
    height: 3.6rem;
    right: 7%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all 0.3s ease-in-out; }
    @media screen and (max-width: 834px) {
      .lp .floating-banner::before {
        width: 2.6rem;
        height: 2.6rem;
        right: 26%; } }
  .lp .floating-banner:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease; }
    .lp .floating-banner:hover::before {
      right: 5%;
      transition: all 0.3s ease-in-out; }
  .lp .floating-banner__text {
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 834px) {
      .lp .floating-banner__text {
        line-height: 1.3; } }
    .lp .floating-banner__text span.en {
      font-size: 2.3rem;
      font-weight: 500; }
      @media screen and (max-width: 834px) {
        .lp .floating-banner__text span.en {
          font-size: 1.85rem; } }
    .lp .floating-banner__text span.ja {
      font-size: 1.2rem; }
.lp .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: transparent;
  transition: background-color 0.3s ease, transform 0.6s ease;
  padding: 25px 30px;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 95px; }
  .lp .header.hidden {
    transform: translateY(-100%);
    opacity: 0; }
  @media screen and (max-width: 834px) {
    .lp .header {
      padding: 10px 5%; } }
  .lp .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto; }
  .lp .header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    max-width: 204px; }
    @media screen and (max-width: 834px) {
      .lp .header__logo {
        max-width: 140px; } }
    .lp .header__logo-img {
      width: 100%;
      height: auto; }
.lp .mv-top__right {
  margin: 3rem 5% 0 auto;
  font-size: 1.2rem;
  font-weight: 300;
  color: #333333;
  line-height: 1.3;
  text-align: right; }
  @media screen and (max-width: 834px) {
    .lp .mv-top__right {
      margin: 2rem 3% 0 auto; } }
.lp .mv {
  position: relative;
  margin: 3rem auto 0;
  height: calc(100vh - 20vh); }
  @media screen and (max-width: 834px) {
    .lp .mv {
      margin: 2rem auto 0; } }
  .lp .mv__picture {
    width: 97%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px; }
    .lp .mv__picture picture {
      width: 100%;
      height: 100%; }
    .lp .mv__picture img {
      width: 100%;
      object-fit: cover;
      height: 100%;
      object-position: top; }
    @media screen and (max-width: 834px) {
      .lp .mv__picture {
        height: 100%; } }
  .lp .mv__main-text {
    position: absolute;
    left: 10%;
    top: 43%;
    width: 24%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%); }
    @media screen and (max-height: 1000px) {
      .lp .mv__main-text {
        top: 34%; } }
    @media screen and (max-width: 834px) {
      .lp .mv__main-text {
        max-width: 260px;
        top: auto;
        bottom: 6%;
        width: 50%;
        left: auto;
        right: 5%; } }
  .lp .mv__point {
    max-width: 100%;
    position: absolute;
    left: 8%;
    bottom: 2rem;
    display: flex;
    align-self: center;
    justify-content: flex-start;
    gap: 0 1.4rem; }
    @media screen and (max-width: 834px) {
      .lp .mv__point {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        bottom: -5rem; } }
  .lp .mv__point--item {
    width: clamp(23rem, 2.4vw, 28rem);
    height: auto;
    position: relative;
    background-color: rgba(51, 51, 51, 0.3);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 50%; }
    @media screen and (max-width: 834px) {
      .lp .mv__point--item {
        width: clamp(11.5rem, 17.7vw, 15rem);
        justify-content: flex-start; } }
    .lp .mv__point--item .mv__point--item--lead {
      background-color: #F5ECE6;
      border-radius: 16.8px;
      font-size: 1.8rem;
      line-height: 1;
      padding: 0.6rem 1.5rem;
      text-align: center;
      margin-bottom: 0.7rem; }
      @media screen and (max-height: 900px) {
        .lp .mv__point--item .mv__point--item--lead {
          font-size: 1.6rem; } }
      @media screen and (max-width: 834px) {
        .lp .mv__point--item .mv__point--item--lead {
          font-size: clamp(1.2rem, 1.9vw, 1.6rem);
          margin-bottom: 0.7rem;
          padding: 0.4rem 1rem; } }
    .lp .mv__point--item .mv__point--item--main {
      display: flex;
      align-items: center;
      gap: 0 0.4rem;
      color: #fff;
      margin-bottom: 1.2rem;
      line-height: 1; }
      @media screen and (max-height: 1000px) {
        .lp .mv__point--item .mv__point--item--main {
          margin-bottom: 0rem; } }
      .lp .mv__point--item .mv__point--item--main span.number {
        display: block;
        font-size: clamp(3rem, 6.7857142857vw, 10.5rem);
        font-weight: 500; }
        @media screen and (max-width: 834px) {
          .lp .mv__point--item .mv__point--item--main span.number {
            font-size: 4rem; } }
      .lp .mv__point--item .mv__point--item--main span.supplement {
        display: block;
        font-size: clamp(2rem, 2.4vw, 3.2rem);
        font-weight: 500; }
        @media screen and (max-width: 834px) {
          .lp .mv__point--item .mv__point--item--main span.supplement {
            font-size: 1.4rem; } }
    .lp .mv__point--item .mv__point--item--sub {
      text-align: center;
      color: #fff;
      font-size: clamp(1.2rem, 2vw, 1.6rem); }
      @media screen and (max-width: 834px) {
        .lp .mv__point--item .mv__point--item--sub {
          font-size: clamp(1.2rem, 2vw, 1.6rem);
          line-height: 1.2; } }
  .lp .mv__point--item.salary::before {
    position: absolute;
    content: '';
    background: url("../img/point-dec.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 5.6rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -3rem; }
  .lp .mv__point--item.off .mv__point--item--main {
    align-items: flex-end; }
  .lp .mv__point--item.multiple .multiple__text {
    font-size: clamp(1.6rem, 1.9047619048vw, 3.2rem);
    font-weight: 400;
    line-height: 1.4;
    color: #fff; }
.lp .lead {
  position: relative;
  padding: 15rem 0 0; }
  .lp .lead__links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem 0; }
    @media screen and (max-width: 834px) {
      .lp .lead__links {
        flex-wrap: wrap; } }
  .lp .lead__links--item {
    width: 19%; }
    @media screen and (max-width: 834px) {
      .lp .lead__links--item {
        width: 48%; } }
    .lp .lead__links--item a {
      display: block;
      width: 100%;
      height: 100%;
      text-align: center;
      color: #fff;
      line-height: 1.2;
      background: #D69090;
      padding: 1.3rem 0;
      transition: opacity 0.3s ease; }
      .lp .lead__links--item a:hover {
        opacity: 0.8;
        transition: opacity 0.3s ease;
        cursor: pointer; }
  .lp .lead__contents {
    position: relative;
    z-index: 1;
    margin: 8.6rem 0 0;
    padding-bottom: 9rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .lead__contents {
        flex-direction: column; } }
  .lp .lead .lead__left {
    position: relative;
    z-index: 1;
    padding-left: 6%;
    width: 40%; }
    @media screen and (max-width: 834px) {
      .lp .lead .lead__left {
        width: 90%;
        padding-left: 0;
        margin: 0 auto; } }
    .lp .lead .lead__left .lead__title-box {
      width: 70%;
      margin: 0 0 10rem auto; }
      @media screen and (max-width: 834px) {
        .lp .lead .lead__left .lead__title-box {
          width: 100%;
          padding-left: 0;
          margin: 0 auto 3rem; } }
    .lp .lead .lead__left .lead__title {
      font-size: clamp(3rem, 2vw, 4.8rem);
      margin-bottom: 2rem; }
      @media screen and (max-width: 834px) {
        .lp .lead .lead__left .lead__title {
          font-size: 3rem;
          margin-bottom: 0; } }
    .lp .lead .lead__left .lead__text {
      font-size: clamp(1.8rem, 2vw, 2.4rem); }
    .lp .lead .lead__left .lead__left--picture {
      border-radius: 10px;
      overflow: hidden; }
      .lp .lead .lead__left .lead__left--picture img {
        width: 100%;
        object-fit: cover; }
      @media screen and (max-width: 834px) {
        .lp .lead .lead__left .lead__left--picture {
          border-radius: 5px; } }
    @media screen and (max-width: 834px) {
      .lp .lead .lead__left .lead__picture {
        width: 82%; } }
  .lp .lead .lead__middle {
    position: relative;
    z-index: 1;
    width: 25%;
    display: flex;
    align-items: center; }
    @media screen and (max-width: 834px) {
      .lp .lead .lead__middle {
        width: 90%;
        margin: 3rem auto 0; } }
    .lp .lead .lead__middle .lead__middle--text-box {
      display: flex;
      flex-direction: column;
      gap: 3rem 0; }
      @media screen and (max-width: 834px) {
        .lp .lead .lead__middle .lead__middle--text-box {
          gap: 2rem 0; } }
  .lp .lead .lead__right {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 19.5%;
    border-radius: 10px 0 0 10px;
    overflow: hidden; }
    @media screen and (max-width: 834px) {
      .lp .lead .lead__right {
        width: 65%;
        border-radius: 5px 0 0 5px;
        margin: 3rem 0 0 auto; } }
  .lp .lead__problem {
    background-color: #E2E7F0;
    padding: 12rem 0 0; }
    @media screen and (max-width: 834px) {
      .lp .lead__problem {
        padding: 6rem 0 2rem; } }
    .lp .lead__problem .lead__problem--title {
      text-align: center;
      width: fit-content;
      font-size: 4rem;
      margin-bottom: 5rem;
      position: relative;
      padding-bottom: 1rem; }
      @media screen and (max-width: 834px) {
        .lp .lead__problem .lead__problem--title {
          font-size: clamp(2.6rem, 2vw, 4rem);
          margin-bottom: 3rem; } }
      .lp .lead__problem .lead__problem--title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        background: url(../img/problem-title-dec.webp) center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 0.5rem; }
      .lp .lead__problem .lead__problem--title span {
        position: relative;
        display: inline-block; }
      .lp .lead__problem .lead__problem--title span::before {
        position: absolute;
        top: -3.5rem;
        left: 50%;
        transform: translate(-50%, 0);
        color: #333333;
        font-size: 1.1em;
        content: "・"; }
        @media screen and (max-width: 834px) {
          .lp .lead__problem .lead__problem--title span::before {
            line-height: 1;
            top: -1.5rem; } }
    .lp .lead__problem .lead__problem--contents {
      display: flex;
      max-width: 1260px;
      align-items: center;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .lp .lead__problem .lead__problem--contents {
          flex-direction: column; } }
    .lp .lead__problem .problem__list {
      display: flex;
      flex-direction: column;
      gap: 5.1rem 0; }
      @media screen and (max-width: 834px) {
        .lp .lead__problem .problem__list {
          width: 100%;
          order: 1;
          gap: 0; } }
      .lp .lead__problem .problem__list .problem__item {
        position: relative;
        width: 90%; }
        .lp .lead__problem .problem__list .problem__item img {
          display: block;
          height: 100%;
          position: absolute;
          width: 98%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          z-index: 1; }
        .lp .lead__problem .problem__list .problem__item p {
          font-size: 1.8rem;
          position: relative;
          text-align: center;
          z-index: 2;
          padding: 2.5rem 0;
          font-weight: 500; }
          @media screen and (max-width: 1024px) {
            .lp .lead__problem .problem__list .problem__item p {
              font-size: 1.4rem;
              padding: 1.8rem 0; } }
          .lp .lead__problem .problem__list .problem__item p span {
            color: #B28BB8; }
    .lp .lead__problem .lead__problem--left,
    .lp .lead__problem .lead__problem--right {
      width: 37%; }
      @media screen and (max-width: 1300px) {
        .lp .lead__problem .lead__problem--left,
        .lp .lead__problem .lead__problem--right {
          width: 39%; } }
      @media screen and (max-width: 834px) {
        .lp .lead__problem .lead__problem--left,
        .lp .lead__problem .lead__problem--right {
          display: none; } }
      .lp .lead__problem .lead__problem--left .problem__item,
      .lp .lead__problem .lead__problem--right .problem__item {
        margin: 0 0 0 auto; }
        @media screen and (max-width: 1300px) {
          .lp .lead__problem .lead__problem--left .problem__item,
          .lp .lead__problem .lead__problem--right .problem__item {
            padding: 0 1.5rem; } }
        @media screen and (max-width: 834px) {
          .lp .lead__problem .lead__problem--left .problem__item,
          .lp .lead__problem .lead__problem--right .problem__item {
            margin-bottom: 1rem;
            width: 100%; } }
      .lp .lead__problem .lead__problem--left .problem__item:nth-child(2),
      .lp .lead__problem .lead__problem--right .problem__item:nth-child(2) {
        margin: 0 auto 0 0; }
    .lp .lead__problem .lead__problem--top {
      display: none; }
      @media screen and (max-width: 834px) {
        .lp .lead__problem .lead__problem--top {
          margin-bottom: 2.5rem;
          display: flex;
          gap: 1rem 0; }
          .lp .lead__problem .lead__problem--top .problem__item {
            margin-right: 5%; }
          .lp .lead__problem .lead__problem--top .problem__item.cr {
            margin-left: 5%; } }
    @media screen and (max-width: 834px) {
      .lp .lead__problem .lead__problem--left {
        order: 1; } }
    @media screen and (max-width: 834px) {
      .lp .lead__problem .lead__problem--right {
        order: 2; } }
    .lp .lead__problem .lead__problem--middle {
      width: 22%; }
      @media screen and (max-width: 1300px) {
        .lp .lead__problem .lead__problem--middle {
          width: 18%; } }
      @media screen and (max-width: 834px) {
        .lp .lead__problem .lead__problem--middle {
          width: 50%;
          order: 3; } }
  .lp .lead__problem--triangle {
    width: 100vw;
    height: 12.3rem;
    background-color: #E2E7F0;
    clip-path: polygon(0 0, 100% 0, 50% 100%); }
    @media screen and (max-width: 834px) {
      .lp .lead__problem--triangle {
        height: 5.3rem; } }
.lp .debut {
  overflow: hidden;
  padding: 10rem 0 12rem; }
  @media screen and (max-width: 834px) {
    .lp .debut {
      padding: 5rem 0 6rem; } }
  .lp .debut__title {
    text-align: center;
    position: relative;
    margin-bottom: 5.9rem;
    width: fit-content;
    padding-bottom: 1.5rem;
    line-height: 1.4; }
    @media screen and (max-width: 834px) {
      .lp .debut__title {
        margin-bottom: 3.3rem; } }
    .lp .debut__title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      background: url(../img/debut-title-dec.webp) center;
      background-repeat: no-repeat;
      background-size: cover;
      width: 60%;
      height: 1.5rem; }
    .lp .debut__title span {
      display: block;
      font-size: clamp(1.5rem, 2vw, 2.2rem);
      color: #B28BB8;
      position: relative;
      padding: 0 5rem;
      margin-bottom: 1rem; }
      .lp .debut__title span::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #333333;
        width: 1px;
        height: 3rem;
        transform: rotate(-30deg); }
        @media screen and (max-width: 834px) {
          .lp .debut__title span::before {
            left: 7%; } }
      .lp .debut__title span::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: #333333;
        width: 1px;
        height: 3rem;
        transform: rotate(30deg); }
        @media screen and (max-width: 834px) {
          .lp .debut__title span::after {
            right: 7%; } }
  .lp .debut__text {
    width: 44%;
    margin: 0 auto 4.8rem; }
    @media screen and (max-width: 834px) {
      .lp .debut__text {
        width: 90%;
        margin: 0 auto 3rem; } }
  .lp .debut__swiper--wrap {
    overflow: hidden;
    width: 100%; }
  .lp .debut__swiper {
    z-index: 6 !important; }
    .lp .debut__swiper .swiper-wrapper {
      transition-timing-function: linear; }
    .lp .debut__swiper .swiper-slide {
      overflow: hidden;
      border-radius: 10px;
      position: relative;
      z-index: 6 !important;
      height: 306px !important;
      width: auto !important; }
      @media screen and (max-width: 834px) {
        .lp .debut__swiper .swiper-slide {
          height: 230px !important;
          width: auto !important; } }
    .lp .debut__swiper .swiper-slide img {
      width: auto;
      height: 100%;
      object-fit: cover; }
  .lp .debut__main {
    margin-top: 6rem;
    background: #DEC3C3;
    border-radius: 10px;
    padding: 4rem 4% 6rem; }
    @media screen and (max-width: 834px) {
      .lp .debut__main {
        margin-top: 4rem;
        padding: 3rem 4%; } }
  .lp .debut__main--title-box {
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 1rem;
    position: relative; }
    .lp .debut__main--title-box::before {
      content: '';
      position: absolute;
      bottom: -20px;
      background: url(../img/point-title-underline.webp) center;
      background-repeat: no-repeat;
      background-size: cover;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 100%;
      height: 3.5rem; }
      @media screen and (max-width: 834px) {
        .lp .debut__main--title-box::before {
          bottom: -25px;
          height: 2.5rem; } }
  .lp .debut__main--title {
    position: relative;
    width: fit-content;
    font-size: clamp(2.1rem, 2.4vw, 2.8rem);
    font-weight: 500;
    color: #fff; }
    @media screen and (max-width: 834px) {
      .lp .debut__main--title {
        text-align: center;
        line-height: 1.3;
        font-size: clamp(1.8rem, 2.4vw, 2.1rem); } }
    .lp .debut__main--title::before {
      content: '';
      position: absolute;
      bottom: 18px;
      left: -3rem;
      background: url(../img/point-sparkle-left.webp) center;
      background-repeat: no-repeat;
      background-size: cover;
      width: 12px;
      height: 31px; }
    .lp .debut__main--title::after {
      background: url(../img/point-sparkle-right.webp) center;
      content: '';
      position: absolute;
      bottom: 18px;
      right: -3rem;
      background-repeat: no-repeat;
      background-size: cover;
      width: 12px;
      height: 31px; }
    .lp .debut__main--title span {
      font-size: clamp(3.2rem, 2.4vw, 4.8rem); }
  .lp .debut__main--list {
    margin-top: 5.3rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .debut__main--list {
        flex-direction: column;
        margin-top: 13.3rem;
        gap: 3rem 0; } }
  .lp .debut__main--item {
    position: relative;
    isolation: isolate;
    z-index: 2;
    background: #FFFFFF;
    width: 32%;
    border-radius: 10px;
    padding: 3rem 4%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media screen and (max-width: 834px) {
      .lp .debut__main--item {
        width: 100%;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        gap: 0 2rem; } }
    .lp .debut__main--item .number {
      position: relative;
      z-index: 4;
      color: #C4C7CF;
      font-family: "Figtree", sans-serif;
      margin-bottom: 1.5rem; }
      .lp .debut__main--item .number::before {
        background: url(../img/point-sub-title-orval.webp) center;
        content: '';
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        background-repeat: no-repeat;
        background-size: cover;
        width: 5.7rem;
        height: 5.7rem; }
        @media screen and (max-width: 834px) {
          .lp .debut__main--item .number::before {
            width: 3.7rem;
            height: 3.7rem; } }
    .lp .debut__main--item .debut__main--item--title {
      font-size: clamp(2.1rem, 2.4vw, 2.8rem);
      font-weight: 500;
      font-family: "Noto Serif JP", serif;
      color: #B28BB8;
      padding-bottom: 0.5rem;
      margin-bottom: 3rem;
      position: relative; }
      @media screen and (max-width: 834px) {
        .lp .debut__main--item .debut__main--item--title {
          margin-bottom: 2rem; } }
      .lp .debut__main--item .debut__main--item--title::before {
        background: url(../img/problem-title-dec.webp) center;
        content: '';
        position: absolute;
        z-index: 3;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 0.5rem; }
    .lp .debut__main--item .debut__main--item--bubble {
      background: #5F6061;
      line-height: 1.2;
      border-radius: 15px;
      color: #fff;
      font-size: 1.4rem;
      padding: 0.5rem 1.5rem;
      margin-bottom: 1.8rem;
      position: relative;
      z-index: 2; }
      @media screen and (max-width: 834px) {
        .lp .debut__main--item .debut__main--item--bubble {
          margin: 0 9% 1.8rem;
          width: 100%;
          text-align: center; } }
      .lp .debut__main--item .debut__main--item--bubble::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 11px solid #5F6061; }
    .lp .debut__main--item .debut__main--item--sub-title {
      font-size: 2.4rem;
      font-weight: 500;
      margin-bottom: 2rem; }
      @media screen and (max-width: 834px) {
        .lp .debut__main--item .debut__main--item--sub-title {
          font-size: 1.8rem;
          margin-bottom: 1rem;
          width: 100%;
          text-align: center; } }
    @media screen and (max-width: 834px) {
      .lp .debut__main--item .debut__main--item--text {
        width: 100%; } }
  .lp .debut__main--item.skill {
    position: relative;
    z-index: 1; }
    .lp .debut__main--item.skill::before {
      background: url(../img/point-icon1.webp) center;
      content: '';
      position: absolute;
      top: -11.5rem;
      z-index: 1;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      background-repeat: no-repeat;
      background-size: cover;
      width: 7rem;
      height: 11.4rem; }
      @media screen and (max-width: 834px) {
        .lp .debut__main--item.skill::before {
          top: -9.7rem;
          width: 6.2rem;
          height: 9.7rem;
          left: 34%; } }
    .lp .debut__main--item.skill::after {
      display: none; }
      @media screen and (max-width: 834px) {
        .lp .debut__main--item.skill::after {
          display: block;
          background: url(../img/point-icon2.webp) center;
          content: '';
          position: absolute;
          z-index: 1;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          background-repeat: no-repeat;
          background-size: cover;
          width: 11rem;
          height: 10rem;
          top: -10rem;
          left: 67%; } }
  .lp .debut__main--item.career {
    position: relative;
    z-index: 1; }
    .lp .debut__main--item.career::before {
      background: url(../img/point-icon2.webp) center;
      content: '';
      position: absolute;
      top: -12.1rem;
      z-index: 1;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      background-repeat: no-repeat;
      background-size: cover;
      width: 13rem;
      height: 12rem; }
      @media screen and (max-width: 834px) {
        .lp .debut__main--item.career::before {
          display: none; } }
  .lp .debut__main--item > * {
    position: relative;
    z-index: 2; }
.lp .system {
  position: relative; }
  .lp .system__bg-wrap {
    position: sticky;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100lvh; }
  .lp .system__bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100lvh;
    z-index: -1;
    transform: translateX(-50%); }
    @media screen and (max-width: 834px) {
      .lp .system__bg img {
        object-fit: cover;
        width: 100%;
        height: 100%; } }
  .lp .system__contents {
    position: relative;
    z-index: 1;
    padding: 0 0 13rem;
    margin-top: -80lvh; }
    @media screen and (max-width: 834px) {
      .lp .system__contents {
        padding: 0 0 7rem; } }
  .lp .system__title-box {
    margin-bottom: 4rem;
    color: #fff;
    text-align: center; }
    @media screen and (max-width: 834px) {
      .lp .system__title-box {
        margin-bottom: 0; } }
  .lp .system__text {
    max-width: 750px;
    margin: 0 auto 10rem; }
    @media screen and (max-width: 834px) {
      .lp .system__text {
        margin: 2rem auto 7rem; } }
  .lp .system__list {
    display: flex;
    flex-direction: column;
    gap: 6.7rem 0; }
    @media screen and (max-width: 834px) {
      .lp .system__list {
        gap: 5rem 0; } }
  .lp .system__item {
    background-color: #fff;
    border-radius: 20px;
    padding: 70px 6%; }
    @media screen and (max-width: 834px) {
      .lp .system__item {
        padding: 25px 6%;
        border-radius: 10px; } }
  .lp .system__item--lead {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .system__item--lead {
        flex-direction: column;
        gap: 3rem 0; } }
  .lp .system__item--lead--picture {
    width: 48%;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .system__item--lead--picture {
        width: 100%; } }
    .lp .system__item--lead--picture img {
      border-radius: 10px; }
      @media screen and (max-width: 834px) {
        .lp .system__item--lead--picture img {
          border-radius: 5px;
          object-fit: cover;
          width: 100%; } }
    .lp .system__item--lead--picture .bubble {
      width: 14rem;
      height: 14rem;
      border-radius: 50%;
      aspect-ratio: 1 / 1;
      position: absolute;
      background-color: #C1A5C5;
      z-index: 3;
      top: -3rem;
      right: -3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: #fff; }
      @media screen and (max-width: 834px) {
        .lp .system__item--lead--picture .bubble {
          width: 10rem;
          height: 10rem; } }
    .lp .system__item--lead--picture .number {
      font-family: "Figtree", sans-serif;
      font-size: 1.4rem;
      position: relative;
      display: block; }
      @media screen and (max-width: 834px) {
        .lp .system__item--lead--picture .number {
          font-size: 1.2rem; } }
      .lp .system__item--lead--picture .number::before {
        background: url(../img/point-sub-title-orval.webp) center;
        content: '';
        position: absolute;
        z-index: 3;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        background-repeat: no-repeat;
        background-size: cover;
        width: 4.6rem;
        height: 4.6rem; }
        @media screen and (max-width: 834px) {
          .lp .system__item--lead--picture .number::before {
            width: 2.6rem;
            height: 2.6rem; } }
    .lp .system__item--lead--picture .bubble__text {
      font-size: 2rem;
      font-weight: 500; }
      @media screen and (max-width: 834px) {
        .lp .system__item--lead--picture .bubble__text {
          font-size: 1.5rem; } }
  .lp .system__item--lead--text {
    width: 42%; }
    @media screen and (max-width: 834px) {
      .lp .system__item--lead--text {
        width: 100%; } }
    .lp .system__item--lead--text .lead__title {
      margin-bottom: 4rem; }
      @media screen and (max-width: 834px) {
        .lp .system__item--lead--text .lead__title {
          width: 80%;
          margin-bottom: 2rem; } }
    .lp .system__item--lead--text .lead__sub-title {
      font-size: clamp(2rem, 2vw, 2.8rem);
      line-height: 1.5;
      margin-bottom: 3rem; }
      @media screen and (max-width: 834px) {
        .lp .system__item--lead--text .lead__sub-title {
          margin-bottom: 2rem; } }
  .lp .system__item--schedule {
    margin-top: 4rem;
    position: relative;
    z-index: 1; }
    @media screen and (max-width: 834px) {
      .lp .system__item--schedule {
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        -webkit-overflow-scrolling: touch; }
        .lp .system__item--schedule img {
          min-width: 700px;
          flex-shrink: 0;
          scroll-snap-align: center; } }
  .lp .system__item--info {
    margin-top: 5.2rem;
    position: relative;
    z-index: 2; }
    @media screen and (max-width: 834px) {
      .lp .system__item--info {
        margin: 3rem auto 3rem; } }
  .lp .system__item--sub-title {
    position: relative;
    margin: 0 auto 4.5rem; }
    @media screen and (max-width: 834px) {
      .lp .system__item--sub-title {
        font-size: clamp(1.8rem, 2.4vw, 2.8rem);
        text-align: center; } }
    .lp .system__item--sub-title::before {
      content: '';
      width: 20%;
      height: 0.5rem;
      border-bottom: 3px dotted #333;
      position: absolute;
      left: 0%;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%); }
      @media screen and (max-width: 834px) {
        .lp .system__item--sub-title::before {
          width: 19%; } }
      @media screen and (max-width: 640px) {
        .lp .system__item--sub-title::before {
          width: 13%; } }
    .lp .system__item--sub-title::after {
      content: '';
      width: 20%;
      height: 0.5rem;
      border-bottom: 3px dotted #333;
      position: absolute;
      right: 0%;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%); }
      @media screen and (max-width: 834px) {
        .lp .system__item--sub-title::after {
          width: 19%; } }
      @media screen and (max-width: 640px) {
        .lp .system__item--sub-title::after {
          width: 13%; } }
    .lp .system__item--sub-title p {
      padding: 0 4rem;
      width: fit-content;
      margin: 0 auto;
      font-size: clamp(1.8rem, 2.4vw, 2.8rem);
      font-weight: 500;
      position: relative; }
      @media screen and (max-width: 834px) {
        .lp .system__item--sub-title p {
          padding: 0 12%; } }
      .lp .system__item--sub-title p::before {
        content: '';
        position: absolute;
        bottom: 1rem;
        left: 2.2rem;
        background-color: #333333;
        width: 1px;
        height: 3rem;
        transform: rotate(-30deg); }
      .lp .system__item--sub-title p::after {
        content: '';
        position: absolute;
        bottom: 1rem;
        right: 2.2rem;
        background-color: #333333;
        width: 1px;
        height: 3rem;
        transform: rotate(30deg); }
      .lp .system__item--sub-title p span {
        position: relative; }
        @media screen and (max-width: 834px) {
          .lp .system__item--sub-title p span {
            display: block; } }
        .lp .system__item--sub-title p span::before {
          content: '';
          position: absolute;
          bottom: -20px;
          background-repeat: no-repeat;
          background-size: cover;
          left: 50%;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          width: 100%;
          height: 3.5rem; }
          @media screen and (max-width: 834px) {
            .lp .system__item--sub-title p span::before {
              bottom: 0px;
              height: 1.5rem; } }
  .lp .system .info__list {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .system .info__list {
        flex-direction: column;
        gap: 4rem 0; } }
    .lp .system .info__list .info__item {
      width: 31%; }
      @media screen and (max-width: 834px) {
        .lp .system .info__list .info__item {
          width: 100%; } }
    .lp .system .info__list .info__item--picture {
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 2rem; }
      @media screen and (max-width: 834px) {
        .lp .system .info__list .info__item--picture {
          border-radius: 5px; }
          .lp .system .info__list .info__item--picture img {
            width: 100%; } }
    .lp .system .info__list .info__item--title {
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 1.5rem; }
      @media screen and (max-width: 834px) {
        .lp .system .info__list .info__item--title {
          font-size: 1.6rem;
          margin-bottom: 1rem; } }
    .lp .system .info__list .info__item--text {
      font-size: 1.5rem; }
      @media screen and (max-width: 834px) {
        .lp .system .info__list .info__item--text {
          font-size: 1.4rem; } }
  .lp .system .system__multiple {
    position: relative;
    z-index: 2;
    margin-top: 6rem;
    background-color: #EAE9F1;
    border-radius: 10px;
    padding: 4.8rem 5%; }
    @media screen and (max-width: 834px) {
      .lp .system .system__multiple {
        padding: 3rem 5%;
        margin-top: 4rem; } }
    .lp .system .system__multiple .multiple__lead {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .lp .system .system__multiple .multiple__lead {
          flex-direction: column;
          gap: 3rem 0; } }
    .lp .system .system__multiple .multiple__lead--picture {
      width: 35%;
      border-radius: 10px;
      overflow: hidden; }
      @media screen and (max-width: 834px) {
        .lp .system .system__multiple .multiple__lead--picture {
          width: 100%;
          border-radius: 5px; } }
      .lp .system .system__multiple .multiple__lead--picture img {
        object-fit: cover;
        width: 100%; }
    .lp .system .system__multiple .multiple__lead--text-wrap {
      width: 61%; }
      @media screen and (max-width: 834px) {
        .lp .system .system__multiple .multiple__lead--text-wrap {
          width: 100%; } }
    .lp .system .system__multiple .multiple__lead--title {
      font-size: 2rem;
      font-weight: 500;
      margin-bottom: 1rem; }
      @media screen and (max-width: 834px) {
        .lp .system .system__multiple .multiple__lead--title {
          font-size: 1.7rem; } }
      .lp .system .system__multiple .multiple__lead--title span {
        background: #FFFFFF;
        border-radius: 18px;
        text-align: center;
        padding: 0.8rem 1.7rem;
        line-height: 1;
        color: #B28BB8;
        display: block;
        width: fit-content;
        margin-bottom: 2rem; }
        @media screen and (max-width: 834px) {
          .lp .system .system__multiple .multiple__lead--title span {
            border-radius: 15px;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            padding: 0.6rem 1.1rem; } }
    .lp .system .system__multiple .multiple__info {
      margin-top: 2.6rem;
      padding-top: 2.6rem;
      border-top: 1px solid #FFFFFF;
      display: flex;
      justify-content: space-between;
      align-items: stretch; }
      @media screen and (max-width: 834px) {
        .lp .system .system__multiple .multiple__info {
          margin-top: 2rem;
          padding-top: 2rem;
          flex-direction: column;
          gap: 3rem 0; } }
    .lp .system .system__multiple .multiple__info--box {
      width: 50%;
      display: flex;
      align-items: center;
      gap: 0 2rem; }
      @media screen and (max-width: 834px) {
        .lp .system .system__multiple .multiple__info--box {
          width: 100%; } }
    .lp .system .system__multiple .multiple__info--list {
      display: flex;
      gap: 1rem 2rem;
      flex-wrap: wrap;
      width: 70%; }
  .lp .system .benefit__list {
    position: relative;
    z-index: 2;
    margin-top: 5.4rem;
    display: flex;
    flex-direction: column;
    gap: 3.6rem 0; }
    @media screen and (max-width: 834px) {
      .lp .system .benefit__list {
        margin-top: 4rem;
        gap: 3rem 0; } }
  .lp .system li.benefit__item {
    border-radius: 10px;
    display: flex; }
    @media screen and (max-width: 834px) {
      .lp .system li.benefit__item {
        border-radius: 5px;
        flex-direction: column; } }
  .lp .system .benefit__item--title-box {
    width: 8%;
    padding: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid #CCCCCC; }
    @media screen and (max-width: 834px) {
      .lp .system .benefit__item--title-box {
        width: 100%;
        padding: 3rem 0 0;
        border-right: 01px solid #CCCCCC; } }
  .lp .system .benefit__item--title {
    writing-mode: vertical-rl;
    font-size: 2.4rem;
    font-weight: 500;
    color: #AC92B0;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .system .benefit__item--title {
        writing-mode: horizontal-tb;
        font-size: 1.8rem; } }
    .lp .system .benefit__item--title::before {
      content: '●';
      color: #DEC3C3;
      font-size: 1.2rem; }
  .lp .system .benefit__item--main {
    width: 92%;
    padding: 4rem 5rem; }
    @media screen and (max-width: 834px) {
      .lp .system .benefit__item--main {
        width: 100%;
        padding: 3rem 5%; } }
  .lp .system .benefit__item--main--upper {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .system .benefit__item--main--upper {
        flex-direction: column;
        align-items: center;
        gap: 2rem 0; } }
  .lp .system .benefit__item--picture {
    display: flex;
    justify-content: center;
    width: 35%; }
    @media screen and (max-width: 834px) {
      .lp .system .benefit__item--picture {
        width: 60%; } }
    .lp .system .benefit__item--picture img {
      object-fit: contain; }
      @media screen and (max-width: 834px) {
        .lp .system .benefit__item--picture img {
          max-width: 200px; } }
  .lp .system .benefit__item--text-box {
    width: 61%; }
    @media screen and (max-width: 834px) {
      .lp .system .benefit__item--text-box {
        width: 100%; } }
    .lp .system .benefit__item--text-box .benefit__item--sub-title {
      font-size: 2rem;
      width: fit-content;
      font-weight: 500;
      position: relative;
      z-index: 2;
      margin-bottom: 2rem; }
      @media screen and (max-width: 834px) {
        .lp .system .benefit__item--text-box .benefit__item--sub-title {
          font-size: 1.6rem;
          text-align: center;
          margin: 0 auto 1rem; } }
      .lp .system .benefit__item--text-box .benefit__item--sub-title::before {
        content: '';
        position: absolute;
        bottom: 0;
        z-index: -1;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right;
        left: 0;
        right: 0;
        width: 100%;
        height: 2.5rem;
        background-image: url(../img/benefit-title-underline.webp); }
    .lp .system .benefit__item--text-box .benefit__item--c-list {
      margin-top: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem 3rem;
      flex-wrap: wrap; }
      @media screen and (max-width: 1024px) {
        .lp .system .benefit__item--text-box .benefit__item--c-list {
          align-items: flex-start;
          gap: 1rem 0; } }
      .lp .system .benefit__item--text-box .benefit__item--c-list .benefit__item--c-item {
        width: 31%;
        display: flex;
        align-items: center;
        gap: 0 1rem;
        font-weight: 500; }
        @media screen and (max-width: 1200px) {
          .lp .system .benefit__item--text-box .benefit__item--c-list .benefit__item--c-item {
            width: 100%; } }
        @media screen and (max-width: 834px) {
          .lp .system .benefit__item--text-box .benefit__item--c-list .benefit__item--c-item {
            width: 41%;
            font-size: 1.2rem;
            gap: 0 0.5rem; }
            .lp .system .benefit__item--text-box .benefit__item--c-list .benefit__item--c-item img {
              width: 20%;
              height: auto;
              max-width: 2rem; } }
  .lp .system .benefit__item--main--additional {
    margin-top: 5rem;
    background: #fff;
    border-radius: 10px;
    padding: 3rem 5%;
    position: relative; }
    .lp .system .benefit__item--main--additional::before {
      content: '';
      position: absolute;
      top: -11.3rem;
      right: 5%;
      width: 9.4rem;
      height: 11.3rem;
      background: url(../img/off-icon2.webp) center;
      background-repeat: no-repeat;
      background-size: contain; }
      @media screen and (max-width: 834px) {
        .lp .system .benefit__item--main--additional::before {
          top: -9.3rem;
          right: 1%;
          width: 7.4rem;
          height: 9.3rem; } }
    .lp .system .benefit__item--main--additional .additional__title {
      width: fit-content;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 0px auto 1.8rem;
      color: #B28BB8;
      font-size: clamp(1.4rem, 2.4vw, 2rem);
      font-weight: 500; }
  .lp .system .support__list {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between; }
    .lp .system .support__list .support__item {
      width: 25%;
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 1rem 0;
      font-weight: 500; }
      @media screen and (max-width: 834px) {
        .lp .system .support__list .support__item {
          width: 23%;
          font-size: 1.2rem;
          line-height: 1.4;
          text-align: center; } }
  .lp .system .salary__main {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    margin-top: -6rem;
    padding: 4.7rem 6%;
    position: relative;
    z-index: 2; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__main {
        margin-top: 3rem; } }
  @media screen and (max-width: 834px) {
    .lp .system .salary__main .sign-scroll {
      overflow-x: auto;
      white-space: nowrap;
      scroll-snap-type: x mandatory;
      padding-bottom: 2rem;
      -webkit-overflow-scrolling: touch; } }
  .lp .system .salary__calculate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.3rem; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__calculate {
        min-width: 460px;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding-bottom: 1.5rem; } }
  .lp .system .salary__sum {
    width: 20%; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__sum {
        width: 18%; } }
  .lp .system .s-figure {
    width: 3%; }
  .lp .system .sum__title {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center; }
    .lp .system .sum__title br {
      display: none; }
    @media screen and (max-width: 1200px) {
      .lp .system .sum__title br {
        display: block; } }
    @media screen and (max-width: 834px) {
      .lp .system .sum__title {
        font-size: 1.2rem;
        line-height: 1.2; } }
  .lp .system .sum__number {
    text-align: center;
    color: #DD7878;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 834px) {
      .lp .system .sum__number {
        flex-direction: column;
        align-items: center;
        justify-content: center; } }
    .lp .system .sum__number span.en {
      font-size: clamp(2.5rem, 2.4vw, 5.6rem);
      font-weight: 500;
      line-height: 1; }
    .lp .system .sum__number span.ja {
      font-size: clamp(1.4rem, 2.4vw, 2.4rem);
      font-weight: 500; }
  .lp .system .cal__item {
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 7.2rem; }
    @media screen and (max-width: 834px) {
      .lp .system .cal__item {
        border-radius: 5px;
        height: 6rem; } }
  .lp .system .cal__item--text {
    font-size: clamp(1.2rem, 3vw, 2.1rem);
    font-weight: 500; }
    @media screen and (max-width: 834px) {
      .lp .system .cal__item--text {
        font-size: 1.2rem; } }
  .lp .system .cal__item--b--text {
    line-height: 1.2; }
    .lp .system .cal__item--b--text span.ja {
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1; }
      @media screen and (max-width: 834px) {
        .lp .system .cal__item--b--text span.ja {
          font-size: 1.2rem; } }
    .lp .system .cal__item--b--text span.en {
      font-size: 2rem;
      font-weight: 500;
      display: block; }
      @media screen and (max-width: 834px) {
        .lp .system .cal__item--b--text span.en {
          font-size: 1.4rem; } }
      .lp .system .cal__item--b--text span.en span {
        font-size: clamp(1.5rem, 2.4vw, 2.8rem);
        line-height: 1; }
  .lp .system .cal__item--p {
    background-color: #E0B9B9; }
  .lp .system .cal__item--b {
    background-color: #B5C3DD; }
  .lp .system .cal__item--pu {
    background-color: #CBBCD4; }
  .lp .system .salary__title {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto 1.8rem;
    color: #B28BB8;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 500; }
  .lp .system .salary__text {
    font-size: 1.5rem; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__text {
        font-size: 1.4rem; } }
  .lp .system .salary__list {
    margin-top: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__list {
        margin-top: 2rem;
        gap: 0.5rem; } }
  .lp .system .salary__item {
    width: fit-content;
    border-radius: 4px;
    font-size: 1.5rem;
    border: 1px solid #9AA0AF;
    color: #80889e;
    line-height: 1;
    padding: 0.5rem 1rem; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__item {
        font-size: 1.2rem; } }
  .lp .system .salary__model {
    margin-top: 4rem;
    position: relative;
    border-radius: 6px;
    background-color: #F4F3EF;
    padding: 4rem 5%; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__model {
        padding: 3rem 5%; } }
  .lp .system .salary__model--title {
    background-color: #5F6061;
    width: fit-content;
    position: absolute;
    color: #fff;
    border-radius: 16px;
    padding: 1rem 4rem;
    font-weight: 500;
    line-height: 1;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -1rem; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__model--title {
        padding: 1rem 6%; } }
  .lp .system .salary__model--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.8rem 0;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__model--list {
        flex-direction: column;
        gap: 0; } }
    .lp .system .salary__model--list::before {
      content: '';
      width: 100%;
      height: 0.5rem;
      border-bottom: 3px dotted #CCCCCC;
      position: absolute;
      left: 0%;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%); }
      @media screen and (max-width: 834px) {
        .lp .system .salary__model--list::before {
          content: none; } }
    .lp .system .salary__model--list::after {
      content: '';
      width: 0.5rem;
      height: 100%;
      border-right: 3px dotted #CCCCCC;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%); }
      @media screen and (max-width: 834px) {
        .lp .system .salary__model--list::after {
          content: none; } }
  .lp .system .salary__model--item {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 2rem; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__model--item {
        width: 100%;
        padding: 2rem 0;
        border-bottom: 2px dotted #CCCCCC; } }
  @media screen and (max-width: 834px) {
    .lp .system .salary__model--picture {
      width: 30%; } }
  @media screen and (max-width: 834px) {
    .lp .system .salary__model--text-box {
      width: 68%; } }
  .lp .system .salary__model--sub-title {
    font-size: 1.2rem; }
  .lp .system .salary__model--number {
    font-size: 1.8rem;
    color: #DD7878;
    font-weight: 500; }
    @media screen and (max-width: 834px) {
      .lp .system .salary__model--number {
        font-size: 1.6rem; } }
    .lp .system .salary__model--number span.en {
      font-size: clamp(2.3rem, 2.4vw, 3.2rem);
      line-height: 1;
      font-weight: 500;
      padding: 0 0.6rem; }
  .lp .system .support__voice {
    margin-top: 4.7rem;
    position: relative;
    border-radius: 6px;
    background-color: #fff;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem 0; }
  .lp .system .voice__title {
    background-color: #5F6061;
    width: fit-content;
    position: absolute;
    color: #fff;
    border-radius: 16px;
    padding: 0.8rem 4rem;
    font-weight: 500;
    line-height: 1;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -1rem;
    text-align: center; }
    @media screen and (max-width: 834px) {
      .lp .system .voice__title {
        padding: 1rem 6%;
        white-space: nowrap; } }
  .lp .system .voice__item {
    display: flex;
    align-items: center;
    gap: 0 3rem; }
    @media screen and (max-width: 834px) {
      .lp .system .voice__item {
        flex-direction: column; } }
  @media screen and (max-width: 834px) {
    .lp .system .voice__item2 {
      flex-direction: column-reverse; } }
  .lp .system .voice__item--picture {
    width: 14%; }
    @media screen and (max-width: 834px) {
      .lp .system .voice__item--picture {
        width: 40%;
        display: flex;
        justify-content: center; } }
  .lp .system .voice__item--main {
    width: 86%;
    padding: 2.5rem 5%;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    border: 1px solid #CCCCCC; }
    @media screen and (max-width: 834px) {
      .lp .system .voice__item--main {
        width: 100%;
        border-radius: 5px; } }
  .lp .system .voice__item--main::before {
    content: '';
    position: absolute;
    z-index: 3;
    width: 24px;
    height: 17px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../img/triangle-v.png");
    background-repeat: no-repeat;
    background-size: contain; }
    @media screen and (max-width: 834px) {
      .lp .system .voice__item--main::before {
        left: auto;
        top: -1.8rem;
        transform: rotate(90deg);
        right: 21%; } }
  .lp .system .voice__item1 .voice__item--main::before {
    left: -2rem; }
    @media screen and (max-width: 834px) {
      .lp .system .voice__item1 .voice__item--main::before {
        left: auto;
        right: 15%; } }
  .lp .system .voice__item2 .voice__item--main::before {
    right: -2rem;
    transform: translateY(-50%) scaleX(-1); }
    @media screen and (max-width: 834px) {
      .lp .system .voice__item2 .voice__item--main::before {
        left: auto;
        right: 15%;
        transform: rotate(87deg); } }
  .lp .system .voice__item--title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #B28BB8;
    margin-bottom: 1rem; }
    @media screen and (max-width: 834px) {
      .lp .system .voice__item--title {
        font-size: 1.6rem; } }
  .lp .system__item--sub-text {
    text-align: center; }
  .lp .system .support__info--list {
    margin-top: 4.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem 0; }
    @media screen and (max-width: 834px) {
      .lp .system .support__info--list {
        gap: 1rem 0; } }
  .lp .system li.support__info--item {
    width: 24%;
    border-radius: 10px;
    padding: 3.5rem 3%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media screen and (max-width: 1024px) {
      .lp .system li.support__info--item {
        width: 49%; } }
    @media screen and (max-width: 834px) {
      .lp .system li.support__info--item {
        border-radius: 5px;
        padding: 2rem 3%; } }
    .lp .system li.support__info--item .info__item--title {
      font-size: 2.1rem;
      font-weight: 500;
      font-family: "Noto Serif JP", serif;
      margin-bottom: 1.5rem; }
      @media screen and (max-width: 834px) {
        .lp .system li.support__info--item .info__item--title {
          font-size: 1.6rem; } }
    .lp .system li.support__info--item .info__item--picture {
      margin-bottom: 2.5rem; }
      @media screen and (max-width: 834px) {
        .lp .system li.support__info--item .info__item--picture {
          margin-bottom: 2rem; } }
      .lp .system li.support__info--item .info__item--picture img {
        max-height: 5.5rem;
        width: auto; }
        @media screen and (max-width: 834px) {
          .lp .system li.support__info--item .info__item--picture img {
            max-height: 4.5rem; } }
  .lp .system .purple {
    background-color: #EAE9F1; }
  .lp .system .beige {
    background-color: #F4F3EF; }
  .lp .system .system__additional {
    margin-top: 7.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media screen and (max-width: 834px) {
      .lp .system .system__additional {
        flex-direction: column;
        gap: 2rem 0; } }
    .lp .system .system__additional .additional__picture {
      width: 50%;
      position: relative; }
      @media screen and (max-width: 834px) {
        .lp .system .system__additional .additional__picture {
          width: 100%; } }
      .lp .system .system__additional .additional__picture .add-text {
        position: absolute;
        top: 0;
        right: 0; }
    .lp .system .system__additional .additional__text-box {
      width: 45%; }
      @media screen and (max-width: 834px) {
        .lp .system .system__additional .additional__text-box {
          width: 100%; } }
    .lp .system .system__additional .additional__title {
      font-size: 2.4rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      font-family: "Noto Serif JP", serif; }
      @media screen and (max-width: 834px) {
        .lp .system .system__additional .additional__title {
          font-size: 2rem; } }
    .lp .system .system__additional .event {
      margin-top: 2rem;
      background-color: #E0B9B9;
      border-radius: 8px;
      padding: 1.5rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .lp .system .system__additional .event {
          border-radius: 4px; } }
      .lp .system .system__additional .event .circle {
        aspect-ratio: 1 / 1;
        width: 25%;
        border-radius: 50%;
        background-color: #FFFFFF;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 1.6rem;
        font-weight: 500;
        font-family: "Noto Serif JP", serif;
        line-height: 1.2; }
        @media screen and (max-width: 834px) {
          .lp .system .system__additional .event .circle {
            font-size: 1.4rem; } }
      .lp .system .system__additional .event ul {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center; }
        .lp .system .system__additional .event ul li {
          width: 31%;
          color: #fff;
          font-weight: 500;
          font-size: 1.6rem; }
          @media screen and (max-width: 1200px) {
            .lp .system .system__additional .event ul li {
              width: 49%; } }
          @media screen and (max-width: 834px) {
            .lp .system .system__additional .event ul li {
              font-size: 1.4rem; } }
  .lp .system .salon-work {
    border: 1px solid #DDDDDD;
    margin-top: 2.5rem;
    padding: 3.6rem 5%;
    position: relative;
    border-radius: 10px; }
    @media screen and (max-width: 834px) {
      .lp .system .salon-work {
        border-radius: 5px; } }
    .lp .system .salon-work__title {
      width: fit-content;
      background-color: #fff;
      position: absolute;
      left: 50%;
      font-size: 1.5rem;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      top: -1.4rem; }
      @media screen and (max-width: 834px) {
        .lp .system .salon-work__title {
          white-space: nowrap; } }
      .lp .system .salon-work__title span:nth-child(1) {
        margin-right: 2rem;
        color: #DDDDDD; }
        @media screen and (max-width: 834px) {
          .lp .system .salon-work__title span:nth-child(1) {
            margin-right: 1rem; } }
      .lp .system .salon-work__title span:nth-child(2) {
        margin-left: 2rem;
        color: #DDDDDD; }
        @media screen and (max-width: 834px) {
          .lp .system .salon-work__title span:nth-child(2) {
            margin-left: 1rem; } }
    .lp .system .salon-work__main {
      display: flex;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .lp .system .salon-work__main {
          flex-direction: column; } }
    .lp .system .salon-work__item {
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      gap: 0.2rem; }
      .lp .system .salon-work__item span {
        background-color: #9AA0AF;
        width: 6px;
        height: 6px;
        display: inline-block;
        border-radius: 50%; }
    .lp .system .salon-work__list1 {
      width: 20%; }
      @media screen and (max-width: 1100px) {
        .lp .system .salon-work__list1 {
          width: 22%; } }
      @media screen and (max-width: 834px) {
        .lp .system .salon-work__list1 {
          width: 100%;
          padding: 0rem 0 1rem;
          border-bottom: 2px dotted #ccc; } }
    .lp .system .salon-work__list2 {
      width: 30%;
      padding-left: 3%;
      border-left: 2px dotted #CCCCCC; }
      @media screen and (max-width: 1100px) {
        .lp .system .salon-work__list2 {
          border-left: 2px dotted #CCCCCC;
          width: 34%; } }
      @media screen and (max-width: 834px) {
        .lp .system .salon-work__list2 {
          width: 100%;
          padding: 1rem 0;
          border-bottom: 2px dotted #ccc;
          border-left: 0px dotted #CCCCCC; } }
    .lp .system .salon-work__list3 {
      width: 50%;
      padding-left: 3%;
      border-left: 2px dotted #CCCCCC;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      @media screen and (max-width: 1100px) {
        .lp .system .salon-work__list3 {
          width: 34%;
          flex-direction: column; } }
      @media screen and (max-width: 834px) {
        .lp .system .salon-work__list3 {
          width: 100%;
          padding: 1rem 0;
          border-left: 0px dotted #CCCCCC; } }
      .lp .system .salon-work__list3 li.salon-work__item {
        width: 50%; }
        @media screen and (max-width: 1100px) {
          .lp .system .salon-work__list3 li.salon-work__item {
            width: 100%; } }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(1) {
        order: 1; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(3) {
        order: 3; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(4) {
        order: 5; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(7) {
        order: 1; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(9) {
        order: 1; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(2) {
        order: 1; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(4) {
        order: 1; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(6) {
        order: 1; }
      .lp .system .salon-work__list3 li.salon-work__item:nth-child(8) {
        order: 1; }
  .lp .system .career__info--lead {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media screen and (max-width: 834px) {
      .lp .system .career__info--lead {
        flex-direction: column;
        gap: 2rem 0; } }
  .lp .system .career__info--lead--picture {
    width: 48%;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .system .career__info--lead--picture {
        width: 100%;
        max-width: 400px; } }
    .lp .system .career__info--lead--picture .circle {
      border-radius: 50%;
      border: 1px solid #E1D4E3;
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1 / 1;
      position: absolute;
      text-align: center;
      top: 0;
      right: 0;
      background: #fff;
      width: 12rem;
      line-height: 1.2;
      color: #B793BD; }
      @media screen and (max-width: 1100px) {
        .lp .system .career__info--lead--picture .circle {
          width: 10rem;
          font-size: 1.3rem; } }
      @media screen and (max-width: 834px) {
        .lp .system .career__info--lead--picture .circle {
          width: 9rem;
          font-size: 1.2rem; } }
  .lp .system .career__info--lead--text {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .lp .system .career__info--lead--text {
        width: 100%; } }
  .lp .system .work-style {
    margin-top: 5.1rem;
    background: linear-gradient(138deg, #f8f2f0 0%, #EDF1F8 100%);
    border-radius: 10px;
    padding: 5rem 5%;
    position: relative;
    z-index: 2; }
    @media screen and (max-width: 834px) {
      .lp .system .work-style {
        padding: 5rem 5% 3rem; } }
    .lp .system .work-style__title {
      text-align: center;
      font-size: 2.4rem;
      padding-bottom: 0.2rem;
      border-bottom: 2px solid #333333;
      width: fit-content;
      margin: 0 auto 3rem;
      position: relative; }
      @media screen and (max-width: 834px) {
        .lp .system .work-style__title {
          font-size: 1.9rem;
          margin: 0 auto 2rem; } }
      .lp .system .work-style__title img {
        position: absolute;
        left: -18rem;
        bottom: 10px; }
        @media screen and (max-width: 834px) {
          .lp .system .work-style__title img {
            left: -6rem;
            bottom: auto;
            width: 100px;
            top: -6rem; } }
    .lp .system .work-style__text {
      text-align: center; }
    .lp .system .work-style__list {
      margin-top: 5rem;
      display: flex;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .lp .system .work-style__list {
          margin-top: 4rem;
          flex-direction: column;
          gap: 4rem 0; } }
    .lp .system .work-style__item {
      width: 49%;
      padding: 5rem 0;
      border-radius: 10px;
      position: relative;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media screen and (max-width: 834px) {
        .lp .system .work-style__item {
          width: 100%;
          padding: 4rem 0 3rem; } }
    .lp .system .work-style .work-style-p1 {
      position: absolute;
      top: -2rem;
      left: -20px; }
      @media screen and (max-width: 834px) {
        .lp .system .work-style .work-style-p1 {
          width: 50px; } }
    .lp .system .work-style .work-style-p2 {
      position: absolute;
      top: -2rem;
      right: -20px; }
      @media screen and (max-width: 834px) {
        .lp .system .work-style .work-style-p2 {
          width: 60px; } }
    .lp .system .work-style .work-style__item--title {
      position: absolute;
      top: -1.2rem;
      font-size: 2rem;
      font-weight: 500;
      font-family: "Figtree", sans-serif;
      border-radius: 26px;
      color: #fff;
      padding: 0.1rem 2.5rem; }
      @media screen and (max-width: 834px) {
        .lp .system .work-style .work-style__item--title {
          font-size: 1.6rem; } }
  .lp .system .work-style__item--text {
    width: 70%;
    margin: 0 auto; }
  .lp .system .work-style__item.multiple .work-style__item--title {
    background: #E0B9B9; }
  .lp .system .work-style__item.full .work-style__item--title {
    background: #B7C5DF; }
  .lp .system .about-salary {
    margin-top: 4.2rem;
    position: relative;
    border-radius: 20px;
    border: 1px solid #B5B5B5;
    padding: 3.6rem; }
    @media screen and (max-width: 834px) {
      .lp .system .about-salary {
        padding: 3.6rem 5% 2rem; } }
    .lp .system .about-salary::before {
      content: '';
      position: absolute;
      height: 87%;
      width: 3px;
      background-color: #fff;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      left: -2px; }
    .lp .system .about-salary::after {
      content: '';
      position: absolute;
      height: 87%;
      width: 3px;
      background-color: #fff;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      right: -2px; }
    .lp .system .about-salary__title {
      position: absolute;
      top: -1.4rem;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      font-size: 1.6rem;
      font-weight: 500;
      background: #5F6061;
      border-radius: 26px;
      color: #fff;
      padding: 0.6rem 2.5rem; }
      @media screen and (max-width: 834px) {
        .lp .system .about-salary__title {
          font-size: 1.4rem; } }
    .lp .system .about-salary__main {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media screen and (max-width: 834px) {
        .lp .system .about-salary__main {
          flex-direction: column;
          gap: 2rem 0; } }
    .lp .system .about-salary__text-wrap {
      width: 48%; }
      @media screen and (max-width: 834px) {
        .lp .system .about-salary__text-wrap {
          width: 100%; } }
    .lp .system .about-salary__sub-title {
      width: fit-content;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 0 0 2rem;
      color: #B28BB8;
      font-size: 2rem;
      font-weight: 500; }
      @media screen and (max-width: 834px) {
        .lp .system .about-salary__sub-title {
          font-size: 1.7rem;
          margin: 0 auto 2rem; } }
    .lp .system .about-salary__list {
      width: 49%;
      display: flex;
      flex-direction: column;
      gap: 1.4rem 0; }
      @media screen and (max-width: 834px) {
        .lp .system .about-salary__list {
          width: 100%; } }
    .lp .system .about-salary__item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 5px;
      padding: 1rem 5%; }
      @media screen and (max-width: 1200px) {
        .lp .system .about-salary__item {
          flex-direction: column;
          gap: 1rem 0; } }
      .lp .system .about-salary__item .name {
        border: 1px solid #CCCCCC;
        background-color: #fff;
        text-align: center;
        padding: 0rem 1rem; }
      .lp .system .about-salary__item .amount {
        display: flex;
        align-items: center;
        gap: 0 0.8rem;
        color: #DD7878; }
        .lp .system .about-salary__item .amount span.about-title {
          font-size: 1.4rem;
          font-weight: 500;
          line-height: 1; }
        .lp .system .about-salary__item .amount span.amout-number {
          font-size: 1.8rem;
          font-weight: 500; }
          .lp .system .about-salary__item .amount span.amout-number span.en {
            font-size: clamp(2.5rem, 2vw, 3.2rem); }
      .lp .system .about-salary__item .note {
        font-size: 1.2rem; }
    .lp .system .about-salary__item.eye {
      background: #EAE9F1; }
    .lp .system .about-salary__item.nail {
      background: #F9F2EF; }
  .lp .system__item.education .system__item--sub-title p span::before {
    background-image: url(../img/education-title-underline.webp);
    z-index: -1; }
  .lp .system__item.benefit li.benefit__item.holidays {
    background-color: #E9F5F5; }
  .lp .system__item.benefit li.benefit__item.salary {
    background-color: #EDF1F8; }
  .lp .system__item.benefit li.benefit__item.support {
    background-color: #F9F2EF; }
  .lp .system__item.benefit .system__item--sub-title p span::before {
    background-image: url(../img/benefit-subtitle-underline.webp);
    bottom: -40px;
    background-size: contain;
    width: 80%; }
  .lp .system__item.benefit .system__item--sub-title::before {
    width: 25%; }
    @media screen and (max-width: 834px) {
      .lp .system__item.benefit .system__item--sub-title::before {
        width: 17%; } }
  .lp .system__item.benefit .system__item--sub-title::after {
    width: 25%; }
    @media screen and (max-width: 834px) {
      .lp .system__item.benefit .system__item--sub-title::after {
        width: 17%; } }
  .lp .system__item.career .system__item--sub-title p span::before {
    background-image: url(../img/career-title-underline.webp);
    bottom: -40px;
    width: 40%;
    background-size: contain; }
  .lp .system__item.career .system__item--sub-title::before {
    width: 20%; }
    @media screen and (max-width: 834px) {
      .lp .system__item.career .system__item--sub-title::before {
        width: 14%; } }
    @media screen and (max-width: 640px) {
      .lp .system__item.career .system__item--sub-title::before {
        width: 4%; } }
  .lp .system__item.career .system__item--sub-title::after {
    width: 20%; }
    @media screen and (max-width: 834px) {
      .lp .system__item.career .system__item--sub-title::after {
        width: 14%; } }
    @media screen and (max-width: 640px) {
      .lp .system__item.career .system__item--sub-title::after {
        width: 4%; } }
.lp .catch {
  padding: 20rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  align-items: center;
  justify-content: center;
  text-align: center; }
  @media screen and (max-width: 834px) {
    .lp .catch {
      height: auto; } }
  .lp .catch__title {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 2.4vw, 4.8rem); }
  .lp .catch__text {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 100; }
    @media screen and (max-width: 834px) {
      .lp .catch__text {
        font-size: 1.5rem; } }
.lp .contact {
  background-color: #DEC3C3;
  padding: 25rem 0 13rem;
  position: relative; }
  @media screen and (max-width: 834px) {
    .lp .contact {
      padding: 11rem 0 6rem; } }
  .lp .contact__loop {
    position: absolute;
    top: 7rem; }
    @media screen and (max-width: 834px) {
      .lp .contact__loop {
        top: 3rem; } }
  .lp .contact__contents {
    max-width: 1340px;
    width: 90%;
    margin: 0 auto; }
  .lp .contact__lead {
    max-width: 1340px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 7rem; }
    @media screen and (max-width: 834px) {
      .lp .contact__lead {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 0 3rem; } }
  .lp .contact__title-box {
    text-align: center;
    color: #fff; }
    @media screen and (max-width: 990px) {
      .lp .contact__title-box {
        width: 70%; } }
    @media screen and (max-width: 834px) {
      .lp .contact__title-box {
        width: 100%;
        order: 3; } }
  .lp .contact__title {
    font-size: clamp(2.1rem, 2vw, 3.2rem);
    position: relative;
    margin-bottom: 4.8rem; }
    @media screen and (max-width: 834px) {
      .lp .contact__title {
        margin-bottom: 3.8rem; } }
    .lp .contact__title::before {
      content: '';
      position: absolute;
      bottom: -40px;
      background-repeat: no-repeat;
      background-size: contain;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 50%;
      height: 3.5rem;
      background-image: url(../img/recruit-title-underline.webp); }
  .lp .contact__text {
    font-size: 1.8rem; }
    @media screen and (max-width: 834px) {
      .lp .contact__text {
        font-size: 1.6rem; } }
  @media screen and (max-width: 990px) {
    .lp .contact__lead--p1 {
      width: 15%; } }
  @media screen and (max-width: 834px) {
    .lp .contact__lead--p1 {
      width: 21%;
      order: 1;
      margin: 0;
      max-width: 63px; } }
  .lp .contact__lead--p2 {
    padding-bottom: 9rem; }
    @media screen and (max-width: 990px) {
      .lp .contact__lead--p2 {
        width: 15%; } }
    @media screen and (max-width: 834px) {
      .lp .contact__lead--p2 {
        padding: 0;
        order: 2;
        margin: 0;
        width: 30%;
        max-width: 90px; } }
  .lp .contact__list {
    margin-top: -2rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .contact__list {
        flex-direction: column;
        gap: 1rem 0;
        margin-top: 3.5rem; } }
  .lp .contact li.contact__item {
    background: #D68F8F;
    border-radius: 10px;
    width: 32%; }
    @media screen and (max-width: 834px) {
      .lp .contact li.contact__item {
        border-radius: 5px;
        width: 100%; } }
    .lp .contact li.contact__item a {
      display: flex;
      flex-direction: column;
      padding: 3.6rem 0;
      align-items: center;
      position: relative;
      transition: opacity 0.3s ease; }
      @media screen and (max-width: 834px) {
        .lp .contact li.contact__item a {
          padding: 2.6rem 0; } }
      .lp .contact li.contact__item a img {
        position: absolute;
        left: 8%;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%); }
        @media screen and (max-width: 990px) {
          .lp .contact li.contact__item a img {
            width: 12%;
            height: auto;
            top: 45%; } }
        @media screen and (max-width: 834px) {
          .lp .contact li.contact__item a img {
            width: 8%; } }
      .lp .contact li.contact__item a .contact__item--text {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: clamp(2.1rem, 2.2vw, 2.8rem);
        font-weight: 500;
        color: #fff;
        line-height: 1.2; }
        .lp .contact li.contact__item a .contact__item--text span {
          font-size: 1.4rem; }
      .lp .contact li.contact__item a:hover {
        opacity: 0.6;
        transition: opacity 0.3s ease; }
.lp .about {
  padding: 15rem 0 13rem; }
  @media screen and (max-width: 834px) {
    .lp .about {
      padding: 7rem 0 6rem; } }
  .lp .about__lead, .lp .about__map, .lp .about__eye {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .about__lead, .lp .about__map, .lp .about__eye {
        flex-direction: column;
        gap: 3rem 0; } }
  .lp .about__lead {
    max-width: 1340px;
    width: 90%;
    margin: 0 auto; }
  @media screen and (max-width: 834px) {
    .lp .about__map {
      margin-top: 4rem;
      flex-direction: column-reverse; } }
  .lp .about__lead--text-wrap {
    width: 47%;
    padding-left: 9%; }
    @media screen and (max-width: 834px) {
      .lp .about__lead--text-wrap {
        padding-left: 0%;
        width: 100%; } }
  .lp .about__lead--picture {
    width: 50%;
    border-radius: 10px;
    overflow: hidden; }
    .lp .about__lead--picture img {
      width: 100%;
      object-fit: cover; }
    @media screen and (max-width: 834px) {
      .lp .about__lead--picture {
        width: 100%;
        border-radius: 5px; } }
  .lp .about__lead--sub-title {
    font-size: clamp(2rem, 2vw, 2.8rem);
    padding: 2.5rem 0 3rem; }
  .lp .about__map--title-box {
    width: 50%;
    padding: 4.7rem 5% 3rem;
    border-radius: 16px;
    border: 1px solid #000000;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .about__map--title-box {
        width: 100%;
        padding: 3rem 5%; } }
    .lp .about__map--title-box::before {
      content: '';
      width: 3.3rem;
      height: 0.1rem;
      background-color: #000000;
      position: absolute;
      left: -3.2rem;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: rotate(-12deg); }
      @media screen and (max-width: 834px) {
        .lp .about__map--title-box::before {
          bottom: -1.6rem;
          left: 21%;
          top: auto;
          -webkit-transform: rotate(59deg);
          -ms-transform: rotate(59deg);
          transform: rotate(59deg); } }
  .lp .about__map--picture {
    width: 47%; }
    @media screen and (max-width: 834px) {
      .lp .about__map--picture {
        width: 100%;
        max-width: 400px;
        margin: 0 auto; } }
  .lp .about__map--title {
    text-align: center;
    margin-bottom: 4.7rem;
    font-size: clamp(2rem, 2vw, 2.4rem);
    font-weight: 500;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .about__map--title {
        margin-bottom: 3.7rem; } }
    .lp .about__map--title::before {
      content: '';
      position: absolute;
      bottom: -40px;
      background-repeat: no-repeat;
      background-size: contain;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 50%;
      height: 3.5rem;
      background-image: url(../img/benefit-subtitle-underline.webp); }
  .lp .about__number {
    background-color: #E8E7EE;
    margin-top: 2.7rem;
    padding: 6.4rem 5% 7rem; }
    @media screen and (max-width: 834px) {
      .lp .about__number {
        padding: 4rem 5%; } }
  .lp .about__number--title-box {
    position: relative;
    margin: 0 auto 4.5rem; }
    @media screen and (max-width: 834px) {
      .lp .about__number--title-box {
        margin: 0 auto 3rem; } }
    .lp .about__number--title-box::before {
      content: '';
      width: 100%;
      height: 0.5rem;
      border-bottom: 3px dotted #333;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%); }
  .lp .about__number--title {
    background-color: #E8E7EE;
    padding: 0 4rem;
    width: fit-content;
    margin: 0 auto;
    font-size: clamp(2rem, 2vw, 2.8rem);
    font-weight: 500;
    position: relative; }
    .lp .about__number--title::before {
      content: '';
      position: absolute;
      bottom: 1rem;
      left: 2.2rem;
      background-color: #333333;
      width: 1px;
      height: 3rem;
      transform: rotate(-30deg); }
    .lp .about__number--title::after {
      content: '';
      position: absolute;
      bottom: 1rem;
      right: 2.2rem;
      background-color: #333333;
      width: 1px;
      height: 3rem;
      transform: rotate(30deg); }
  .lp .about__number--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 2.4rem 0; }
    @media screen and (max-width: 834px) {
      .lp .about__number--list {
        gap: 1rem 0; } }
  .lp .about__number--item {
    background: #FDFCFB;
    width: 30%;
    padding: 2rem 2.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px; }
    @media screen and (max-width: 834px) {
      .lp .about__number--item {
        border-radius: 5px;
        width: 48%; } }
  .lp .about .item2,
  .lp .about .item5,
  .lp .about .item8 {
    width: 35%; }
    @media screen and (max-width: 834px) {
      .lp .about .item2,
      .lp .about .item5,
      .lp .about .item8 {
        width: 48%; } }
  .lp .about .number__item--title {
    background: #F2E6C6;
    border-radius: 18px;
    font-size: 1.8rem;
    padding: 0 1.3rem;
    margin-bottom: 2rem; }
    @media screen and (max-width: 834px) {
      .lp .about .number__item--title {
        border-radius: 14px;
        font-size: 1.4rem;
        margin-bottom: 1rem; } }
  .lp .about .number__item--main {
    display: flex;
    align-items: center;
    gap: 0 1rem;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .about .number__item--main {
        gap: 0 0.5rem; } }
    .lp .about .number__item--main span.main {
      font-size: clamp(1.8rem, 3vw, 3.2rem);
      color: #DD7878;
      font-weight: 500; }
      .lp .about .number__item--main span.main span.en {
        font-size: clamp(5rem, 5vw, 8rem);
        line-height: 1; }
        @media screen and (max-width: 834px) {
          .lp .about .number__item--main span.main span.en {
            font-size: 4rem; } }
    .lp .about .number__item--main span.female,
    .lp .about .number__item--main span.male,
    .lp .about .number__item--main span.col {
      line-height: 0.8;
      font-size: clamp(5rem, 5vw, 8rem); }
      @media screen and (max-width: 834px) {
        .lp .about .number__item--main span.female,
        .lp .about .number__item--main span.male,
        .lp .about .number__item--main span.col {
          font-size: 3.5rem; } }
    .lp .about .number__item--main span.female {
      position: relative; }
      .lp .about .number__item--main span.female::before {
        content: '女性';
        color: #DD7878;
        position: absolute;
        font-size: 1.4rem;
        text-align: center;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        top: 0; }
        @media screen and (max-width: 834px) {
          .lp .about .number__item--main span.female::before {
            font-size: 1.1rem; } }
    .lp .about .number__item--main span.male {
      position: relative; }
      .lp .about .number__item--main span.male::before {
        content: '男性';
        color: #DD7878;
        position: absolute;
        font-size: 1.4rem;
        text-align: center;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        top: 0; }
        @media screen and (max-width: 834px) {
          .lp .about .number__item--main span.male::before {
            font-size: 1.1rem; } }
  .lp .about .item2 .number__item--title {
    margin-bottom: 3.7rem; }
    @media screen and (max-width: 834px) {
      .lp .about .item2 .number__item--title {
        margin-bottom: 2.1rem; } }
  .lp .about .item5 .number__item--main span.main span.en,
  .lp .about .item6 .number__item--main span.main span.en,
  .lp .about .item9 .number__item--main span.main span.en {
    font-size: clamp(4rem, 3.5vw, 6rem); }
    @media screen and (max-width: 834px) {
      .lp .about .item5 .number__item--main span.main span.en,
      .lp .about .item6 .number__item--main span.main span.en,
      .lp .about .item9 .number__item--main span.main span.en {
        font-size: 3.6rem; } }
  .lp .about .item4 .pic,
  .lp .about .item5 .pic {
    position: absolute;
    top: -3rem;
    right: -5rem; }
    @media screen and (max-width: 834px) {
      .lp .about .item4 .pic,
      .lp .about .item5 .pic {
        top: -2.3rem;
        right: -3.1rem;
        max-width: 37px; } }
  .lp .about .item6 .pic {
    position: absolute;
    top: -3rem;
    right: -3rem; }
    @media screen and (max-width: 834px) {
      .lp .about .item6 .pic {
        top: -2rem;
        right: -1.6rem;
        max-width: 30px; } }
  @media screen and (max-width: 834px) {
    .lp .about .item3 .pic,
    .lp .about .item7 .pic,
    .lp .about .item8 .pic {
      max-width: 30px; } }
  .lp .about .number__item--note {
    font-size: 1.8rem; }
    @media screen and (max-width: 834px) {
      .lp .about .number__item--note {
        font-size: 1.3rem; } }
  .lp .about__eye {
    margin-top: 15rem; }
    @media screen and (max-width: 834px) {
      .lp .about__eye {
        margin-top: 6rem; } }
  .lp .about__eye--picture {
    width: 50%;
    border-radius: 10px;
    overflow: hidden; }
    @media screen and (max-width: 834px) {
      .lp .about__eye--picture {
        width: 100%;
        border-radius: 5px; } }
  .lp .about__eye--text-wrap {
    width: 47%; }
    @media screen and (max-width: 834px) {
      .lp .about__eye--text-wrap {
        width: 100%; } }
  .lp .about__eye--title {
    color: #B28BB8;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem; }
    @media screen and (max-width: 834px) {
      .lp .about__eye--title {
        font-size: 1.7rem; } }
  .lp .about__eye--address-box {
    background-color: #FFFFFF;
    border-radius: 9px;
    padding: 2rem 5%;
    margin-top: 2rem; }
    @media screen and (max-width: 834px) {
      .lp .about__eye--address-box {
        border-radius: 5px; } }
  .lp .about__eye--shop {
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 1.1rem; }
    @media screen and (max-width: 834px) {
      .lp .about__eye--shop {
        font-size: 1.6rem; } }
  .lp .about__eye--address, .lp .about__eye--open {
    font-size: 1.5rem; }
    @media screen and (max-width: 834px) {
      .lp .about__eye--address, .lp .about__eye--open {
        font-size: 1.4rem; } }
.lp .interview {
  background-color: #EDE7DE; }
  .lp .interview__contents {
    display: flex;
    padding: 12rem 0;
    flex-direction: column;
    gap: 6.7rem 0; }
    @media screen and (max-width: 834px) {
      .lp .interview__contents {
        padding: 5rem 0;
        gap: 3rem 0; } }
  .lp .interview__title-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .interview__title-wrap {
        flex-direction: column;
        gap: 3rem 0; } }
  .lp .interview .item__picture {
    overflow: hidden;
    border-radius: 9px; }
    @media screen and (max-width: 834px) {
      .lp .interview .item__picture {
        border-radius: 5px; } }
    .lp .interview .item__picture img {
      transform: scale(1);
      transition: all 0.45s ease-in-out; }
    .lp .interview .item__picture:hover img {
      transform: scale(1.05);
      transition: all 0.4s ease-in-out; }
  .lp .interview__title {
    wdith: 45%; }
    @media screen and (max-width: 834px) {
      .lp .interview__title {
        width: 100%; } }
  .lp .interview__text {
    width: 45%; }
    @media screen and (max-width: 834px) {
      .lp .interview__text {
        width: 100%; } }
  .lp .interview__modal--list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .lp .interview__modal--list {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 1rem 0; } }
  .lp .interview button {
    background-color: transparent;
    border: transparent; }
  .lp .interview__modal--item {
    width: 23%;
    position: relative; }
    @media screen and (max-width: 834px) {
      .lp .interview__modal--item {
        width: 48%;
        display: flex;
        align-items: center;
        justify-content: center; } }
  .lp .interview .interview__modal--item.active:nth-child(1) {
    transition-delay: 0.2s; }
  .lp .interview .interview__modal--item.active:nth-child(2) {
    transition-delay: 0.4s; }
  .lp .interview .interview__modal--item.active:nth-child(3) {
    transition-delay: 0.6s; }
  .lp .interview .interview__modal--item.active:nth-child(4) {
    transition-delay: 0.8s; }
.lp .interview__window {
  display: none; }
  .lp .interview__window.show {
    display: block; }
  .lp .interview__window .modal__wrap {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    margin: 0 auto;
    height: 100%;
    width: 90%;
    padding-top: 12rem; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__wrap {
        padding-top: 11rem; } }
  .lp .interview__window .modal__content {
    margin: 0 0 12rem;
    overflow: hidden;
    border-radius: 16px;
    max-height: 85vh;
    background-color: #fff;
    overflow-y: auto;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 3rem 5%; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__content {
        margin: 0rem 0 11rem;
        border-radius: 8px;
        max-height: 75vh;
        border: 1px solid #fff; } }
  .lp .interview__window .modal__number {
    color: #C1A5C5;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    font-size: clamp(2.5rem, 3vw, 3.2rem);
    line-height: 1; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__number {
        margin-bottom: 3rem; } }
    .lp .interview__window .modal__number::before {
      content: '';
      position: absolute;
      bottom: -40px;
      background-repeat: no-repeat;
      background-size: contain;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 20%;
      height: 3.5rem;
      background-image: url("../img/window-title-dec.webp"); }
  .lp .interview__window .modal__picture {
    position: relative;
    max-width: 600px;
    margin: 0 auto; }
    .lp .interview__window .modal__picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 9px; }
      @media screen and (max-width: 834px) {
        .lp .interview__window .modal__picture img {
          border-radius: 5px; } }
  .lp .interview__window .modal__message {
    position: absolute;
    display: none;
    margin-bottom: 3rem;
    color: #fff;
    transition: 0.2s ease;
    white-space: nowrap;
    width: 0%;
    overflow: hidden;
    bottom: -10px;
    left: -20px;
    font-family: "Noto Serif JP", serif;
    line-height: 1.2;
    margin-bottom: auto;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__message {
        margin-bottom: 2rem;
        bottom: -26px; } }
    .lp .interview__window .modal__message span {
      background: #C1A5C5;
      padding: 6px 10px;
      display: block;
      width: fit-content;
      line-height: 1; }
    .lp .interview__window .modal__message span:first-child {
      margin-bottom: 4px; }
  .lp .interview__window .modal__title-box {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 2.1rem;
    margin: 1.5rem auto 3.5rem; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__title-box {
        flex-wrap: wrap;
        gap: 1rem;
        margin: 3rem auto 2rem;
        padding-bottom: 1.5rem; } }
    .lp .interview__window .modal__title-box .left {
      display: flex;
      align-items: center;
      gap: 0 2rem; }
      .lp .interview__window .modal__title-box .left .role {
        font-size: 1.4rem; }
      .lp .interview__window .modal__title-box .left .modal__name {
        text-align: center;
        font-size: 2.4rem;
        line-height: 1.2;
        font-weight: 500; }
        @media screen and (max-width: 834px) {
          .lp .interview__window .modal__title-box .left .modal__name {
            font-size: 2.1rem; } }
    .lp .interview__window .modal__title-box .right p {
      font-size: 1.4rem;
      color: #999999; }
  .lp .interview__window .modal__title--text {
    margin-bottom: 5rem; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__title--text {
        margin-bottom: 4rem; } }
  .lp .interview__window .modal__faq {
    border-radius: 10px;
    background-color: #E0B9B9;
    padding: 4.4rem 6.5% 2rem; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__faq {
        border-radius: 5px;
        padding: 3rem 5%; } }
  .lp .interview__window .modal__faq--title {
    font-size: clamp(2.5rem, 3vw, 3.2rem);
    font-family: "Figtree", sans-serif;
    position: relative;
    margin: 0 auto 4rem;
    color: #fff;
    width: fit-content; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__faq--title {
        margin: 0 auto 3rem; } }
    .lp .interview__window .modal__faq--title::before {
      content: '';
      position: absolute;
      bottom: 18px;
      left: -3rem;
      background: url(../img/point-sparkle-left.webp) center;
      background-repeat: no-repeat;
      background-size: cover;
      width: 12px;
      height: 31px; }
      @media screen and (max-width: 834px) {
        .lp .interview__window .modal__faq--title::before {
          bottom: 8px; } }
    .lp .interview__window .modal__faq--title::after {
      background: url(../img/point-sparkle-right.webp) center;
      content: '';
      position: absolute;
      bottom: 18px;
      right: -3rem;
      background-repeat: no-repeat;
      background-size: cover;
      width: 12px;
      height: 31px; }
      @media screen and (max-width: 834px) {
        .lp .interview__window .modal__faq--title::after {
          bottom: 8px; } }
  .lp .interview__window .modal__faq--item {
    margin-bottom: 4rem; }
    @media screen and (max-width: 834px) {
      .lp .interview__window .modal__faq--item {
        margin-bottom: 3rem; } }
    .lp .interview__window .modal__faq--item dt {
      background-color: #FFFFFF;
      border-radius: 25px;
      padding: 0.9rem 2rem;
      position: relative;
      margin-bottom: 2rem;
      color: #AC92B0;
      font-size: 2rem;
      line-height: 1.2;
      font-weight: 500;
      font-family: "Noto Serif JP", serif; }
      @media screen and (max-width: 834px) {
        .lp .interview__window .modal__faq--item dt {
          border-radius: 17px;
          font-size: 1.6rem; } }
      .lp .interview__window .modal__faq--item dt::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        bottom: -1rem;
        left: 3rem;
        transform: rotate(-15deg);
        border-left: 7.5px solid transparent;
        border-right: 7.5px solid transparent;
        border-top: 15px solid #fff; }
      .lp .interview__window .modal__faq--item dt span {
        font-size: 2.4rem; }
        @media screen and (max-width: 834px) {
          .lp .interview__window .modal__faq--item dt span {
            font-size: 2rem; } }
    .lp .interview__window .modal__faq--item dd {
      font-size: 1.5rem;
      color: #fff; }
      @media screen and (max-width: 834px) {
        .lp .interview__window .modal__faq--item dd {
          font-size: 1.4rem; } }
  .lp .interview__window .close {
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 0;
    border: 0px;
    z-index: 2000;
    width: fit-content;
    background: transparent;
    transition: all 0.3s ease; }
    @media screen and (max-width: 990px) {
      .lp .interview__window .close {
        top: 2px; } }
    @media screen and (max-width: 834px) {
      .lp .interview__window .close {
        top: 3rem;
        width: 30px; } }
.lp .interview__window.modal.show .modal__message {
  display: block;
  animation: textFadein2 0.8s 0.3s forwards linear; }
@keyframes textFadein2 {
  from {
    width: 0%; }
  to {
    width: 100%; } }
.lp .message__contents {
  padding: 12rem 0; }
  @media screen and (max-width: 834px) {
    .lp .message__contents {
      padding: 6rem 0; } }
.lp .message__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7rem; }
  @media screen and (max-width: 834px) {
    .lp .message__title-wrap {
      flex-direction: column;
      gap: 2rem 0;
      margin-bottom: 4rem; } }
.lp .message__sub-title {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  font-weight: 500;
  width: 50%; }
  @media screen and (max-width: 834px) {
    .lp .message__sub-title {
      width: 100%; } }
.lp .message__title {
  width: 50%; }
  @media screen and (max-width: 834px) {
    .lp .message__title {
      width: 100%;
      max-width: 400px;
      margin: 0 0 0 auto; } }
.lp .message__text-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media screen and (max-width: 834px) {
    .lp .message__text-wrap {
      flex-direction: column;
      gap: 2rem 0; } }
.lp .message__text-box {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem 0; }
  @media screen and (max-width: 834px) {
    .lp .message__text-box {
      width: 100%; } }
.lp .message__ceo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 3rem; }
  .lp .message__ceo .message__cep--name .en {
    font-size: 1.6rem;
    display: block; }
    @media screen and (max-width: 834px) {
      .lp .message__ceo .message__cep--name .en {
        font-size: 1.4rem; } }
  .lp .message__ceo .message__cep--name .ja {
    font-size: 1.8rem; }
    @media screen and (max-width: 834px) {
      .lp .message__ceo .message__cep--name .ja {
        font-size: 1.6rem; } }
    .lp .message__ceo .message__cep--name .ja span {
      font-size: 2rem; }
      @media screen and (max-width: 990px) {
        .lp .message__ceo .message__cep--name .ja span {
          display: block; } }
      @media screen and (max-width: 834px) {
        .lp .message__ceo .message__cep--name .ja span {
          font-size: 1.8rem; } }
@media screen and (max-width: 834px) {
  .lp .message__image {
    aspect-ratio: 1 / 0.8; }
    .lp .message__image img {
      aspect-ratio: 1 / 0.8;
      object-fit: cover; } }
.lp .faq {
  background-color: #EDE7DE;
  padding: 10rem 0;
  /* 下部ぼかし */
  /* 開いた状態 */ }
  @media screen and (max-width: 834px) {
    .lp .faq {
      padding: 6rem 0; } }
  .lp .faq__title {
    position: relative;
    justify-content: center;
    font-size: clamp(2rem, 2vw, 2.8rem);
    margin-bottom: 5.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem; }
    @media screen and (max-width: 834px) {
      .lp .faq__title {
        margin-bottom: 3rem; } }
    .lp .faq__title span {
      background-color: #DEC3C3;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      display: inline-block; }
      @media screen and (max-width: 834px) {
        .lp .faq__title span {
          width: 1.3rem;
          height: 1.3rem; } }
  .lp .faq__container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-height: 700px;
    /* 初期表示 */
    transition: max-height 0.6s ease; }
    @media screen and (max-width: 834px) {
      .lp .faq__container {
        gap: 2rem;
        max-height: 400px; } }
  .lp .faq__item {
    border-radius: 5px; }
    .lp .faq__item.open .acc-btn::before {
      -ms-transform: rotate(270deg);
      -webkit-transform: rotate(270deg);
      transform: rotate(270deg); }
    .lp .faq__item.open .faq__a {
      max-height: fit-content;
      opacity: 1;
      border-top: 1px solid #DDDDDD; }
  .lp .faq .acc-btn {
    position: absolute;
    width: 2rem;
    aspect-ratio: 1 / 1;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out; }
    .lp .faq .acc-btn::before, .lp .faq .acc-btn:after {
      position: absolute;
      content: "";
      width: 0.1rem;
      height: 2.4rem;
      top: 0;
      left: calc(50% - 2px);
      background-color: #CCCCCC;
      transition: all .3s ease-in-out; }
      @media screen and (max-width: 834px) {
        .lp .faq .acc-btn::before, .lp .faq .acc-btn:after {
          height: 1.8rem; } }
    .lp .faq .acc-btn::after {
      -ms-transform: rotate(90deg);
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg); }
  .lp .faq .faq__q {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 1.5rem 3.6%;
    font-weight: 500;
    font-size: 1.8rem;
    display: flex;
    gap: 0 0.5rem; }
    @media screen and (max-width: 834px) {
      .lp .faq .faq__q {
        font-size: 1.5rem;
        padding: 1.5rem 5rem 1.5rem 5%; } }
    .lp .faq .faq__q span {
      font-size: 2.4rem;
      color: #B28BB8; }
  .lp .faq .faq__a {
    max-height: 0;
    opacity: 0;
    background-color: #F9F8F5;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #DDDDDD; }
    .lp .faq .faq__a span {
      padding: 3rem 3.6%;
      display: block; }
      @media screen and (max-width: 834px) {
        .lp .faq .faq__a span {
          padding: 3rem 5%; } }
  .lp .faq__fade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(237, 231, 222, 0) 0%, rgba(237, 231, 222, 0.85) 60%, #EDE7DE 100%);
    backdrop-filter: blur(1px); }
  .lp .faq .faq__more {
    display: block;
    margin: 5.7rem auto 0;
    background: #D69090;
    border: 1px solid #D69090;
    border-radius: 30px;
    width: 20rem;
    height: 6rem;
    line-height: 1;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: "Figtree", sans-serif;
    transition: opacity 0.3s ease; }
    .lp .faq .faq__more:hover {
      opacity: 0.8;
      transition: opacity 0.3s ease;
      cursor: pointer; }
  .lp .faq__container.is-open {
    max-height: 100%; }
  .lp .faq__container.is-open .faq__fade {
    opacity: 0;
    transition: opacity 0.3s ease; }
.lp .requirements {
  padding: 10rem 0; }
  @media screen and (max-width: 834px) {
    .lp .requirements {
      padding: 6rem 0; } }
  .lp .requirements__title {
    position: relative;
    font-size: clamp(2rem, 2vw, 2.8rem);
    margin-bottom: 5.8rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; }
    @media screen and (max-width: 834px) {
      .lp .requirements__title {
        margin-bottom: 3rem; } }
    .lp .requirements__title span {
      background-color: #DEC3C3;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      display: inline-block; }
      @media screen and (max-width: 834px) {
        .lp .requirements__title span {
          width: 1.3rem;
          height: 1.3rem; } }
  .lp .requirements__list {
    border-top: 1px solid #CCCCCC; }
  .lp .requirements__row {
    padding: 2.6rem 2rem;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #CCCCCC; }
    @media screen and (max-width: 834px) {
      .lp .requirements__row {
        padding: 2rem 1.5rem; } }
    .lp .requirements__row dt {
      width: 15%;
      font-weight: 500; }
      @media screen and (max-width: 834px) {
        .lp .requirements__row dt {
          width: 20%; } }
    .lp .requirements__row dd {
      width: 85%; }
      @media screen and (max-width: 834px) {
        .lp .requirements__row dd {
          width: 80%;
          padding-left: 5%; } }
.lp .footer {
  padding: 25rem 0 6rem; }
  @media screen and (max-width: 834px) {
    .lp .footer {
      padding: 11rem 0 7rem; } }
  .lp .footer .copyright {
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    padding: 7rem 0 0; }
    @media screen and (max-width: 834px) {
      .lp .footer .copyright {
        padding: 4rem 0 0;
        font-size: 1.2rem; } }
