:root {
  --black: #333;
  --red: #B92B27;
  --font-family: "Noto Sans JP", sans-serif;
}

body span {
  font-family: var(--font-family);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: inherit;
  font-weight: inherit;
}

a {
  transition: 0.3s ease;

  &:hover {
    opacity: 0.7;
  }
}

/* ========================================
  共通パーツ
======================================== */

.l-inner {
  max-width: 1250px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2.5rem;
}

@media (max-width: 767px) {
  .l-inner {
    padding-inline: 1.5rem;
  }
}

.l-mt40 {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .l-mt40 {
    margin-top: 2rem;
  }
}

.l-mt50 {
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .l-mt50 {
    margin-top: 2rem;
  }
}

.l-mt60 {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .l-mt60 {
    margin-top: 3rem;
  }
}

.l-mt100 {
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .l-mt100 {
    margin-top: 5rem;
  }
}

.c-title {
  color: #333;
  font-family: var(--font-family);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .c-title {
    font-size: 2.8rem;
  }
}

.c-title-2 {
  color: #333;
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .c-title-2 {
    font-size: 2rem;
  }
}

.c-text {
  color: #333;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .c-text {
    font-size: 1.6rem;
  }
}

.c-orange {
  color: #FF4D2B;
  font-weight: 700;
}

.c-br {
  display: inline-block;
}

.c-btn {
  display: inline-block;
  max-width: 42rem;
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid #333;
  text-align: center;
}

.c-btn--s {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .c-btn--s {
    font-size: 1.2rem;
  }
}

.c-btn--m {
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .c-btn--m {
    font-size: 1.8rem;
  }
}

.c-btn--orange {
  background-color: #FF4D2B;
  color: #fff;
  border: none;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/* ========================================
  MV
======================================== */

.p-lp-mv {
  background-image: url("../../lp-assets/images/mv-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100%;
  padding-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-mv {
    margin-top: 0;
    padding-block: 6rem;
  }
}

.p-lp-mv_wrapper {
  max-width: 1250px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2.5rem;
  margin-top: 16rem;
}

@media (max-width: 767px) {
  .p-lp-mv_wrapper {
    padding-inline: 1.5rem;
    text-align: center;
    margin-top: 7rem;
  }
}

.p-lp-mv__label {
  color: #333;
  font-family: var(--font-family);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-mv__label {
    font-size: 3.2rem;
    text-align: center;
  }
}

.p-lp-mv__label--1 {
  background-color: #626262;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.5;
  padding-inline: 0.5rem;
}

.p-lp-mv__label--2 {
  background-color: #FF4D2B;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.5;
  padding-inline: 0.5rem;
}

.p-lp-mv__title {
  color: #333;
  font-family: var(--font-family);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-mv__title {
    font-size: 3.6rem;
  }
}

.p-lp-mv__text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-mv__text {
    font-size: 2rem;
    text-align: left;
  }
}

.p-lp-mv__text {
  font-size: 2rem;
}

@media (max-width: 767px) {
  .p-lp-mv__text {
    font-size: 1.8rem;
  }
}

.p-lp-mv__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}

@media (max-width: 767px) {
  .p-lp-mv__btns {
    flex-direction: column;
    gap: 3rem;
  }
}

/* ========================================
  MV下部実績セクション
======================================== */

.p-lp-results {
  background-color: #626262;
  padding-block: 5rem;
}

@media (max-width: 767px) {
  .p-lp-results {
    padding-block: 3rem;
  }
}

.p-lp-results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem;
  list-style: none;
}

@media (max-width: 767px) {
  .p-lp-results__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    max-width: 40rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-lp-results__item {
  padding: 3rem 2rem;
  background-color: #fff;
  color: #333;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-results__item {
    font-size: 2rem;
    padding: 1rem;
  }
}

/* ========================================
  リード文
======================================== */

.p-lp-lead {
  padding-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-lead {
    padding-block: 5rem;
  }
}

.p-lp-lead__title {
  text-align: center;
}

.p-lp-lead__text {
  text-align: center;
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-lead__text {
    font-size: 1.8rem;
    text-align: left;
  }
}

.p-lp-lead__text span {
  font-weight: 700;
  font-family: var(--font-family);
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-lead__text span {
    font-size: 2rem;
  }
}

/* ========================================
  お悩みセクション
======================================== */

.p-lp-intro {
  background-color: #F5F5F5;
  padding-block: 10rem 15rem;
}

@media (max-width: 767px) {
  .p-lp-intro {
    padding-block: 5rem 8rem;
  }
}

.p-lp-intro__title {
  text-align: center;
}

.p-lp-intro__text {
  color: #333;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-intro__text {
    font-size: 2rem;
    text-align: left;
  }
}

.p-lp-intro__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .p-lp-intro__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    margin-top: 4rem;
  }
}

.p-lp-intro__item {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 1rem;
}


.p-lp-intro__item-title {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-intro__item-title {
    font-size: 1.8rem;
  }
}

.p-lp-intro__points {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .p-lp-intro__points {
    margin-top: 1rem;
  }
}

.p-lp-intro__point {
  padding: 0;
  color: #333;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-intro__point {
    font-size: 1.6rem;
  }
}

/* ========================================
  解決セクション
======================================== */

.p-lp-solution {
  margin-bottom: 10rem;
}

@media (max-width: 767px) {
  .p-lp-solution {
    margin-bottom: 5rem;
  }
}

.p-lp-solution__title {
  text-align: center;
  color: #fff;
  position: relative;
}

@media (max-width: 767px) {
  .p-lp-solution__title {
    font-size: 2.8rem;
  }
}

.p-lp-solution__title::after {
  content: "";
  position: absolute;
  background-image: url("../../lp-assets/images/solution-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 300px;
  z-index: -1;
}

@media (max-width: 767px) {
  .p-lp-solution__title::after {
    height: 200px;
  }
}

.p-lp-solution__text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .p-lp-solution__text {
    font-size: 1.8rem;
    text-align: left;
  }
}

.p-lp-solution__text span {
  font-weight: 700;
  font-family: var(--font-family);
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-solution__text span {
    font-size: 2rem;
  }
}

.p-lp-solution__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  list-style: none;
}

@media (max-width: 767px) {
  .p-lp-solution__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    margin-top: 4rem;
  }
}

.p-lp-solution__item {
  border: 0.5px solid #333;
  padding: 2rem;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-lp-solution__item-title {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-solution__item-title {
    font-size: 1.8rem;
  }
}

.p-lp-solution__item-text {
  color: #333;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .p-lp-solution__item-text {
    font-size: 1.6rem;
  }
}

.p-lp-solution__note {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-solution__note {
    font-size: 1.8rem;
    text-align: left;
  }
}

.p-lp-solution__note span {
  color: #FF4D2B;
  font-family: var(--font-family);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-solution__note span {
    font-size: 2rem;
  }
}

.p-lp-solution__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2rem;
}

@media (max-width: 767px) {
  .p-lp-solution__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
}

.p-lp-solution__card {
  padding: 2rem;
  border-radius: 1.2rem;
  background: #FFF9E4;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .p-lp-solution__card {
    padding: 1rem;
  }
}

.p-lp-solution__card-title {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-solution__card-title {
    font-size: 1.8rem;
  }
}

.p-lp-solution__card-title span {
  color: #FF4D2B;
  display: block;
  text-align: left;
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-solution__card-title span {
    font-size: 2.4rem;
  }
}

.p-lp-solution__card-img {
  margin-top: 1rem;
}

.p-lp-solution__card-img img {
  aspect-ratio: 242/128;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
  CTAセクション
======================================== */

.p-lp-cta {
  background-color: #626262;
  padding-block: 6rem;
}

@media (max-width: 767px) {
  .p-lp-cta {
    padding-block: 4rem;
  }
}

.p-lp-cta__block {
  background-color: #fff;
  border-radius: 4rem;
  padding: 4rem 2rem;
}

@media (max-width: 767px) {
  .p-lp-cta__block {
    padding: 3rem 1rem;
  }
}

.p-lp-cta__text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-cta__text {
    font-size: 2rem;
  }
}

.p-lp-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}

@media (max-width: 767px) {
  .p-lp-cta__btns {
    flex-direction: column;
    gap: 3rem;
  }
}

/* ========================================
  5つの理由セクション
======================================== */

.p-lp-reason {
  margin-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-reason {
    margin-block: 5rem;
  }
}

.p-lp-reason__title {
  text-align: center;
}

.p-lp-reason__title span {
  color: #FF4D2B;
  text-align: center;
  font-family: var(--font-family);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-reason__title span {
    font-size: 3.6rem;
  }
}

@media (max-width: 767px) {
  .p-lp-reason__list {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-lp-reason__item {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 8rem;
  flex-direction: row;
}

@media (max-width: 767px) {
  .p-lp-reason__item {
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
  }
}

.p-lp-reason__item--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .p-lp-reason__item--reverse {
    flex-direction: column;
  }
}

.p-lp-reason__img {
  width: 40%;
}

@media (max-width: 767px) {
  .p-lp-reason__img {
    width: 100%;
  }
}

.p-lp-reason__img img {
  aspect-ratio: 477/378;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-reason__body {
  width: 60%;
  background-color: #F5F5F5;
  padding: 3rem;
}

@media (max-width: 767px) {
  .p-lp-reason__body {
    width: 100%;
    padding: 2rem;
  }
}

.p-lp-reason__head {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 767px) {
  .p-lp-reason__head {
    gap: 1rem;
  }
}

.p-lp-reason__point--1 {
  display: block;
  color: #FF4D2B;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-reason__point--1 {
    font-size: 1.8rem;
  }
}

.p-lp-reason__point--2 {
  display: block;
  color: #FF4D2B;
  font-family: var(--font-family);
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-reason__point--2 {
    font-size: 4rem;
    text-align: center;
  }
}

.p-lp-reason__item-text {
  margin-top: 1rem;
}

/* ========================================
  他社比較セクション
======================================== */
.p-lp-compare {
  margin-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-compare {
    margin-block: 5rem;
  }
}

.p-lp-compare__title {
  text-align: center;
}

.p-lp-compare__wrap {
  width: 100%;
}

@media (max-width: 1024px) {
  .p-lp-compare__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1024px) {
  .p-lp-compare__wrap::before {
    content: "← 横にスクロールできます →";
    display: block;
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    margin-top: 1rem;
  }
}


@media (max-width: 1024px) {
  .p-lp-compare__table {
    width: 100rem;
  }
}

.p-lp-compare__table {}

.p-lp-compare__thead {}

.p-lp-compare__tr {
  /* border: 1px solid #D9D9D9; */
}

.p-lp-compare__tr--head {}

.p-lp-compare__th {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  background-color: #C4C4C4;
  /* border: 1px solid #D9D9D9; */
  padding: 2rem;
  color: #fff;
}

@media (max-width: 767px) {
  .p-lp-compare__th {
    font-size: 1.8rem;
    padding: 1rem;
  }
}

.p-lp-compare__th--blank {
  background-color: #FFF;
}

.p-lp-compare__th--main {
  background-color: #FF4D2B;
  padding-block: 2.5rem;
  border-radius: 2rem 2rem 0 0;
  border: none;
}

@media (max-width: 767px) {
  .p-lp-compare__th--main {
    padding-block: 2rem;
  }
}

.p-lp-compare__tbody {}

.p-lp-compare__label {
  width: 20%;
  background-color: #F5F5F5;
  color: #333;
}

.p-lp-compare__td {
  /* border: 1px solid #D9D9D9; */
  width: 20%;
  padding: 2rem;
}

.p-lp-compare__td--main {
  background-color: #FFF9E4;
  border-left: 4px solid #FF4D2B;
  border-right: 4px solid #FF4D2B;
}

.p-lp-compare tr:last-child .p-lp-compare__td--main {
  border-bottom: 4px solid #FF4D2B;
}


.p-lp-compare__icon {}

.p-lp-compare__text {
  margin-top: 2rem;
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.is-2circle {
  display: block;
  margin-inline: auto;
  background-image: url("../../lp-assets/images/2-circle.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.6rem;
  height: 5.6rem;
}

.is-circle {
  display: block;
  margin-inline: auto;
  background-image: url("../../lp-assets/images/circle.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.6rem;
  height: 5.6rem;
}

.is-triangle {
  display: block;
  margin-inline: auto;
  background-image: url("../../lp-assets/images/triangle.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.6rem;
  height: 5.6rem;
}

.is-cross {
  display: block;
  margin-inline: auto;
  background-image: url("../../lp-assets/images/cross.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.6rem;
  height: 5.6rem;
}

/* ========================================
  支援セクション
======================================== */

.p-lp-support {
  margin-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-support {
    margin-block: 5rem;
  }
}

@media (max-width: 767px) {
  .p-lp-support__list {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-lp-support__item {
  margin-top: 9rem;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.25);
  padding: 4rem;
}

@media (max-width: 767px) {
  .p-lp-support__item {
    padding: 2rem;
    margin-top: 4rem;
  }
}

.p-lp-support__item-title {
  color: #333;
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-support__item-title {
    font-size: 2.4rem;
  }
}

.p-lp-support__item-title span {
  display: inline-block;
  width: 0.8rem;
  height: 2.6rem;
  background: #FF4D2B;
  border-radius: 8px;
  margin-right: 2rem;
}

.p-lp-support__item-body {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .p-lp-support__item-body {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.p-lp-support__img {
  width: 50%;
}

@media (max-width: 767px) {
  .p-lp-support__img {
    width: 100%;
  }
}

.p-lp-support__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-support__text {
  width: 50%;
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-support__text {
    width: 100%;
    font-size: 1.8rem;
  }
}

/* ========================================
  支援事例セクション
======================================== */
.p-lp-case {
  margin-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-case {
    margin-block: 5rem;
  }
}

.p-lp-case__title {
  text-align: center;
}

.p-lp-case__list {
  margin-top: 9rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
}

@media (max-width: 767px) {
  .p-lp-case__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
    margin-top: 4rem;
  }
}

.p-lp-case__item {
  border-radius: 3rem 0;
  background-color: #FFF9E4;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .p-lp-case__item {
    padding: 3rem;
  }
}

.p-lp-case__body {}

.p-lp-case__item-title {
  text-align: center;
}

.p-lp-case__item-text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .p-lp-case__item-text {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}

.p-lp-case__img {
  margin-top: 4rem;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-lp-case__img {
    margin-top: 2rem;
  }
}

.p-lp-case__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
  お客様の声セクション
======================================== */
.p-lp-voice {
  margin-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-voice {
    margin-block: 5rem;
  }
}

.p-lp-voice__inner {}

.p-lp-voice__title {}

.p-lp-voice__list {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 767px) {
  .p-lp-voice__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    margin-top: 5rem;
  }
}

.p-lp-voice__item {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 2rem;
}

.p-lp-voice__img {}

.p-lp-voice__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-voice__body {
  padding: 2rem;
}

@media (max-width: 767px) {
  .p-lp-voice__body {
    padding: 2rem;
  }
}

.p-lp-voice__item-title {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-voice__item-title {
    font-size: 2rem;
  }
}

.p-lp-voice__item-name {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-voice__item-name {
    font-size: 1.8rem;
  }
}

.p-lp-voice__item-text {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .p-lp-voice__item-text {
    margin-top: 1rem;
  }
}



/* ========================================
  効果セクション
======================================== */

.p-lp-effect {
  background-color: #FF4D2B;
  padding-block: 8rem;
}

@media (max-width: 767px) {
  .p-lp-effect {
    padding-block: 4rem;
  }
}

.p-lp-effect__title {
  text-align: center;
  color: #fff;
}

.p-lp-effect__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .p-lp-effect__content {
    flex-direction: column;
    gap: 4rem;
  }
}

.p-lp-effect__img {
  width: 35%;
}

@media (max-width: 767px) {
  .p-lp-effect__img {
    width: 100%;
  }
}

.p-lp-effect__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-effect__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 60%;
}

@media (max-width: 767px) {
  .p-lp-effect__list {
    max-width: 500px;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

.p-lp-effect__item {
  background-color: #fff;
  padding: 4rem;
  border-radius: 3rem 3rem 3rem 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.p-lp-effect__item-text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-effect__item-text {
    font-size: 1.8rem;
  }
}

.p-lp-effect__item-text span {
  color: #FF4D2B;
  font-family: var(--font-family);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-effect__item-text span {
    font-size: 2rem;
  }
}

.p-lp-effect__btn {
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .p-lp-effect__btn {
    margin-top: 2rem;
  }
}

.p-lp-effect__btn a {
  background-color: #fff;
  color: #FF4D2B;
  border-radius: 6rem;
  padding: 2rem;
  display: inline-block;
  max-width: 36rem;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}

.p-lp-effect__btn a:hover {
  opacity: 0.7;
}

.p-lp-effect__btn-text {
  color: #fff;
  display: block;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-effect__btn-text {
    font-size: 1.8rem;
  }
}

/* ========================================
  お客様の声セクション
======================================== */



/* ========================================
  プロフィールセクション
======================================== */
.p-lp-prof {
  background-color: #626262;
  padding-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-prof {
    padding-block: 5rem;
  }
}

.p-lp-prof__title {
  color: #fff;
}

.p-lp-prof__content {
  background-color: #fff;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

@media (max-width: 767px) {
  .p-lp-prof__content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
}

.p-lp-prof__img {
  width: 30%;
}

@media (max-width: 767px) {
  .p-lp-prof__img {
    width: 100%;
  }
}

.p-lp-prof__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-prof__body {}

.p-lp-prof__company {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-prof__company {
    font-size: 1.8rem;
  }
}

.p-lp-prof__name {
  color: #333;
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .p-lp-prof__name {
    font-size: 2.4rem;
  }
}

.p-lp-prof__name span {
  display: inline-block;
  width: 0.8rem;
  height: 2.6rem;
  background: #FF4D2B;
  border-radius: 8px;
  margin-right: 2rem;
}

.p-lp-prof__text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-prof__text {
    font-size: 1.8rem;
  }
}

/* ========================================
  導入フローセクション
======================================== */

.p-lp-flow {
  margin-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-flow {
    margin-block: 5rem;
  }
}

.p-lp-flow__text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-flow__text {
    font-size: 2rem;
  }
}

.p-lp-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .p-lp-flow__steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}

.p-lp-flow__step-label {
  color: #FF4D2B;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  display: block;
}

@media (max-width: 767px) {
  .p-lp-flow__step-label {
    font-size: 1.8rem;
  }
}

.p-lp-flow__step-title {
  color: #FF4D2B;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-flow__step-title {
    font-size: 2rem;
  }
}

.p-lp-flow__step-img {
  width: 14.5rem;
  margin-inline: auto;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .p-lp-flow__step-img {
    width: 20rem;
  }
}

.p-lp-flow__step-img img {
  aspect-ratio: 145/145;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-flow__step-text {
  margin-top: 4rem;
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-flow__step-text {
    font-size: 1.8rem;
  }
}

/* ========================================
  プランセクション
======================================== */
.p-lp-plan {
  background-color: #FFF9E4;
  padding-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-plan {
    padding-block: 5rem;
  }
}

.p-lp-plan__text {
  text-align: center;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .p-lp-plan__text {
    font-size: 2rem;
    text-align: left;
  }
}

.p-lp-plan__cards {
  margin-top: 10rem;
  display: flex;
  gap: 5rem;
}

@media (max-width: 767px) {
  .p-lp-plan__cards {
    flex-direction: column;
    gap: 8rem;
    margin-top: 10rem;
  }
}

.p-lp-plan__card {
  width: 50%;
  background-color: #fff;
  border-radius: 2rem;
  border: 1px solid #FF4D2B;
  padding-inline: 4rem;
  padding-bottom: 7rem;
}

@media (max-width: 767px) {
  .p-lp-plan__card {
    width: 100%;
    padding-inline: 2rem;
    padding-bottom: 5rem;
  }
}

.p-lp-plan__card--border {
  border: 1px solid #626262;
}

.p-lp-plan__card-label {
  margin-top: -5rem;
  border-radius: 5rem;
  background-color: #FF4D2B;
  color: #fff;
  display: block;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 2rem 3rem;
  max-width: 40rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-plan__card-label {
    font-size: 2rem;
    padding: 1.5rem 2rem;
    max-width: 30rem;
  }
}

.p-lp-plan__card-label--bg {
  background-color: #626262;
}

.p-lp-plan__list {
  list-style: none;
  margin-top: 4rem;
  background-color: #FFF;
  padding: 0;
}

.p-lp-plan__item {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-block: 2rem;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .p-lp-plan__item {
    font-size: 2rem;
    padding-block: 1.5rem;
  }
}

.p-lp-plan__item-label {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  width: 60%;
}

@media (max-width: 767px) {
  .p-lp-plan__item-label {
    font-size: 2rem;
  }
}

.p-lp-plan__item-price {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-plan__item-price {
    font-size: 1.8rem;
  }
}

.p-lp-plan__item-price span {
  color: #333;
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-plan__item-price span {
    font-size: 2.4rem;
  }
}

.p-lp-plan__bottom-text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-lp-plan__bottom-text {
    font-size: 1.8rem;
    text-align: left;
  }
}

/* ========================================
  FAQセクション
======================================== */
.p-lp-faq {
  margin-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-faq {
    margin-block: 5rem;
  }
}

.p-lp-faq__title span {
  color: #333;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-lp-faq__title span {
    font-size: 2rem;
  }
}

.p-lp-faq__list {}

.p-lp-faq__item {
  border-radius: 2rem;
  background: #FFF9E4;
  padding: 4rem 6rem;
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .p-lp-faq__item {
    padding: 3rem 2rem;
    margin-top: 4rem;
  }
}

.p-lp-faq__question-title {
  color: #333;
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5rem;
}

@media (max-width: 767px) {
  .p-lp-faq__question-title {
    font-size: 2rem;
    gap: 2rem;
  }
}

.p-lp-faq__question-title p {
  color: #333;
  font-family: var(--font-family);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  flex: 1;
}

@media (max-width: 767px) {
  .p-lp-faq__question-title p {
    font-size: 2rem;
  }
}

.p-lp-faq__question-q {
  display: inline-block;
  background-image: url("../../lp-assets/images/q.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5rem;
  height: 5rem;
}

@media (max-width: 767px) {
  .p-lp-faq__question-q {
    width: 3rem;
    height: 3rem;
  }
}

.p-lp-faq__question-icon {
  width: 5rem;
}

@media (max-width: 767px) {
  .p-lp-faq__question-icon {
    width: 3rem;
  }
}

.p-lp-faq__answer {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .p-lp-faq__answer {
    gap: 2rem;
  }
}

.p-lp-faq__question-a {
  display: inline-block;
  background-image: url("../../lp-assets/images/a.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5rem;
  height: 5rem;
}

@media (max-width: 767px) {
  .p-lp-faq__question-a {
    width: 3rem;
    height: 3rem;
  }
}

.p-lp-faq__answer-text {
  color: #333;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  flex: 1;
}

@media (max-width: 767px) {
  .p-lp-faq__answer-text {
    font-size: 1.8rem;
  }
}

/* ========================================
  初回セクション
======================================== */

.p-lp-free {
  background-color: #FF4D2B;
  padding-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-free {
    padding-block: 5rem;
  }
}

.p-lp-free__inner {}

.p-lp-free__title {
  color: #fff;
}

.p-lp-free__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

@media (max-width: 767px) {
  .p-lp-free__content {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

.p-lp-free__text {
  color: #fff;
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  width: 60%;
}

@media (max-width: 767px) {
  .p-lp-free__text {
    width: 100%;
    font-size: 2rem;
  }
}

.p-lp-free__img {
  width: 30%;
}

@media (max-width: 767px) {
  .p-lp-free__img {
    width: 100%;
  }
}

.p-lp-free__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
  お問い合わせセクション
======================================== */

.p-lp-contact {
  background-color: #F5F5F5;
  padding-block: 10rem;
}

@media (max-width: 767px) {
  .p-lp-contact {
    padding-block: 5rem;
  }
}


.p-lp-contact__wrapper {
  background-color: #FFFF;
  padding: 4rem;
  max-width: 95rem;
  width: 100%;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-lp-contact__wrapper {
    padding: 2rem;
  }
}

.p-lp-contact__text {
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .p-lp-contact__text {
    font-size: 1.8rem;
    text-align: left;
  }
}

.p-lp-contact__form {
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .p-lp-contact__form {
    margin-top: 3rem;
  }
}

/* ========================================
  固有コンテンツセクション
======================================== */
.p-lp-area-specific {
  padding-block: 8rem;
}

@media screen and (max-width: 767px) {
  .p-lp-area-specific {
    padding-block: 4rem;
  }
}


.p-lp-area-specific__head-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}

@media screen and (max-width:767px) {
  .p-lp-area-specific__head-title {
    font-size: 2.4rem;
  }
}

.p-lp-area-specific__body {
  margin-top: 30px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 30px;
}

@media screen and (max-width:767px) {
  .p-lp-area-specific__body {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}


/* ========================================
  エリアセクション
======================================== */
.p-lp-area {
  padding-block: 8rem;
  margin-top: 16rem;
}

@media screen and (max-width: 767px) {
  .p-lp-area {
    padding-block: 4rem;
    margin-top: 6rem;
  }
}

.p-lp-area__head-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}

@media screen and (max-width:767px) {
  .p-lp-area__head-title {
    font-size: 2.2rem;
  }
}

.p-lp-area__city-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 6rem;
}

@media screen and (max-width:767px) {
  .p-lp-area__city-title {
    font-size: 2rem;
    margin-top: 3rem;
  }
}

.p-lp-area__city-list {
  margin-top: 4rem;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width:767px) {
  .p-lp-area__city-list {
    margin-top: 2rem;
    padding: 15px;
  }
}

.p-lp-area__city-list li {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  list-style: none;
}

@media screen and (max-width:767px) {
    .p-lp-area__city-list li {
    font-size: 12px;
  }
}

.p-lp-area__city-item a {
  font-size: 16px;
  display: inline-block;
  width: 100%;
  background: #fff;
  text-align: center;
  color: #333333;
  padding: 5px 20px;
  transition: 0.5s;
}

@media screen and (max-width: 767px) {
  .p-lp-area__city-item a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

.page-area .p-lp-area__city-item:first-child a {
  background-color: #999;
  color: #fff;
}

.p-lp-area__note-text {
  font-size: 16px;
  margin-top: 10px;
}



/* ========================================
  seoページ
======================================== */
.p-lp-intro__list--seo {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .p-lp-intro__list--seo {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-lp-plan__card--seo {
  width: 70%;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-lp-plan__card--seo {
    width: 100%;
  }
}

.p-lp-plan__card-label--seo {
  max-width: 100%;
}

.p-lp-plan__item-label--seo {
  width: auto;
}
.p-lp-plan__item--seo{
  justify-content: center;
}