@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

ul, ol {
  list-style: none;
  list-style-type: none;
}

code, kbd, pre, samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote::after, blockquote::before, q::after, q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

/**font-family*********/
/**カラー*********/
body {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #25445b;
  line-height: 1;
  font-size: clamp(14px, 3.3333333333vw, 16px);
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: #25445b;
  display: inline-block;
  transition: 0.4s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

*, ::before, ::after {
  box-sizing: border-box;
}

.sp {
  display: block;
}
@media screen and (min-width: 750px) {
  .sp {
    display: none;
  }
}

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3%;
  height: 60px;
  background-color: #ffffff;
  z-index: 999;
  border-left: 1px solid rgba(179, 179, 179, 0.2);
  border-right: 1px solid rgba(179, 179, 179, 0.2);
}
.l-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__logo img {
  height: 30px;
  vertical-align: middle;
}

.l-footer {
  background-color: #25445b;
  padding: 1.87rem 0 9.37rem;
}
.l-footer__logo {
  margin: 0 auto 1.875rem;
  width: 92%;
  max-width: 800px;
}
.l-footer__logo-img {
  height: 1.875rem;
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 420px) {
  .l-footer__inner {
    gap: 4rem;
    flex-direction: row;
  }
}
.l-footer__navlist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.l-footer__navitem-link {
  color: #fff;
  font-weight: 600;
}

.c-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid rgba(179, 179, 179, 0.2);
  border-right: 1px solid rgba(179, 179, 179, 0.2);
  background: #fff;
  overflow-x: hidden;
}

.c-section {
  padding: 2.8rem 0 3.75rem;
}
.c-section__inner {
  margin: 0 auto;
  max-width: 750px;
}
.c-section__inner--l {
  width: 89.7%;
}
.c-section__inner--m {
  width: 84.6%;
}

.c-section-ttl {
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 600;
  text-align: center;
}

.c-link {
  max-width: 41.25rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.c-link__btn {
  border-radius: 1.875rem;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 420px) {
  .c-link__btn {
    border-radius: 2.25rem;
    justify-content: center;
  }
}
.c-link__btn--cta {
  background-color: #e99d23;
  padding-left: 1.2rem;
  padding-right: 1.6rem;
  font-size: clamp(14px, 4.2666666667vw, 16px);
  box-shadow: 0.1rem 0.31rem 0 0 #666;
  border: 1px solid #ffffff;
}
@media screen and (min-width: 375px) {
  .c-link__btn--cta {
    padding-left: 2rem;
    padding-right: 2.5rem;
    font-size: clamp(16px, 2.6041666667vw, 20px);
  }
}
.c-link__btn--more {
  background-color: #009b9b;
  font-size: clamp(20px, 5vw, 24px);
  justify-content: center;
}
.c-link__btn-icon {
  width: clamp(14px, 5vw, 24px);
  position: absolute;
  right: 1.125rem;
  top: 34%;
}
@media screen and (min-width: 420px) {
  .c-link__btn-icon {
    right: 1.6rem;
  }
}
@media screen and (min-width: 620px) {
  .c-link__btn-icon {
    right: 4rem;
  }
}

.c-line {
  background: linear-gradient(transparent 60%, #fff100 60%);
  padding-bottom: 0.25rem;
}

.c-list__unit-imgbox {
  margin-bottom: 1.25rem;
}
.c-list__unit-ttl {
  font-size: clamp(16px, 2.6041666667vw, 20px);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.c-list__unit-txt {
  line-height: 1.71;
}

.p-fv {
  height: 88vh;
  position: relative;
  padding-top: 3.75rem;
}
.p-fv::before, .p-fv::after {
  content: "";
  position: absolute;
}
.p-fv::before {
  width: 73%;
  height: 55.7%;
  background-color: #009b9b;
  border-radius: 0 0 40px 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.p-fv:after {
  width: 84.6%;
  height: 70.2%;
  background-image: url(../img/lp/003/img_fv.jpg);
  background-position: left 17% top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 2.5rem 0 0 0;
  top: 60px;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 375px) {
  .p-fv:after {
    background-position: left 10% top;
  }
}
@media screen and (min-width: 768px) {
  .p-fv:after {
    width: 74.6%;
  }
}
.p-fv__inner {
  position: relative;
  height: 100%;
  z-index: 3;
}
.p-fv__ttlarea {
  position: absolute;
  top: 20px;
  left: 0;
}
.p-fv__content {
  max-width: 650px;
  width: 100%;
  position: absolute;
  bottom: 3.5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-fv__ttl {
  font-size: clamp(26px, 6.25vw, 30px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.p-fv__ttl-md {
  font-size: clamp(32px, 7.5vw, 36px);
  color: #009b9b;
  line-height: 1.2;
}
.p-fv__ttl-lg {
  font-size: clamp(44px, 10vw, 48px);
  font-family: "Arial", "sans-serif";
  color: #009b9b;
  line-height: 1.2;
}
.p-fv__ttl-line {
  position: relative;
  color: #009b9b;
}
.p-fv__ttl-line::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #009b9b;
  position: absolute;
  left: 0;
  bottom: -0.375rem;
}
.p-fv__img {
  width: clamp(150px, 23.4375vw, 180px);
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 560px) {
  .p-fv__img {
    margin-bottom: 0;
  }
}
.p-fv__msg {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.18rem;
  margin-bottom: 20px;
}
.p-fv__msg-la {
  display: inline-block;
  color: #fff;
  background-color: #25445b;
  padding: 0.5rem 0.75rem;
  letter-spacing: 0.025em;
  font-size: clamp(19.86px, 4.9708333333vw, 23.86px);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.p-fv__msg-yellow {
  color: #fff100;
}
.p-fv__msg-lg {
  font-size: clamp(24.28px, 3.6822916667vw, 28.28px);
}

.p-differ {
  padding: 2.375rem 0 2.875rem;
  position: relative;
}
.p-differ::before {
  content: "";
  width: clamp(327px, 52.9947916667vw, 407px);
  height: clamp(345px, 55.3385416667vw, 425px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/lp/003/bg_differ.png");
  position: absolute;
  top: -20px;
  right: -140px;
}
.p-differ__ttl {
  font-size: clamp(18px, 5.2380952381vw, 22px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.25rem;
  position: relative;
}
.p-differ__ttl-md {
  font-size: clamp(23px, 6.4vw, 24px);
}
@media screen and (min-width: 375px) {
  .p-differ__ttl-md {
    font-size: clamp(24px, 3.6458333333vw, 28px);
  }
}
.p-differ__ttl-lg {
  font-size: clamp(29px, 8vw, 30px);
  font-feature-settings: "palt";
}
@media screen and (min-width: 375px) {
  .p-differ__ttl-lg {
    font-size: clamp(30px, 4.1666666667vw, 32px);
  }
}
.p-differ__list {
  position: relative;
  margin-bottom: 3.75rem;
}
.p-differ__unit {
  border-radius: 0 40px 0 40px;
  padding: 1.625rem 1rem 1.125rem;
  position: relative;
}
.p-differ__unit-ttl {
  text-align: center;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 600;
  line-height: 1.16;
  margin-bottom: 1.125rem;
}
.p-differ__unit-ttl img {
  width: clamp(99.25px, 15.52734375vw, 119.25px);
}
.p-differ__unit-sup {
  font-size: clamp(12px, 2.0833333333vw, 16px);
  font-family: "Arial", "sans-serif";
}
.p-differ__unit-cer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.p-differ__unit-la {
  width: clamp(87px, 16.5364583333vw, 127px);
}
.p-differ__unit-sy {
  font-size: clamp(24.7px, 3.7369791667vw, 28.7px);
}
.p-differ__unit-txt {
  font-size: clamp(10px, 1.5625vw, 12px);
  font-weight: 600;
  letter-spacing: 0.025em;
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.2;
  font-feature-settings: "palt";
}
.p-differ__unit--usually {
  border: 1px solid #649b9b;
  margin-bottom: 1.18rem;
}
.p-differ__unit--usually::before, .p-differ__unit--usually::after {
  content: "";
  width: 0.125rem;
  height: 2.43rem;
  background-color: #649b9b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
}
.p-differ__unit--usually::before {
  top: -23px;
}
.p-differ__unit--usually::after {
  bottom: -29px;
}
.p-differ__unit--corder {
  background-color: #e1eae8;
}
.p-differ__unit--corder::after {
  content: "";
  width: 30px;
  height: 46px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/lp/003/icon_arrow-b_blue.png");
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-differ__unit--corder .p-differ__unit-cer {
  margin-bottom: 0.625rem;
}
.p-differ__msg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
  font-weight: 600;
}
.p-differ__msg-top {
  font-size: clamp(18px, 2.8645833333vw, 22px);
  line-height: 1.67;
  text-align: center;
}
.p-differ__msg-bottom {
  color: #ffffff;
  background-color: #009b9b;
  padding: 0.31rem 0.93rem;
  letter-spacing: 0.01em;
  font-size: clamp(23px, 6.4vw, 24px);
  line-height: 1.25;
}
@media screen and (min-width: 375px) {
  .p-differ__msg-bottom {
    font-size: clamp(24px, 3.6458333333vw, 28px);
  }
}

.p-possible {
  background-image: url(../img/lp/003/bg_pos.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.18rem 0 2.5rem;
  color: #fff;
}
.p-possible__inner {
  position: relative;
  max-width: 420px;
}
.p-possible__ttlbox {
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: clamp(20px, 5.8666666667vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 0.31rem;
}
@media screen and (min-width: 420px) {
  .p-possible__ttlbox {
    font-size: clamp(22px, 3.3854166667vw, 26px);
  }
}
.p-possible__ttl {
  display: inline-block;
  position: relative;
}
.p-possible__ttl::before {
  content: "";
  width: 100%;
  height: 0.81rem;
  background-color: rgba(37, 68, 91, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-possible__ttl-la {
  display: inline-block;
  padding: 0 0.31rem 0.31rem;
  position: relative;
  z-index: 10;
  letter-spacing: 0.025em;
}
.p-possible__ttl-la::before, .p-possible__ttl-la::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.p-possible__ttl-la::before {
  border-width: 0 0 0.83rem 0.33rem;
  border-color: transparent transparent rgba(37, 68, 91, 0.5) transparent;
  left: -0.31rem;
}
.p-possible__ttl-la::after {
  border-width: 0.83rem 0.33rem 0 0;
  border-color: rgba(37, 68, 91, 0.5) transparent transparent transparent;
  right: -0.31rem;
}
.p-possible__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.p-possible__item {
  font-size: clamp(13px, 2.2135416667vw, 17px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.46;
  padding-left: 0.75rem;
  position: relative;
}
.p-possible__item::before {
  content: "";
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 8px;
  left: 0;
}
.p-possible__txt {
  font-size: clamp(10px, 1.5625vw, 12px);
  transform: scale(0.9);
  transform-origin: left top;
}
.p-possible__img {
  position: absolute;
  width: clamp(70px, 23.25vw, 93px);
  bottom: 0.3rem;
  right: -0.6rem;
}
@media screen and (min-width: 375px) {
  .p-possible__img {
    width: clamp(93px, 14.3229166667vw, 110px);
    right: 0;
    bottom: -0.1rem;
  }
}

.p-type {
  padding: 2.81rem 0 2.18rem;
  background-color: #e1eae8;
}
.p-type__ttl {
  line-height: 1.33;
  margin-bottom: 1.875rem;
}
.p-type__ttl-top {
  font-size: clamp(18px, 2.8645833333vw, 22px);
}
.p-type__division {
  margin-bottom: 0.75rem;
}
.p-type__division-box {
  display: flex;
  align-items: center;
  padding: 1.125rem 0.93rem;
  background-color: #ffffff;
  border-radius: 0 12px 0 12px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.p-type__division-box:last-of-type {
  margin-bottom: 0.5rem;
}
.p-type__division-ttl {
  width: 4.8rem;
  letter-spacing: 0em;
}
@media screen and (min-width: 375px) {
  .p-type__division-ttl {
    width: 5.3rem;
  }
}
@media screen and (min-width: 480px) {
  .p-type__division-ttl {
    width: 5.8rem;
  }
}
.p-type__division-content {
  width: calc(100% - 4.8rem);
  padding-left: 0.93rem;
  border-left: 1px solid #e1eae8;
  line-height: 1.67;
  font-size: clamp(12px, 1.8229166667vw, 14px);
}
@media screen and (min-width: 375px) {
  .p-type__division-content {
    width: calc(100% - 5.3rem);
  }
}
@media screen and (min-width: 480px) {
  .p-type__division-content {
    width: calc(100% - 5.8rem);
  }
}
.p-type__division-cau {
  font-size: clamp(10px, 1.5625vw, 12px);
  text-align: center;
}
.p-type__arrow {
  margin-bottom: 0.625rem;
}
.p-type__arrow-img {
  width: 1.86rem;
  margin: 0 auto;
}
.p-type__team {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 375px) {
  .p-type__team {
    gap: 1.25rem;
  }
}
.p-type__team-img {
  width: clamp(98px, 16.6666666667vw, 128px);
}
.p-type__team-txt {
  font-size: clamp(14px, 4.2666666667vw, 16px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 375px) {
  .p-type__team-txt {
    font-size: clamp(16px, 2.6041666667vw, 20px);
  }
}
.p-type__team-lg {
  font-size: clamp(22.2px, 6.4533333333vw, 24.2px);
  font-family: "Arial", "sans-serif";
}
@media screen and (min-width: 375px) {
  .p-type__team-lg {
    font-size: clamp(24.2px, 3.671875vw, 28.2px);
  }
}
.p-type__team-lh {
  line-height: 1.87;
}

.p-corporate {
  padding: 2.81rem 0 3.43rem;
}
.p-corporate__ttl {
  text-align: center;
  font-weight: 600;
  font-size: clamp(18px, 4.5833333333vw, 22px);
  line-height: 1.55;
  letter-spacing: 0.075em;
  margin-bottom: 2.81rem;
}
.p-corporate__ttl-lg {
  font-size: clamp(24px, 5.8333333333vw, 28px);
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.p-corporate__content {
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-text-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-corporate__content::-webkit-scrollbar {
  display: none;
}
.p-corporate__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 750px) {
  .p-corporate__list {
    justify-content: space-between;
    gap: 1rem;
  }
}
.p-corporate__list:nth-of-type(2) {
  margin-bottom: 3.75rem;
}
.p-corporate__item--haseko {
  width: 9.75rem;
}
.p-corporate__item--shinkankyo {
  width: 3.125rem;
}
.p-corporate__item--ck {
  width: 3.28rem;
}
.p-corporate__item--vertex {
  width: 7.625rem;
}
.p-corporate__item--jutakuo {
  width: 5rem;
}
.p-corporate__item--moriya {
  width: 9.5rem;
}
.p-corporate__item--giken {
  width: 3.28rem;
}
.p-corporate__item--daikane {
  width: 3.31rem;
}
.p-corporate__item--nakamura {
  width: 8.62rem;
}
.p-corporate__item--chuo {
  width: 9.56rem;
}
.p-corporate__item--taimei {
  width: 7rem;
}
.p-corporate__item--eiko {
  width: 4.43rem;
}
.p-corporate__txt {
  font-size: clamp(12px, 2.0833333333vw, 16px);
  text-align: center;
  letter-spacing: 0.075em;
}

.p-judgment {
  background-color: #faf7f3;
  padding: 2.125rem 0 2.81rem;
}
.p-judgment__ttl {
  line-height: 1.33;
  margin-bottom: 0.875rem;
}
.p-judgment__ttl-top {
  font-size: clamp(18px, 2.8645833333vw, 22px);
}
.p-judgment__ttl .c-line {
  padding: 0 0.625rem;
}
.p-judgment__txt {
  margin-bottom: 2.25rem;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 375px) {
  .p-judgment__txt .br {
    display: none;
  }
}
.p-judgment__unit:nth-child(1) {
  margin-bottom: 2.81rem;
}
@media screen and (min-width: 640px) {
  .p-judgment__unit-ttl .br {
    display: none;
  }
}

.p-image {
  padding: 2.81rem 0;
}
.p-image__inner {
  background-color: #eaf0ef;
  border-radius: 1.25rem;
  padding: 1.56rem 1.56rem 2.18rem;
}
.p-image__ttl {
  text-align: center;
  font-weight: 600;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  line-height: 1.3;
  margin-bottom: 1.43rem;
  font-feature-settings: "palt";
}
.p-image__ttl-lg {
  font-size: clamp(24px, 3.6458333333vw, 28px);
}
.p-image__content {
  margin-bottom: 1.43rem;
  color: #fff;
  position: relative;
}
.p-image__content-top {
  background-color: #e99d23;
  color: #fff;
  padding: 1.6rem;
  text-align: center;
  border-radius: 0.75rem;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 600;
  margin: 0 auto 1.87rem;
  max-width: 31.2rem;
  width: 100%;
}
.p-image__content-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-image__content-arrow--top {
  top: 4.1rem;
}
.p-image__content-arrow img {
  width: 1.85rem;
}
.p-image__content-arrow--bottom {
  top: 57%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
@media screen and (min-width: 390px) {
  .p-image__content-arrow--bottom {
    top: 14.2rem;
  }
}
.p-image__content-arrow--bottom .p-image__content-img:nth-child(1),
.p-image__content-arrow--bottom .p-image__content-img:nth-child(3) {
  width: 2.56rem;
}
.p-image__content-md {
  background-color: #e99d23;
  color: #fff;
  padding: 2.2rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  max-width: 31.2rem;
  width: 100%;
  margin: 0 auto 4.25rem;
}
@media screen and (min-width: 375px) {
  .p-image__content-md {
    gap: 0.875rem;
  }
}
.p-image__content-corder {
  width: clamp(90px, 29.6vw, 111px);
  background-color: #ffffff;
  padding: 0.375rem 0.5rem;
}
.p-image__content-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: clamp(12px, 3.7333333333vw, 14px);
}
@media screen and (min-width: 375px) {
  .p-image__content-list {
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}
.p-image__content-bottom {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.85%;
  max-width: 31.2rem;
  width: 100%;
  margin: 0 auto;
}
.p-image__content-per {
  width: 32.1%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  align-items: center;
}
.p-image__content-per img {
  width: 62.2%;
  margin: 0 auto;
}
.p-image__content-nm {
  font-size: clamp(10px, 3.2vw, 12px);
  font-weight: 600;
  background-color: #25445b;
  border-radius: 0.188rem;
  padding: 0.188rem 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 375px) {
  .p-image__content-nm {
    font-size: clamp(12px, 2.0833333333vw, 16px);
    padding: 0.5rem 0.188rem;
  }
}
.p-image__txt {
  font-size: clamp(12px, 3.0769230769vw, 16px);
  font-weight: 600;
  text-align: center;
  line-height: 1.66;
  font-feature-settings: "palt";
}
@media screen and (min-width: 375px) {
  .p-image__txt .br {
    display: none;
  }
}

.p-matter {
  padding: 1.4rem 0 2.5rem;
  background-color: #faf7f3;
}
.p-matter__ttl {
  letter-spacing: 0.075em;
  line-height: 1.33;
  margin-bottom: 1.125rem;
}
.p-matter__ttl-top {
  font-size: clamp(18px, 2.8645833333vw, 22px);
}
.p-matter__ttl .c-line {
  padding-left: 0.18rem;
}
.p-matter__txt {
  text-align: center;
  line-height: 1.71;
  font-weight: 600;
  margin-bottom: 1.625rem;
}
.p-matter__exa {
  margin-bottom: 1.56rem;
}
.p-matter__exa-ttl {
  letter-spacing: 0.025rem;
  color: #fff;
  background-color: #e99d23;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  font-size: clamp(16px, 2.6041666667vw, 20px);
}
.p-matter__exa-txt {
  font-size: clamp(12px, 1.8229166667vw, 14px);
  letter-spacing: 0.075em;
}
.p-matter__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #25445b;
  margin-bottom: 0.93rem;
}
.p-matter__thead {
  background-color: #25445b;
  color: #fff;
}
.p-matter__thead-th {
  padding: 0.875rem 0.62rem;
  text-align: left;
  letter-spacing: 0;
  font-weight: 600;
  border-right: 1px solid #ffffff;
}
@media screen and (min-width: 375px) {
  .p-matter__thead-th {
    padding: 0.875rem;
  }
}
.p-matter__tbody-tr:nth-child(odd) {
  background-color: #ffffff;
}
.p-matter__tbody-tr:nth-child(even) {
  background-color: #f0f4f3;
}
.p-matter__tbody-td {
  padding: 0.75rem 0.62rem;
  letter-spacing: 0.025em;
  border: 1px solid #25445b;
  line-height: 1.3;
}
@media screen and (min-width: 375px) {
  .p-matter__tbody-td {
    padding: 0.75rem 0.875rem;
  }
}
.p-matter__catch {
  text-align: center;
  font-weight: 600;
  font-size: clamp(16px, 1.3020833333vw, 20px);
  line-height: 1.5;
  font-feature-settings: "palt";
}
.p-matter__catch-txt {
  position: relative;
  display: inline-block;
}
.p-matter__catch-txt::before, .p-matter__catch-txt::after {
  content: "";
  width: 2.2rem;
  height: 3.26rem;
  position: absolute;
  bottom: 0.7rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-matter__catch-txt::before {
  background-image: url(../img/lp/003/icon_line-l.png);
  left: -2rem;
}
.p-matter__catch-txt::after {
  background-image: url(../img/lp/003/icon_line-r.png);
  right: -2rem;
}
.p-matter__catch-md {
  font-size: clamp(20px, 5vw, 24px);
}
.p-matter__catch-lg {
  font-size: clamp(26px, 6.25vw, 30px);
  letter-spacing: 0.05em;
  font-family: "Arial", "sans-serif";
}
@media screen and (min-width: 375px) {
  .p-matter__catch .br {
    display: none;
  }
}

.p-skill {
  padding: 2.5rem 0 2.62rem;
  position: relative;
}
.p-skill::before {
  content: "";
  width: 87%;
  height: 73.1%;
  background-color: #f0f4f3;
  position: absolute;
  left: 0;
  bottom: 2.625rem;
  border-radius: 0 0 2.5rem 0;
}
.p-skill__ttlbox {
  padding-top: clamp(78px, 15.3125vw, 98px);
  padding-bottom: clamp(28px, 7.5vw, 48px);
  position: relative;
  margin-bottom: 1.87rem;
  position: relative;
  font-feature-settings: "palt";
}
.p-skill__ttlbox::before {
  content: "";
  width: 87%;
  height: 100%;
  border-radius: 2.5rem 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  background-image: url(../img/lp/003/img_skill.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-skill__ttlbox-content {
  width: 89.7%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  font-weight: 600;
}
.p-skill__ttlbox-lead {
  color: #fff;
  background-color: #25445b;
  display: inline-block;
  padding: 0.5rem 1.12rem 0.5rem 0.68rem;
  margin-bottom: 0.5rem;
  font-size: clamp(16px, 2.6041666667vw, 20px);
}
.p-skill__ttlbox-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-skill__ttlbox-la {
  background-color: #fff100;
  font-size: clamp(24px, 5.8333333333vw, 28px);
  letter-spacing: 0.005em;
  padding: 0.43rem 0.65rem;
  display: inline-block;
}
@media screen and (min-width: 375px) {
  .p-skill__ttlbox-la {
    letter-spacing: 0.01em;
    padding: 0.43rem 0.75rem;
  }
}
.p-skill__txt {
  position: relative;
  text-align: center;
  font-weight: 600;
  line-height: 1.75;
  font-size: clamp(16px, 2.6041666667vw, 20px);
  margin-bottom: 2.37rem;
}
.p-skill__txt-md {
  font-size: clamp(18px, 2.8645833333vw, 22px);
  line-height: 1.55;
}
.p-skill__txt-lg {
  font-size: clamp(26px, 3.90625vw, 30px);
  font-weight: bold;
  font-family: "Arial", "sans-serif";
  line-height: 1.07;
}

.p-flow {
  background-color: #faf7f3;
  padding: 3.43rem 0 4.37rem;
}
.p-flow__ttl {
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.25rem;
}
.p-flow__ttl img {
  width: clamp(120px, 20.8333333333vw, 160px);
}
.p-flow__txt {
  text-align: center;
  font-weight: 600;
  font-size: clamp(16px, 2.6041666667vw, 20px);
  line-height: 1.31;
  margin-bottom: 0.75rem;
}
.p-flow__unit {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 340px) {
  .p-flow__unit:nth-child(5) .br {
    display: none;
  }
}
.p-flow__unit:last-child {
  margin: 0;
}
.p-flow__unit-imgbox {
  position: relative;
  padding-top: clamp(30px, 8.3333333333vw, 40px);
}
.p-flow__unit-num {
  border-radius: 50%;
  background-color: #e99d23;
  color: #fff;
  width: clamp(60px, 16.6666666667vw, 80px);
  height: clamp(60px, 16.6666666667vw, 80px);
  font-family: "Arial", "sans-serif";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: bold;
  position: absolute;
  top: 0;
  left: -5.1%;
}
.p-flow__unit-step {
  font-size: clamp(12px, 2.0833333333vw, 16px);
}
@media screen and (min-width: 750px) {
  .p-flow__unit-ttl .br {
    display: none;
  }
}

.p-voice {
  background-color: #eaf0ef;
  padding: 2.81rem 0 3.12rem;
}
.p-voice__ttl {
  margin-bottom: 1.87rem;
}
.p-voice__ttlbox {
  position: relative;
  padding-top: 6.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-voice__ttlbox {
    padding-top: clamp(125px, 33.3333333333vw, 256px);
  }
}
.p-voice__ttlbox::before {
  content: "";
  width: 87%;
  height: 90.7%;
  position: absolute;
  top: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 420px) {
  .p-voice__ttlbox::before {
    height: 94.7%;
  }
}
.p-voice__ttlbox-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.43rem;
  position: relative;
  width: 89.7%;
  max-width: 750px;
  margin: 0 auto;
}
.p-voice__ttlbox-la {
  display: inline-block;
  color: #fff;
  background-color: #25445b;
  padding: 0.5rem 1rem;
  letter-spacing: 0.025em;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 600;
}
.p-voice__txt {
  position: relative;
  width: 83.5%;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.71;
}
.p-voice__link {
  width: 84.6%;
}
.p-voice__unit {
  padding-bottom: 3.12rem;
  margin-bottom: 2.25rem;
  position: relative;
}
.p-voice__unit::before {
  content: "";
  width: 87.1%;
  height: 88.9%;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
}
.p-voice__unit--odd::before {
  left: 0;
  border-radius: 0 0 2.5rem 0;
}
.p-voice__unit--odd .p-voice__ttlbox::before {
  right: 0;
  border-radius: 2.5rem 0 0 0;
}
.p-voice__unit--even::before {
  right: 0;
  border-radius: 0 0 0 2.5rem;
}
.p-voice__unit--even .p-voice__ttlbox::before {
  left: 0;
  border-radius: 0 2.5rem 0 0;
}
.p-voice__unit--even .p-voice__ttlbox-ttl {
  align-items: flex-end;
}
.p-voice__unit01 .p-voice__ttlbox::before {
  background-image: url(../img/lp/003/img_voice01.jpg);
}
.p-voice__unit02 .p-voice__ttlbox::before {
  background-image: url(../img/lp/003/img_voice02.jpg);
}
.p-voice__unit03 .p-voice__ttlbox::before {
  background-image: url(../img/lp/003/img_voice03.jpg);
}

.p-modal {
  display: none;
}
.p-modal__ttl {
  margin-bottom: 1.87rem;
}
.p-modal__ttlbox {
  position: relative;
  padding-top: 6.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-modal__ttlbox {
    padding-top: clamp(125px, 33.3333333333vw, 256px);
  }
}
.p-modal__ttlbox-img {
  position: absolute;
  top: 0;
  max-width: 860px;
  width: 93%;
  height: 90%;
  overflow: hidden;
  right: 0;
  border-radius: 2.5rem 0 0 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 375px) {
  .p-modal__ttlbox-img {
    height: 94%;
  }
}
.p-modal__ttlbox-img img {
  object-fit: cover;
}
.p-modal__ttlbox-img01 {
  background-image: url(../img/lp/003/img_voice01.jpg);
}
.p-modal__ttlbox-img02 {
  background-image: url(../img/lp/003/img_voice02.jpg);
}
.p-modal__ttlbox-img03 {
  background-image: url(../img/lp/003/img_voice03.jpg);
}
.p-modal__ttlbox-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.43rem;
  position: relative;
  margin: 0 auto;
}
.p-modal__ttlbox-la {
  display: inline-block;
  color: #fff;
  background-color: #25445b;
  padding: 0.5rem;
  letter-spacing: 0.025em;
  font-size: clamp(16px, 4.7619047619vw, 20px);
  font-weight: 600;
}
.p-modal__txt {
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #666;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  font-weight: 600;
}
.p-modal__content-txt {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.p-modal__content-txt:last-child {
  margin: 0;
}

.modaal-container {
  max-width: 600px;
  width: 94%;
  border-radius: 0.75rem;
}

.modaal-content-container {
  padding: 30px 20px;
}

.modaal-overlay {
  background-color: rgba(37, 68, 91, 0.8);
}

.modaal-close {
  border: 1px solid #25445b;
}

.modaal-close:after,
.modaal-close:before {
  background: #eaf0ef;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #ee9e28;
}

.p-work {
  background-color: #009b9b;
  padding: 3.2rem 0 3.75rem;
}
.p-work__inner {
  max-width: none;
}
.p-work__ttl {
  color: #fff;
  margin-bottom: 1.56rem;
}
.p-work__area {
  scrollbar-width: none;
  -ms-text-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-work__area::-webkit-scrollbar {
  display: none;
}
.p-work__list {
  overflow-x: scroll;
  display: flex;
  align-items: center;
  justify-content: space-between;
  scrollbar-width: none;
  -ms-text-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0 -0.625rem;
}
.p-work__list::-webkit-scrollbar {
  display: none;
}
.p-work__unit {
  padding: 2.18rem 1.56rem 1.75rem;
  background-color: #e8f4f6;
  border-radius: 1.25rem;
  display: inline-block;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: calc(20% - 1.25rem - 0.062rem);
  margin: 0 0.625rem;
  font-feature-settings: "palt";
}
.p-work__content {
  margin-bottom: 1.56rem;
  padding: 0 0.31rem;
}
.p-work__desc {
  display: flex;
  letter-spacing: 0.025em;
  line-height: 1.75;
  font-size: 16px;
}
.p-work__desc-ttl {
  width: 5.6rem;
  font-weight: 600;
}
.p-work__desc-txt {
  width: calc(100% - 5.6rem);
}
.p-work__img {
  width: 15.6rem;
}

.p-faq__ttl {
  margin-bottom: 2.18rem;
}
.p-faq__area {
  margin-bottom: 2.8rem;
}
.p-faq__area:last-child {
  margin: 0;
}
.p-faq__area-ttlbox {
  font-weight: 600;
  font-size: clamp(16px, 2.6041666667vw, 20px);
  margin-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
  position: relative;
}
.p-faq__area-ttl {
  padding-bottom: 16px;
  display: inline-block;
  border-bottom: 5px solid #009b9b;
}
.p-faq__term {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 1.8rem 0.75rem 1.25rem;
  position: relative;
  font-weight: 600;
  line-height: 1.5;
}
.p-faq__term::before {
  content: "Q.";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}
.p-faq__term-bar {
  width: clamp(18px, 5vw, 24px);
  height: clamp(18px, 5vw, 24px);
  background-color: #009b9b;
  position: absolute;
  right: 0;
}
.p-faq__term-bar::before, .p-faq__term-bar::after {
  content: "";
  width: clamp(8.6px, 3.0416666667vw, 14.6px);
  height: 0.09rem;
  display: inline-block;
  background-color: #ffffff;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}
.p-faq__term-bar::after {
  transform: rotate(90deg);
  transition: 0.3s transform;
}
.p-faq__term-bar.is-open::after {
  transform: rotate(0);
}
.p-faq__term .br {
  display: none;
}
@media screen and (min-width: 375px) {
  .p-faq__term .br {
    display: block;
  }
}
@media screen and (min-width: 750px) {
  .p-faq__term .br {
    display: none;
  }
}
.p-faq__desc {
  display: none;
  line-height: 1.33;
  padding: 0 2.5rem 1.25rem 1.25rem;
  position: relative;
  text-align: left;
  line-height: 1.71;
}
@media screen and (min-width: 420px) {
  .p-faq__desc {
    padding-right: 2.8rem;
  }
}
.p-faq__desc::before {
  content: "A.";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}

.p-totop {
  position: fixed;
  opacity: 0;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  z-index: 99;
  transform: translateY(40px);
}
.p-totop.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.p-totop.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(40px);
  }
}
.p-totop__btn {
  width: 3.125rem;
  height: 3.125rem;
  background-color: #eaf0ef;
  border-radius: 50%;
  border: 1px solid #25445b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5.1%;
  bottom: 5rem;
}
.p-totop__btn-img {
  width: 1.5rem;
}

.p-cta {
  background-color: #ffffff;
  padding: 0.5rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid rgba(179, 179, 179, 0.2);
  border-right: 1px solid rgba(179, 179, 179, 0.2);
}
/*# sourceMappingURL=style003.css.map */