html {
  font-family: "Noto Sans JP", sans-serif;
  color: #464343;
  position: relative;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

a {
  color: #464343;
}
a:hover {
  color: #464343;
  text-decoration: underline;
}

@media screen and (min-width: 901px) {
  #lp a,
  header a,
  .p-hamburger__contents a {
    transition: opacity .6s;
  }

  #lp a:hover,
  header a:hover,
  .p-hamburger__contents a:hover {
    opacity: .7;
  }
}

/* common */
#lp span {
  display: inline-block;
}

#lp img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#lp picture {
  display: block;
}

/* common */
#lp .pc-only {
  display: block;
}

#lp .br-pc-only {
  display: inline-block;
}

#lp .sp-only {
  display: none;
}

#lp .br-sp-only {
  display: none;
}

#lp .--blue {
  color: #2864f0;
}

#lp .--white {
  color: #fff;
}

.l-lpWrapper {
  padding-left: 25px;
  padding-right: 25px;
}

.l-lpInner {
  max-width: 1100px;
  margin: 0 auto;
}

.c-lpBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 338px;
  height: 72px;
  background-color: #2864f0;
  border-radius: 100vh;
  padding-right: 28px;
  font-feature-settings: 'halt' on;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
}
a.c-lpBtn:hover {
  color: #fff;
  text-decoration: none;
}

.c-lpBtn::before {
  background: url('../images/btn-arrow.png') no-repeat center center/contain;
  content: '';
  height: 14px;
  right: 24px;
  position: absolute;
  top: 50%;
  width: 18px;
  transform: translate(0, -50%);
}

.c-lpH2 {
  position: relative;
  padding-bottom: 40px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .03em;
}

.c-lpH2::before {
  background: url('../images/head-deco.png') no-repeat center center/contain;
  content: '';
  height: 16px;
  left: calc(50% - 143px);
  position: absolute;
  bottom: 0;
  width: 286px;
}

@media screen and (max-width: 900px) {
  #lp .pc-only {
    display: none;
  }

  #lp .br-pc-only {
    display: none;
  }

  #lp .sp-only {
    display: block;
  }

  #lp .br-sp-only {
    display: inline-block;
  }

  .l-lpWrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .l-lpInner {
    max-width: 335px;
  }

  .c-lpBtn {
    width: 280px;
    height: 62px;
    padding-right: 24px;
    font-size: 18px;
  }
  
  .c-lpBtn::before {
    height: 12px;
    right: 23px;
    width: 15px;
  }

  .c-lpH2 {
    padding-bottom: 27px;
    font-size: 26px;
  }
  
  .c-lpH2::before {
    background: url('../images/head-deco-sp.png') no-repeat center center/contain;
    height: 11px;
    left: calc(50% - 101px);
    width: 202px;
  }
}

.u-blue {
  color: #2864f0 !important;
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-lpHeader {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 95;
  background-color: #fff;
  padding: 10px 30px;
}

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

.p-lpHeader__logo {
  display: flex;
  width: 150px;
}

.p-lpHeader__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-lpHeader__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  background-color: #2864f0;
  border-radius: 100vh;
  font-feature-settings: 'halt' on;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.p-lpHeader__btn:hover {
  color: #fff;
  text-decoration: none;
}

.p-lpHeader__btn span {
  position: relative;
  padding-left: 19px;
}
.p-lpHeader__btn span::before {
  background: url('../images/btn-icon.png') no-repeat center center/contain;
  content: '';
  height: 16px;
  left: 0;
  position: absolute;
  top: 1px;
  width: 16px;
}

.p-hamburger {
  width: 54px;
  height: 16px;
  cursor: pointer;
  display: none;
}

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

.p-hamburger__trigger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2864f0;
  left: 0;
  top: 0;
  transition: all .4s;
}
.p-hamburger__trigger span:nth-of-type(2) {
  top: 7px;
}
.p-hamburger__trigger span:nth-of-type(3) {
  top: unset;
  bottom: 0;
}
.p-hamburger__trigger.js-active span:nth-of-type(2) {
  opacity: 0;
}
.p-hamburger__trigger.js-active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
.p-hamburger__trigger.js-active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}

.p-hamburger__contents {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 90;
  padding: 100px 20px 130px;
  transition: opacity .5s;
  pointer-events: none;
  opacity: 0;
}
.p-hamburger__contents.js-active {
  pointer-events: all;
  opacity: 1;
}

.p-hamburger__content--list {
  max-width: 281px;
  margin: 0 auto;
}

.p-hamburger__content--list li {
  padding: 30px 0;
  border-bottom: #d4d4d4 dashed 1px;
  text-align: center;
}

.p-hamburger__content--list li a {
  font-feature-settings: 'halt' on;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .03em;
}
.p-hamburger__content--list li a:hover {
  text-decoration: none;
}

.p-hamburger__btn {
  margin: 30px auto 0;
}

@media screen and (max-width: 900px) {
  .p-lpHeader {
    padding: 6px 20px;
  }
  
  .p-lpHeader__logo {
    width: 108px;
  }
  
  .p-lpHeader__right {
    gap: 12px;
  }
  
  .p-lpHeader__btn {
    width: 158px;
    height: 36px;
    font-size: 12px;
    display: none;
  }

  .p-lpHeader__btn span::before {
    height: 14px;
    top: 0;
    width: 14px;
  }
  
  .p-hamburger {
    width: 35px;
    height: 16px;
    display: block;
  }
  
  .p-hamburger__contents {
    padding: 50px 20px 50px;
  }

  .p-hamburger__content--list li {
    padding: 24px 0;
  }
}

.p-lpFloat {
  display: none;
}

@media screen and (max-width: 900px) {
  .p-lpFloat {
    display: block;
    position: fixed;
    z-index: 80;
    width: 94px;
    right: 20px;
    bottom: 20px;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
    transform: translateZ(0);
  }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-lpMv {
  margin-top: 85px;
  padding-top: 84px;
  padding-bottom: 53px;
  background-color: #ebf3ff;
}

.p-lpMv__inner {
  position: relative;
}

.p-lpMv__contents {
  max-width: 570px;
}

.p-lpMv__subHead {
  max-width: 269px;
}

.p-lpMv__head {
  position: relative;
  margin-top: 8px;
}

.p-lpMv__head img {
  position: absolute;
  right: 7px;
  top: -80px;
  width: 169px !important;
}

.p-lpMv__head span.--wrapper {
  display: block !important;
  font-size: 45px;
  font-feature-settings: 'halt' on;
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .05em;
  border-bottom: #929eaf dashed 1px;
}

.p-lpMv__img {
  position: absolute;
  width: 510px;
  top: -40px;
  left: calc(50% + 23px);
}

.p-lpMv__btn--wrapper {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.p-lpMv__free {
  width: 95px;
}

@media screen and (max-width: 900px) {
  .p-lpMv {
    margin-top: 58px;
    padding-top: 48px;
    padding-bottom: 40px;
  }
  
  .p-lpMv__inner {
    position: relative;
  }
  
  .p-lpMv__contents {
    max-width: 100%;
  }
  
  .p-lpMv__subHead {
    max-width: 190px;
  }
  
  .p-lpMv__head {
    margin-top: 0;
  }
  
  .p-lpMv__head img {
    right: -12px;
    top: -65px;
    width: 125px !important;
  }
  
  .p-lpMv__head span.--wrapper {
    font-size: 26px;
  }
  
  .p-lpMv__img {
    position: relative;
    margin: 16px auto 0;
    width: 100%;
    max-width: 275px;
    top: unset;
    left: unset;
  }
  
  .p-lpMv__btn--wrapper {
    margin: 17px auto 0;
    display: block;
    max-width: 340px;
    position: relative;
  }

  .p-lpMv__btn {
    width: 100%;
  }
  
  .p-lpMv__free {
    position: absolute;
    width: 62px;
    left: 11px;
    top: -24px;
  }
}

/*===========================================================================*/
/*  timing  */
/*===========================================================================*/
.p-lpTiming {
  padding-top: 78px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ebf3ff;
}
.p-lpTiming::before {
  background-color: #fff;
  content: '';
  height: calc(100% - 111px);
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.p-lpTiming__bg {
  height: 111px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.p-lpTiming__bg img {
  height: 100% !important;
  object-fit: fill !important;
}

.p-lpTiming__inner {
  position: relative;
  z-index: 2;
}

.p-lpTiming__list {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
}

.p-lpTiming__list li {
  width: 31%;
}

.p-lpTiming__list--img {
  max-width: 214px;
  margin: 0 auto;
}

.p-lpTiming__list--txt {
  margin-top: 19px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
}

@media screen and (max-width: 900px) {
  .p-lpTiming {
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .p-lpTiming::before {
    height: calc(100% - 36px);
  }
  
  .p-lpTiming__bg {
    height: 36px;
  }
  
  .p-lpTiming__list {
    flex-direction: column;
    gap: 25px;
    margin-top: 34px;
  }
  
  .p-lpTiming__list li {
    width: 100%;
    position: relative;
    padding-left: 128px;
  }
  
  .p-lpTiming__list--img {
    width: 113px;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  .p-lpTiming__list--txt {
    margin-top: 0;
    text-align: left;
    font-size: 17px;
  }
}

/*===========================================================================*/
/*  suggestion  */
/*===========================================================================*/
.p-lpSuggestion {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ebf3ff;
}

.p-lpSuggestion__contents {
  background-color: #fff;
  padding: 52px 30px 57px;
  border-radius: 20px;
}

.p-lpSuggestion__head {
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .03em;
}

.p-lpSuggestion__caution {
  margin-top: 10px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .03em;
}

.p-lpSuggestion__content {
  position: relative;
  max-width: 940px;
  margin: 43px auto 0;
  padding-left: 418px;
}

.p-lpSuggestion__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.p-lpSuggestion__list li {
  width: calc(100%/3 - 40px/3);
  padding: 9px 5px 10px;
  background-color: #ebf3ff;
  border-radius: 5px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .03em;
}

.p-lpSuggestion__img {
  position: absolute;
  width: 408px;
  bottom: -57px;
  right: calc(50% + 81px);
}

.p-lpSuggestion__btn {
  margin: 40px auto 0;
}

@media screen and (max-width: 900px) {
  .p-lpSuggestion {
    padding: 40px 20px;
  }

  .p-lpSuggestion__inner {
    max-width: 350px;
  }
  
  .p-lpSuggestion__contents {
    padding: 30px 20px 0px;
  }
  
  .p-lpSuggestion__head {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .p-lpSuggestion__caution {
    margin-top: 8px;
    font-size: 10px;
  }
  
  .p-lpSuggestion__content {
    margin: 15px auto 0;
    padding-left: 0;
  }
  
  .p-lpSuggestion__list {
    gap: 10px;
    justify-content: center;
  }
  
  .p-lpSuggestion__list li {
    width: calc(100%/3 - 20px/3);
    padding: 6px 5px 7px;
    font-size: 14px;
  }
  
  .p-lpSuggestion__img {
    position: relative;
    width: 288px;
    bottom: unset;
    right: unset;
    margin: 3px auto 0;
  }
  
  .p-lpSuggestion__btn {
    margin: 25px auto 0;
  }
}

/*===========================================================================*/
/*  consultation  */
/*===========================================================================*/
.p-lpConsultation {
  padding-top: 80px;
  padding-bottom: 84px;
}

.p-lpConsultation__list {
  margin-top: 92px;
  display: flex;
  gap: 25px;
}

.p-lpConsultation__list li {
  width: calc(100%/3 - 50px/3);
  position: relative;
  border-radius: 20px;
  border: #aac8ff solid 1px;
  padding: 72px 20px 20px;
}
.p-lpConsultation__list li::before {
  background: url('../images/consultation-illust.png') no-repeat center center/contain;
  content: '';
  height: 69px;
  right: -8px;
  position: absolute;
  bottom: -15px;
  width: 69px;
}

.p-lpConsultation__list--img {
  position: absolute;
  width: 116px;
  top: -58px;
  left: calc(50% - 58px);
}

.p-lpConsultation__list--head {
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
}

.p-lpConsultation__list--txt {
  margin-top: 16px;
  padding: 20px;
  border-radius: 10px;
  min-height: 144px;
  background-color: #fbf3f4;
  font-feature-settings: 'halt' on;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
  color: #f07882;
}

@media screen and (max-width: 900px) {
  .p-lpConsultation {
    padding: 40px 20px 54px;
  }

  .p-lpConsultation__inner {
    max-width: 350px;
  }
  
  .p-lpConsultation__list {
    margin-top: 52px;
    flex-direction: column;
    gap: 65px;
  }
  
  .p-lpConsultation__list li {
    width: 100%;
  }
  
  .p-lpConsultation__list--img {
    width: 94px;
    top: -30px;
    left: calc(50% - 47px);
  }
  
  .p-lpConsultation__list--txt {
    min-height: unset;
  }
}

/*===========================================================================*/
/*  selection  */
/*===========================================================================*/
.p-lpSelection {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ebf3ff;
}

.p-lpSelection__txt {
  margin-top: 30px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .03em;
}

.p-lpSelection__txt span {
  display: inline !important;
}

.p-lpSelection__table--wrapper {
  margin-top: 33px;
}

.p-lpSelection__btn {
  margin: 40px auto 0;
}

@media screen and (max-width: 900px) {
  .p-lpSelection {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .p-lpSelection__inner {
    max-width: unset;
  }
  
  .p-lpSelection__txt {
    margin: 20px auto 0;
    text-align: left;
    max-width: 335px;
    font-size: 14px;
  }
  
  .p-lpSelection__txt span {
    display: inline !important;
  }
  
  .p-lpSelection__table--wrapper {
    margin-top: 10px;
    width: calc(100% + 40px);
    position: relative;
    left: -20px;
    overflow-x: scroll;
    padding-bottom: 15px;
  }

  .p-lpSelection__table--inner {
    width: 710px;
    padding: 0 20px;
  }
  
  .p-lpSelection__btn {
    margin: 15px auto 0;
  }
}

/*===========================================================================*/
/*  introduction  */
/*===========================================================================*/
.p-lpIntroduction {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-lpIntroduction__head .--caution {
  font-size: 18px;
}

.p-lpIntroduction__list {
  margin-top: 34px;
  display: flex;
  gap: 25px;
}

.p-lpIntroduction__list>li {
  width: calc(100%/3 - 50px/3);
  padding: 15px 15px 28px;
  border: #aac8ff solid 1px;
  border-radius: 20px;
}

.p-lpIntroduction__list--head {
  padding: 9px 5px 10px;
  background-color: #ebf3ff;
  border-radius: 6px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
}

.p-lpIntroduction__list--img {
  max-width: 107px;
  margin: 20px auto 0;
}

.p-lpIntroduction__list ul {
  padding: 0 25px;
  margin-top: 20px;
}

.p-lpIntroduction__list ul li {
  position: relative;
  padding-left: 30px;
  font-feature-settings: 'halt' on;
  font-size: 19px;
  line-height: 1.8;
  letter-spacing: .03em;
}
.p-lpIntroduction__list ul li::before {
  background: url('../images/check.png') no-repeat center center/contain;
  content: '';
  height: 20px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 20px;
}

@media screen and (max-width: 900px) {
  .p-lpIntroduction {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .p-lpIntroduction__head .--caution {
    font-size: 10px;
  }
  
  .p-lpIntroduction__list {
    margin-top: 25px;
    flex-direction: column;
    gap: 20px;
  }
  
  .p-lpIntroduction__list>li {
    width: 100%;
  }
}

/*===========================================================================*/
/*  flow  */
/*===========================================================================*/
.p-lpFlow {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ebf3ff;
}

.p-lpFlow__list {
  max-width: 910px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-lpFlow__list li {
  background-color: #fff;
  padding: 15px 15px 40px;
  border-radius: 20px;
  position: relative;
}
.p-lpFlow__list li::before {
  background: url('../images/flow-tri.png') no-repeat center center/contain;
  content: '';
  height: 21px;
  left: 50%;
  position: absolute;
  top: calc(100% + 17px);
  width: 65px;
  transform: translate(-50%, 0);
}
.p-lpFlow__list li:last-of-type:before {
  display: none;
}

.p-lpFlow__list--head {
  padding: 8px;
  background-color: #ebf3ff;
  border-radius: 6px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
}

.p-lpFlow__list--content {
  max-width: 750px;
  margin: 40px auto 0;
  position: relative;
  padding-left: 292px;
  min-height: 170px;
  display: flex;
  align-items: center;
}

.p-lpFlow__list--img {
  position: absolute;
  width: 299px;
  bottom: -40px;
  right: calc(50% + 107px);
}

.p-lpFlow__list--txts h4 {
  font-feature-settings: 'halt' on;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .03em;
}

.p-lpFlow__list--txts p {
  margin-top: 16px;
  font-feature-settings: 'halt' on;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .03em;
}

.p-lpFlow__btn {
  margin: 40px auto 0;
}

@media screen and (max-width: 900px) {
  .p-lpFlow {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .p-lpFlow__list {
    max-width: 910px;
    margin: 25px auto 0;
    gap: 20px;
  }
  
  .p-lpFlow__list li {
    padding: 15px 15px 30px;
  }
  .p-lpFlow__list li::before {
    display: none;
  }
  
  .p-lpFlow__list--head {
    font-size: 20px;
  }
  
  .p-lpFlow__list--content {
    margin: 13px auto 0;
    padding-left: 0;
    min-height: unset;
    display: block;
  }
  
  .p-lpFlow__list--img {
    position: relative;
    width: 217px;
    bottom: unset;
    right: unset;
    margin: 0 auto;
  }

  .p-lpFlow__list--txts {
    margin-top: 9px;
  }
  
  .p-lpFlow__list--txts h4 {
    font-size: 20px;
    text-align: center;
  }
  
  .p-lpFlow__list--txts p {
    margin-top: 10px;
    padding: 0 15px;
    font-size: 14px;
  }
  
  .p-lpFlow__btn {
    margin: 20px auto 0;
  }
}

/*===========================================================================*/
/*  faq  */
/*===========================================================================*/
.p-lpFaq {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-lpFaq__list {
  margin: 10px auto 0;
  max-width: 723px;
}

.p-lpFaq__list li {
  padding: 30px 0;
  border-bottom: #dedede solid 1px;
}

.p-lpFaq__list--question {
  display: flex;
  align-items: flex-start;
}

.p-lpFaq__list--question .u-blue {
  width: 31px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-top: 5px;
}

.p-lpFaq__list--question .--txt {
  width: calc(100% - 31px);
  font-feature-settings: 'palt' on;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .06em;
}

.p-lpFaq__list--answer {
  margin-top: 11px;
  display: flex;
  align-items: flex-start;
}

.p-lpFaq__list--answer .u-red {
  width: 31px;
  color: #fa6414;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-top: 3px;
}

.p-lpFaq__list--answer .--txt {
  width: calc(100% - 31px);
  font-feature-settings: 'palt' on;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .06em;
}

@media screen and (max-width: 900px) {
  .p-lpFaq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .p-lpFaq__list {
    margin: 7px auto 0;
  }
  
  .p-lpFaq__list li {
    padding: 20px 0;
  }
  
  .p-lpFaq__list--question .u-blue {
    width: 28px;
    font-size: 20px;
    padding-top: 3px;
  }
  
  .p-lpFaq__list--question .--txt {
    width: calc(100% - 28px);
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: .02em;
  }
  
  .p-lpFaq__list--answer {
    margin-top: 9px;
  }
  
  .p-lpFaq__list--answer .u-red {
    width: 28px;
    font-size: 20px;
    padding-top: 1px;
  }
  
  .p-lpFaq__list--answer .--txt {
    width: calc(100% - 28px);
    font-size: 15px;
    letter-spacing: .04em;
  }
}

/*===========================================================================*/
/*  contact  */
/*===========================================================================*/
.p-lpContact {
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #ebf3ff;
}

.p-lpContact__txt {
  margin-top: 30px;
  text-align: center;
  font-feature-settings: 'halt' on;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .03em;
}

.p-lpContact__form {
  margin: 50px auto 0;
  max-width: 691px;
}

.p-lpContact__form form {
  max-width: 100%;
}

.p-lpContact__form form .mktoButtonRow {
  width: 100% !important;
  text-align: center;
}

.p-lpContact__form form .mktoButtonRow span {
  margin: 0 !important;
}

.p-lpContact__form form .mktoButtonRow span button {
  background-color: #2864F0 !important;
  border: none !important;
  background-image: none !important;
  border-radius: 100vh;
  font-size: 20px !important;
  padding: 13px 45px 14px !important;
}

@media screen and (max-width: 900px) {
  .p-lpContact {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-lpContact__txt {
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
  }
  
  .p-lpContact__form {
    margin-top: 20px;
  }
}

/*===========================================================================*/
/*  form  */
/*===========================================================================*/
.form {
  position: relative;
  padding: 0 0 100px;
}
.form__inner {
  padding: 30px 20px;
  background-color: #ebf3ff;
  max-width: 500px;
  border-radius: 20px;
  margin: 0 auto;
}
.form__title {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 1.2px;
  color: #2864f0;
  margin-bottom: 24px;
}

@media screen and (max-width: 936px) {
  .form {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .form__inner {
    padding: 20px 12px 30px;
    max-width: 500px;
  }
  .form__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 1.2px;
  }
}
#mktoForm_34500 {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 500px) {
  .form__inner {
    border-radius: 0;
  }
}
/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
footer img {
  width: revert-layer;
}/*# sourceMappingURL=style.css.map */