@charset "UTF-8";
/* 使用例
@use "global" as g;
@use "sass:map";

.hoge {
z-index: map.get(g.$layer, "header");
}

相対的な順番は、共通定義したドロワーの値から
z-index: map.get($layer, "drawer") + 1;
あるいは
z-index: map.get($layer, "drawer") - 1;
などして制御。
*/
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

img {
  width: 100%;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-inner {
  width: 1080px;
  max-width: 84vw;
  margin: auto;
}

.c-btnContact {
  background: #25262E;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 80px;
  box-shadow: 2px 2px 0 rgba(40, 40, 40, 0.4);
  transition: opacity 0.3s;
}
.c-btnContact:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-btnContact:hover {
    opacity: 1;
  }
}
.c-btnContact::before {
  content: "";
  background: url(../img/ico_mail_01.svg) no-repeat center center/contain;
  width: 22px;
  height: 16px;
  display: inline-block;
}

.c-sectionHead {
  text-align: center;
}
.c-sectionHead.--cta .c-sectionHead__subTtl {
  color: #04c7a2;
}
.c-sectionHead.--recruit .c-sectionHead__subTtl {
  color: #f45672;
}
.c-sectionHead__subTtl {
  color: #F86B05;
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: 0.06em;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .c-sectionHead__subTtl {
    font-size: 0.875rem;
  }
}
.c-sectionHead__ttl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.08em;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-sectionHead__ttl {
    font-size: 1.375rem;
  }
}

.c-recruitBanner {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .c-recruitBanner {
    padding: 60px 0;
  }
}
.c-recruitBanner__link {
  max-width: 896px;
  display: block;
  margin: auto;
  transition: opacity 0.3s;
}
.c-recruitBanner__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-recruitBanner__link:hover {
    opacity: 1;
  }
}
.c-pageHead {
  color: #fff;
}
.c-pageHead.--recruit .c-pageHead__subTtl {
  color: #f45672;
}
.c-pageHead.--recruit .c-pageHead__ttl {
  color: #333333;
}
.c-pageHead.--dark {
  color: #333333;
}
.c-pageHead__subTtl {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 6%;
  font-family: "Ubuntu", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-pageHead__subTtl {
    font-size: 0.875rem;
  }
}
.c-pageHead__ttl {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 8%;
}
@media screen and (max-width: 767px) {
  .c-pageHead__ttl {
    font-size: 2.3125rem;
  }
}

.c-btnArrow {
  background: #f45672;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  width: 260px;
  height: 54px;
  box-shadow: 2px 2px 0 rgba(40, 40, 40, 0.4);
  transition: opacity 0.3s;
  position: relative;
}
.c-btnArrow:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-btnArrow:hover {
    opacity: 1;
  }
}
.c-btnArrow::after {
  content: "";
  background: url(../img/ico_arrowLight_01.svg) no-repeat center center/contain;
  width: 10px;
  height: 16px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.c-btnPrimary {
  background: #f45672;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 120%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  box-shadow: 2px 2px 0 rgba(40, 40, 40, 0.4);
  transition: opacity 0.3s;
  position: relative;
}
.c-btnPrimary:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-btnPrimary:hover {
    opacity: 1;
  }
}

.c-btnScroll {
  background: #25262e;
  color: #fff;
  font-weight: 700;
  border-radius: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 80px;
  box-shadow: 2px 2px 0 rgba(40, 40, 40, 0.4);
  transition: opacity 0.3s;
  width: 296px;
  height: 54px;
}
.c-btnScroll::before {
  content: "";
  background: url(../img/ico_yen_01.svg) no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.c-btnScroll:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-btnScroll:hover {
    opacity: 1;
  }
}

.p-drawerContent {
  background: #FFF5C3;
  width: 375px;
  height: 100vh;
  right: 0;
  top: 0;
  position: fixed;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  padding: 0 15px;
  overflow: auto;
  transition: transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-drawerContent {
    width: 100%;
  }
}
.p-drawerContent.isActive {
  transition: transform 0.5s ease 0s;
  transform: translateX(0);
}
.p-drawerContent__inner {
  background: #fff;
  padding-bottom: 40px;
}
.p-drawerContent__logo {
  width: 175px;
  padding-left: 16px;
  padding-top: 20px;
}
.p-drawerContent__btnWrap {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.p-drawerContent__btn {
  background: #25262E;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  gap: 8px;
}
.p-drawerContent__btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-drawerContent__btn:hover {
    opacity: 1;
  }
}
.p-drawerContent__btn::before {
  content: "";
  background: url(../img/ico_mail_01.svg) no-repeat center center/contain;
  width: 28px;
  height: 22px;
  display: inline-block;
}
.p-drawerContent__items {
  padding: 0 20px;
  margin-top: 40px;
}
.p-drawerContent__item {
  border-bottom: 1px solid #CED8E9;
  padding: 18px 0;
}
.p-drawerContent__link {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  position: relative;
}
.p-drawerContent__link::after {
  content: "";
  background: url(../img/ico_downArrow_01.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
}
.p-drawerContent__copy {
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.1em;
  padding-top: 80px;
}

.p-drawerBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.p-drawerBackground.isActive {
  display: block;
}

.p-drawerIcon {
  position: fixed;
  width: 66px;
  height: 60px;
  top: 0;
  right: 0;
  z-index: 300;
  display: none;
  background: #FEFCF1;
  border-bottom-left-radius: 3px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1214px) {
  .p-drawerIcon {
    display: flex;
  }
}
.p-drawerIcon.isActive .p-drawerIcon__bar1 {
  transform: translateY(-50%) rotate(-35deg);
  top: 50%;
}
.p-drawerIcon.isActive .p-drawerIcon__bar2 {
  display: none;
}
.p-drawerIcon.isActive .p-drawerIcon__bar3 {
  transform: translateY(-50%) rotate(35deg);
  top: 50%;
}
.p-drawerIcon__bars {
  width: 34px;
  height: 21px;
  display: block;
  position: relative;
}
.p-drawerIcon__bar1, .p-drawerIcon__bar2, .p-drawerIcon__bar3 {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #25262E;
  left: 0;
  transition: 0.3s;
}
.p-drawerIcon__bar1 {
  top: 0;
}
.p-drawerIcon__bar2 {
  top: 50%;
  transform: translateY(-50%);
}
.p-drawerIcon__bar3 {
  bottom: 0;
}

.p-header {
  height: 112px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: background 0.3s, box-shadow 0.3s;
  background: #FEFCF1;
}
@media screen and (max-width: 1214px) {
  .p-header {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}
.p-header__inner {
  width: 1300px;
  max-width: 89.3333333333vw;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1116px) {
  .p-header__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 66px 0 20px;
  }
}
.p-header__logo {
  width: 327px;
}
@media screen and (max-width: 1116px) {
  .p-header__logo {
    width: 175px;
  }
}
.p-header__nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
.p-header__navList {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 1214px) {
  .p-header__navList {
    display: none;
  }
}
.p-header__navLink {
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
.p-header__navLink:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-header__navLink:hover {
    opacity: 1;
  }
}
.p-header__navBtn {
  width: 196px;
  height: 52px;
}
@media screen and (max-width: 1214px) {
  .p-header__navBtn {
    flex-direction: column;
    width: 76px;
    height: 60px;
    border-radius: 0;
    font-size: 0.625rem;
    box-shadow: none;
  }
}

.p-mv {
  background: url(../img/bg_mv_01.jpg) no-repeat center center/cover;
  height: 612px;
  overflow: hidden;
  margin-top: 112px;
}
@media screen and (max-width: 1214px) {
  .p-mv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: 418px;
    background-image: url(../img/bg_mv_01_sp.jpg);
  }
}
.p-mv__inner {
  width: 1180px;
  max-width: 84vw;
  margin: auto;
}
.p-mv__body {
  margin-top: 142px;
}
@media screen and (max-width: 767px) {
  .p-mv__body {
    margin-top: 94px;
  }
}
.p-mv__label {
  background: #F7D525;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 0.5em 1em;
  box-shadow: 2px 2px 0 rgba(40, 40, 40, 0.4);
}
@media screen and (max-width: 767px) {
  .p-mv__label {
    font-size: 0.875rem;
  }
}
.p-mv__ttl {
  width: 630px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-mv__ttl {
    margin-top: 10px;
    width: 58.6666666667vw;
  }
}
.p-mv__text {
  font-size: 0.875rem;
  line-height: 180%;
  letter-spacing: 0.04em;
  margin-top: 32px;
}
.p-mv__btnWrap {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-mv__btnWrap {
    display: none;
  }
}
.p-lead {
  padding: 40px 0 40px;
}
.p-lead__list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-lead__list {
    gap: 6px;
  }
}
.p-lead__text {
  font-size: 0.9375rem;
  line-height: 180%;
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 700;
  margin-top: 40px;
}

.p-service {
  background: #F7D525;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding: 60px 0;
  }
}
.p-service__inner {
  background: #fff;
  border-radius: 24px;
  padding: 72px 10px;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding: 30px 10px;
  }
}
.p-service__leadWrap {
  display: flex;
  justify-content: center;
}
.p-service__lead {
  background: #25262E;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.5em;
  line-height: 1.2;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-service__lead {
    font-size: 1.25rem;
    text-align: center;
    margin-top: 30px;
  }
}
.p-service__text {
  line-height: 180%;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__text.--spTextAlignLeft {
    text-align: left;
  }
}
.p-service__textUnderLine {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-color: #fce25b;
  text-decoration-thickness: 10px;
  text-underline-offset: -4px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-service__textUnderLine {
    font-size: 1rem;
  }
}

.p-merit {
  background: #E7E7E7;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-merit {
    padding: 60px 0;
  }
}
.p-merit__lead {
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 50px;
}
.p-merit__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-merit__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 90px;
  }
}
.p-merit__item {
  background: #fff;
  border-radius: 24px;
  position: relative;
  padding: 55px 0 30px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .p-merit__item {
    display: block;
  }
}
.p-merit__icon {
  width: 120px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-merit__ttl {
  font-size: 1.625rem;
  line-height: 135%;
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1079px) {
  .p-merit__ttl {
    font-size: 1.375rem;
  }
}
.p-merit__text {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-merit__text {
    margin-top: 30px;
  }
}

.p-cta {
  background: #F7D525;
  color: #333333;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 60px 0;
  }
}
.p-cta__lead {
  text-align: center;
  line-height: 180%;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    font-size: 0.9375rem;
  }
}
.p-cta__labelWrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.p-cta__label {
  background: #fff;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0.5em 2em;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .p-cta__label {
    width: 100%;
    padding: 0.5em 0;
  }
}
.p-cta__label::before {
  content: "";
  background: url(../img/ico_document_01.svg) no-repeat center center/contain;
  width: 20px;
  height: 24px;
  display: inline-block;
}
.p-cta__info {
  background: #fff;
  color: #333333;
  margin-top: 42px;
  border-radius: 24px;
  padding: 24px 0 34px;
}
@media screen and (max-width: 767px) {
  .p-cta__info {
    padding: 30px 0;
  }
}
.p-cta__infoTtl {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__infoTtl {
    font-size: 1rem;
  }
}
.p-cta__infoInner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 145px;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 1079px) {
  .p-cta__infoInner {
    flex-direction: column;
    gap: 60px;
  }
}
.p-cta__infoInner::before {
  content: "";
  height: 68px;
  width: 1px;
  background: #ced8e9;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (max-width: 1079px) {
  .p-cta__infoInner::before {
    width: 200px;
    height: 1px;
    left: 50%;
    top: calc(50% + 6px);
  }
}
.p-cta__infoTel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-cta__infoTel {
    align-items: center;
  }
}
.p-cta__infoTelNum {
  font-family: "Ubuntu", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .p-cta__infoTelNum {
    font-size: 2.25rem;
  }
}
.p-cta__infoTelNum::before {
  content: "";
  background: url(../img/ico_tel_01.svg) no-repeat center center/contain;
  width: 34px;
  height: 34px;
}
.p-cta__infoTelTime {
  font-size: 0.8125rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-cta__infoTelTime {
    margin-top: 14px;
  }
}
.p-cta__infoBtn {
  font-size: 1.125rem;
  width: 340px;
  height: 62px;
}
@media screen and (max-width: 767px) {
  .p-cta__infoBtn {
    width: 275px;
  }
}

.p-features {
  background: #E7E7E7;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-features {
    padding: 60px 0;
  }
}
.p-features__lead {
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 50px;
}
.p-features__list {
  counter-reset: section;
  margin-top: 48px;
}
.p-features__item + .p-features__item {
  margin-top: 30px;
}

.p-featuresCard {
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 60px 80px 50px;
}
@media screen and (max-width: 767px) {
  .p-featuresCard {
    padding: 30px;
    display: block;
  }
}
.p-featuresCard.--rev {
  flex-direction: row-reverse;
}
.p-featuresCard__body {
  width: 47.3913043478%;
}
@media screen and (max-width: 767px) {
  .p-featuresCard__body {
    width: 100%;
  }
}
.p-featuresCard__subTtl {
  color: #F86B05;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0.18em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-featuresCard__subTtl {
    display: flex;
  }
}
.p-featuresCard__subTtl::after {
  counter-increment: section;
  content: "0" counter(section);
  font-size: 3.625rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.04em;
}
.p-featuresCard__ttl {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0.02em;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-featuresCard__ttl {
    font-size: 1.0625rem;
  }
}
.p-featuresCard__imgWrap {
  width: 47.3913043478%;
}
@media screen and (max-width: 767px) {
  .p-featuresCard__imgWrap {
    width: 100%;
    margin-top: 24px;
  }
}
.p-featuresCard__text {
  line-height: 180%;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 30px;
}

.p-area {
  background: #FFF5C3;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-area {
    padding: 100px 0 60px;
  }
}
.p-area__head {
  z-index: 2;
  position: relative;
}
.p-area__media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-area__media {
    flex-direction: column;
    margin-top: -150px;
  }
}
.p-area__imgWrap {
  width: 47.4305555556vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-area__imgWrap {
    width: 100vw;
  }
}
.p-area__body {
  width: 45.1851851852%;
  border: 6px solid #fff;
  border-radius: 24px;
  background: linear-gradient(180deg, rgb(252, 243, 231) 0%, rgb(255, 255, 255) 35%, rgb(255, 255, 255) 100%);
  padding: 24px 30px 40px;
}
@media screen and (max-width: 767px) {
  .p-area__body {
    width: 100%;
    padding: 12px;
  }
}
.p-area__bodyImgWrap {
  text-align: center;
}
.p-area__bodyImg {
  width: 232px;
}
@media screen and (max-width: 767px) {
  .p-area__bodyImg {
    width: 150px;
  }
}
.p-area__bodyTtl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  color: #F7D525;
}
@media screen and (max-width: 767px) {
  .p-area__bodyTtl {
    font-size: 1rem;
  }
}
.p-area__bodyText {
  line-height: 180%;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-area__bodyText {
    font-size: 0.875rem;
  }
}

.p-price {
  background: #E7E7E7;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-price {
    padding: 60px 0;
  }
}
.p-price__lead {
  margin-top: 48px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-price__list {
  margin-top: 48px;
}
.p-price__item + .p-price__item {
  margin-top: 50px;
}
.p-price__itemCaution {
  font-size: 0.8125rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  text-align: right;
}
.p-price__tableContainer {
  overflow-x: auto;
}
.p-price__tableWrap {
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (max-width: 1079px) {
  .p-price__tableWrap {
    overflow-x: auto;
  }
}
.p-price__cautionList {
  margin-top: 20px;
}
.p-price__cautionItem {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-price__cautionItem {
    font-size: 0.75rem;
  }
}
.p-price__cautionItem::before {
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  width: 8px;
  height: 8px;
  background: #F86B05;
  border-radius: 50%;
}
.p-price__cautionItem.--bold {
  font-weight: 700;
}

.p-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .p-table {
    width: 720px;
  }
}
.p-table th,
.p-table td {
  border: 1px solid #fff;
}
.p-table th.--borderTopNone,
.p-table td.--borderTopNone {
  border-top: none;
}
.p-table th.--borderRightNone,
.p-table td.--borderRightNone {
  border-right: none;
}
.p-table th.--borderBottomNone,
.p-table td.--borderBottomNone {
  border-bottom: none;
}
.p-table th.--borderLeftNone,
.p-table td.--borderLeftNone {
  border-left: none;
}
.p-table__ttl {
  background: #25262e;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 180%;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-table__ttl {
    text-align: left;
    padding-left: 24px;
  }
}
.p-table__colTtl {
  background: #f7d525;
  color: #333333;
  font-size: 1.25rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 14px 0;
}
.p-table__rowTtl {
  background: #f7d525;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 180%;
  padding: 24px;
}
@media screen and (max-width: 1079px) {
  .p-table__rowTtl {
    font-size: 1rem;
  }
}
.p-table__data {
  background: #fff;
  font-size: 1.25rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  padding: 14px 48px;
  text-align: right;
}
@media screen and (max-width: 1079px) {
  .p-table__data {
    font-size: 1rem;
  }
}
.p-table__data.--borderColorGray {
  border-color: #ced8e9;
}
.p-table__data.--textAlignLeft {
  text-align: left;
  padding: 24px 14px;
}
.p-table__data.--textAlignCenter {
  text-align: center;
}
.p-table__data.--flex {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-table__data.--strong {
  font-weight: 700;
  padding-top: 20px;
}
.p-table__dataPrice {
  color: #f86b05;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 100%;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1079px) {
  .p-table__dataPrice {
    font-size: 1.75rem;
  }
}
.p-table__dataSmall {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-table__dataSmall {
    font-size: 0.75rem;
  }
}
.p-table__dataBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-faq {
  background: #FFF5C3;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 60px 0;
  }
}
.p-accordion__container {
  background: #fff;
  border-radius: 12px;
  padding: 50px 90px;
  max-width: 896px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .p-accordion__container {
    margin-top: 40px;
    padding: 24px 10px;
  }
}
.p-accordion__item + .p-accordion__item {
  margin-top: 20px;
}
.p-accordion__ttl {
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0 1.8em 1.5em 1.8em;
  cursor: pointer;
}
.p-accordion__ttl::before {
  content: "Q";
  font-family: "Ubuntu", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #333333;
  position: absolute;
  top: -0.1em;
  left: 0;
}
.p-accordion__ttl::after {
  content: "";
  background: url(../img/ico_downArrow_01.svg) no-repeat center center/contain;
  width: 20px;
  height: 22px;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.3s;
}
.p-accordion__ttl.open::after {
  transform: rotate(180deg);
}
.p-accordion__content {
  border-top: 1px solid #ced8e9;
  padding: 1.5em 0;
  display: none;
}
.p-accordion__contentText {
  line-height: 180%;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0 1.8em;
}
.p-accordion__contentText::before {
  content: "A";
  font-family: "Ubuntu", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #F86B05;
  position: absolute;
  top: -0.1em;
  left: 0;
}

.p-company {
  background: #E7E7E7;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding: 60px 0;
  }
}
.p-company__list {
  background: #fff;
  border-radius: 12px;
  max-width: 896px;
  margin: 50px auto 0;
  padding: 40px 90px;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    padding: 20px;
  }
}
.p-company__item {
  line-height: 180%;
  letter-spacing: 0.08em;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #ced8e9;
}
.p-company__item:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-company__item {
    flex-direction: column;
    padding: 16px 0;
  }
}
.p-company__dt {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .p-company__dt {
    width: 100%;
  }
}
.p-company__dd {
  width: calc(100% - 150px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__dd {
    width: 100%;
    letter-spacing: 0.04em;
  }
}
.p-company__ddList {
  counter-reset: section;
}
.p-company__ddItem {
  position: relative;
  padding-left: 1em;
}
.p-company__ddItem::before {
  counter-increment: section;
  content: counter(section) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.p-footer {
  background: #25262E;
  padding: 80px 0 60px;
  color: #fff;
}
.p-footer__logo {
  width: 344px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 100%;
  }
}
.p-footer__listContainer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.p-footer__item {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer__item {
    flex-direction: column;
  }
}
.p-footer__item + .p-footer__item {
  margin-top: 24px;
}
.p-footer__dt {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
  border-radius: 5px;
}
.p-footer__dd {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
}
.p-footer__copy {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 56px;
}

.p-fvPrimary {
  background: url(../img/bg_fvRecruit_01.jpg) no-repeat center center/cover;
  aspect-ratio: 1440/450;
}
@media screen and (max-width: 767px) {
  .p-fvPrimary {
    aspect-ratio: 375/144;
    margin-top: 60px;
    background-image: url(../img/bg_fvRecruit_01_sp.jpg);
  }
}
.p-fvPrimary__inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.p-recruitLead {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-recruitLead {
    padding: 60px 0;
  }
}
.p-recruitLead__ttl {
  width: 562px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-recruitLead__ttl {
    width: 100%;
  }
}
.p-recruitLead__lv2Ttl {
  background: #f45672;
  color: #fff;
  font-weight: 700;
  letter-spacing: 8%;
  width: 270px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 56px auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruitLead__lv2Ttl {
    width: 216px;
    height: 32px;
    font-size: 0.9375rem;
  }
}
.p-recruitLead__lv2Ttl::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 7.5px 0 7.5px;
  border-color: #f45672 transparent transparent transparent;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-recruitLead__lv2Ttl::after {
    border-width: 10.4px 6px 0 6px;
  }
}
.p-recruitLead__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 754px;
  margin: 40px auto 0;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-recruitLead__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: auto;
    width: 63.4920634921%;
    margin: 20px auto 0;
  }
}
.p-recruitLead__text {
  line-height: 180%;
  letter-spacing: 8%;
  text-align: center;
  font-weight: 500;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruitLead__text {
    text-align: left;
    margin-top: 48px;
  }
}

.p-recruiting {
  background: #eff1f4;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-recruiting {
    padding: 60px 0;
  }
}
.p-recruiting__list {
  background: #fff;
  border-radius: 12px;
  max-width: 896px;
  margin: 60px auto 0;
  padding: 40px 92px;
}
@media screen and (max-width: 767px) {
  .p-recruiting__list {
    padding: 10px 24px;
    margin: 44px auto 0;
  }
}
.p-recruiting__item {
  border-bottom: 1px solid #ced8e9;
  padding: 24px 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-recruiting__item {
    flex-direction: column;
    padding: 16px 0;
  }
}
.p-recruiting__item:last-child {
  border-bottom: none;
}
.p-recruiting__dt {
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 8%;
  width: 152px;
}
@media screen and (max-width: 767px) {
  .p-recruiting__dt {
    width: 100%;
  }
}
.p-recruiting__dd {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 8%;
  width: calc(100% - 152px);
}
@media screen and (max-width: 767px) {
  .p-recruiting__dd {
    font-size: 0.9375rem;
    width: 100%;
  }
}
.p-recruiting__btnWrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruiting__btnWrap {
    margin-top: 50px;
  }
}
.p-flow {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 60px 0;
  }
}
.p-flow__list {
  max-width: 896px;
  margin: 88px auto 0;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    margin-top: 46px;
  }
}
.p-flow__item {
  display: flex;
  align-items: center;
  position: relative;
}
.p-flow__item:not(:last-child)::after {
  content: "";
  background: url(../img/ico_dot_01.svg) no-repeat center center/contain;
  width: 4px;
  height: 60px;
  position: absolute;
  left: 90px;
  top: calc(100% + 34px);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-flow__item:not(:last-child)::after {
    left: 50px;
    top: calc(100% + 30px);
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .p-flow__item + .p-flow__item {
    margin-top: 56px;
  }
}
.p-flow__dt {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .p-flow__dt {
    width: 100px;
  }
}
.p-flow__dd {
  width: calc(100% - 180px);
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-flow__dd {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
}
.p-flow__box {
  border: 2px solid #eb9eaa;
  border-radius: 10px;
  padding: 40px 38px;
}
@media screen and (max-width: 767px) {
  .p-flow__box {
    border: none;
    padding: 0;
  }
}
.p-flow__boxSubTtl {
  font-family: "Ubuntu", sans-serif;
  color: #f45672;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__boxSubTtl {
    font-size: 0.75rem;
  }
}
.p-flow__boxTtl {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 135%;
  letter-spacing: 2%;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-flow__boxTtl {
    font-size: 1rem;
  }
}
.p-flow__boxText {
  font-size: 0.9375rem;
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-flow__boxText {
    font-size: 0.8125rem;
  }
}
.p-flow__btnWrap {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-flow__btnWrap {
    margin-top: 60px;
  }
}
.p-fvSecondary {
  aspect-ratio: 1440/210;
  background: #F7D525;
  margin-top: 112px;
}
.p-fvSecondary.--entry {
  background: #f45672;
}
@media screen and (max-width: 1116px) {
  .p-fvSecondary {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-fvSecondary {
    aspect-ratio: 375/144;
    margin-top: 60px;
  }
}
.p-fvSecondary__inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.p-form {
  background: #fff;
  border-radius: 12px;
  padding: 56px 56px 72px;
}
@media screen and (max-width: 767px) {
  .p-form {
    background: transparent;
    padding: 0;
  }
}
.p-form__list.--mt {
  margin-top: 32px;
}
.p-form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-form__item + .p-form__item {
  margin-top: 32px;
}
.p-form__dt {
  font-weight: 700;
  letter-spacing: 8%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-form__dt.--required::after {
  content: "必須";
  background: #EB2D14;
  color: #fff;
  font-size: 0.8125rem;
  width: 48px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
}
.p-form__input {
  border: 1px solid #ced8e9;
  width: 100%;
  border-radius: 4px;
  line-height: 180%;
  letter-spacing: 8%;
  padding: 10px;
  background: #fff;
  cursor: pointer;
}
.p-form__input::placeholder {
  color: #d3d4d5;
}
.p-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-form__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
.p-form__selectWrap {
  position: relative;
}
.p-form__selectWrap::after {
  content: "";
  background: url(../img/ico_downArrow_01.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
.p-form__textarea {
  resize: none;
  height: 185px;
}
.p-form__text {
  line-height: 180%;
  letter-spacing: 8%;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 64px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__text {
    font-size: 0.875rem;
    margin-top: 50px;
  }
}
.p-form__link {
  color: #F86B05;
  transition: opacity 0.3s;
  position: relative;
}
.p-form__link::after {
  content: "";
  background: url(../img/ico_external_01.svg) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 4px;
  left: calc(100% + 2px);
}
.p-form__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-form__link:hover {
    opacity: 1;
  }
}
.p-form__btnWrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-form__btnWrap {
    margin-top: 60px;
  }
}
.p-form__btn {
  width: 340px;
  height: 62px;
  font-size: 1.125rem;
  background: #25262E;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__btn {
    width: 274px;
  }
}
.p-form .wpcf7-spinner {
  display: none;
}

.p-formSection {
  background: #FFF5C2;
  padding: 70px 0 140px;
}
.p-formSection.--entry {
  background: #fdf1f3;
}
@media screen and (max-width: 767px) {
  .p-formSection {
    padding: 70px 0 120px;
  }
}
.p-formSection__lead {
  line-height: 180%;
  text-align: center;
  letter-spacing: 8%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-formSection__lead {
    text-align: left;
  }
}
.p-formSection__form {
  max-width: 712px;
  margin: 60px auto 0;
}

.p-privacyPolicy {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy {
    padding: 60px 0;
  }
}
.p-privacyPolicy__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.08em;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__ttl {
    margin-top: 40px;
    font-size: 1.25rem;
  }
}
.p-privacyPolicy__text {
  line-height: 180%;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__text {
    font-size: 0.875rem;
  }
}

.p-scrollToPricing {
  background: #F7D525;
  padding: 30px 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-scrollToPricing {
    display: block;
  }
}
.p-scrollToPricing__btnWrap {
  display: flex;
  justify-content: center;
}
.p-scrollToPricing__text {
  margin-top: 20px;
  font-family: "Ropa Sans";
  font-size: 0.75rem;
  text-align: center;
  position: relative;
}
.p-scrollToPricing__text::after {
  content: "";
  background: url(../img/ico_downArrow_02.svg) no-repeat center center/contain;
  width: 12px;
  height: 6px;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1080px) {
  .u-sp-only {
    display: none;
  }
}
@media screen and (max-width: 1079px) {
  .u-sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .u-tab-only {
    display: none;
  }
}
@media screen and (max-width: 1079px) {
  .u-tab-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-tab-only {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .u-pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .u-tab-none {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u-pc-none {
    display: none;
  }
}

.u-tab-flex {
  display: none;
}
@media screen and (max-width: 1079px) {
  .u-tab-flex {
    display: flex;
  }
}

.u-sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-flex {
    display: flex;
  }
}

.u-linkPosition {
  display: block;
  position: relative;
  top: -50px;
}

.u-uppercase {
  text-transform: uppercase;
}

/*# sourceMappingURL=style.css.map */
