@charset "UTF-8";
.swiper-body {
  padding: 0 8rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .swiper-body {
    padding: 0;
  }
}

.swiper1,
.swiper2 {
  overflow-x: hidden;
}

/*
pegenationボタン①
*/
.button-prev1 {
  position: absolute;
  top: 50%;
  left: 0rem;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .button-prev1 {
    display: none;
  }
}

.button-prev2 {
  position: absolute;
  top: 50%;
  left: 0rem;
  z-index: 1000;
}

.button-next1 {
  position: absolute;
  top: 50%;
  left: auto;
  right: 1rem;
}
@media screen and (min-width: 768px) {
  .button-next1 {
    display: none;
  }
}

.button-next2 {
  position: absolute;
  top: 50%;
  left: auto;
  right: 1rem;
}

.button-prev1::after {
  display: block;
  position: absolute;
  content: "";
  border-style: solid;
  border-top: 2.7rem solid transparent;
  border-bottom: 2.7rem solid transparent;
  border-right: 4.8rem solid #0E2942;
  border-left: 0;
  transform: translate(0, -50%) rotate(0deg);
}

.button-prev2::after {
  display: block;
  position: absolute;
  content: "";
  border-style: solid;
  border-top: 2.7rem solid transparent;
  border-bottom: 2.7rem solid transparent;
  border-right: 4.8rem solid #0E2942;
  border-left: 0;
  transform: translate(0, -50%) rotate(0deg);
}

.button-next1::after {
  display: block;
  position: absolute;
  content: "";
  border-style: solid;
  border-top: 2.7rem solid transparent;
  border-bottom: 2.7rem solid transparent;
  border-right: 4.8rem solid #0E2942;
  border-left: 0;
  transform: translate(-100%, -50%) rotate(180deg);
}

.button-next2::after {
  display: block;
  position: absolute;
  content: "";
  border-style: solid;
  border-top: 2.7rem solid transparent;
  border-bottom: 2.7rem solid transparent;
  border-right: 4.8rem solid #0E2942;
  border-left: 0;
  transform: translate(-100%, -50%) rotate(180deg);
}

/*
flowセクション
*/
* {
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 1.3020833333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 10px;
  }
}

.l-flow {
  background-color: #F2FBFF;
  padding: 8.5rem 0 9rem;
}

.p-flow__inner {
  max-width: 103rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

#flow .p-flow__title {
  font-feature-settings: "palt";
  text-align: center;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  #flow .p-flow__title {
    font-size: 3rem;
  }
}

.p-flow__body {
  margin-top: 11.5rem;
}

@media screen and (min-width: 768px) {
  .p-flow__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.p-flow__item {
  width: 100%;
  padding: 3.4rem 2.3rem 4rem;
  background-color: #ffffff;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    width: calc(33.33% - 2.6666666667rem);
    height: auto;
  }
}

.p-flow__item:not(:first-child) {
  margin-left: 0rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item:not(:first-child) {
    margin-left: 3.8rem;
  }
}

.p-flow__item:nth-child(n+4) {
  margin-top: 0rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(n+4) {
    transform: translateY(-3px);
    margin-top: 10rem;
  }
}

.p-flow__item:nth-child(3n+1) {
  margin-left: 0;
}

#flow .p-flow__itemHeading {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #flow .p-flow__itemHeading {
    font-size: 2.6rem;
  }
}

#flow .p-flow__itemParagraph {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 3rem !important;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  #flow .p-flow__itemParagraph {
    font-size: 2.2rem;
  }
}

.p-flow__item div {
  width: 100%;
  position: relative;
  margin-top: 2.5rem;
}

.p-flow__item div::before {
  content: "";
  padding-top: 62.4999854729%;
  display: block;
}

.p-flow__item div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-flow__notice {
  background-color: #0E2942;
  color: #ffffff;
  text-align: center;
  padding: 4rem 0;
  margin-top: 6rem;
}

#flow .p-flow__noticePara {
  font-size: 4.3rem;
  font-weight: 500;
}

.p-flow__noticeItems {
  max-width: 65rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-flow__noticeItems {
    font-size: 2.2rem;
    max-width: 62rem;
  }
}

.l-form {
  padding: 14.5rem 0 16rem;
  background: url("img/index/bg-form.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.l-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  background-color: #0E2942;
}

.l-form::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  background-color: #0E2942;
}

.p-form__body {
  margin-top: 7rem;
  padding: 0 8rem;
  position: relative;
}

.p-form__inner {
  max-width: 56.4rem;
  width: 100%;
  margin: 0 auto;
}

.p-form__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-form__title {
    font-size: 3rem;
  }
}

.p-form__item {
  width: 100%;
  padding: 2rem 3rem;
  background-color: #ffffff;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
}

#form .p-form__itemNumber {
  text-align: center;
  color: #ffffff;
  display: block;
  background-color: #0E2942;
  font-size: 2.6rem;
  font-weight: 300;
  width: 100%;
  border-radius: 1.5rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  #form .p-form__itemNumber {
    font-size: 2.4rem;
  }
}

#form .p-form__itemParagraph {
  margin-top: 2rem !important;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #form .p-form__itemParagraph {
    font-size: 2.1rem;
  }
}

#form .p-form__itemImage {
  margin-top: 4rem;
  width: 100%;
  position: relative;
}

.p-form__itemImage::before {
  content: "";
  padding-top: 115.2941176471%;
  display: block;
}

.p-form__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}/*# sourceMappingURL=style.css.map */