/* ---------------------------------------------
  base
  --------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
.sp {
  display: none;
}

.tb {
  display: none;
}

@media screen and (max-width: 992px) {
  .tb {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.tb-only {
  display: none;
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .tb-only {
    display: block;
  }
}

#l-header-jirei,
#l-main-jirei,
#l-footer-jirei {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  color: #121B43;
}

#l-main-jirei {
  overflow: hidden;
}

html#jirei-html {
  margin-top: 0 !important;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 24px;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 16px;
  }
}
.l-header__wrap {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(233, 93, 63, 0.3);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 8px 8px 24px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    padding: 10px 16px;
  }
}
.l-header__logo {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 110px;
  }
}
.l-header__btn {
  color: #EC332D !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #E95D3F;
  border-radius: 6px;
  background-color: #fff;
  padding: 13px 22px 13px 40px;
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    width: 88px;
    height: 38px;
    font-size: 14px;
    padding: 0;
  }
}
.l-header__btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/case-studies/ico_arrow.svg") no-repeat center/100%;
}
@media screen and (max-width: 767px) {
  .l-header__btn::after {
    display: none;
  }
}

.l-footer {
  background-color: #121B43;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 80px;
  }
}
.l-footer__wrap {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    padding: 50px 0;
  }
}
.l-footer__logo {
  width: 260px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 228px;
    margin-bottom: 30px;
  }
}
.l-footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    gap: 25px;
  }
}
.l-footer__links a {
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__links a {
    font-size: 14px;
  }
}
.l-footer__copy {
  border-top: 1px solid #FFFFFF;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 12px;
  }
}

/* ---------------------------------------------
  component
  --------------------------------------------- */
/* ------ ttl ------ */
.c-ttl {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 24px;
    line-height: 1.5;
  }
}
.c-ttl::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin: 26px auto 0;
  background-color: #F0382C;
}
@media screen and (max-width: 767px) {
  .c-ttl::after {
    width: 64px;
    height: 4px;
    margin-top: 12px;
  }
}

.c-lead {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 16px;
  }
}

/* ------ btn ------ */
a.c-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 260px;
  height: 80px;
  font-size: 22px;
  font-weight: 700;
  color: #EC332D !important;
  padding: 8px 30px;
  border-radius: 8px;
  background-color: #fff;
  border: 2px solid #EC332D;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  a.c-btn {
    padding: 0 20px;
    min-width: 170px;
    height: 60px;
    font-size: 16px;
  }
}
a.c-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/case-studies/ico_arrow.svg") no-repeat center/100%;
}
a.c-btn.bg {
  background-color: #EC332D;
  color: #fff !important;
}
a.c-btn.bg::after {
  background-image: url("../img/case-studies/ico_arrow_bg.svg");
}
@media (hover: hover) {
  a.c-btn:hover {
    opacity: 0.7;
  }
}

.l-wrap {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.color {
  color: #EC332D;
}

/* ---------------------------------------------
  mv
  --------------------------------------------- */
.p-mv {
  position: relative;
  padding: 145px 0 70px;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 100px 0 38px;
  }
}
.p-mv::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1280/412;
  background: url("../img/case-studies/bg_mv.jpg") no-repeat top center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-mv__container {
  max-width: 1200px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .p-mv__container {
    width: calc(100% - 32px);
  }
}
.p-mv__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-mv__text__sub {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-mv__text__sub {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
}
.p-mv__text__ttl {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 992px) {
  .p-mv__text__ttl {
    font-size: 52px;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-mv__text__ttl {
    font-size: 25px;
    margin-bottom: 16px;
  }
}
.p-mv__text__ttl .bg {
  display: inline-block;
  background-color: #121B43;
  color: #fff;
  padding: 3px 6px 6px;
  line-height: 1;
}
.p-mv__text__ttl .emphasis span {
  position: relative;
  display: inline-block;
}
.p-mv__text__ttl .emphasis span::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #EC332D;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-mv__text__ttl .emphasis span::before {
    width: 4px;
    height: 4px;
  }
}
.p-mv__text__lead {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-mv__text__lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    margin-block: calc((1em - 1lh) / 2) !important;
    padding-right: 6px;
  }
}
.p-mv__text__lead::before {
  content: "";
  display: block;
  width: 3px;
  height: 64px;
  background-color: #E85D3F;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-mv__text__lead::before {
    margin-right: 6px;
    width: 2px;
  }
}
.p-mv__text__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  .p-mv__text__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-mv__text__list {
    gap: 4px;
    margin-top: 16px;
    margin-bottom: 0;
  }
}
.p-mv__text__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-mv__text__list li {
    font-size: 16px;
    gap: 4px;
  }
  .p-mv__text__list li .icon {
    width: 20px;
  }
}
.p-mv__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-mv__btns {
    display: none;
  }
}
.p-mv__btns .c-btn {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.p-mv__btns .c-btn:nth-child(2) {
  padding-left: 42px;
  padding-right: 20px;
}
.p-mv__img {
  width: 48.75%;
  max-width: 740px;
  position: absolute;
  bottom: -7.8125vw;
  right: -6.6vw;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .p-mv__img {
    right: 0;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-mv__img {
    width: 46%;
    bottom: -40px;
  }
}

/* ---------------------------------------------
  intro
  --------------------------------------------- */
.p-intro {
  padding: 100px 0 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-intro {
    padding: 64px 0;
  }
}
.p-intro .l-wrap {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-intro .l-wrap {
    width: calc(100% - 32px);
  }
}
.p-intro__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  margin-bottom: 52px;
}
@media screen and (max-width: 992px) {
  .p-intro__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-intro__head {
    gap: 20px;
    margin-bottom: 52px;
  }
}
.p-intro__ttl {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-intro__ttl {
    font-size: 24px;
  }
}
.p-intro__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-intro__lead {
    font-size: 18px;
  }
}
.p-intro__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 992px) {
  .p-intro__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-intro__list {
    grid-template-columns: 1fr;
  }
}
.p-intro__list__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px 16px 40px;
}
@media screen and (max-width: 767px) {
  .p-intro__list__item {
    padding: 20px 16px;
  }
}
.p-intro__list__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-intro__list__head {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-intro__list__head .ttl {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-intro__list__head .ttl {
    font-size: 20px;
  }
}
.p-intro__list__head .icon {
  width: 62px;
}
@media screen and (max-width: 767px) {
  .p-intro__list__head .icon {
    width: 44px;
  }
}
.p-intro__list__desc {
  font-size: 16px;
  line-height: 1.6;
}
.p-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-intro__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(30, 30, 30)), to(rgba(30, 93, 161, 0.75)));
  background: -webkit-linear-gradient(top, rgb(30, 30, 30) 0%, rgba(30, 93, 161, 0.75) 100%);
  background: linear-gradient(180deg, rgb(30, 30, 30) 0%, rgba(30, 93, 161, 0.75) 100%);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: hard-light;
}
.p-intro__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------------------------------------------
    problem
  --------------------------------------------- */
.p-compare {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-compare {
    padding: 64px 0;
  }
}
.p-compare__container {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-compare__container {
    width: 100vw;
  }
}
.p-compare__table {
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 992px) {
  .p-compare__table {
    width: 768px;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-compare__table {
    width: 580px;
  }
}
.p-compare__table__wrap {
  overflow: hidden;
  border-radius: 12px;
}
@media screen and (max-width: 992px) {
  .p-compare__table__wrap {
    overflow-x: scroll;
    padding-bottom: 10px;
    padding-right: 30px;
  }
}
.p-compare__table td,
.p-compare__table th {
  border-collapse: collapse;
}
.p-compare__table thead {
  width: 100%;
  border-radius: 12px;
}
.p-compare__table thead th {
  border-top: none;
}
.p-compare__table thead th {
  line-height: 1.2;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th {
    line-height: 1.4;
  }
}
.p-compare__table thead th:nth-child(1), .p-compare__table thead th:nth-child(3) {
  width: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(1), .p-compare__table thead th:nth-child(3) {
    font-size: 16px;
  }
}
.p-compare__table thead th:nth-child(1) .bg, .p-compare__table thead th:nth-child(3) .bg {
  background-color: #F0EFEF;
  height: 87px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(1) .bg, .p-compare__table thead th:nth-child(3) .bg {
    height: 64px;
    padding: 20px;
  }
}
.p-compare__table thead th:nth-child(1) {
  width: 40%;
}
.p-compare__table thead th:nth-child(1) .bg {
  border-top-left-radius: 12px;
  overflow: hidden;
}
.p-compare__table thead th:nth-child(2) {
  width: 30%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  overflow: hidden;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(2) {
    width: 35%;
    font-size: 14px;
  }
}
.p-compare__table thead th:nth-child(2) .bold {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(2) .bold {
    font-size: 20px;
  }
}
.p-compare__table thead th:nth-child(2) .bg {
  background-color: #F0382C;
  height: 107px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(2) .bg {
    height: 90px;
  }
}
.p-compare__table thead th:nth-child(3) {
  width: 30%;
  text-align: center;
  color: #6A6A6A;
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(3) {
    width: 28%;
    font-size: 13px;
  }
}
.p-compare__table thead th:nth-child(3) .bg {
  border-top-right-radius: 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(3) .bg {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-compare__table thead th:nth-child(3) .bold {
  font-size: 18px;
  font-weight: 700;
  color: #121B43;
}
@media screen and (max-width: 767px) {
  .p-compare__table thead th:nth-child(3) .bold {
    font-size: 15px;
  }
}
.p-compare__table tbody td,
.p-compare__table tbody th {
  height: 65px;
  border: 1px solid #F0EFEF;
  padding: 16px 24px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-compare__table tbody td,
  .p-compare__table tbody th {
    padding: 16px 10px 16px 16px;
  }
}
.p-compare__table tbody th {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-compare__table tbody th {
    font-size: 14px;
  }
}
.p-compare__table tbody th .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-compare__table tbody th .wrap {
    gap: 8px;
  }
}
.p-compare__table tbody th .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-compare__table tbody td {
  vertical-align: middle;
  text-align: center;
}
.p-compare__table tbody td:nth-of-type(1) {
  background-color: #FFF5F3;
  -webkit-box-shadow: inset 2px 0 0 #F0382C, inset -2px 0 0 #F0382C;
          box-shadow: inset 2px 0 0 #F0382C, inset -2px 0 0 #F0382C;
}
.p-compare__table tbody td img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-compare__table tbody td img {
    width: 20px;
    height: 20px;
  }
}
.p-compare__table tbody td.no img {
  width: 20px;
}
.p-compare__table tbody tr:last-child td:nth-of-type(1) {
  -webkit-box-shadow: inset 2px 0 0 #F0382C, inset -2px 0 0 #F0382C, inset 0 -2px 0 #F0382C;
          box-shadow: inset 2px 0 0 #F0382C, inset -2px 0 0 #F0382C, inset 0 -2px 0 #F0382C;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.p-compare__table tbody tr:nth-child(even) th,
.p-compare__table tbody tr:nth-child(even) td:nth-of-type(2) {
  background-color: #FAFAFA;
}

/* ---------------------------------------------
  reason
  --------------------------------------------- */
.p-reason {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(245, 249, 251)), to(rgb(238, 241, 251)));
  background: -webkit-linear-gradient(top, rgb(245, 249, 251) 0%, rgb(238, 241, 251) 100%);
  background: linear-gradient(180deg, rgb(245, 249, 251) 0%, rgb(238, 241, 251) 100%);
  padding: 80px 0;
  position: relative;
}
.p-reason::before {
  content: "";
  display: block;
  width: 30%;
  aspect-ratio: 452/1075;
  background: url("../img/case-studies/bg_reason.png") no-repeat center/cover;
  position: absolute;
  top: 10%;
  right: 0;
}
.p-reason .l-wrap {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}
.p-reason__ttl {
  font-size: 32px;
  font-weight: 700;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-reason__ttl {
    font-size: 24px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-reason__ttl .num {
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  color: #F0382C;
  font-weight: 500;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .p-reason__ttl .num {
    font-size: 60px;
  }
}
.p-reason__ttl .text {
  padding-bottom: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-reason__ttl .text {
    padding-bottom: 0;
  }
}
.p-reason__block:first-of-type {
  margin-top: 40px;
}
.p-reason__block:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-reason__block:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.p-reason__block__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-reason__block__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.p-reason__block__img {
  width: 34%;
  max-width: 340px;
}
@media screen and (max-width: 767px) {
  .p-reason__block__img {
    width: 80%;
    max-width: 200px;
  }
}
.p-reason__block__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-reason__point {
  border: 1px solid rgba(18, 27, 67, 0.3);
  border-radius: 8px;
  background-color: #fff;
  padding: 24px 20px;
}
@media screen and (max-width: 767px) {
  .p-reason__point {
    padding: 24px 20px 24px 20px;
  }
}
.p-reason__point__ttl {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  color: #F0382C;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  padding: 0 4px;
}
@media screen and (max-width: 767px) {
  .p-reason__point__ttl {
    padding: 0 4px;
  }
}
.p-reason__point__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px 32px;
  max-width: 494px;
}
@media screen and (max-width: 767px) {
  .p-reason__point__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-reason__point__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
}
.p-reason__point__list li::before {
  content: "";
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url("../img/case-studies/ico_check.svg") no-repeat center/100%;
}
.p-reason__point__list.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-reason__desc {
  margin-bottom: 24px;
}
.p-reason__desc p {
  font-size: 16px;
  line-height: 1.6;
}
.p-reason__desc p:not(:last-child) {
  margin-bottom: 24px;
}
.p-reason__desc p .color {
  border-bottom: 1px solid #F0382C;
}

/* ---------------------------------------------
  cta
  --------------------------------------------- */
.p-cta {
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 50px 0;
  }
}
.p-cta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/case-studies/bg_cta.jpg") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.p-cta::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(315deg, rgb(236, 51, 45) 0%, rgb(240, 112, 108) 100%);
  background: linear-gradient(135deg, rgb(236, 51, 45) 0%, rgb(240, 112, 108) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.85;
}
.p-cta .l-wrap {
  position: relative;
  z-index: 2;
}
.p-cta__lead {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}
.p-cta__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-cta__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-cta__btns .c-btn {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  height: 72px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-cta__btns .c-btn {
    width: 100%;
    max-width: 300px;
    height: 60px;
    font-size: 16px;
  }
}
.p-cta__btns .c-btn:nth-child(1) {
  min-width: 240px;
}
.p-cta__btns .c-btn:nth-child(2) {
  padding-left: 32px;
  padding-right: 16px;
}
.p-cta__btns .c-btn.bg {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------------------------------------------
  interview
  --------------------------------------------- */
.p-interview {
  background: url("../img/case-studies/bg_interview.jpg") no-repeat center/cover;
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-interview {
    padding: 64px 0;
  }
}
.p-interview::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 43, 79, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}
.p-interview .l-wrap {
  position: relative;
  z-index: 1;
}
.p-interview .c-ttl {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-interview .c-ttl {
    font-size: 23px;
  }
}
.p-interview .c-lead {
  color: #fff;
}
.p-interview__head {
  background-color: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  font-size: 28px;
  font-weight: 700;
  padding: 20px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 90px;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .p-interview__head {
    font-size: 24px;
    gap: 16px;
    padding: 20px;
  }
}
.p-interview__head .icon {
  line-height: 1;
}
.p-interview__head::after {
  content: "";
  display: block;
  width: 370px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.64)), to(rgb(255, 255, 255)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.64) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgb(255, 255, 255) 100%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-interview__head::after {
    width: 335px;
    max-width: 100%;
    bottom: -70px;
  }
}
.p-interview__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 992px) {
  .p-interview__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-interview__list {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }
}
.p-interview__list__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 0 16px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-interview__list__item:nth-child(1) .p-interview__list__ttl {
  color: #EC332D;
}
.p-interview__list__item:nth-child(1) .p-interview__list__num::before {
  background-color: #EC332D;
}
.p-interview__list__item:nth-child(1) .p-interview__list__check li::before {
  background-color: #EC332D;
}
.p-interview__list__item:nth-child(2) .p-interview__list__ttl {
  color: #0238A1;
}
.p-interview__list__item:nth-child(2) .p-interview__list__num::before {
  background-color: #0238A1;
}
.p-interview__list__item:nth-child(2) .p-interview__list__check li::before {
  background-color: #0238A1;
}
.p-interview__list__item:nth-child(3) .p-interview__list__ttl {
  color: #03A9B4;
}
.p-interview__list__item:nth-child(3) .p-interview__list__num::before {
  background-color: #03A9B4;
}
.p-interview__list__item:nth-child(3) .p-interview__list__check li::before {
  background-color: #03A9B4;
}
.p-interview__list__item:nth-child(4) .p-interview__list__ttl {
  color: #4D2EC6;
}
.p-interview__list__item:nth-child(4) .p-interview__list__num::before {
  background-color: #4D2EC6;
}
.p-interview__list__item:nth-child(4) .p-interview__list__check li::before {
  background-color: #4D2EC6;
}
.p-interview__list__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}
.p-interview__list__ttl {
  font-size: 22px;
  font-weight: 700;
}
.p-interview__list__num {
  font-family: "Oswald", sans-serif;
  position: relative;
  font-size: 36px;
  font-weight: 500;
  padding: 0 6px;
  color: #fff;
  letter-spacing: -0.04em;
}
.p-interview__list__num::before {
  content: "";
  display: block;
  width: 84px;
  aspect-ratio: 84/58;
  -webkit-mask-image: url("../img/case-studies/bg_number.svg");
          mask-image: url("../img/case-studies/bg_number.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  position: absolute;
  top: -5px;
  left: -16px;
}
.p-interview__list__num span {
  position: relative;
  z-index: 1;
}
.p-interview__list__check {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-interview__list__check {
    margin-bottom: 20px;
  }
}
.p-interview__list__check li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.p-interview__list__check li::before {
  content: "";
  display: block;
  width: 20px;
  min-width: 20px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../img/case-studies/ico_check_circle.svg");
          mask-image: url("../img/case-studies/ico_check_circle.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.p-interview__list__img {
  margin-top: auto;
}
.p-interview__list__img img {
  border-radius: 4px;
}
.p-interview__bottom {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  gap: 8px;
  padding: 16px 40px;
}
@media screen and (max-width: 767px) {
  .p-interview__bottom {
    padding: 16px;
  }
}
.p-interview__bottom .text {
  font-size: 20px;
  font-weight: 500;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-interview__bottom .text {
    font-size: 16px;
  }
}
.p-interview__bottom .text .color {
  font-weight: 700;
}

/* ---------------------------------------------
  flow
  --------------------------------------------- */
.p-flow {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 64px 0;
  }
}
.p-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 84px;
}
@media screen and (max-width: 992px) {
  .p-flow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 16px;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-flow__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-flow__list__item {
  border: 2px solid #121B43;
  border-radius: 12px;
  background-color: #fff;
  padding: 40px 20px 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__list__item {
    padding: 40px 24px 30px;
  }
}
.p-flow__list__num {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #121B43;
  border: 7px solid #D0D1D9;
  margin: 0 auto;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-flow__list__num {
    font-size: 24px;
    width: 70px;
    height: 70px;
    top: -40px;
  }
}
.p-flow__list__ttl {
  height: 68px;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-flow__list__ttl {
    font-size: 18px;
  }
}
.p-flow__list__desc {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  max-width: 182px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-flow__list__desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ---------------------------------------------
  plan
  --------------------------------------------- */
.p-plan {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(245, 249, 251)), to(rgb(238, 241, 251)));
  background: -webkit-linear-gradient(top, rgb(245, 249, 251) 0%, rgb(238, 241, 251) 100%);
  background: linear-gradient(180deg, rgb(245, 249, 251) 0%, rgb(238, 241, 251) 100%);
  padding: 80px 0 108px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding: 64px 0;
  }
}
.p-plan__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  margin-top: 42px;
}
@media screen and (max-width: 992px) {
  .p-plan__container {
    gap: 10px;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-plan__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-plan__block {
  border: 1px solid #121B43;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 376px;
}
@media screen and (max-width: 767px) {
  .p-plan__block {
    width: 100%;
  }
  .p-plan__block:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-plan__block:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-plan__head {
  background-color: #121B43;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.p-plan__head__ttl {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 992px) {
  .p-plan__head__ttl {
    font-size: 26px;
  }
}
.p-plan__head__sub {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .p-plan__head__sub {
    font-size: 16px;
  }
}
.p-plan__price {
  padding: 38px 12px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
}
.p-plan__price__main {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .p-plan__price__main {
    line-height: 1;
    margin-bottom: 4px;
  }
}
.p-plan__price__main .yen {
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .p-plan__price__main .yen {
    font-size: 19px;
  }
}
.p-plan__price__main .tax {
  font-size: 17px;
}
@media screen and (max-width: 992px) {
  .p-plan__price__main .tax {
    font-size: 16px;
  }
}
.p-plan__price__sub {
  color: #878787;
  font-size: 16px;
  font-weight: 600;
  margin-top: 2px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-plan__price__sub {
    font-size: 15px;
  }
}
.p-plan__list li {
  border-top: 1px solid #D0D0D0;
  padding: 17px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  line-height: 1.5;
  padding-left: 30px;
}
@media screen and (max-width: 992px) {
  .p-plan__list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .p-plan__list li {
    padding-left: 10px;
  }
}
.p-plan__list li.no {
  opacity: 0.3;
}
.p-plan__list li.no span::before {
  background-image: url("../img/case-studies/ico_minus.svg");
}
.p-plan__list li span {
  min-width: 248px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.p-plan__list li span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/case-studies/ico_check02.svg") no-repeat center/100%;
}
.p-plan__block.recommend {
  max-width: initial;
  border-color: #E69832;
  -webkit-box-shadow: 0 0 25px rgba(236, 51, 45, 0.25);
          box-shadow: 0 0 25px rgba(236, 51, 45, 0.25);
  background-color: #FFF5F3;
}
@media screen and (max-width: 767px) {
  .p-plan__block.recommend {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-plan__block.recommend .p-plan__head {
  background-color: #EC332D;
  padding: 30px 0;
  position: relative;
  gap: 8px;
}
.p-plan__block.recommend .p-plan__head .badge {
  color: #EC332D;
  font-size: 17px;
  font-weight: 700;
  background-color: #fff;
  padding: 6px 50px;
  display: inline-block;
  -webkit-transform: rotate(38deg);
          transform: rotate(38deg);
  position: absolute;
  top: 12px;
  right: -50px;
}
@media screen and (max-width: 992px) {
  .p-plan__block.recommend .p-plan__head .badge {
    font-size: 15px;
  }
}
.p-plan__notice {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  color: #7D7E83;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-plan__notice {
    font-size: 13px;
  }
}
.p-plan__lead {
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .p-plan__lead {
    font-size: 16px;
    margin-top: 30px;
  }
}
.p-plan .c-btn {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin: 20px auto 0;
  width: 100%;
  max-width: 340px;
  height: 70px;
  font-size: 18px;
  padding: 0 10px 0 32px;
}

/* ---------------------------------------------
  faq
  --------------------------------------------- */
.p-faq {
  padding: 80px 0;
  background-color: #fff;
}
.p-faq .c-lead {
  margin-top: 20px;
}
.p-faq__container {
  display: grid;
  gap: 8px;
  margin-top: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.p-faq__item {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
}
.p-faq__item__question {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-faq__item__question {
    padding-right: 24px;
  }
}
.p-faq__item__question p {
  font-size: 17px;
  line-height: 1.8;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__item__question p {
    font-size: 16px;
    line-height: 1.6;
  }
}
.p-faq__item__question::before {
  content: "Q.";
  color: #F0382C;
  width: 25px;
}
.p-faq__item__question::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background: url("../img/case-studies/ico_arrow_down.svg") no-repeat center/100%;
  position: absolute;
  top: 40%;
  right: -2px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__item__question::after {
    right: -6px;
  }
}
.p-faq__item__answer {
  position: relative;
  display: none;
  border-top: 1px dotted rgba(0, 0, 0, 0.2);
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 600;
}
.p-faq__item__answer__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.p-faq__item__answer__inner::before {
  content: "A.";
  color: #3A3533;
  width: 25px;
  padding-top: 4px;
}
.p-faq__item__answer__inner p {
  color: #3A3533;
  font-size: 17px;
  line-height: 1.8;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__item__answer__inner p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.p-faq__item.is-open .p-faq__item__question::after {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.p-cta-fixed {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-cta-fixed {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    padding: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  .p-cta-fixed .c-btn {
    padding: 0 20px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 170px;
    height: 55px;
    font-size: 14px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  .p-cta-fixed .c-btn::after {
    display: none;
  }
}

/* ---------------------------------------------
  contact
  --------------------------------------------- */
.p-contact {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(245, 249, 251)), to(rgb(238, 241, 251)));
  background: -webkit-linear-gradient(top, rgb(245, 249, 251) 0%, rgb(238, 241, 251) 100%);
  background: linear-gradient(180deg, rgb(245, 249, 251) 0%, rgb(238, 241, 251) 100%);
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 64px 0 80px;
  }
}
.p-contact__block {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  margin-top: 40px;
}/*# sourceMappingURL=lp_jirei.css.map */