@charset "UTF-8";
/* 変数宣言 */
/* 変数宣言 */
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
html, body, section, div, p, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  color: #333;
  scroll-behavior: smooth;
}

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

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

li {
  list-style: none;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
}

p {
  font-size: 18px;
  letter-spacing: 0.06em;
  margin: 0;
  font-family: "Yu Gothic Std;";
}
@media screen and (max-width: 768px) {
  p {
    font-family: "ヒラギノ角ゴシック";
  }
}

h3 {
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
}

.title01 {
  font-size: 30px;
}

.title02 {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .title02 {
    font-size: 28px;
    line-height: 1.3;
  }
}

.title02-left {
  font-size: 30px;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .title02-left {
    text-align: center;
  }
}

.title02-center {
  font-size: 24px;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  text-align: center;
}

.en {
  font-family: "Helvetica Neue";
  font-weight: bold;
}

.alignLeft {
  text-align: left;
}

.alineCenter {
  text-align: center;
}

.cap {
  font-size: 16px;
}

.caption {
  font-size: 18px;
}

.o-main {
  padding: 0;
  padding-bottom: 80px;
  max-width: 100%;
}

.wrap {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

.wrap02 {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .wrap02 {
    padding: 0 20px;
    max-width: 100vw;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 700ms;
  transition-property: opacity, transform;
}

.fade-in01 {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity, transform;
}

.fade-in02 {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in03 {
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* loading  */
.lp-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.lp-loading__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1;
}
.lp-loading__progress {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  z-index: 1;
}
.lp-loading__icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E5EBF7;
  transform-origin: center;
  animation-name: lp-loading;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@media screen and (min-width:1366px) {
  .lp-loading__progress{
    transform: translateX(280px);
  }
}

@media screen and (min-width:769px) {
  .lp-loading__progress{
    transform: translateX(72px);
  }
}


/* lp-intro */
.lp-intro {
  position: relative;
  height: 724px;
}
@media screen and (max-width: 768px) {
  .lp-intro {
    height: 600px;
  }
}
.lp-intro__bg {
  position: absolute;
  width: 68%;
  height: 100%;
  background-color: #E5EBF7;
  border-radius: 0 1000px 1000px 0;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .lp-intro__bg {
    width: 118%;
  }
}
.lp-intro__outer{
  max-width: 1000px;
  margin: 0 auto;
  padding-left:50px;
}
@media screen and (max-width: 768px) {
  .lp-intro__outer {
    padding-left: 0;
  }
}
.lp-intro__inner {
  display: flex;
  column-gap: 70px;
  justify-content: center;
  padding: 167px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lp-intro__inner {
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-left: 0;
    width: 100%;
  }
}

.scroll-icon, .lp-intro__bg, .lp-intro__title, .lp-intro__image, .lp-intro__copy{
  opacity: 0;
  transform: translateY(25px);
  will-change: opacity, transform;
}

.js-body-loaded .scroll-icon,
.js-body-loaded .lp-intro__bg,
.js-body-loaded .lp-intro__title,
.js-body-loaded .lp-intro__image,
.js-body-loaded .lp-intro__copy
 {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.85s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
}
.js-body-loaded .lp-intro__image{
  transition-delay: 1.5s;
}
.js-body-loaded .lp-intro__copy{
  transition-delay: 2s;
}
.js-body-loaded .scroll-icon{
  transition-delay: 2.5s;
}

.lp-intro__senior, .lp-intro__alter, .lp-intro__service{
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.lp-intro__alter{
  margin-top: 40px;
}
.lp-intro__service{
  margin-top: 32px;
}

.js-body-loaded .lp-intro__title--2{
  transition-delay: 0.6s;
}
.js-body-loaded .lp-intro__title--3{
  transition-delay: 0.65s;
  padding-left: 4px;
}
.js-body-loaded  .lp-intro__title--4{
  transition-delay: 0.7s;
}
.js-body-loaded .lp-intro__title--5{
  transition-delay: 0.75s;
  padding-left: 4px;
}
.js-body-loaded .lp-intro__title--6{
  transition-delay: 0.8s;
}
.js-body-loaded .lp-intro__title--7{
  transition-delay: 0.85s;
}
.js-body-loaded .lp-intro__title--8{
  transition-delay: 0.9s;
}
.js-body-loaded .lp-intro__title--9{
  transition-delay: 0.95s;
}
.js-body-loaded .lp-intro__title--10{
  transition-delay: 1s;
  padding-left:5px;
}
.js-body-loaded .lp-intro__title--11{
  transition-delay: 1.05s;
  padding-left:4px;
}
.js-body-loaded .lp-intro__title--12{
  transition-delay: 1.1s;
  padding-left: 8px;
}
.js-body-loaded .lp-intro__title--13{
  transition-delay: 1.15s;
  padding-left: 12px;
}
.js-body-loaded .lp-intro__title--14{
  transition-delay: 1.2s;
  padding-left: 10px;
  padding-top:8px;
}

.lp-intro__image {
  transition-delay: 0.8s;
  margin-top: -25px;
}

@media screen and (max-width: 768px) {
  .lp-intro__title {
    width: 250px;
    margin: 0 auto;
  }
  .lp-intro__senior, .lp-intro__alter, .lp-intro__service{
    column-gap: 8px;
  }
  .lp-intro__senior{
    width: 182px;
  }
  .lp-intro__service{
    width: 200px;
  }
  .lp-intro__image {
    width: 250px;
    margin: 30px auto 0;
  }
  .lp-intro__title--10 img{
    width: 34px;
  }
  .js-body-loaded .lp-intro__title--11{
    padding-left: 0;
  }
  .js-body-loaded .lp-intro__title--12{
    padding-left: 0px;
  }
  .js-body-loaded .lp-intro__title--13{
    padding-left: 7px;
  }
  .js-body-loaded .lp-intro__title--13 img{
    width: 38px;
  }
  .js-body-loaded .lp-intro__title--14{
    padding-top: 6px;
    padding-left: 0;
  }
  .js-body-loaded .lp-intro__title--14 img{
    width: 38px;
  }
}
.lp-intro__copy {
  width: 408px;
  height: 60px;
  text-align: center;
  background-color: #fff;
  font-size: 20px;
  padding: 20px 0;
  box-shadow: 5px 7px 0 #BC4599;
  border-radius: 30px;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 50px; 
  transition-delay: 1.5s;
  
}
@media screen and (max-width: 768px) {
  .lp-intro .lp-intro__copy {
    width: 327px;
    height: 55px;
    font-size: 16px;
    box-shadow: 5px 5px 0 #BC4599;
    margin-top: -35px;
  }
  .lp-intro__alter{
    margin-top: 27px;
  }
  .lp-intro__service{
    margin-top: 17px;
  }
  
}

@media screen and (max-width: 768px) {
  .lp-intro .btn {
    margin: 0 auto;
    width: 322px;
    padding: 15px;
    font-size: 16px;
  }
}
.lp-intro .scroll-icon {
  position: absolute;
  content: url(../images/icon-scroll.svg);
  bottom: 1%;
  right: 49%;
  /*矢印の動き1秒かけて永遠にループ*/
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
}
@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@media screen and (max-width: 768px) {
  .lp-intro .scroll-icon {
    margin-top: 50px;
    right: 45%;
  }
}

/* serviceArea */
.serviceArea {
  margin: 120px 0 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .serviceArea {
    margin: 80px 0;
  }
}
.serviceArea h2 + p {
  font-size: 20px;
  margin-top: 50px;
  line-height: 1;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .serviceArea h2 + p {
    margin-top: 0;
  }
}
.serviceArea__headTtl {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .serviceArea__headTtl {
    margin-bottom: 30px;
  }
}
.serviceArea__inner {
  background-color: #ECF2FA;
  border-radius: 30px;
  padding: 80px 80px 50px;
  margin: 0 auto;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner {
    padding: 40px 20px;
    margin-top: 80px;
  }
}
.serviceArea__inner .txt {
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner .txt {
    text-align: left;
  }
}
.serviceArea__inner--clm3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner--clm3 {
    padding: 30px 0;
    flex-direction: column;
    align-items: center;
  }
}
.serviceArea__inner--clm3 .serviceArea__innerItem {
  width: 260px;
  font-size: 24px;
  font-weight: bold;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  border: #A3B9DB 4px solid;
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
  padding: 30px 0 12px;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner--clm3 .serviceArea__innerItem {
    width: 287px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArea__inner--clm3 .serviceArea__innerItem:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArea__inner--clm3 .serviceArea__innerItem img {
    width: 140px;
  }
}
.serviceArea__inner--clm3 .serviceArea__innerItem .itemTxt {
  font-size: 24px;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner--clm3 .serviceArea__innerItem .itemTxt {
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }
}
.serviceArea__Box02 {
  margin-top: 120px;
}
.serviceArea__Box02 .cap{
  display: flex;
}

.serviceArea__Box02 .cap__prefix{
  display: block;
  padding-right: 5px;
}

@media screen and (max-width: 768px) {
  .serviceArea__Box02 {
    margin-top: 80px;
  }
}
.serviceArea__inner02 {
  display: flex;
  width: 84%;
  background-color: #ECF2FA;
  border-radius: 30px;
  margin: 0 auto;
  padding: 50px 60px 60px 60px;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner02 {
    width: 100%;
    flex-direction: column;
    padding: 40px 20px;
  }
}
.serviceArea__inner02 h3 {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner02 h3 {
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 1.3;
    margin-top: 0;
  }
}
.serviceArea__inner02 .inner02--left {
  margin-right: 42px;
}
@media screen and (max-width: 768px) {
  .serviceArea__inner02 .inner02--left {
    margin-right: 0;
  }
}
.serviceArea__inner02 .txt {
  line-height: 1.7;
  margin-top: 40px;
  padding-bottom: 30px;
}
.serviceArea__inner02 .cap {
  line-height: 1.7; 
}
@media screen and (max-width: 768px) {
  .serviceArea__inner02 img {
    margin: 0 auto;
  }
  .serviceArea__inner02 .txt {
    margin-top: 30px;
  }
}
.serviceArea .mt40 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .serviceArea .mt40 {
    margin-top: 30px;
  }
}
.serviceArea .mt50 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .serviceArea .mt50 {
    margin-top: 50px;
  }
}
.serviceArea .inner02-list {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 30px 30px 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .serviceArea .inner02-list {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.serviceArea .inner02-list .inner02-item {
  text-align: left;
  position: relative;
}
.serviceArea .inner02-list .inner02-item .pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .serviceArea .inner02-list .inner02-item .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .serviceArea .inner02-list .inner02-item .sp {
    display: inline-block;
  }
}
.serviceArea .inner02-list .inner02-item p {
  line-height: 1.7;
}
.serviceArea .inner02-list .inner02-item .boder {
  border-bottom: 2px dashed #7091C6;
}
.serviceArea .inner02-list .inner02-item:not(:first-child) {
  padding-top: 15px;
}
.serviceArea .inner02-list .icon01::before {
  content: url(../images/icon-number01.svg);
  position: absolute;
  top: 0;
  left: -50px;
}
.serviceArea .inner02-list .icon02::before {
  content: url(../images/icon-number02.svg);
  position: absolute;
  top: 0;
  left: -50px;
  top: 15px;
}
.serviceArea .inner02-list .icon03::before {
  content: url(../images/icon-number03.svg);
  position: absolute;
  top: 0;
  left: -50px;
  top: 15px;
}
.serviceArea__footBox {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox {
    margin-top: 80px;
  }
}
.serviceArea__footBox .mini {
  font-size: 16px;
  font-weight: bold;
  font-family: "Helvetica Neue;";
}
.serviceArea__footBox .cap:first-of-type {
  margin-top: 50px;
}
.serviceArea__footBox .cap {
  display: flex;
  line-height: 1.8;
}
.serviceArea__footBox .cap__prefix {
  width: 40px;
  display: block;
  flex-shrink: 0;
}
.serviceArea__footBox .serviceArea__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list {
    flex-direction: column;
  }
}
.serviceArea__footBox .serviceArea__list .serviceArea__listItem {
  width: 48%;
  display: flex;
  align-items: center;
  height: 112px;
  border: #A3B9DB 4px solid;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px 0 30px 100px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem {
    width: 100%;
    height: auto;
    font-size: 18px;
    padding: 20px 0 20px 50px;
  }
}
.serviceArea__footBox .serviceArea__list .serviceArea__listItem:nth-child(even) {
  margin-left: 4%;
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem:nth-child(even) {
    margin: 0;
  }
}
.serviceArea__footBox .serviceArea__list .serviceArea__listItem:nth-child(n+3) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem:nth-child(n+3) {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem:not(:first-child) {
    margin-top: 10px;
  }
}
.serviceArea__footBox .serviceArea__list .serviceArea__listItem .itemTxt {
  font-size: 24px;
  font-weight: bold;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem .itemTxt {
    font-size: 18px;
  }
}
.serviceArea__footBox .serviceArea__list .serviceArea__listItem .itemTxt::before {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem .itemTxt::before {
    content: url(../images/icon-check-blue.svg);
    top: 25px;
    left: 23px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem .itemTxt::before {
    content: url(../images/icon-check-sp.svg);
    top: 16px;
    left: 10px;
  }
}
.serviceArea__footBox .serviceArea__list .serviceArea__listItem .small {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .serviceArea__footBox .serviceArea__list .serviceArea__listItem .small {
    font-size: 16px;
  }
}
.serviceArea__footBox .serviceArea__list .serviceArea__listItem .mini {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  letter-spacing: -0.06em;
}

.stepArea {
  text-align: center;
  padding: 120px 0 160px;
  background-color: #ECF2FA;
  border-radius: 50%;
  margin: 0 calc(50% - 100vw);
}
@media screen and (max-width: 768px) {
  .stepArea {
    margin: 0 calc(-20% - 100vw);
    padding: 120px 0 120px;
  }
}
.stepArea .step {
  padding: 56px 0;
  border: #A3B9DB 4px solid;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .stepArea .step {
    padding: 40px 20px 20px;
  }
}
.stepArea__headTtl {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepArea__ttl02 {
  margin: 25px 0 35px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .stepArea__ttl02 {
    margin-bottom: 0;
    line-height: 1.4;
  }
}
.stepArea__btnBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .stepArea__btnBox {
    flex-direction: column;
  }
}
.stepArea__btnBox .stepBtn {
  width: 380px;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: #4653A2;
  border-radius: 40px;
  padding: 22px 0;
  font-weight: bold;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  transition: all 0.4s ease-out;
  position: relative;
}
@media screen and (max-width: 768px) {
  .stepArea__btnBox .stepBtn {
    width: 255px;
    font-size: 18px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .stepArea__btnBox .telBtn {
    padding: 20px 0;
  }
}
.stepArea__btnBox .btnBox--txt {
  padding: 15px 0;
  margin: 0 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .stepArea__btnBox .btnBox--txt {
    font-weight: 600;
  }
}
.stepBtn .icon-bottom{
  padding-right: 25px;
}
.stepArea__btnBox .icon-bottom::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  border-radius: 2px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 768px) {
  .stepArea__btnBox .icon-bottom::before {
    right: 20px;
     top: 50%;
  }
}
.stepArea .stepBox01 {
  margin: 50px 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox01 .img-box {
    margin: 30px 0;
  }
}
.stepArea .stepBox01 .img-box .step-img {
  position: absolute;
  content: "";
  top: 46px;
  left: 87px;
  width: 100px;
  height: 126px;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox01 .img-box .step-img {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox01 .title01 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox01 .miniBoxSp {
    border-radius: 20px;
    background-color: #ECF2FA;
    padding: 40px 20px;
    text-align: center;
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox01 .miniBoxSp__ttl {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox01 .miniBoxSp__txt {
    font-size: 18px;
    margin-top: 20px;
  }
}
.stepArea .stepBox02 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox02 {
    flex-direction: column;
    align-items: center;
  }
}
.stepArea .stepBox02 .left {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox02 .left {
    width: 100%;
  }
}
.stepArea .stepBox02 .right {
  width: 38%;
}
.stepArea .stepBox02 .stepArea__miniBox {
  width: 380px;
  border-radius: 20px;
  background-color: #fff;
  padding: 25px 0;
  margin: 0 auto;
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox02 .stepArea__miniBox {
    margin: 0 auto;
  }
}
.stepArea .stepBox02 li:not(:last-child) {
  margin-bottom: 30px;
}
.stepArea .stepBox02 li:last-child {
  margin-bottom: 34px;
}
.stepArea .stepBox03 {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox03 {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox03 .title01 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox03 .img-box {
    margin: 30px 0;
  }
}
.stepArea .stepBox03 .img-box .step-img {
  position: absolute;
  content: "";
  top: 46px;
  left: 56px;
  width: 184px;
  height: 136px;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox03 .img-box .step-img {
    position: static;
  }
}
.stepArea .stepBox03 .stepArea__lead {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox03 .stepArea__lead {
    margin-bottom: 0;
  }
}
.stepArea .stepBox03 .cap {
  line-height: 1.8;
  display: flex;
  justify-content: center;
}
.stepArea .stepBox03 .cap__prefix {
  display: block;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox03 .cap {
    text-align: left;
  }
}
.stepArea .stepBox05 {
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox05 .title01 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox05 .img-box {
    margin: 30px 0 20px;
  }
}
.stepArea .stepBox05 .img-box .step-img {
  position: absolute;
  content: "";
  top: 46px;
  left: 56px;
  width: 184px;
  height: 136px;
}
@media screen and (max-width: 768px) {
  .stepArea .stepBox05 .img-box .step-img {
    position: static;
  }
}
.stepArea__miniBox02 {
  background-color: #fff;
  width: 84%;
  padding: 40px 0;
  margin: 30px auto;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .stepArea__miniBox02 {
    padding: 40px 20px;
    width: 100%;
  }
}
.stepArea .miniBox-ttl01, .stepArea .miniBox-ttl02 {
  font-weight: bold;
  line-height: 1;
}
.stepArea .miniBox-ttl01.title02-center{
  line-height: 1.6;
}
.stepArea .stepArea__lead {
  margin-top: 20px;
  line-height: 1.7;
}
.stepArea .stepArea__icon, .stepArea .stepArea__centerIcon {
  width: 60px;
  margin: 0 auto;
}

/* contactArea */
.contactArea {
  margin-top: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contactArea {
    margin-top: 80px;
  }
}
.contactArea__headTtl img {
  margin: 0 auto;
}
.contactArea__box01 {
  text-align: center;
}
.contactArea__box01 .pink {
  color: #BC4599;
  font-size: 18px;
  font-weight: bold;
}
.contactArea__innerBox01 .cap {
  text-align: left;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-top: 13px;
  display: flex;
}
.contactArea__innerBox01 .cap__prefix {
  display: block;
  padding-right: 5px;
}
.contactArea__innerBox01__ttl {
  margin-top: 40px;
}
.contactArea .en {
  font-weight: normal;
}
.contactArea .mb50 {
  margin-bottom: 80px;
}
.contactArea .innerBox01__ttl, .contactArea .innerBox02__ttl {
  margin-top: 40px;
}
.contactArea__lead {
  line-height: 1.7;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  h3 + .contactArea__lead {
    text-align: left;
    margin: 30px 0;
  }
}
.contactArea__tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 50px 80px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .contactArea__tel {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 25px 20px;
    text-align: center;
    border-radius: 20px;
  }
}
.contactArea__tel .num {
  font-size: 18px;
  text-align: left;
  color: #1A1A1A;
  font-weight: normal;
  font-family: "HelveticaNeue";
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .contactArea__tel .num {
    font-size: 16px;
  }
}
.contactArea__tel .tel-box {
  display: flex;
  align-items: center;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .contactArea__tel .tel-box {
    margin: 15px 0;
    pointer-events: unset;
  }
  .contactArea__tel .icon {
    width: 26px;
  }
}
.contactArea__tel time {
  font-size: 14px;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contactArea__tel time {
    font-size: 12px;
    font-weight: 600;
  }
}
.contactArea__tel time .border {
  font-size: 14px;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  background-color: #fff;
  border: 1px solid #D7D6D4;
  border-radius: 4px;
  padding: 4px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .contactArea__tel time .border {
    font-size: 12px;
  }
}
.contactArea__telRight {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .contactArea__telRight {
    margin: 0;
  }
}
.contactArea__telLeft {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .contactArea__telLeft {
    margin: 0;
  }
}
.contactArea .address {
  font-size: 36px;
  font-family: "Helvetica Neue";
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  display: block;
  color: #333;
}
@media screen and (max-width: 768px) {
  .contactArea .address {
    font-size: 28px;
    text-align: center;
    line-height: 1.1;
  }
}
.contactArea .contactArea__innerBox01, .contactArea .contactArea__innerBox02 {
  background-color: #ECF2FA;
  border-radius: 30px;
  padding: 60px 80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contactArea .contactArea__innerBox01, .contactArea .contactArea__innerBox02 {
    padding: 40px 20px;
  }
}
.contactArea__innerTxt {
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 50px 0;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .contactArea__innerTxt {
    margin: 30px 0;
  }
}

.pdfBtn {
  display: inline-block;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  width: 420px;
  text-align: center;
  background-color: #4653A2;
  color: #fff;
  border-radius: 40px;
  padding: 22px 0;
  font-weight: bold;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  transition: all 0.4s ease-out;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pdfBtn {
    font-size: 18px;
    font-weight: 500;
    width: 255px;
    padding: 10px 0;
  }
}
.pdfBtn::after {
  content: url(../images/icon-download.svg);
  position: absolute;
  top: 21px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .pdfBtn::after {
    top: 25px;
    right: 15px;
  }
}

/* faqArea */
.faqArea {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .faqArea {
    margin-top: 80px;
  }
}
.faqArea__ttl {
  text-align: center;
}
.faqArea__ttl img {
  margin: 0 auto;
}
.faqArea .accordion {
  margin: 0 auto;
  margin-top: 60px;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .faqArea .accordion {
    margin-top: 40px;
  }
}
.faqArea .toggle {
  display: none;
}
.faqArea .option {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .faqArea .option {
    margin-bottom: 20px;
  }
}
.faqArea .title, .faqArea .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.faqArea .title {
  font-size: 24px;
  font-family: "YuGothic", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.04em;
  border: 3px solid #A3B9DB;
  border-radius: 20px;
  background-color: #ECF2FA;
  padding: 30px 100px 30px 114px;
  display: block;
  font-weight: bold;
  transition-duration: 0.25s;
}
@media screen and (max-width: 768px) {
  .faqArea .title {
    font-size: 18px;
    padding: 20px 50px 20px 60px;
  }
}
.faqArea .title::after, .faqArea .title::before {
  content: "";
  position: absolute;
  right: 40px;
  top: 35%;
  width: 6.8px;
  height: 34px;
  border-radius: 2px;
  background-color: #4653A2;
  transition-duration: 0.5s;
}
@media screen and (max-width: 768px) {
  .faqArea .title::after, .faqArea .title::before {
    right: 20px;
    top: 40%;
    width: 4.8px;
    height: 24px;
  }
}
.faqArea .title::after {
  transform: rotate(90deg);
  position: fixed;
}
.faqArea .title .question-title::before {
  position: absolute;
  content: "Q";
  font-size: 44px;
  font-family: "Tondo", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  color: #4653A2;
  display: block;
  top: 14px;
  left: 36px;
}
@media screen and (max-width: 768px) {
  .faqArea .title .question-title::before {
    font-size: 30px;
    top: 10px;
    left: 16px;
  }
}
.faqArea .content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1) 0s;
}
.faqArea .content div {
  border-right: 3px solid #A3B9DB;
  border-bottom: 3px solid #A3B9DB;
  border-left: 3px solid #A3B9DB;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  margin-left: 0;
  padding: 40px 40px 40px 114px;
  line-height: 1.7;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .faqArea .content div {
    padding: 20px 20px 20px 50px;
  }
}
.faqArea .answer-txt {
  position: relative;
  font-size: 18px;
}
.faqArea .cap{
  display: flex;
}
.faqArea .cap__prefix{
  display: block;
  padding-right: 5px;
}
.faqArea .answer-txt::before {
  position: absolute;
  content: "A";
  font-size: 44px;
  font-weight: bold;
  font-family: "Tondo", "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  color: #6990D0;
  display: block;
  top: 21px;
  left: 36px;
}
@media screen and (max-width: 768px) {
  .faqArea .answer-txt::before {
    font-size: 30px;
    top: 6px;
    left: 16px;
  }
}
.faqArea .toggle:checked + .title {
  border-radius: 20px 20px 0 0;  
  transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1) 0s;
}

.faqArea .toggle:checked + .title + .content {
  max-height: 2000px;
  transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1) 0s;
}
.faqArea .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}
.faqArea .toggle:not(:checked) + .title {
  transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1) 0s;
}
.faqArea .faqArea__btnBox {
  display: flex;
  justify-content: center;
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lp-loading {
  50% {
    transform: scale(0.5);
  }
}


/*# sourceMappingURL=style.css.map */