@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  color: #2b2b2b;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.625;
}

.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.wrapper {
  overflow-x: hidden;
}

.l-header {
  width: 100%;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.p-header {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding: 7px 60px 7px 14px;
    height: 50px;
  }
}

.p-header__logo {
  width: 200px;
  position: relative;
}
.p-header__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 168px;
  }
}

.p-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__content {
    display: none;
  }
}

.p-header__content--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__content--sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.p-header-nav {
  display: flex;
  align-items: center;
}

.p-header-nav__item {
  font-size: 14px;
  padding: 10px;
  font-weight: 500;
}

.p-header-cta {
  display: inline-block;
  padding: 18px 30px;
  background-color: #fff;
  border-radius: 26px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  margin-left: 18px;
}
.p-header-cta span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.p-header-cta span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 24px;
  width: 25px;
  background: transparent url(/public/assets/img/line-icon.png) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-header-cta {
    padding: 8px 20px;
  }
  .p-header-cta span {
    font-size: 12px;
    padding-left: 20px;
    letter-spacing: 0.6px;
  }
  .p-header-cta span::before {
    height: 16px;
    width: 17px;
  }
}

.p-drawer-icon {
  padding: 20px 14px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 6000;
  background: transparent;
}

.p-drawer-icon__inner {
  width: 30px;
  height: 10px;
  position: relative;
}

.p-drawer-icon__bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #58C9D3;
  transition: all 0.3s ease;
}
.p-drawer-icon__bar:first-child {
  top: 0;
}
.p-drawer-icon__bar:last-child {
  bottom: 0;
}

.p-drawer-icon.is-open .p-drawer-icon__bar:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-160deg);
}
.p-drawer-icon.is-open .p-drawer-icon__bar:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(160deg);
}

.l-drawer-menu {
  width: 100%;
  position: fixed;
  z-index: 5000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.l-drawer-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}

.p-drawer-menu {
  height: 100vh;
  padding: 83px 0px 0px;
  width: 100%;
  background: #fff url(/public/assets/img/fv-bg-sp.png) center center/cover no-repeat;
  position: relative;
}

.p-drawer-menu__icon {
  position: absolute;
  right: 14px;
  top: 20px;
  width: auto;
  height: auto;
}

.p-drawer-menu__logo {
  width: 210px;
  margin: 0 auto 45px;
}

.p-drawer-menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  width: 200px;
  margin: 0 auto 53px;
}

.p-drawer-menu__item {
  font-weight: 700;
  font-size: 16px;
  color: #58C9D3;
  padding: 10px;
}

.p-drawer-menu__cta {
  text-align: center;
}

.c-cta-btn--drawer-menu {
  padding: 18px 0px;
  border-radius: 26px;
  line-height: 1;
  background: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  width: 300px;
  text-align: center;
}
.c-cta-btn--drawer-menu span {
  padding-left: 30px;
  text-align: left;
  display: inline-block;
  position: relative;
}
.c-cta-btn--drawer-menu span::before {
  content: "";
  width: 25px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: transparent url(/public/assets/img/line-icon.png) center center/contain no-repeat;
}

.l-fv {
  width: 100%;
}

.p-fv {
  height: 723px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 117px 70px 45px;
  position: relative;
  background: transparent url(/public/assets/img/fv-bg.png) center center/cover no-repeat;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: 100vh;
    padding: 83px 8px 65px;
    background: transparent url(/public/assets/img/fv-bg-sp.png) center center/cover no-repeat;
  }
}

.p-fv__img-1 {
  position: absolute;
  width: 48.51%;
  padding-top: 45%;
  right: 7.3%;
  top: 10.5%;
  background: transparent url(/public/assets/img/fv-img-1.png) center center/contain no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-fv__img-1 {
    width: 74.4%;
    padding-top: 69%;
    right: 5.3%;
    top: 39%;
  }
}

.p-fv__img-2 {
  position: absolute;
  width: 21.52%;
  padding-top: 21.34%;
  left: 14.6%;
  bottom: 3.73%;
  background: transparent url(/public/assets/img/fv-img-2.png) center center/contain no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-fv__img-2 {
    width: 40.18%;
    padding-top: 39.84%;
    left: 9.2%;
    bottom: 1%;
  }
}

.p-fv-content {
  width: 377px;
}
@media screen and (max-width: 767px) {
  .p-fv-content {
    width: 296px;
    text-align: center;
    margin: 0 auto;
  }
}

.p-fv-content__logo {
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .p-fv-content__logo {
    width: 210px;
    margin: 0 auto 10px;
  }
}

.p-fv-content__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-floating-cta {
  aspect-ratio: 183/149;
  width: 210px;
  height: 170px;
  position: fixed;
  display: inline-block;
  bottom: 0;
  right: 3.43%;
  z-index: 100;
  background: transparent url(/public/assets/img/floating-cta.png) right 0 bottom 0/contain no-repeat;
}
@media screen and (min-width: 1280px) {
  .p-floating-cta {
    right: calc(50% - 596px);
  }
}
@media screen and (max-width: 767px) {
  .p-floating-cta {
    width: 160px;
    height: 110px;
    background: transparent url(/public/assets/img/floating-cta-sp.png) right 0 bottom 0/100% auto no-repeat;
    right: -8px;
  }
}

.l-cta {
  width: 100%;
}

.p-cta {
  background: #72ADB7 url(/public/assets/img/cta-bg.png) left 0 center/auto 100% no-repeat;
  width: 100%;
}
@media screen and (min-width: 1660px) {
  .p-cta {
    background: #72ADB7 url(/public/assets/img/cta-bg-wide.png) left 0 center/auto 100% no-repeat;
  }
}
@media screen and (max-width: 1099px) {
  .p-cta {
    background: transparent url(/public/assets/img/cta-bg.png) left 0 center/cover no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    background: transparent url(/public/assets/img/cta-bg-sp.png) left 0 top 0/contain no-repeat;
  }
}

.p-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
  gap: 10%;
  padding: 35px 60px;
}
@media screen and (max-width: 1099px) {
  .p-cta__inner {
    gap: 3%;
    padding: 35px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    flex-direction: column;
    gap: 0px;
    padding: 51px 20px 22.5px;
  }
}

.p-cta__bg {
  width: 30%;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent url(/public/assets/img/cta-bg-2.png) left 0 center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta__bg {
    width: 100%;
    height: 60%;
    top: auto;
    right: auto;
    transform: translateY(0%);
    bottom: 0;
    left: 0;
    background: transparent url(/public/assets/img/cta-bg-2-sp.png) center top 0/cover no-repeat;
  }
}

.p-cta__text {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-bottom: 16px;
  }
}

.p-cta__text-head {
  font-size: 26px;
  font-weight: 700;
  line-height: 41px; /* 157.692% */
  letter-spacing: 2.6px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-cta__text-head {
    font-size: 22px;
    line-height: 36px; /* 163.636% */
    letter-spacing: 2.2px;
    padding-left: 110px;
    text-align: left;
    margin-bottom: 28px;
  }
}

.p-cta__text-body {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cta__text-body {
    gap: 13px;
  }
}

.p-cta__text-body--item {
  width: 160px;
  height: 160px;
  border: solid 2px #fff;
  border-radius: 50%;
  position: relative;
}
.p-cta__text-body--item span {
  font-size: 23px;
  font-weight: 700;
  line-height: 36px; /* 156.522% */
  letter-spacing: 2.3px;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-cta__text-body--item {
    width: 84px;
    height: 84px;
  }
  .p-cta__text-body--item span {
    font-size: 12px;
    line-height: 19px; /* 158.333% */
    letter-spacing: 1.2px;
  }
}

.p-cta__btn {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    margin: 0 auto;
  }
}

.p-cta__btn-head {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  letter-spacing: 0.9px;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-head {
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    letter-spacing: 0.8px;
    margin-bottom: 12px;
  }
}

.p-cta__btn-body {
  text-align: center;
}

.c-cta-btn {
  cursor: pointer;
  padding: 20px 26px;
  border-radius: 24px;
  background: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
}
.c-cta-btn span {
  padding-left: 40px;
  text-align: left;
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.c-cta-btn span::before {
  content: "";
  width: 33px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: transparent url(/public/assets/img/line-icon.png) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .c-cta-btn {
    padding: 13px 23px;
    border-radius: 24px;
  }
  .c-cta-btn span {
    font-size: 14px;
    padding-left: 26px;
  }
  .c-cta-btn span::before {
    width: 23px;
    height: 22px;
  }
}

.l-worries {
  width: 100%;
}

.p-worries {
  background: #E4F6ED;
  padding: 56px 20px 30px;
  text-align: center;
  position: relative;
}
.p-worries::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 43px solid #E4F6ED;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-worries {
    padding: 30px 20px;
  }
  .p-worries::after {
    border-right: 70px solid transparent;
    border-left: 70px solid transparent;
    border-top: 28px solid #E4F6ED;
  }
}

.p-worries__title {
  font-size: 30px;
  color: #58C9D3;
  font-weight: 700;
  position: relative;
  padding: 0 10.25px;
  line-height: 0.8;
  display: inline-block;
  background: linear-gradient(transparent 37%, #fff 37%);
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  .p-worries__title {
    font-size: 20px;
    padding: 0;
    margin-bottom: 26px;
  }
}

.p-worries__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-worries__body {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.p-worries__body-item {
  width: 22.72%;
  height: 153px;
  border-radius: 14px;
  background-color: #9FCBD5;
  padding: 26.54px 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-worries__body-item {
    width: 48.65%;
    height: 87px;
    padding: 10px 0 7px;
  }
}

.p-worry-item__text {
  padding-top: 50px;
  height: 100px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px; /* 162.5% */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-worry-item__text::after {
  content: "";
  width: 38px;
  height: 27px;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent url(/public/assets/img/icon-check.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-worry-item__text {
    padding-top: 27px;
    height: 42px;
    font-size: 14px;
    line-height: 21px; /* 150% */
  }
  .p-worry-item__text::after {
    content: "";
    width: 22px;
    height: 15px;
    top: -15%;
  }
}

.p-answers {
  padding: 76px 0px 60px;
  width: 100%;
  background: transparent url(/public/assets/img/point-bg.png) center center/auto 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .p-answers {
    padding: 54px 0px 40px;
    background: none;
    background: transparent url(/public/assets/img/point-bg-sp.png) center center/cover no-repeat;
  }
}

.p-answers__inner {
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.p-answers__text {
  color: #58C9D3;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px; /* 150% */
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .p-answers__text {
    font-size: 20px;
    line-height: 30px; /* 150% */
    margin-bottom: 60px;
  }
}

.p-answers__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-answers__title {
    margin-bottom: 18px;
  }
}

.p-answers__body {
  width: 672px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .p-answers__body {
    width: 335px;
    gap: 14px;
  }
}

.l-works {
  width: 100%;
  background: #E4F6ED;
}

.p-works {
  max-width: 920px;
  margin: 0 auto;
  padding: 110px 20px 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works {
    padding: 80px 20px 76px;
  }
}

.p-works__title {
  margin-bottom: 20px;
}

.p-works__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-works__lead {
    font-size: 12px;
    line-height: 18px; /* 150% */
    letter-spacing: 0.6px;
    margin-bottom: 12px;
  }
}

.p-works__slider {
  width: 100%;
  position: relative;
}

.swiper {
  width: 84.4%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .swiper {
    width: 100%;
    overflow: visible;
  }
}

.swiper-button-prev, .swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev {
  left: 0;
  background: transparent url(/public/assets/img/icon-prev.png) center center/contain no-repeat;
}

.swiper-button-next {
  right: 0;
  background: transparent url(/public/assets/img/icon-next.png) center center/contain no-repeat;
}

.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet-active {
  background: #58C9D3;
}

.swiper-pagination-bullet {
  margin: 0 10px !important;
  width: 11px;
  height: 11px;
}

.swiper-pagination {
  bottom: -35px !important;
}

.l-voice {
  width: 100%;
  background: #F8FDFC;
}

.p-voice {
  max-width: 920px;
  margin: 0 auto;
  padding: 123px 20px 91px;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding: 74px 20px 36px;
  }
}

.p-voice__title {
  margin-bottom: 29px;
}

.p-voice__body {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .p-voice__body {
    gap: 14px;
  }
}

.l-step {
  width: 100%;
  background: #E4F6ED;
}

.p-step {
  max-width: 920px;
  margin: 0 auto;
  padding: 110px 20px 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-step {
    padding: 80px 20px 27px;
  }
}

.p-step__title {
  margin-bottom: 20px;
}

.p-step__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-step__lead {
    font-size: 12px;
    line-height: 18px; /* 150% */
    letter-spacing: 0.6px;
    margin-bottom: 12px;
  }
}

.p-step__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-step__list {
    gap: 13px;
  }
}

.l-last-cta {
  width: 100%;
}

.p-last-cta {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-last-cta {
    padding: 30px 20px;
  }
}

.p-last-cta__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1347px;
  height: 519px;
  background: transparent url(/public/assets/img/last-cta-bg.png) center bottom 0/contain no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-last-cta__bg {
    width: 520px;
    height: 130%;
  }
}

.p-last-cta__text {
  color: #58C9D3;
  font-size: 23px;
  font-weight: 700;
  line-height: 43px; /* 186.957% */
  letter-spacing: 1.15px;
  margin-bottom: 22px;
}
.p-last-cta__text span {
  font-size: 30px;
  padding: 0 9px 3px;
  line-height: 43px; /* 143.333% */
  background: linear-gradient(transparent 30%, #DDEEF0 30%);
}
@media screen and (max-width: 767px) {
  .p-last-cta__text {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    line-height: 30px;
  }
  .p-last-cta__text span {
    font-size: 30px;
    padding: 0 14px 3px;
  }
}

.p-last-cta__img {
  width: 880px;
  max-width: 100%;
  margin: 0 auto 21px;
}
@media screen and (max-width: 767px) {
  .p-last-cta__img {
    margin-bottom: 43px;
  }
}

.p-foot-cta {
  display: inline-block;
  padding: 10px 0px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  width: 483px;
  max-width: 100%;
  text-align: center;
}
.p-foot-cta span {
  display: inline-block;
  padding-left: 41px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
}
.p-foot-cta span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 30px;
  width: 31px;
  background: transparent url(/public/assets/img/line-icon.png) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-foot-cta {
    width: 100%;
    padding-left: 30px;
    padding: 8px 23px 8px 23px;
  }
  .p-foot-cta span {
    font-size: 15px;
    letter-spacing: 0.75px;
  }
  .p-foot-cta span::before {
    height: 21px;
    width: 22px;
  }
}

.p-header__logo__form {
  width: 200px;
  height: 52px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__logo__form {
    width: 168px;
  }
}

.p-header__logo__form img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
}

.section-form {
  width: 100%;
  padding-top: 90px;
  background: #F8FDFC;
}

.p-form .l-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
}
@media screen and (max-width: 767px) {
  .p-form .l-inner {
    padding: 10px 20px 30px;
  }
}

.p-form__title {
  color: #58C9D3;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .p-form__title {
    font-size: 20px;
  }
}

.p-form__table .row:not(:last-of-type) {
  margin-bottom: 1.625rem;
}

.p-form__table .head {
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-form__table .head.must span {
  position: relative;
}

.p-form__table .head.must span::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.625rem);
  transform: translateY(-50%);
  content: "必須";
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0em;
  border-radius: 3px;
  background: rgb(230, 70, 66);
  padding: 0rem 0.625rem;
  white-space: nowrap;
}

.p-form__table .column {
  display: block;
  width: 100%;
}

.p-form__table .column.birth {
  -moz-column-gap: 0.375rem;
  display: flex;
  column-gap: 0.375rem;
  align-items: center;
}

.p-form__table .column.birth .p-form__input-block {
  -moz-column-gap: 0.375rem;
  display: flex;
  column-gap: 0.375rem;
  align-items: center;
}

.p-form__table .column.birth .p-form__select-block {
  -moz-column-gap: 0.375rem;
  display: flex;
  column-gap: 0.375rem;
  align-items: center;
}

.p-form__table input[type=text], .p-form__table input[type=email], .p-form__table input[type=number], .p-form__table input[type=tel], .p-form__table textarea, .p-form__table select {
  display: block;
  outline: none;
  border: 1.4px solid #BABABA;
  border-radius: 4px;
  padding-left: 0.625rem;
  width: 100%;
  height: 3rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0em;
}

.p-form__table .row:not(:last-of-type) {
  margin-bottom: 1.625rem;
}

.p-form__table p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
}

.p-form__pp {
  margin-bottom: 2rem;
  border: solid 1px #bababa;
  border: solid 0.0625rem #bababa;
  border-radius: 4px;
  padding: 1rem 0.5rem;
  overflow-y: scroll;
  background: #fff;
  height: 195px;
  height: 12.1875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__pp {
    height: 12.1875rem;
  }
}

.p-form__pp-list {
  display: flex;
  flex-direction: column;
}

.p-form__pp-item {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.p-form__pp-bottom a {
  color: #2354b2;
  text-decoration: underline;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-form__table input[type=submit] {
  display: inline-block;
  transition: all 0.3s ease;
  outline: none;
  border: none;
  border-radius: 6px;
  background: #4A6E81;
  width: 100%;
  height: 2.875rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 2.2727272727;
  letter-spacing: 0em;
  text-align: center;
}

.p-form__container {
  text-align: left;
}

.p-form__table .column.remark-agree {
  margin-top: 0.5rem;
  margin-bottom: 0.875rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0em;
  text-align: center;
}

.p-cv__textarea {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto;
}

.p-cv__text {
  font-size: 23px;
  font-weight: 600;
  color: #58C9D3;
}
@media screen and (max-width: 767px) {
  .p-cv__text {
    font-size: 16px;
  }
}

.formconp {
  background: #F8FDFC;
}

.l-footer_comp-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-footer_comp-footer {
    position: static;
  }
}

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

.p-footer__links {
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.l-footer {
  width: 100%;
}

.p-footer {
  text-align: center;
}

.p-footer__upper {
  padding: 10px 0;
  background-color: #9FCBD5;
}

.p-footer__logo {
  width: 200px;
  margin: 0 auto;
}

.p-footer__lower {
  font-weight: 500;
  padding: 15px 0;
  font-size: 13px;
  color: #fff;
  background-color: #4A6E81;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 767px) {
  .p-footer__lower {
    padding: 9px 0;
    font-size: 12px;
  }
}

.p-footer__logo {
  margin-bottom: 10px;
}

.p-footer__links {
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    font-size: 12px;
  }
}

.c-fv-point {
  width: 114px;
  height: 114px;
  position: relative;
  background: #58C9D3;
  border-radius: 50%;
}
.c-fv-point::after {
  content: "";
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: solid 2px #BAEBCF;
}
@media screen and (max-width: 767px) {
  .c-fv-point {
    width: 89px;
    height: 89px;
  }
}

.c-fv-point__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.c-fv-point__head {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}
.c-fv-point__head::before, .c-fv-point__head::after {
  color: #CDEFF2;
  font-size: 36px;
  position: absolute;
  top: 5px;
  font-weight: 700;
}
.c-fv-point__head::before {
  content: "“";
  left: 0;
}
.c-fv-point__head::after {
  content: "”";
  right: 0;
}
@media screen and (max-width: 767px) {
  .c-fv-point__head {
    font-size: 28px;
    padding: 0 15px;
  }
  .c-fv-point__head::before, .c-fv-point__head::after {
    font-size: 28px;
  }
}

.c-fv-point__foot {
  color: #DEF4F6;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .c-fv-point__foot {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.c-section-title {
  color: #58C9D3;
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2.3px;
  position: relative;
}
.c-section-title span {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  font-family: "Caveat", cursive;
  font-size: 120px;
  line-height: 0.8;
  letter-spacing: 12px;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
  .c-section-title span {
    font-size: 100px;
    letter-spacing: 10px;
  }
}

.p-point-card {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  background: #9FCBD5;
  padding: 0px 19px 0px 40px;
}
@media screen and (max-width: 767px) {
  .p-point-card {
    padding: 0 6px 0 15px;
  }
}

.p-point-card__inner {
  height: 125px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-point-card__inner {
    height: 90px;
  }
}

.p-point-card__img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 155px;
}
@media screen and (max-width: 767px) {
  .p-point-card__img {
    width: 94px;
  }
}

.p-point-card__content {
  display: flex;
  align-items: center;
  color: #FFF;
}

.p-point-card__num {
  font-family: din-2014, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.5px;
}
@media screen and (max-width: 767px) {
  .p-point-card__num {
    font-size: 30px;
    line-height: 33px; /* 110% */
    letter-spacing: 1.5px;
  }
}

.p-point-card__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
  margin-left: 27px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-point-card__text {
    font-size: 16px;
    line-height: 23px; /* 143.75% */
    margin-left: 15px;
  }
}

.p-slide {
  padding: 34px 20px;
  border-radius: 30px;
  background: #C2DFE5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-slide {
    padding: 20px 0px;
    height: 390px;
    border-radius: 20px;
  }
}

.p-slide__title {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 35px; /* 145.833% */
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .p-slide__title {
    font-size: 14px;
    line-height: 21px; /* 150% */
    letter-spacing: 0.7px;
    margin-bottom: 2px;
  }
}

.p-slide__location {
  padding: 0 20px;
  color: #58C9D3;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.65px;
  border-radius: 17px;
  background: #fff;
  display: inline-block;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .p-slide__location {
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-bottom: 9px;
  }
}

.p-slide__info {
  color: #58C9D3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.75px;
  width: 422px;
  max-width: 100%;
  background: #fff;
  margin: 0 auto 13px;
}
@media screen and (max-width: 767px) {
  .p-slide__info {
    padding: 4px 6px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.65px;
    width: 204px;
    min-height: 44px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-slide__content {
  width: 530px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-slide__content {
    width: 298px;
  }
}

.p-slide__img {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 61.1%;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}
.p-slide__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-slide__img {
    margin-bottom: 14px;
    width: 97%;
  }
}

.p-slide__description {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-slide__description {
    gap: 8px;
    align-items: center;
  }
}

.p-slide__iconText {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-slide__iconText span {
  display: inline-block;
  color: #9FCBD5;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px; /* 123.077% */
  letter-spacing: 0.65px;
}
@media screen and (max-width: 767px) {
  .p-slide__iconText {
    width: 38px;
    height: 38px;
  }
  .p-slide__iconText span {
    font-size: 10px;
    line-height: 12px; /* 120% */
    letter-spacing: 0.5px;
  }
}

.p-slide__text {
  width: calc(100% - 66px);
  padding-top: 2.5px;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px; /* 164.286% */
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-slide__text {
    width: calc(100% - 46px);
    padding-top: 0px;
    font-size: 12px;
    line-height: 18px; /* 150% */
  }
}

.p-voice-card {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  background: #9FCBD5;
  padding: 15px 35px 15px 186px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-card {
    padding: 18px 14px;
    min-height: 147px;
    display: flex;
    align-items: center;
  }
}

.p-voice-card__left {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 153px;
}
@media screen and (max-width: 767px) {
  .p-voice-card__left {
    width: 77px;
    text-align: center;
  }
  .p-voice-card__left img {
    margin-bottom: 10px;
    width: 70px;
  }
}

.p-voice-card__tag {
  color: #9FCBD5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.65px;
  padding: 5px 17px;
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-voice-card__tag {
    padding: 4px 3px;
    font-size: 11px;
    line-height: 14px; /* 127.273% */
    letter-spacing: 0.55px;
    border-radius: 6px;
    margin: 0;
  }
}

.p-voice-card__text {
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 28px; /* 186.667% */
  letter-spacing: 0.75px;
}
@media screen and (max-width: 767px) {
  .p-voice-card__text {
    padding-left: 82px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.6px;
  }
}

.p-voice-card--reverse {
  padding: 15px 186px 15px 35px;
}
@media screen and (max-width: 767px) {
  .p-voice-card--reverse {
    padding: 18px 14px;
  }
}
.p-voice-card--reverse .p-voice-card__left {
  right: 10px;
  left: auto;
}
@media screen and (max-width: 767px) {
  .p-voice-card--reverse .p-voice-card__text {
    padding-left: 0px;
    padding-right: 80px;
  }
}

.p-step-card {
  padding: 26px 0px 33px 48px;
  border-radius: 30px;
  background-color: #9FCBD5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-step-card {
    padding: 20px 7px 13.5px 7px;
    border-radius: 20px;
  }
}

.p-step-card__inner {
  display: flex;
  align-items: center;
  gap: 6.36%;
}
@media screen and (max-width: 767px) {
  .p-step-card__inner {
    gap: 2.38%;
  }
}

.p-step-card__left {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-step-card__left {
    flex-direction: column;
    justify-content: center;
  }
}

.p-step-card__num {
  text-align: center;
  color: #FFF;
  font-family: din-2014, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1; /* 183.333% */
  letter-spacing: 1.8px;
  margin-right: 34px;
}
.p-step-card__num span {
  font-size: 50px;
  letter-spacing: 2.5px;
}
@media screen and (max-width: 767px) {
  .p-step-card__num {
    font-size: 13px;
    letter-spacing: 1.3px;
    margin-right: 0px;
  }
  .p-step-card__num span {
    font-size: 30px;
    letter-spacing: 1.5px;
    line-height: 0.8;
  }
}

.p-step-card__img {
  width: 202px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-step-card__img {
    width: 94px;
  }
}

@media screen and (max-width: 767px) {
  .p-step-card__right {
    padding-bottom: 15px;
  }
}

.p-step-card__title {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1; /* 187.5% */
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-step-card__title {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
    line-height: 23px; /* 143.75% */
  }
}

.p-step-card__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px; /* 150% */
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  .p-step-card__text {
    font-size: 12px;
    line-height: 18px; /* 150% */
    letter-spacing: 0.6px;
  }
}

.p-step-card__cta {
  text-align: center;
}

.p-step-cta {
  display: inline-block;
  padding: 10.5px 0px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  width: 356px;
  max-width: 100%;
  text-align: center;
  margin-top: 15px;
}
.p-step-cta span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.p-step-cta span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 24px;
  width: 25px;
  background: transparent url(/public/assets/img/line-icon.png) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-step-cta {
    margin-top: 5px;
    width: 286px;
    padding-left: 23px;
    padding: 8px 23px 8px 23px;
  }
  .p-step-cta span {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
  .p-step-cta span::before {
    height: 17px;
    width: 18px;
  }
}

.u-separate {
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
  height: 1px;
  background-color: #000;
}

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

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

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

h1 {
  font-weight: bold;
  text-align: center;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
  }
}

.u-hover {
  transition: all 0.3s ease;
}
.u-hover:hover, .u-hover:focus {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */